@charset "UTF-8";
:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1200px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --white: #fff;
  --primary-100: #2188d9;
  --primary-50: #4da0e1;
  --primary-30: #e0edf5;
  --primary-20: #e9f3fb;
  --primary-0: #f4f7f9;
  --primary-dark: #0d3657;
  --primary-grey: #698398;
  --color: #0d3657;
  --transition-duration: .2s;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:checked + .custom-checkbox__content::before {
  background-color: var(--accent-color);
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/../fonts/HelveticaNeueCyr-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  color: var(--black-color);
  font-weight: 400;
  font-size: clamp(
    0.875rem,
    0.8347107438rem + 0.1652892562vw,
    1rem
  );
}

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

a {
  text-decoration: none;
}

.title-1, .title-2 {
  font-weight: 700;
  font-size: 52px;
  line-height: 115%;
  letter-spacing: 0.02em;
  color: var(--primary-dark);
  margin: 0;
  font-size: clamp(
    1.75rem,
    1.2665289256rem + 1.9834710744vw,
    3.25rem
  );
}
.title-1 span, .title-2 span {
  color: var(--primary-100);
}

.title-2 {
  font-size: clamp(
    1.25rem,
    0.9276859504rem + 1.3223140496vw,
    2.25rem
  );
  font-weight: 600;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.container-right {
  padding-left: max(15px, (100% - var(--container-width)) / 2);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

@media (max-width: 576px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .hidden-big-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .visible-tablet {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .visible-mobile {
    display: none !important;
  }
}

a,
button,
label,
input,
textarea,
select,
svg * {
  -webkit-transition: all var(--transition-duration) ease-in;
  -o-transition: all var(--transition-duration) ease-in;
  transition: all var(--transition-duration) ease-in;
}

input, select {
  outline: transparent;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.list__item {
  padding-left: 22px;
  position: relative;
  font-weight: 600;
}
.list__item::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--accent-color);
  position: absolute;
  top: 5px;
  left: 0;
}

.tabs .tabs__nav-btn--active {
  background-color: #ff0001;
}
.tabs .tabs__panel {
  display: none;
}
.tabs .tabs__panel--active {
  display: -ms-grid;
  display: grid;
}

.btn-1 {
  font-weight: 600;
  font-size: clamp(
    0.875rem,
    0.7944214876rem + 0.3305785124vw,
    1.125rem
  );
  padding: 24px;
  color: var(--white);
  border-radius: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#5dcebc), to(#67d8c6));
  background: -o-linear-gradient(left, #5dcebc 0%, #67d8c6 100%);
  background: linear-gradient(90deg, #5dcebc 0%, #67d8c6 100%);
  text-align: center;
  display: inline-block;
  position: relative;
}
.btn-1 span {
  position: relative;
  z-index: 2;
  width: 100%;
}
.btn-1::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#36b4a0), to(#34cbb3));
  background: -o-linear-gradient(left, #36b4a0 0%, #34cbb3 100%);
  background: linear-gradient(90deg, #36b4a0 0%, #34cbb3 100%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 1;
}
@media (any-hover: hover) {
  .btn-1:hover::after {
    opacity: 1;
  }
}

.btn-2 {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  color: #fff;
  border-radius: 40px;
  background: -o-linear-gradient(228deg, #3ca8e7 0%, #1f7cce 100%);
  background: linear-gradient(222deg, #3ca8e7 0%, #1f7cce 100%);
  padding: 15px 36px;
  text-wrap: nowrap;
  position: relative;
}
.btn-2 svg {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  z-index: 2;
}
.btn-2 span {
  position: relative;
  z-index: 2;
  width: 100%;
}
.btn-2::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: -o-linear-gradient(228deg, #1c9ae3 0%, #1860a0 100%);
  background: linear-gradient(222deg, #1c9ae3 0%, #1860a0 100%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 1;
}
@media (any-hover: hover) {
  .btn-2:hover::after {
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .btn-2 {
    font-size: 14px;
  }
}

.section-margin {
  margin-bottom: 120px;
}
@media (max-width: 576px) {
  .section-margin {
    margin-bottom: 60px;
  }
}

.hero {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media(max-width: 768px) {
  .hero {
    margin-top: 10px;
  }
}
.hero__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1200px) {
  .hero__content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 768px) {
  .hero__info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.hero__title {
  margin: 0;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .hero__title {
    text-align: center;
    margin-bottom: 12px;
  }
}
.hero__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--primary-dark);
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .hero__text {
    font-size: 14px;
    text-align: center;
    margin-bottom: 16px;
  }
}
.hero__link {
  margin-bottom: 5px;
}
.hero__book {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.hero__book-img {
  max-width: 90px;
}
@media (max-width: 576px) {
  .hero__book-img {
    max-width: 70px;
  }
}
.hero__book-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--primary-dark);
  max-width: 450px;
}
@media (max-width: 576px) {
  .hero__book-text {
    font-size: 10px;
  }
}
.hero__book-text a {
  color: var(--primary-100);
}
.hero__swiper-wrapper {
  min-width: 100%;
  position: relative;
  width: 100%;
}
.hero__swiper-bg {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1200px) {
  .hero__swiper-bg {
    top: unset;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .hero__swiper-bg {
    max-width: 375px;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.hero__swiper {
  overflow: unset;
}
.hero__swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 440px;
  position: relative;
}
@media (max-width: 768px) {
  .hero__swiper-slide {
    min-height: 300px;
  }
}
@media (max-width: 576px) {
  .hero__swiper-slide {
    height: 300px;
    overflow: hidden;
  }
}
.hero__swiper-img {
  max-width: 450px;
  position: absolute;
  bottom: 0;
}
@media (max-width: 1200px) {
  .hero__swiper-img {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .hero__swiper-img {
    -o-object-position: 0 80px;
    object-position: 0 80px;
  }
}

.advantages__content {
  padding: 40px;
  border-radius: 30px;
  background: var(--primary-0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1024px) {
  .advantages__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px;
  }
}
.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 350px;
}
@media (max-width: 1024px) {
  .advantages__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}
.advantages__img {
  margin-left: -25px;
  max-width: 132px;
}
.advantages .advantages__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
@media (max-width: 576px) {
  .advantages .advantages__title {
    font-size: 16px;
  }
}
.advantages .advantages__text{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--primary-dark);
  margin: 0;
}
@media (max-width: 576px) {
  .advantages .advantages__text {
    font-size: 14px;
  }
}

.help__title {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .help__title {
    margin-bottom: 10px;
  }
}
.help__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .help__info {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .help__info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.help__info-item {
  background: var(--primary-0);
  border-radius: 20px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 576px) {
  .help__info-item {
    padding: 20px;
  }
}
.help__info-item-link {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--primary-20);
  color: var(--primary-100);
}
.help__info-item-link .help__info-text {
  font-weight: 500;
  color: var(--primary-100);
}
.help__info-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: var(--primary-dark);
}
@media (max-width: 576px) {
  .help__info-text {
    font-size: 14px;
  }
}
.help__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .help__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.help__book {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -o-linear-gradient(228deg, #3ca8e7 0%, #1f7cce 100%);
  background: linear-gradient(222deg, #3ca8e7 0%, #1f7cce 100%);
  border-radius: 30px;
  padding: 40px;
}
@media (max-width: 576px) {
  .help__book {
    padding: 24px;
  }
}
.help__book-info {
  position: relative;
  padding-right: 100px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .help__book-info {
    margin-bottom: 12px;
    padding-right: 0;
    text-align: center;
  }
}
.help__book-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .help__book-title {
    font-size: 16px;
    max-width: 250px;
    margin: 0 auto;
    margin-bottom: 8px;
  }
}
.help__book-text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}
@media (max-width: 576px) {
  .help__book-text {
    font-size: 14px;
  }
}
.help__book-link {
  width: 100%;
}
.help__book-inner-img {
  position: absolute;
  right: 0;
  top: -10px;
  max-width: 132px;
}
@media (max-width: 576px) {
  .help__book-inner-img {
    top: -30px;
    right: -30px;
  }
}
@media (max-width: 1024px) {
  .help__img {
    display: none;
  }
}
.help__img-mob {
  display: none;
}
@media (max-width: 768px) {
  .help__img-mob {
    display: block;
    margin-bottom: 12px;
    width: 100%;
  }
}

.banner__content {
  padding: 80px 20px;
  background: var(--primary-0);
  border-radius: 30px;
  position: relative;
  min-height: 610px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .banner__content {
    padding: 32px 20px;
    min-height: 500px;
    border-radius: 20px;
  }
}
.banner__title {
  text-align: center;
  max-width: 770px;
  margin: 0 auto;
  margin-bottom: 24px;
  line-height: 140%;
}
@media (max-width: 576px) {
  .banner__title {
    margin-bottom: 12px;
  }
}
.banner__text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--primary-dark);
}
@media (max-width: 576px) {
  .banner__text {
    font-size: 14px;
  }
}
.banner__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.differences__title {
  max-width: 605px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .differences__title {
    margin-bottom: 24px;
  }
}
.differences__content {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20.25rem, 1fr));
  gap: 20px;
}
@media (max-width: 576px) {
  .differences__content {
    gap: 12px;
  }
}
.differences__item {
  padding: 32px;
  border-radius: 20px;
  background: var(--primary-0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 576px) {
  .differences__item {
    padding: 24px;
  }
}
.differences__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--primary-dark);
}
@media (max-width: 576px) {
  .differences__name {
    font-size: 16px;
  }
}
.differences__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--primary-dark);
  margin: 0;
}
@media (max-width: 576px) {
  .differences__text {
    font-size: 14px;
  }
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.swiper {
  width: 100%;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.content-card {
  padding: 20px;
  min-height: 200px;
  font-family: sans-serif;
  background-color: wheat;
}

@media (max-width: 1500px) {
  .slider-2 .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
@media (max-width: 1024px) {
  .slider-1 .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.therapy__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .therapy__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.therapy__video-wrapper {
  position: relative;
}
.therapy__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.therapy__video {
  max-width: 100%;
  max-height: 530px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
}
@media (max-width: 576px) {
  .therapy__video {
    max-height: 320px;
  }
}
.therapy__title {
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .therapy__title {
    margin-bottom: 24px;
  }
}
.therapy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.therapy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}
.therapy__item svg {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.therapy__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.therapy__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--primary-dark);
}
@media (max-width: 576px) {
  .therapy__item-title {
    font-size: 16px;
  }
}
.therapy__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--primary-dark);
}
@media (max-width: 576px) {
  .therapy__item-text {
    font-size: 14px;
  }
}

