@charset "UTF-8";

@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Regular.eot");
  src: url("../fonts/Gilroy/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Regular.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Regular.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Medium.eot");
  src: url("../fonts/Gilroy/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Medium.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Medium.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Semibold.eot");
  src: url("../fonts/Gilroy/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Semibold.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Semibold.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Semibold.svg#Gilroy") format("svg");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Bold.eot");
  src: url("../fonts/Gilroy/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy/Gilroy-Bold.ttf") format("truetype"), url("../fonts/Gilroy/Gilroy-Bold.svg#Gilroy") format("svg");
}

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

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  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;
}

:root {
  --container-width: 1260px;
  --transition: 0.3s ease;
  --default-font-family: "Gilroy";
  --heading-font-family: "Gilroy";
  --sp: 100px 10px;
  --accent: #EF358C;
  --bg: #fff;
  --text-color: #242424;
  --fz-default: 18px;
  --h1: 72px;
  --h2: 45px;
  --h3: 40px;
  --h4: 25px;
  --l: 27px;
  --m: 21px;
  --s: 16px;
}

body {
  font: 400 var(--fz-default)/140% var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--bg);
  min-width: 360px;
  color: var(--text-color);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

a {
  font-family: var(--default-font-family), Helvetica, Arial, sans-serif;
}

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border: 2px solid red !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border: 2px solid #99FF99 !important;
}

.overflow-hidden {
  overflow: hidden;
}

header.hide {
  top: -80px;
}

.top-initial {
  top: 65px !important;
  transition: 1s;
}

h1 {
  font: 800 var(--h1)/106% var(--heading-font-family);
}

h2 {
  font: 800 var(--h2)/125% var(--heading-font-family);
}

h3 {
  font: 800 var(--h3)/130% var(--heading-font-family);
}

h4 {
  font: 800 var(--h4)/133% var(--heading-font-family);
}

a {
  color: var(--text-color);
  text-decoration: none;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  max-width: 400px;
  position: relative;
}

.form .input {
  background: #fff;
  width: 100%;
  height: 60px;
  border: 2px solid #dcdcdc;
  border-radius: 3px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 60px;
  display: block;
}

.form .input__wrap {
  display: block;
  text-align: left;
  margin-bottom: 15px;
}

.form .input__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: block;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .intl-tel-input .selected-flag {
  display: none;
}

.form #phone {
  padding-left: 15px;
}

.form .country-list .country-name {
  color: #333;
}

form input.error {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #EF358B !important;
}

form input.not_error {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #99FF99 !important;
}

.header {
  background: #FFDCEC;
  border-bottom: 1px solid rgba(239, 53, 140, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  z-index: 999999;
  padding: 20px 10px;
  margin: auto;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__logoImg {
  height: 40px;
  width: 40px;
  border-radius: 5.024px;
  background: #EF358C;
  margin-right: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__logoText {
  font-weight: 700;
  color: rgb(0, 0, 0);
  font-size: 20.856px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%;
  letter-spacing: 0.626px;
}

.header__logoText span {
  color: var(--accent);
}

.header__mobileMenuBox {
  display: none;
}

.header__mobile_btns {
  display: none;
}

.header__menu {
  width: 424px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.header__menu li {
  font-size: 16px;
  font-weight: 400;
}

.header__menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header__menuItem {
  font: normal 500 24px/150% Gilroy;
  color: #242424;
  letter-spacing: 0.72px;
}

.header__container {
  position: relative;
}

.header__enter_btns {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 60px;
}

.header__signInBtnMobile {
  display: none;
}

.header__signUpBtnMobile {
  display: none;
}

.header__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: nowrap;
  gap: 10px;
}

.header__btns a {
  background: var(--accent);
  padding: 5px 23px;
  border-radius: 5px;
  border: none;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.48px;
}

.header .footer__socials {
  gap: 10px;
  margin: 40px auto 30px;
  display: none;
}

.header .footer__phone {
  margin: 10px auto;
  display: none;
}

.header .footer__mail {
  margin: 10px auto;
  display: none;
}

.header .footer__fb {
  background: url(../img/facebook.svg) center/contain no-repeat;
}

.header .footer__inst {
  background: url(../img/instagram.svg) center/contain no-repeat;
}

.header .footer__yb {
  background: url(../img/youtube.svg) center/contain no-repeat;
}

.header .footer__tg {
  background: url(../img/telegram.svg) center/contain no-repeat;
}

.menu-open .header__menu {
  transform: translateY(0);
}

.menu-open .header__hamburger .top-bun {
  transform: translateY(10px) rotate(45deg);
}

.menu-open .header__hamburger .meat {
  transform: scale(0);
}

.menu-open .header__hamburger .bottom-bun {
  transform: translateY(-10px) rotate(-45deg);
}

.header.hide {
  top: -100px;
}

.main {
  min-height: 758px;
  background: linear-gradient(129deg, #FFFBF5 0%, #FFD2DE 100%);
  padding-top: 120px;
  position: relative;
}

.main__container {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.main__info {
  width: 50%;
  max-width: 525px;
}

.main__overTitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}

.main__overTitleImg {
  background: url(../img/overTitleImg.png) center/contain no-repeat;
  margin-right: 15px;
  margin-top: -20px;
  width: 99px;
  height: 114px;
}

.main__overTitleImg:after {
  content: "";
  display: block;
  padding-bottom: 115.1515151515%;
}

.main__overTitleText {
  color: #242424;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%;
  letter-spacing: 0.72px;
}

.main__overTitleLogoText {
  color: rgb(36, 36, 36);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%;
  letter-spacing: 0.72px;
  margin-left: 10px;
}

.main__overTitleLogoText span {
  color: var(--accent);
}

.main__title {
  order: 2;
  color: #242424;
  font-size: 85px;
  font-style: normal;
  font-weight: 800;
  line-height: 115%;
  letter-spacing: 2.55px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.main__title span {
  color: var(--accent);
}

.main__subtitle {
  color: #242424;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.54px;
  margin-bottom: 21px;
}

.main__subtitle span {
  font-weight: 700;
}

.main__callInfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 25px;
  border-radius: 10px;
  background: #FFF;
  padding: 20px 20px 20px 39px;
  max-width: 466px;
  margin-left: 17px;
}

.main__callInfo span {
  font-weight: 700;
}

.main__callInfoIcon {
  margin-right: 20px;
}

.main__callInfoText {
  position: relative;
}

.main__callInfoText :before {
  content: url(../img/callInfoIcon.svg);
  position: absolute;
  left: -56px;
  right: 0;
  bottom: 0;
  margin: auto;
  top: 5px;
  display: flex;
  align-items: center;
  z-index: 10;
}

.main__callInfoText ::after {
  content: "";
  position: absolute;
  height: 54px;
  width: 54px;
  background: white;
  left: -65px;
  border-radius: 50%;
  bottom: 0;
  margin: auto;
  top: -1px;
  display: flex;
  align-items: center;
  z-index: 9;
}

.main__btn {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.main__btn button {
  font: 600 18px Gilroy;
  width: 271px;
  height: 59px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  color: #FFF;
  letter-spacing: 0.54px;
}

.main__btn button a {
  color: white;
}

.main__btn img {
  margin-left: 37px;
}

.main__img {
  background: url(../img/main-bg.webp) bottom/contain no-repeat;
  width: 50%;
  position: relative;
  z-index: 1;
}

.main__img:after {
  content: "";
  display: block;
  padding-bottom: 107.5806451613%;
}

.main__heart {
  background: url(../img/mainHeart.svg) center/contain no-repeat;
  width: 117px;
  position: absolute;
  bottom: 50px;
  left: 300px;
}

.main__heart:after {
  content: "";
  display: block;
  padding-bottom: 60.6837606838%;
}

.main__ellipseBig {
  position: absolute;
  height: 85px;
  width: 85px;
  background: white;
  border-radius: 50%;
  opacity: 0.400000006;
  top: -4px;
  right: 3px;
}

.main__ellipseMedium {
  position: absolute;
  top: 56px;
  right: 571px;
  height: 64px;
  width: 64px;
  background: white;
  border-radius: 50%;
  opacity: 0.400000006;
}

.main__ellipseSmall {
  position: absolute;
  top: 80px;
  height: 15px;
  width: 15px;
  right: 114px;
  background: white;
  border-radius: 50%;
  opacity: 0.400000006;
}

.main__ellipseSmall-2 {
  top: 20px;
  right: 580px;
}

.feelings {
  padding: var(--sp);
  position: relative;
}

.feelings__containerInner {
  min-height: 666px;
  position: relative;
  background: #FFF6EB;
}

.feelings__title {
  max-width: 813px;
  margin: auto;
  color: #242424;
  text-align: center;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1.35px;
  padding: 70px 0 50px 0;
}

.feelings__title span {
  color: var(--accent);
}

.feelings__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 35px;
  padding: 0 70px;
}

.feelings__listItem {
  width: 498px;
  min-height: 170px;
  border-radius: 10px;
  background: #FFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.feelings__listItem .img {
  margin-left: -15px;
  background: center/contain no-repeat;
  height: 150px;
  width: 140px;
}

.feelings__listItem .img:after {
  content: "";
  display: block;
  padding-bottom: 107.1428571429%;
}

.feelings__listItemText {
  color: #242424;
  font-size: 21px;
  font-style: normal;
  line-height: 140%;
  letter-spacing: 0.63px;
  margin-left: 40px;
  max-width: 333px;
  margin: auto;
  text-align: center;
  display: flex;
}

.feelings__listItemText span {
  font-weight: 700;
}

.feelings__dots {
  position: absolute;
  top: 16px;
  left: 12px;
  width: 149px;
}

.feelings__dots:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.feelings__dubbleEllipse {
  position: absolute;
  top: 15px;
  right: -40px;
  width: 158px;
}

.feelings__dubbleEllipse:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.questions {
  margin: 0 auto 0px;
}

.questions__innerWrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

.questions__img div {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 237px;
  background: center/contain no-repeat;
}

.questions__img div:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.questions__content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 236px;
  width: 91%;
  background: #FFCF5D;
  padding-left: 130px;
  position: relative;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.questions__contentItem {
  height: 50px;
  border-radius: 115px;
  border: 1px solid #FFCF5D;
  background: #FFF;
  color: #242424;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.48px;
}

.questions__contentItem:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-4.756deg);
  margin: 10px;
  height: 50px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
}

.questions__contentItem:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(8.881deg);
  margin: 10px;
  height: 50.817px;
  margin-left: 47px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
}

.questions__contentItem:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(4.214deg);
  display: flex;
  padding: 0 30px;
  height: 49.49px;
  margin: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 15px;
}

