:root {
  --font-main: "Manrope", sans-serif;
  --color-main: #222;
  --color-main-rgb: 34, 34, 34;
  --color-bg: #F4F3F4;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-violet-light: #A27FB7;
  --color-violet-light2: #E1D7ED;
  --color-violet-light2-rgb: 225, 215, 237;
  --color-violet-light3: #76508D;
  --color-violet: #614373;
  --color-violet-dark-rgb: 42, 20, 67;
  --color-violet-dark: #2A1443;
  --color-gray-light: #A79797;
  --color-gray-light2: #C8BAD8;
  --color-gray: #67636E;
}

*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

html,
body {
  min-height: 100vh;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

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

body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-main);
  background: var(--color-bg);
}

.svg_sprite {
  position: absolute;
  bottom: 110%;
  right: 110%;
  opacity: 0;
}

#mask2 {
  transform: scale(0.0023474178, 0.001953125);
}

.title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}
.title span {
  display: inline-block;
  background: var(--color-white);
  transform: rotate(1.97deg);
  border-radius: 100px;
  padding: 3px 7px;
  margin: 0 -7px;
  color: var(--color-violet-dark);
}
.title b {
  font-weight: 800;
  color: var(--color-violet-light);
}

.subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.but {
  font-family: var(--font-main);
  position: relative;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: var(--color-violet);
  border-radius: 100px;
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  overflow: hidden;
  height: 60px;
  width: 100%;
  max-width: 295px;
  margin: 0 auto;
  box-shadow: 0 8px 8px rgba(var(--color-violet-dark-rgb), 0.12);
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
}
.but:hover {
  color: var(--color-white);
  background: var(--color-violet);
  box-shadow: 0 8px 8px rgba(var(--color-violet-dark-rgb), 0.24);
}
.but--violet {
  background: var(--color-violet-light);
  color: var(--color-white);
}

.content {
  position: relative;
  width: 320px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  z-index: 5;
}

[data-ba] {
  position: relative;
}
[data-ba] img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
[data-ba] .slider__after picture,
[data-ba] .slider__after img, [data-ba] .slider__before picture,
[data-ba] .slider__before img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left top;
  max-width: none;
}
[data-ba] .slider__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
[data-ba] .slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}
[data-ba] .slider__handle::before, [data-ba] .slider__handle::after {
  content: "";
  position: absolute;
  width: 2px;
  left: 50%;
  background: var(--color-white);
  transform: translateX(-50%);
  height: calc(50% - 17px);
}
[data-ba] .slider__handle::before {
  top: 0;
}
[data-ba] .slider__handle::after {
  bottom: 0;
}
[data-ba] .slider__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid var(--color-white);
  backdrop-filter: blur(3.2px);
}
[data-ba] .slider__handle span:before, [data-ba] .slider__handle span:after {
  content: "";
  border: 4px solid transparent;
}
[data-ba] .slider__handle span:before {
  border-right: 6px solid var(--color-white);
  border-left-width: 2px;
}
[data-ba] .slider__handle span:after {
  border-left: 6px solid var(--color-white);
  border-right-width: 2px;
}

.timer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
}
.timer__num {
  width: 28px;
  display: flex;
  justify-content: center;
}
.timer__nums {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 56px;
}
.timer__separator {
  padding-bottom: 17px;
}
.timer__name {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  top: 100%;
}

.order {
  position: relative;
  background: var(--color-violet-light);
  border-radius: 20px;
  padding: 20px;
  min-width: 290px;
}
.order__title {
  font-size: 23px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  color: var(--color-white);
}
.order__price {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}
.order__new-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-white);
}
.order__old-price {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
}
.order__item {
  position: relative;
  margin-top: 20px;
}
.order__item input {
  position: relative;
  display: block;
  width: 100%;
  font-size: 16px;
  border: 1px solid var(--color-white);
  background: transparent;
  padding: 19px 20px 6px;
  border-radius: 10px;
  line-height: 1;
  z-index: 2;
  outline: 1px solid transparent;
  color: var(--color-white);
  transition: outline 0.25s;
}
.order__item input:-webkit-autofill, .order__item input:-webkit-autofill:focus {
  transition: outline 0.25s, background-color 0s 600000s, color 0s 600000s;
}
.order__item input:focus {
  outline: 1px solid var(--color-white);
}
.order__item input ~ label {
  position: absolute;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  top: 23px;
  left: 20px;
  transform: translateY(-50%);
  transition: font-size 0.25s, top 0.25s;
}
.order__item input ~ label span {
  color: var(--color-white);
}
.order__item input::-webkit-input-placeholder {
  color: transparent;
}
.order__item input::-moz-placeholder {
  color: transparent;
}
.order__item input:-ms-input-placeholder {
  color: transparent;
}
.order__item input::-ms-input-placeholder {
  color: transparent;
}
.order__item input::placeholder {
  color: transparent;
}
.order__item input:focus ~ label, .order__item input:valid:not(:placeholder-shown) ~ label, .order__item input:invalid:not(:placeholder-shown) ~ label {
  font-size: 10px;
  top: 9px;
}
.order__but {
  margin-top: 20px;
}
.order__protection {
  margin: 15px auto;
}