.how-work__title {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .how-work__title {
    margin-bottom: 16px;
  }
}
.how-work__content {
  position: relative;
}
.how-work__content .grid {
  -ms-grid-columns: auto 1fr 1fr 1fr;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .how-work__content .grid {
    gap: unset;
  }
}
.how-work__content .swiper {
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .how-work__content .swiper {
    padding-top: 0;
  }
}
.how-work__content .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .how-work__content .swiper-slide:first-child {
    display: none;
  }
}
.how-work__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  text-wrap: nowrap;
}
.how-work__tag {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #2188d9;
  padding: 88px 20px;
  border-radius: 20px;
  background: #e9f3fb;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; /* справа налево */
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.how-work__card {
  position: relative;
  min-height: 820px;
  padding: 32px;
  border-radius: 30px;
  background-color: #f4f7f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .how-work__card {
    min-height: unset;
  }
}
@media (max-width: 1024px) {
  .how-work__card {
    width: 100%;
    padding: 0;
    background-color: transparent;
  }
}
.how-work__card-time {
  position: absolute;
  top: -16px;
  left: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #2188d9;
  padding: 6px 14px;
  border: 1px solid #4da0e1;
  border-radius: 40px;
  background-color: #e9f3fb;
}
.how-work__card-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #0d3657;
  margin-bottom: 8px;
  display: block;
}
.how-work__card-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px;
  border-radius: 20px;
  background-color: #e9f3fb;
  gap: 10px;
  margin-bottom: 12px;
}
.how-work__card-info-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #2188d9;
}
.how-work__card-info-time {
  font-weight: 500;
  font-size: 10px;
  line-height: 160%;
  color: #fff;
  padding: 4px 8px;
  border-radius: 40px;
  background-color: #2188d9;
  text-align: center;
}
.how-work__card-info-bar {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  border-radius: 20px;
  position: relative;
  height: 8px;
  background-color: #d9e8f2;
}
.how-work__card-info-progress {
  background-color: #2188d9;
  border-radius: 20px;
  height: 8px;
}
.how-work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  gap: 8px;
}
@media (max-width: 1024px) {
  .how-work__list {
    padding: 24px;
    border-radius: 20px;
    background-color: #f4f7f9;
  }
}
.how-work__item {
  padding-left: 18px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
}
@media (max-width: 1024px) {
  .how-work__item {
    font-size: 14px;
  }
}
.how-work__item:nth-child(5) {
  margin-top: auto;
}
@media (max-width: 576px) {
  .how-work__item:nth-child(5) {
    margin-top: unset;
  }
}
.how-work__item::after {
  content: "";
  display: block;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #4da0e1;
  position: absolute;
}
.how-work__item-text {
  font-weight: 500;
  font-size: 10px;
  line-height: 160%;
  color: #2188d9;
  padding: 4px 8px;
  border: 1px solid #2188d9;
  border-radius: 40px;
}
.how-work__item-text:nth-child(4) {
  margin-top: 8px;
}
.how-work__img {
  position: absolute;
  top: 52%;
  z-index: 2;
  -webkit-transform: translateY(-75%);
  -ms-transform: translateY(-75%);
  transform: translateY(-75%);
  opacity: 0;
}
.how-work__img.aos-animate {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}
@media (max-width: 1024px) {
  .how-work__img {
    position: static;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
@media (max-width: 576px) {
  .how-work__img {
    -webkit-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;
  }
}
.how-work__btns {
  display: none;
}
@media (max-width: 1024px) {
  .how-work__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
  }
  .how-work__btns .swiper-button-how-work-prev {
    position: static;
    margin: 0;
    padding: 0;
    width: unset;
    height: unset;
  }
  .how-work__btns .swiper-button-how-work-prev::after {
    display: none;
  }
  .how-work__btns .swiper-button-how-work-next {
    position: static;
    margin: 0;
    padding: 0;
    width: unset;
    height: unset;
  }
  .how-work__btns .swiper-button-how-work-next::after {
    display: none;
  }
}

.result-main__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 1024px) {
  .result-main__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.result-main__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .result-main__info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.result-main__title {
  margin-bottom: 24px;
}
.result-main__info-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .result-main__info-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }
}
.result-main__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
  border-radius: 20px;
  background-color: #f4f7f9;
}
.result-main__info-item svg {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
@media (max-width: 576px) {
  .result-main__info-item {
    font-size: 14px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.result-main__info-link {
  width: 100%;
  margin-top: auto;
}
.system-detensor__title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .system-detensor__title {
    margin-bottom: 24px;
    text-align: left;
  }
}
.system-detensor__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-right: 15px;
}
.system-detensor__content::-webkit-scrollbar {
  display: none;
}
@media (max-width: 576px) {
  .system-detensor__content {
    gap: 12px;
  }
  .system-detensor__content::-webkit-scrollbar {
    opacity: 0;
  }
}
.system-detensor__item {
  padding: 40px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 600px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 576px) {
  .system-detensor__item {
    padding: 24px;
    border-radius: 20px;
    min-width: 300px;
    min-height: 500px;
  }
}
.system-detensor__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .system-detensor__item-title {
    font-size: 16px;
  }
}
.system-detensor__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin: 0;
}
@media (max-width: 576px) {
  .system-detensor__item-text {
    font-size: 14px;
  }
}
.system-detensor__item-time {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  padding: 6px 14px;
  border-radius: 40px;
  background-color: #0d3657;
  margin-top: auto;
}
@media (max-width: 576px) {
  .system-detensor__item-time {
    font-size: 10px;
  }
}

