body {
  font-family: "Montserrat";
}

img {
  display: block;
}

.site-container {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  position: relative;
  z-index: 15;
}

.header--bot, .header__overlay {
  background-color: #000;
}

.header__container {
  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__menu {
  position: absolute;
  right: -300px;
  top: 100%;
  height: 100%;
}

.menu {
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  -webkit-transition: opacity 0.3s ease-in-out, right 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: opacity 0.3s ease-in-out, right 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.menu--active {
  display: inline-block;
  right: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out, right 0.4s ease-in-out;
  transition: opacity 0.3s ease-in-out, right 0.4s ease-in-out;
}

.menu__list {
  display: inline-block;
  background-color: #000;
  padding: 30px 40px 40px 30px;
  border-bottom-left-radius: 50px;
}

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

.menu__item:last-child .menu__link {
  text-decoration: underline;
  color: #f2fa20;
}

.menu__link {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.burger {
  --burger-width: 34px;
  --burger-height: 24px;
  --burger-line-height: 4px;
  width: var(--burger-width);
  height: var(--burger-height);
  border: none;
  background-color: transparent;
  position: relative;
  color: #fff;
  cursor: pointer;
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 4px;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 4px;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  top: calc(100% - var(--burger-line-height));
}

.burger--active .burger__line {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.section {
  padding: 60px 0;
}

.s1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: url("../images/s1_bg.jpg") no-repeat top center;
}

.s1__block {
  display: inline-block;
  position: relative;
  left: 50%;
  margin-bottom: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.s1__block::after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 20px solid currentColor;
}

.s1__stickers {
  position: relative;
  z-index: 3;
}

.s1__hit {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: -10px;
  display: inline-block;
  padding: 10px;
  background-color: #f26c4e;
  border-radius: 0 20px 20px 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.s1__product {
  position: relative;
  margin-top: -70px;
}

.s1__product .product-img {
  margin-left: auto;
}

.s1__product .quality-sticker {
  position: absolute;
  left: 20px;
  bottom: 45px;
}

.s1__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

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

.item__img-wrapper {
  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;
  margin-right: 5px;
  width: 90px;
  height: 90px;
  background-color: #f2f3f3;
  border-radius: 100%;
}

.item__wrapper h3 {
  font-size: 20px;
  text-transform: uppercase;
}

.section-title {
  font-weight: 900;
  font-size: 35px;
  text-transform: uppercase;
}

.title {
  text-align: center;
  text-transform: uppercase;
  font-size: 37px;
  line-height: 1;
  color: #000;
}

.title__highlight {
  display: block;
  margin-bottom: 10px;
  font-size: 60px;
}

.title__bottom {
  display: block;
  font-size: 15px;
  color: #2d7a9e;
}

.sticker {
  display: block;
  margin-left: auto;
  border-radius: 100%;
  border: 4px solid #f0f0f1;
  margin-bottom: 10px;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2d7a9e;
  margin-bottom: 30px;
}

.price__title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 900;
}

.price__old {
  text-decoration: line-through;
  color: #000;
  font-size: 28px;
}

.price__new {
  font-size: 60px;
  font-weight: 900;
}

.btn {
  display: block;
  width: 100%;
  font-size: 27px;
  font-weight: 700;
  padding: 35px 10px;
  text-decoration: none;
  border-radius: 50px;
  -webkit-box-shadow: 4px 4px 10px #0000004b;
          box-shadow: 4px 4px 10px #0000004b;
  text-align: center;
  text-transform: uppercase;
  background-color: #f2fa21;
  background: radial-gradient(circle, #f9fc9f 0%, #f2fa21 100%);
  border: 1px solid transparent;
  line-height: 1;
  margin-bottom: 30px;
}

.btn--order {
  color: #000;
}

.date-sale {
  padding: 10px;
  padding-left: 55px;
  background-color: #f2f3f3;
  border-radius: 30px;
  font-size: 17px;
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-image: url("../images/icon-exclam.png");
}

.title-w {
  font-size: 35px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.subtitle {
  font-size: 23.5px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  text-transform: none;
  text-align: center;
}

.subtitle--w {
  color: #fff;
  font-weight: 300;
}

.s2 {
  padding-top: 235px;
  background: url("../images/s2_bg.jpg") no-repeat top center;
}

.s2__subtitle {
  margin-bottom: 30px;
}

.s2__video {
  border-radius: 50px;
}

.s2__btn {
  position: relative;
  margin-top: -10px;
  z-index: 10;
}

.s3__title {
  margin-bottom: 10px;
  font-size: 35px;
  color: #2d7a9e;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}

.s3__subtitle {
  margin-bottom: 30px;
}

.s3__text {
  margin-bottom: 30px;
  font-size: 20px;
}

.s3__wrap {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 30px;
}

.s3__list {
  position: absolute;
  top: 50px;
  right: 0;
}

.s3__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  padding-left: 20px;
  padding-right: 10px;
  height: 47px;
  border-radius: 23.5px 0 0 23.5px;
  background-color: #e6e6e6;
  font-size: 20px;
  font-weight: 700;
}

.s3__item:not(:last-child) {
  margin-bottom: 50px;
}

.s3__list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.s3__item2 {
  width: calc(50% - 10px);
  padding: 0 10px;
}

.s3__img-wrap {
  position: relative;
  margin-bottom: 30px;
}

.s3__img-wrap > img {
  margin: 0 auto;
}

.s3__img-wrap > span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  background-color: #2d52c9;
  border-radius: 100%;
  text-align: center;
  line-height: 46px;
}

.s4 {
  padding-bottom: 60px;
}

.s4__title {
  margin-bottom: 20px;
  text-align: center;
  color: #a96ad7;
}

.s4__img {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}

.s5 {
  padding-top: 75px;
  background-color: #204369;
  background-image: url("../images/s5_bg.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.s5__subtitle {
  margin-bottom: 40px;
}

.s5__list {
  margin: 0 -10px 55px;
}

.s5__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  padding: 15px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.s5__item:nth-child(even) > p {
  margin-left: auto;
}

.s5__item:not(:last-child) {
  margin-bottom: 55px;
}

.s5__item:nth-child(1) {
  background-image: url("../images/s5_img1.png");
  background-position: right;
}

.s5__item:nth-child(2) {
  background-image: url("../images/s5_img2.jpg");
  background-position: left;
}

.s5__item:nth-child(3) {
  background-image: url("../images/s5_img3.jpg");
  background-position: right;
}

.s5__item:nth-child(4) {
  background-image: url("../images/s5_img4.jpg");
  background-position: left;
}

.s5__item > p {
  width: 60%;
}

.s5__item span {
  text-transform: uppercase;
  font-weight: 700;
}

.s5 .date-sale {
  background-image: url("../images/icon-exclam-w.png");
  background-color: transparent;
  color: #fff;
}

.s6 {
  padding-bottom: 0;
}

.s6__title {
  margin-bottom: 30px;
  color: #2d7a9e;
  text-align: center;
}

.s6__img {
  margin-bottom: 30px;
}

.s7__title {
  color: #2d7a9e;
  text-align: center;
}

.s7__subtitle {
  margin-bottom: 30px;
}

.s7__img {
  margin: 0 auto;
  border-radius: 40px;
  -webkit-box-shadow: 5px 5px 10px 0 #0003;
          box-shadow: 5px 5px 10px 0 #0003;
}

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

.s8 {
  padding-bottom: 60px;
}

.form {
  text-align: center;
}

.form__title {
  margin-bottom: 10px;
  font-size: 40px;
  color: #2d7a9e;
}

.form__text {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 18px;
}

.form__input {
  display: block;
  margin-bottom: 15px;
  padding: 30px 20px;
  width: 100%;
  -webkit-box-shadow: 3px 3px 5px 0 #0003;
          box-shadow: 3px 3px 5px 0 #0003;
  border: 1px solid transparent;
  border-radius: 50px;
  background-color: #edecec;
  text-align: center;
  color: #000;
  font-size: 27px;
  line-height: 1;
}

.form__input::-webkit-input-placeholder {
  color: #000;
}

.form__input:-ms-input-placeholder {
  color: #000;
}

.form__input::-ms-input-placeholder {
  color: #000;
}

.form__input::placeholder {
  color: #000;
}

.copyright {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
}

.copyright a {
  display: block;
  margin: 15px 0;
  text-decoration: none;
  color: #333;
}

.copyright img {
  width: auto;
}

.copyright p {
  margin: 0;
  padding: 0;
}
/*# sourceMappingURL=style.css.map */