@charset "UTF-8";

:root {
  --color-black: #000;
  --color-white: #fff;
}

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

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

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

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

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

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

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

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

body {
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style: none;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}
/*
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
*/
* {
  font-family: "SuisseIntl", sans-serif;
}

html {
  background-color: #fff;
}

body {
  display: none;
  /* &.color-chenge {
      background-color: #F0E2C9;
      color: #130f4bd0;
      .page {
          background-color: #F0E2C9;
      }
      .page-link {
          background-color: #F0E2C9;
      }
      .header {
          background-color: #F0E2C9;
      }
      .tabs-sec .tabs-content {
          color: #130f4bd0;
      }
      .tabs-sec .tab {
          color: #130f4bd0;
      }
      .form-item__left {
          color: #130f4bd0;
      }
      .tabs-sec .tab::before {
          background-color: #b8b6cc33;
      }
      .tabs-sec .tab {
          color: #fff;
      }
      .tabs-sec .tabs-content {
          color: #fff;
      }
  } */
}

body.scroll-hide {
  overflow: hidden;
}

.title {
  font-size: calc(24px + 4 * ((100vw - 320px) / 1600));
  font-weight: 550;
  line-height: 1.2em;
  letter-spacing: 0em;
  color: #454091;
}

.padding-top {
  padding-top: 140px;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 70px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.page.hide {
  max-height: 100vh;
}

.page-link {
  position: fixed;
  height: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0em;
  color: #454091;
  z-index: 20000;
  width: 100%;
  display: block;
  border: 1px #dcdcf0 solid;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.page-link:hover {
  letter-spacing: 1px;
  text-shadow: 0.5px 0 0 currentColor;
  color: #454091;
}

.page-link span {
  white-space: nowrap;
  display: block;
}

.page-link__top {
  top: 0;
  height: 35px;
  width: calc(100% - 35px);
  right: 0;
}

.page-link__top span {
  margin: 5px 0 0 20px;
}

.page-link__right {
  bottom: 0;
  right: 0;
  width: 35px;
  height: calc(100% - 35px);
}

.page-link__right span {
  transform-origin: left center;
  transform: rotate(90deg) scale(0.9) translate3d(0, 0, 0);
  margin: 20px 0 0 17px;
}

.page-link__bottom {
  width: calc(100% - 35px);
  height: 35px;
  left: 0;
  bottom: 0;
}

.page-link__bottom span {
  margin: 6px 0 0 55px;
}

.page-link__left {
  top: 0;
  left: 0;
  width: 35px;
  height: calc(100% - 35px);
}

.page-link__left span {
  transform-origin: left center;
  transform: rotate(90deg) scale(0.9) translate3d(0, 0, 0);
  margin: 55px 0 0 17px;
}

.sec-anim {
  transform: translate3d(200px, 100vh, 0);
  border-radius: 100vw 50vw 0 0;
  overflow: hidden;
  position: fixed;
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1), color 100ms linear;
  background-color: #fff;
  z-index: 22;
  width: 100%;
  overflow-y: auto;
  /* &.anim-hide {
      transform: translate3d(200px, 100vh, 0);
      border-radius: 100vw 50vw 0 0;
      bottom: 0;
      right: 0;
  } */
}

.sec-anim.active {
  transform: translate3d(0, 0, 0);
  border-radius: 0 0 0 0;
  top: 0;
  left: 0;
  height: 100vh;
}

.load {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  transition: 0.2s linear;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
}

.load.show {
  transition: unset;
  opacity: 1;
  visibility: visible;
}

.load__svg {
  width: 80vw;
  height: 90vh;
}

.load__svg.animated .path {
  transition: -webkit-clip-path 2s linear;
  transition: clip-path 2s linear;
  transition: clip-path 2s linear, -webkit-clip-path 2s linear;
}

.load__svg.animated .cls-1 {
  fill: none;
}

.load__svg.animated .cls-2 {
  fill: #1163a6;
  transition: fill 2s linear;
  transition-delay: 4s;
}

.load__svg.animated .cls-3 {
  fill: #edc19c;
  -webkit-clip-path: circle(275px at 180% 50%);
  clip-path: circle(275px at 180% 50%);
  transition-delay: 4s;
}

.load__svg.animated .cls-4 {
  fill: #218ece;
  -webkit-clip-path: circle(218px at 180% 50%);
  clip-path: circle(218px at 180% 50%);
  transition-delay: 4s;
}

.load__svg.animated .cls-5 {
  fill: #eec29b;
  -webkit-clip-path: circle(218px at 180% 50%);
  clip-path: circle(218px at 180% 50%);
  transition-delay: 4s;
}

.load__svg.animated .cls-6 {
  fill: #cca283;
  transition: fill 2s linear;
  transition-delay: 4s;
}

.load__svg.animated .cls-7 {
  fill: #fddec8;
  transition: fill 2s linear;
  transition-delay: 4s;
}

.cls-1 {
  fill: none;
}

.cls-2 {
  fill: transparent;
  stroke: #1163a6;
  stroke-width: 1px;
}

.cls-3 {
  -webkit-clip-path: circle(0 at 180% 50%);
  clip-path: circle(0 at 180% 50%);
  fill: transparent;
  stroke: #edc19c;
  stroke-width: 1px;
}

.cls-4 {
  -webkit-clip-path: circle(0 at 180% 50%);
  clip-path: circle(0 at 180% 50%);
  fill: transparent;
  stroke-width: 1px;
}

.cls-5 {
  -webkit-clip-path: circle(0 at 180% 50%);
  clip-path: circle(0 at 180% 50%);
  fill: transparent;
  stroke: #eec29b;
  stroke-width: 1px;
}

.cls-6 {
  fill: transparent;
  stroke: #cca283;
  stroke-width: 1px;
}

.cls-7 {
  fill: transparent;
  stroke: #fddec8;
  stroke-width: 1px;
}

