@charset "UTF-8";
.wrap__main {
  font-family: var(--InterTight), sans-serif;
  max-width: 100vw;
  min-height: 100vh;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--color-black);
  position: relative;
  /*overflow: hidden;*/
}
.wrap__main.hidden {
  height: 100vh;
}
.wrap__main.hidden:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1;
}

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

.section {
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
.section .container {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.section__tooltip {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 12px;
  position: relative;
  padding-bottom: 50px;
}

.section__tooltip .content{
  border: 1px solid rgba(255, 101, 156, 0.2);
  box-shadow: 0px 0px 50px 0px rgba(255, 101, 156, 0.2);
  background: var(--color-white);
  border-radius: 30px;
  border-top-left-radius: 0px;
  padding: 29px 41px 40px;
  position: relative;
  z-index: 2;
}
.section__tooltip .section__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: 39px;
  z-index: 1;
  transition: 0.2s all ease-in;
}
.section__tooltip .section__btn:hover {
  transform: translateX(20px);
  transition: 0.2s all ease-in;
}
.section__title {
  color: var(--color-black);
  font: 700 35px/115% var(--InterTight);
}
.section__title.center {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.section__text {
  font: 400 17px/136% var(--Moderustic);
}
.section.reverse .section__info {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right;
}
.section.reverse .section__back {
  left: 0;
  right: unset;
}
.section__btn {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  border-radius: 30px;
  border-top-left-radius: 0px;
  padding: 17px 27px;
  color: var(--color-white);
  background: var(--gradient-pink);
  font: 600 16px/115% var(--InterTight);
  transition: 0.4s ease;
  display: block;
}
.section__btn:hover {
  transition: 0.2s ease;
  transform: scale(1.05);
}
.section__btn.border-pink {
  background: transparent;
  color: var(--color-black);
  position: relative;
  font-weight: 700;
}
.section__btn.border-pink:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  border-radius: 30px;
  border-top-left-radius: 0px;
  border: 3px solid var(--color-primary);
}
.section__btn.border-grey {
  color: var(--color-black);
  position: relative;
  font-weight: 700;
  background: transparent;
}
.section__btn.border-grey:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  border-radius: 30px;
  border: 3px solid var(--color-grey-border);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  overflow: visible;
}
.header .container {
  padding: 19px 58px;
}
.header__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  padding: 5px 32px;
  position: relative;
  overflow: visible;
}
.header__block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.6980392157);
  box-shadow: 0px 0px 50px 0px rgba(255, 101, 156, 0.2);
  z-index: -1;
}
.header__logo {
  width: 76px;
  min-width: 76px;
}
.header__submenu {
  position: absolute;
  padding: 21px;
  width: 262px;
  left: 50%;
  top: calc(100% - 2px);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  transition: 0.2s ease;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 19px;
  text-align: center;
  z-index: 10;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6980392157);
  box-shadow: 0px 0px 50px 0px rgba(255, 101, 156, 0.2);
  backdrop-filter: blur(20px);
}
.header__submenu a {
  transition: 0.2s ease;
  font: 600 16px/24px var(--InterTight);
}
.header__submenu a:hover {
  color: var(--color-primary);
}
.header__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 75px;
  font: 600 18px/24px var(--InterTight);
  color: var(--color-black);
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.header__menu-item {
  position: relative;
  cursor: pointer;
}
.header__menu-item > a {
  white-space: nowrap;
  font: 600 16px/24px var(--InterTight);
  padding: 18px 11px;
  position: relative;
  display: block;
  transition: 0.2s ease;
}
.header__menu-sub > a {
  position: relative;
  padding-right: 26px;
}
.header__menu-sub > a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  transition: 0.2s ease;
  background: url(../img/down.svg) center/20px 20px no-repeat;
}
.header__menu a{
  transition: 0.4s ease;
}
.header__menu a:hover{
  transition: 0.2s ease;
  transform: scale(1.05);
}
.header__drop {
  position: relative;
  cursor: pointer;
}
.header__drop-btn {
  padding: 18px 0 18px 24px;
  position: relative;
  font: 600 18px/115% var(--InterTight);
  width: -moz-max-content;
  width: max-content;
}
.header__drop-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  transition: 0.2s ease;
  background: url(../img/down.svg) center/20px 20px no-repeat;
}
.header__drop-menu {
  transition: 0.2s ease;
  left: 50%;
  top: calc(100% - 2px);
  transform: translateX(-50%);
  position: absolute;
  border-radius: 30px;
  box-shadow: 0px 0px 50px 0px rgba(255, 101, 156, 0.2);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.6980392157);
  padding: 10px;
  min-width: 67px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.header__drop-menu > * {
  padding: 10px 10px;
  font: 600 16px/115% var(--InterTight);
  transition: 0.2s ease;
  white-space: nowrap;
  text-align: center;
}
.header__drop-menu > *:hover {
  color: var(--color-primary);
}
.header__burger {
  display: none;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 7px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 30px;
  transition: 0.2s ease;
}
.header__burger span {
  transition: 0.2s ease;
  background-color: var(--color-black);
  width: 30px;
  height: 3px;
  border-radius: 50px;
}
.header__burger-open span {
  display: block;
  position: absolute;
  top: 50%;
  margin: 0;
  transition: 0.2s ease;
}
.header__burger-open span:nth-child(1) {
  background: var(--color-primary);
  transform: rotate(-45deg);
}
.header__burger-open span:nth-child(2) {
  background: var(--color-primary);
  transform: rotate(45deg);
}
.header__burger-open span:nth-child(3) {
  display: none;
}