.rating {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px 5px;
  max-width: 250px;
}
.rating__star {
  width: 20px;
  padding: 2px;
}
.rating__star svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: #ccc;
}
.rating__star svg:last-child {
  margin-top: -16px;
  fill: var(--color-violet-light3);
  width: 0;
}
.rating__stars {
  display: flex;
}
.rating__text {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-violet-light3);
}
.rating__text span {
  font-size: 20px;
}
.rating__subtext {
  color: var(--color-gray);
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1 !important;
  margin: 0 !important;
  background: var(--color-violet-light2);
  transition: background 0.3s;
}
.swiper-pagination-bullet-active {
  background: var(--color-violet);
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 24px;
}

[data-rating="0.1"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.1"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.1"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.1"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.1"] .rating__star:nth-child(5) svg:last-child {
  width: 10%;
}

[data-rating="0.2"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.2"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.2"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.2"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.2"] .rating__star:nth-child(5) svg:last-child {
  width: 20%;
}

[data-rating="0.3"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.3"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.3"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.3"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.3"] .rating__star:nth-child(5) svg:last-child {
  width: 30%;
}

[data-rating="0.4"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.4"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.4"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.4"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.4"] .rating__star:nth-child(5) svg:last-child {
  width: 40%;
}

[data-rating="0.5"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.5"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.5"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.5"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.5"] .rating__star:nth-child(5) svg:last-child {
  width: 50%;
}

[data-rating="0.6"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.6"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.6"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.6"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.6"] .rating__star:nth-child(5) svg:last-child {
  width: 60%;
}

[data-rating="0.7"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.7"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.7"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.7"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.7"] .rating__star:nth-child(5) svg:last-child {
  width: 70%;
}

[data-rating="0.8"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.8"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.8"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.8"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.8"] .rating__star:nth-child(5) svg:last-child {
  width: 80%;
}

[data-rating="0.9"] .rating__star:nth-child(1) svg:last-child, [data-rating="1.9"] .rating__star:nth-child(2) svg:last-child, [data-rating="2.9"] .rating__star:nth-child(3) svg:last-child, [data-rating="3.9"] .rating__star:nth-child(4) svg:last-child, [data-rating="4.9"] .rating__star:nth-child(5) svg:last-child {
  width: 90%;
}

[data-rating^="1"] .rating__star:nth-child(1) svg:last-child, [data-rating^="2"] .rating__star:nth-child(1) svg:last-child, [data-rating^="2"] .rating__star:nth-child(2) svg:last-child, [data-rating^="3"] .rating__star:nth-child(1) svg:last-child, [data-rating^="3"] .rating__star:nth-child(2) svg:last-child, [data-rating^="3"] .rating__star:nth-child(3) svg:last-child, [data-rating^="4"] .rating__star:nth-child(1) svg:last-child, [data-rating^="4"] .rating__star:nth-child(2) svg:last-child, [data-rating^="4"] .rating__star:nth-child(3) svg:last-child, [data-rating^="4"] .rating__star:nth-child(4) svg:last-child, [data-rating^="5"] .rating__star:nth-child(1) svg:last-child, [data-rating^="5"] .rating__star:nth-child(2) svg:last-child, [data-rating^="5"] .rating__star:nth-child(3) svg:last-child, [data-rating^="5"] .rating__star:nth-child(4) svg:last-child, [data-rating^="5"] .rating__star:nth-child(5) svg:last-child {
  width: 100%;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list__item {
  position: relative;
  padding-left: 35px;
  min-height: 22px;
  font-size: 18px;
  line-height: 1.2;
}
.list__item:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-violet-light);
  position: absolute;
  top: 0;
  left: 0;
}
.list__item:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  left: 5.5px;
  top: 6px;
  transform: rotateZ(-45deg);
}

