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: flex;
  justify-content: space-between;
  align-items: center;
}
.header__menu {
  position: absolute;
  right: -300px;
  top: 100%;
  height: 100%;
}

.logo {
  padding: 20px 0;
}

.menu {
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  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;
  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;
  transform: translateY(-50%);
  border-radius: 4px;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  transition: 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;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger--active .burger__line {
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}
.burger--active::before {
  transform: rotate(45deg);
  top: 50%;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.burger--active::after {
  transform: rotate(-45deg);
  top: 50%;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.section {
  padding: 60px 0;
}

.s1 {
  position: relative;
  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;
  transform: translateX(-50%);
}
.s1__block::after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: -20px;
  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;
  top: 55%;
  margin-left: -10px;
  display: inline-block;
  padding: 10px;
  background-color: #f2fa21;
  border-radius: 0 20px 20px 0;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
.s1__product {
  position: absolute;
  left: 70px;
  top: 205px;
}
.s1__product .product-img {
  margin-left: auto;
}
.s1 .quality-sticker {
  width: 153px;
  border: none;
}
.s1__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.s1__item {
  display: flex;
  align-items: center;
}

.item__img-wrapper {
  display: flex;
  justify-content: 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: 60px;
  line-height: 1;
  color: #000;
}
.title__highlight {
  display: block;
  margin-bottom: 10px;
  font-size: 37px;
}
.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: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
  align-items: baseline;
  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;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2941176471);
  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 {
  position: relative;
  z-index: 10;
  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 {
  margin-top: -65px;
  padding-top: 235px;
  background: url("../images/s2_bg.jpg") no-repeat top center;
}
.s2__subtitle {
  margin-bottom: 30px;
}
.s2__title {
  font-weight: 900;
  text-shadow: 0 0 10px #000;
}
.s2__subtitle {
  font-weight: 700;
  text-shadow: 0 0 10px #000;
}
.s2__video {
  margin-bottom: 40px;
  border-radius: 50px;
}
.s2__btn {
  position: relative;
  margin-top: -10px;
  z-index: 10;
}

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

.s3 {
  background: url("../images/s3_img2.jpg") no-repeat top 200px center;
}
.s3__title {
  margin-bottom: 10px;
  font-size: 35px;
  color: #2d7a9e;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.s3__subtitle {
  margin-bottom: 450px;
}
.s3__text {
  margin-bottom: 30px;
  font-size: 23px;
  text-align: justify;
}
.s3__wrap {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 30px;
}
.s3__list {
  position: absolute;
  top: 50px;
  right: 0;
}
.s3__item {
  display: flex;
  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: flex;
  flex-wrap: wrap;
  gap: 20px;
  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: flex;
  align-items: center;
  font-size: 22px;
  padding: 15px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: auto 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6784313725);
}
.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.jpg");
  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;
}

.how {
  padding-bottom: 0;
}
.how__subtitle {
  margin-bottom: 40px;
}
.how__list {
  margin: 0 -10px 80px;
}
.how__item {
  display: flex;
  gap: 20px;
}
.how__item:not(:last-child) {
  margin-bottom: 20px;
}
.how__img {
  border-radius: 0 50px 50px 0;
}
.how__num {
  font-weight: 900;
  font-size: 35px;
  color: #2d7a9e;
}
.how__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.how__text {
  font-size: 22px;
}

.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;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.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%;
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  border-radius: 50px;
  background-color: #edecec;
  text-align: center;
  color: #000;
  font-size: 27px;
  line-height: 1;
}
.form__input::-moz-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 */