.methodology__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(200px, 490px);
  grid-template-columns: 1fr minmax(200px, 490px);
  gap: 20px;
}
@media (max-width: 1024px) {
  .methodology__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.methodology__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.methodology__title {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .methodology__title {
    margin-bottom: 16px;
  }
}
.methodology__p {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #0d3657;
  margin: 0;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .methodology__p {
    margin: 0;
  }
}
@media (max-width: 576px) {
  .methodology__p {
    font-size: 14px;
  }
}
.methodology__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 1024px) {
  .methodology__text {
    font-size: 14px;
  }
}
.methodology__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.methodology__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
@media (max-width: 576px) {
  .methodology__item {
    font-size: 14px;
  }
}
.methodology__item::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/correct-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.methodology__quote {
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  background-color: #f4f7f9;
  border-radius: 30px;
}
@media (max-width: 576px) {
  .methodology__quote {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px;
    border-radius: 20px;
    gap: 12px;
  }
}
.methodology__quote-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.methodology__quote-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.methodology__quote-info cite {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #0d3657;
}
.methodology__quote-info span {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #698398;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.methodology__quote-info svg {
  margin-top: auto;
}
.methodology__quote-img {
  max-width: 168px;
}
@media (max-width: 576px) {
  .methodology__quote-img {
    height: 137px;
  }
}
.methodology__quote-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #0d3657;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}
.methodology__quote-text cite {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #0d3657;
}
.methodology__quote-text span {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #698398;
}

