*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  background-color: #fff;
}

a {
  color: black;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

.text-bold {
  font-weight: bold;
}

.text-padding {
  padding: 0 0.5rem;
}

.text-center {
  text-align: center;
}

.line-through {
  text-decoration: line-through;
}

.text-red {
  color: #e70000;
}

.text-green {
  color: #1eb336;
}

.text-gray {
  font-size: 1.2rem;
  color: #aaaaaa;
}

.bg-red {
  background-color: red;
  padding: 2px;
  color: white;
  font-weight: 700;
}

.text-gray {
  color: #a7a7a7;
}

.text-white {
  color: white;
}

.text-bg-green {
  background-color: #19ae30;
}

.text-bg-red {
  background-color: #cf0000;
}

.text-bg-yellow {
  background-color: #f2cc0f;
}

.image-wrapper {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg {
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.breadcrumbs {
  font-size: 13px;
  line-height: 26px;
  color: rgba(128, 128, 128, 0.8509803922);
  margin-bottom: 15px;
}

.image-list {
  list-style-type: none;
}
.image-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.image-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.image-list li p {
  text-align: left;
}

@media (min-width: 768px) {
  .pic2 {
    max-width: 60%;
  }
}

.button--hidden {
  display: none;
}
.button--hidden span {
  color: white;
}

.summary-button {
  width: 100%;
  max-width: 610px;
  background-color: #009f20;
  padding: 1.5rem;
  border: 1px solid #009f20;
  color: white;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  border-radius: 4.3rem;
  margin: 1.5rem auto;
  transition: all 0.35s ease-in-out;
}
.summary-button:hover {
  cursor: pointer;
}

.image-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 50% 50%;
  margin: 2.5rem 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0;
  margin: 0;
}
ul li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.link {
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  display: block;
  text-decoration: underline;
  color: #0000ff;
}

.lead {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.title {
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}
.title--orange {
  color: #ee8801;
}
.title--green {
  color: #0c9e11;
}

.inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 15px;
}
.inner__picture {
  max-width: 104px;
}

.next-page {
  display: block;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: white;
  font-weight: 700;
  border-radius: 10px;
  background-color: #0c9e11;
  padding: 16px;
  border: 4px solid white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.btn {
  width: 100%;
  max-width: 50.8rem;
  border: 2px solid #19ae30;
  background-color: #19ae30;
  border-radius: 0.2rem;
  text-align: center;
  display: block;
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 2.1rem;
  margin: 0 auto 2rem;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.btn:hover {
  color: #19ae30;
  background-color: white;
  border: 2px solid #19ae30;
}

.radius {
  border-radius: 10px;
}

.eye-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 35px;
}

.decoration {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 0.5rem;
}
.decoration-1 {
  background-color: #f69087;
}
.decoration-2 {
  background-color: #85ccb1;
}
.decoration-3 {
  background-color: #85a9b3;
}
.decoration-4 {
  background-color: #b0cb7a;
}

.header__top {
  background-image: url("../images/top bar.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 32px 0;
  border-bottom: 2px solid #274d71;
}
.header__middle {
  background-color: #004254;
  padding: 17px 0;
}
.header__bottom {
  background-color: #c9e5ff;
  padding: 16px 0;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.header__logo span {
  font-size: 68px;
  line-height: 74px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8509803922);
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__link {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: #004254;
  position: relative;
}
.header__link:hover {
  color: #0071bc;
}
.header__link:hover::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0071bc;
}
.header__search {
  width: 100%;
  max-width: 470px;
  position: relative;
}
.header__search::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../images/search-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.header__search input {
  padding: 16px;
  width: 100%;
  outline: none;
  border: 1px solid #c9e5ff;
  border-radius: 10px;
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3019607843);
}
.header__search input::-moz-placeholder {
  font-size: 18px;
  line-height: 22px;
  color: #004254;
}
.header__search input::placeholder {
  font-size: 18px;
  line-height: 22px;
  color: #004254;
}

.header__fixed {
  background-color: #ee8801;
  position: sticky;
  top: 0;
  display: none;
}
@media (max-width: 991px) {
  .header__fixed {
    display: block;
  }
}
.header__fixed .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px;
}
.header__fixed .content img {
  width: 25px;
  height: 15px;
}
.header__fixed .content span {
  font-size: 23px;
  line-height: 28px;
  font-weight: 700;
  color: white;
}

.container {
  width: 100%;
  max-width: 116rem;
  margin-left: auto;
  margin-right: auto;
}

.figcaption {
  text-align: center;
  padding: 5px;
  background-color: #c5c5c5;
}
.figcaption .paragraph {
  margin-bottom: 0;
}

.main-img {
  position: relative;
}
.main-img .main-img-text {
  position: absolute;
  bottom: 25px;
  right: 50px;
}
.main-img p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  line-height: 62px;
  font-weight: 400;
  color: #fded02;
  text-align: right;
}

.banner {
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  height: 400px;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 30px;
}
.banner__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.banner__header {
  width: 100%;
  padding: 18px 16px;
  height: 140px;
  aspect-ratio: 3/2;
  -webkit-clip-path: ellipse(85% 100% at 50% 0%);
          clip-path: ellipse(85% 100% at 50% 0%);
  background: #64af74;
  text-align: center;
}
.banner__text {
  font-size: 32px;
  line-height: 35px;
  font-weight: 400;
  color: white;
}
.banner__heading {
  font-size: 52px;
  line-height: 67px;
  font-weight: 400;
  color: white;
}
.banner__btn {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 16px;
  background-color: #ee8801;
  border: 1px solid white;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 10px 20px;
}
.banner__btn span {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: white;
}
.banner__btn img {
  width: 24px;
  height: 24px;
}

.summary-content {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  margin-top: 35px;
  padding: 0 2rem;
}

.site-content {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}
@media (min-width: 991px) {
  .site-content {
    margin-top: 35px;
    align-items: flex-start;
    grid-template-columns: 1fr 326px;
    grid-gap: 30px;
  }
}

.main-top,
.main-bottom {
  background-color: white;
  padding: 1.8rem 1.8rem 4.1rem 1.8rem;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1607843137);
}