.about,
.footer {
  position: relative;
  padding-top: 60px;
}
.about__wrap,
.footer__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-violet-light2);
  padding: 50px 14px 24px;
  margin: 0 -15px;
}
.about__wrap:before,
.footer__wrap:before {
  position: absolute;
  content: "";
  width: 822px;
  height: 822px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, var(--color-white) 0%, rgba(var(--color-white-rgb), 0) 100%);
  z-index: 2;
  top: -150px;
  left: 50%;
}
.about__tag,
.footer__tag {
  border-radius: 100px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  font-size: 18px;
  font-weight: 600;
}
.about__tags,
.footer__tags {
  display: flex;
  gap: 10px;
}
.about__title,
.footer__title {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}
.about__subtitle,
.footer__subtitle {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}
.about__top,
.footer__top {
  position: relative;
  z-index: 2;
}
.about__prodBox,
.footer__prodBox {
  position: relative;
  z-index: 1;
}
.about__prodBox:before, .about__prodBox:after,
.footer__prodBox:before,
.footer__prodBox:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: -15px;
  right: -15px;
  bottom: 0;
  box-shadow: inset 0 -160px 50px var(--color-violet-light2);
}
.about__prodBox:after,
.footer__prodBox:after {
  box-shadow: inset 0 50px 40px var(--color-violet-light2);
}
.about__bg,
.footer__bg {
  width: 520px;
  max-width: none;
  margin: -30px -150px -190px;
}
.about__prod,
.footer__prod {
  position: absolute;
  width: 178px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(105px, -15px) rotateZ(-5.77deg);
  z-index: 4;
}
.about__decor,
.footer__decor {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.about__decor > *,
.footer__decor > * {
  display: none;
}
.about__decor--1,
.footer__decor--1 {
  position: absolute;
  display: block;
  width: 136px;
  transform: translate(-50%, -50%) translate(20px, 35px) rotateZ(37.07deg);
  top: 50%;
  left: 50%;
  filter: blur(3px);
}
.about__orderBox,
.footer__orderBox {
  position: relative;
  z-index: 2;
}
.about__rating,
.footer__rating {
  margin-top: 30px;
}
.about__list,
.footer__list {
  margin-top: 24px;
}
.about__list--item,
.footer__list--item {
  font-size: 20px;
}
.about__list--item:before,
.footer__list--item:before {
  top: 1px;
}
.about__list--item:after,
.footer__list--item:after {
  top: 7px;
}

.footer {
  padding: 0 0 60px;
}

.wrinkles__subtitle {
  margin-top: 20px;
}
.wrinkles__box {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.wrinkles__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wrinkles__slider {
  border-radius: 15px;
  overflow: hidden;
  max-width: 264px;
  margin: 0 auto;
}
.wrinkles__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  line-height: 1.2;
}
.wrinkles__text b {
  font-size: 25px;
  font-weight: 800;
}
.wrinkles__text span {
  font-size: 18px;
  font-weight: 500;
}

.info__wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-violet-light2);
  padding: 35px 15px;
  margin: 0 -15px;
}
.info__wrap:before {
  position: absolute;
  content: "";
  width: 822px;
  height: 822px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, var(--color-white) 0%, rgba(var(--color-white-rgb), 0) 100%);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}