.questions__contentInfo {
  max-width: 501px;
  font-size: 21px;
  font-style: normal;
  line-height: 140%;
  letter-spacing: 0.63px;
  margin-right: 30px;
}

.questions__contentInfo span {
  font-weight: 700;
}

.questions__icon1 {
  position: absolute;
  left: 210px;
  top: 19px;
  z-index: 7;
  width: 35px;
}

.questions__icon1:after {
  content: "";
  display: block;
  padding-bottom: 157.1428571429%;
}

.questions__icon2 {
  position: absolute;
  top: 104px;
  left: 239px;
  z-index: 7;
  width: 25px;
}

.questions__icon2:after {
  content: "";
  display: block;
  padding-bottom: 152%;
}

.questions__icon3 {
  position: absolute;
  left: 223px;
  bottom: 28px;
  z-index: 7;
  width: 37px;
}

.questions__icon3:after {
  content: "";
  display: block;
  padding-bottom: 81.0810810811%;
}

.questions__heart {
  position: absolute;
  left: 570px;
  top: 65px;
  z-index: 7;
  width: 96px;
}

.questions__heart:after {
  content: "";
  display: block;
  padding-bottom: 58.3333333333%;
}

.reason {
  padding: var(--sp);
}

.reason__title {
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1.35px;
  max-width: 935px;
  text-align: center;
  margin: auto;
  margin-bottom: 15px;
  font-size: var(--h2);
}

.reason__title span {
  color: var(--accent);
}

.reason__subtitle {
  font-size: var(--m);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.63px;
  margin: auto;
  text-align: center;
  margin-bottom: 45px;
}

.reason__info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason__text {
  height: 578px;
  width: 578px;
  background: #FFDCEC;
  border-radius: 50%;
  flex-direction: column;
  border: 25px solid white;
  position: relative;
  z-index: 10;
  margin-right: -60px;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason__text p {
  max-width: 384px;
  font-size: var(--l);
  text-align: center;
  color: #242424;
  letter-spacing: 0.81px;
  line-height: 140%;
}

.reason__text p span {
  font-weight: 700;
}

.reason__img {
  position: relative;
  height: 578px;
  width: 578px;
}

.reason__img .img {
  width: 578px;
  position: relative;
  background: center/contain no-repeat;
  position: absolute;
  z-index: 9;
}

.reason__img .img:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.accent__circle {
  height: 578px;
  width: 578px;
  border: 1px solid #EF358B;
  position: absolute;
  border-radius: 50%;
  left: -45px;
}

.accent__border_circleB {
  height: 20px;
  width: 20px;
  background: #EF358B;
  border-radius: 50%;
  position: absolute;
  top: 89px;
  left: 17px;
}

.accent__border_circleS {
  height: 8px;
  width: 8px;
  background: #EF358B;
  position: absolute;
  border-radius: 50%;
  top: 66px;
  left: 52px;
}

.accent__bg {
  position: absolute;
  height: 578px;
  width: 578px;
  background: #EF358B;
  border-radius: 50%;
  left: 45px;
  z-index: -5;
  top: 0;
}

.about {
  padding: 70px 0 240px 0;
  margin-bottom: 210px;
  background: radial-gradient(202.99% 112.53% at -10% 7.59%, #FFF 0%, rgba(255, 255, 255, 0) 41.06%), radial-gradient(48.83% 87.24% at 91.77% 70.7%, #FFF 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(73.75% 35.33% at 75.8% 0%, #FFDCEC 0%, rgba(255, 220, 236, 0) 100%), radial-gradient(56.12% 88.79% at 17.4% 87.07%, #FFDCEC 0%, #FFFAFE 100%);
}

.about__container {
  position: relative;
}

.about__wrap {
  position: relative;
}

.about__title {
  font-size: var(--h2);
  text-align: center;
  max-width: 728px;
  margin: 0px auto 50px;
  position: relative;
  z-index: 1;
}

.about__title span {
  color: var(--accent);
}

.about__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__img {
  background: center/contain no-repeat;
  width: 100%;
}

.about__img:after {
  content: "";
  display: block;
  padding-bottom: 61.369193154%;
}

.about__info {
  max-width: 505px;
}

.about__history {
  margin-bottom: 20px;
  color: #242424;
  font-size: var(--m);
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.63px;
}

.about__history span {
  font-weight: 700;
}

.about__comunity {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
  margin: 20px 0;
  border-radius: 10px;
  background: #FFFBF6;
}

.about__comunity_avatars {
  display: flex;
  justify-content: flex-start;
  margin: initial;
  padding-top: 25px;
  padding-left: 20px;
}

.about__comunity_img {
  position: relative;
}

.about__comunity_img:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.about__comunity_img:nth-child(1) {
  width: 80px;
  background: center/contain no-repeat;
  z-index: 1;
}

.about__comunity_img:nth-child(2) {
  width: 80px;
  background: center/contain no-repeat;
  z-index: 2;
  margin-left: -15px;
}

.about__comunity_img:nth-child(3) {
  width: 80px;
  background: center/contain no-repeat;
  z-index: 3;
  margin-left: -15px;
}

.about__comunity_img:nth-child(4) {
  width: 80px;
  height: 80px;
  z-index: 4;
  margin-left: -15px;
  background: rgb(255, 147, 197);
  border-radius: 50%;
  border: 5px solid white;
  box-sizing: border-box;
  color: #242424;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.63px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__comunity_text {
  padding: 25px;
  border-radius: 10px;
  gap: 25px;
  background: #FFFBF6;
  color: #242424;
  font-size: var(--s);
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.48px;
}

.about__comunity_text span {
  font-weight: 700;
}

.about__p {
  color: #242424;
  font-size: var(--m);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.63px;
}

.about__p span {
  font-weight: 700;
}

.about__dubbleEllipse {
  position: absolute;
  width: 150px;
  background: center/contain no-repeat;
  top: 0;
  right: 0;
}

.about__dubbleEllipse:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.about__baner {
  padding: 60px;
  width: 1030px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -342px;
  border-radius: 10px;
  background: #FFCF5D;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 163px;
}

.about__baner_info {
  max-width: 429px;
  margin-left: 47px;
}

.about__baner_info h4 {
  font-size: var(--h4);
  color: #242424;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 10px;
}

.about__baner_info h4::before {
  content: url(../img/logo.svg);
  height: 40px;
  width: 40px;
  position: absolute;
  left: -60px;
  background: rgb(239, 53, 139);
  border-radius: 5.024px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  margin-right: 30px;
}

.about__baner_btn {
  position: relative;
}

.about__baner_btn a {
  font: normal 600 18px/160% Gilroy;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: #EF358B;
  color: #FFF;
  letter-spacing: 0.54px;
  width: 261px;
  height: 59px;
}

.about__baner_btn .icon {
  background: url(../img/aboutIcon.svg) center/contain no-repeat;
  position: absolute;
  top: 0;
  width: 160px;
  top: -122px;
  left: 33px;
}

.about__baner_btn .icon:after {
  content: "";
  display: block;
  padding-bottom: 68.75%;
}

.reviews__slider {
  position: relative;
  bottom: 0;
}

.reviews__title {
  margin: auto;
  max-width: 858px;
  text-align: center;
  margin-bottom: 50px;
}

.reviews__title span {
  color: var(--accent);
}

.reviews .swiper-pagination {
  bottom: -70px;
  position: absolute;
  fill: rgb(239, 53, 139);
}

.reviews .swiper-pagination-bullet-active {
  background: rgb(239, 53, 139);
}

.reviews .swiper-pagination-bullet-active-next {
  background: rgb(36, 36, 36);
  opacity: 1;
}

.reviews .swiper-pagination-bullet-active-prev {
  background: rgb(36, 36, 36);
  opacity: 1;
}

.reviews .swiper-button-prev {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: rgb(255, 220, 236);
  width: 30px;
}

.reviews .swiper-button-prev:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.reviews .swiper-button-prev img {
  height: 20px;
}

.reviews .swiper-button-next {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: rgb(255, 220, 236);
  width: 30px;
}

.reviews .swiper-button-next:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.reviews .swiper-button-next img {
  height: 20px;
}

.reviews .swiper-slide {
  border-radius: 10px;
  background: #FDF3E0;
  padding: 25px;
  width: 100%;
  max-width: 295px;
}

.reviews .swiper-slide--lg {
  max-width: 610px;
  width: 295px !important;
}

.reviews .swiper-button-prev {
  position: absolute;
  top: 480px;
  right: 0;
  left: -150px;
  margin: auto;
}

.reviews .swiper-button-next {
  position: absolute;
  top: 480px;
  right: 0;
  left: 150px;
  margin: auto;
}

.reviews .swiper .slide__img {
  min-height: 390px;
  background: 50% 0/contain no-repeat;
}

.video {
  margin-top: 100px;
}

.video__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 20px;
}

.video__item-wrap {
  background: center/contain no-repeat;
  width: 290px;
  border: 10px solid rgb(243, 243, 243);
  height: 507px;
  border-radius: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.video__item-wrap:after {
  content: "";
  display: block;
  padding-bottom: 177.8947368421%;
}

.video__item-wrap:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  position: absolute;
  z-index: 20;
  width: 92px;
  height: 20px;
  background: url(../img/topSpeaker.png) center/contain no-repeat;
}

.video__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 15px;
  margin-bottom: 74px;
}