.approach__content {
  padding: 20px 30px 36px 50px;
  border-radius: 30px;
  background-color: #f4f7f9;
  position: relative;
  gap: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.9fr;
  grid-template-columns: 1fr 0.9fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .approach__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 24px;
    padding-top: 32px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
}
.approach__content-uppertext {
  position: absolute;
  top: -16px;
  left: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #2188d9;
  padding: 6px 14px;
  border: 1px solid #4da0e1;
  background-color: #e9f3fb;
  border-radius: 40px;
}
@media (max-width: 1024px) {
  .approach__content-uppertext {
    right: 50px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .approach__content-uppertext {
    font-size: 10px;
    right: 15px;
    left: 15px;
    padding: 4px 8px;
  }
}
.approach__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .approach__info {
    text-align: center;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}
@media (max-width: 576px) {
  .approach__info {
    margin-top: 0;
  }
}
.approach__title {
  margin-bottom: 12px;
}
.approach__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .approach__text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .approach__link {
    width: 100%;
  }
}
.approach__map {
  position: relative;
}
@media (max-width: 576px) {
  .approach__map {
    overflow: hidden;
    margin: 0 -24px 0 -24px;
    padding: 24px;
    padding-bottom: 32px;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 1024px) {
  .approach__img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .approach__img {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.approach__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: clamp(100px, 7vw, 165px);
}
.approach__doc-item {
  position: absolute;
}
.approach__doc-item:nth-child(1) {
  left: 17%;
  top: 17%;
}
.approach__doc-item:nth-child(2) {
  left: 11%;
  bottom: 20%;
}
.approach__doc-item:nth-child(3) {
  right: 28%;
  bottom: 0;
}
.approach__doc-item:nth-child(4) {
  right: 2%;
  bottom: 39%;
}
.approach__doc-item:nth-child(5) {
  right: 10%;
  top: 7%;
}
.approach__doc-icon {
  position: absolute;
  bottom: 5px;
  right: 0;
}
@media (max-width: 1024px) {
  .approach__doc-icon {
    max-width: 16px;
  }
}
.approach__doc-img {
  width: clamp(40px, 5vw, 60px);
}
@media (max-width: 576px) {
  .approach__doc-img {
    width: 50px;
  }
}

.practice__title {
  max-width: 865px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .practice__title {
    text-align: center;
    max-width: 100%;
    margin-bottom: 24px;
  }
}
.practice__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .practice__content {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .practice__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.practice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 32px;
  border-radius: 20px;
  background-color: #f4f7f9;
}
@media (max-width: 576px) {
  .practice__item {
    padding: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    min-height: 176px;
  }
}
.practice__img {
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .practice__img {
    max-width: 40px;
  }
}
.practice__value {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #0d3657;
}
@media (max-width: 576px) {
  .practice__value {
    font-size: 28px;
  }
}
.practice__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
}
@media (max-width: 576px) {
  .practice__item-text {
    font-size: 14px;
  }
}
.practice__item-result {
  position: relative;
  overflow: hidden;
  background-color: #2188d9;
}
.practice__item-result .practice__item-text {
  color: white;
}
.practice__item-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 4px;
}
.practice__item-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: luminosity;
}
@media (max-width: 576px) {
  .practice__item-bg {
    max-width: 250px;
    left: unset;
    right: 0;
    bottom: -45px;
  }
}