.info__title {
  text-align: left;
}
.info__title--1 {
  text-align: center;
}
.info__subtitle {
  margin-top: 15px;
  text-align: left;
}
.info__subtitle--1 {
  text-align: center;
}
.info__but {
  position: relative;
  margin-top: 25px;
  z-index: 5;
}
.info__img {
  position: relative;
  margin: 10px -15px -35px;
  z-index: 1;
}
.info__img--2 {
  margin: -50px -40px -35px -60px;
}
.info__img--3 {
  margin: -105px -15px -35px;
}
.info__img--3 .info__label {
  display: none;
}
.info__label {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 116px;
  line-height: 1.4;
  padding: 10px;
  background: rgba(var(--color-white-rgb), 0.08);
  backdrop-filter: blur(7.55px);
  color: var(--color-white);
  transform: translateY(-40px);
}
.info__label:before, .info__label:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
}
.info__label:before {
  border-top: 1px solid var(--color-white);
  border-left: 1px solid var(--color-white);
  top: 0;
  left: 0;
}
.info__label:after {
  border-bottom: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  bottom: 0;
  right: 0;
}
.info__label b {
  font-size: 30px;
  font-weight: 800;
}
.info__label span {
  font-size: 12px;
  font-weight: 600;
}
.info__list {
  margin-top: 30px;
}
.info__timer {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
}
.info__compound {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__compound--letf {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__compound--right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__compound--item {
  display: flex;
  gap: 15px;
}
.info__compound--item img {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  outline: 4px solid var(--color-white);
  border-radius: 50%;
}
.info__compound--text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.info__compound--text b {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
.info__compound--text span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
.info__decor {
  display: none;
}

.why__title {
  text-align: left;
}
.why__list {
  margin-top: 20px;
}
.why__item {
  font-weight: 600;
}
.why__text {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 34px;
}
.why__img {
  position: relative;
  min-height: 406px;
}
.why__prod {
  position: absolute;
  width: 130px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(50px, 50px) rotateZ(15.26deg);
  z-index: 5;
}
.why__prod--dop {
  position: absolute;
  width: 130px;
  top: 50%;
  left: 50%;
  filter: blur(4.45px);
  transform: translate(-50%, -50%) translate(-40px, -60px) rotate(-22.58deg);
  z-index: 4;
}
.why__decor--1 {
  position: absolute;
  top: 50%;
  left: 50%;
  filter: blur(3px);
  transform: translate(-50%, -50%) translate(-100px, -40px) rotateZ(37.07deg);
  width: 90px;
  z-index: 1;
}
.why__decor--2 {
  position: absolute;
  top: 50%;
  left: 50%;
  filter: blur(10px);
  transform: translate(-50%, -50%) translate(120px, -90px) rotate(-17.9deg);
  width: 137px;
  z-index: 6;
}
.why__decor--3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-80px, 150px) rotate(-5.78deg);
  width: 78px;
}

.exactly__box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 30px;
}
.exactly__left {
  display: flex;
  align-items: center;
  gap: 5px;
}
.exactly__right {
  display: flex;
  align-items: center;
  gap: 5px;
}
.exactly__prod {
  flex: 0 0 80px;
}
.exactly__table {
  display: flex;
  flex-wrap: wrap;
  flex: 2;
}
.exactly__item {
  font-size: 16px;
  line-height: 1.2;
}
.exactly__col1 {
  position: relative;
  flex: 0 0 40px;
  padding: 15px 0 0 2px;
  border-top: 1px solid var(--color-gray-light2);
  border-right: 1px solid var(--color-gray-light2);
}
.exactly__col2 {
  flex: 0 0 calc(100% - 40px);
  padding: 15px 10px;
  border-top: 1px solid var(--color-gray-light2);
}
.exactly__row1 {
  flex: 0 0 100%;
  border: none;
}
.exactly__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.exactly__not {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-gray-light);
}
.exactly__not:before, .exactly__not:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  background: var(--color-white);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.exactly__not:after {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.exactly__yes {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-violet-light);
}
.exactly__yes:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-violet-light);
  position: absolute;
  top: 0;
  left: 0;
}
.exactly__yes:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  left: 5px;
  top: 6px;
  transform: rotateZ(-45deg);
}

.video__box.pause:before, .video__box.play:before {
  position: absolute;
  content: "";
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: rgba(var(--color-white-rgb), 0.1);
  backdrop-filter: blur(2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
  z-index: 5;
}
.video__box.pause:hover:before, .video__box.play:hover:before {
  transform: translate(-50%, -50%) scale(1.15);
}

.video__box.play:after {
  position: absolute;
  content: "";
  border: 19px solid transparent;
  border-left: 32px solid var(--color-white);
  border-right: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(2px) translateX(4px);
  transition: transform 0.25s;
  z-index: 6;
}
.video__box.play:hover:after {
  transform: translate(-50%, -50%) translateX(6px) scale(1.15);
}

.video__box.pause:after {
  position: absolute;
  content: "";
  background: var(--color-white);
  width: 10px;
  height: 36px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-8.5px);
  box-shadow: 17px 0 0 0 var(--color-white);
  border-radius: 5px;
  transition: transform 0.25s;
  z-index: 6;
}
.video__box.pause:hover:after {
  transform: translate(-50%, -50%) scale(1.15) translateX(-8.5px);
}