.main {
  position: relative;
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}


/*.main:after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: -1px;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  pointer-events: none;*/
/*  backdrop-filter: blur(10px);*/
/*  background: rgba(255, 255, 255, 0.0392156863);*/
/*}*/
.main .container {
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 100px 100px 170px;
}
.main__info {
  height: 100%;
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 47px;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.main__title {
  text-align: center;
  font: 700 84px/86% var(--InterTight);
  max-width: 694px;
  color: white;
  margin: 0 auto;
}
.main__img {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  z-index: -1;
}
.main__img  > *{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100vw;
  min-height: 100vh;
  will-change: transform;
}
.main__btn {
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.info {
  display: -ms-flexbox;
  display: flex;
  background: #FFF6F9;
  position: relative;
}
.info:after {
  content: "";
  position: absolute;
  bottom: -80px;
  height: 80px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: ellipse(55% 85% at 50% 0%);
  background-color: #FFF6F9;
  z-index: 1;
}
.info:before {
  content: "";
  position: absolute;
  top: -80px;
  height: 80px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: ellipse(55% 85% at 50% 100%);
  background-color: #FFF6F9;
  z-index: 1;
}
.info .container {
  padding: 110px 58px 40px;
}
.info__block {
  display: -ms-flexbox;
  display: flex;
  gap: 61px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 1;
  position: relative;
  margin-right: -50px;
}
.info__block.reverse {
  margin-right: 50px;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
.info__block-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.info__block-wrapper .info__block:not(:first-child){
  padding-top: 99px;
}
.info__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 17px;
  max-width: 500px;
  width: 100%;
}
.info__img {
  width: 400px;
  min-width: 400px;
  height: 400px;
  border-radius: 50%;
  position: relative;
}

.product .info__img{
  position: sticky;
  top:108px;
}

.info__img img {
  border-radius: 50%;
}
.info__img-mark {
  position: absolute;
  font: 700 46px/115px var(--InterTight);
  top: 5px;
  left: 25px;
  z-index: 1;
  color: var(--color-white);
}
.info__img-mark:after {
  content: "";
  position: absolute;
  width: 119px;
  height: 119px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
}

.problem {
  background: #FFEBF2;
  position: relative;
}
.problem:after {
  content: "";
  position: absolute;
  bottom: -80px;
  height: 80px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: ellipse(55% 85% at 50% 0%);
  background-color: #FFEBF2;
}
.problem:before {
  content: "";
  position: absolute;
  top: -80px;
  height: 80px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: ellipse(55% 85% at 50% 100%);
  background-color: #FFEBF2;
}
.problem .container {
  padding-top: 30px;
  padding-bottom: 100px;
}
.problem__list {
  display: -ms-flexbox;
  display: flex;
  max-width: 970px;
  margin: 41px auto 0;
  border-radius: 30px;
  border-top-left-radius: 0px;
  padding: 45px 52px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 101, 156, 0.3019607843);
  box-shadow: 0px 0px 50px 0px rgba(255, 101, 156, 0.2);
}
.problem__list ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 66px;
}
.problem__list ul li {
  width: calc(50% - 33px);
  font-weight: 600;
  font-size: 18px;
}
.problem__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 31px;
}
.problem__text {
  max-width: 676px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.problem__text img {
  width: 50px;
  aspect-ratio: 1/1;
}
.problem__text .section__text {
  font-size: 18px;
}
.services{
  overflow: hidden;
}
.services .container {
  padding-top: 160px;
  padding-bottom: 90px;
}
.services__list {
  margin-top: 80px;
  padding-bottom: 57px;
  position: relative;
  overflow: visible;
}
.services__item {
  width: 342px;
  min-width: 342px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 25px;
}
.services__img {
  aspect-ratio: 342/208;
  width: 100%;
  border-radius: 30px;
  border-top-left-radius: 0px;
  overflow: hidden;
}
.services__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 40px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.services__title {
  font: 700 18px/115% var(--InterTight);
}
.services__price {
  font: 700 24px/115% var(--InterTight);
}
.services__btn {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.services .swiper-scrollbar {
  position: absolute;
  bottom: 0;
  cursor: pointer;
  height: 10px;
  border-radius: 30px;
  background: var(--color-grey);
  max-width: 1024px;
  width: 100%;
  left: 0;
}
.services .swiper-slide {
  width: 342px;
}
.services .swiper-scrollbar-drag {
  background: var(--color-primary);
  border-radius: 30px;
  height: 100%;
}

.not__found {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: var(--gradient-pink-light);
}
.not__found-block {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 30px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  text-align: center;
  padding: 100px 40px 70px;
}
.not__found-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 20px;
  -ms-flex-align: center;
      align-items: center;
}
.not__found .section__title {
  color: var(--color-primary);
  font-size: 100px;
}
.not__found .section__text {
  margin: 0 auto;
}

.telegram {
  background: var(--gradient-pink-light);
}
.telegram .container {
  padding-top: 47px;
  padding-bottom: 33px;
}
.telegram__block {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-align: center;
      align-items: center;
}
.telegram__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 17px;
  width: 46%;
}
.telegram__title {
  font-size: 30px;
}
.telegram__img-wrap{
  width: 53%;
  display: flex;
  justify-content: center;
}
.telegram__img {
  position: relative;
  width: 366px;
  height: 366px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  width: 73px;
  height: 73px;
  position: relative;
  background: #ffcde1;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle svg{
  position: relative;
  z-index: 1;
}
.circle:after {
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffcde1;
  border-radius: 50%;
  z-index: 0;
  animation:  pulseCenter 2s infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border: 2px solid #ffcde1;
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse 3s ease-in-out infinite;
}