.certificate__content {
  border-radius: 30px;
  background-color: #f4f7f9;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(155px, 8vw, 200px) auto;
  grid-template-columns: 1fr clamp(155px, 8vw, 200px) auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px;
}
@media (max-width: 1024px) {
  .certificate__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .certificate__content {
    padding: 32px 24px;
  }
}
@media (max-width: 1024px) {
  .certificate__title {
    max-width: 240px;
  }
}
@media (max-width: 576px) {
  .certificate__img-wrapper {
    position: absolute;
    right: 0;
    top: 0;
  }
}
.certificate__img {
  position: absolute;
  max-width: clamp(143px, 13vw, 230px);
  top: -15px;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
}
@media (max-width: 1440px) {
  .certificate__img {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
@media (max-width: 1024px) {
  .certificate__img {
    right: 0;
    top: 5px;
  }
}
.certificate__link {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.effectiveness__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(200px, 390px) 1fr;
  grid-template-columns: minmax(200px, 390px) 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .effectiveness__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.effectiveness__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.effectiveness__title {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .effectiveness__title {
    text-align: center;
    margin-bottom: 16px;
  }
}
.effectiveness__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
  margin: 0;
  max-width: 334px;
}
@media (max-width: 576px) {
  .effectiveness__text {
    font-size: 14px;
    text-align: center;
  }
}
.effectiveness__swiper-wrapper {
  min-width: 100%;
  padding: 32px;
  padding-right: 0;
  border-radius: 20px;
  background-color: #f4f7f9;
}
@media (max-width: 1200px) {
  .effectiveness__swiper-wrapper {
    padding-right: 32px;
  }
}
@media (max-width: 768px) {
  .effectiveness__swiper-wrapper {
    padding: 24px;
  }
}
.effectiveness__swiper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.effectiveness__slide {
  position: relative;
  height: 292px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
}
.effectiveness__slide::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 54, 87, 0)), to(#0d3657));
  background: -o-linear-gradient(top, rgba(13, 54, 87, 0) 0%, #0d3657 100%);
  background: linear-gradient(180deg, rgba(13, 54, 87, 0) 0%, #0d3657 100%);
}
.effectiveness__slide.active::after {
  display: none;
}
.effectiveness__slide.active .effectiveness__video-text {
  display: none;
}
.effectiveness__slide.active .effectiveness__video-name {
  display: none;
}
.effectiveness__video {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.effectiveness__video-text {
  position: relative;
  z-index: 2;
  margin-top: auto;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 576px) {
  .effectiveness__video-text {
    font-size: 10px;
  }
}
.effectiveness__video-name {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}
@media (max-width: 576px) {
  .effectiveness__video-name {
    font-size: 14px;
  }
}
.effectiveness__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.reviews.active .swiper {
  display: none;
}
.reviews.active .reviews__widget {
  display: block;
  margin-bottom: 30px;
}
.reviews.active .reviews__btn {
  display: none;
}
.reviews__title {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .reviews__title {
    margin-bottom: 24px;
  }
}
.reviews__swiper {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .reviews__swiper {
    margin: 0;
  }
}
.reviews .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: unset;
}
.reviews__slide {
  padding: 32px;
  border-radius: 20px;
  background-color: #f4f7f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 576px) {
  .reviews__slide {
    padding: 24px;
  }
}
.reviews__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.reviews__photo {
  max-width: 80px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
@media (max-width: 576px) {
  .reviews__photo {
    max-width: 60px;
  }
}
.reviews__head-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}
.reviews__head-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
}
@media (max-width: 576px) {
  .reviews__head-name {
    font-size: 14px;
  }
}
.reviews__head-status {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #2188d9;
  padding: 6px 14px;
  border: 1px solid #4da0e1;
  border-radius: 40px;
  background-color: #e9f3fb;
}
@media (max-width: 576px) {
  .reviews__head-status {
    font-weight: 500;
    font-size: 10px;
    padding: 4px 8px;
  }
}
.reviews__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #0d3657;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .reviews__name {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.reviews__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #698398;
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .reviews__text {
    font-size: 14px;
  }
}
.reviews__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
}
.reviews__info-estimation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.reviews__info-estimation-value {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
}
@media (max-width: 576px) {
  .reviews__info-estimation-value {
    font-size: 14px;
  }
}
.reviews__info-date {
  font-weight: 500;
  font-size: 12px;
  line-height: 167%;
  color: #698398;
  opacity: 0.5;
}
.reviews__btn {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  padding: 24px 100px;
  background: -o-linear-gradient(228deg, #3ca8e7 0%, #1f7cce 100%);
  background: linear-gradient(222deg, #3ca8e7 0%, #1f7cce 100%);
  border-radius: 40px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .reviews__btn {
    padding: 24px;
    width: 100%;
    font-size: 14px;
    margin-top: 32px;
  }
}
.reviews__widget {
  display: none;
}

.arenda__content {
  padding: 50px;
  border-radius: 20px;
  background-color: #f4f7f9;
  position: relative;
}
@media (max-width: 576px) {
  .arenda__content {
    padding: 32px 24px 0 24px;
  }
}
.arenda__uppertext {
  position: absolute;
  top: -16px;
  left: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #2188d9;
  padding: 6px 14px;
  border: 1px solid #4da0e1;
  border-radius: 40px;
  background-color: #e9f3fb;
}
@media (max-width: 576px) {
  .arenda__uppertext {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 10px;
    padding: 4px 8px;
    top: -10px;
  }
}
.arenda__info {
  max-width: 720px;
}
.arenda__title {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .arenda__title {
    margin-bottom: 16px;
  }
}
.arenda__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(100px, 240px) 1fr;
  grid-template-columns: minmax(100px, 240px) 1fr;
  gap: 32px;
}
@media (max-width: 576px) {
  .arenda__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.arenda__buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .arenda__buy {
    margin-bottom: 20px;
  }
}
.arenda__buy-text {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #0d3657;
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 576px) {
  .arenda__buy-text {
    font-size: 28px;
  }
}
.arenda__buy-inner-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
  max-width: 310px;
  margin: 0;
}
@media (max-width: 576px) {
  .arenda__buy-inner-text {
    font-size: 14px;
  }
}
.arenda__banner {
  padding: 30px;
  border-radius: 20px;
  background-color: #0d3657;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  max-width: 620px;
}
@media (max-width: 576px) {
  .arenda__banner {
    padding: 24px;
    margin: 0 -24px;
    min-height: 420px;
  }
}
.arenda__banner-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .arenda__banner-title {
    font-size: 16px;
    max-width: 190px;
  }
}
.arenda__banner-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
}
@media (max-width: 576px) {
  .arenda__banner-text {
    font-weight: 400;
    max-width: 190px;
  }
}
.arenda__banner-img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 576px) {
  .arenda__banner-img {
    width: 100%;
  }
}
.arenda__img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: clamp(250px, 24vw, 450px);
}