.video__box {
  position: relative;
  margin-top: 17px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
}
.video__box video {
  display: block;
  max-width: 100%;
}
.video__bg {
  display: none;
}

.after__slider,
.after2__slider {
  margin-top: 36px;
  overflow: visible;
}
.after__slider--item,
.after2__slider--item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.after__img,
.after2__img {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
}
.after__img--before, .after__img--after,
.after2__img--before,
.after2__img--after {
  position: relative;
}
.after__img--before span, .after__img--after span,
.after2__img--before span,
.after2__img--after span {
  position: absolute;
  z-index: 2;
  background: var(--color-white);
  text-align: center;
  padding: 7px 15px;
  top: 0;
}
.after__img--before span,
.after2__img--before span {
  border-radius: 0 0 15px 0;
  left: 0;
}
.after__img--after span,
.after2__img--after span {
  border-radius: 0 0 0 15px;
  right: 0;
}
.after__text,
.after2__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  align-items: center;
}
.after__text b,
.after2__text b {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}
.after__text span,
.after2__text span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.after__but,
.after2__but {
  margin-top: 36px;
}

.after2__text b {
  font-size: 50px;
}
.after2__img {
  max-height: 220px;
}

.popup {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.popup__prod {
  width: 120px;
  margin-bottom: -10px;
}
.popup__box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 412px;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-main-rgb), 0.95);
  z-index: 2147483646;
}
.popup__text {
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
.popup__text b {
  display: block;
  font-size: 20px;
}
.popup__img img {
  width: 70px;
  margin: 0 auto;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
@media (min-width: 767.98px) {
  .content {
    width: 740px;
  }
  .rating {
    justify-content: flex-start;
    align-content: flex-end;
  }
  .about__wrap,
  .footer__wrap {
    display: grid;
  }
  .about__wrap:before,
  .footer__wrap:before {
    z-index: 1;
  }
  .about__top,
  .footer__top {
    grid-area: 1/1/2/2;
  }
  .about__prodBox,
  .footer__prodBox {
    grid-area: 1/2/3/3;
    margin: -50px -14px -24px;
  }
  .about__orderBox,
  .footer__orderBox {
    grid-area: 1/3/3/4;
    width: 292px;
  }
  .about__rating,
  .footer__rating {
    position: relative;
    grid-area: 2/1/3/2;
    z-index: 5;
  }
  .about__prodBox:before,
  .footer__prodBox:before {
    display: none;
  }
  .about__prodBox:after,
  .footer__prodBox:after {
    display: none;
  }
  .about__bg,
  .footer__bg {
    margin: -35px -223px 0;
    width: auto;
    max-height: 525px;
    transform: translateX(30px);
  }
  .about__subtitle,
  .footer__subtitle {
    width: 90%;
  }
  .about__prod,
  .footer__prod {
    transform: translate(-50%, -50%) translate(15px, 150px) rotateZ(-5.77deg);
  }
  .about__decor--1,
  .footer__decor--1 {
    transform: translate(-50%, -50%) translate(-90px, 145px) rotateZ(37.07deg);
  }
  .footer__top {
    grid-area: 1/1/3/2;
  }
  .footer__bg {
    margin: 0px -210px 0;
  }
  .footer__prod {
    transform: translate(-50%, -50%) translate(35px, 150px) rotateZ(-5.77deg);
  }
  .footer__decor--1 {
    transform: translate(-50%, -50%) translate(10px, 145px) rotateZ(37.07deg);
  }
  .footer__prodBox {
    z-index: 0;
  }
  .footer__wrap:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background: linear-gradient(to right, var(--color-violet-light2) 50%, rgba(var(--color-violet-light2-rgb), 0) 100%);
  }
  .wrinkles__box {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .wrinkles__item {
    max-width: 50%;
    min-width: 40%;
    flex: 2;
  }
  .info {
    position: relative;
    z-index: 2;
  }
  .info__wrap {
    display: flex;
  }
  .info__wrap--1 .info__box {
    flex: 2;
    position: relative;
    z-index: 5;
  }
  .info__wrap--2 {
    flex-direction: column;
    align-items: center;
  }
  .info__img {
    margin: -170px -100px -90px 0;
  }
  .info__img--1 {
    width: 500px;
    max-width: none;
  }
  .info__img--2 {
    margin: -70px -100px -90px 0;
  }
  .info__img--2 img {
    width: 500px;
    max-width: none;
    margin-left: -100px;
  }
  .info__img--3 {
    margin: -110px -100px -90px 0;
  }
  .info__img--3 img {
    width: 500px;
    max-width: none;
    margin-left: -100px;
  }
  .info__img--4 {
    flex: 2;
    margin: 15px -15px -35px -50px;
  }
  .info__but .but {
    margin-left: 0;
  }
  .info__timer {
    justify-content: flex-start;
  }
  .info__title, .info__subtitle {
    position: relative;
    z-index: 2;
  }
  .info__title--1, .info__subtitle--1 {
    text-align: left;
  }
  .info__compound {
    position: relative;
    flex-direction: row;
    z-index: 2;
  }
  .why {
    position: relative;
    z-index: 1;
  }
  .why__wrap {
    display: flex;
    flex-direction: row-reverse;
  }
  .why__box {
    flex: 2;
  }
  .why__img {
    flex: 2;
  }
  .why__prod {
    width: 160px;
    transform: translate(-50%, -50%) translate(30px, 80px) rotateZ(15.26deg);
  }
  .why__prod--dop {
    width: 160px;
    transform: translate(-50%, -50%) translate(-70px, -140px) rotate(-22.58deg);
  }
  .exactly__box {
    flex-direction: row;
    gap: 15px;
  }
  .exactly__prod {
    position: relative;
    z-index: 5;
    flex-basis: 120px;
  }
  .exactly__left {
    flex-direction: row-reverse;
    flex: 2;
  }
  .exactly__left .exactly__table {
    flex-direction: row-reverse;
  }
  .exactly__left .exactly__col1.exactly__row1 {
    text-align: right;
    flex: 0 0 calc(100% - 40px);
    border-right: 1px solid var(--color-gray-light2);
    margin-right: 39px;
    margin-bottom: 0;
    padding: 15px 10px;
  }
  .exactly__left .exactly__col1:not(.exactly__row1) {
    border: none;
    border-top: 1px solid var(--color-gray-light2);
    border-left: 1px solid var(--color-gray-light2);
    padding-left: 10px;
    position: relative;
  }
  .exactly__left .exactly__col1:not(.exactly__row1):before {
    content: "";
    position: absolute;
    width: 200%;
    border-top: 1px solid var(--color-gray-light2);
    top: -1px;
    left: 0;
  }
  .exactly__left .exactly__col2 {
    text-align: right;
  }
  .exactly__right {
    flex: 2;
  }
  .exactly__right .exactly__col1.exactly__row1 {
    flex: 0 0 calc(100% - 40px);
    border-left: 1px solid var(--color-gray-light2);
    margin-left: 39px;
    margin-bottom: 0;
    padding: 15px 10px;
  }
  .exactly__right .exactly__col1:not(.exactly__row1) {
    position: relative;
    padding-right: 10px;
  }
  .exactly__right .exactly__col1:not(.exactly__row1):before {
    content: "";
    position: absolute;
    width: 200%;
    border-top: 1px solid var(--color-gray-light2);
    top: -1px;
    right: 0;
  }
  .exactly__yes {
    margin-left: auto;
  }
  .video__box {
    position: relative;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.3) 100%), var(--video-bg);
    background-size: 100% 270%;
    background-position: center;
  }
  .video__box video {
    position: relative;
    width: 300px;
    height: 533px;
    margin: 0 auto;
    z-index: 2;
  }
  .video__bg {
    display: block;
    position: absolute;
    z-index: 1;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    background: inherit;
    filter: blur(20px);
  }
}
@media (min-width: 1199.98px) {
  .content {
    width: 1165px;
  }
  .wrapper {
    gap: 100px;
  }
  .title {
    font-size: 40px;
  }
  .title span {
    padding: 0 9px 5px;
    margin: -3px -5px 0;
  }
  .order__title {
    font-size: 25px;
  }
  .order__price {
    margin-top: 20px;
  }
  .about {
    padding-top: 40px;
  }
  .about__wrap,
  .footer__wrap {
    padding: 115px 65px 85px 65px;
  }
  .about__wrap:before,
  .footer__wrap:before {
    top: -90px;
    left: 25%;
  }
  .about__wrap:after,
  .footer__wrap:after {
    content: "";
    position: absolute;
    width: 524px;
    height: 524px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, var(--color-white) 0%, rgba(var(--color-white-rgb), 0) 100%);
    z-index: 0;
    top: -74px;
    left: -20%;
  }
  .about__tag,
  .footer__tag {
    font-size: 20px;
    padding: 5px 15px;
  }
  .about__title,
  .footer__title {
    margin-top: 22px;
    font-size: 60px;
  }
  .about__subtitle,
  .footer__subtitle {
    margin-top: 26px;
    width: 75%;
  }
  .about__bg,
  .footer__bg {
    margin: -130px -415px -265px -370px;
    max-height: none;
    height: 971px;
    transform: translateX(70px);
  }
  .about__orderBox,
  .footer__orderBox {
    width: 335px;
  }
  .about__rating,
  .footer__rating {
    margin-left: 20px;
  }
  .about__prod,
  .footer__prod {
    width: 269px;
    transform: translate(-50%, -50%) translate(-100px, 205px) rotateZ(-5.77deg);
  }
  .about__decor--1,
  .footer__decor--1 {
    width: 167px;
    transform: translate(-50%, -50%) translate(-230px, 190px) rotateZ(37.07deg);
  }
  .about__decor--2,
  .footer__decor--2 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 346px;
    filter: blur(10px);
    transform: translate(-50%, -50%) translate(-630px, 165px) rotate(50.34deg);
  }
  .about__decor--3,
  .footer__decor--3 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 257px;
    filter: blur(10px);
    transform: translate(-50%, -50%) translate(550px, -320px) rotate(50.34deg);
  }
  .about__decor--4,
  .footer__decor--4 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 185px;
    filter: blur(10px);
    transform: translate(-50%, -50%) translate(150px, 132px) rotate(-17.9deg);
  }
  .wrinkles__subtitle {
    margin-top: 25px;
  }
  .wrinkles__box {
    margin-top: 60px;
  }
  .wrinkles__item {
    max-width: 25%;
    min-width: 22%;
    gap: 12px;
  }
  .info__wrap {
    padding: 45px 65px;
    margin: 0 -15px;
  }
  .info__wrap:after {
    position: absolute;
    content: "";
    width: 524px;
    height: 524px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, var(--color-white) 0%, rgba(var(--color-white-rgb), 0) 100%);
    z-index: 0;
    top: -100px;
    left: -20%;
  }
  .info__box {
    position: relative;
    z-index: 1;
  }
  .info__title {
    line-height: 1.4;
  }
  .info__subtitle {
    margin-top: 18px;
    font-size: 25px;
    line-height: 1.4;
  }
  .info__but {
    margin-top: 32px;
  }
  .info__but--2 {
    margin-top: 50px;
  }
  .info__img {
    margin: 0;
  }
  .info__img--1 {
    margin: -250px -132px -125px -55px;
    width: 585px;
  }
  .info__img--2 img {
    width: 737px;
    margin: -170px -125px -125px -100px;
  }
  .info__img--3 .info__label {
    display: block;
    transform: translate(155px, -105px);
  }
  .info__img--3 img {
    width: 722px;
    margin: -350px -215px -60px 0px;
  }
  .info__img--4 > div {
    margin-top: 60px;
    transform: translateX(50px);
  }
  .info__label {
    width: 135px;
    transform: translate(10px, -115px);
  }
  .info__label b {
    font-size: 48px;
    line-height: 1;
  }
  .info__label span {
    font-size: 14px;
  }
  .info__timer {
    padding-left: 0;
  }
  .info__compound {
    position: relative;
    gap: 230px;
    margin: 0;
    padding: 70px 0 20px;
  }
  .info__compound:before {
    content: "";
    position: absolute;
    width: 244px;
    height: 489px;
    background: url("../img/prod.png") center no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-8px, 43px);
  }
  .info__compound--letf, .info__compound--right {
    gap: 130px;
  }
  .info__compound--letf {
    direction: rtl;
  }
  .info__compound--letf div[class*="--text"] {
    direction: ltr;
    text-align: right;
  }
  .info__compound--item {
    position: relative;
  }
  .info__compound--item:before {
    content: "";
    position: absolute;
    width: 86px;
    height: 62px;
    background: url("../img/arrow.png") center no-repeat;
  }
  div[class*="--letf"] .info__compound--item:nth-child(1):before {
    top: 120px;
    right: -10px;
    transform: scale(-1, 1);
  }
  div[class*="--letf"] .info__compound--item:nth-child(2):before {
    top: -62px;
    right: -10px;
    transform: scale(-1, -1);
  }
  div[class*="--right"] .info__compound--item:nth-child(1):before {
    top: 120px;
    left: -10px;
  }
  div[class*="--right"] .info__compound--item:nth-child(2):before {
    top: -62px;
    left: -10px;
    transform: scale(1, -1);
  }
  .info__compound--item img {
    width: 120px;
    height: 120px;
  }
  .info__compound--item b {
    font-size: 20px;
  }
  .info__decor {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .info__decor--1 {
    position: absolute;
    width: 167px;
    filter: blur(5px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-560px, 280px) rotateZ(136.26deg);
    z-index: 2;
  }
  .info__decor--2 {
    position: absolute;
    width: 264px;
    filter: blur(5px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(340px, -300px) rotateZ(136.26deg);
    z-index: 2;
  }
  .info__decor--3 {
    position: absolute;
    width: 185px;
    filter: blur(10px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(60px, 195px) rotate(-17.9deg);
    z-index: 10;
  }
  .info__decor--4 {
    position: absolute;
    width: 212px;
    filter: blur(10px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-35px, -123px) rotate(-17.9deg);
    z-index: 1;
  }
  .why__prod {
    width: 240px;
    transform: translate(-50%, -50%) translate(85px, 60px) rotateZ(15.26deg);
  }
  .why__prod--dop {
    width: 240px;
    transform: translate(-50%, -50%) translate(-90px, -160px) rotate(-22.58deg);
  }
  .why__box {
    flex: 1.7;
  }
  .why__img {
    flex: 2.3;
  }
  .why__list {
    margin-top: 50px;
  }
  .why__text {
    margin-top: 50px;
  }
  .why__decor--1 {
    width: 167px;
    transform: translate(-50%, -50%) translate(-190px, -110px) rotateZ(37.07deg);
  }
  .why__decor--2 {
    width: 252px;
    transform: translate(-50%, -50%) translate(205px, -175px) rotate(-17.9deg);
  }
  .why__decor--3 {
    width: 144px;
    transform: translate(-50%, -50%) translate(-140px, 200px) rotate(-5.78deg);
  }
  .exactly__box {
    margin: 80px -15px 0;
  }
  .exactly__prod {
    flex: 0 0 180px;
  }
  .exactly__subtitle {
    font-size: 25px;
  }
  .exactly__col1.exactly__row1 {
    font-size: 25px;
    padding: 20px 15px !important;
  }
  .exactly__col1 {
    padding: 20px 0 0 2px;
  }
  .exactly__col2 {
    padding: 20px 15px !important;
  }
  .exactly__item {
    font-size: 18px;
  }
  .exactly__box {
    gap: 0;
  }
  .exactly__left {
    gap: 0;
  }
  .exactly__left .exactly__prod {
    margin-left: -10px;
  }
  .exactly__right {
    gap: 0;
  }
  .exactly__right .exactly__prod {
    margin-right: -10px;
  }
  .video__box {
    width: 830px;
    margin: 60px auto 0;
  }
  .after__slider,
  .after2__slider {
    margin-top: 60px;
  }
  .footer__wrap:before {
    z-index: 0;
  }
  .footer__list {
    width: 70%;
  }
  .footer__prod {
    transform: translate(-50%, -50%) translate(-80px, 205px) rotateZ(-5.77deg);
  }
  .footer__decor--1 {
    transform: translate(-50%, -50%) translate(-150px, 285px) rotateZ(37.07deg);
  }
  .footer__decor--2 {
    transform: translate(-50%, -50%) translate(-650px, 165px) rotate(50.34deg);
  }
}