.r1 { width: 158px; height: 158px; animation-delay: 0s; }
.r2 { width: 228px; height: 228px; animation-delay: .4s; }
.r3 { width: 299px; height: 299px; animation-delay: .8s; }
.r4 { width: 366px; height: 366px; animation-delay: 1.2s; }

@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0; }
  30%  { opacity: .6; }
  70%  { opacity: 0.7; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.2); }
}

@keyframes pulseCenter {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.2;
  }
}

.telegram__link {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background: #FFCDE1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  overflow: visible;
  right: 105px;
  bottom: 60px;
  z-index: 2;
}

.telegram__link::before,
.telegram__link::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFCDE14D;
  width: 89px;
  height: 89px;
  z-index: -1;
  animation: ring 1.5s infinite;
}

.telegram__link::after {
  background: #FFCDE133;
  width: 107px;
  height: 107px;
  animation-delay: 0.5s;
}

@keyframes ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
  }
}

.banner{
  overflow: hidden;
}
.banner__img {
  position: relative;

  width: 100%;
  height: 100vh;
}

.banner__img > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100vw;
  min-height: 100vh;
  will-change: transform;
}


.product {
  background: var(--gradient-blue-light);
}
.product .container {
  padding-top: 145px;
  padding-bottom: 65px;
}
.product .info__block {
  -ms-flex-align: start;
      align-items: flex-start;
  margin: 0;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 66px;
}
.product .info__text {
  margin-bottom: 45px;
}
.product__content {

  max-width: 500px;
}