.intro__video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.special-menu {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.special-menu__item {
  position: absolute;
  z-index: 1;
  border: 1px #324497 solid;
  background-color: #fff;
  overflow: hidden;
}

.special-menu__item:nth-child(1) {
  top: -1px;
  left: -1px;
  width: calc(50% + 3px);
  height: calc(37% + 3px);
}

@media (max-width: 1023px) {
  .special-menu__item:nth-child(1) {
    width: 100%;
    height: 25%;
  }
}

.special-menu__item:nth-child(2) {
  top: -1px;
  right: -1px;
  width: 50%;
  height: 63%;
}

@media (max-width: 1023px) {
  .special-menu__item:nth-child(2) {
    width: 100%;
    height: 25%;
  }
}

.special-menu__item:nth-child(3) {
  bottom: -1px;
  left: -1px;
  width: calc(50% + 3px);
  height: 63%;
}

@media (max-width: 1023px) {
  .special-menu__item:nth-child(3) {
    width: 100%;
    height: 25%;
  }
}

.special-menu__item:nth-child(4) {
  bottom: -1px;
  right: -1px;
  width: 50%;
  height: calc(37% + 3px);
}

@media (max-width: 1023px) {
  .special-menu__item:nth-child(4) {
    width: 100%;
    height: 25%;
  }
}

@media (max-width: 1023px) {
  .special-menu__item {
    position: relative;
    padding: 10px 15px;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .special-menu__item::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #324497;
    border-radius: 50% 50%;
    transform: translate3d(0, 0, 0);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  }
}

@media (min-width: 1024px) {
  .special-menu__item:hover .special-menu__link--1 {
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
  }

  .special-menu__item:hover .special-menu__link--2 {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .fourth-screen .special-menu__item:hover .special-menu__link--2,
  .special-menu__item:hover .special-menu__link--video {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .special-menu__item:hover .special-menu__link--3 {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .special-menu__item:hover .special-menu__link--4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .special-menu__item:hover .special-menu__link::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }

  .special-menu__item:hover p {
    color: #fff;
  }

  .special-menu__item:hover p {
    color: #fff;
  }

  .special-menu__item:hover p::before {
    background-color: #fff;
  }

  .special-menu__item:hover::before {
    width: 100vw;
    height: 100vh;
    opacity: 1;
  }
}

.special-menu__link {
  display: block;
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
  position: absolute;
}

.special-menu__link p {
  color: #324497;
  font-size: 13px;
  line-height: 12px;
  font-weight: 550;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  position: relative;
}

@media (min-width: 1024px) {
  .special-menu__link p {
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  }
}

.special-menu__link p+.special-menu__link p {
  margin-top: 5px;
}

.special-menu__link p::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #324497;
  position: absolute;
  top: 3px;
  left: -8px;
}

@media (min-width: 1024px) {
  .special-menu__link p::before {
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  }
}

@media (max-width: 1023px) {
  .special-menu__link {
    position: relative;
  }
}

.special-menu__link--1 {
  white-space: nowrap;
  bottom: 28px;
  right: 18px;
}

@media (max-width: 1023px) {
  .special-menu__link--1 {
    white-space: normal;
    bottom: unset;
    right: unset;
  }
}

.special-menu__link--2 {
  white-space: nowrap;
  bottom: 73px;
  left: -25px;
  transform: rotate(-90deg) scale(0.9) translate3d(0, 0, 0);
}

@media (max-width: 1439px) {
  .special-menu__link--2 {
    white-space: normal;
    left: -172px;
    max-width: 400px;
  }
}

@media (max-width: 1023px) {
  .special-menu__link--2 {
    max-width: unset;
    bottom: unset;
    left: unset;
    transform: rotate(0) scale(1) translate3d(0, 0, 0);
  }
}

.fourth-screen .special-menu__link--2,
.special-menu__link--video {
  bottom: 100px;
  left: -62px;
  transform: rotate(90deg) scale(0.9) translate3d(0, 0, 0);
  /* 
         @media(max-width:1439px) {
             white-space: normal;

             left: -172px;
             max-width: 400px;
         }
  */
}

@media (max-width: 1023px) {

  .fourth-screen .special-menu__link--2,
  .special-menu__link--video {
    max-width: unset;
    bottom: unset;
    left: unset;
    transform: rotate(0) scale(1) translate3d(0, 0, 0);
  }
}

.special-menu__link--3 {
  top: 60px;
  right: -8px;
  transform: rotate(90deg) scale(0.9) translate3d(0, 0, 0);
}

@media (max-width: 1023px) {
  .special-menu__link--3 {
    top: unset;
    right: unset;
    transform: rotate(0) scale(1) translate3d(0, 0, 0);
  }
}

.special-menu__link--4 {
  top: 28px;
  left: 18px;
}

@media (max-width: 1023px) {
  .special-menu__link--4 {
    top: unset;
    left: unset;
  }
}

.special-menu__link::before {
  content: "";
  width: 40px;
  height: 16px;
  background-image: url(../img/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  margin-left: -20px;
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1), opacity 300ms linear;
  transition-delay: 100ms;
  opacity: 0;
  transform: translate3d(-100px, 60px, 0) scale(0.8) rotate(-12deg);
}

@media (max-width: 1023px) {
  .special-menu__link::before {
    width: 25px;
    height: 10px;
    background-image: url(../img/arrow.png);
    opacity: 1;
    top: 50%;
    left: calc(100% + 40px);
    transform: translateY(-50%);
  }
}

@media (max-width: 767px) {
  .main-page .page-link {
    display: none !important;
  }
}




.main-page .header.active .logo svg {
  fill: #218ECE;
}

.main-page .main-slider__wrapper {
  display: block;
}

.main-page .main-slide.about {
  padding-bottom: 40px;
}
.about__wrapper,
.main-page .main-slide.about .about__wrapper {
  height: auto;
}
.about__right,
.main-page .main-slide.about .about__right {
  overflow: visible;
  height: auto;
}

.main-page .main-slide.insta {
  padding-bottom: 40px;
}

.main-page .main-slide .insta__inner {
  max-width: 90%;
}

.main-page.active .main-slider__wrapper {
  width: 100vw;
  height: 100vh;
}

.main-page.active .main-slider__wrapper .swiper-slide {
  opacity: 0 !important;
}

.main-page.active .main-slider__wrapper .swiper-slide-active {
  opacity: 1 !important;
}

.main-page.active .main-slide {
  z-index: 3;
}

.main-page.active .main-slide.about,
.main-page.active .main-slide.questionnaire {
  overflow: hidden;
  overflow-y: scroll;
  padding-bottom: 40px;
}

.main-page.active .main-slide.about .about__wrapper {
  height: auto;
}

.main-page.active .main-slide.about .about__right {
  height: auto;
}

.main-page.active .main-slide.insta {
  overflow: hidden;
  overflow-y: scroll;
  padding-bottom: 40px;
  /* .insta__list {
      max-height: unset;
  } */
}

.main-page.active .special-menu.swiper-slide-active .special-menu__item {
  transform: translate3d(0, 0, 0) rotate(0deg) skew(0deg, 0deg);
}

.main-page.active .special-menu.swiper-slide-active .special-menu__item:nth-child(1) {
  top: -1px;
  left: -1px;
}

.main-page.active .special-menu.swiper-slide-active .special-menu__item:nth-child(2) {
  top: -1px;
  right: -1px;
}

.main-page.active .special-menu.swiper-slide-active .special-menu__item:nth-child(3) {
  bottom: -1px;
  left: -1px;
}

.main-page.active .special-menu.swiper-slide-active .special-menu__item:nth-child(4) {
  bottom: -1px;
  right: -1px;
}

.main-page.active .special-menu__item {
  transform: translate3d(0, 0, 0) rotate(20deg) skew(30deg, 30deg);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.main-page.active .special-menu__item:nth-child(1) {
  top: -37%;
  left: -50%;
}

@media (max-width: 1023px) {
  .main-page.active .special-menu__item:nth-child(1) {
    left: -100%;
  }
}

.main-page.active .special-menu__item:nth-child(1)::before {
  bottom: -25vh;
  right: -25vw;
}

.main-page.active .special-menu__item:nth-child(2) {
  top: -63%;
  right: -50%;
}

@media (max-width: 1023px) {
  .main-page.active .special-menu__item:nth-child(2) {
    right: -100%;
  }
}

.main-page.active .special-menu__item:nth-child(2)::before {
  bottom: -25vh;
  left: -25vw;
}

.main-page.active .special-menu__item:nth-child(3) {
  bottom: -63%;
  left: -50%;
}

@media (max-width: 1023px) {
  .main-page.active .special-menu__item:nth-child(3) {
    left: -100%;
  }
}

.main-page.active .special-menu__item:nth-child(3)::before {
  top: -25vh;
  right: -25vw;
}

.main-page.active .special-menu__item:nth-child(4) {
  bottom: -37%;
  right: -50%;
}

@media (max-width: 1023px) {
  .main-page.active .special-menu__item:nth-child(4) {
    right: -100%;
  }
}

.main-page.active .special-menu__item:nth-child(4)::before {
  top: -25vh;
  left: -25vw;
}

.main-page.active .page-link {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

.main-page.active .page-link.active {
  opacity: 1;
  visibility: visible;
}

.main-page.active .page-link__top {
  width: auto;
  right: 0;
  left: 35px;
}

.main-page.active .page-link__bottom {
  width: auto;
  right: 35px;
}

.main-page.active .menu {
  transition: 0.2s linear;
}

@media (min-width: 920px) {
  .main-page.active .header.active {
    padding-right: 75px;
  }
}

.main-page.active .header.active .menu {
  right: 75px;
}

.menu-wrap {
  width: 65px;
  height: 65px;
  position: fixed;
  right: 50px;
}

.menu-wrap.active::before {
  opacity: 1;
  visibility: visible;
}

.menu-wrap.color-blue .burger {
  background-color: #fff;
  border: 1px solid #324497;
}

.menu-wrap.color-blue .burger span {
  background-color: #000;
}

.menu-wrap::before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.411);
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.burger {
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3500;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  transition: background 1000ms cubic-bezier(0.19, 1, 0.22, 1), border 1000ms cubic-bezier(0.19, 1, 0.22, 1), transform 300ms cubic-bezier(0.185, 0.55, 0.38, 1.44);
  left: 10px;
  top: 10px;
}

.burger:hover {
  background-color: #fff;
  border: 1px solid #324497;
}

.burger:hover span {
  background-color: #000;
}

.burger span {
  position: absolute;
  background-color: #fff;
  height: 1px;
  width: 15px;
  display: block;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.burger span:nth-child(1) {
  top: 16px;
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger span:nth-child(3) {
  bottom: 16px;
}

.burger.active {
  background-color: #fff;
  border: 1px solid #324497;
  transform: translate3d(0, 0, 0) !important;
}

.burger.active span {
  background-color: #324497;
}

.burger.active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  bottom: 21px;
  transform: rotate(-45deg);
}

.menu-top-menu-container,
.nav {
  width: 962px;
  height: 962px;
  position: fixed;
  top: 80px;
  right: 80px;
  z-index: 510;
  border-radius: 50%;
  background-color: #fff;
  transform: translate3d(481px, -481px, 0) scale(0);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-top-menu-container.active,
.nav.active {
  transform: translate3d(481px, -481px, 0) scale(1);
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-top-menu-container>ul,
.nav__list {
  flex-direction: column;
  font-size: calc(18px + 8 * ((100vw - 320px) / 1600));
  line-height: calc(28px + 10 * ((100vw - 320px) / 1600));
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 280px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 42px 0 0 -254px;
  text-align: right;
}

.menu-top-menu-container>ul>li>a,
.nav__link {
  color: #324497;
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-top-menu-container ul>li>a:hover,
.nav__link:hover {
  letter-spacing: 0.1em;
  color: #324497;
}

.sub-menu {
  margin-top: 20px;
}

.sub-menu li a {
  color: #324497;
  font-size: 14px;
  line-height: 30px;
  font-weight: 550;
  letter-spacing: 0.4em;
  display: block;
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.sub-menu li a :hover {
  letter-spacing: 0.3em;
  color: #324497;
}

.header {
  left: 0;
  right: 0;
  top: 40px;
  position: fixed;
  z-index: 2000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.2s linear;
}

.header.active {
  top: 0;
  background-color: #fff;
  padding: 45px 40px 10px 50px;
}

.header.active .burger {
  background-color: #fff;
  border: 1px solid #324497;
}

.header.active .burger span {
  background-color: #000;
}

.phone {
  display: block;
  z-index: 200;
  width: 65px;
  height: 65px;
  z-index: 1000;
  padding: 8px;
  margin-left: auto;
  margin-right: 70px;
}

.phone img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.logo {
  width: 140px;
}

.logo.color-blue svg {
  fill: #218ECE;
}

.logo svg {
  width: 100%;
  height: 74px;
  fill: #fff;
  transition: all 0.3s ease-in-out;
}

.footer {
  background-color: #f8f3f0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  /*height: 100vh;*/
  padding-top: 150px;
  padding-bottom: 30px;
}

.footer__content {
  margin: auto 0;
}

.footer__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 550;
  color: #324497;
  position: relative;
}

.footer__link::before {
  content: "";
  height: 1px;
  background-color: #324497;
  transition: 0.2s linear;
  transform: translateX(-100%);
  transition: 0.2s linear;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 1024px) {
  .footer__link:hover {
    color: #4563f6;
  }

  .footer__link:hover::before {
    transform: translateX(0);
    background-color: #4563f6;
  }
}

.footer__link+.footer__link {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .footer__link {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

.footer__bottom {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .footer__bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer__copyright,
.footer__text {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
}

@media (max-width: 1023px) {

  .footer__copyright,
  .footer__text {
    text-align: center;
  }
}

@media (max-width: 767px) {

  .footer__copyright,
  .footer__text {
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  .footer__copyright {
    width: 100%;
    order: 3;
  }
}

.footer__policy-link {
  display: block;
  overflow: hidden;
  transition: 0.2s linear;
  color: #324497;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 550;
  position: relative;
}

.footer__policy-link::before {
  content: "";
  height: 1px;
  background-color: #324497;
  transform: translateX(0);
  transition: 0.2s linear;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.footer__policy-link:hover {
  color: #324497;
}

@media (min-width: 1024px) {
  .footer__policy-link:hover {
    color: #4563f6;
  }

  .footer__policy-link:hover::before {
    transform: translateX(100%);
  }
}

@media (max-width: 1023px) {
  .footer__policy-link {
    order: 1;
    margin-bottom: 15px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer__policy-link {
    font-size: 12px;
  }

  .therapy__tab-text {}
}

@media (max-width: 1023px) {
  .footer__another {
    width: 100%;
    order: 2;
    margin-bottom: 15px;
  }
}

.tabs-sec {
  width: 100%;
  height: 100%;
  /* background-color: #130f4bd0; */
}

.tabs-sec .container {
  display: flex;
  justify-content: space-between;
}

.tabs-sec .tab-link-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  width: 40%;

  padding-left: 25px;
  padding-top: 30px;
}

@media (min-width: 920px) {
  .tabs-sec .tab-link-wrapper {
    -webkit-animation: tilt-in-bl 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: tilt-in-bl 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }s  
}

.tabs-sec .tab {
  font-size: calc(18px + 6 * ((100vw - 320px) / 1600));
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0em;
  color: #130f4bd0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  padding-left: 17px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tabs-sec .tab::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  box-shadow:0 1px 4px rgba(19, 15, 75, 1),
-23px 0 20px -23px rgba(19, 15, 75, .8),
23px 0 20px -23px rgba(19, 15, 75, .8),
0 0 40px rgba(19, 15, 75, .1) inset;
/*  border: 1px solid #dcdcf0;*/
  border-radius: 50%;
  z-index: -2;
/*  background-color: #9b96d8d0;*/
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.tabs-sec .tab-active {
  letter-spacing: 0.1em;
}

.tabs-sec .tab-active::before {
  background-color: #d1ceff8a;
}

.tabs-sec .tab-content-wrapper {
  width: 55%;
  max-height: 75vh;
  overflow-y: auto;
  scrollbar-color: #222332 #fff;
  overflow-x: hidden;
  padding-right: 20px;
  position: relative;
  -webkit-animation: tilt-in-br 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: tilt-in-br 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  padding: 15px;
}

.tabs-sec .tab-content-wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.tabs-sec .tab-content-wrapper::-webkit-scrollbar {
  height: 6px;
  background-color: #FFF;
  width: 6px;
}

.tabs-sec .tab-content-wrapper::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 10px;
  width: 6px;
}

.tabs-sec .tabs-content {
  display: none;
  font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
  line-height: calc(22px + 4 * ((100vw - 320px) / 1600));
  font-weight: 500;
  color: #130f4bd0;
  padding-right: 20px;
}

.tabs-sec .tabs-content p {
  margin-bottom: 18px;
  font-size:1.2rem;
}

@media (min-width: 920px) {
  .tabs-sec .tab:hover {
    letter-spacing: 0.1em;
  }
}

.gallery {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery a {
  overflow: hidden;
  transition: all 1s ease-in-out;
}

.gallery a:hover {
  border-radius: 20% 40% 20% 40%;
}

.gallery a:hover img {
  transform: scale(1.1);
}

.gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 4s ease-in-out;
}

@-webkit-keyframes tilt-in-bl {
  0% {
    transform: rotateY(35deg) rotateX(-20deg) translate(-250px, 250px) skew(-12deg, -15deg);
    opacity: 0;
  }

  100% {
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-bl {
  0% {
    transform: rotateY(35deg) rotateX(-20deg) translate(-250px, 250px) skew(-12deg, -15deg);
    opacity: 0;
  }

  100% {
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@-webkit-keyframes tilt-in-br {
  0% {
    transform: rotateY(-35deg) rotateX(-20deg) translate(250px, 250px) skew(12deg, 15deg);
    opacity: 0;
  }

  100% {
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-br {
  0% {
    transform: rotateY(-35deg) rotateX(-20deg) translate(250px, 250px) skew(12deg, 15deg);
    opacity: 0;
  }

  100% {
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

.practice {
  padding-top: 140px;
}

@media (max-width: 1023px) {
  .practice__inner {
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-color: #222332 #fff;
    overflow-x: hidden;
    padding: 15px 10px 35px 0;
  }

  .practice__inner::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
  }

  .practice__inner::-webkit-scrollbar {
    height: 6px;
    background-color: #FFF;
    width: 6px;
  }

  .practice__inner::-webkit-scrollbar-thumb {
    background: #afafaf;
    border-radius: 10px;
    width: 6px;
  }
}

@media (max-width: 920px) {
  .practice__inner {
    max-height: unset;
  }
}

.practice__title {
  font-size: calc(18px + 10 * ((100vw - 320px) / 1600));
  font-weight: 300;
  line-height: 1.2em;
  color: #130f4b;
  margin-bottom: 25px;
  opacity: 0;
  transform-origin: center top;
  transform-style: preserve-3d;
  transform: translateY(100%) rotateX(-80deg);
  transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.practice__title.active {
  transform: none;
  opacity: 1;
  transition-duration: 0.25s;
}

.practice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .practice__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}

@media (max-width: 767px) {
  .practice__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.practice__item {
  padding: calc(8px + 7 * ((100vw - 320px) / 1600));
/*  border: 2px #324497 solid; */
  border-radius: 10px;
  background-color:#f0f5f8;
  transition: 1500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.practice__item:nth-child(3n+1) {
  opacity: 0;
  transform: translateX(-100%);
}

.practice__item:nth-child(3n+1).active {
  opacity: 1;
  transform: translateX(0);
}

.practice__item:nth-child(3n+2) {
  opacity: 0;
  transform: translateY(100px);
}

.practice__item:nth-child(3n+2).active {
  opacity: 1;
  transform: translateY(0);
}

.practice__item:nth-child(3n+3) {
  opacity: 0;
  transform: translateX(100%);
}

.practice__item:nth-child(3n+3).active {
  opacity: 1;
  transform: translateX(0);
}

.practice__item:nth-child(1n+4) {
  transition-delay: 0.4s;
}

.practice__item:nth-child(1n+7) {
  transition-delay: 0.8s;
}

.practice__item:nth-child(1n+10) {
  transition-delay: 1.2s;
}

.practice__item:nth-child(1n+13) {
  transition-delay: 1.6s;
}

.practice__text {
  font-size: calc(12px + 6 * ((100vw - 320px) / 1600));
  line-height: calc(14px + 8 * ((100vw - 320px) / 1600));
  font-weight: 400;
  color: #130f4b;
}

.practice__descr {
  max-width: 64vw;
  font-size: calc(14px + 8 * ((100vw - 320px) / 1600));
  font-weight: 300;
  line-height: 1.2;
  color: #130f4b;
  opacity: 0;
  transform-origin: center top;
  transform-style: preserve-3d;
  transform: translateY(100%) rotateX(-80deg);
  transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 1.7s;
}

.practice__descr.active {
  transform: none;
  opacity: 1;
  transition-duration: 0.25s;
}

@media (max-width: 767px) {
  .practice__descr {
    max-width: unset;
  }
}

.about.swiper-slide-active .about__right {
  -webkit-animation: slide-in-blurred-right 2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
  animation: slide-in-blurred-right 2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
}

.about.swiper-slide-active .about__img {
  -webkit-animation: slide-in-blurred-left 2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
  animation: slide-in-blurred-left 2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
}

@-webkit-keyframes slide-in-blurred-right {
  0% {
    transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-right {
  0% {
    transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-blurred-left {
  0% {
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-left {
  0% {
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  height: 75vh;
}

.about__img {
  max-height: 100%;
}

.about__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about__right {
  max-width: 70%;
 /* height: 90%;
  overflow-y: auto; */
  scrollbar-color: #222332 #fff;
  padding-right: 20px;
}

.about__right::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.about__right::-webkit-scrollbar {
  height: 6px;
  background-color: #FFF;
  width: 6px;
}

.about__right::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 10px;
  width: 6px;
}

.about__name {
  font-size: calc(24px + 12 * ((100vw - 320px) / 1600));
  line-height: 1.2em;
  font-weight: 550;
  color: #454091;
  padding-bottom: 20px;
  border-bottom: 2px solid #454091;
}

.about__position {
  font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
  line-height: calc(20px + 6 * ((100vw - 320px) / 1600));
  font-weight: 300;
  color: #130f4b;
  margin-top: 20px;
}

.about__descr {
  font-size: calc(14px + 4 * ((100vw - 320px) / 1600));
  line-height: calc(22px + 4 * ((100vw - 320px) / 1600));
  font-weight: 300;
  color: #130f4b;
  margin-top: 20px;
}

.about-gallery {
  margin-top: 50px;
}

.about-gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.about-gallery__wrapper a {
  display: block;
  overflow: hidden;
  transition: all 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-gallery__wrapper a:hover {
  border-radius: 20% 40% 20% 40%;
}

.about-gallery__wrapper a:hover img {
  transform: scale(1.1);
}

.about-gallery__wrapper a img {
  width: 100%;
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 4s ease-in-out;
}

.reviews {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.reviews__info {
  font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
  line-height: calc(20px + 6 * ((100vw - 320px) / 1600));
  font-weight: 550;
  color: #130f4b;
  margin-top: 20px;
}

.reviews__wrapper {
  margin-top: 40px;
  position: relative;
}

.reviews__wrapper .swiper {
  margin: 0 60px 0 60px;
  padding-bottom: 40px;
}

.reviews__wrapper .swiper-scrollbar {
  opacity: 1 !important;
  height: 8px;
}

.reviews__wrapper .swiper-scrollbar-drag {
  cursor: pointer;
  background-color: #454091;
}

.reviews__wrapper .swiper-button-next:after,
.reviews__wrapper .swiper-button-prev:after {
  color: #454091;
  font-weight: 800;
}

.reviews-item {
  border: 10px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #dcdcf0;
  height: 500px;
  overflow: hidden;
}

.reviews-item__top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
}

.reviews-item__name {
  font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
  line-height: calc(20px + 6 * ((100vw - 320px) / 1600));
  font-weight: 550;
  color: #130f4b;
}

.reviews-item__descr {
  font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
  line-height: calc(22px + 6 * ((100vw - 320px) / 1600));
  font-weight: 300;
  color: #130f4b;
  margin-top: 20px;
  height: calc(100% - 63px);
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: #222332 #fff;
}

.reviews-item__descr::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.reviews-item__descr::-webkit-scrollbar {
  height: 6px;
  background-color: #FFF;
  width: 6px;
}

.reviews-item__descr::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 10px;
  width: 6px;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .therapy-page {
    overflow: visible !important;
  }

  .therapy-page .page {
    overflow-y: visible;
  }
}

.therapy {
  width: 100vw;
  height: 100vh;
  padding-top: 160px;
}

@media (max-width: 1439px) {
  .therapy {
    padding-top: 160px;
    padding-left: 15px;
  }
}

@media (max-width: 1023px) {
  .therapy {
    padding-left: 0;
  }
}

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

.therapy__tabs {
  width: 30vw;
  height: 30vw;
  border: 1px solid #000;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@media (min-width: 1920px) {
  .therapy__tabs {
    max-width: 600px;
    max-height: 600px;
  }
}

@media (max-width: 1439px) {
  .therapy__tabs {
    width: 28vw;
    height: 28vw;
  }
}

@media (max-width: 1023px) {
  .therapy__tabs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 0;
  }
}

.therapy__tab {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
}

@media (max-width: 1440px) {
  .therapy__tab {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1023px) {
  .therapy__tab {
    position: static;
    width: 100%;
    height: auto;
  }
}

.therapy__tab::before {
  content: "";
/*  border: 1px solid #dcdcf0;*/
  box-shadow:0 1px 4px rgba(19, 15, 75, 1),
-23px 0 20px -23px rgba(19, 15, 75, .8),
23px 0 20px -23px rgba(19, 15, 75, .8),
0 0 40px rgba(19, 15, 75, .1) inset;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 1023px) {
  .therapy__tab::before {
    display: none;
  }
}

.therapy__tab:nth-child(1) {
  top: -3%;
  right: 25%;
}

@media (max-width: 1439px) {
  .therapy__tab:nth-child(1) {
    right: unset;
    left: 25%;
    top: -5%;
  }
}

.therapy__tab:nth-child(3) {
  top: 70%;
  right: -2%;
  transform: translateY(-50%);
}
.therapy__tab:nth-child(2) {
  top: 30%;
  right: -2%;
  transform: translateY(-50%);
}

@media (max-width: 1439px) {
  .therapy__tab:nth-child(3),
  .therapy__tab:nth-child(2) {
    right: unset;
    left: -4%;
  }
}

@media (max-width: 1023px) {
  .therapy__tab:nth-child(3),
  .therapy__tab:nth-child(2) {
    transform: translateY(0);
  }
}

.therapy__tab:nth-child(4) {
  bottom: -3%;
  right: 25%;
}

@media (max-width: 1439px) {
  .therapy__tab:nth-child(4) {
    right: unset;
    left: 25%;
    bottom: -5%;
  }
}

.therapy__tab.active::before {
  background-color: #f0f5f8;
}

@media (min-width: 1024px) {
  .therapy__tab:hover:not(.active)::before {
    transform: scale(1.1);
  }
}

.therapy__tabs-img {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.3s linear;
  opacity: 0;
}

.therapy__tabs-img::before {
  content: "";
  background-color: #000;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.therapy__tabs-img.active {
  opacity: 1;
}

@media (max-width: 1023px) {
  .therapy__tabs-img {
    display: none;
  }
}

.therapy__tab-text {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
  font-weight: 300;
  line-height: 1.2;
  color: #130f4b;
  white-space: nowrap;
  text-shadow: 1px 1px 2px #fff;
}

@media (max-width: 1023px) {
  .therapy__tab-text {
    position: static;
    margin-bottom: 15px;
    font-size: calc(14px + 14 * ((100vw - 320px) / 1600));
  }
}

.therapy__content-item {
  display: none;
  width: 50vw;
  padding: 20px;
  border: 1px solid #dcdcf0;
  border-radius: 10px;
  transition: 0.3s linear;
}
.therapy__content-block{
  height: auto;
  max-height: 220px;
  overflow: hidden;
  -webkit-transform: all 1s ease;
  transform: all 1s ease;
}
.therapy__content-block.opened{
  max-height: 12000px;
}
.therapy__content-block p{
    line-height: 1.4em;
    font-weight: 300;
	color: #130f4b;
	margin-bottom:5px;
}
@media (max-width: 1440px) {
  .therapy__content-item {
    padding: 10px;
  }
}

@media (max-width: 1439px) {
  .therapy__content-item {
    width: 57vw;
  }
}

.therapy__content-item.active {
  display: block;
  -webkit-animation: fade 0.3s linear;
  animation: fade 0.3s linear;
}

@media (max-width: 1023px) {
  .therapy__content-item {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 25px;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.therapy__content-wrapper {
  margin-bottom: 20px;
  max-height: 40vh;
  padding: 5px;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-color: #222332 #fff;
}

.therapy__content-wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.therapy__content-wrapper::-webkit-scrollbar {
  height: 6px;
  background-color: #FFF;
  width: 6px;
}

.therapy__content-wrapper::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 10px;
  width: 6px;
}

.therapy__content-text {
  font-size: calc(12px + 4 * ((100vw - 320px) / 1600));
  font-weight: 300;
  line-height: 1.2;
  color: #130f4b;
}
.therapy__content-text--more {
  margin-top: 15px;
  display: none;
}

.therapy__btn {
  margin-top: 15px;
  font-size: calc(14px + 4 * ((100vw - 320px) / 1600));
  font-weight: 300;
  line-height: 1.2;
  color: #454091;
  position: relative;
  overflow: hidden;
}

.therapy__btn::before {
  content: "";
  height: 1px;
  background-color: #454091;
  transition: 0.2s linear;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 1024px) {
  .therapy__btn:hover::before {
    transform: translateX(100%);
  }
}

.therapy__btn span:nth-child(2) {
  display: none;
}

.therapy__btn.active span:nth-child(1) {
  display: none;
}

.therapy__btn.active span:nth-child(2) {
  display: block;
}

.therapy__slider {
  height: 20vh;
  padding: 2px;
  position: relative;
}

.therapy__slide {
  padding: 20px;
  background-color: #f0f5f8;
/*  border: 1px solid #dcdcf0; */
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1440px) {
  .therapy__slide {
    padding: 10px;
  }
}

@media (min-width: 1024px) {
  .therapy__slide:hover .therapy__slider-subtitle {
    opacity: 1;
  }
}

.therapy__slider-title {
  font-size: calc(18px + 4 * ((100vw - 320px) / 1600));
  font-weight: 500;
  line-height: 1.2;
  color: #130f4b;
  text-shadow: 3px -2px 4px rgba(255, 255, 255, .8);
}

.therapy__slider-subtitle {
  font-size: calc(12px + 4 * ((100vw - 320px) / 1600));
  font-weight: 300;
  line-height: 1.2;
  color: #130f4b;
  text-shadow: 3px -2px 4px rgba(255, 255, 255, .8);
  position: absolute;
  left: 20px;
  bottom: 20px;
}

@media (min-width: 1024px) {
  .therapy__slider-subtitle {
    opacity: 0;
    transition: 0.2s linear;
  }
}

.therapy-button-next,
.therapy-button-prev {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  opacity:.9;
  cursor: pointer;
  transition: 0.2s linear;
}

.therapy-button-next.swiper-button-disabled,
.therapy-button-prev.swiper-button-disabled {
  opacity: 0.4;
}

@media (max-width: 767px) {

  .therapy-button-next,
  .therapy-button-prev {
    width: 14px;
    height: 14px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    opacity:.9;
  }
}

.therapy-button-next {
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.therapy-button-prev {
  left: 20px;
  transform: translateY(-50%) rotate(-135deg);
}

.video {
  padding-top: 140px;
  height: 100vh;
}

@media (max-width: 767px) {
  .video {
    padding-top: 80px;
  }
}

.video__title {
  margin-bottom: 25px;
}

.video__content {
  position: relative;
}

.video__slider {
  height: 60vh;
  margin: auto 0;
  margin: 0 100px;
}

@media (max-width: 1439px) {
  .video__slider {
    margin: 0 65px;
  }
}

@media (max-width: 767px) {
  .video__slider {
    margin: 0;
  }
}

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

.video-button-next,
.video-button-prev {
  width: 45px;
  height: 27px;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.video-button-next img,
.video-button-prev img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1439px) {

  .video-button-next,
  .video-button-prev {
    width: 40px;
    height: 22px;
  }
}

@media (max-width: 767px) {

  .video-button-next,
  .video-button-prev {
    display: none;
  }
}

.video-button-next {
  right: 0;
}

.video-button-prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

.insta {
  padding-top: 150px;
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .insta {
    padding-top: 80px;
  }
}

.insta.swiper-slide-active .insta__item img {
  -webkit-animation: slide-in-blurred-bottom 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
  animation: slide-in-blurred-bottom 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
}

.insta.swiper-slide-active .insta__info {
  -webkit-animation: fade-in-right 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes slide-in-blurred-bottom {
  0% {
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-bottom {
  0% {
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.insta__inner {
  padding: 10px;
  border: 1px solid #324497;
}

.insta__info {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-left: 10px;
}

.insta__text {
  margin-right: 20px;
  color: #454091;
}

.insta__name {
  font-size: calc(14px + 2 * ((100vw - 320px) / 1600));
  font-weight: 550;
  line-height: 1.2em;
  letter-spacing: 0em;
  color: #454091;
}

.insta__name:hover {
  color: #454091;
}

.insta__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px 25px;
  max-height: 70vh;
  padding-right: 10px;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-color: #222332 #fff;
}

.insta__list::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.insta__list::-webkit-scrollbar {
  height: 6px;
  background-color: #FFF;
  width: 6px;
}

.insta__list::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 10px;
  width: 6px;
}

@media (max-width: 1600px) {
  .insta__list {
    max-height: 70vh;
  }
}

@media (max-width: 1440px) {
  .insta__list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
}

@media (max-width: 1023px) {
  .insta__list {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 0;
    max-height: 72vh;
  }
}

@media (max-width: 767px) {
  .insta__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.insta__item {
  display: block;
  overflow: hidden;
  position: relative;
}

.insta__item:after {
  content: "";
  display: block;
  padding-top: 100%;
}

.insta__link {
  display: block;
  transition: all 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.insta__link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

@media (min-width: 1024px) {
  .insta__link:hover {
    transform: scale(1.1);
  }
}

.form {
  margin-top: 20px;
  height: 85vh;
  overflow-y: auto;
  padding-right: 20px;
  padding-bottom: 170px;
  scrollbar-color: #222332 #fff;
}

.form::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.form::-webkit-scrollbar {
  height: 6px;
  background-color: #FFF;
  width: 6px;
}

.form::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 10px;
  width: 6px;
}

.form-item {
  display: grid;
  grid-template-columns: 40% 60%;
  margin-bottom: 40px;
}

.form-item__left {
  font-weight: 500;
  font-size: 22px;
  color: #5a5a5a;
}

.form-item__right {
  padding-left: 30px;
  display: grid;
  gap: 20px;
}

.form-item__right input {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #6b6b6b;
  font-weight: 400;
  font-size: 22px;
  color: #5a5a5a;
  padding: 0 15px;
}

.form-item__right input::-moz-placeholder {
  color: #ebebeb;
}

.form-item__right input:-ms-input-placeholder {
  color: #ebebeb;
}

.form-item__right input::placeholder {
  color: #ebebeb;
}

.form-item__right textarea {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  border: 1.5px solid #6b6b6b;
  font-weight: 400;
  font-size: 22px;
  color: #5a5a5a;
  padding: 15px 15px;
  resize: none;
}

.form-item__right textarea::-moz-placeholder {
  color: #c7c7c7;
}

.form-item__right textarea:-ms-input-placeholder {
  color: #c7c7c7;
}

.form-item__right textarea::placeholder {
  color: #c7c7c7;
}

.form-item__right div {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #5a5a5a;
  gap: 10px;
  min-width: 85px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 10px;
}

.form-item__right .checkbox .wpcf7-list-item-label {
  display: none;
}

.form-item__right .checkbox .wpcf7-list-item, .form-item__right .checkbox-multi .wpcf7-list-item {
  margin-left: 0;
}

.form-item__right .checkbox input[type="checkbox"] {
  /*-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/
  border-radius: 4px;
  border: 1px solid #d6d6cd;
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: relative;
  padding: 0;
  background-color: #fff;
}

/*.form-item__right .checkbox input[type="checkbox"]::before {
  content: "🗸";
  color: #1d0963;
  font-size: 18px;
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  opacity: 0;
  transition: 0.1s ease-in;
}

.form-item__right .checkbox input[type="checkbox"]:checked::before {
  opacity: 1;
} */

.form-item__right .checkbox-multi {
    display: flex;
}
.form-item__right .checkbox-multi .wpcf7-list-item {
    display: flex;
    flex-direction: row;
    width: 105px;
}
.form-item__right .checkbox-multi .wpcf7-list-item-label {
    line-height: 25px;
    padding-left: 10px;
}
.form-item__right .checkbox-multi input[type="checkbox"] {
    /*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    border-radius: 4px;
    border: 1px solid #d6d6cd;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: relative;
    padding: 0;
    background-color: #fff;
}

/*.form-item__right .checkbox-multi input[type="checkbox"]::before {
    content: "🗸";
    color: #1d0963;
    font-size: 18px;
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    opacity: 0;
    transition: 0.1s ease-in;
} */

.form-item__right.col-1 {
  grid-template-columns: 1fr;
}

.form-item__right.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.form-item__right.item-checkbox {
  display: flex;
}

.form-item__right.item-checkbox>p {
  width: 100%;
}

.form-item__right.item-checkbox input:not([type=checkbox]),
.form-item__right.item-checkbox textarea {
  width: calc(100%);
}

.form__btn input[type="submit"] {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 22px;
  color: #5a5a5a;
  padding: 0 15px;
  width: 300px;
  margin-left: auto;
  display: block;
  background-color: #454091;
  color: #fff;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.form__btn input[type="submit"]:hover {
  background-color: #1a1468;
}

.promo {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  background-color: #000;
}

.promo .swiper {
  min-height: 100%;
}

.promo .promo-item {
  padding: 0 30px;
  min-height: 100vh;
}

.promo .promo-item__img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: -1;
  transform: scale(1.1);
  transition: all 10s ease-in-out;
}

.promo .promo-item__text {
  line-height: calc(26px + 22 * ((100vw - 320px) / 1600));
  font-weight: 400;
  color: #fff;
  z-index: 2;
  font-size: calc(18px + 18 * ((100vw - 320px) / 1600));
  position: absolute;
  right: 100px;
  bottom: 70px;
  text-align: right;
  max-width: 85%;
}

.promo .promo-item__text span {
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1), color 100ms linear;
  display: inline-block;
  transform: translate3d(100px, 60px, 0) scale(0.8) rotate(12deg);
  opacity: 0;
}

.promo .swiper-slide-active .promo-item__text span {
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  opacity: 1;
}

.promo .swiper-slide-active .promo-item__img {
  transform: scale(1);
}

.promo .swiper-pagination {
  width: 50vh;
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(50% - 50vh - 52px);
  z-index: 100;
  overflow: hidden;
  flex-direction: column;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  left: auto;
  row-gap: 90px;
  padding-right: 20px;
}

.promo .swiper-pagination::before {
  content: "";
  width: calc(100vh + 120px);
  min-width: 870px;
  height: calc(100vh + 120px);
  min-height: 870px;
  position: absolute;
  top: 0;
  right: 55px;
  bottom: 0;
  margin: auto;
  border: 1px #fff solid;
  opacity: 0.3;
  border-radius: 50% 50%;
}

.promo .swiper-pagination-bullet {
  width: 70px;
  height: 70px;
  background-color: transparent;
  opacity: 1;
  transform: translateX(4px);
  position: relative;
}

.promo .swiper-pagination-bullet:hover:after {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.promo .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 1px solid #fff;
  transition: all 0.5s ease-in-out;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.promo .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.promo .swiper-pagination-bullet:first-child {
  transform: translateX(-20px);
}

.promo .swiper-pagination-bullet:last-child {
  transform: translateX(-20px);
}

.promo .swiper-pagination-bullet-active::after {
  width: 70px;
  height: 70px;
}

.promo .promo-arrows {
  position: absolute;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.promo .swiper-button-next,
.promo .swiper-button-prev {
  position: relative;
  width: 77px;
  height: 54px;
  margin-top: 0;
  right: 0;
  left: 0;
}

.promo .swiper-button-next:hover::after,
.promo .swiper-button-prev:hover::after {
  opacity: 0;
}

.promo .swiper-button-next:hover::before,
.promo .swiper-button-prev:hover::before {
  opacity: 1;
}

.promo .swiper-button-next::after, .promo .swiper-button-next::before,
.promo .swiper-button-prev::after,
.promo .swiper-button-prev::before {
  content: "";
  font-size: 0;
  position: absolute;
  background-image: url("../img/arrows-promo.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 69%;
  height: 70%;
  transition: all 0.3s ease-in-out;
}

.promo .swiper-button-next::before,
.promo .swiper-button-prev::before {
  background-position: 100%;
  opacity: 0;
}

.promo .swiper-button-prev::after, .promo .swiper-button-prev::before {
  transform: rotate(180deg);
}

.animation .special-menu__item {
  opacity: 0;
  transition: 0.6s linear;
}

.animation .special-menu__item:nth-child(2n+1) {
  transform: translate3d(-100%, 100%, 0);
}

.animation .special-menu__item:nth-child(2n+2) {
  transform: translate3d(100%, 100%, 0);
}

.animation .special-menu__item.anim-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.animation .about__img {
  transition: 0.6s linear;
  opacity: 0;
  transform: translate3d(0, 40%, 0);
}

.animation .about__img.anim-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.animation .insta__inner {
  opacity: 0;
  transition: 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
}

.animation .insta__inner.anim-active {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

.animation .about__title,
.animation .about__name,
.animation .about__position {
  transition: 0.6s linear;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}

.animation .about__title.anim-active,
.animation .about__name.anim-active,
.animation .about__position.anim-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.animation .about__descr {
  transition: 0.6s linear;
  opacity: 0;
  transform: translate3d(0, 30%, 0);
}

.animation .about__descr.anim-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.animation .fslightbox-anim {
  transition: 0.6s linear;
  opacity: 0;
}

.animation .fslightbox-anim:nth-child(4n+1) {
  transform: translate3d(-100%, 0, 0);
}

.animation .fslightbox-anim:nth-child(4n+2) {
  transform: translate3d(0, 100%, 0);
}

.animation .fslightbox-anim:nth-child(4n+3) {
  transform: translate3d(0, 100%, 0);
}

.animation .fslightbox-anim:nth-child(4n+4) {
  transform: translate3d(100%, 0, 0);
}

.animation .fslightbox-anim.anim-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.animation .footer__link {
  transition: 0.6s linear;
  opacity: 0;
}

.animation .footer__link:nth-child(2n+1) {
  transform: translate3d(-100%, 100px, 0);
}

.animation .footer__link:nth-child(2n+2) {
  transform: translate3d(100%, 100px, 0);
}

.animation .footer__link.anim-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.animation .footer__bottom {
  transition: 0.6s linear;
  opacity: 0;
  transform: translate3d(0, 100px, 0);
}

.animation .footer__bottom.anim-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reviews-item__star{
  display: flex;
  align-items: flex-start;
  width: 200px;
}
.reviews-item__star img{
  width: 24px;
  height: auto;
  position: relative;
  margin-right: 6px;
}
@media (max-width: 1300px) {
  .promo .swiper-pagination {
    right: 200px;
  }

  .promo .promo-item__text {
    right: 5%;
    bottom: 5%;
    max-width: 100%;
  }

  .form-item__left {
    font-size: 18px;
  }

  .form-item__right textarea {
    height: 200px;
  }

  .form-item__right textarea, input {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .special-menu__item:nth-child(1) {
    top: 0;
    left: 0;
  }

  .special-menu__item:nth-child(2) {
    top: 0;
    right: 0;
  }

  .special-menu__item:nth-child(3) {
    bottom: 0;
    left: 0;
  }

  .special-menu__item:nth-child(4) {
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 920px) {
  .about__wrapper {
    flex-direction: column;
    gap: 30px;
  }

  body {
    overflow: visible !important;
  }

  .about__wrapper {
    height: auto;
    padding-bottom: 50px;
  }

  .about__right {
    max-width: 100%;
    -webkit-animation: tilt-in-br 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
    animation: tilt-in-br 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
    padding-right: 0;
  }
  .tabs-sec .container{
    flex-wrap: wrap;
  } 
  .tabs-sec .tab-link-wrapper {
    width: 100%;
    row-gap: 35px;
    padding-bottom: 50px;
  }

  .tabs-sec .tab-content-wrapper {
    width: 100%;
    max-height: 1000vh;
  }

  .tabs-sec .tabs-content {
    margin-top: 30px;
    padding-right: 0;
  }

  .tabs-sec .tab::before {
    display: none;
  }

  .tabs-sec .tab {
    position: relative;
    width: 100%;
    padding-left: 0;
  }

  .tabs-sec .tab span {
    display: block;
    margin-right: 50px;
  }

  .tabs-sec .tab::before {
    content: "";
    position: absolute;
    background-image: url("../img/close.svg");
    background-repeat: no-repeat;
    background-size: 85%;
    background-position: center;
    width: 24px;
    height: 24px;
    display: block;
    right: 0;
    top: -1px;
    left: auto;
    transform: rotate(45deg);
  }

  .tabs-sec .tab-active::before {
    transform: rotate(0);
  }

  .tabs-sec .tab-active {
    letter-spacing: 0em;
  }

  /*  .promo {
       padding-bottom: 50px;
   } */
  .promo .promo-arrows {
    bottom: 15px;
    left: 0;
    right: auto;
    width: 100%;
    top: auto;
    transform: translateY(0);
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .promo .promo-item {
    min-height: calc(100vh - 80px);
  }

  .promo .swiper {
    padding-bottom: 80px;
    background: #324497;
  }

  .promo .promo-item__img {
    transform: scale(1) !important;
  }

  .promo .swiper-pagination::before {
    display: none;
  }

  .promo .swiper-pagination {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    right: 0;
    align-items: center;
    flex-direction: row;
    padding-right: 0;
    height: 80px;
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .promo .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
  }

  .promo .swiper-pagination-bullet-active::after {
    width: 50px;
    height: 50px;
  }

  .promo .swiper-pagination-bullet:hover:after {
    width: 50px;
    height: 50px;
  }

  .promo .swiper-pagination-bullet:first-child {
    transform: translateX(0);
  }

  .promo .swiper-pagination-bullet:last-child {
    transform: translateX(0);
  }

  .header {
    top: 0;
  }

  .header.active {
    padding-top: 10px;
  }

  .main-slider__wrapper .special-menu {
    padding-top: 67px;
  }

  .reviews__wrapper {
    margin-top: 20px;
  }

  .reviews-item {
    height: 60vh;
  }

  .form-item {
    grid-template-columns: 100%;
    gap: 15px;
  }

  .form-item__right {
    padding-left: 0;
  }

  .form {
    padding-right: 0;
    padding-bottom: 50px;
  }

  .page-link {
    display: none;
  }

  .padding-top {
    padding-top: 100px;
  }

  .tabs-sec .tab-link-wrapper {
    padding-left: 0;
  }

  .logo {
    width: 100px;
  }

  .logo svg {
    height: 55px;
  }

  .practice {
    padding-top: 70px;
  }

  .therapy {
    padding-top: 100px;
  }

  .video {
    padding-top: 90px;
  }
}

@media (max-width: 820px) {

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

  .reviews .swiper {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 0 15px;
  }

  .header.active {
    padding: 0 15px;
  }

  .menu {
    right: 5px;
  }

  .padding-top {
    padding-top: 80px;
  }

  .about__wrapper {
    margin-top: 25px;
  }

  .phone {
    margin-right: 50px;
  }

  .form-item__right {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .form-item__right.item-checkbox input:not([type=checkbox]),
  .form-item__right.item-checkbox textarea {
    width: 100%;
  }

  .form__btn {
    width: 100%;
  }

  .form-item {
    margin-bottom: 25px;
  }

  .form-item__left {
    font-size: 16px;
  }

  .form-item__right input {
    height: 40px;
  }

  .form-item__right textarea,
  input {
    font-size: 16px;
  }

  .promo {
    min-height: 90vh;
  }

  .promo .promo-item {
    min-height: calc(100vh - 180px);
  }

  .swiper-wrapper {
    height: auto;
  }

  .main-slider__wrapper .swiper-slide {
    height: auto;
  }

  .promo {
    min-height: inherit;
    height: auto;
  }

  .promo .swiper {
    min-height: inherit;
  }

  .promo .swiper-wrapper {
    height: auto;
  }

  .therapy__inner {
    flex-direction: column;
  }

  .therapy__wrapper {
    height: 100% !important;
  }

    /*.form-item__right .checkbox input[type="checkbox"] {
        -webkit-appearance: initial;
        -moz-appearance: initial;
        appearance: auto;
    }
    .form-item__right .checkbox input[type="checkbox"]::before {
        display: none;
    }*/
}

@media (min-width: 920px) {
  .page-link.visible {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important
  }


}

.btn-back.visible {
  opacity: 1;
  visibility: visible
}

@media (max-width: 767px) {
  .load {
    display: none;
  }

  .btn-back {
    padding: 10px !important;
  }

  .sec-anim {
    padding-bottom: 100px;
  }
}



.btn-back {
  position: fixed;
  left: 90%;
  bottom: 5%;
  z-index: 20000;
  background-color: #fff;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out
}

.questionnaire {
  overflow-y: auto;
  padding-bottom: 100px;
}

@media (min-width: 921px) {
  .form-item__right.input-padding {
    padding-left: 135px;
  }
}
.overlay{
  background-color: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100000;
  opacity: 0.5;
  display: none;
}
.overlay.active{
  display: block;
}
.contacts-popup{
  position: fixed;
  top: -100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 280px;
  z-index: 100001;
  transition: all .5s ease;
}
.contacts-popup.active{
  top: 50%;
}
.close-popup{
  position: absolute;
  top: -35px;
  right: -35px;
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;  
}
.close-popup::before,
.close-popup::after{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  top: 15px;
}
.close-popup::before{
  transform: rotate(45deg);
}
.close-popup::after{
  transform: rotate(-45deg);
}
.popup-body{
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 15px;
  text-align: center;
}
.popup-body h3{
  font-size: 22px;
}
.popup-body a{
  color: #218ECE;
}
.popup-body a:hover{
  color: #130f4b;
}
.contacts-line{
  padding: 5px 0;
}