html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --main-font: "Montserrat";
  --main-color: #2E2E2E;
  --vh: 1vh;
  --100vh: calc(var(--vh, 1vh) * 100);
  --ticker-h: 34px;
  --header-h: 59px;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body {
  font-family: var(--main-font);
  color: var(--main-color);
  background-color: #f9f9f9;
  padding-top: 40px;
}

img {
  max-width: 100%;
}

.container {
  width: 600px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

video {
  max-width: 100%;
}

section {
  background-color: #f9f9f9;
}

.overlay {
  background-color: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: none;
}

.h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.bg-azure {
  background-color: #e6ecff;
  padding: 3px;
  border-radius: 6px;
}

b {
  font-weight: 600;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.note-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}

.note-list__item {
  padding: 7px 16px;
  border-radius: 160px;
  background-color: #e6ecff;
  font-size: 16px;
}

.note-list__item sup {
  font-size: 10px;
  position: relative;
  font-weight: inherit;
  top: -5px;
  font-weight: 600;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.price__current {
  font-size: 28px;
  font-weight: 500;
}

.price__old {
  font-size: 16px;
  font-weight: 700;
  color: #838383;
  text-decoration: line-through;
}

.btn-marketplace {
  border-radius: 8px;
  padding: 16px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
}

.btn-marketplace--wildberries {
  background-color: #a73afd;
}

.btn-marketplace--ozon {
  background-color: #2055e8;
}

.btn-main {
  font-size: 16px;
  color: var(--main-color);
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 18px 16px;
  background-color: #e6ecff;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.slider-btn {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slider-btn--prev {
  background-image: url("../img/prev.svg");
}

.slider-btn--next {
  background-image: url("../img/next.svg");
}

.slider-btn.swiper-button-disabled {
  opacity: .3;
}

.chipsa {
  width: 262px;
  position: absolute;
  top: 70px;
  left: -238px;
  z-index: 10;
  background-color: #fff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.chipsa.show {
  left: 0;
}

.chipsa.show .chipsa__btn {
  background-image: url("../img/chevron-left.svg");
}

.chipsa__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 4px;
}

.chipsa__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
}

.chipsa__text {
  width: 190px;
  font-size: 14px;
  line-height: 1.4;
}

