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: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@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: #0C0C0C;
  --vh: 1vh;
  --100vh: calc(var(--vh, 1vh) * 100);
}

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%;
  width: 100%;
}

section {
  background-color: #f9f9f9;
}

.section {
  padding: 28px 0;
}

.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;
}

.h1 {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.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;
}

p:not(:last-child) {
  margin-bottom: 8px;
}

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

.rad-title {
  font-size: 18px;
  font-weight: 600;
  padding: 9px 24px;
  display: inline-block;
  background-color: #f9f8c7;
  border: 1px solid #fbf96c;
  border-radius: 600px;
}

.rad-title:not(:last-child) {
  margin-bottom: 16px;
}

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

.btn-main.marketplace-wb {
  background-color: #a73afd;
  color: #fff;
}

.btn-main:not(:last-child) {
  margin-bottom: 16px;
}

.list {
  margin-bottom: 16px;
}

.list--cancel li:before {
  background-image: url("../img/cancel.svg");
}

.list--check li:before {
  background-image: url("../img/check-circle.svg");
}

.list--icon li:nth-child(1):before {
  background-image: url("../img/list-icon1.svg");
}

.list--icon li:nth-child(2):before {
  background-image: url("../img/list-icon2.svg");
}

.list--icon li:nth-child(3):before {
  background-image: url("../img/list-icon3.svg");
}

.list--icon li:nth-child(4):before {
  background-image: url("../img/list-icon4.svg");
}

.list li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.2;
}

.list li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -3px;
  left: 0;
}

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

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

.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;
}

.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: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.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: -webkit-gradient(linear, left top, right top, from(#044788), to(#0263AB));
  background: -o-linear-gradient(left, #044788 0%, #0263AB 100%);
  background: linear-gradient(90deg, #044788 0%, #0263AB 100%);
  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;
  color: #fff;
  -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.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;
}

.mobile-menu .contact-social__list a {
  text-decoration: none;
}

.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;
  grid-template-columns: 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;
}

.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;
}

.banner .container {
  background-color: rgba(0,0,0,0);
}

.banner__inner {
  margin: 0 -15px;
}

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

.rad-list:not(:last-child) {
  margin-bottom: 16px;
}

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

.rad-list span {
  font-size: 16px;
  color: #0c0c0c;
  background-color: #f9f8c7;
  border: 1px solid #fbf960;
  padding: 8px 24px;
  border-radius: 600px;
  display: inline-block;
}

.compare-slide {
  position: relative;
  width: 330px;
}

.compare-slide:before,
.compare-slide:after {
  content: "";
  font-size: 16px;
  font-weight: 600;
  color: #063263;
  padding: 4px 24px;
  background: -webkit-gradient(linear, right top, left top, from(#FAF400), color-stop(50%, #FCFB95), to(#FAF400));
  background: -o-linear-gradient(right, #FAF400 0%, #FCFB95 50%, #FAF400 100%);
  background: linear-gradient(270deg, #FAF400 0%, #FCFB95 50%, #FAF400 100%);
  border-radius: 4px;
  display: inline-block;
  position: absolute;
}

.compare-slide:before {
  content: "до";
}

.compare-slide:after {
  content: "после";
}

.compare-slide--v:before {
  top: 8px;
  left: 8px;
}

.compare-slide--v:after {
  top: 8px;
  left: calc(50% + 8px);
}

.compare-slide--g:before {
  top: 8px;
  left: 8px;
}

.compare-slide--g:after {
  top: calc(50% + 8px);
  left: 8px;
}

.advantage-slide {
  width: 125px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  background-color: #fff;
}

.advantage-slide__text {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 15px;
}

.advantage-slide img {
  margin-top: auto;
}

.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;
}

.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;
  margin-top: 4px;
}

.tab__item {
  border: 1px solid #ebebeb;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.tab__item.show .tab__body {
  display: block;
}

.tab__item.show .tab__head:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.tab__item:not(:last-child) {
  margin-bottom: 4px;
}

.tab__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 52px 16px 16px;
  position: relative;
}

.tab__head:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -12px;
}

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

.tab__title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.tab__body {
  padding: 0 16px 16px 16px;
  display: none;
}

.tab__body p {
  font-size: 14px;
}

.page-banner {
  position: relative;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}

.page-banner__block {
  position: absolute;
  text-align: center;
  top: 7px;
  left: 0;
  width: 100%;
  padding: 0 10px;
}

.page-banner__text {
  font-size: 16px;
  font-weight: 600;
  background: -webkit-gradient(linear, right top, left top, from(#FAF400), color-stop(50%, #FCFB95), to(#FAF400));
  background: -o-linear-gradient(right, #FAF400 0%, #FCFB95 50%, #FAF400 100%);
  background: linear-gradient(270deg, #FAF400 0%, #FCFB95 50%, #FAF400 100%);
  display: inline-block;
  padding: 8px;
  border-radius: 4px;
}

.page-banner__img {
  display: block;
  width: 100%;
}

.page-banner .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;
}

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

.questions {
  margin-top: 40px;
}

.questions__title {
  margin-bottom: 4px;
}

.questions__text {
  margin-bottom: 16px;
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: -8px;
}

@media (min-width: 768px) {
  body {
    background-color: #e5e5e5;
  }

  .page-wrapper {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    background-color: #f9f9f9;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.08);
            box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  }

  .header {
    width: 400px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}