.video__btn a {
  display: inline-flex;
  gap: 15px;
}

.video__btn .icon {
  background: url(../img/playIcon.svg) center/contain no-repeat;
  width: 47px;
  cursor: pointer;
}

.video__btn .icon:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.video__btn span {
  color: white;
  font-size: var(--s);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.48px;
  cursor: pointer;
}

.steps {
  padding: var(--sp);
}

.steps .reason__info {
  flex-direction: row-reverse;
}

.steps .reason__text {
  background: #FFF6EB;
}

.steps .reason__text ul {
  max-width: 450px;
}

.steps .reason__img {
  margin-right: -60px;
}

.steps .accent__bg {
  left: -45px;
}

.steps .accent__circle {
  left: 45px;
}

.steps .accent__border_circleB {
  right: 17px;
  left: auto;
}

.steps .accent__border_circleS {
  right: 52px;
  left: auto;
}

.steps ul {
  max-width: 334px;
  color: #242424;
  font-size: var(--m);
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.63px;
  list-style: disc;
  padding-left: 23px;
  padding-left: 80px;
}

.steps ul li::marker {
  color: #EF358B;
}

.mosaic__grid {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  grid-template-rows: 470px 240px;
  grid-gap: 20px;
}

.mosaic__text {
  font-size: 16px;
  color: #242424;
  line-height: 140%;
  letter-spacing: 0.48px;
}

.mosaic__text span {
  font-weight: 700;
}

.mosaic__icon {
  height: 40px;
  width: 40px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 30px;
}

.mosaic__icon:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.mosaic__block {
  z-index: 10;
  height: 470px;
  border-radius: 10px;
  background: #FFFBF6;
  padding: 90px 20px;
  position: relative;
}

.mosaic__block:nth-child(1) {
  background: bottom/contain no-repeat #FFFBF6;
}

.mosaic__block:nth-child(1) .mosaic__icon {
  background: url(../img/mosaicIcon1.svg);
}

.mosaic__block:nth-child(2) {
  background: top/contain no-repeat #FFFBF6;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

.mosaic__block:nth-child(2) .mosaic__icon {
  background: url(../img/mosaicIcon2.svg);
  bottom: 0;
  top: 115px;
  margin: auto;
}

.mosaic__block:nth-child(3) {
  background: bottom/contain no-repeat #FFFBF6;
}

.mosaic__block:nth-child(3) .mosaic__icon {
  background: url(../img/mosaicIcon3.svg);
}

.mosaic__block:nth-child(4) {
  background: right/contain no-repeat #FFFBF6;
  grid-column: 1/4;
  height: 240px;
  display: flex;
  align-items: center;
}

.mosaic__block:nth-child(4) .mosaic__icon {
  background: url(../img/mosaicIcon4.svg);
  top: 0;
  bottom: 0;
  margin: auto;
  left: 125px;
  right: initial;
  margin: auto;
}

.mosaic__block:nth-child(4) .mosaic__text {
  max-width: 501px;
  margin-left: 185px;
  font-size: 16px;
}

.mosaic__block:nth-child(4) .mosaic__text span {
  font-weight: 700px;
}

.start__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.54px;
  position: relative;
  width: 260px;
  height: 59px;
  border-radius: 45px;
  background: #EF358B;
  margin: auto;
  margin: 50px auto 65px;
}

.start__btn::before {
  content: "";
  position: absolute;
  bottom: 0px;
  background: url(../img/mosaicPlain.svg) center/contain no-repeat;
  width: 77px;
  left: -500px;
  height: 117px;
  right: 0;
  margin: auto;
}

.start__btn::before:after {
  content: "";
  display: block;
  padding-bottom: 151.9480519481%;
}

.start__btn:after {
  position: absolute;
  content: "";
  bottom: 0px;
  background: url(../img/mosaicArrow.svg) center/contain no-repeat;
  height: 78px;
  width: 100px;
  left: 350px;
  right: 0;
  height: 77px;
  margin: auto;
}

.start__btn:after:after {
  content: "";
  display: block;
  padding-bottom: 78%;
}

