@font-face {
  font-family: 'Antropos';
  src: url('../fonts/Antropos.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Сброс стилей */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Устанавливаем базовые стили для html */
html {
  font-size: 16px; /* Основной размер шрифта */
  -webkit-text-size-adjust: 100%; /* Предотвращаем изменение размера текста в Safari */
}

/* Устанавливаем базовые стили для body */
body {
  font-family: "Montserrat", sans-serif;
  font-display: swap;
  font-size: 1rem; /* Размер шрифта */
  font-weight: 500; /* Начертание шрифта */
  color: #373539; /* Цвет текста */
  background-color: #fff; /* Цвет фона */
  -webkit-font-smoothing: antialiased; /* Сглаживание шрифтов в WebKit */
  -moz-osx-font-smoothing: grayscale; /* Сглаживание шрифтов в Firefox */
}

/* Стили для основных блоков */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  color: #373539;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;

  &:hover {
    color: #424141;
    text-decoration: none;
    opacity: 0.8;
  }
}

/* Устанавливаем стили для списков */
li {
    list-style: none;
}

/* Устанавливаем стили для изображений */
img {
  vertical-align: middle;
  border-style: none;
}

/* Устанавливаем стили для таблиц */
table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

th {
  text-align: inherit;
}

/* Устанавливаем стили для форм и кнопок */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
   cursor: pointer;
}