.main-summary {
  width: 100%;
  max-width: 1160px;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1607843137);
  margin-inline: auto;
  padding: 20px 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .main-summary {
    padding: 20px;
  }
}

aside {
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1607843137);
  padding: 32px 13px 0;
}

main .summary-title {
  font-size: 3rem;
  line-height: 4.1rem;
  font-weight: bold;
  color: #0c9e11;
  padding: 0.5rem 2rem;
  text-align: center;
  margin: 0 auto 2.5rem;
}
@media (min-width: 992px) {
  main .summary-title {
    font-size: 45px;
    line-height: 55px;
  }
}
main .main-title {
  font-size: 4.5rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 15px;
  line-height: 5.4rem;
}
@media (max-width: 768px) {
  main .main-title {
    font-size: 34px;
    line-height: 44px;
  }
}
main .main-lead {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  main .main-lead {
    font-size: 3.4rem;
  }
}
main .main-subtitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.6rem;
  margin-bottom: 1.2rem;
}
main .main-paragraph-big {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 1.5rem;
}
main .paragraph {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 3rem;
}
main .paragraph--center {
  text-align: center;
}
main .paragraph-small {
  font-size: 2rem;
  font-weight: 700;
}

.main-top {
  margin-bottom: 4rem;
}
.main-top .main-article-date {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #808080;
  margin-bottom: 1.9rem;
}
.main-top .list {
  margin-bottom: 1.6rem;
}
.main-top .green-box {
  background-color: #c2e5d8;
  padding: 2.2rem 1.5rem 1rem;
  margin-bottom: 3.8rem;
  border-radius: 8px;
}
.main-top .guarantee-subtitle {
  margin-bottom: 2.6rem;
  margin-top: 2.2rem;
}
.main-top .product-promotion-details {
  margin-top: 2.3rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.1rem;
}
.main-top .product-promotion-details .text-red {
  text-decoration: line-through;
}
.main-top .product-promotion-details .text-green {
  font-size: 32px;
  line-height: 40px;
}
.main-top .product-promotion-details .text-red,
.main-top .product-promotion-details .text-green {
  font-weight: bold;
}
.main-top .product-image {
  -o-object-fit: cover;
     object-fit: cover;
}