.products__content {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}
@media (max-width: 768px) {
  .products__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
}
.products__content:has(input:checked) .products__item-img-def {
  display: block;
}
.products__content:has(input:checked) .products__item-img-switch {
  display: none;
}
.products__info {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.products__title {
  margin-bottom: 20px;
}
.products__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0d3657;
  max-width: 300px;
  display: block;
  margin-bottom: 16px;
}
.products__switcher-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #0d3657;
}
.products__item:not(.products__info) {
  padding: 32px;
  border-radius: 30px;
  background-color: #f4f7f9;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .products__item:not(.products__info) {
    padding: 24px;
    border-radius: 20px;
  }
}
.products__item:nth-child(2) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/span 2;
}
@media (max-width: 576px) {
  .products__item:nth-child(2) .products__item-img {
    max-width: 320px;
  }
}
.products__item:nth-child(3) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/span 2;
  height: 314px;
}
@media (max-width: 576px) {
  .products__item:nth-child(3) .products__item-img {
    max-width: 300px;
  }
}
.products__item:nth-child(4) {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  grid-row: 1;
  height: 226px;
}
.products__item:nth-child(5) {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/span 2;
}
.products__item:nth-child(5) .products__item-img {
  max-width: 337px;
}
.products__item:nth-child(6) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
  height: 166px;
}
.products__item:nth-child(6) .products__item-img {
  max-width: 190px;
}
@media (max-width: 576px) {
  .products__item:nth-child(6) .products__item-img {
    max-width: 250px;
  }
}
@media (max-width: 1024px) {
  .products__item:nth-child(n):not(.products__info) {
    grid-column: unset;
    grid-row: unset;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .products__item:nth-child(n):not(.products__info) {
    height: 220px;
  }
}
.products__item-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #0d3657;
}
@media (max-width: 576px) {
  .products__item-name {
    font-size: 16px;
  }
}
.products__item-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 380px;
}
.products__item-img-switch {
  display: block;
}
.products__item-img-def {
  display: none;
}
@media (max-width: 576px) {
  .products__item-img {
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.try__content {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 80px 20px;
  min-height: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .try__content {
    padding: 40px 20px;
    min-height: 600px;
    background-position: -40px;
  }
}
.try__inner {
  max-width: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.try__title {
  color: white;
  text-align: center;
  margin-bottom: 20px;
}
.try__title span {
  background: -webkit-gradient(linear, left top, right top, from(#5dcebc), to(#67d8c6));
  background: -o-linear-gradient(left, #5dcebc 0%, #67d8c6 100%);
  background: linear-gradient(90deg, #5dcebc 0%, #67d8c6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.try__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin: 0;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .try__text {
    font-size: 14px;
  }
}
.try__btn {
  padding: 24px 36px;
}
@media (max-width: 576px) {
  .try__btn {
    width: 100%;
  }
}

.switch {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* скрываем стандартный checkbox */
.switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* корпус переключателя */
.switch__slider {
  position: relative;
  width: 52px;
  height: 28px;
  background: #e9f3fb;
  border-radius: 999px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

/* кружок */
.switch__slider::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 7px;
  width: 16px;
  height: 16px;
  background: #2188d9;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* включено */
.switch input:checked + .switch__slider {
  background: -webkit-gradient(linear, left top, left bottom, from(#4bb1ff), to(#1e7fe6));
  background: -o-linear-gradient(top, #4bb1ff, #1e7fe6);
  background: linear-gradient(180deg, #4bb1ff, #1e7fe6);
}

.switch input:checked + .switch__slider::before {
  -webkit-transform: translateX(21px);
  -ms-transform: translateX(21px);
  transform: translateX(21px);
  background-color: white;
}

/* текст */
.switch__text {
  font-size: 14px;
  font-weight: 500;
  color: #0d3657;
}

.effectiveness .swiper-pagination, .reviews .swiper-pagination {
  position: static;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 576px) {
  .effectiveness .swiper-pagination, .reviews .swiper-pagination {
    margin-top: 20px;
  }
}
.effectiveness .swiper-pagination .swiper-pagination-bullet, .reviews .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d9e8f2;
  margin: 0 !important;
  opacity: 1;
}
@media (max-width: 576px) {
  .effectiveness .swiper-pagination .swiper-pagination-bullet, .reviews .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.effectiveness .swiper-pagination .swiper-pagination-bullet-active, .reviews .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2188d9;
}

.swiper-button-prev-system, .swiper-button-next-system {
  opacity: 0;
  transition: all .2s ease-in;
}

.swiper-button-prev-system.swiper-button-disabled, .swiper-button-next-system.swiper-button-disabled {
  opacity: 0;
}

.system-detensor__swiper:hover .swiper-button-prev-system{
  opacity: 1;
}

.system-detensor__swiper:hover .swiper-button-next-system{
  opacity: 1;
}