.content {
  color: #333333;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 17px;
}
.content p, .content p > *, .content span, .content li {
  font: 400 17px/136% var(--InterTight);
}
.content ol, .content ul {
  padding-left: 20px;
}
.content ul {
  padding-left: 20px;
}
.content ul li {
  position: relative;
}
.content ul li:after {
  content: "";
  position: absolute;
  top: 9px;
  left: -14px;
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 50%;
}
.content strong {
  font-weight: 700;
}
.content h2, .content h3, .content h4, .content h5, .content h6 {
  font: 700 30px/115% var(--InterTight);
}
.content h2 {
  font-size: 35px;
}
.content a {
  text-decoration: underline;
}

.footer {
  background: var(--color-footer-back);
}
.footer .container {
  padding: 34px 58px 42px;
}
.footer__block {
  display: -ms-flexbox;
  display: flex;
  gap: 159px;
  -ms-flex-pack: center;
      justify-content: center;
}
.footer__menu {
  margin-top: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 17px;
  max-width: 250px;
  width: 100%;
}
.footer__menu > * {
  color: var(--color-pink-text);
  text-align: center;
  font: 400 16px/115% var(--InterTight);
  transition: 0.2s ease;

}
.footer__menu > *:hover {
  color: var(--color-white);
  transform: scale(1.05);
}
.footer__logo {
  width: 169px;
}
.footer__center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 45px;
}
.footer__social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 19px;
}
.footer__social-item {
  width: 57px;
}

.loader {
  background: none repeat scroll 0 0 #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader .loader_inner {
  animation: animate 1.5s linear infinite;
  clip: rect(0, 120px, 120px, 60px);
  height: 120px;
  width: 120px;
  position: absolute;
  left: calc(50% - 60px);
  top: calc(50% - 60px);
}

.loader_image {
  height: 80px;
  width: 80px;
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
}

@keyframes animate {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(220deg)
  }
}

.loader .loader_inner:after {
  animation: animate2 1.5s ease-in-out infinite;
  clip: rect(0, 120px, 120px, 60px);
  content: '';
  border-radius: 50%;
  height: 120px;
  width: 120px;
  position: absolute;
}

@keyframes animate2 {
  0% {
    box-shadow: inset #ffaac8 0 0 0 17px;
    transform: rotate(-140deg);
  }

  50% {
    box-shadow: inset #ffaac8 0 0 0 2px;
  }

  100% {
    box-shadow: inset #ffaac8 0 0 0 17px;
    transform: rotate(140deg);
  }
}


@media (hover: hover) and (pointer: fine) {
  .header__menu-item:hover > a {
    color: var(--color-primary);
  }
  .header__menu-item:hover .header__submenu {
    visibility: visible;
    opacity: 1;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    z-index: 3;
    display: -ms-flexbox;
    display: flex;
  }
  .header__menu-sub:hover > a:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .header__drop:hover .header__drop-menu {
    opacity: 1;
    visibility: visible;
    display: -ms-flexbox;
    display: flex;
  }
  .header__drop:hover .header__drop-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}