.main-bottom .comments-title {
  text-transform: uppercase;
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #d4d4d4;
}
.main-bottom .form-add-comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.main-bottom .form-add-comment input {
  margin-bottom: 0.8rem;
}
.main-bottom .form-add-comment textarea {
  margin-bottom: 2.2rem;
  resize: none;
  min-height: 10rem;
}
.main-bottom .form-add-comment input,
.main-bottom .form-add-comment textarea {
  padding: 0.4rem 0.7rem 0.5rem 0.5rem;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main-bottom .form-add-comment input::-moz-placeholder, .main-bottom .form-add-comment textarea::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main-bottom .form-add-comment input::placeholder,
.main-bottom .form-add-comment textarea::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main-bottom .form-add-comment .form-buttons {
  display: flex;
  gap: 1.1rem;
}
.main-bottom .form-add-comment .form-buttons .form-btn {
  padding: 0.9rem;
  color: white;
  background-color: #868e96;
  border-radius: 0.3rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.main-bottom .form-add-comment .form-buttons .form-btn:hover {
  background-color: #5f6468;
}
.main-bottom .comments-wrapper .comment,
.main-bottom .added-comments .comment {
  display: flex;
  margin-bottom: 2.3rem;
}
.main-bottom .comments-wrapper .comment .comment-avatar,
.main-bottom .added-comments .comment .comment-avatar {
  width: 48px;
  height: 48px;
  margin-right: 2.4rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-row {
  display: flex;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row-image,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-row-image {
  display: flex;
  flex-direction: column;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-author,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-author {
  font-size: 1.6rem;
  font-weight: 700;
  color: black;
  margin-right: 0.9rem;
  margin-bottom: 0.8rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-date,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-date {
  color: #7f919e;
  font-size: 1.4rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-content,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-content {
  margin-bottom: 1.1rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-attachment,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-attachment {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 20rem;
  margin-bottom: 1.8rem;
}

.picture-error {
  color: red;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.telephone-box {
  border: 0.2rem solid #cf0000;
  max-width: 50rem;
  color: black;
  margin: 2rem auto 4rem;
  font-size: 2rem;
  line-height: 4.2rem;
  padding: 0.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media (min-width: 525px) {
  .telephone-box {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  .telephone-box {
    font-size: 4.5rem;
  }
}
.telephone-box::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15%;
  width: 2.6rem;
  height: 2.6rem;
  background-image: url("../images/icon-phone.svg");
  background-size: 100% 100%;
}

.hr {
  width: 100%;
  height: 0.1rem;
  margin: 1.5rem 0;
  background-color: #707070;
}

aside {
  display: none;
}
@media (min-width: 991px) {
  aside {
    display: block;
  }
}

.aside__row {
  background-color: white;
}

.aside__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #274d71;
  text-align: left;
  margin-bottom: 20px;
}

.article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  grid-gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e9e9e9;
}
.article--no-margin {
  margin-bottom: 0;
  border-bottom: none;
}
.article .paragraph {
  font-size: 16px;
  line-height: 24px;
}

footer {
  margin-top: 150px;
  padding-bottom: 40px;
}
footer .text-gray {
  text-align: center;
}
footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 55.6rem;
}
footer .copyright {
  margin-bottom: 2.3rem;
}
footer .attachments {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
footer .attachments .text-gray {
  text-decoration: underline;
}
footer .company-address {
  margin-top: 2.3rem;
  margin-bottom: 1.8rem;
}

.image-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin: 0 auto 2rem;
}

.image-col {
  width: 50%;
  text-align: center;
  padding: 0 5px;
}

.image-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.image-title-red {
  color: darkred;
}

.image-title-green {
  color: #3fcba3;
}

.beforeafter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2rem auto;
  width: 100%;
  gap: 20px;
}
.beforeafter__col {
  width: 50%;
}
.beforeafter img {
  width: 100%;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .header__middle {
    display: none;
  }
  .header__bottom {
    display: none;
  }
  .header__logo img {
    width: 64px;
    height: 64px;
  }
  .header__logo span {
    font-size: 32px;
  }
  .header__search {
    display: none;
  }
}
@media (max-width: 768px) {
  .inner {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  .main-img .main-img-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  .main-img p {
    font-size: 30px;
    line-height: 42px;
  }
  .summary-button {
    font-size: 20px;
  }
}/*# sourceMappingURL=styles.css.map */