.container {
    width: 1280px;
    margin: 0 auto;
}


  /* TOP NAV */
  .top_nav {
    background: #F6F2FC;
    padding: 10px 0px;
  }
  .top_nav__row {
    display: flex;
    justify-content: space-between;
  }
  .top_nav__menu ul {
    display: flex;
    justify-content: space-between;
    width: 734px;
  }
  .top_nav__menu ul li a {
    font-size: 14px;
    line-height: 14px;
  }
  .top_nav__contacts ul{
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  .top_nav__contacts ul a {
    font-size: 14px;
    line-height: 14px;
  }
  .top_nav__contacts ul li:nth-child(2) a, .top_nav__contacts ul li:nth-child(3) a{
    border-bottom: 1px solid #373539;
  }
  .top_nav__contacts ul li:nth-child(2) a:hover, .top_nav__contacts ul li:nth-child(3) a:hover{
    border: none;
  }

  /* NAV */
  .nav_inner {
    border-bottom: 1px solid #F1F1F1;
  }
  .nav {
    display: flex;
    justify-content: space-between;
  }
  .nav_logo img {
    width: 100px;
    height: 100px;
  }
  .nav_menu {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
  }
  .nav_menu ul {
    display: flex;
    gap: 32px;
    margin-right: 70px;
    align-content: center;
    flex-wrap: wrap;
  }
  .nav_menu ul li a {
    font-size: 16px;
  }
  .nav_btn button {
    border-radius: 120px;
    border: 1px solid #373539;
    background: #373539;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 11px 45px;
  }
  .nav_btn button:hover {
    background: #EBF6A1;
    color: #373539;
    border: 1px solid #EBF6A1;
  }
  .slider{
    border-bottom: 1px solid #f1f1f1;
  }
  .swiper_header {
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
  }
  .slider_inner {
/*     background-size: 100% 100%!important; */
    height: 640px;
  }
  .slider_title {
    text-align: center;
    font-family: 'Antropos';
    font-weight: 700;
    padding-top: 70px;
  }
  .slider_title__inner {
    display: block;
    width: 100%;
  }
  .slider_title h2{
    color: #B4A0F9;
    font-size: 48px;
    line-height: 59px;
  }
  .slider_title h1{
    color: #fff;
    font-size: 72px;
    display: inline-block;
    background: #F097E9;
    padding: 0px 25px;
    line-height: 88px;
  }
  .slider_title h3 {
    background: #B4A0F9;
    font-size: 48px;
    line-height: 59px;
    padding: 10px 25px;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-right: 80px;
    transform: rotate(3deg);
    margin-top: -7px;
  }
  .slider_title__inner img {
    position: absolute;
    width: 148px;
    height: 167px;
    bottom: -4px;
    right: -15px;
    transform: rotate(-2deg);
  }
  .slider_btns {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 70px;
    padding-bottom: 228px;
  }
  .slider_btns button:nth-child(1) {
    background: linear-gradient(60deg, #9796F0, #FBC7D4);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.5px;
    padding: 15px;
    border-radius: 120px;
    border: none;
    transition: box-shadow 0.5s ease;
  }
  
  .slider_btns button:nth-child(1):hover {
    /* Добавляем свечение, используя box-shadow */
    box-shadow: 0 0 15px #9796F0, 0 0 15px #FBC7D4;
  }
  
  .slider_btns button:nth-child(2) {
    padding: 15px;
    border-radius: 120px;
    line-height: 19.5px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #fff;
    color: #fff;
    background: none;
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  .slider_btns button:nth-child(2):hover {
    background: #B4A0F9;
    color: #fff;
  }
  .second_slide .slider_other__info{
    padding-top: 80px;
    padding-left: 50px;
  }
  .slider_other__info___title {
    display: block;
    width: 100%;
  }
  .second_slide .slider_other__info___title h2 {
    font-size: 72px;
    line-height: 88.7px;
    background: #F097E9;
    padding: 0px 25px;
    color: #fff;
    display: inline-block;
    font-family: 'Antropos';
  }
  .second_slide .slider_other__info___subtitle {
    width: 100%;
    display: block;
  }
  .second_slide .slider_other__info___subtitle h3 {
    background: #B4A0F9;
    font-size: 48px;
    line-height: 59px;
    padding: 10px 25px;
    color: #fff;
    display: inline-block;
    position: relative;
    transform: rotate(3deg);
    font-family: 'Antropos';
    margin-left: 10px;
  }
  .second_slide .slider_other__info___desc {
    margin-top: 50px;
  }
  .second_slide .slider_other__info___desc p {
    font-size: 16px;
    color: #fff;
    line-height: 19.2px;
    margin-left: 10px;
  }
  .second_slide .slider_other__info___desc span {
    color: #7196E2;
  }
  .second_slide .slider_other__info___desc li:nth-child(1) {
    margin-bottom: 15px;
  }
  .second_slide .slider_other__info___desc li {
    width: 516px;
    list-style: inside;
    display: flex;
  }
  .second_slide .slider_btns{
    justify-content: flex-start;
    padding-left: 50px;
    padding-bottom: 90px;
  }
  .third_slide .slider_other__info___desc span {
    color: #fff;
  }
  .third_slide .slider_other__info___desc p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
  }
  .third_slide .slider_other__info___desc li:nth-child(1) {
    margin-bottom: 0;
  }
  .third_slide .slider_btns button:nth-child(2) {
    padding: 15px;
    border-radius: 120px;
    line-height: 19.5px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #fff;
    color: #fff;
    background: none;
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  .third_slide .slider_btns button:nth-child(2):hover {
    border: 2px solid #000;
    background: #000;
  }
  .swiper_header {
    position: relative;
  }
  .custom-pagination {
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 1000;
  }
  .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 32px;
    background: #AFC9FF;
    margin: 0 3px;
    cursor: pointer;
    opacity: 1;
    transition: width 0.5s ease;
  }
  .swiper-pagination-bullet-active {
    background: #AFC9FF;
    width: 44px;
  }
  .swiper-horizontal {
    overflow: hidden!important;
  }


  .counter {
    border-bottom: 1px solid #f1f1f1;
  }
  .counter_items {
    display: flex;
    justify-content: space-between;
  }
  .counter_item {
    text-align: center;
    padding: 24px 0px 32px 0px;
  }
  .counter_item__num h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 49px;
  }
  .counter_item__desc p {
    font-size: 20px;
    line-height: 19.2px;
    color: #8D8D8D;
  }

  .whywe {
    margin-top: 120px;
  }
  .whywe_row {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
  }
  .whywe_row:nth-child(1) {
    margin-bottom: 20px;
  }
  .whywe_left {
    width: 407px;
    transition: all 0.3s ease;
  }
  .whywe_left:hover {
    transform: translateY(-10px);
  }
  .whywe_left h2{
    border-radius: 30px;
    background: #B4A0F9;
    font-family: 'Antropos';
    font-size: 40px;
    line-height: 49px;
    color: #fff;
    padding: 28px 32px;
    height: 100%;
  }
  .whywe_right {
    width: 842px;
    transition: all 0.3s ease;
  }
  .whywe_right:hover {
    transform: translateY(-10px);
  }
  .whywe_right p{
    color: #fff;
    font-size: 20px;
    line-height: 19px;
    background: #B4A0F9;
    border-radius: 30px;
    padding: 24px 32px 24px 32px;
    height: 100%;
  }
  .whywe_item {
    width: 407px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  .whywe_item:hover {
    transform: translateY(-10px); 
  }
  .whywe_item:nth-child(1) {
    background: url(../assets/1.png) no-repeat;
    background-size: 100% 100%;
  }
  .whywe_item:nth-child(2) {
    background: url(../assets/2.png) no-repeat;
    background-size: 100% 100%;
  }
  .whywe_item:nth-child(2) p {
    color: #9AAC2B;
  }
  .whywe_item:nth-child(3) {
    background: url(../assets/3.png) no-repeat;
    background-size: 100% 100%;
  }
  .whywe_item p{
    color: #fff;
    font-size: 20px;
    padding: 40px 20px 40px 64px;
    line-height: 23px;
  }

  .whom {
    margin-top: 120px;
  }
  .title {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
  }
  .arrow_reviews {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .arrow_reviews button {
    background: #F1F1F1;
    border-radius: 10px;
    border: none;
    padding: 6px 4px 4px 4px;
    margin-right: 5px;
  }
  .arrow_reviews button:hover{
    background: #AFC9FF;
  }
  .arrow_reviews path {
    fill: #000;
  }
  .arrow_reviews button:hover path{
    fill: #fff;
  }
  .title h1{
    font-size: 64px;
    line-height: 70px;
    font-family: 'Antropos';
  }
  .whom_items {
    display: grid;
    grid-template-columns: repeat(3, 407px); /* Создаем три колонки с фиксированной шириной 407px */
    grid-gap: 16px 32px; /* Задаем расстояние между карточками 32px */
    justify-content: center; /* Центрируем сетку по горизонтали */
    margin-top: 50px;
  }
  .whom_item img{
    width: 100%;
    height: 360px;
    border-radius: 40px;
    object-fit: cover;
  }
  .whom_item {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .whom_item:hover {
    transform: translateY(-10px);
  }
  .whom_item p {
    font-size: 16px;
    line-height: 19.2px;
    background: #fff;
    border-radius: 28px;
    padding: 16px 24px 16px 24px;
    text-align: center;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .princip {
    margin-top: 120px;
  }
  .princip_initems {
    margin-top: 50px;
  }
  .princip_row {
    display: flex;
    gap: 32px;
  }
  .princip_row:nth-child(1) {
    margin-bottom: 16px;
  }
  .princip_left {
    width: 843px;
    display: flex;
    background: #AFC9FF;
    border-radius: 40px;
    color: #fff;
    transition: all 0.3s ease;
  }
  .princip_left:hover{
    transform: translateY(-10px);
  }
  .princip_left__info {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
  }
  .princip_left__info___inner {
    padding-left: 32px;
  }
  .princip_left__title h2 {
    font-family: 'Antropos';
    font-size: 40px;
    line-height: 49px;
  }
  .princip_left__desc p {
    font-size: 20px;
    line-height: 19px;
  }
  .princip_left__img img {
    width: 320px;
    border-radius: 36px;
    padding: 20px;
  }
  .princip_right {
    width: 407px;
    background: #B4A0F9;
    border-radius: 40px;
    color: #fff;
    padding: 32px;
  }
  .princip_right__title h2 {
    font-family: 'Antropos';
    font-size: 40px;
    line-height: 49px;
  }
  .princip_right__desc p {
    font-size: 20px;
    line-height: 19px;
  }
  .princip_right__btn a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19.5px;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 16px 0px;
    display: block;
    border-radius: 120px;
    margin-top: 25px;
  }
  .princip_right:hover .princip_right__btn a {
    background: #373539;
    color: #fff;
    opacity: 1;
  }
  .princip_item {
    width: 50%;
    border-radius: 40px;
    color: #fff;
    padding: 28px 32px 32px 32px;
    transition: all 0.3s ease;
  }
  .princip_item:hover {
    transform: translateY(-10px);
  }
  .princip_item:nth-child(1) {
    background: url(../assets/atm.png) no-repeat;
    background-size: 100% 100%;
  }
  .princip_item:nth-child(2) {
    background: url(../assets/lich.png) no-repeat;
    background-size: 100% 100%;
  }
  .princip_item__title h2 {
    font-family: 'Antropos';
    font-size: 40px;
    line-height: 49px;
  }
  .princip_item:nth-child(2) {
    color: #9AAC2B;
  }
  .princip_item__desc p {
    font-size: 20px;
    line-height: 19px;
  }

  /*Сравнение подходов*/
  .tableequal {
    width: 100%;
    margin-top: 120px;
  }
  .tableequal__inner {
    margin: 0 -32px;
    margin-top: 50px;
  }
  .comparison-table {
    width: 100%;
    background-color: #FFFFFF;
    border-spacing: 32px 0;
    border-collapse: separate;
  }
  .comparison-table th:nth-child(1) {
    background-color: #AFC9FF;
  }
  .comparison-table th {
    background-color: #B4A0F9;
    color: #fff;
    font-weight: 500;
    border-radius: 24px;
    width: 297px;
    font-size: 20px;
    line-height: 23px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .comparison-table th:hover {
    transform: translateY(-10px);
  }
  .comparison-table td {
    color: #373539;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    padding: 22px;
  }
  .comparison-table tr:nth-child(odd) td{
    background: #F6F2FC;
    border-radius: 16px;
  }
  .comparison-table .checkmark {
    color: #4CAF50;
    text-align: center;
  }
  .comparison-table .crossmark {
    color: #F44336;
    text-align: center;
  }

  .homecomers {
    margin-top: 120px;
    display: block;
    width: 100%;
  }
  .homecomers_row {
    display: flex;
    gap: 32px;
  }
  .homecomers_ege {
    width: 843px;
    background: #B4A0F9;
    padding: 32px 55px 32px 55px;
    border-radius: 40px;
    transition: all 0.3s ease;
  }
  .homecomers_ege:hover {
    transform: translateY(-10px);
  }
  .homecomers_ege h2 {
    font-size: 40px;
    line-height: 49.28px;
    font-family: 'Antropos';
    display: flex;
    color: #fff;
    justify-content: space-between;
    align-items: center;
  }
  .homecomers_ege h2 svg path {
    fill: #fff;
  }
  .homecomers_ege:hover path{ 
    fill: #000!important;
  }
  .homecomers_wuz {
    width: 407px;
    background: #F097E9;
    border-radius: 40px;
    padding: 18px 36px 10px 36px;
  }
  .homecomers_wuz p{
    font-size: 16px;
    line-height: 19.2px;
    color: #fff;
  }
  .homecomers_wuz button{
    font-weight: 600;
    font-size: 16px;
    line-height: 19.5px;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 16px 0px;
    display: block;
    border-radius: 120px;
    margin-top: 20px;
    border: none;
  }
  .homecomers_wuz:hover button {
    background: #373539;
    color: #fff;
  }

  .homecomers_items {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-top: 16px;
  }
  .homecomers_item img {
    width: 100%;
    border-radius: 40px;
  }
  .homecomers_item__name h3{
    color: #474747;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    margin-top: 5px;
  }
  .homecomers_item__desc {
    text-align: center;
    color: #A8A8A8;
    font-size: 14px;
    line-height: 14px;
  }

  .reviews {
    margin-top: 120px;
  }
  .reviews_out {
    margin-top: 50px;
  }
  .review_item__img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 100px;
  }
  .review_item {
    background: #F6F2FC;
    padding: 24px 32px 32px 32px;
    border-radius: 40px;
    height: auto;
  }
  .review_item__who {
    display: flex;
  }
  .review_item__name {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    margin-left: 25px;
  }
  .review_item__name h3 {
    font-size: 20px;
    line-height: 23px;
    color: #8D8D8D;
  }
  .review_item__name p {
    font-size: 14px;
    line-height: 14px;
    color: #A8A8A8;
  }
  .review_item__desc {
    margin-top: 15px;
  }
  .review_item__desc p {
    font-size: 16px;
    line-height: 19.2px;
    color: #373539;
  }
  .review_item__read {
    margin-top: 15px;
    display: block;
    width: 100%;
  }
  .review_item__read p {
    font-size: 16px;
    border-bottom: 1px solid #373539;
    cursor: pointer;
    line-height: 19.2px;
    display: inline-block;
  }
  .review_item__read p:hover {
    opacity: 0.8;
    border: none;
  }
  .reviews_btn {
    text-align: center;
    display: block;
    width: 100%;
  }
  .reviews_btn__inner {
    display: inline-block;
  }
  .reviews_btn a{
    display: flex;
    justify-content: center;
    border: 2px solid #7196E2;
    border-radius: 120px;
    padding: 10px 20px;
    gap: 5px;
    color: #7196E2;
    margin-top: 40px;
    font-weight: 600;
  }
  .reviews_btn a:hover {
    background: #7196E2;
    color: #fff;
  }
  .reviews_btn a:hover path{
    fill: #fff;
  }
  .smi {
    margin-top: 120px;
    display: block;
    width: 100%;
  }
  .smi_row {
    display: flex;
    margin-top: 50px;
    gap: 32px;
  }
  .smi_big__video {
    width: 843px;
    cursor: pointer;
  }
  .smi_big__video img {
    width: 100%;
    transition: all 0.3s ease;
  }
  .smi_big:hover .smi_big__video img {
    transform: translateY(-20px);
  }
  .smi_big__desc p {
    color: #373539;
    font-size: 20px;
    line-height: 23px;
    margin-top: 10px;
  }
  .smi_small__item {
    width: 407px;
    cursor: pointer;
  }
  .smi_small__item:nth-child(1) {
    margin-bottom: 20px;
  }
  .smi_small__item img {
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 32px;
    height: 200px;
    object-fit: cover;
  }
  .smi_small__item:hover .smi_small__video img {
    /* Сдвигаем изображение вверх на 20px */
    transform: translateY(-20px);
  }
  .smi_small__desc p{
    font-size: 16px;
    line-height: 19.2px;
    color: #373539;
    margin-top: 5px;
  }
  .smi_button {
    text-align: center;
    display: block;
    width: 100%;
  }
  .smi_button__inner {
    display: inline-block;
  }
  .smi_button a{
    display: flex;
    justify-content: center;
    border: 2px solid #7196E2;
    border-radius: 120px;
    padding: 10px 20px;
    gap: 5px;
    color: #7196E2;
    margin-top: 40px;
  }
  .smi_button a:hover {
    background: #7196E2;
    color: #fff;
  }
  .tryform {
    margin-top: 120px;
  }
  .tryform_inner {
    display: flex;
    background: #B4A0F9;
    border-radius: 64px;
    padding: 40px 64px 48px 64px;
    justify-content: space-between;
  }
  .tryform_title h2 {
    font-size: 64px;
    line-height: 70px;
    font-family: 'Antropos';
    color: #fff;
  }
  .tryform_group {
    display: flex;
    gap: 32px;
  }
  .tryform_group:nth-child(1) {
    margin-bottom: 16px;
  }
  .tryform_group input{
    width: 100%;
    padding: 15px 24px 15px 24px;
    border-radius: 36px;
    border: none;
    font-size: 16px;
    line-height: 19.2px;
  }
  .tryform_btn button{
    background: #EBF6A1;
    font-weight: 600;
    line-height: 19.5px;
    border-radius: 120px;
    padding: 15px 24px 15px 24px;
    border: none;
  }
  .tryform_btn button:hover{
    background: #373539;
    color: #fff;
  }
  .tryform_group:nth-child(3) {
    margin-top: 32px;
    gap: 16px;
  }
  .tryform_privacy {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
  }
  .tryform_privacy {
    font-size: 14px;
    line-height: 14px;
    color: #F6F2FC;
  }
  .steps {
    margin-top: 120px;
    display: block;
    width: 100%;
  }
  .steps_inner {
    margin-top: 50px;
  }
  .steps_items {
    display: flex;
    gap: 32px;
    justify-content: space-between;
  }
  .steps_item {
    width: 100%;
    background: #B4A0F9;
    color: #fff;
    font-size: 20px;
    line-height: 23px;
    padding-left: 32px;
    border-radius: 32px;
  }
  .steps_item:nth-child(1) {
    background: url(../assets/steps/1.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    transition: all 0.3s ease;
  }
  .steps_item:nth-child(1):hover {
    transform: translateY(-10px);
  }
  .steps_item:nth-child(2) {
    background: url(../assets/steps/2.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    transition: all 0.3s ease;
  }
  .steps_item:nth-child(2):hover {
    transform: translateY(-10px);
  }
  .steps_item:nth-child(3) {
    background: url(../assets/steps/3.png) no-repeat;
    background-size: 100% 100%;
    color: #9AAC2B;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    transition: all 0.3s ease;
  }
  .steps_item:nth-child(3):hover {
    transform: translateY(-10px);
  }
  .steps_item:nth-child(4) {
    padding: 24px 32px 18px 40px;
  }
  .steps_item:nth-child(4) button{
    background: #EBF6A1;
    font-weight: 600;
    line-height: 19.5px;
    border-radius: 120px;
    padding: 15px 24px 15px 24px;
    border: none;
    margin-top: 16px;
  }
  .steps_item:nth-child(4) button:hover{
    background: #373539;
    color: #fff;
  }

  .documents {
    margin-top: 120px;
    display: block;
    width: 100%;
  }
  .documents_row {
    margin-top: 50px;
    display: flex;
    gap: 32px;
  }
  .documents_links {
    display: block;
    width: 516px;
  }
  .documents_link a{
    font-size: 20px;
    line-height: 23px;
    background: #F6F2FC;
    padding: 0px 30px 0px 40px;
    margin-bottom: 9px;
    border-radius: 64px;
    width: 100%;
    display: block;
  }
  .documents_link a:hover {
    background: #E1D9EC;
  }
  .documents_link a:hover .documents_link__inner svg path{
    fill: #000;
  }
  .documents_link__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    height: 80px;
  }
  .documents_link__inner p {
    width: 90%;
  }
  .documents_link a img {
    width: 26px;
    height: 26px;
  }
  .documents_slider {
    width: 734px;
    background: url(../assets/document.png) no-repeat;
    background-size: 100% 100%;
    padding: 30px;
  }
  .documents_slider__inner {
    width: 464px;
  }
  .documents_slider__inner img{
    width: 100%;
  }

  .faq {
    margin-top: 120px;
    display: block;
    width: 100%;
  }
  .faq_row {
    display: flex;
    gap: 32px;
  }
  .faq .title {
    text-align: left;
    width: 407px;
  }
  .accardion {
    width: 843px;
  }
  .custom-accordion h3 {
    background: #F6F2FC;
    border-radius: 42px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 20px 32px;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 23px;
    position: relative;
    z-index: 2;
 }
 .custom-accordion h3:hover {
    background: #E1D9EC;
 }
 .accordion-content {
    margin-bottom: 20px;
    padding: 40px;
    display: none; /* Initially hide the content */
    background: #F6F2FC;
    margin-top: -40px;
    border-radius: 0px 0px 42px 42px;
    z-index: 1;
    position: relative;
 }
 .accordion-content button {
    background: linear-gradient(60deg, #9796F0, #FBC7D4);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.5px;
    padding: 15px;
    border-radius: 120px;
    border: none;
    transition: box-shadow 0.5s ease;
 }
 .accordion-content button:hover{
    box-shadow: 0 0 15px #9796F0, 0 0 15px #FBC7D4;
 }
 .active .accordion-content {
    display: block; /* Show content when active */
 }

 .questions {
  margin-top: 120px;
  background: #B4A0F9;
  display: block;
  width: 100%;
 }
 .questions_inner {
  padding-top: 32px;
  padding-bottom: 32px;
 }
 .questions_title h1 {
  font-size: 64px;
  line-height: 70px;
  font-family: 'Antropos';
  color: #fff;
 }
 .questions_btns {
  display: flex;
  gap: 32px;
  margin-top: 32px;
 }
 .questions_btns a {
  background: #fff;
  font-weight: 600;
  line-height: 19.5px;
  padding: 11px 45px;
  border-radius: 120px;
 }
 .questions_btns a:hover {
  background: #373539;
  color: #fff;
  opacity: 1;
 }
 footer {
  background: #F6F2FC;
 }
 .footer_inner {
  padding-top: 40px;
  padding-bottom: 52px;
 }
 .footer_items {
  display: flex;
  justify-content: space-between;
 }
 .footer_logo {
  display: flex;
 }
 .footer_logo img{
  width: 100px;
  height: 100px;
 }
 .footer_logo p{
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  margin-left: 25px;
  font-size: 14px;
  line-height: 14px;
  color: #8D8D8D;
 }
 .footer_policy {
  margin-top: 40px;
 }
 .footer_policy ul li {
  margin-bottom: 12px;
 }
 .footer_policy ul li a {
  font-size: 14px;
  line-height: 14px;
  color: #8D8D8D;
  border-bottom: 1px solid #8D8D8D;
 }
 .footer_policy ul li a:hover {
  border: none;
 }
 .footer_nav p {
  font-size: 20px;
  line-height: 23px;
  color: #373539;
 }
 .footer_nav ul li {
  margin-top: 16px;
  display: flex;
 }
 .footer_nav ul li a {
  font-size: 16px;
  line-height: 19.2px;
  color: #8D8D8D;
 }
 .footer_nav ul li img {
  margin-right: 15px;
 }
 .footer_nav ul li p {
  font-size: 16px;
  line-height: 19.2px;
  color: #8D8D8D;
 }
 .footer_map iframe {
  border-radius: 16px;
 }

 .modalic, .video1, .video2, .video3 {
  position: fixed; /* Stay in place */
  z-index: 99999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  display: flex;
  justify-content: center;
  align-items: center;
}
.callback_inner {
  width: 400px;
  background: #B4A0F9;
  border-radius: 30px;
  padding: 32px;
}
.callvideo_inner {
    width: 560px;
}
.callback_title h1 {
  font-size: 40px;
  line-height: 49px;
  text-align: center;
  color: #fff;
  font-family: 'Antropos';
}
.callback_inner form {
  margin-top: 32px;
}
.callback_group {
  width: 100%;
  display: block;
}
.callback_group input{
  width: 100%;
  border-radius: 36px;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 19.2px;
  border: none;
}
.callback_group input:nth-child(1) {
  margin-bottom: 12px;
}
.callback_btn {
  margin-top: 32px;
}
.callback_btn button{
  background: #EBF6A1;
  color: #373539;
  font-size: 16px;
  font-weight: 600;
  border: none;
  width: 100%;
  padding: 16px 0px;
  border-radius: 36px;
}
.callback_privacy {
  margin-top: 12px;
}
.callback_privacy p {
  color: #F6F2FC;
  font-size: 16px;
  text-align: center;
  line-height: 14.4px;
}

.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: fixed; /* Используем fixed вместо absolute */
  top: 0;
  left: 0;
  background-color: #fff; /* Фон, который скрывает содержимое страницы */
  z-index: 1000; /* Убедитесь, что загрузчик находится поверх всех других элементов */
}

.loader-wrapper .logo {
  position: absolute;
  z-index: 1010; /* Логотип должен быть поверх анимации загрузки */
  font-size: 2em;
  color: #333;
}
.loader-wrapper .logo img{
  width: 100px;
  height: 100px;
}

.loader {
  border: 16px solid #fff;
  border-top: 16px solid #9796F0;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  animation: spin 2s linear infinite;
  z-index: 1005; /* Убедитесь, что анимация находится ниже логотипа */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.nav_mobile {
  display: none;
}
.mobile_counter_desc {
  display: none;
}
.pc_counter_desc {
  display: block;
}
.whom_items__mobile {
  display: none;
}
.princip_right__mobile {
  display: none;
}
#successModal {
  position: fixed; /* Фиксированное позиционирование по отношению к окну просмотра */
  left: 0;
  top: 0;
  width: 100%; /* Полная ширина */
  height: 100%; /* Полная высота */
  background-color: rgba(0, 0, 0, 0.5); /* Черный фон с непрозрачностью */
  display: flex;
  justify-content: center; /* Центрирование содержимого по горизонтали */
  align-items: center; /* Центрирование содержимого по вертикали */
  z-index: 99999;
}

.modalContent {
  background-color: #fefefe;
  padding: 20px;
  border-radius: 5px; /* Скругление углов */
  text-align: center; /* Центрирование текста */
}

.cook_win {
	display: none; 
	position: fixed; 
	bottom: 0; 
	right: 0; 
	width: 25%; 
	background-color: white; 
	border: 1px solid #ccc; 
	border-radius: 8px;
	padding: 15px; box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 99999;
}
@media (max-width:1200px) {
	.cook_win {
		width: 100%; 
	}
}
.cook_win p {
	text-align: center;
	margin-bottom: 15px;
}
.cook_win a {
	color: #ef97e9;
}
.cook_win button{
    width: 100%;
    border-radius: 32px;
    border: none;
    padding: 10px;
    background: #b4a0f9;
    color: #fff;
    font-weight: 600;
}
/* Мобилка */

@media (max-width: 1260px) {

  .container {
    width: 82.06%;
  }
  .top_nav, .nav_inner{
    display: none;
  }
  .nav_mobile {
    display: block;
  }
  .nav_mobile__inner {
    display: flex;
    justify-content: space-between;
  }
  .mobile_logo img {
    width: 64px;
    height: 64px;
  }
  .nav_mobile__right {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .nav_mobile__right .nav_btn button{
    font-size: 16px;
    padding: 11px 23px;
  }
  #menuIcon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Выравнивание полосок по правой стороне */
  }
  
  #menuIcon div {
    width: 30px;
    height: 3px;
    background-color: #F097E9;
    border-radius: 120px;
  }
  
  /* Индивидуальные цвета для каждой из полосок */
  #menuIcon div:nth-child(1) {
    background-color: #F097E9;
    margin-bottom: 6px;
  }
  #menuIcon div:nth-child(2) {
    background-color: #B4A0F9;
    margin-bottom: 6px;
  }
  #menuIcon div:nth-child(3) {background-color: #AFC9FF;} /* Исправил цвет третьей полоски согласно предыдущему сообщению */
  
  /* Классы для анимации в крестик */
  .change div:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
    transform: rotate(-45deg) translate(-5px, 6px);
    position: relative;
    z-index: 11;
  }

  .change div:nth-child(2) {opacity: 0;}

  .change div:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
    position: relative;
    z-index: 10;
  }

 #mobileMenu {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  background: #fff;
  z-index: 9;
  top: 65px;
  padding-bottom: 26px;
  z-index: 99999;
 }

  #mobileMenu ul {
    list-style: none;
    padding: 40px 34px 0 44px;
  }
  #mobileMenu ul li {
    margin-bottom: 26px;
  }
  #mobileMenu ul li a {
    font-size: 16px;
    color: #000;
    line-height: 19.2px;
  }
  .mobile_menu__contacts {
    text-align: center;
    margin-top: 40px;
  }
  .mobile_menu__contacts .telmob img {
    margin-right: 10px;
  }
  .mobile_menu__contacts .telmob {
    margin-bottom: 20px;
  }

  .slider .container {
    width: 100%;
  }
  .padding-bottom {
    padding-top: 60px;
  }
  .slider_title h2 {
    font-size: 16px;
    line-height: 19.71px;
  }
  .slider_title h1 {
    font-size: 26px;
    line-height: 32px;
  }
  .second_slide .slider_other__info___title h2 {
    font-size: 36px;
    line-height: 44.35px;
  }
  .slider_title h3 {
    font-size: 20px;
    line-height: 24.64px;
    padding: 2px 10px;
    padding-right: 30px;
    margin-top: 0;
  }
  .second_slide .slider_other__info___subtitle h3 {
    font-size: 24px;
    line-height: 29.57px;
  }
  .second_slide .slider_other__info {
    padding-top: 25px;
    padding-left: 20px;
  }
  .second_slide .slider_other__info___subtitle h3 {
    padding: 4px 12px 4px 12px;
  }
  .second_slide .slider_other__info___desc {
    margin-top: 20px;
  }
  .mobile_other__desc {
    display: none;
  }
  .second_slide .slider_btns {
    padding-left: 0;
    padding-bottom: 0;
    gap: 10px;
    margin-top: 120px;
    justify-content: center;
  }
  .swiper-wrapper .second_slide:nth-child(3) .slider_btns{
    margin-top: 0;
  }
  .swiper-wrapper .second_slide:nth-child(6) .slider_btns{
    margin-top: 20px;
  }
  .third_slide .slider_btns {
    margin-top: 20px;
  }
  .second_slide .slider_other__info___desc li {
    width: 90%;
  }
  .second_slide .slider_btns button:nth-child(2) {
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    padding: 10px 10px;
  }
  .slider_title__inner img {
    width: 58px;
    height: 62px;
    bottom: -1px;
    right: -7px;
  }
  .slider_btns {
    padding-bottom: 50px;
  }
  .slider_btns button:nth-child(1) {
    font-size: 14px;
    line-height: 14.63px;
    padding: 10px 10px;
  }
  .slider_btns button:nth-child(2) {
    font-size: 14px;
    line-height: 14.63px;
    padding: 10px 10px;
  }
  .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
  }
  .swiper-pagination-bullet-active {
    width: 22px;
  }
  .slider_inner {
    background-size: 155% 100%!important;
    background-position: center center!important;
    height: 320px;
  }
  .second_slide .slider_inner {
    background-size: 140% 100%!important;
    background-position: 80%!important;
  }
  .third_slide .slider_other__info___desc p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .counter_items {
    flex-wrap: wrap;
  }
  .counter_item__num h2 {
    font-size: 32px;
    line-height: 39px;
  }
  .counter_item__desc p {
    font-size: 16px;
    line-height: 14.4px;
  }
  .counter_item {
    width: 50%;
    border: 1px solid #F1F1F1;
  }
  .counter_item:nth-child(5){
    width: 100%;
  }
  .mobile_counter_desc {
    display: block;
  }
  .pc_counter_desc {
    display: none;
  }
  .whywe {
    margin-top: 64px;
  }
  .whywe_row {
    display: block;
  }
  .whywe_left {
    width: 100%;
    margin-bottom: 10px;
  }
  .whywe_item {
    width: 100%;
    margin-bottom: 10px;
  }
  .whywe_right {
    width: 100%;
  }
  .whywe_left h2 {
    padding: 16px;
  }
  .whywe_right p {
    padding: 16px;
    font-size: 16px;
    line-height: 14.4px;
  }
  .whywe_item p {
    padding: 24px 16px 24px 40px;
    font-size: 16px;
    line-height: 14.4px;
  }
  .title h1 {
    font-size: 40px;
    line-height: 49.27px;
  }
  .whom {
    margin-top: 64px;
  }
  .whom_items {
    margin-top: 32px;
  }
  .whom_items__pc {
    display: none;
  }
  .whom_items__mobile {
    display: block;
  }
  .princip {
    margin-top: 64px;
  }
  .princip_initems {
    margin-top: 32px;
  }
  .princip_row {
    display: block;
  }
  .princip_left {
    display: block;
  }
  .princip_left {
    width: 100%;
  }
  .princip_left__info___inner {
    padding: 0;
  }
  .princip_left__info {
    padding: 16px;
    text-align: center;
  }
  .princip_left__title h2 {
    font-size: 24px;
    line-height: 29.57px;
    margin-bottom: 10px;
  }
  .princip_left__desc p {
    font-size: 16px;
    line-height: 14.4px;
  }
  .princip_left__img img {
    padding: 16px;
    padding-top: 0;
  }
  .princip_right__pc {
    display: none;
  }
  .princip_item {
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
  }
  .princip_item__title h2 {
    font-size: 24px;
    line-height: 29.57px;
    margin-bottom: 10px;
  }
  .princip_item__desc p {
    font-size: 16px;
    line-height: 14.4px;
  }
  .princip_right__mobile {
    display: block;
  }
  .princip_right {
    width: 100%;
    text-align: center;
    padding: 20px;
  }
  .princip_right__title h2 {
    font-size: 24px;
    line-height: 29.57px;
    margin-bottom: 10px;
  }
  .princip_right__desc p {
    font-size: 16px;
    line-height: 19px;
  }
  .princip_right__btn a {
    font-size: 16px;
    line-height: 14.63px;
  }
  .tableequal {
    margin-top: 64px;
  }
  .tableequal__inner {
    margin-top: 32px;
    overflow: auto;
  }
  .comparison-table {
    border-spacing: 16px 0;
  }
  .comparison-table th {
    padding: 8px 40px;
    font-size: 16px;
    line-height: 14.63px;
    border-radius: 16px;
  }
  .comparison-table td {
    font-size: 16px;
    padding: 8px 6px;
    line-height: 14.63px;
    height: 52px;
  }
  .comparison-table tr img{
    width: 20px;
    height: 14px;
  }
  .homecomers {
    margin-top: 64px;
  }
  .homecomers_row {
    display: block;
  }
  .homecomers_ege {
    width: 100%;
    padding: 24px;
    margin-bottom: 10px;
  }
  .homecomers_ege h2 {
    text-align: center;
  }
  .homecomers_ege h2 img {
    display: none;
  }
  .homecomers_wuz {
    width: 100%;
  }
  .homecomers_wuz p {
    font-size: 16px;
    line-height: 19.2px;
  }
  .homecomers_item__name h3 {
    font-size: 16px;
    line-height: 19.2px;
  }
  .homecomers_item__desc {
    font-size: 16px;
    line-height: 14.4px;
  }
  .reviews {
    margin-top: 64px;
  }
  .reviews_out {
    margin-top: 32px;
  }
  .reviews_btn a {
    margin-top: 20px;
    font-size: 16px;
    padding: 11px 13px;
    align-items: center;
  }

  .smi {
    margin-top: 64px;
  }
  .smi_row {
    display: block;
  }
  .smi_big {
    margin-bottom: 20px;
  }
  .smi_big__video {
    width: 100%;
  }
  .smi_big__desc p {
    font-size: 16px;
    line-height: 14.4px;
    margin-top: 5px;
  }
  .smi_small__item {
    width: 100%;
  }
  .smi_small__desc p  {
    font-size: 16px;
    line-height: 14.4px;
  }
  .smi_button a {
    margin-top: 20px;
    font-size: 16px;
    padding: 11px 13px;
    align-items: center;
  }
  .tryform {
    margin-top: 64px;
  }
  .tryform_inner {
    display: block;
    padding: 20px;
    border-radius: 30px;
  }
  .tryform_title h2 {
    font-size: 40px;
    text-align: center;
    line-height: 49px;
    margin-bottom: 30px;
  }
  .tryform_group {
    display: block;
  }
  .tryform_group:nth-child(1) {
    margin-bottom: 0;
  }
  .tryform_group input {
    margin-bottom: 10px;
  }
  .tryform_group:nth-child(3) {
    margin-top: 30px;
  }
  .tryform_btn button {
    width: 100%;
    font-size: 16px;
    line-height: 14.63px;
  }
  .tryform_privacy {
    text-align: center;
    font-size: 16px;
    line-height: 14.63px;
    width: 100%;
    display: block;
    margin-top: 10px;
  }
  .steps {
    margin-top: 64px;
  }
  .steps_inner {
    margin-top: 32px;
  }
  .steps_items {
    display: block;
  }
  .steps_item {
    height: 130px;
    margin-bottom: 16px;
  }
  .documents {
    margin-top: 64px;
  }
  .documents_row {
    margin-top: 32px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
  .documents_link__inner {
    height: 54px;
  }
  .documents_link__inner p{
    font-size: 14px;
    line-height: 14px;
  }
  .documents_link a {
    font-size: 14px;
    line-height: 14px;
    padding: 0px 12px 0px 20px;
  }
  .documents_slider {
    width: 100%;
  }
  .documents_slider__inner {
    width: 100%;
  }
  .faq {
    margin-top: 64px;
  }
  .faq_row {
    display: block;
  }
  .faq .title {
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
  }
  .accardion {
    width: 100%;
  }
  .custom-accordion h3 {
    font-size: 16px;
    line-height: 19.2px;
    padding: 15px 20px 15px 32px;
  }
  .questions {
     margin-top: 64px;
  }
  .questions_title h1 {
    font-size: 24px;
    text-align: center;
    line-height: 29.57px;
  }
  .questions_inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .questions_btns {
    gap: 20px;
  }
  .questions_btns a {
    font-size: 16px;
    line-height: 14.63px;
    padding: 14px 34px;
  }
  .footer_inner {
    padding-top: 20px;
    padding-bottom: 170px;
  }
  .footer_items {
    display: block;
  }
  .footer_logo p {
    font-size: 16px;
    margin-left: 5px;
  }
  .footer_logo img {
    width: 64px;
    height: 64px;
  }
  .footer_policy {
    text-align: center;
    margin-top: 20px;
  }
  .footer_policy ul li a {
    font-size: 16px;
  }
  .footer_item {
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
  }
  .footer_nav ul li {
    margin-top: 10px;
    justify-content: center;
  }
  .footer_nav p {
    font-size: 16px;
    line-height: 23px;
  }
  .footer_nav ul li a {
    font-size: 16px;
    line-height: 14px;
  }
  .footer_nav ul li p {
    font-size: 16px;
  }
  .callback_inner {
    width: 340px;
  }
  .modalic {
      top: 0px;
  }
  .callback_title h1 {
    font-size: 30px;
    line-height: 36px;
  }
  .arrow_reviews {
    display: none;
  }
  .callvideo_inner {
    width: 90%;
  }
} 