@font-face {
  font-family: "Lato";
  src: local("Lato Bold"), local("Lato-Bold"),
    url("../fonts/Lato-Bold.woff2") format("woff2"),
    url("../fonts/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: local("Lato Light"), local("Lato-Light"),
    url("../fonts/Lato-Light.woff2") format("woff2"),
    url("../fonts/Lato-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: local("Lato Regular"), local("Lato-Regular"),
    url("../fonts/Lato-Regular.woff2") format("woff2"),
    url("../fonts/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: local("Lato Italic"), local("Lato-Italic"),
    url("../fonts/Lato-Italic.woff2") format("woff2"),
    url("../fonts/Lato-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --text-color: #333;
  --color-white: #fff;
  --color-bg: #1B7F7F;
  --color-border: #921706;
  --color-grey: #efefef;
  --color-section_1: #fafafa;
  --color-section_2: #d2d2d2;
  --color-price: #8b8b8b;
  --color-ban: #6EA09F;
  --color-structure: #359712;
  --color-icon: #1B7F7F;
  --color-number: #efefef;
  --color-input: #6c6c6c;
}

.container {
  max-width: 1560px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.disable-scroll {
	position: relative;
	overflow: hidden;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

/* header */

.header-overlay {
  display: none;
  position: fixed;
  z-index: 31;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  opacity: 0.5;
  background-color: var(--text-color);
}

.header__overlay-active {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: var(--color-white);
  -webkit-box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
  box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.header__container {
  max-width: 1830px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 80px;
}

.header__logo {
  position: relative;
  z-index: 99;
  max-width: 105px;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__img {
  width: 100%;
}

.header__burger,
.header__btn {
  display: none;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 53.334%;
}

.header__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% / 5);
  min-height: 80px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: var(--text-color);
  margin: 0;
  text-align: center;
  overflow: hidden;
}

.header__link__active {
  color: var(--color-white);
  background-color: var(--color-bg);
}

.header__link::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-bg);
  -webkit-transition: left 0.4s ease-in-out;
  -o-transition: left 0.4s ease-in-out;
  transition: left 0.4s ease-in-out;
}

.header__link:hover::after {
  left: 0;
}

.btn {
  border-radius: 60px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-bg);
  -webkit-transition: background-color 0.3s ease-in-out,
    -webkit-box-shadow 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    -webkit-box-shadow 0.3s ease-in-out;
}

.header__link-btn {
  padding: 15px 72px;
  border: none;
  outline: none;
}

.btn:hover {
  background: #085757;
}

.btn:active {
  background: #085757;
  -webkit-box-shadow: 0px 8px 16px #226e6e;
  box-shadow: 0px 8px 16px #226e6e;
}

.header__link-buy {
  display: none;
}

.header-scroll {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 200;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: transform 0.45s ease;
  -o-transition: transform 0.45s ease;
  transition: transform 0.45s ease;
}

.header-scroll nav .header__link:nth-child(1) {
  position: relative;
  color: var(--color-white);
  background-color: var(--color-bg);
}

.header__link:hover {
  color: var(--text-color);
  background-color: var(--color-white);
}

.header_hidden {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header__home-active {
  color: var(--color-white);
  background-color: var(--color-bg);
}

/* section-hero */

.section-hero {
  position: relative;
  padding: 232px 0 100px;
  overflow: hidden;
  background: url("../images/hero.png"), linear-gradient(to top, #fafafa, #fafafa);
  background-position: right center, left center;
  background-size: 50% 100%, 100%;
  background-repeat: no-repeat;
}

.h1-hidden {
  display: none;
}

.section-hero__top {
  margin-bottom: 161px;
  max-width: 44%;
}

.title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 2px;
  color: var(--text-color);
}

.section-hero__title {
  margin-bottom: 10px;
}

.section-hero__subtitle,
.section-order__subtitle {
  margin-bottom: 90px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.02em;
  color: var(--text-color);
}

.section-hero__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: calc(50% - 10px);
  flex-basis: calc(50% - 10px);
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  color: var(--text-color);
}

.section-hero__text {
  -ms-flex-preferred-size: 81%;
  flex-basis: 81%;
}

.section-hero__item:nth-child(-n + 2) {
  margin-bottom: 20px;
}

.section-hero__icon {
  display: block;
  margin-right: 20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.icon-1 {
  background-image: url("../images/hero-icon_1.svg");
}

.icon-2 {
  background-image: url("../images/hero-icon_2.svg");
}

.icon-3 {
  background-image: url("../images/hero-icon_3.svg");
}

.icon-4 {
  background-image: url("../images/hero-icon_4.svg");
}

.product__img {
  position: absolute;
  left: 54%;
  bottom: 10%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section-hero__bottom {
  position: relative;
  padding: 50px 0 52px 50px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.bg-filter {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.section-hero__price,
.section-hero__btn {
  position: relative;
  z-index: 2;
}

.section-hero__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 66%;
}

.section-hero__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 94px;
}

.section-hero__price-new {
  margin-right: 40px;
}

.section-hero__new,
.section-hero__old,
.section-order__old,
.section-order__new {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.01em;
  color: var(--color-section_2);
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 2px;
}

.section-hero__value-new,
.section-order__value-new {
  color: var(--color-bg);
}

.section-hero__value-old {
  position: relative;
  color: var(--color-section_2);
}

/* .section-hero__value-old::after,
.section-order__value-old::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 105%;
  height: 3px;
  background-color: var(--color-section_2);
  -webkit-transform: translateY(-50%) rotate(-20deg);
  -ms-transform: translateY(-50%) rotate(-20deg);
  transform: translateY(-50%) rotate(-20deg);
} */

.section-hero__btn {
  display: block;
  padding: 20px 22px;
}

/* section-problem */

.section-problem {
  position: relative;
  margin: 0 auto;
  padding: 128px 0 308px;
  max-width: 1920px;
  overflow: hidden;
  background-image: url("../images/bg-problem.png");
  background-position: 100% 80%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 25%;
}

.section-problem::after {
  content: "";
  position: absolute;
  left: 107px;
  bottom: 0;
  width: 1089px;
  height: 803px;
  background-image: url("../images/problem.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.section-problem__box {
  max-width: 1740px;
  margin-right: auto;
  padding-right: 15px;
}

.section-problem__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 60px;
  margin-left: auto;
  max-width: 1516px;
}

.section-problem__content {
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
}

.section-problem__title {
  margin-bottom: 20px;
}

.subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.01em;
  color: var(--text-color);
}

.section-problem__subtitle {
  margin-bottom: 40px;
}

.indent {
  margin-bottom: 20px;
}

.text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--text-color);
}

.section-problem__bottom {
  padding-right: 15px;
  max-width: 1740px;
}

.section-problem__indent {
  border-radius: 0px 20px 20px 0px;
  background-color: var(--color-ban);
  -webkit-box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
  box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
}

.section-problem__container {
  margin-left: auto;
  padding: 30px 36px 30px 0;
  max-width: 1416px;
}

.section-problem__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.section-problem__ban {
  position: relative;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-left: 78px;
  color: var(--color-white);
}

.section-problem__ban::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 48px;
  background-image: url("../images/sound.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* section-reason */

.section-reason {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 309px 0 100px;
  max-width: 1920px;
  background: url("../images/bg-reason.png"),
    -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(#fafafa));
  background: url("../images/bg-reason.png"),
    -o-linear-gradient(bottom, #fafafa, #fafafa);
  background: url("../images/bg-reason.png"),
    linear-gradient(to top, #fafafa, #fafafa);
  background-position: 0 10%, center top;
  background-size: auto, 100% 78%;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, local;
}

.section-reason::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 195px;
  width: 440px;
  height: 873px;
  background-image: url("../images/reason.png");
  background-repeat: no-repeat;
  background-size: auto;
}

.section-reason__box {
  margin-left: auto;
  padding-left: 15px;
  max-width: 1640px;
}

.section-reason__top {
  margin-bottom: 100px;
  max-width: 52%;
}

.section-reason__title {
  margin-bottom: 20px;
}

.section-reason__subtitle {
  margin-bottom: 40px;
}

.section-reason__bottom {
  margin-left: auto;
  padding-left: 15px;
  max-width: 1640px;
}

.section-reason__indent {
  border-radius: 20px 0 0 20px;
  background-color: var(--color-ban);
}

.section-reason__container {
  padding: 56px 195px 48px 30px;
}

.section-reason__ban {
  position: relative;
  margin-bottom: 113px;
  padding-left: 98px;
  max-width: 630px;
  color: var(--color-white);
}

.section-reason__ban::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  left: 20px;
  top: 50%;
  background: url("../images/bell.svg") no-repeat center / contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-reason__buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-reason__start {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.section-reason__btn {
  display: inline-block;
  padding: 20px 30.5px;
  border: none;
}

.section-reason__right {
  -ms-flex-preferred-size: 76%;
  flex-basis: 76%;
}

.section-reason__form {
  position: relative;
  margin-bottom: 10px;
}

.section-reason__form-bottom {
  padding-left: 15px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.section-reason__input {
  position: relative;
  width: 235px;
  padding: 19px 19px 19px 48px;
  border-radius: 60px;
  border: 1px solid transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.005em;
  color: var(--text-color);
  background-color: var(--color-white);
}

.section-reason__input::-webkit-input-placeholder {
  color: var(--color-input);
}

.section-reason__input:focus:required:invalid {
  border-color: var(--color-bg);
}

.section-reason__input:required:valid {
  border-color: var(--color-structure);
}

.section-reason__input:active,
.section-reason__input:focus {
  outline: none;
}

.section-reason__input:hover {
  border: 1px solid var(--color-input);
  outline: none;
}

.section-reason__country {
  margin-right: 10px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-image: url("../images/country.svg");
}

.section-reason__input-name {
  margin-right: 10px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-image: url("../images/men.svg");
}

.section-reason__input-phone {
  margin-right: 20px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-image: url("../images/phone.svg");
}

/* section-expert */

.section-expert {
  margin: 0 auto;
  max-width: 1920px;
  background-image: url("../images/bg-expert.png");
  background-repeat: no-repeat;
  background-position: 96% 55%;
  background-attachment: fixed;
}

.section-expert__container {
  margin-right: auto;
  padding-right: 15px;
  max-width: 1740px;
}

.section-expert__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-expert__col-1 {
  position: relative;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.expert__img {
  display: block;
  width: 100%;
}

.section-expert__comment {
  position: absolute;
  left: 74.5%;
  bottom: 10%;
  padding: 36px 44px;
  width: 677px;
  border-radius: 0px 20px 20px 20px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-filter: drop-shadow(0px 8px 20px rgba(181, 181, 181, 0.25));
  filter: drop-shadow(0px 8px 20px rgba(181, 181, 181, 0.25));
}

.section-expert__blur {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.section-expert__text {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.005em;
  z-index: 1;
  color: var(--text-color);
}

.section-expert__col-2 {
  -ms-flex-preferred-size: calc(50% - 212.5px);
  flex-basis: calc(50% - 212.5px);
  padding-top: 35px;
}

.section-expert__title,
.section-expert__desc {
  margin-bottom: 40px;
}

.section-expert__doctor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: var(--text-color);
}

.section-expert__name {
  margin-bottom: 5px;
}

.section-expert__position {
  margin-bottom: 10px;
}

.section-expert__experience {
  font-weight: 700;
}

.sign__img {
  display: block;
  margin-left: auto;
  width: auto;
}

/* section-structure */

.section-structure {
  padding: 106px 0 148px;
  background: url("../images/bg-structure.png"), var(--color-section_1);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 105% 55%;
}

.section-structure__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-structure__col-1 {
  -ms-flex-preferred-size: 49.02%;
  flex-basis: 49.02%;
}

.section-structure__title {
  margin-bottom: 20px;
}

.section-structure__subtitle,
.section-structure__desc {
  margin-bottom: 40px;
}

.sup {
  vertical-align: super;
  font-size: 10px;
  line-height: 0;
}

.section-structure__comment {
  margin-bottom: 60px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.01em;
  color: var(--color-price);
}

.section-structure__indent {
  margin-bottom: 10px;
}

.section-structure__result {
  padding: 29px 76px 29px 37px;
  border-radius: 20px;
  background-color: var(--color-structure);
  -webkit-box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
  box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
}

.section-structure__text {
  position: relative;
  padding-left: 78px;
  color: var(--color-white);
}

.section-structure__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 48px;
  background-image: url("../images/structure-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-structure__col-2 {
  position: relative;
  -ms-flex-preferred-size: 44%;
  flex-basis: 44%;
}

.structure__img {
  display: block;
  width: 100%;
}

.section-structure__product {
  position: absolute;
  right: 16.5%;
  bottom: -6.6%;
  width: 230px;
}

.section-structure__capsule {
  position: absolute;
  right: 34%;
  bottom: -9%;
  width: 89.23px;
}

.section-structure__list {
  position: absolute;
  right: 10%;
  bottom: -8%;
  width: 133.37px;
}

/* section-comment */

.section-comment {
  position: relative;
  padding: 153px 0;
  background-image: url("../images/bg-comment.png");
  background-position: 95% 55%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.section-comment__container {
  position: relative;
}

.section-comment__container::before {
  content: "";
  position: absolute;
  left: -1%;
  top: 0;
  width: 243px;
  height: 200px;
  background: url("../images/quotes.svg") no-repeat center / cover;
}

.section-comment__title {
  position: relative;
  margin-bottom: 100px;
  z-index: 1;
  text-align: center;
}

.section-comment__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1;
}

.section-comment__review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-preferred-size: calc(100% / 3 - 20px);
  flex-basis: calc(100% / 3 - 20px);
  padding: 50px 40px;
  background-color: var(--color-white);
  border-radius: 20px;
  -webkit-box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
  box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
}

.comment__img {
  display: block;
  margin-bottom: 20px;
}

.section-comment__rating {
  margin-bottom: 20px;
}

.section-comment__star {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../images/star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.section-comment__star:not(:last-child) {
  margin-right: 5px;
}

.section-comment__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.section-comment__text {
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 1px;
  color: var(--text-color);
}

.section-comment__name {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: var(--text-color);
}

/* article */

.article {
  overflow: hidden;
  background: url("../images/article.png") no-repeat center / cover;
}

.article__content {
  position: relative;
  padding: 70px 0 80px;
  border-radius: 20px;
}

.article__content::after {
  content: "%";
  position: absolute;
  right: -4%;
  top: 50%;
  font-family: "Lato", sans-serif;
  font-size: 86px;
  line-height: 92px;
  font-weight: 700;
  color: var(--color-white);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.article__desc {
  position: relative;
  max-width: 68%;
  z-index: 1;
}

.article__discount {
  position: absolute;
  top: -17%;
  right: -140px;
  font-family: "Lato", sans-serif;
  font-size: 483px;
  line-height: 520px;
  font-weight: 700;
  letter-spacing: -26px;
  color: var(--color-white);
}

.article__top {
  margin-bottom: 20px;
}

.article__title {
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.01em;
  color: var(--text-color);
}

.article-color {
  color: var(--color-bg);
}

.article__subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 2px;
  color: var(--color-bg);
}

.article__form-bottom {
  color: var(--text-color);
}

.article__form {
  position: relative;
}

.article_input {
  width: 235px;
}

.article__btn {
  display: inline-block;
  padding: 20px;
  border: none;
}

/* section-benefit */

.section-benefit {
  padding: 184px 0 175px;
  background: url("../images/benefit.png"), url("../images/bg-benefit.png"),
    var(--color-section_1);
  background-repeat: no-repeat, no-repeat;
  background-position: 85% bottom, left top;
}

.section-benefit__content {
  max-width: 49.02%;
}

.section-benefit__title {
  margin-bottom: 20px;
  max-width: 70%;
}

.section-benefit__subtitle {
  margin-bottom: 100px;
}

.section-benefit__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-benefit__col-1,
.section-benefit__col-2 {
  -ms-flex-preferred-size: calc(50% - 15px);
  flex-basis: calc(50% - 15px);
}

.section-benefit__col-1 {
  position: relative;
  top: 40px;
}

.section-benefitn__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 20px 40px 35px;
  border-radius: 20px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
  box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
}

.section-benefitn__item:first-child {
  margin-bottom: 30px;
}

.section-benefit__icon {
  display: block;
  margin-right: 35px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='25' fill='%231B7F7F' fill-opacity='0.3'/%3E%3Ccircle cx='25' cy='25.0005' r='10.4839' fill='%231B7F7F'/%3E%3C/svg%3E%0A");
  -webkit-animation: animate 2s linear infinite;
  animation: animate 2s linear infinite;
}

@-webkit-keyframes animate {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(254, 255, 186, 0.3);
  }
  40% {
    -webkit-box-shadow: 0 0 0 15px rgba(254, 255, 186, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 15px rgba(254, 255, 186, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(254, 255, 186, 0);
  }
}

@keyframes animate {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(254, 255, 186, 0.3);
    box-shadow: 0 0 0 0 rgba(254, 255, 186, 0.3);
  }
  40% {
    -moz-box-shadow: 0 0 0 15px rgba(254, 255, 186, 0);
    box-shadow: 0 0 0 15px rgba(254, 255, 186, 0);
  }
  80% {
    -moz-box-shadow: 0 0 0 15px rgba(254, 255, 186, 0);
    box-shadow: 0 0 0 15px rgba(254, 255, 186, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(254, 255, 186, 0);
    box-shadow: 0 0 0 0 rgba(254, 255, 186, 0);
  }
}

.section-benefit__text {
  -ms-flex-preferred-size: 78.2%;
  flex-basis: 78.2%;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  color: var(--text-color);
}

/* section-attention */

.section-attention {
  padding: 207px 0;
  background-image: url("../images/bg-attention.png");
  background-position: 88% 65%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.section-attention__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-attention__col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-preferred-size: 49.02%;
  flex-basis: 49.02%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-attention__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-preferred-size: calc(50% - 15px);
  flex-basis: calc(50% - 15px);
  padding: 30px 20px;
  min-height: 263px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 8px 20px rgba(181, 181, 181, 0.25);
  box-shadow: 0 8px 20px rgba(181, 181, 181, 0.25);
}

.section-attention__card:not(:last-child) {
  margin-bottom: 30px;
}

.card-1 {
  background-image: url("../images/attention_1.png");
}

.card-2 {
  position: relative;
  top: 148px;
  background-image: url("../images/attention_2.png");
}

.card-3 {
  background-image: url("../images/attention_3.png");
}

.section-attention__text {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.005em;
  z-index: 1;
  color: var(--text-color);
}

.section-attention__number {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 74px;
  letter-spacing: 0.5px;
  color: var(--color-number);
}

.section-attention__col-2 {
  -ms-flex-preferred-size: 40.52%;
  flex-basis: 40.52%;
}

.section-attention__title {
  margin-bottom: 60px;
}

.section-attention__time {
  padding: 29px 161px 29px 40.19px;
  border-radius: 20px;
  background-color: var(--color-structure);
  -webkit-box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
  box-shadow: 0px 8px 20px rgba(181, 181, 181, 0.25);
}

.section-attention__desc {
  position: relative;
  padding-left: 78px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.section-attention__desc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 48px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../images/tablet.svg") no-repeat left center / contain;
}

/* section-how */

.section-how {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: var(--color-section_1);
}

.section-how__bg {
  position: absolute;
  left: 4%;
  bottom: -27%;
  width: 880px;
  height: 880px;
  opacity: 0.5;
  background-image: url("../images/product.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  -webkit-transform: rotate(-32.91deg);
  -ms-transform: rotate(-32.91deg);
  transform: rotate(-32.91deg);
}

.section-how::before,
.section-how::after {
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.section-how::before {
  right: 255px;
  bottom: 0;
  width: 463px;
  height: 334px;
  background-image: url("../images/bg-how_1.png");
}

.section-how::after {
  right: 0;
  top: 0;
  height: 423px;
  width: 305px;
  background-image: url("../images/bg-how_2.png");
}

.section-how__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 69px 81px 80px;
  max-width: 1010px;
  border-radius: 10px 100px 100px 100px;
  z-index: 1;
  background: var(--color-bg);
}

.section-how__title {
  margin-bottom: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--color-white);
}

.section-how__text {
  text-align: center;
  color: var(--color-white);
}

/* section-order */

.section-order {
  padding-top: 100px;
  background: url("../images/order.png"), var(--color-section_1);
  background-repeat: no-repeat;
  background-size: 50% 100%;
  background-position: right center;
}

.section-order__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-order__col-1 {
  -ms-flex-preferred-size: 40.59%;
  flex-basis: 40.59%;
}

.section-order__title {
  margin-bottom: 20px;
}

.section-order__subtitle {
  margin-bottom: 60px;
}

.icon-5 {
  background-image: url("../images/order-icon_5.svg");
}

.product-order__img {
  position: relative;
  top: -60px;
  display: block;
}

.section-order__col-2 {
  position: relative;
  margin-right: 100px;
  padding: 0 30px 60px;
  max-width: 420px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}

.filter-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.section-order__data {
  position: relative;
  top: -28px;
  margin-bottom: 12px;
  padding: 20px 49px;
  border-radius: 10px;
  background-color: var(--color-structure);
}

.section-order__time {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.section-order__tomorrow {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.section-order__flag {
  position: absolute;
  left: 0;
  top: 160px;
  border-radius: 0px 10px 10px 0px;
  height: 127px;
  width: 210px;
  background: -webkit-gradient(linear, left top, left bottom, from(#21A6A1), to(#06413F));
  background: -o-linear-gradient(top, #21A6A1 0%, #06413F 100%);
  background: linear-gradient(180deg, #21A6A1 0%, #06413F 100%);
}



.section-order__sale {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: var(--color-white);
  -webkit-transform: rotate(-90deg) translate(-53px, -15px);
  -ms-transform: rotate(-90deg) translate(-53px, -15px);
  transform: rotate(-90deg) translate(-53px, -15px);
}

.section-order__top,
.section-order__form {
  position: relative;
}

.section-order__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 11px;
}

.section-order__img {
  position: relative;
  top: -25px;
  left: 20px;
  display: block;
  max-width: 34%;
}

.section-order__old,
.section-order__new {
  color: var(--color-price);
}

.section-order__value-old {
  position: relative;
  color: var(--color-price);
}

.section-order__value-old::after {
  background-color: var(--color-price);
}

.section-order__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.input {
  padding: 16px;
  border: 1px solid var(--color-section_2);
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.005em;
  outline: none;
  background-color: var(--color-white);
  -webkit-transition: border 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
}

.input::-webkit-input-placeholder {
  color: var(--color-input);
}

.input:focus:required:invalid {
  border-color: var(--color-bg);
}

.input:required:valid {
  border-color: var(--color-structure);
}

.input:active {
  border: none;
  outline: none;
}

.input:hover {
  border: 1px solid var(--color-input);
  outline: none;
}

.input-name,
.country {
  margin-bottom: 10px;
}

.input-phone {
  margin-bottom: 20px;
}

.form__agreement {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 12px;
  letter-spacing: 0.01em;
  color: var(--color-input);
}

.form__checkbox {
  position: absolute;
  top: 156px;
  left: 18.5px;
  opacity: 0;
  z-index: -1;
}

.form__checkbox-1,
.form__checkbox-2 {
  top: 80px;
}

.check__text-1 {
  color: #fff;
}

.form__checkbox:checked + .form__label::before {
  background-color: var(--text-color);
  background-image: url("../images/check.svg");
  background-repeat: no-repeat;
  background-size: 12.86px 10.71px;
  background-position: center;
}

.form__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 0;
  cursor: pointer;
}

.form__label-2 {
  margin: 5px 0;
  max-width: 35%;
}

.form__label-1 {
  margin: 5px 0 0;
  max-width: 32%;
}

.check__text {
  color: #333;
}

.form__label::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-right: 15px;
  margin-left: 15px;
  height: 18px;
  width: 18px;
  border: 1px solid var(--color-section_2);
  border-radius: 3px;
  text-align: center;
  background-color: var(--color-white);
}

.form__label:hover {
  border-radius: 10px;
  background-color: rgba(239, 239, 239, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form__label:hover::before {
  border-color: var(--text-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.section-order__btn {
  padding: 20px 0;
  border: none;
}

/* footer */

.footer {
  padding: 52px 0;
  background-color: var(--color-number);
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-price);
}

.footer__bold {
  font-weight: 700;
}

.footer__attention {
  margin-bottom: 10px;
}

.footer__config {
  margin-bottom: 20px;
}

@media (max-width: 1800px) {
  /* section-hero */

  .section-hero {
    padding: 140px 0 70px;
  }

  .form__label-2 {
    margin: -5px 0 5px;
    max-width: 100%;
    border-radius: 10px;
    background-color: rgba(239, 239, 239, 0.5);
  }

  .form__checkbox-2 {
    top: 156px;
  }

  /* section-problem */

  .section-problem::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -63px;
    width: 950px;
    height: 803px;
    background-size: contain;
  }

  .section-reason::before {
    display: none;
  }

  /* section-reason */

  .section-reason__buy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-reason__start {
    margin-bottom: 45px;
  }

  .section-reason__container {
    padding: 56px 30px 48px;
  }

  /* section-expert */

  .section-expert__comment {
    left: 33.5%;
  }

  /* section-benefit */

  .section-benefit {
    background-position: 602px bottom, left top;
  }

  /* article */

  .article__discount,
  .article__content::after {
    display: none;
  }

  .article__desc {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .article__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .article_input {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .article__top {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 0;
  }

  .article__bottom {
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
  }

  /* section-order */

  .section-order {
    padding-top: 50px;
  }
}

@media (max-width: 1440px) {
  /* header */

  .header-scroll {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: 200;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    background: rgba(242, 242, 242, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }

  .header__content {
    min-height: 60px;
  }

  .header__link {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid var(--color-grey);
  }

  .header__burger {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 99;
    border: none;
    background-color: transparent;
    background-image: url("../images/burger.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .header__burger-active {
    width: 35px;
    height: 35px;
    background-image: url("../images/header-close.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__link-btn {
    margin-right: 36px;
    padding: 11.5px 59.5px;
    font-size: 14px;
    line-height: 17px;
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
  }

  .header__nav {
    position: absolute;
    top: -1300%;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-transition: all 0.65s ease;
    -o-transition: all ease 0.65s;
    transition: all 0.65s ease;
    z-index: 98;
    overflow-y: auto;
    background-color: var(--color-white);
  }

  .header__nav::-webkit-scrollbar,
  .popup::-webkit-scrollbar,
  .comebacker::-webkit-scrollbar {
    width: 0;
  }

  .header__nav-active {
    -webkit-transform: translateY(calc(100% + 237px));
    -ms-transform: translateY(calc(100% + 237px));
    transform: translateY(calc(100% + 237px));
  }

  .header__link:nth-child(1) {
    -webkit-box-shadow: 0 8px 10px -2px rgba(181, 181, 181, 0.25) inset;
    box-shadow: 0 8px 10px -2px rgba(181, 181, 181, 0.25) inset;
  }

  .header__link-buy-active,
  .header__link-btn-active {
    opacity: 0;
  }

  .header-scroll nav .header__link:nth-child(1) {
    color: #333;
    background-color: #fff;
  }

  .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: none;
    padding: 16.5px 0;
    margin: 50px auto 100px;
    max-width: 344px;
    width: 100%;
  }

  /* section-hero */

  .section-hero {
    padding: 100px 0 40px;
  }

  .section-hero__subtitle {
    margin-bottom: 40px;
  }

  .section-hero__top {
    margin-bottom: 80px;
  }

  .product__img {
    bottom: 22%;
    width: 30%;
  }

  /* section-problem */

  .section-problem {
    padding: 80px 0 108px;
    background-position: 120% 80%;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .section-problem::after {
    bottom: 30px;
    width: 603px;
    height: 578px;
  }

  .section-problem__container {
    padding: 30px 10px 30px 0;
  }

  .section-problem__ban {
    -ms-flex-preferred-size: 46%;
    flex-basis: 46%;
  }

  /* section-reason */

  .section-reason {
    padding: 80px 0 40px;
  }

  .section-reason::after {
    top: 38px;
    right: 50px;
    width: 352px;
    height: 641px;
    background-size: contain;
  }

  .section-reason__ban {
    margin-bottom: 50px;
  }

  /* section-expert */

  .section-expert {
    position: relative;
    background-image: url("../images/bg-expert_768.png");
    background-repeat: no-repeat;
    background-position: 100% 55%;
    background-attachment: fixed;
  }

  .section-expert::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 185px;
    height: 135px;
    background-image: url("../images/bg-expert_2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .section-expert {
    padding-top: 42px;
  }

  .section-expert__container {
    margin: 0 auto;
    padding-right: 0;
    max-width: 100%;
  }

  .section-expert__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .section-expert__col-2 {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .section-expert__comment {
    top: 7.5%;
    bottom: auto;
    right: 2.1%;
    left: auto;
    width: 667px;
  }

  /* section-structure */

  .section-structure {
    padding: 106px 0 10px 0;
    background-position: 146% 10%;
  }

  .section-structure__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-structure__col-1 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 60px;
  }

  .section-structure__col-2 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  /* section-comment */

  .section-comment {
    background-size: 15%;
  }

  /* section-benefit */

  .section-benefit {
    overflow: hidden;
    background-position: 526px bottom, 90% 49%;
    background-size: 55%, 31%;
  }

  .section-benefit__content {
    max-width: 66%;
  }

  /* section-attention */

  .section-attention {
    padding: 80px 0;
  }

  .section-attention__col-1 {
    -ms-flex-preferred-size: 51%;
    flex-basis: 51%;
  }

  .section-attention__col-2 {
    -ms-flex-preferred-size: 44.52%;
    flex-basis: 44.52%;
  }

  .section-attention__time {
    padding: 29px 40.19px;
  }

  /* section-how */

  .section-how::after {
    right: -4%;
    width: 189px;
    height: 198px;
  }

  .section-how::before {
    bottom: -11%;
    right: 15%;
    width: 189px;
    height: 216px;
  }

  /* section-order */

  .section-order__col-2 {
    margin-right: 50px;
  }
}

@media (max-width: 1170px) {
  .header__logo {
    max-width: 84px;
    min-height: 40px;
  }

  /* section-hero */

  .container,
  .header__container {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
  }

  .section-hero {
    padding: 15.625% 0 10.417%;
    background: url("../images/hero_768.png"),
      -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(#fafafa));
    background: url("../images/hero_768.png"),
      -o-linear-gradient(bottom, #fafafa, #fafafa);
    background: url("../images/hero_768.png"),
      linear-gradient(to top, #fafafa, #fafafa);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .section-hero__top {
    margin-bottom: 60%;
    max-width: 100%;
  }

  .section-hero__subtitle {
    margin-bottom: 40px;
  }

  .title {
    font-size: 36px;
    line-height: 43px;
    letter-spacing: 0.02em;
  }

  .section-hero__subtitle {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.01em;
  }

  .section-hero__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 0 40px 40px;
    max-width: 100%;
  }

  .section-hero__price {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .section-hero__value-old,
  .section-hero__new,
  .section-hero__old {
    color: var(--color-price);
  }

  /* .section-hero__value-old::after {
    background-color: var(--color-price);
  } */

  .product__img {
    bottom: 11%;
    left: 75%;
    width: 55.4%;
  }

  /* section-problem */

  .section-problem {
    padding: 80px 0 328px;
    background-size: 38%;
    background-position: 141% 80%;
  }

  .section-problem::after {
    left: 30px;
    bottom: 80px;
    width: 632px;
    height: 467px;
  }

  .section-problem__box,
  .section-reason__box {
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
  }

  .section-problem__bottom {
    padding-right: 30px;
  }

  .section-problem__top {
    display: block;
    margin-bottom: 169px;
  }

  .section-problem__title {
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 18px;
    line-height: 22px;
  }

  .section-problem__subtitle {
    margin-bottom: 20px;
  }

  .section-problem__container {
    padding: 22px 10px 22px 0;
  }

  .form__label-1 {
    max-width: 100%;
  }

  .form__checkbox-1 {
    top: 220px;
}

  /* section-reason */

  .section-reason {
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#fafafa),
      to(#fafafa)
    );
    background: -o-linear-gradient(bottom, #fafafa, #fafafa);
    background: linear-gradient(to top, #fafafa, #fafafa);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 72%;
  }

  .section-reason::after {
    right: 30px;
    top: 8%;
    width: 253px;
    height: 502px;
  }

  .section-reason__title {
    margin-bottom: 10px;
  }

  .section-reason__subtitle {
    margin-bottom: 20px;
  }

  .section-reason__top {
    margin-bottom: 48px;
    max-width: 61.5%;
  }

  .section-reason__bottom {
    padding-left: 30px;
  }

  .section-reason__right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
  }

  .section-reason__container {
    padding: 29px 20px 60px 20px;
  }

  .section-reason__ban {
    margin-bottom: 66px;
    padding-left: 78px;
    max-width: 380px;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.01em;
  }

  .section-reason__ban::before {
    left: 0;
  }

  .section-reason__buy {
    padding: 0 81px 0 51px;
  }

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

  .section-reason__btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .section-reason__form {
    margin-bottom: 20px;
  }

  .section-reason__input {
    width: 100%;
  }

  .section-reason__input-name,
  .section-reason__input-phone,
  .country_select {
    margin-right: 0;
    margin-bottom: 10px;
  }

  /* section-expert */

  .section-expert__col-2 {
    padding: 0 30px;
  }

  .section-expert__title,
  .section-expert__desc {
    margin-bottom: 20px;
  }

  .section-expert__doctor {
    margin-bottom: 20px;
  }

  .sign__img {
    max-width: 191px;
  }

  .section-expert__comment {
    padding: 30px 20px;
    width: 49.35%;
  }

  .section-expert__text {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.02em;
  }

  /* section-structure */

  .section-structure {
    padding: 80px 0 10px;
    background-position: 648px 42px;
  }

  .section-structure__title {
    margin-bottom: 10px;
  }

  .section-structure__subtitle,
  .section-structure__desc {
    margin-bottom: 20px;
  }

  .section-structure__comment {
    margin-bottom: 40px;
  }

  .section-structure__result {
    padding: 29px 37px;
  }

  .structure__img {
    margin: 0 auto;
    width: 90%;
  }

  .section-structure__product {
    right: 20.3%;
    bottom: -5.6%;
    width: 205px;
  }

  .section-structure__capsule {
    right: 37%;
    bottom: -7%;
    width: 70.43px;
  }

  .section-structure__list {
    right: 15%;
    bottom: -6%;
    width: 105.27px;
  }

  /* section-comment */

  .section-comment {
    padding: 80px 0;
    overflow: hidden;
    background-image: none;
  }

  .section-comment::after {
    content: "";
    position: absolute;
    top: 519px;
    right: -58px;
    width: 242px;
    height: 226px;
    z-index: 1;
    background-image: url("../images/bg-comment.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .section-comment__title {
    margin-bottom: 40px;
  }

  .section-comment__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-comment__review {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .section-comment__review:not(:last-child) {
    margin-bottom: 40px;
  }

  .section-comment__container::before {
    left: 4%;
    top: -0.5%;
    width: 139px;
    height: 114px;
  }

  /* article */

  .article__content {
    padding: 30px 0 40px;
  }

  .article__top {
    -ms-flex-preferred-size: 46%;
    flex-basis: 46%;
  }

  .article__bottom {
    -ms-flex-preferred-size: 48.6%;
    flex-basis: 48.6%;
  }

  .article__subtitle {
    font-size: 36px;
    line-height: 43px;
    letter-spacing: 0.02em;
  }

  .article__btn {
    padding: 20px 29px;
  }

  /* section-benefit */

  .section-benefit {
    padding: 80px 0;
    background: url("../images/benefit.png"), url("../images/bg-benefit-2.png"),
      var(--color-section_1);
    background-repeat: no-repeat;
    background-position: 89% bottom, 109% 46%;
    background-size: 484px;
  }

  .section-benefit__content {
    max-width: 100%;
  }

  .section-benefit__title {
    margin-bottom: 10px;
    max-width: 100%;
  }

  .section-benefit__subtitle {
    margin-bottom: 60px;
  }

  .section-benefit__desc {
    display: block;
  }

  .section-benefit__col-1,
  .section-benefit__col-2 {
    max-width: 48.6%;
  }

  .section-benefit__col-1 {
    position: static;
  }

  .section-benefitn__item:first-child {
    margin-bottom: 20px;
  }

  .section-benefit__indent {
    margin-bottom: 20px;
  }

  .section-benefitn__item {
    padding: 20px 12px 20px 26.5px;
  }

  /* section-attention */

  .section-attention {
    background-image: url("../images/bg-attention_tab.png");
    background-position: 8% 59%;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }

  .section-attention__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .section-attention__card {
    -ms-flex-preferred-size: calc(50% - 10px);
    flex-basis: calc(50% - 10px);
    padding: 32px 20px;
    min-height: 220px;
  }

  .card-2 {
    top: 0;
  }

  .card-3 {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .section-attention__text {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.02em;
  }

  .section-attention__number {
    right: 4px;
  }

  .section-attention__limit {
    max-width: 80%;
  }

  .section-attention__col-2 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 40px;
    width: 100%;
  }

  .section-attention__title {
    margin-bottom: 40px;
  }

  .section-attention__time {
    padding: 27.5px 20px;
  }

  .section-attention__desc {
    padding-left: 68px;
    font-size: 18px;
    line-height: 22px;
  }

  /* section-how */

  .section-how {
    padding: 80px 0;
  }

  .section-how__content {
    padding: 45px 20px;
    border-radius: 10px 60px 60px 60px;
  }

  .section-how__title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.01em;
  }

  .section-how__bg {
    left: -5%;
    bottom: -9%;
    width: 500px;
    height: 500px;
  }

  /* section-order */

  .section-order {
    padding: 80px 0;
    background: url("../images/order_768.png") var(--color-section_1);
    background-repeat: no-repeat;
    background-size: 100% 50%;
    background-position: center bottom;
  }

  .section-order__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-order__col-1 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 90px;
  }

  .section-order__title {
    margin-bottom: 10px;
  }

  .section-order__subtitle {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.01em;
  }

  .product-order__img {
    top: -20px;
    left: 50%;
    max-width: 73%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .section-order__top {
    margin-bottom: 43.43px;
  }

  .section-order__col-2 {
    margin-right: 0;
    padding: 0 20px 60px;
    max-width: 384px;
  }

  .section-order__flag {
    width: 183px;
    height: 114px;
  }

  .section-order__sale {
    -webkit-transform: rotate(-90deg) translate(-48px, -19px);
    -ms-transform: rotate(-90deg) translate(-48px, -19px);
    transform: rotate(-90deg) translate(-48px, -19px);
  }

  .section-order__top {
    padding-right: 53px;
  }

  .section-order__img {
    top: -11px;
    left: 24px;
  }

  /* footer */

  .footer {
    padding: 50px 0;
  }
}

@media (max-width: 750px) {
  /* header */

  .header__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__btn {
    margin: 50px auto 90px;
    padding: 21.5px;
    max-width: 374px;
  }

  .header__link-btn {
    display: none;
  }

  .header__link-buy {
    display: block;
    margin-right: 20px;
    width: 54px;
    height: 40px;
    border: none;
    outline: none;
    background: url("../images/buy.svg"), var(--color-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .header__link-buy-active,
  .header__link-btn-active {
    opacity: 0;
  }

  .header__link-buy:hover {
    background: url("../images/buy.svg"), #085757;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .header__link-buy:active {
    background: url("../images/buy.svg"), #085757;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    -webkit-box-shadow: 0px 8px 16px #226e6e;
    box-shadow: 0px 8px 16px #226e6e;
  }

  /* section-hero */

  .section-hero__list {
    display: block;
  }

  .section-hero__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .form__checkbox-1 {
    top: 203px;
  }

  /* section-problem */

  .section-problem {
    padding: 60px 0;
    background-position: 22% 65%;
    background-size: 76%;
  }

  .section-problem::after {
    left: 20px;
    bottom: 119px;
    width: 614px;
    height: 454px;
  }

  .section-problem__top {
    margin-bottom: 454px;
  }

  .section-problem__box,
  .section-reason__box {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-problem__bottom {
    padding-right: 20px;
  }

  .section-problem__container {
    padding: 22px 20px;
  }

  .section-problem__desc {
    display: block;
  }

  /* section-reason */

  .section-reason {
    padding: 60px 0 20px;
    background: url("../images/bg-reason_414.png"),
      -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(#fafafa));
    background: url("../images/bg-reason_414.png"),
      -o-linear-gradient(bottom, #fafafa, #fafafa);
    background: url("../images/bg-reason_414.png"),
      linear-gradient(to top, #fafafa, #fafafa);
    background-position: 50% 10%, center top;
    background-size: auto, 100% 85%;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, local;
  }

  .section-reason__top {
    margin-bottom: 414px;
    max-width: 100%;
  }

  .section-reason__indent {
    border-radius: 20px;
  }

  .section-reason__bottom {
    padding-left: 0;
  }

  .section-reason__container {
    padding: 165px 20px 30px;
  }

  .section-reason__ban {
    margin-bottom: 45px;
    padding-left: 68px;
    max-width: 94%;
  }

  .section-reason__buy {
    padding: 0;
  }

  .section-reason__start {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .section-reason__input {
    padding: 14px 14px 14px 48px;
  }

  .section-reason__btn {
    padding: 20px 0;
    width: 100%;
    text-align: center;
  }

  .section-reason::after {
    top: auto;
    bottom: 33%;
    left: 50%;
    width: 253px;
    height: 502px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  /* section-expert */

  .section-expert {
    padding-top: 20px;
  }

  .section-expert__col-2 {
    padding: 0 20px;
  }

  .section-expert__comment {
    width: 55%;
  }

  /* section-structure  */

  .section-structure {
    padding: 60px 0 10px;
    background: var(--color-section_1);
  }

  .section-structure__col-1 {
    margin-bottom: 40px;
  }

  .section-structure__product {
    width: 30%;
  }

  .section-structure__capsule {
    bottom: -8%;
    width: 11%;
  }

  .section-structure__list {
    width: 16%;
  }

  /* section-comment */

  .section-comment {
    padding: 60px 0;
  }

  .section-comment__review {
    padding: 30px 20px;
  }

  /* article */

  .article {
    background: url("../images/article_414.png") no-repeat center / cover;
  }

  .article__content {
    padding: 30px 0 40px;
  }

  .article__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .article__top {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 30px;
    max-width: 87%;
  }

  .article__bottom {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
  }

  .article_input {
    padding: 19px 19px 19px 48px;
  }

  .article__btn {
    display: block;
    text-align: center;
  }
}

@media (max-width: 600px) {
  /* section-benefit */

  .section-benefit {
    padding: 60px 0 533px;
    background-position: center bottom, 65% 76%;
  }

  .section-benefit__col-1,
  .section-benefit__col-2 {
    max-width: 100%;
  }

  /* section-attention */

  .section-attention {
    padding: 60px 0;
    background-image: none;
  }

  .section-attention__col-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
  }

  .section-attention__card {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .card-3 {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  /* section-how */

  .section-how {
    padding: 60px 0;
  }

  .section-how::before {
    display: none;
  }

  .section-how::after {
    right: -1%;
    width: 143px;
    height: 202px;
  }

  .section-how__bg {
    left: -7%;
    bottom: -4%;
  }

  .section-how__content {
    padding: 40px 20px;
  }

  /* section-comment */

  .section-comment::after {
    top: 598px;
    right: -70px;
    width: 200px;
    height: 187px;
  }

  /* section-order */

  .section-order {
    padding: 60px 0;
  }

  .section-order__subtitle {
    margin-bottom: 20px;
  }

  .section-order__col-2 {
    max-width: 100%;
    width: 100%;
  }

  .section-order__img {
    width: 95px;
  }

  .product-order__img {
    top: -66px;
    max-width: 97%;
  }

  /* footer */

  .footer {
    padding: 40px 0;
  }
}

@media (max-width: 470px) {
  /* section-hero */

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-hero {
    padding: 24.2% 0 9.66%;
    background: url("../images/hero_414.png"),
      -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(#fafafa));
    background: url("../images/hero_414.png"),
      -o-linear-gradient(bottom, #fafafa, #fafafa);
    background: url("../images/hero_414.png"),
      linear-gradient(to top, #fafafa, #fafafa);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .section-hero__top {
    margin-bottom: 64.91%;
  }

  .title {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.01em;
  }

  .section-hero__subtitle {
    font-size: 18px;
    line-height: 22px;
  }

  .section-hero__bottom {
    padding: 20px;
  }

  .section-hero__price {
    display: block;
  }

  .section-hero__price-new {
    margin-right: 0;
  }

  .section-hero__btn {
    padding: 20px 0;
    width: 100%;
    text-align: center;
  }

  .product__img {
    left: 68%;
    bottom: 12%;
    width: 74%;
  }

  /* section-problem */

  .section-problem {
    background-size: 100%;
    background-position: -30px 72%;
  }

  .section-problem::after {
    bottom: 150px;
  }

  .title {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.01em;
  }

  /* section-reason */

  .section-reason::before {
    left: 50%;
    bottom: 308px;
    display: none;
    width: 409px;
    height: 274px;
    background-image: url("../images/bg-reason_414.png");
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  /* section-expert */

  .section-expert {
    background: none;
  }

  .section-expert::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 492px;
    width: 216px;
    height: 139px;
    background-image: url("../images/bg-expert_3.png");
    background-repeat: no-repeat;
    background-position: center;
  }

  .section-expert__comment {
    width: 90.253%;
    left: 50%;
    right: auto;
    bottom: 10.5%;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  /* section-structure */

  .section-structure__capsule {
    bottom: -7%;
    width: 10%;
  }

  .section-structure__list {
    width: 15%;
  }

  /* section-comment */

  .section-comment__container::before {
    left: 5%;
    top: 0.5%;
  }

  /* section-benefit */

  .section-benefit {
    background-position: -78px bottom, 10% 80%;
    background-size: 462px;
  }

  .section-benefit__subtitle {
    margin-bottom: 40px;
  }

  .section-benefitn__item {
    padding: 20px 27px 20px 41.5px;
  }

  /* section-attention */

  .section-attention__card:not(:last-child) {
    margin-bottom: 20px;
  }

  .section-attention__limit {
    max-width: 74%;
  }

  .section-attention__title {
    margin-bottom: 20px;
  }

  .section-attention__time {
    padding: 19px 20px;
  }

  /* section-order */

  .section-order {
    overflow: hidden;
  }

  .product-order__img {
    top: -75px;
    max-width: 130%;
  }

  .section-order__col-1 {
    margin-bottom: 40px;
  }

  .section-order__data {
    padding: 20px 44px;
  }

  .section-order__top {
    padding-right: 43px;
  }
}

@media (max-width: 413px) {
  /* header */

  .header__logo {
    max-width: 130px;
  }

  .header__btn {
    margin: 30px auto;
    padding: 16.5px 0;
    max-width: 280px;
  }

  .header__nav-active {
    -webkit-transform: translateY(calc(100% + 402px));
    -ms-transform: translateY(calc(100% + 402px));
    transform: translateY(calc(100% + 402px));
  }

  .header__link {
    height: 65px;
    min-height: 65px;
  }

  /* section-hero */

  .section-hero {
    padding: 28.13% 0 12.5%;
    background-size: auto;
  }

  .section-problem::after {
    right: 9px;
  }

  .section-hero__top {
    margin-bottom: 85.72%;
  }

  .section-hero__subtitle {
    margin-bottom: 30px;
  }

  /* section-problem */

  .section-problem {
    padding: 40px 0;
    background-size: 113%;
    background-position: -50px 72%;
  }

  .section-problem::after {
    left: -30px;
    bottom: 12%;
  }

  .section-problem__top {
    margin-bottom: 462px;
  }

  .section-problem__container {
    padding: 16px 20px;
  }

  /* section-reason */

  .section-reason {
    padding: 40px 0 20px;
  }

  .section-reason::before {
    left: 53%;
  }

  .section-reason::after {
    bottom: 35%;
  }

  .section-reason__container {
    padding: 159px 20px 30px;
  }

  .section-reason__ban {
    max-width: 91%;
  }

  /* section-expert */

  .section-expert::after {
    bottom: 527px;
    width: 161px;
    height: 104px;
  }

  .section-expert__col-2 {
    margin-bottom: 68px;
  }

  .section-expert__comment {
    width: 87.5%;
  }

  .section-expert__comment {
    bottom: 9%;
  }

  /* section-structure */

  .section-structure {
    padding: 40px 0 52px;
  }

  .section-structure__result {
    padding: 30px 20px;
  }

  .section-structure__text {
    padding-left: 0;
    padding-top: 57px;
  }

  .section-structure__text::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .structure__img {
    width: 100%;
  }

  .section-structure__product {
    right: 18.3%;
    bottom: -3.6%;
    width: 32%;
  }

  .section-structure__capsule {
    width: 13.2%;
    right: 34%;
    bottom: -6%;
  }

  .section-structure__list {
    width: 19.64%;
    right: 11%;
  }

  /* section-comment */

  .section-comment {
    padding: 40px 0;
  }

  .section-comment::after {
    top: 628px;
    right: -84px;
  }

  .section-comment__title {
    margin-bottom: 30px;
  }

  /* article */

  /* section-benefit */

  .section-benefit {
    padding: 40px 0 431px;
    background-position: -77px bottom, 10% 80%;
    background-size: 382px;
  }

  .section-benefit__subtitle {
    margin-bottom: 20px;
  }

  .section-benefitn__item {
    padding: 20px 20px 20px 34.5px;
  }

  /* section-attention */

  .section-attention {
    padding: 40px 0;
  }

  .section-attention__col-2 {
    margin-bottom: 30px;
  }

  .section-attention__time {
    padding: 13px 20px;
  }

  .section-attention__number {
    right: 11px;
  }

  .section-attention__limit {
    max-width: 100%;
  }

  /* section-how */

  .section-how {
    padding: 40px 0;
  }

  .section-how::after {
    right: -25%;
    top: -1%;
  }

  .section-how__bg {
    left: -10%;
    bottom: 5%;
  }

  /* section-order */

  .section-order {
    padding: 40px 0;
    background-size: 207% 50%;
    background-position: -328px bottom;
  }

  .section-order__subtitle {
    margin-bottom: 30px;
  }

  .product-order__img {
    top: -80px;
    width: 400px;
  }

  .section-order__col-1 {
    margin-bottom: 0;
  }

  .section-order__col-2 {
    padding: 0 20px 40px;
  }

  .section-order__data {
    margin-bottom: 2px;
    padding: 20px 30.5px;
  }

  .section-order__time {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.005em;
  }

  .section-order__tomorrow {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.01em;
  }

  .section-order__flag {
    top: 136px;
    width: 130px;
  }

  .section-order__top {
    padding-right: 0;
    padding: 0;
    margin-bottom: 37px;
  }

  .section-order__img {
    top: 2px;
    width: 75px;
  }
}

/* animated */

.opacity0 {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes a {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes a {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp {
  -webkit-animation-name: a;
  animation-name: a;
}

.animation-delay02 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.animation-delay04 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animation-delay06 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.animation-delay08 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.animation-delay10 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes c {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes c {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInLeft {
  -webkit-animation-name: c;
  animation-name: c;
}

@-webkit-keyframes d {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes d {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInRight {
  -webkit-animation-name: d;
  animation-name: d;
}

@-webkit-keyframes b {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes b {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: b;
  animation-name: b;
}