.products {
  padding: var(--sp);
  padding-bottom: 100px;
  background: radial-gradient(202.99% 112.53% at -10% 7.59%, #FFF 0%, rgba(255, 255, 255, 0) 41.06%), radial-gradient(48.83% 87.24% at 91.77% 70.7%, #FFDCEC 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(56.12% 88.79% at 17.4% 87.07%, #FFDCEC 0%, #FFFAFE 100%);
}

.products .start__btn {
  margin-bottom: 0;
}

.products__title {
  max-width: 959px;
  margin-bottom: 50px;
  color: #242424;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1.35px;
  margin: 0 auto 50px;
}

.products__title span {
  color: var(--accent);
}

.products__tab_content {
  color: #242424;
  font-size: var(--m);
  line-height: 140%;
  letter-spacing: 0.63px;
}

.products__tab_content ul {
  list-style: disc;
  padding-left: 20px;
}

.products__tab_content p {
  margin: 20px 0;
}

.products__tab_content li {
  margin: 10px 0;
}

.products__tab_content li::marker {
  color: #EF358B;
}

.products__tab_title {
  font-size: var(--l);
}

.products__tab_title span {
  color: var(--accent);
}

.products__tab_img {
  background: center/contain no-repeat;
  width: 408px;
  position: relative;
  z-index: 99;
}

.products__tab_img:after {
  content: "";
  display: block;
  padding-bottom: 92.4019607843%;
}

.products__tab_content {
  max-width: 516px;
}

.products .tabs-container .slide {
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #E6E6E6;
  background: #FFF;
  padding: 50px 115px;
  justify-content: space-between;
  position: relative;
  min-height: 420px;
}

.products .tabs-container .tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 15px;
}