.chipsa__btn {
  background-image: url("../img/chevron-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 24px;
  background-color: #e6ecff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.running-line {
  background-color: #e6ecff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  max-width: 3000px;
  margin: 0 auto;
  overflow: hidden;
}

.running-line__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 900;
  -webkit-animation: running-animation 5s linear infinite;
          animation: running-animation 5s linear infinite;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

@-webkit-keyframes running-animation {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes running-animation {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7px 0;
  z-index: 100;
}

.header:before,
.header:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  opacity: 0;
}

.header::before {
  background-color: #443e39;
  top: calc(100% + 0px);
  height: 24px;
}

.header:after {
  background-color: #f9f9f9;
  border-radius: 32px 32px 0 0;
  top: calc(100% + 5px);
  height: 20px;
}

.header.sticky:before,
.header.sticky:after {
  opacity: 1;
}

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

.mobile-menu-btn {
  width: 24px;
  height: 24px;
  background-image: url("../img/burger-menu.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  border: none;
  margin-left: auto;
  background-color: rgba(0,0,0,0);
}

.mobile-menu-btn img {
  width: 100%;
  height: 100%;
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  height: calc(var(--vh, 1vh)*100);
  overflow-y: scroll;
  background-color: #fff;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  z-index: 102;
  -webkit-box-shadow: -10px 0px 20px 0px rgba(0,0,0,.2);
          box-shadow: -10px 0px 20px 0px rgba(0,0,0,.2);
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  -webkit-box-shadow: 0px 5px 5px -2px rgba(34,60,80,.3);
          box-shadow: 0px 5px 5px -2px rgba(34,60,80,.3);
  height: 40px;
}

.mobile-menu__logo img {
  display: block;
}

.mobile-menu__close {
  width: 30px;
  height: 30px;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  border: none;
  background-color: rgba(0,0,0,0);
  margin-left: auto;
}

.mobile-menu__close img {
  width: 100%;
  height: 100%;
}

.mobile-menu__body {
  height: calc(var(--100vh) - 40px);
  padding: 30px 10px;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-menu__nav {
  margin-bottom: 30px;
}

.mobile-menu__nav li a {
  color: var(--main-color);
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.mobile-menu .contact-social {
  margin-top: auto;
}

.footer {
  padding: 30px 0;
  background-color: #fbfbfb;
  -webkit-box-shadow: 0px -4px 4px 0px rgba(0,0,0,.12);
          box-shadow: 0px -4px 4px 0px rgba(0,0,0,.12);
  margin-top: auto;
}

.footer__logo {
  display: inline-block;
}

.footer__logo img {
  display: block;
}

.footer__slogan {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer__btns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 24px;
}

.footer__policy {
  font-size: 16px;
  line-height: 1.4;
  color: var(--main-color);
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 24px;
}

.footer-contact:not(:last-child) {
  margin-bottom: 24px;
}

.footer-contact__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-contact__list li {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.form .formgroup {
  position: relative;
  margin-bottom: 16px;
}

.form label.error {
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: tomato;
  width: 100%;
  padding: 0 10px;
}

.form input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ebebeb;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  outline: none;
}

.form input::-webkit-input-placeholder {
  color: rgba(12,12,12,.5019607843);
}

.form input::-moz-placeholder {
  color: rgba(12,12,12,.5019607843);
}

.form input:-ms-input-placeholder {
  color: rgba(12,12,12,.5019607843);
}

.form input::-ms-input-placeholder {
  color: rgba(12,12,12,.5019607843);
}

.form input::placeholder {
  color: rgba(12,12,12,.5019607843);
}

.form button {
  width: 100%;
}

.plyr--video {
  width: 100%;
}

.plyr__progress__container {
  display: none;
}

.plyr__menu {
  display: none;
}

.plyr__time--current {
  display: none;
}

[data-plyr=pip] {
  display: none !important;
}

.banner {
  position: relative;
  background-color: rgba(0,0,0,0);
  width: 570px;
  aspect-ratio: 1/1;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.banner::before {
  content: "";
  position: fixed;
  top: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  aspect-ratio: 1/1;
  background-image: url("../img/main.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
  width: 570px;
  max-width: 100%;
}

.banner__inner {
  position: relative;
  margin: 0 -15px;
}

.banner img {
  width: 100%;
}

.banner__note {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
}

.discr {
  position: relative;
  z-index: 2;
  border-radius: 32px 32px 0 0;
  padding-top: 24px;
  margin-top: -24px;
  padding-bottom: 24px;
  background-color: #f9f9f9;
}

.discr__title {
  font-size: 28px;
  font-weight: 600;
}

.discr__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.discr__note {
  margin: 16px 0 16px 0;
}

.discr__tagline {
  margin-top: 16px;
  margin-bottom: 16px;
}

.discr__price {
  margin-bottom: 16px;
}

.discr__btns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.discr__btns-fixed {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
      -ms-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  z-index: 1000;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  padding: 16px 15px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background-color: rgba(0,0,0,0);
  opacity: 0;
  -webkit-transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1),opacity .4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1),opacity .4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1),opacity .4s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.discr__btns-fixed.show {
  -webkit-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.discr__btns-fixed .btn-marketplace {
  margin: 0;
  -webkit-transition: -webkit-transform .2s ease,-webkit-box-shadow .2s ease;
  transition: -webkit-transform .2s ease,-webkit-box-shadow .2s ease;
  -o-transition: transform .2s ease,box-shadow .2s ease;
  transition: transform .2s ease,box-shadow .2s ease;
  transition: transform .2s ease,box-shadow .2s ease,-webkit-transform .2s ease,-webkit-box-shadow .2s ease;
}

.discr__btns-fixed .btn-marketplace:active {
  -webkit-transform: scale(0.98);
      -ms-transform: scale(0.98);
          transform: scale(0.98);
}

.discr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}

.discr-list__item {
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px;
}

.discr-list__item:nth-child(1) {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.discr-list__item:nth-child(1) .discr-list__icon {
  width: 80px;
  height: 38px;
  text-align: center;
}

.discr-list__item:nth-child(1) .discr-list__text {
  margin-bottom: auto;
}

.discr-list__item:nth-child(2) {
  width: calc(40% - 2px);
}

.discr-list__item:nth-child(3) {
  width: calc(60% - 2px);
}

.discr-list__item:nth-child(4) {
  width: calc(60% - 2px);
}

.discr-list__item:nth-child(5) {
  width: calc(40% - 2px);
}

.discr-list__icon {
  background-color: #e6ecff;
  padding: 6px;
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 55px;
  height: 55px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.discr-list__text {
  font-size: 16px;
  line-height: 1.2;
  margin-top: auto;
}

.contstraction {
  padding-bottom: 56px;
}

.contstraction__img {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 16px;
}

.contstraction__img img {
  width: 100%;
}

.contstraction__num {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 32px;
  font-weight: 400;
  background-color: #e6ecff;
}

.contstraction__num1 {
  top: 44%;
  left: 6%;
}

.contstraction__num2 {
  top: 49%;
  left: 46%;
}

.contstraction__num3 {
  top: 26%;
  left: 80%;
}

.circle-list {
  counter-reset: item;
}

.circle-list li {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
}

.circle-list li:not(:last-child) {
  margin-bottom: 24px;
}

.circle-list li:before {
  content: counter(item) " ";
  counter-increment: item;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 24px;
  height: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  position: absolute;
  background-color: #e6ecff;
  top: 50%;
  left: 0;
  margin-top: -12px;
  font-size: 16px;
}

.see-video {
  padding-bottom: 56px;
}

.see-video__title {
  margin-bottom: 15px;
}

.see-video__title>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.see-video__title>div:not(:last-child) {
  margin-bottom: 4px;
}

.nasadka {
  padding-bottom: 56px;
}

.nasadka__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 6px;
}

.nasadka__note {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nasadka__note .note-list__item {
  font-size: 14px;
  padding: 4px 8px;
  font-weight: 500;
}

.nasadka-card {
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  background-color: #fff;
}

.nasadka-card--4 {
  aspect-ratio: 1.95/1;
  background-image: url("../img/nasadka4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.nasadka-card--w50 {
  width: calc(50% - 3px);
}

.nasadka-card--w100 {
  width: 100%;
}

.nasadka-card__title {
  padding: 12px 12px;
  text-align: center;
}

.nasadka-card__title span {
  font-weight: 400;
  display: block;
}

.nasadka-card__title sup {
  font-size: 10px;
  position: relative;
  font-weight: inherit;
  top: -5px;
  font-weight: 600;
}

.nasadka-card__img {
  width: 100%;
  display: block;
}

.nasadka-card__img--full {
  margin-top: -62px;
  position: relative;
  z-index: -1;
}

.recomend {
  padding-bottom: 56px;
}

.recomend__title {
  margin-bottom: 16px;
}

.recomend-slider {
  margin: 0 -15px;
  padding: 0 15px;
}

.recomend-slider__slide {
  width: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.recomend-slider-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.advantage {
  padding-bottom: 56px;
}

.advantage__inner {
  display: -ms-grid;
  display: grid;
  gap: 4px;
}

.line {
  padding-bottom: 56px;
}

.line__inner {
  margin: 0 -15px;
  overflow: hidden;
}

.advantage-card {
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  overflow: hidden;
}

.advantage-card:nth-child(1) .advantage-card__img {
  width: 55%;
  margin-left: auto;
}

.advantage-card:nth-child(2) .advantage-card__img {
  margin-right: auto;
}

.advantage-card:nth-child(3) .advantage-card__img {
  width: 85%;
  margin-left: auto;
}

.advantage-card__inner {
  padding: 16px 8px 0px 8px;
}

.advantage-card__title {
  margin-bottom: 5px;
}

.advantage-card__img {
  display: block;
}

.reviews {
  padding-bottom: 56px;
}

.reviews__title {
  margin-bottom: 16px;
}

.reviews-slider {
  margin: 0 -15px 16px -15px;
  padding: 0 15px;
}

.reviews-slider-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.review-card {
  width: 312px;
  height: auto;
  border: 1px solid #ebebeb;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
}

.review-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 13px;
}

.review-card__avatar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-card__info {
  padding-top: 3px;
}

.review-card__name {
  font-size: 16px;
  font-weight: 600;
}

.review-card__date {
  font-size: 14px;
  color: #bbb;
}

.review-card__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.review-card__rating img {
  width: 13px;
}

.minimum {
  padding-bottom: 26px;
}

.minimum__title {
  margin-bottom: 16px;
}

.minimum__title span {
  display: block;
  font-weight: 400;
}

.minimum-tab-head {
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  border: 1px solid #ebebeb;
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.minimum-tab-head__btn {
  padding: 4px 24px;
  font-size: 18px;
  color: #0c0c0c;
  font-weight: 600;
  border-radius: 4px;
  opacity: .6;
  cursor: pointer;
  -webkit-transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.minimum-tab-head__btn:hover:not(.switching) {
  opacity: .8;
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}

.minimum-tab-head__btn.active {
  background-color: #e6ecff;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.minimum-tab-head__btn.switching {
  cursor: not-allowed;
  opacity: .7;
}

.minimum-tab-body {
  margin: 0 -15px;
  position: relative;
  overflow: hidden;
}

.minimum-tab-body__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimum-tab-body__item.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  position: relative;
}

.minimum-tab-body__item img {
  display: block;
  width: 100%;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.build {
  padding-bottom: 56px;
}

.build__title {
  margin-bottom: 24px;
}

.build__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.build-card {
  background-color: #fff;
  padding: 5px;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
}

.build-card__img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
}

.build-card__img img {
  display: block;
  width: 100%;
}

.build-card__num {
  position: absolute;
  top: 7px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.build-card__text {
  padding: 0 5px 5px;
}

.manual {
  padding-bottom: 56px;
}

.manual-block {
  padding: 12px 8px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  margin-bottom: 16px;
}

.manual-block img {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.manual-block__list {
  list-style: decimal;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 32px;
}

.manual-block__list li {
  font-size: 17px;
  line-height: 1.2;
}

.manual-adv {
  margin-bottom: 16px;
}

.manual-adv__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.manual-adv__item:not(:last-child) {
  margin-bottom: 16px;
}

.manual-adv img {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.manual-adv__text {
  font-size: 16px;
}

.manual-cleaning img {
  display: block;
  width: 100%;
}

.call {
  overflow: hidden;
  padding-bottom: 56px;
}

.call__title {
  line-height: 1.24;
  margin-bottom: 20px;
}

.call__img {
  margin: 0 -15px;
  position: relative;
}

.call__img img {
  display: block;
  width: 100%;
}

.call__img .running-line--rotate1 {
  position: absolute;
  bottom: 38px;
  left: 0;
  width: 100%;
  -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
          transform: rotate(-4deg);
  -webkit-box-shadow: 0px 7px 4px 0px rgba(0,0,0,.2509803922);
          box-shadow: 0px 7px 4px 0px rgba(0,0,0,.2509803922);
  z-index: 3;
}

.call__img .running-line--rotate2 {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  -webkit-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
          transform: rotate(2deg);
}

.contact {
  padding: 0px 0 90px 0;
}

.contact__title {
  margin-bottom: 4px;
}

.contact__subtitle {
  display: block;
  margin-bottom: 16px;
}

.contact-form {
  margin-bottom: 56px;
}

.contact-social__title {
  margin-bottom: 10px;
}

.contact-social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.contact-social__list a {
  text-decoration: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.contact-social__list a img {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.contact-social__list a:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.btn-buy {
  width: 100%;
  border: none;
  padding: 17px 20px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background-color: #005bff;
  border-radius: 12px;
  cursor: pointer;
  -webkit-box-shadow: 0 6px 18px rgba(0, 91, 255, .28);
          box-shadow: 0 6px 18px rgba(0, 91, 255, .28);
  -webkit-transition: background-color .2s ease, -webkit-box-shadow .2s ease, -webkit-transform .12s ease;
  transition: background-color .2s ease, -webkit-box-shadow .2s ease, -webkit-transform .12s ease;
  -o-transition: background-color .2s ease, box-shadow .2s ease, transform .12s ease;
  transition: background-color .2s ease, box-shadow .2s ease, transform .12s ease;
  transition: background-color .2s ease, box-shadow .2s ease, transform .12s ease, -webkit-box-shadow .2s ease, -webkit-transform .12s ease;
}

.btn-buy:hover {
  background-color: #0049cc;
  -webkit-box-shadow: 0 8px 22px rgba(0, 91, 255, .34);
          box-shadow: 0 8px 22px rgba(0, 91, 255, .34);
}

.btn-buy:active {
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}

.btn-buy:focus-visible {
  outline: 3px solid rgba(0, 91, 255, .45);
  outline-offset: 3px;
}

.header {
  background-color: rgba(249, 249, 249, .84);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
          backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  -webkit-transition: background-color .38s ease, -webkit-box-shadow .38s ease, -webkit-backdrop-filter .38s ease;
  transition: background-color .38s ease, -webkit-box-shadow .38s ease, -webkit-backdrop-filter .38s ease;
  -o-transition: background-color .38s ease, box-shadow .38s ease, backdrop-filter .38s ease;
  transition: background-color .38s ease, box-shadow .38s ease, backdrop-filter .38s ease;
  transition: background-color .38s ease, box-shadow .38s ease, backdrop-filter .38s ease, -webkit-box-shadow .38s ease, -webkit-backdrop-filter .38s ease;
  will-change: background-color;
}

.header:before,
.header:after,
.header.sticky:before,
.header.sticky:after {
  content: none;
  display: none;
}

.header.sticky {
  background-color: rgba(249, 249, 249, .92);
}

.header__store {
  margin-left: 16px;
  font-size: 14px;
  line-height: 1.25;
  color: #443e39;
  -webkit-transition: color .38s ease;
  -o-transition: color .38s ease;
  transition: color .38s ease;
}

.header__store b {
  display: block;
  font-weight: 700;
  color: #005bff; }

.mobile-menu-btn {
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mobile-menu-btn > span,
.mobile-menu-btn > span::before,
.mobile-menu-btn > span::after {
  position: absolute;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  background-color: #443e39;
  -webkit-transition: width .3s ease, opacity .2s ease, background-color .3s ease, -webkit-transform .38s cubic-bezier(.66, .04, .35, 1);
  transition: width .3s ease, opacity .2s ease, background-color .3s ease, -webkit-transform .38s cubic-bezier(.66, .04, .35, 1);
  -o-transition: transform .38s cubic-bezier(.66, .04, .35, 1), width .3s ease, opacity .2s ease, background-color .3s ease;
  transition: transform .38s cubic-bezier(.66, .04, .35, 1), width .3s ease, opacity .2s ease, background-color .3s ease;
  transition: transform .38s cubic-bezier(.66, .04, .35, 1), width .3s ease, opacity .2s ease, background-color .3s ease, -webkit-transform .38s cubic-bezier(.66, .04, .35, 1);
}

.mobile-menu-btn > span {
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -12px;
}

.mobile-menu-btn > span::before,
.mobile-menu-btn > span::after {
  content: "";
  left: 0;
  margin: 0;
}

.mobile-menu-btn > span::before {
  top: -7px;
}

.mobile-menu-btn > span::after {
  top: 7px;
  width: 16px;
}

.mobile-menu-btn:hover > span::after {
  width: 24px;
}

.mobile-menu-btn.is-open > span {
  background-color: rgba(0, 0, 0, 0);
}

.mobile-menu-btn.is-open > span::before {
  -webkit-transform: translateY(7px) rotate(45deg);
      -ms-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open > span::after {
  width: 24px;
  -webkit-transform: translateY(-7px) rotate(-45deg);
      -ms-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

html,
body {
  padding-top: 0;
  overflow-x: hidden;
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
  background-color: #16181d;
  padding-bottom: 56px;
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero-poster.jpg");
  background-size: cover;
  background-position: center 55%;
}

.hero__video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 55%;
     object-position: center 55%;
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  -o-transition: opacity .6s ease;
  transition: opacity .6s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 10, 14, .86)), color-stop(24%, rgba(8, 10, 14, .62)), color-stop(56%, rgba(8, 10, 14, .7)), to(rgba(8, 10, 14, .95)));
  background: -o-linear-gradient(top, rgba(8, 10, 14, .86) 0%, rgba(8, 10, 14, .62) 24%, rgba(8, 10, 14, .7) 56%, rgba(8, 10, 14, .95) 100%);
  background: linear-gradient(180deg, rgba(8, 10, 14, .86) 0%, rgba(8, 10, 14, .62) 24%, rgba(8, 10, 14, .7) 56%, rgba(8, 10, 14, .95) 100%);
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
}

.hero__note {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.hero__note .note-list__item {
  padding: 9px 20px;
  font-size: 18px;
  background-color: rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-weight: 600;
}

.hero__title {
  font-size: 40px;
  font-size: clamp(40px, 9.4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}

.hero__title span {
  display: block;
  font-weight: 500;
  font-size: .66em;
  margin-top: .16em;
  color: rgba(255, 255, 255, .92);
}

.social-proof__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 12px;
}

.social-proof__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.social-proof__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
  max-width: 300px;
  padding: 18px 22px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .22);
  text-align: left;
}

.social-proof__store {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.social-proof__sales {
  font-size: 16px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.3;
}

.social-proof__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}

.social-proof__rating img {
  width: 18px;
  height: 18px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-right: 2px solid rgba(255, 255, 255, .7);
  border-bottom: 2px solid rgba(255, 255, 255, .7);
  border-radius: 0 0 4px 0;
  -webkit-animation: hero-scroll-hint 2s ease-in-out infinite;
          animation: hero-scroll-hint 2s ease-in-out infinite;
}

@-webkit-keyframes hero-scroll-hint {
  0%, 100% { -webkit-transform: translateX(-50%) rotate(45deg) translate(0, 0); opacity: .5; }
  50%      { -webkit-transform: translateX(-50%) rotate(45deg) translate(4px, 4px); opacity: 1; }
}

@keyframes hero-scroll-hint {
  0%, 100% { -webkit-transform: translateX(-50%) rotate(45deg) translate(0, 0); transform: translateX(-50%) rotate(45deg) translate(0, 0); opacity: .5; }
  50%      { -webkit-transform: translateX(-50%) rotate(45deg) translate(4px, 4px); transform: translateX(-50%) rotate(45deg) translate(4px, 4px); opacity: 1; }
}

.hero .chipsa {
  top: auto;
  bottom: 136px;
  left: 0;
  width: auto;
  max-width: 380px;
  border-radius: 0 18px 18px 0;
  background-color: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 14px 38px rgba(8, 12, 20, .28);
          box-shadow: 0 14px 38px rgba(8, 12, 20, .28);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transform: translateX(calc(-100% + 34px));
      -ms-transform: translateX(calc(-100% + 34px));
          transform: translateX(calc(-100% + 34px));
  -webkit-transition: -webkit-transform .55s cubic-bezier(.22, .61, .36, 1);
  transition: -webkit-transform .55s cubic-bezier(.22, .61, .36, 1);
  -o-transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  transition: transform .55s cubic-bezier(.22, .61, .36, 1), -webkit-transform .55s cubic-bezier(.22, .61, .36, 1);
  cursor: pointer;
}

.hero .chipsa.show {
  left: 0;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.hero .chipsa__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 10px 8px 10px 12px;
}

.hero .chipsa__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #eef1f7;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.hero .chipsa__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.chipsa__body {
  min-width: 0;
}

.hero .chipsa__text {
  width: auto;
  font-size: 14px;
  line-height: 1.35;
  color: #1c1c1e;
}

.hero .chipsa__text b {
  font-weight: 600;
}

.chipsa__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.2;
  color: #7b8290;
}

.chipsa__time::after {
  content: "•";
  margin-left: 6px;
  color: #c8ccd4;
}

.chipsa__verified {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  color: #1a9c5b;
  font-weight: 600;
}

.chipsa__verified::before {
  content: "\2713";
  font-size: 11px;
  line-height: 1;
}

.hero .chipsa__btn {
  width: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: 14px;
  opacity: .4;
}

.discr {
  margin-top: -32px;
  padding-top: 32px;
}

@-webkit-keyframes hero-rise {
  from { opacity: 0; -webkit-transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; -webkit-transform: translate3d(0, 0, 0); }
}

@keyframes hero-rise {
  from { opacity: 0; -webkit-transform: translate3d(0, 22px, 0); transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}

@-webkit-keyframes hero-media-in {
  from { opacity: 0; -webkit-transform: translate3d(0, 34px, 0) scale(.97); }
  to   { opacity: 1; -webkit-transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes hero-media-in {
  from { opacity: 0; -webkit-transform: translate3d(0, 34px, 0) scale(.97); transform: translate3d(0, 34px, 0) scale(.97); }
  to   { opacity: 1; -webkit-transform: translate3d(0, 0, 0) scale(1); transform: translate3d(0, 0, 0) scale(1); }
}

.hero__note,
.hero__title,
.social-proof {
  -webkit-animation: hero-rise .8s cubic-bezier(.22, .68, .3, 1) both;
          animation: hero-rise .8s cubic-bezier(.22, .68, .3, 1) both;
}

.hero__note      { -webkit-animation-delay: .08s; animation-delay: .08s; }
.hero__title     { -webkit-animation-delay: .18s; animation-delay: .18s; }
.social-proof    { -webkit-animation-delay: .30s; animation-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .hero__note,
  .hero__title,
  .social-proof,
  .hero__media {
    -webkit-animation: none !important;
            animation: none !important;
  }

  .hero__video {
    display: none;
  }

  .hero__scroll {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: translateX(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    opacity: .7;
  }

  .hero .chipsa {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}


@media (max-width: 767px) {
  .hero {
    padding-bottom: 92px;
  }

  .hero__scroll {
    bottom: 34px;
    width: 22px;
    height: 22px;
  }

  .hero__video {
    -o-object-position: center 55%;
       object-position: center 55%;
  }

  .hero__media::before {
    background-position: center 55%;
  }

  .header__store {
    font-size: 12px;
    margin-left: 10px;
  }

  .hero__title {
    margin-bottom: 20px;
  }

  .social-proof__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
  }

  .hero .chipsa {
    bottom: auto;
    top: calc(var(--ticker-h, 34px) + var(--header-h, 59px) + 12px);
    max-width: calc(100% - 44px);
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: 620px;
  }
}

.kits {
  padding: 32px 0 40px;
}

.kits__title {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.kits__lead {
  color: #6f7480;
  margin-bottom: 22px;
}

.kits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.kit-card {
  position: relative;
  width: 100%;
  padding: 12px;
  border: 1px solid #e8eaf0;
  border-radius: 18px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.kit-card__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f4f5f8;
  margin-bottom: 10px;
}

.kit-card__media > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  -o-object-fit: cover;
     object-fit: cover;
}

.kit-card__sale {
  position: absolute;
  left: 6px;
  bottom: 6px;
  z-index: 4;
  padding: 3px 6px;
  border-radius: 6px;
  background-color: #005bff;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.kit-card__hit {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 4;
  padding: 3px 8px;
  border-radius: 6px;
  background-color: #0a2472;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.kit-card__hit--best {
  background-color: #005bff;
}

.kit-card__body {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.kit-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.kit-card__now {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  color: #005bff;
  white-space: nowrap;
}

.kit-card__was {
  font-size: 14px;
  font-weight: 500;
  color: #a3a7b0;
  text-decoration: line-through;
  white-space: nowrap;
}

.kit-card__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #5c6270;
  margin-bottom: 6px;
}

.kit-card__title b {
  font-weight: 700;
  color: #1c1c1e;
}

.kit-card__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.kit-card__star {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 700;
  color: #1c1c1e;
}

.kit-card__star::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-image: url("../img/star-fill.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.kit-card__count {
  font-size: 12px;
  color: #a3a7b0;
}

.kit-card__save {
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  background-color: #e7f7ee;
  color: #127a45;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.kit-card .btn-buy {
  margin-top: auto;
  padding: 11px 10px;
  font-size: 15px;
  border-radius: 10px;
}

@media (min-width: 620px) {
  .kits__title {
    font-size: 28px;
  }

  .kits__list {
    gap: 20px;
  }

  .kit-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 16px;
  }

  .kit-card__media {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 230px;
    margin-bottom: 0;
  }

  .kit-card__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .kit-card .btn-buy {
    -ms-flex-item-align: start;
        align-self: flex-start;
    min-width: 200px;
    margin-top: 6px;
  }

  .kit-card__now {
    font-size: 21px;
  }

  .kit-card__title {
    font-size: 15px;
  }
}

.pad-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f4f5f8;
}

.pad-slider .swiper-slide img {
  aspect-ratio: 3 / 4;
  -o-object-fit: cover;
     object-fit: cover;
}

.pad-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.pad-slider__control {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 8px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.pad-slider__control .slider-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .9);
  -webkit-box-shadow: 0 2px 10px rgba(16, 24, 40, .18);
          box-shadow: 0 2px 10px rgba(16, 24, 40, .18);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: auto;
  cursor: pointer;
}

.pad-slider__dots {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 3;
  width: 100%;
  text-align: center;
}

.pad-slider__dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 3px;
  border-radius: 50%;
  background-color: #b6becd;
  opacity: 1;
  display: inline-block;
}

.pad-slider__dots .swiper-pagination-bullet-active {
  background-color: #005bff;
  width: 20px;
  border-radius: 4px;
}

.pad-variants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.pad-variants__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0;
          flex: 1 1 0;
  padding: 8px 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #454951;
  background-color: #fff;
  border: 2px solid #e2e6ef;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: border-color .2s ease, color .2s ease, background-color .2s ease;
  -o-transition: border-color .2s ease, color .2s ease, background-color .2s ease;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.pad-variants__btn:hover {
  border-color: #b9ccff;
}

.pad-variants__btn.is-active {
  color: #005bff;
  border-color: #005bff;
  background-color: #f0f5ff;
}

.handle {
  padding: 8px 0 24px;
}

.handle__title {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.handle__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 12px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 18px;
}

.handle-card {
  margin: 0;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background-color: #fff;
  border: 1px solid #e8eaf0;
}

.handle-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.handle-card--size img {
  max-height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
}

.handle-card__note {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.3;
  color: #6f7480;
  text-align: center;
}

.handle-card__note b {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1e;
}

.handle__list li {
  font-size: 16px;
  line-height: 1.4;
}

@media (min-width: 620px) {
  .handle__title {
    font-size: 26px;
  }

  .handle-card--size img {
    max-height: 420px;
  }
}

.ticker {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: var(--ticker-h, 34px);
  overflow: hidden;
  background-color: #ffd400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ticker__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: ticker-run 26s linear infinite;
          animation: ticker-run 26s linear infinite;
  will-change: transform;
}

.ticker__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #1c1c1e;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.ticker__item img {
  width: 13px;
  height: 13px;
}

@-webkit-keyframes ticker-run {
  from { -webkit-transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(-50%, 0, 0); }
}

@keyframes ticker-run {
  from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}

.header {
  top: var(--ticker-h, 34px);
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    -webkit-animation: none;
            animation: none;
  }
}

.hero-gift {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 14px;
  background-color: rgba(255, 212, 0, .16);
  border: 1px solid rgba(255, 212, 0, .5);
}

.hero-gift__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffd400;
}

.hero-gift__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 7px;
}

.hero-gift__was {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  text-decoration: line-through;
}

.hero-gift__now {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 767px) {
  .hero-gift {
    margin-bottom: 18px;
    padding: 9px 14px;
    gap: 10px;
  }

  .hero-gift__label {
    font-size: 15px;
  }
}