@media only screen and (max-width: 1440px) {
  .header__btn {
    right: 100px;
  }
}
@media only screen and (max-width: 1370px) {
  .header__logo {
    margin: 0;
  }
  .telegram__link {
    right: 40px;
    bottom: 40px;
  }
}
@media only screen and (max-width: 1190px) {
  .wrap__main .container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .info__block, .info__block.reverse {
    margin: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .footer__block {
    gap: 10vw;
  }
  .header__menu {
    gap: 3vw;
  }
  .info__block{
    gap:30px;
  }
  .product .info__block{
    gap:30px;
  }
}
@media only screen and (max-width: 768px) {
  .product .info__img{
    position: relative;
    top: 0;
  }
  .info__block, .info__block.reverse {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -ms-flex-align: center;
    align-items: center;
  }
  .product .info__text {
    margin-bottom: 80px;
  }
  .product__content {
    max-width: 100%;

  }
  .product .info__text {
    margin: 0 auto;
  }
  .info__img {
    max-width: 400px;
    width: 100%;
    min-width: unset;
    height: auto;
    aspect-ratio: 1/1;
  }

  .product .info__block {
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
  .info .container {
    padding-top: 80px;
  }
  .info:before, .problem:before {
    top: -50px;
    height: 50px;
  }
  .info:after, .problem:after {
    bottom: -50px;
    height: 50px;

  }



  .footer__block {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    gap: 30px;
  }
  .footer__center {
    gap: 30px;
  }
  .footer .container {
    padding: 50px 20px;
  }
  .footer__menu {
    max-width: 100%;
  }
  .not__found-block {
    padding-top: 200px;
  }
  .main__title {
    font-size: 70px;
  }
  .header__menu {
    -ms-flex-pack: start;
        justify-content: flex-start;
    display: none;
    max-height: calc(100vh - 30px);
    overflow-y: auto;
  }
  .header__menu.active {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    width: 100%;
    -ms-flex-align: center;
        align-items: center;
    text-align: center;
    position: absolute;
    left: 0;
    padding: 20px;
    gap: 0;
    top: 110%;
  }
  .header__menu.active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.6980392157);
    box-shadow: 0px 0px 50px 0px rgba(255, 101, 156, 0.2);
    z-index: -1;
  }
  .header__burger {
    display: -ms-flexbox;
    display: flex;
  }
  .problem__list {
    padding: 35px;
  }
  .header__submenu,
  .header__drop-menu {
    display: none;
    opacity: 0;
    visibility: visible;
    height: 0;
  }
  .header__submenu {
    position: relative;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    top: 0;
  }
  .header__menu-sub.open .header__submenu,
  .header__drop.open .header__drop-menu {
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    transition: 0.2s ease;
    visibility: visible;
    height: -moz-max-content;
    height: max-content;
  }
  .header__menu-item {
    width: 100%;
  }
  .header__menu-sub > a {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .header__menu {
    display: none;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 20px;
  }
  .header__menu.open {
    display: -ms-flexbox;
    display: flex;
  }
  .header__menu-sub.open > a:after, .header__drop.open .header__drop-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .header__info{
    min-width: 60px;
    display: flex;
    justify-content: flex-end;
  }
  .product .info__text {
    margin-bottom: 45px;
  }

}
@media only screen and (max-width: 666px) {
  .wrap__main .container {
    padding: 60px 20px;
  }
  .header .container {
    padding: 10px;
  }
  .product .container {
    padding-top: 100px;
    padding-bottom: 20px;
  }
  .telegram__block {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 24px;
  }
  .telegram__block > * {
    width: 100%;
  }
  .footer .container {
    padding: 50px 20px 70px;
  }
  .not__found .section__title {
    font-size: 76px;
  }
  .main__title {
    font-size: 55px;
  }
  .main__btn {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 14px;
  }
  .main__btn > * {
    /*max-width: 350px;*/
    /*width: 100%;*/
  }
  .problem__list {
    margin: 0;
  }
  .problem__list ul {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 0;
  }
  .problem__list ul li {
    width: 100%;
  }
  .services__list {
    margin-top: 40px;
  }
  .info:before, .problem:before {
    top: -40px;
    height: 40px;
  }
  .info:after, .problem:after {
    bottom: -40px;
    height: 40px;
  }
  .services .container {
    padding-top: 100px;
  }
  .main .container {
    padding-bottom: 100px;
  }
  .info__img-mark {
    font-size: 38px;
  }
  .info__img-mark:after {
    width: 90px;
    height: 90px;
  }
  .content h2, .content h3, .content h4, .content h5, .content h6 {
    font-size: 26px;
  }
  .content p, .content p > *, .content span, .content li {
    font-size: 16px;
  }
  .section__title {
    font-size: 30px;
  }
  .section__text {
    font-size: 16px !important;
  }
  .r4 { display: none}
  .telegram__img{
    width: 299px;
    height: 299px;
  }

  .info .container {
    padding: 80px 20px;
  }
}