.products .tabs-container .tabs .tab {
  padding: 10px;
  background: #FFF;
  cursor: pointer;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid #E6E6E6;
  width: 291px;
  height: 80px;
  color: #242424;
  font-size: var(m);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products .tabs-container .tabs .tab-pane {
  display: none;
}

.products .tabs-container .tabs .active {
  border-radius: 10px 10px 0px 0px;
  background: #EF358B;
  width: 295px;
  height: 80px;
  color: #FFF;
  font-size: var(--m);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products .slide__circle_fill {
  height: 60px;
  width: 60px;
  background: #FFDCEC;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 10;
  border-radius: 50%;
  z-index: 9;
}

.products .slide__circle {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  top: 35px;
  left: 35px;
  position: absolute;
  z-index: 10;
}

.products .slide__circleS {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #FFDCEC;
  top: 105px;
  left: 115px;
  position: absolute;
  z-index: 10;
}

.products .start__btn::before {
  background: none;
  content: "";
}

.products .start__btn::after {
  transform: rotate(43deg);
  bottom: -15px;
  left: 330px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: flex;
}

.mobile {
  padding: var(--sp);
  position: relative;
  z-index: 20;
}

.mobile__title {
  margin: auto;
  max-width: 1020px;
  margin: auto;
  text-align: center;
  margin-bottom: 70px;
}

.mobile__title span {
  color: var(--accent);
}

.mobile__img {
  height: 576px;
  background-size: 100% 128%;
  width: 284px;
  position: relative;
  z-index: 105;
  background: 35%/cover no-repeat;
  margin: auto;
}

.mobile__img--wrap {
  position: absolute;
  top: 260px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 687px;
  width: 316px;
  z-index: 102;
}

.mobile__img:after {
  content: "";
  display: block;
  padding-bottom: 214.4366197183%;
}

.mobile .about__dubbleEllipse {
  bottom: 0;
  left: -264px;
  right: 0;
  margin: auto;
  top: -350px;
}

.mobile .about__baner_btn .icon {
  top: -289px;
  left: 0;
  right: -406px;
  transform: rotate(-28deg);
  margin: auto;
}

.result {
  background: linear-gradient(180deg, #FFF 0%, #FFF6EB 100%);
  padding-bottom: 93px;
}

.result__title {
  max-width: 1109px;
  text-align: center;
  margin: auto;
  margin-bottom: -80px;
}

.result__title span {
  color: var(--accent);
}

.result__circle_container {
  position: relative;
  max-width: 988px;
  width: 100%;
  height: 900px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: center/75% no-repeat;
  font-size: var(--s);
  color: #242424;
  text-align: center;
  line-height: 140%;
  letter-spacing: 0.48px;
}

.result__circle_container span {
  font-weight: 700;
}

.result__circle_container:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.result__circle {
  position: absolute;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  font-size: 16px;
  width: 100%;
  max-width: 298px;
  line-height: initial;
}

.center {
  background: center/cover no-repeat;
  width: 534px;
  position: relative;
  height: 575px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.center:after {
  content: "";
  display: block;
  padding-bottom: 107.6779026217%;
}

.result__circle-item:nth-child(2) {
  transform: rotate(90deg) translateY(-480px) rotate(-90deg);
}

.result__circle-item:nth-child(2)::before {
  background: url(../img/resvector4.svg) no-repeat center;
  content: "●";
  font-size: 44px;
  height: 145px;
  display: flex;
  width: 284px;
  border-radius: 50%;
  position: absolute;
  top: 68px;
  left: 6px;
  padding-left: 12px;
  margin: auto;
  justify-content: center;
  flex-direction: column;
  color: #EF358B;
  background-size: contain;
}

.result__circle-item:nth-child(3) {
  transform: rotate(120deg) translateY(-480px) rotate(-120deg);
}

.result__circle-item:nth-child(4) {
  transform: rotate(240deg) translateY(-480px) rotate(-240deg);
}

.result__circle-item:nth-child(5) {
  transform: rotate(260deg) translateY(-480px) rotate(-260deg);
}

.result__circle-item:nth-child(5)::before {
  background: url(../img/resvector3.svg) no-repeat center;
  content: "●";
  font-size: 44px;
  height: 100px;
  display: flex;
  width: 217px;
  border-radius: 50%;
  position: absolute;
  top: 60px;
  left: 50px;
  margin: auto;
  justify-content: center;
  flex-direction: column;
  color: #EF358B;
  background-size: contain;
}

.result__circle-item:nth-child(6) {
  transform: rotate(280deg) translateY(-480px) rotate(-280deg);
}

.result__circle-item:nth-child(6)::before {
  background: url(../img/resVector2.svg) no-repeat center;
  content: "●";
  font-size: 44px;
  height: 100px;
  display: flex;
  width: 161px;
  border-radius: 50%;
  position: absolute;
  top: 47px;
  left: 50px;
  margin: auto;
  justify-content: center;
  flex-direction: column;
  color: #EF358B;
  background-size: contain;
}

.result__circle-item:nth-child(7) {
  position: relative;
  transform: rotate(300deg) translateY(-480px) rotate(-300deg);
}

.result__circle-item:nth-child(7)::before {
  background: url(../img/resvector1.svg) no-repeat center;
  content: "●";
  font-size: 44px;
  height: 100px;
  display: flex;
  width: 87px;
  border-radius: 50%;
  position: absolute;
  top: 80px;
  left: 50px;
  margin: auto;
  justify-content: center;
  flex-direction: column;
  color: #EF358B;
  background-size: contain;
  background-position: 53%;
}

.result__circle-item:nth-child(8) {
  transform: rotate(60deg) translateY(-480px) rotate(-60deg);
}

.result__circle-item:nth-child(8)::before {
  background: url(../img/resvector5.svg) no-repeat center;
  content: "●";
  font-size: 44px;
  height: 170px;
  display: flex;
  width: 284px;
  border-radius: 50%;
  position: absolute;
  top: 65px;
  left: 65px;
  padding-left: 12px;
  margin: auto;
  justify-content: center;
  flex-direction: column;
  color: #EF358B;
  background-size: contain;
}

.result__circle-item:nth-child(9) {
  transform: rotate(180deg) translateY(-436px) rotate(-180deg);
}

.result__image--mobile {
  display: none;
}

.result__image--mobile::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 9;
  left: 0;
  width: 400px;
  height: 400px;
}

.result__image--mobile::after:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.presentation {
  margin: 85px 0;
}

.presentation__icon_copyright {
  position: absolute;
  top: -25px;
  left: 25px;
  width: 59px;
  background: url(../img/iconQuote.svg) center/contain no-repeat;
}

.presentation__icon_copyright:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.presentation__icon_heart {
  position: absolute;
  width: 74px;
  bottom: 10px;
  right: 10px;
  background: url(../img/illustrationHearts.svg) center/contain no-repeat;
}

.presentation__icon_heart:after {
  content: "";
  display: block;
  padding-bottom: 106.7567567568%;
}

.presentation__grid {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  border-radius: 10px;
  padding: 85px;
  background: linear-gradient(129deg, #FFFBF5 0%, #FFD2DE 100%);
}

.presentation__grid_item:nth-child(2) {
  width: 100%;
  background: center/cover no-repeat;
}

.presentation__grid_item:nth-child(2):after {
  content: "";
  display: block;
  padding-bottom: 105.6140350877%;
}

.presentation__grid_item:nth-child(3) {
  grid-column: 1/3;
}

.presentation__grid_item:nth-child(6) {
  grid-column: 1/3;
  background: #FFCF5D;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.presentation__block_title {
  margin-bottom: 15px;
  margin-top: 35px;
  font-size: 27px;
}

.presentation__block_title span {
  color: var(--accent);
}

.presentation__grid_item {
  line-height: 140%;
  letter-spacing: 0.63px;
  font-size: var(--m);
  padding: 20px;
  border-radius: 10px;
  background: #FFF;
  position: relative;
  color: #242424;
}

.presentation__grid_item span {
  font-weight: 700;
}

.presentation__img {
  width: 210px;
  background: center/contain no-repeat;
  max-width: 400px;
  position: relative;
  margin: auto;
}

.presentation__img:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.presentation__info {
  max-width: 600px;
}

.presentation__arrow {
  width: 88px;
  position: absolute;
  right: -87px;
  bottom: 23px;
  background: url(../img/presArrow.svg) center/contain no-repeat;
}

.presentation__arrow:after {
  content: "";
  display: block;
  padding-bottom: 56.8181818182%;
}

.presentation__plain {
  width: 78px;
  position: absolute;
  top: -26px;
  left: -97px;
  background: url(../img/mosaicPlain.svg) center/contain no-repeat;
}

.presentation__plain:after {
  content: "";
  display: block;
  padding-bottom: 153.8461538462%;
}

.bonus__title {
  text-align: center;
  margin-bottom: 50px;
}

.bonus__title span {
  color: var(--accent);
}

.bonus__cart {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: nowrap;
  gap: 80px;
  padding: 70px;
  background: linear-gradient(129deg, rgb(60, 3, 140) 0%, rgb(217, 43, 124) 59%);
}

.bonus__img {
  background: left/contain no-repeat;
  width: 575px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.bonus__img:after {
  content: "";
  display: block;
  padding-bottom: 17.7172061329%;
}

.bonus__info {
  max-width: 580px;
  color: white;
}

.bonus__info span {
  color: white;
}

.bonus__info p {
  font-size: var(--l);
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.81px;
  margin-bottom: 20px;
}

.bonus__info p span {
  font-weight: 700;
}

.bonus__info ul {
  list-style: disc;
  padding-left: 20px;
}

.bonus__info ul li {
  font-size: var(--m);
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

.bonus__info ul li span {
  font-weight: 700;
}

.bonus__price_block {
  padding: 40px 70px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid white;
  position: relative;
}

.bonus__price_old {
  font-size: var(--m);
  display: flex;
  align-items: center;
  position: relative;
}

.bonus__price_old span {
  font-size: 40px;
  margin-left: 20px;
  font-weight: 700;
}

.bonus__price_old::before {
  position: absolute;
  top: 0;
  content: "";
  height: 1px;
  background: rgb(255, 255, 255);
  width: 100%;
  bottom: 0;
  margin: auto;
}

.bonus__price_new {
  font: 400 98px/160% Gilroy;
  letter-spacing: 2.94px;
  width: 314px;
  height: 159px;
  border-radius: 10px;
  text-align: center;
  border: 1px dashed #FFF;
  background: rgba(255, 255, 255, 0.2);
  margin: 48px 0;
}

.bonus__price_new span {
  font-weight: 700;
}

.bonus__text_price {
  font-family: Caveat;
}

.bonus__price_text {
  background: url(../img/bonustext.png) center/contain no-repeat;
  width: 112px;
  margin: auto;
}

.bonus__price_text:after {
  content: "";
  display: block;
  padding-bottom: 37.5%;
}

.bonus__price_btn {
  display: flex;
  width: 271px;
  height: 59px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: #FFF;
  color: #EF358B;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.54px;
  margin: auto;
  margin-top: 25px;
}

.bonus__vector {
  position: absolute;
  background: url(../img/bonusvector.svg) center/contain no-repeat;
  width: 75px;
  bottom: 160px;
  right: 0;
}

.bonus__vector:after {
  content: "";
  display: block;
  padding-bottom: 214.6666666667%;
}

.gift__title {
  margin: auto;
  text-align: center;
  color: #242424;
  text-align: center;
  max-width: 892px;
  font-weight: 700;
  margin: 70px auto 105px;
}

.gift__title span {
  color: var(--accent);
}

.gift__content {
  display: flex;
  justify-content: space-between;
}

.gift__img {
  width: 145px;
  position: absolute;
  left: -28px;
  top: 2px;
  background: center/contain no-repeat;
}

.gift__img:after {
  content: "";
  display: block;
  padding-bottom: 150%;
}

.gift__block-bonus1:before {
  font: 700 80px/140% Gilroy;
  content: "БОНУС 1";
  position: absolute;
  top: -62px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #242424;
  letter-spacing: 2.4px;
  z-index: -1;
}

.gift__block-bonus2:before {
  font: 700 80px/140% Gilroy;
  content: "БОНУС 2";
  position: absolute;
  top: -62px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #242424;
  letter-spacing: 2.4px;
  z-index: -1;
}

.gift__block-bonus3:before {
  font: 700 80px/140% Gilroy;
  content: "БОНУС 3";
  position: absolute;
  top: -62px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #242424;
  letter-spacing: 2.4px;
  z-index: -1;
}

.gift__block {
  max-width: 400px;
  width: 100%;
  min-height: 372px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #FFDCEC;
  padding: 20px;
  display: flex;
  position: relative;
  flex-direction: column;
}

.gift__block p {
  color: #242424;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.54px;
  margin-top: 85px;
}

.gift__info {
  height: 152px;
  border-radius: 10px;
  background: #FFF;
  display: flex;
  position: relative;
  align-items: flex-start;
}

.gift__block_title {
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 150px;
  padding: 20px 20px 20px 120px;
  font-size: var(--m);
}

.gift__block_title span {
  color: var(--accent);
  text-transform: initial;
  font-size: 18px;
}

.gift .start__btn::before {
  background: none;
}

.gift .start__btn::after {
  transform: rotate(45deg);
  bottom: -30px;
}

.insurance {
  background: linear-gradient(180deg, #FFF 0%, #FFECF1 100%);
  padding-bottom: 30px;
}

.insurance__title {
  margin: auto;
  text-align: center;
  max-width: 991px;
  letter-spacing: 1.35px;
  margin-bottom: 50px;
  position: relative;
  z-index: 9;
}

.insurance__title span {
  color: var(--accent);
}

.insurance__label {
  min-width: 311px;
  background: center/cover no-repeat;
}

.insurance__label:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.insurance__content {
  display: flex;
  gap: 86px;
  color: #242424;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.54px;
  align-items: center;
  justify-content: center;
  padding: 0 110px;
  margin-bottom: 60px;
}

.insurance__text {
  width: 100%;
  color: #242424;
}

.insurance__text p {
  max-width: 545px;
}

.insurance__text .accent {
  color: var(--accent);
  font-size: 70px;
}

.insurance__text .accent__block {
  font-size: 115px;
  font-weight: 400;
}

.insurance__accent_content {
  display: flex;
  font-weight: 700;
  align-items: center;
  margin-top: 20px;
  max-width: 660px !important;
  position: relative;
  font-size: 14px;
}

.insurance__info {
  max-width: 525px;
}

.insurance__info span {
  font-weight: 700;
}

.insurance__img {
  background: center/contain no-repeat;
  width: 437px;
}

.insurance__img:after {
  content: "";
  display: block;
  padding-bottom: 92.4485125858%;
}

.insurance__wrap {
  position: relative;
}

.insurance .header__logoImg {
  display: inline-flex;
}

.insurance .feelings__dubbleEllipse {
  background: center/contain no-repeat;
  width: 165px;
  top: 100px;
  right: -50px;
}

.insurance .feelings__dubbleEllipse:after {
  content: "";
  display: block;
  padding-bottom: 90.9090909091%;
}

.footer {
  color: #242424;
  font-size: var(--s);
  line-height: 150%;
  letter-spacing: 0.48px;
  margin-top: 105px;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: wrap;
}

.footer li {
  margin-bottom: 20px;
}

.footer__terms li:before {
  content: url(../img/ok.svg);
  margin-right: 20px;
}

.footer__socials {
  display: flex;
  margin-top: 20px;
  margin-bottom: 32px;
}

.footer__socials a {
  width: 45px;
  margin-right: 15px;
  display: inline-flex;
}

.footer__socials a:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.footer__fb {
  background: url(../img/fb.svg) center/contain no-repeat;
}

.footer__inst {
  background: url(../img/inst.svg) center/contain no-repeat;
}

.footer__yb {
  background: url(../img/yb.svg) center/contain no-repeat;
}

.footer__tg {
  background: url(../img/tg.svg) center/contain no-repeat;
}

.footer__phone {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}

.footer__phone span {
  background: url(../img/phoneIcon.svg) center/contain no-repeat;
  width: 24px;
  display: inline-flex;
  margin-right: 7px;
}

.footer__phone span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.footer__mail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer__mail span {
  background: url(../img/mail.svg) center/contain no-repeat;
  width: 24px;
  display: inline-flex;
  margin-right: 7px;
}

.footer__mail span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.footer__copyright {
  margin-top: 50px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 106px;
  border-top: 1px solid #E1E1E1;
}

.footer__studio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer__studio span {
  background: url(../img/avs.svg) center/contain no-repeat;
  width: 32px;
  display: inline-flex;
  margin-right: 7px;
}

.footer__studio span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(28, 28, 28, 0.5);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-overlay .modal-comments {
  margin-bottom: 0px;
  border-radius: 4px;
  max-width: 431px;
  height: 600px;
  border-radius: 10px;
  padding: 50px;
  background: #FFF;
  position: relative;
  box-shadow: 0px 10px 50px 0px rgba(206, 206, 206, 0.35);
}

.modal-overlay .close-button {
  width: 20px;
  background: url(../img/iconClose.svg);
  position: absolute;
  top: 0;
  right: -40px;
  cursor: pointer;
}

.modal-overlay .close-button:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 0;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal {
  color: #242424;
}

.modal__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.9px;
  text-align: center;
  margin-bottom: 8px;
}

.modal__subtitle {
  color: #242424;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.48px;
}

.modal-content input:not(input[type=checkbox]) {
  border: none;
  border-bottom: 1px solid #929292;
  width: 100%;
  height: 61px;
  font-size: 16px;
  color: #242424;
  position: relative;
  line-height: 61px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5px;
}

.modal-content input:not(input[type=checkbox])::-moz-placeholder {
  line-height: inherit;
  opacity: 0.3;
}

.modal-content input:not(input[type=checkbox])::placeholder {
  line-height: inherit;
  opacity: 0.3;
}

.modal__politics {
  display: flex;
}

.modal__politics a {
  color: var(--accent);
  text-decoration: underline;
}

.modal__info {
  max-width: 307px;
  font-size: 12px;
  color: #929292;
  line-height: 150%;
  margin-top: 30px;
  margin-left: 7px;
}

.modal__btn {
  max-width: 341px;
  height: 59px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: #EF358B;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.54px;
  margin-top: 45px;
  width: 100%;
}

.disabled__btn {
  opacity: 0.5;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Roboto, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --sp: 64px 10px;
    --fz-default: 16px;
    --h1: 48px;
    --h2: 44px;
    --h3: 29px;
    --h4: 20px;
    --l: 20px;
    --m: 18px;
    --s: 14px;
  }

  .header {
    height: 65px;
  }

  .header__mobileMenuBox {
    display: none;
  }

  .header__hamburger {
    position: relative;
    z-index: 5;
    display: block;
    cursor: pointer;
  }

  .header__hamburger .top-bun,
  .header__hamburger .meat,
  .header__hamburger .bottom-bun {
    width: 30px;
    height: 4px;
    background-color: #000000;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
  }

  .header__mobile_btns {
    display: flex;
  }

  .header__menu {
    padding-top: 60px;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 101vh;
    background-color: #ffffff;
    transform: translateY(-150%);
    transition: transform 700ms ease;
    z-index: 4;
    background: #FFF;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .header__menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #FF93C5;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .header__menu ul li {
    color: #242424;
    font-size: 30px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.54px;
    margin: 20px 0;
  }

  .header__signInBtnMobile {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 44px;
    height: 28px;
    padding: 3px 13px;
    background: var(--accent);
  }

  .header__signInBtnMobile a {
    color: #FFF;
    font-size: 12px;
  }

  .header__signUpBtnMobile {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 86px;
    height: 28px;
    padding: 3px 13px;
    background: var(--accent);
  }

  .header__signUpBtnMobile a {
    color: #FFF;
    font-size: 12px;
  }

  .header__btns {
    display: none;
  }

  .header .footer__socials {
    display: flex;
  }

  .header .footer__phone {
    display: flex;
  }

  .header .footer__mail {
    display: flex;
  }

  .main {
    padding-bottom: 0;
    padding-top: 85px;
  }

  .main__container {
    flex-direction: column;
    gap: 30px;
  }

  .main__info {
    width: 100%;
    max-width: initial;
    display: flex;
    flex-direction: column;
  }

  .main__overTitle {
    justify-content: center;
    order: 1;
    align-items: flex-start;
  }

  .main__overTitleText {
    font-size: 22px;
    padding-top: 13px;
  }

  .main__overTitleLogoText {
    font-size: var(--l);
    position: absolute;
    font-size: 24px;
    bottom: 17px;
    left: 318px;
  }

  .main__title {
    text-align: center;
    font-size: var(--h1);
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
  }

  .main__title br {
    display: none;
  }

  .main__subtitle {
    font-size: 18px;
    order: 3;
  }

  .main__callInfo {
    max-width: initial;
    order: 4;
  }

  .main__callInfoText {
    font-size: 16px;
  }

  .main__btn button {
    width: 320px;
    margin-top: 15px;
  }

  .main__btn img {
    position: absolute;
    right: -4px;
    top: -64px;
    height: 60px;
  }

  .main__btn {
    justify-content: center;
    order: 5;
  }

  .main__btn img {
    position: absolute;
    right: 84px;
  }

  .main__btn a {
    font-size: var(--m);
  }

  .main__img {
    width: 100%;
    background: url(../img/main-bg.webp) bottom/contain no-repeat;
  }

  .main__img:after {
    content: "";
    display: block;
    padding-bottom: 80.6451612903%;
  }

  .main__heart {
    top: 0;
    left: 0;
  }

  .main__ellipseMedium {
    display: none;
  }

  .feelings {
    padding-bottom: 0;
  }

  .feelings__container {
    padding-bottom: 70px;
  }

  .feelings__title {
    font-size: var(--h2);
  }

  .feelings__list {
    padding: 0px 70px 70px 70px;
  }

  .feelings__listItem {
    padding: 20px;
  }

  .feelings__listItemText {
    font-size: var(--m);
  }

  .feelings__dots {
    position: absolute;
    top: 6px;
    left: -32px;
    height: 60px;
    background: center/contain no-repeat;
  }

  .feelings__dubbleEllipse {
    position: absolute;
    top: -15px;
    right: -40px;
    background: center/contain no-repeat;
  }

  .feelings__dubbleEllipse:after {
    content: "";
    display: block;
    padding-bottom: 56.9620253165%;
  }

  .questions__content {
    flex-direction: column;
    width: 85%;
    border-top-left-radius: initial;
    border-bottom-left-radius: 10px;
  }

  .questions__contentBlock {
    padding: 30px 0;
  }

  .questions__contentItem {
    font-size: var(--fz-default);
  }

  .questions__contentInfo {
    padding-bottom: 30px;
    font-size: var(--m);
    margin-right: initial;
  }

  .questions__icon3 {
    left: 223px;
    top: 175px;
    bottom: initial;
  }

  .reason__text {
    height: 330px;
    width: 330px;
  }

  .reason__text p {
    max-width: 207px;
    font-size: var(--m);
  }

  .reason__img {
    width: 330px;
    height: 330px;
  }

  .reason__img .img {
    width: 330px;
  }

  .accent__circle {
    height: 330px;
    width: 330px;
    left: -23px;
  }

  .accent__border_circleB {
    top: 37px;
  }

  .accent__border_circleS {
    top: 20px;
  }

  .accent__bg {
    height: 330px;
    width: 330px;
    left: 23px;
  }

  .about__content {
    flex-direction: column;
    gap: 60px;
  }

  .about__comunity_avatars {
    margin: auto;
    padding-left: 0;
  }

  .about__dubbleEllipse {
    width: 153px;
  }

  .about__baner {
    flex-direction: column;
    max-width: 100%;
    gap: 30px;
    bottom: -375px;
  }

  .about__baner_btn .icon {
    top: -18px;
    bottom: -13px;
    right: -181px;
    left: auto;
  }

  .video__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    gap: 20px;
  }

  .video__item-wrap {
    height: 410px;
    width: 235px;
    border: 7px solid rgb(243, 243, 243);
  }

  .video__item-wrap:before {
    width: 83px;
    height: 13px;
    top: -1px;
  }

  .video__btn {
    margin-bottom: 34px;
  }

  .video__btn .icon {
    width: 37px;
  }

  .steps .accent__bg {
    left: -27px;
  }

  .steps .accent__circle {
    left: 25px;
  }

  .steps ul {
    font-size: var(--s);
  }

  .mosaic__grid {
    grid-gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 415px 240px;
  }

  .mosaic__text {
    font-size: 14px;
  }

  .mosaic__block {
    height: 415px;
  }

  .mosaic__block:nth-child(2) .mosaic__icon {
    top: -26px;
  }

  .mosaic__block:nth-child(4) {
    height: 144px;
    padding: 70px 2px;
  }

  .mosaic__block:nth-child(4) .mosaic__icon {
    left: 23px;
  }

  .mosaic__block:nth-child(4) .mosaic__text {
    max-width: 400px;
    margin-left: 77px;
    font-size: 14px;
  }

  .start__btn {
    margin: 0px auto 65px;
  }

  .start__btn:after {
    left: 300px;
    transform: rotate(20deg);
  }

  .products__tab_content {
    max-width: 50%;
  }

  .products .tabs-container .slide {
    padding: 30px;
  }

  .products .tabs-container .tabs .tab {
    max-width: 295px;
    width: 170px;
    padding: 10px;
  }

  .products .start__btn {
    margin: 50px auto 0 auto;
  }

  .mobile__img--wrap {
    top: 325px;
  }

  .result__circle_container {
    height: 600px;
    max-width: 600px;
    width: 100%;
  }

  .result__circle {
    max-width: 220px;
    font-size: 13px;
  }

  .center {
    width: 290px;
    height: 310px;
    max-width: 100%;
  }

  .center:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }

  .result__circle-item:nth-child(2)::before {
    font-size: 18px;
    height: 70px;
    left: -40px;
    top: 60px;
    background-position: 51%;
  }

  .result__circle-item:nth-child(2) {
    transform: rotate(90deg) translateY(-280px) rotate(-90deg);
  }

  .result__circle-item:nth-child(3) {
    transform: rotate(120deg) translateY(-280px) rotate(-120deg);
  }

  .result__circle-item:nth-child(4) {
    transform: rotate(240deg) translateY(-280px) rotate(-240deg);
  }

  .result__circle-item:nth-child(5)::before {
    font-size: 18px;
    height: 35px;
    width: 140px;
    top: 55px;
  }

  .result__circle-item:nth-child(5) {
    transform: rotate(260deg) translateY(-280px) rotate(-260deg);
  }

  .result__circle-item:nth-child(6)::before {
    font-size: 18px;
    height: 35px;
    width: 140px;
    top: 55px;
    background-size: contain;
    left: 40px;
  }

  .result__circle-item:nth-child(6) {
    transform: rotate(280deg) translateY(-280px) rotate(-280deg);
  }

  .result__circle-item:nth-child(7)::before {
    font-size: 18px;
    height: 25px;
    background-position: 50%;
  }

  .result__circle-item:nth-child(7) {
    transform: rotate(300deg) translateY(-280px) rotate(-300deg);
  }

  .result__circle-item:nth-child(8)::before {
    font-size: 18px;
    height: 70px;
    left: 0;
    top: 60px;
    background-position: 51%;
  }

  .result__circle-item:nth-child(8) {
    transform: rotate(60deg) translateY(-280px) rotate(-60deg);
  }

  .result__circle-item:nth-child(9) {
    transform: rotate(183deg) translateY(-334px) rotate(-183deg);
  }

  .presentation__icon_copyright {
    top: 10px;
    width: 40px;
  }

  .presentation__icon_heart {
    width: 60px;
  }

  .presentation__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .presentation__grid_item:nth-child(1) {
    order: 2;
  }

  .presentation__grid_item:nth-child(2) {
    order: 1;
  }

  .presentation__grid_item:nth-child(3) {
    order: 3;
  }

  .presentation__grid_item:nth-child(4) {
    order: 4;
  }

  .presentation__grid_item:nth-child(5) {
    order: 5;
  }

  .presentation__grid_item:nth-child(6) {
    order: 6;
    display: flex;
    flex-direction: column;
  }

  .bonus__cart {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .bonus__price_block {
    border-left: none;
  }

  .gift__content {
    justify-content: space-between;
    flex-direction: column;
    margin: auto;
    gap: 90px;
  }

  .gift__block {
    max-width: 760px;
    margin: auto;
  }

  .gift__block p {
    font-size: 17px;
  }

  .gift__block_title {
    font-size: 27px;
    line-height: 27px;
  }

  .gift__block_title span {
    font-size: 25px;
    margin-top: 15px;
    display: inline-flex;
  }

  .gift .start__btn {
    margin: 65px auto;
  }

  .insurance__content {
    flex-direction: column;
  }

  .insurance__text .accent {
    margin-right: 40px;
  }

  .insurance__content--second .insurance__info {
    order: 2;
  }

  .insurance__content--second .insurance__img {
    order: 1;
  }

  .insurance .feelings__dubbleEllipse {
    top: 130px;
  }

  .footer__wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer__socials {
    justify-content: space-between;
  }

  .footer__socials a {
    margin-right: initial;
  }

  .footer__phone {
    justify-content: center;
  }

  .footer__mail {
    justify-content: center;
  }

  .footer__copyright {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    gap: 10px;
  }
}

@media (max-width: 1260px) and (max-width: 760px) {
  .questions__content {
    width: 100%;
    padding: 20px 20px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  }

  .questions__contentBlock {
    padding: 120px 0 30px 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 360px;
    --sp: 50px 10px;
    --fz-default: 16px;
    --h1: 27px;
    --h2: 27px;
    --h3: 18px;
    --l: 18px;
    --m: 16px;
    --s: 14px;
  }

  .header__logoImg {
    height: 22px;
    width: 22px;
    margin-right: 7px;
  }

  .header__logoImg img {
    height: 18px;
    width: 18px;
  }

  .header__logoText {
    font-size: 12px;
  }

  .main {
    padding-bottom: 0;
  }

  .main__overTitle {
    justify-content: flex-start;
  }

  .main__overTitleLogoText {
    left: 104px;
  }

  .main__title {
    position: relative;
    z-index: 1;
  }

  .main__title br {
    display: block;
  }

  .main__btn button {
    width: 100%;
  }

  .main__img {
    background: url(../img/main-bg.webp) bottom/contain no-repeat;
    width: 320px;
    height: 320px;
    margin: auto;
  }

  .main__img:after {
    content: "";
    display: block;
    padding-bottom: 80.6451612903%;
  }

  .main__heart {
    top: 94px;
    left: 215px;
    width: 92px;
    transform: rotate(-15deg);
  }

  .main__ellipseBig {
    display: none;
  }

  .feelings__container {
    padding-bottom: 120px;
  }

  .feelings__containerInner {
    padding: 0 20px;
  }

  .feelings__list {
    padding: 0 0 20px 0;
  }

  .feelings__listItem {
    flex-direction: column;
  }

  .feelings__listItem .img {
    margin-bottom: 15px;
  }

  .questions {
    margin: 40px auto 0px;
  }

  .questions__img div {
    top: -115px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
  }

  .questions__contentItem {
    padding-left: 0 20px;
  }

  .questions__contentItem:nth-child(1) {
    z-index: 1;
    position: relative;
    padding: 0 20px;
  }

  .questions__contentItem:nth-child(2) {
    padding: 0 20px;
  }

  .questions__contentItem:nth-child(3) {
    padding: 0 20px;
  }

  .questions__icon1 {
    left: 33px;
    top: 85px;
    bottom: initial;
  }

  .questions__icon2 {
    right: 23px;
    top: 35px;
    left: initial;
    bottom: initial;
  }

  .questions__icon3 {
    left: 23px;
    top: 35px;
    bottom: initial;
  }

  .questions__heart {
    position: absolute;
    left: initial;
    top: 85px;
    right: 30px;
    z-index: 7;
  }

  .reason__subtitle {
    margin-bottom: 70px;
  }

  .reason__info {
    flex-direction: column-reverse;
  }

  .reason__text {
    margin-top: -60px;
    margin-right: 0;
  }

  .reason__text ul {
    padding-left: 62px;
  }

  .accent__circle {
    left: 0;
  }

  .accent__border_circleB {
    top: 64px;
  }

  .accent__border_circleS {
    top: 37px;
  }

  .accent__bg {
    top: -25px;
    left: 0;
  }

  .about__img {
    margin-left: -37px;
  }

  .about__baner {
    padding: 40px;
    bottom: -440px;
    gap: 15px;
  }

  .about__baner_info {
    margin-left: 0;
    padding-bottom: 30px;
  }

  .about__baner_info h4::before {
    display: inline-flex;
    position: absolute;
    left: auto;
    margin-left: 0;
    margin-right: 10px;
    left: 0;
    right: 0;
    margin: auto;
    top: -50px;
    justify-content: center;
    align-items: center;
  }

  .about__baner_btn .icon {
    top: -28px;
    bottom: 60px;
    right: -79px;
    left: auto;
  }

  .reviews .swiper-pagination {
    display: none;
  }

  .reviews .swiper-button-prev {
    display: none;
  }

  .reviews .swiper-button-next {
    display: none;
  }

  .video__item-wrap {
    height: 273px;
    width: 160px;
  }

  .video__item-wrap:before {
    height: 9px;
  }

  .video__btn {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    gap: 5px;
  }

  .video__btn .icon {
    width: 27px;
  }

  .video__btn span {
    font-size: 10px;
  }

  .steps .reason__info {
    flex-direction: column;
    margin-top: 80px;
  }

  .steps .reason__img {
    margin-right: initial;
    margin-top: -40px;
    position: relative;
    z-index: 99;
  }

  .steps .accent__bg {
    left: 0;
  }

  .steps .accent__circle {
    left: 0;
  }

  .mosaic__grid {
    display: flex;
    flex-direction: column;
  }

  .mosaic__block:nth-child(1) {
    order: 2;
  }

  .mosaic__block:nth-child(2) {
    order: 1;
  }

  .mosaic__block:nth-child(2) .mosaic__icon {
    top: 75px;
  }

  .mosaic__block:nth-child(3) {
    order: 3;
    height: 450px;
  }

  .mosaic__block:nth-child(4) {
    order: 4;
    background-image: none !important;
    padding: 70px 20px 0 20px;
    min-height: 144px;
    height: 240px;
  }

  .mosaic__block:nth-child(4) .mosaic__icon {
    left: 0;
    right: 0;
    margin: auto;
    top: 30px;
    bottom: initial;
  }

  .mosaic__block:nth-child(4) .mosaic__text {
    margin-left: initial;
  }

  .start__btn {
    margin: 120px auto 50px;
  }

  .start__btn::before {
    position: absolute;
    bottom: 25px;
    background: url(../img/mosaicPlain.svg) center/contain no-repeat;
    width: 58px;
    left: -248px;
    right: 0;
    margin: auto;
  }

  .start__btn:after {
    bottom: -60px;
    left: 225px;
    transform: rotate(45deg);
  }

  .products__tab_content {
    max-width: 100%;
  }

  .products__tab_img {
    width: 300px;
  }

  .products__tab_img:after {
    content: "";
    display: block;
    padding-bottom: 125.6666666667%;
  }

  .products .tabs-container .slide {
    display: flex;
    flex-direction: column;
    margin-right: initial;
    padding: 20px;
    min-height: 740px;
    justify-content: flex-start;
  }

  .products .tabs-container .tabs {
    display: none;
  }

  .products .slide__circle_fill {
    top: 10px;
    left: 10px;
  }

  .products .slide__circle {
    top: 2px;
    left: 2px;
  }

  .products .slide__circleS {
    left: 10px;
  }

  .products .start__btn::after {
    left: 180px;
    bottom: -60px;
  }

  .mobile__img--gif {
    background-size: 100% 138%;
    height: 543px;
  }

  .mobile__img {
    /* bottom: 0; */
    /* margin: auto; */
  }

  .result {
    padding: 50px 0;
    background: linear-gradient(180deg, #FFF 0%, #FFF6EB 100%);
  }

  .result__title {
    margin-bottom: 50px;
  }

  .result__circle_container {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-image: none !important;
  }

  .result__circle_container .start__btn {
    margin: 0px auto 50px;
  }

  .result__circle {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
    background-image: none !important;
    gap: 50px;
    border-radius: 15px;
    max-width: initial;
    min-height: 180px;
    display: flex;
    align-items: center;
  }

  .result__circle p {
    margin: auto;
    font-size: 16px;
  }

  .result__circle-item:nth-child(1) {
    display: none;
  }

  .result__circle-item:nth-child(2)::after {
    content: "";
    background-image: none;
  }

  .result__circle-item:nth-child(9)::after {
    content: "";
    background-image: none;
  }

  .result__circle-item:nth-child(9) {
    background: none;
    padding: 0;
  }

  .result__circle-item {
    transform: translateY(0) !important;
    margin: 20px 0;
    min-height: initial;
  }

  .result__circle-item::before {
    content: "" !important;
    background: none !important;
    height: 50px;
    display: none;
  }

  .result__circle-item::after {
    content: "";
    width: 40px;
    height: 75px;
    top: -80px;
    background-image: url(../img/vector-block.svg);
    color: #EF358B;
    position: absolute;
    display: flex;
    align-items: center;
    font-size: 22px;
    left: 0;
    right: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
  }

  .result__image--mobile {
    background: center/contain no-repeat;
    width: 100%;
    display: block;
    position: relative;
    height: 400px;
    z-index: 10;
  }

  .result__image--mobile:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }

  .presentation__icon_heart {
    width: 40px;
    bottom: 40px;
    right: 22px;
  }

  .presentation {
    margin: -360px 0 85px;
  }

  .presentation__grid {
    padding: 20px;
  }

  .presentation__grid_item:nth-child(2) {
    max-width: 570px;
    width: 100%;
  }

  .presentation__arrow {
    width: 72px;
    right: -53px;
  }

  .presentation__plain {
    width: 77px;
    top: -34px;
    left: -49px;
  }

  .bonus__cart {
    padding: 20px;
  }

  .bonus__img {
    max-width: 575px;
    width: auto;
  }

  .bonus__vector {
    right: 66px;
  }

  .gift__img {
    left: 0;
    right: 0;
    margin: auto;
    top: 113px;
    width: 80px;
  }

  .gift__block-bonus1:before {
    font-size: 72px;
  }

  .gift__block-bonus2:before {
    font-size: 72px;
  }

  .gift__block-bonus3:before {
    font-size: 72px;
  }

  .gift__info {
    width: inherit;
  }

  .gift__block_title {
    padding: 15px;
    text-align: center;
    width: inherit;
  }

  .gift__block_title span {
    font-size: 16px;
  }

  .gift .start__btn::after {
    transform: translate(-10px, -110px);
  }

  .insurance__label {
    margin-bottom: 35px;
  }

  .insurance__content {
    padding: 0;
    gap: 0;
    margin-bottom: 0;
  }

  .insurance__text .accent {
    margin-right: 15px;
  }

  .insurance__img {
    width: 325px;
  }

  .insurance__img:after {
    content: "";
    display: block;
    padding-bottom: 124.3076923077%;
  }

  .insurance .feelings__dubbleEllipse {
    top: 135px;
    z-index: 0;
    left: -102px;
  }

  .modal-overlay .modal-comments {
    padding: 20px;
  }
}