*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
body{
    font-family: 'Mulish', sans-serif;
    color: #535353;
    font-size: 16px; 
    padding-top: 90px;
}
a{
    text-decoration: none;
}
img {
    max-width: 100%;
}

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

.form form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.form .policy {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 300;
    margin-top: 10px;
}

.form .policy a {
    color: #fff;
    text-decoration: underline;
}

.form .input {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    background-color: transparent;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
    height: 52px;
    width: 250px;
    padding: 0 15px;
    font-family: 'Mulish', sans-serif;
}
.form textarea {
    width: 100%;
    border: 1px solid rgb(212, 212, 212);
    height: 85px;
    font-size: 16px;
    font-weight: 400;
    padding: 15px;
    font-family: 'Mulish', sans-serif;
}
.btn {
    color: #ffffff;
    border-radius: 0px;
    font-size: 16px;
    font-family: Mulish;
    cursor: pointer;
    background-color: #4e6af0;
    transition: 0.3s ease all;
    border: none;
    width: 220px;
    font-weight: 700;
    height: 52px;
}

.btn:hover {
    background: #3250e1;
}

.title {
    text-align: center;
    color: #090627;
    font-size: 38px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 700;
    margin-bottom: 20px;
}

.descrip {
    color: #535353;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    text-align: center;
    max-width: 630px;
    margin: 0 auto 30px;
}

 
@keyframes rotater {
    from { 
        transform: rotate(0deg);
        animation-timing-function: 0;
    }
    to { 
        transform: rotate(360deg);
        
    }
}
 


.overlay {
   
   /* Скрываем подложку  */
   opacity: 0;
   visibility: hidden;
   
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, .5);
   z-index: 20;
   transition: .3s all;
}


/* Стили для модальных окон */

.modal {
   
   /* Скрываем окна  */
   opacity: 0;
   visibility: hidden;
   
   
   /*  Установаем ширину окна  */
   width: 100%;
   max-width: 500px;
   
   /*  Центрируем и задаем z-index */
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 30; /* Должен быть выше чем у подложки*/
   
   /*  Побочные стили   */
   box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2); 
   text-align: center;
   padding: 30px;
   border-radius: 3px;
   background-color: #fff;
   transition: 0.3s all;
}


/* Стили для активных классов подложки и окна */

.modal.active,
.overlay.active{
   opacity: 1;
   visibility: visible;
}

.modal__cross {
    position: absolute;
    width: 20px;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.modal .modal_body .name {
    font-size: 32px;
    color: #090627;
    font-weight: 600;
    margin-bottom: 20px;
}

.modal .modal_body .desc {
    color: #535353;
    font-size: 16px;
    margin-bottom: 20px;
}

.modal .modal_body form {flex-direction: column;}

.modal .modal_body form input,.modal .modal_body form textarea {
    width: 100%;
    border: 1px solid #d4d4d4;
    color: #090627;
}

.modal .modal_body form .btn {width: 100%;}

.modal .modal_body .form .policy {
    color: #000;
}

.modal .modal_body .form .policy a {
    color: rgb(50, 80, 225);
}

.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgb(78, 106, 240);
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    left: 14%;
    top: 60%;
}

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

.swiper-button-prev svg {
    width: 10px;
    transform: rotate(180deg);
}

.swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgb(78, 106, 240);
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    right: 14%;
    top: 60%;
}

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

.swiper-button-next svg {
    width: 10px;
}
.btn-white {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    border-color: #ffffff;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    width: 200px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-white:hover {
    background-color: #4e6af0;
    color: #fff;
    border-color: #4e6af0;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 0.5;
    border: 1px solid #fff;
    background: transparent !important;
    box-sizing: border-box;
}

.swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: #4e6af0 !important;
    border-radius: 100px;
    border: 1px solid #4e6af0 !important;
    opacity: 1;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #E2E7FF;
    padding: 12px;
    text-align: left;
    color: #090627;
}

th {
    background-color: #090627;
    color: white;
}

tr.subheading td {
    background-color: #B6C3FF;
    font-weight: bold;
}
td a {
    color: #090627;
}
/* HEADER */
.bread {
    padding: 10px 0 30px;
}

.bread ol {
    display: flex;
    list-style: none;
    gap: 10px;
}

.bread ol li a {
    transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    color: #535353;
    font-weight: 400;
}

.bread ol li a:hover {
    color: #4e6af0;
}


header {
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    z-index: 11;
}

header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}

header .wrap .logo {
    width: 100px;
}

header .wrap .phone a {
    color: #4e6af0;
    font-size: 15px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    border-color: #4e6af0;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .wrap .phone a:hover {
    background: #4e6af0;
    color: #fff;
}
header .burger-js {
    display: none;
    gap: 4px;
    flex-direction: column;
    width: 35px;
    height: 35px;
    background: #4e6af0;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

header .burger-js span {
    width: 20px;
    height: 2px;
    background: #fff;
}
header .wrap .menu ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
}
header .wrap .menu ul li.sub-menu {
    position: relative;
}

header .wrap .menu ul li.sub-menu .dropmenu {
    display: none;
    position: absolute;
}

header .wrap .menu ul li.sub-menu:hover .dropdown {
    display: flex;
}

header .wrap .menu ul li a {
    color: #535353;
    font-size: 15px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 500;
    border-radius: 30px 30px 30px 30px;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

header .wrap .menu ul li.sub-menu:hover .dropmenu {
    display: flex;
    background: #fff; 
    -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
    width: 200px;
}

header .wrap .menu ul li.sub-menu .dropmenu ul {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

header .wrap .menu ul li.sub-menu .dropmenu ul li a {
    font-size: 14px;
    color: #535353;
    transition: all 0.3s;
}

header .wrap .menu ul li.sub-menu .dropmenu ul li a:hover {
    color: #4e6af0;
}

header .wrap .menu ul li.sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0;
    position: absolute;
    top: 50%;
    right: -10px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-color: transparent;
    border-top-color: inherit;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

header .wrap .menu ul li.sub-menu:hover:after {transform: rotate(180deg);}



/* HERO */

section.hero .wrapper {
    background: url(/assets/images/tild6232-3563-4264-a334-303835356539__noroot.png);
    border-radius: 0px 0px 0px 0px;
    background-color: #090627;
    background-position: center center;
    background-size: unset;
    background-repeat: no-repeat;
    background-size: cover;
}

section.hero .wrapper .wrap {
   display: flex;
    gap: 50px;
    padding: 30px;
    align-items: center;
    min-height: 300px;
}

section.hero .wrapper .main-title {
    color: #ffffff;
    font-size: 52px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 800;
    margin-bottom: 20px;
}

section.hero .wrapper  .desc {
    color: #ffffff;
    font-size: 17px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 29px;
}


section.hero .wrapper .wrap .image img {
    max-width: 375px;
}
section.hero .wrapper .wrap .data {
    width: 50%;
}

section.hero .wrapper .wrap .image {
    width: calc(50% - 50px);
    display: flex;
}

section.hero .wrapper .wrap .image img {
    max-width: 100%;
    object-fit: cover;
}
section.hero {
    margin-bottom: 50px;
}

section.hero .advantages {
    display: flex;
    gap: 20px;
    padding: 0 30px 30px;
}

section.hero .advantages .item {background: #fff;width: calc(100%/3 - 10px);padding: 19px;}

section.hero .advantages .item .icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

section.hero .advantages .item .icon .image {
    width: 50px;
}

section.hero .advantages .item .icon .name {
    width: calc(100% - 65px);
    color: #090627;
    font-size: 20px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
}

section.hero .advantages .item .text {
    color: #535353;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 500;
}


/* TECHNICAL */


section.technical {
    padding: 50px 0;
}

section.technical.bg {
    background: #e2e7ff;
}

section.technical .wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

section.technical .wrap .item {
    width: calc(100%/3 - 20px);
}

section.technical .wrap .item .data {
    margin-top: 10px;
    display: flex;
    border-radius: 0px 0px 0px 0px;
    background-color: #e2e7ff;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

section.technical .wrap .item .data .price {
    width: 100px;
    text-align: right;
    padding-right: 15px;
    color: #090627;
    font-size: 18px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
}

section.technical .wrap .item .data .name {
    width: calc(100% - 100px);
    border-right: 1px solid #fff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 15px;
    color: #090627;
    font-size: 20px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.2;
    font-weight: 600;
}
section.technical .wrap .item .data .name.full {
    width: 100%;
    border: 0;
    justify-content: center;
    text-align: center;
}
section.technical.bg .wrap .item .data .name.full {
        background-color: #ccd5ff;
}
section.technical .wrap .item:hover .data {
    background: #b6c3ff;
}


/* FORM-SALE */


section.form-sale {
    margin: 50px 0;
}

section.form-sale .wrapper {
    background: url(/assets/images/tild6232-3563-4264-a334-303835356539__noroot.png);
    border-radius: 0px 0px 0px 0px;
    background-color: #090627;
    background-position: center center;
    background-size: unset;
    background-repeat: no-repeat;
    background-size: cover;
}

section.form-sale .wrapper .wrap {
    padding-right: 53%;
    background-image: url(/assets/images/sale-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    padding-left: 50px;
}

section.form-sale .wrapper .wrap .name {
    color: #ffffff;
    font-size: 38px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 40px;
}

section.form-sale .wrapper .wrap .desc p {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 30px;
}

section.form-sale .wrapper .wrap .desc {
}

section.form-sale .wrapper .wrap .form form {display: flex;flex-direction: column;}

section.form-sale .wrapper .wrap .form form .input,section.form-sale .wrapper .wrap .form form .btn {
    width: 100%;
}

section.form-sale .wrapper .wrap .form {
    margin-bottom: 50px;
}


/* WHY */

section.why {
    padding: 50px 0;
}

section.why .wrap {
    display: flex;
    gap: 30px;
    align-items: center;
}

section.why .wrap .col {
    width: calc(100%/3 - 15px);
}

section.why .wrap .item {
    margin-bottom: 40px;
}

section.why .wrap .item .top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

section.why .wrap .item .top .icon {
    width: 40px;
}

section.why .wrap .item .top .name {
    width: calc(100% - 55px);
    color: #090627;
    font-size: 20px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
}

section.why .wrap .item .text {
    color: #535353;
    font-size: 15px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 500;
}

.image-rotate {}

section.why .wrap .image-rotate {
        animation: rotater 5s infinite linear;
}


/* ETAPS */


section.etaps {
    padding: 50px 0;
    background: #e2e7ff;
}

section.etaps .wrap {
    display: flex; 
}
section.etaps .steps {
    width: 50%; /* % ширины контейнера */
    padding-right: 20px;
    box-sizing: border-box;
}

section.etaps .step {
    margin-bottom: 10px;
    padding: 20px;
    background-color: #FFFFFF; /* Фон этапов белый */
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
}

section.etaps .step:hover {
    background-color: #CCD5FF;
}

section.etaps .popup {
    display: none;
    position: absolute;
    left: 90%; /* Плашка наезжает на 10% этапа */
    top: 0; /* Выровнено по верху */
    width: 600px; /* Установленная ширина подложки */
    margin-left: 10px;
    padding: 20px; /* Увеличенные отступы */
    background-color: #FFFFFF;
    border: 0px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1; /* Повышаем z-index, чтобы плашка была выше других элементов */
}

section.etaps .step:hover .popup {
    display: block;
}

section.etaps .popup h {
    font-size: 20px; /* Шрифт заголовка */
    margin-bottom: 14px; /* Отступ после текста */
}

section.etaps .popup p {
    font-size: 16px; /* Шрифт текста */
    margin-bottom: 20px; /* Отступ после текста */
}

section.etaps .popup button {
    padding: 12px 16px;
    font-size: 15px;
    color: #4E6AF0; /* Фиолетовый текст */
    border: 1px solid #4E6AF0; /* Фиолетовая обводка */
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

section.etaps .popup button:hover {
    background-color: #4E6AF0;
    color: #FFFFFF;
}
section.etaps .wrap .image {
    width: 50%; /* % ширины контейнера */
    height: 300px;
    display: flex;
}
section.etaps .wrap .image img {
    object-fit: cover;
    width: 100%;
}
/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    section.etaps .steps,section.etaps   .image {
        width: 100%; /* Этапы и изображение занимают всю ширину */
    }
    
    section.etaps .step {
        position: relative;
        font-size: 16px; /* Немного уменьшаем шрифт для мобильных */
    }
    
    section.etaps .popup {
        position: static; /* Плашки открываются под этапами */
        margin-top: 12px;
        left: auto;
        top: auto;
        width: auto;
        margin-left: 0;
        box-shadow: none;
    }
}



/* MASTERS */


section.masters {
    padding: 50px 0;
    position: relative;
}

section.masters .master-js {
    overflow: hidden;
    /* position: relative; */
}

section.masters  .item {
    background: rgb(226, 231, 255);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 30px;
    min-height: 510px;
}

section.masters  .item .name {
    font-size: 20px;
    line-height: 1.35;
    color: #090627;
    padding: 15px 60px;
}

section.masters  .item .stag {
    color: #535353;
    font-weight: 500;
    margin-bottom: 10px;
}

section.masters  .item .stag strong {
    color: rgb(9, 6, 39);
}

section.masters  .item .rating {
    color: #535353;
    font-weight: 500;
    margin-bottom: 10px;
}

section.masters  .item .link {
    color: #3250e1;
    border: 1px solid #3250e1;
    width: 200px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 15px auto 0;
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: 0.2s;
    font-size: 13px;
    font-weight: 700;
}

section.masters  .item .link:hover {
    color: #ffffff;
    background-color: #3250e1;
}
section.masters .wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

section.masters .wrap .item {
    width: calc(100%/3 - 20px);
}
/* SERTIFICATES */

section.sertificates {
    padding-bottom: 50px;
}
section.sertificates .wrap {
    padding: 50px;
    background: #e2e7ff;
    display: flex;
    gap: 50px;
}

section.sertificates .wrap .sertificates-js {
    width: 320px;
    overflow: hidden;
    position: relative;
}

section.sertificates .wrap .data {
    width: calc(100% - 370px);
}

section.sertificates .wrap .sertificates-js .swiper-button-prev {
    left: 25px;
    background: #e2e7ff;
    top: 50%;
}

section.sertificates .wrap .sertificates-js .swiper-button-prev svg path {
    stroke: rgb(78, 106, 240);
}

section.sertificates .wrap .sertificates-js .swiper-button-prev svg polyline,section.sertificates .wrap .sertificates-js .swiper-button-next svg polyline {
    stroke: rgb(78, 106, 240);
}

section.sertificates .wrap .sertificates-js .swiper-button-next {
    background: #e2e7ff;
    right: 25px;
    top: 50%;
}

section.sertificates .wrap .data .name {
    color: #090627;
    font-size: 38px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 700;
    padding-right: 30px;
    margin-bottom: 25px;
}

section.sertificates .wrap .data .desc {
    color: #535353;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 30px;
}

section.sertificates .wrap .data .blocks {
    background: #fff;
    padding: 23px 30px;
}

section.sertificates .wrap .data .blocks .name {
    color: #0f0a43;
    font-size: 24px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 15px;
}

section.sertificates .wrap .data .blocks .flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

section.sertificates .wrap .data .blocks .flex .item {
    width: calc(100%/2 - 15px);
    display: flex;
    gap: 15px;
}

section.sertificates .wrap .data .blocks .flex .item .icon {
    width: 30px;
    height: 30px;
}

section.sertificates .wrap .data .blocks .flex .item .text {
    width: calc(100% - 40px);
    color: #090627;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 500;
}
section.sertificates .wrap .data .blocks .flex .item.payment {
    gap: 5px;
}

section.sertificates .wrap .data .blocks .flex .item.payment img {
    width: 62px;
    border: 1px solid #d4d4d4;
}


/* REVIEWS */

section.reviews {
    background: rgb(9, 6, 39);
    padding: 50px 0  80px;
    position: relative;
}

section.reviews .name {
    display: flex;
    align-items: center;
    justify-content: space-between; 
}
section.reviews .swiper-slide {
    background: #fff;
    height: auto !important;
    border-radius: 0px;
    box-shadow: 0px 0px 5px rgb(17 17 17 / 10%);
}

section.reviews .slide-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    margin: 30px 40px;


}

section.reviews .gr-1 {
    display: flex;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

section.reviews .date {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color:#A9A9A9;
}

section.reviews .swiper-slide .name {
    color:#2D2B2B;
    font-weight: 600;
    font-size: 18px;
}

section.reviews .gr-2 {
    width: 100%;
    height: 100%;
}

section.reviews .gr-2 p {

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color:#2D2B2B;

}

section.reviews .gr-3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

section.reviews .star {
    font-weight: 400;
    font-size: 16px;
    color:#F4C226;
}

section.reviews .grey-star {
    font-weight: 400;
    font-size: 16px;
    color: #dcdcdc;
    margin-left: -3px;
}

section.reviews .name-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0px;
}

section.reviews .name-text p {

    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 150.18%;
    text-align: right;

}
 section.reviews .name .title {
    color: #fff;
    text-align: left;
}



section.reviews .reviews-js {
    overflow: hidden;
    /* position: relative; */
}

section.reviews .reviews-js .swiper-pagination {
    bottom: 40px;
}

@media screen and (max-width: 480px) {

   section.reviews  .gr-3 {

        flex-direction: column;
        align-items: flex-start;
        gap: 27px;
    }

   section.reviews  .name-text {
        align-items: center;
    }

    section.reviews .name-text p {
        text-align: center;

    }

    section.reviews .slide-wrap {

        margin: 30px 20px;
    }

     

     

}



/* FAQ */

section.faq {
    padding: 50px 0;
}

section.faq .item {
    background: #e2e7ff;
    margin-bottom: 10px;
    padding: 30px;
}

section.faq .item .quest {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    gap: 15px;
}

section.faq .item .quest .name {
    font-size: 20px;
    color: #090627;
    font-weight: 600;
    width: calc(100% - 39px);
}

section.faq .item .answer {
    padding-top: 20px;
    color: #090627;
    font-size: 16px;
    font-weight: 300;
    display: none;
    transition: all 0.3s;
}

section.faq .item .quest .icon {
    width: 24px;
    transition: all 0.3s;
}

section.faq .item.active .quest .icon {transform: rotate(45deg);}

section.faq .item.active .answer {
    display: block;
}


/* CONTENT */

section.content {
    background: #090627;
    padding: 60px 0;
}

section.content .uc-d-none {
   display: none;
}
section.content img.uc-st-img {
   float: right;
   border-radius: 0;
   width: 430px;
   height: 260px;
   margin: 50px 0 50px 50px;
}
section.content img.uc-st-img.w-auto {
   width: auto;
   max-width: 100%;
}
section.content img.uc-st-img.mt-0 {
   margin-top: 0;
}
@media screen and (max-width: 960px) {
   section.content img.uc-st-img {
       float: right;
       width: 100%;
       margin: 0 0 25px 0;
   }
}
section.content .uc-text-b {
   color: #fff;
   font-size: 16px;
   font-family: 'Mulish', Arial, sans-serif;
   line-height: 1.6;
   font-weight: 400;
   counter-reset: myCounter; /* Инициализация счетчика */
}
section.content .uc-text-b p + * {
   margin-top: 20px;
}
section.content .uc-text-b h2 {
   font-size: 36px;
   font-family: 'Mulish', Arial, sans-serif;
   font-weight: 700;
   line-height: 1.4;
   margin: 40px 0 20px;
   color: #fff;
}
section.content .uc-text-b h3 {
   font-size: 24px;
   font-family: 'Mulish', Arial, sans-serif;
   font-weight: 700;
   margin: 30px 0 10px;
   color: #fff;
}
section.content .uc-text-b ol,
section.content .uc-text-b ul {
   padding-left: 0 !important;
   margin-left: 0;
}
section.content .uc-text-b ol li,
section.content .uc-text-b ul li {
   list-style: none;
   padding-left: 35px; /* Или большее значение, если маркеры шире */
   position: relative;
   margin-bottom: 20px; /* Указать отступы между элементами списка, если надо */
}
section.content .uc-text-b ol {counter-reset: myCounter; /* Сброс счетчика при начале нового блока */
}
section.content .uc-text-b ol > li {
   counter-increment: myCounter;
}
section.content .uc-text-b ol > li:before {
   content: counter(myCounter);
   font-family: 'Mulish', Arial, sans-serif;
   color: white;
   display: inline-block;
   text-align: center;
   width: 24px;
   height: 24px;
   border-radius: 0;
   background-color: #4E6AF0;
   line-height: 24px;
   position: absolute;
   top: 0;
   left: 0; /* Смещаем маркеры влево от текста */
}
section.content .uc-text-b ul > li:before {
   content: "";
   position: absolute;
   top: 0;
   width: 26px;
   height: 26px;
   background-image: url('https://static.tildacdn.com/tild3866-6363-4161-b335-363431653636/lets-icons_check-fil.svg');
   background-size: cover;
   left: 0; /* Смещаем маркеры влево от текста */
}
@media (max-width: 960px) {
   section.content .uc-text-b .t-col {
       max-width: 375px;
       margin: 0 auto;
   }
   section.content .uc-text-b h2 {
       font-size: 26px;
   }
   section.content .uc-text-b h3 {
       font-size: 22px;
   }
}




/* GEO */



section.geo {padding: 50px 0;}

section.geo .wrap {
    display: flex;
    gap: 50px;
}

section.geo .wrap .data {
    width: calc(100%/2 - 25px);
}

section.geo .wrap  .map {
    width: calc(100%/2 - 25px);
    position: relative;
}

section.geo .wrap .data .title {
    text-align: left;
}

section.geo .wrap .data .name {
    color: #090627;
    font-size: 20px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 600;
    margin-bottom: 15px;
}

section.geo .wrap .data .okrug {
    display: flex;
    margin-bottom: 25px;
    gap: 10px;
    flex-wrap: wrap;
}

section.geo .wrap .data .okrug a {
    width: calc(100%/5 - 10px);
    display: flex;
    color: #535353;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    border-color: #d4d4d4;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

section.geo .wrap .data .okrug a:hover {
    background: #4e6af0;
    color: #fff;
}

section.geo .wrap .data .metro {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
    margin-bottom: 30px;
}

section.geo .wrap .data .metro .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

section.geo .wrap .data .metro .item .icon {
    width: 32px;
}

section.geo .wrap .data .metro .item .metr {
    color: #090627;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

section.geo .wrap .data .metro .item .metr:hover {
    color: #4e6af0;
}

section.geo .wrap .data .city {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

section.geo .wrap .data .city a {
    color: #090627;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

section.geo .wrap .data .city a:hover {
    color: #4e6af0;
}

section.geo .wrap .map .item {
    position: absolute;
}
 

section.geo .wrap .map .item .name {
    color: #ffffff;
    font-size: 19px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 700;
    position: absolute;
    z-index: 2;
}

section.geo .wrap .map .item img {
    position: absolute;
    transition: all 0.3s;
}

section.geo .wrap .map .item:nth-child(1) {
    width: 73px;
    display: block;
    left: 20px;
    top: 35px;
}

section.geo .wrap .map .item:nth-child(1) .name {
    left: 13px;
    top: 17px;
    font-size: 16px;
}

section.geo .wrap .map .item .gray {
    z-index: 1;
}
section.geo .wrap .map .item .name:hover + .gray {
    display: none;
}
section.geo .wrap .map .item:nth-child(2) {
    width: 133px;
    left: 75px;
    top: 35px;
}

section.geo .wrap .map .item:nth-child(2) .name {
    left: 50px;
    top: 130px;
}

section.geo .wrap .map .item:nth-child(3) {
    width: 107px;
    left: 155px;
    top: 43px;
}

section.geo .wrap .map .item:nth-child(3) .name {
    left: 35px;
    top: 45px;
}

section.geo .wrap .map .item:nth-child(4) {
    width: 160px;
    left: 213px;
    top: -26px;
}

section.geo .wrap .map .item:nth-child(4) .name {
    left: 58px;
    top: 100px;
}

section.geo .wrap .map .item:nth-child(5) {
    width: 366px;
    left: 161px;
    top: 80px;
}

section.geo .wrap .map .item:nth-child(5) .name {
    right: 120px;
    top: 65px;
}

section.geo .wrap .map .item:nth-child(6) {
    left: 73px;
    top: 212px;
    width: 177px;
}

section.geo .wrap .map .item:nth-child(6) .name {
    left: 75px;
    top: 80px;
}

section.geo .wrap .map .item:nth-child(7) {
    width: 141px;
    left: 210px;
    top: 188px;
}

section.geo .wrap .map .item:nth-child(7) .name {
    left: 53px;
    top: 40px;
}

section.geo .wrap .map .item:nth-child(8) {
    width: 110px;
    left: 169px;
    top: 297px;
}

section.geo .wrap .map .item:nth-child(8) .name {
    left: 16px;
    top: 89px;
}

section.geo .wrap .map .item:nth-child(9) {
    width: 157px;
    left: 253px;
    top: 276px;
}

section.geo .wrap .map .item:nth-child(9) .name {
    left: 45px;
    top: 140px;
}

section.geo .wrap .map .item:nth-child(10) {
    width: 147px;
    right: 90px;
    top: 216px;
}

section.geo .wrap .map .item:nth-child(10) .name {
    left: 38px;
    top: 77px;
}


/* CONTACTS */ 

section.contacts {
    padding: 50px 0;
}

section.contacts .wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

section.contacts .wrap .maps {
    width: calc(100%/2 - 10px);
}

section.contacts .wrap .data {
    width: calc(100%/2 - 10px);
}

section.contacts .wrap .data .calls {
    background: #e2e7ff;
    padding: 20px 35px;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

section.contacts .wrap .data .calls .item {
    width: calc(100%/3 - 10px);
    text-align: center;
}

section.contacts .wrap .data .calls .item .icon {
    width: 40px;
    margin: 0 auto 10px;
}

section.contacts .wrap .data .calls .desc,section.contacts .wrap .data .calls .desc a {
    color: #090627;
    font-size: 14px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 600;
}

section.contacts .wrap .data .write {
    background: #090627;
    padding: 30px;
}

section.contacts .wrap .data .write .name {
    color: #ffffff;
    font-size: 17px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 20px;
}

section.contacts .timing {
    display: flex;
    gap: 20px;
}

section.contacts .timing .item {
    width: calc(100%/3 - 10px);
    text-align: center;
    border: 1px solid #d4d4d4;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.65;
    font-weight: 400;
    gap: 5px;
}

section.contacts .timing .item span {
    color: rgb(87, 74, 200);
    font-weight: 700;
}



/* FOOTER */


footer {
    background: #090627;
    padding: 50px 0;
}

footer .wrap {
    display: flex;
    gap: 50px;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 2px solid #ffffff1f;
}

footer .wrap .col {
    /* width: calc(100%/4 - 22px); */
}

footer .wrap .logo {
    width: 127px;
}

footer .wrap ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 20px;
}

footer .wrap ul li {
    width: calc(100%/2 - 10px);
}

footer .wrap ul li a {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 300;
}

footer .wrap .name {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 400;
    opacity: 0.4;
    margin-bottom: 10px;
}

footer .wrap .phone {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
}

footer .wrap .pays {
    display: flex;
    gap: 5px;
}

footer .wrap .pays img {
    width: 50px;
}

footer .wrap .col:nth-child(2) {
    max-width: 450px;
}

footer .wrap .call {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    background-position: center center;
    border-color: #ffffff;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    width: 200px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

footer .wrap .call:hover {
    background: #4e6af0;
    border-color: #4e6af0;
}

footer .copyright {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 400;
    opacity: 0.4;
}

footer .copyright a {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 400;
    opacity: 0.4;
}


.modal-menu {
    display: none;
}

.modal-menu.active {
    display: block;
    width: 80%;
    position: fixed;
    background: #fff;
    top: 0;
    z-index: 21;
    right: 0;
    padding: 20px;
    height: 100vh;
    overflow-y: scroll;
}

.modal-menu.active .close {
    width: 18px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.modal-menu .logo {
    width: 120px;
    margin-bottom: 30px;
}

.modal-menu .menu ul {
    list-style: none;
}

.modal-menu .menu ul li {
    margin-bottom: 10px;
}

.modal-menu .menu ul li.sub-menu .dropmenu {
    display: none;
}

.modal-menu .menu ul li a {
    font-size: 16px;
    color: #535353;
}

.modal-menu .menu {
    margin-bottom: 40px;
}

.modal-menu .menu ul li.sub-menu:after {}

.modal-menu .menu ul li.sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0;
    position: absolute;
    top: 11px;
    right: 20%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-color: transparent;
    border-top-color: inherit;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
.modal-menu .menu ul li.sub-menu.active:after {
    transform: rotate(180deg);
}
.modal-menu .menu ul li.sub-menu {
    position: relative;
}
.modal-menu .menu ul li.sub-menu.active .dropmenu {
    display: block;
    margin: 20px;
}

/* ASK */


section.ask {
    padding: 50px 0;
}

section.ask .wrap {
    border: 4px solid #3250e1;
    padding: 40px;
    display: flex;
    gap: 50px;
    align-items: center;
}

section.ask .wrap .left,section.ask .wrap .right {
    width: 300px;
}

section.ask .wrap .middle {
    width: calc(100% - 700px);
}

section.ask .wrap .middle form {
    flex-direction: column;
}

section.ask .wrap .name {
    color: #090627;
    font-size: 32px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 700;
    margin-bottom: 15px;
}

section.ask .wrap .desc {
    color: #535353;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}

section.ask .wrap .phone {
    color: #090627;
    font-size: 22px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 15px;
}

section.ask .wrap .phone-desc {
    color: #535353;
    font-size: 14px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}

section.ask .wrap .phone-text {
    color: #535353;
    font-size: 14px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    text-align: center;
}

section.ask .wrap .middle form input {
    border: 1px solid rgb(212, 212, 212);
    width: 100%;
}

section.ask .wrap .middle form .btn {
    width: 100%;
}

section.ask .wrap .middle .form .policy {
    color: #d4d4d4;
    font-size: 14px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 300;
}

section.ask .wrap .middle .form .policy a {
    color: rgb(50, 80, 225);
}

/* ANOTHER */

section.another {padding: 50px 0;background: rgb(226, 231, 255);}

section.another .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

section.another .wrap .item {
    width: calc(100%/3 - 20px);
    display: flex;
    align-items: center;
    gap: 5px;
    color: #090627;
    font-size: 18px;
    font-weight: 600;
}

/* MASTER */

section.master {
    padding: 50px 0;
}

section.master .wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

section.master .wrap .image {
    width: 300px;
    height: 325px;
    display: flex;
}

section.master .wrap .image img {
    width: 100%;
    object-fit: cover;
}

section.master .tit {
    color: #535353;
    font-size: 18px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 15px;
}

section.master .date {
    color: #4e6af0;
    font-size: 26px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 900;
    margin-bottom: 15px;
}

section.master hr {margin-bottom: 15px;}

section.master .name {
    color: #090627;
    font-size: 20px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 15px;
}

section.master .wrap .data {
    width: calc(100% - 330px);
}

section.master .master-tech {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

section.master .master-tech .item {
    display: flex;
    align-items: center;
    width: calc(100%/3 - 20px);
}

section.master .master-tech .item .image {
    width: 100px;
    height: 100px;
}

section.master .master-tech .item .info {
    padding: 20px;
    border: 1px solid #ccd5ff;
    height: 99px;
    display: flex;
    align-items: start;
    flex-direction: column;
    width: calc(100% - 100px);
    gap: 10px;
}

section.master .master-tech .item .info .item-name {
    color: #090627;
    font-size: 18px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

section.master .master-tech .item .info .price {
    color: #090627;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
}

section.master .master-tech .item:hover .info {
    background: #e2e7ff;
}

section.sovet {
    background: rgb(226, 231, 255);
    padding: 50px 0;
}

section.sovet .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

section.sovet .wrap .item {
    width: calc(100%/2 - 15px);
    background: #fff;
    padding: 35px;
}

section.sovet .wrap .item .num {
    width: 50px;
    height: 50px;
    display: flex;
    background: #4e6af0;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-bottom: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

section.sovet .wrap .item .name {
    font-size: 24px;
    color: #090627;
    font-weight: 700;
    margin-bottom: 20px;
}

section.sovet .wrap .item .desc {
    font-size: 16px;
    color: #535353;
}

section.sovet .wrap .item .text {
    font-size: 16px;
    color: #535353;
}

section.form-reviews {
    padding: 50px 0;
}

section.form-reviews .wrap {
    border: 4px solid #3250e1;
    padding: 40px;
    display: flex;
    gap: 30px;
}

section.form-reviews .wrap .left {
    width: 305px;
}

section.form-reviews .wrap .left .name {
    color: #090627;
    font-size: 38px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 700;
    margin-bottom: 30px;
}

section.form-reviews .wrap .right {
    width: calc(100% - 335px);
}

section.form-reviews .wrap .left .desc {
    color: #535353;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}

section.form-reviews .wrap .right form {
    flex-wrap: wrap;
}

section.form-reviews .wrap .right form input {
    width: calc(100%/2 - 8px);
    border: 1px solid rgb(212, 212, 212);
}

section.form-reviews .wrap .right form input:nth-child(3) {
    width: 100%;
}

section.form-reviews .wrap .right form textarea {
    width: 100%;
    border: 1px solid rgb(212, 212, 212);
    height: 85px;
    font-size: 16px;
    font-weight: 400;
    padding: 15px;
    font-family: 'Mulish', sans-serif;
}

section.form-reviews .wrap .right  .policy {
    color: #d4d4d4;
}

section.form-reviews .wrap .right .policy a {
    color: rgb(50, 80, 225);
}


/* WORKS */


section.work {
    background: rgb(78, 106, 240);
    padding: 60px 0;
    position: relative;
}

section.work .title {
    color: #fff;
}

section.work .works-js {
    overflow: hidden;
}

section.work .works-js .image {
    height: 270px;
    display: flex;
}

section.work .works-js .image img {
    object-fit: cover;
    width: 100%;
}

section.work .works-js .name {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 0;
}

/* ABOUT */


section.about {
    padding: 50px 0;
}

section.about .item {
    display: flex;
    margin-bottom: 30px;
}

section.about .item .image {
    width: 380px;
    display: flex;
}

section.about .item .info {
    width: calc(100% - 380px);
    border: 1px solid rgb(182, 195, 255);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.about .item .image img {
    object-fit: cover;
    width: 100%;
}

section.about .item .info .name {
    font-size: 24px;
    color: #090627;
    font-weight: 700;
    margin-bottom: 15px;
}

section.about .item .info .text {
    font-size: 16px;
    color: #535353;
    font-weight: 400;
    line-height: 23px;
}

section.how-many {
    padding: 50px 0;
}

section.how-many .wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

section.how-many .wrap .item {
    width: 160px;
    position: relative;
}

section.how-many .wrap .item .block {
    background: #4e6af0;
}

section.how-many .wrap .item:nth-child(1) .block {
    height: 196px;
}

section.how-many .wrap .item:nth-child(2) .block {
    height: 204px;
}

section.how-many .wrap .item:nth-child(3) .block {
    height: 209px;
}

section.how-many .wrap .item:nth-child(4) .block {
    height: 245px;
}

section.how-many .wrap .item:nth-child(5) .block {
    height: 216px;
}

section.how-many .wrap .item:nth-child(6) .block {
    height: 226px;
}

section.how-many .wrap .item .name {
    margin: 15px;
    text-align: center;
    color: #535353;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 500;
}

section.how-many .wrap .item .num {
    position: absolute;
    color: #ffffff;
    font-size: 18px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
    width: 100%;
    text-align: center;
    top: 15px;
}

section.call-back {
    background: rgb(9, 6, 39);
    padding: 50px 0;
    color: #fff;
}

section.call-back .wrap {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

section.call-back .wrap .left {
    width: calc(100%/2 - 30px);
}

section.call-back .wrap .right {
    width: calc(100%/2 - 30px);
}

section.call-back .wrap .name {
    color: #ffffff;
    font-size: 38px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 20px;
}

section.call-back .wrap .desc {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
}

section.call-back .wrap .right form {
    flex-direction: column;
}

section.call-back .wrap .right form input {
    width: 100%;
}

section.call-back .wrap .right form textarea {
    width: 100%;
    height: 85px;
    background: transparent;
    border: 1px solid rgb(255, 255, 255);
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Mulish', sans-serif;
}

section.call-back .wrap .right form .btn {
    width: 100%;
}

section.call-back .images {
    display: flex;
    gap: 30px;
}

section.call-back .images .first {
    width: 370px;
}

section.call-back .images .second {
    width: calc(100% - 400px);
    display: flex;
    gap: 15px 30px;
    flex-wrap: wrap;
}

section.call-back .images .first .name {
    margin: 10px 0;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
}

section.call-back .images .second img {
    width: calc(100%/2 - 15px);
}

section.call-back .images .second .mail {
    width: 100%;
    display: flex;
    background: #fff;
    padding: 15px;
    justify-content: center;
    align-items: center;
}

section.call-back .images .first .image {
    height: 285px;
    display: flex;
}
section.call-back .images .first .image img{
    object-fit: cover;
}

/* CONTACT PAGE */

section.our-cont {
    padding: 50px 0;
}

section.our-cont .wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

section.our-cont .wrap .item {
    width: calc(100%/3 - 10px);
    background-color: #e2e7ff;
    padding: 30px 30px 100px 30px;
    position: relative;
}

section.our-cont .wrap .item .name {
    color: #090627;
    font-size: 20px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 15px;
}

section.our-cont .wrap .item .desc {
    color: #535353;
    font-size: 15px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 15px;
}

section.our-cont .wrap .item p {
    color: #090627;
    font-size: 17px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 10px;
}

section.our-cont .wrap .item:nth-child(1):after {
    background-image: url(/assets/images/tild6435-3738-4164-b266-613930653266__free-icon-headphone-.svg);
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 130px;
    height: 130px;
    position: absolute;
    background-size: contain;
    bottom: 20px;
    right: 20px;
    opacity: 0.2;
}

section.our-cont .wrap .item:nth-child(2):after {
    background-image: url(/assets/images/tild3435-6335-4237-b932-303430333366__free-icon-email-5526.svg);
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 130px;
    height: 130px;
    position: absolute;
    background-size: contain;
    bottom: 20px;
    right: 20px;
    opacity: 0.2;
}

section.our-cont .wrap .item:nth-child(3):after {
    background-image: url(/assets/images/tild3663-6337-4362-a134-396266333764__free-icon-location-5.svg);
    background-repeat: no-repeat;
    content: '';
    display: block;
    width: 130px;
    height: 130px;
    position: absolute;
    background-size: contain;
    bottom: 20px;
    right: 20px;
    opacity: 0.2;
}

section.our-cont .wrap .item form {
    flex-direction: column;
}

section.our-cont .wrap .item form input {
    width: 100%;
    border: 1px solid rgb(182, 195, 255);
}

section.our-cont .wrap .item form .btn {
    width: 100%;
}

section.our-cont .wrap .item .policy {
    color: #535353;
}

section.our-cont .wrap .item .policy a {
    color: rgb(50, 80, 225);
}

section.our-cont .map {
    height: 450px;
}


/* TABS */

section.tabs {
    padding: 50px 0;
}
.container-uslugi {
  display: flex;
  font-family: 'Mulish', Arial, sans-serif;
}



.sidebar-uslugi {
  width: 300px;
  margin-right: 10px;

}

.category-uslugi {
  margin-bottom: 10px;
  padding: 20px;
  background-color: #E2E7FF;
  color: #3F424B;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all 0.2s ease-in-out;
}

.category-uslugi:hover {
  background-color: #B6C3FF;
}

.category-uslugi:last-child {
    margin-bottom: 0px;
}

.content-uslugi {
  flex: 1;
  background-color: #fff;
  padding: 0px;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-wrapper h3 {
    color: #3F424B;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.hidden {
  display: none;
}

.active-category {
  background-color: #4e6af0 !important;
  color: #ffffff !important;
}




@media (max-width: 960px) {
  .container-uslugi {
    flex-direction: column;
  }

  .sidebar-uslugi {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
    /* max-height: 230px;  Задаем максимальную высоту для показа 4 элементов */
    overflow-y: auto;
  }
.category-uslugi {
    margin-bottom: 8px;
    padding: 14px;
}
  .content-uslugi {
    padding:  20px 0;
  }

  .content-wrapper {
    margin-bottom: 30px;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
}

@media (max-width: 480px) {
  .content-wrapper h3 {
    font-size: 22px;
}

}


section.list-rev {
    padding: 50px 0;
}
section.list-rev .review-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

section.list-rev .review-block {
  width: calc (50% - 20px);
  background: #fff;
  border: 1px solid #CCD5FF;
  border-radius: 0px;
}

section.list-rev .slide-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
  padding: 30px 40px;
}

section.list-rev .gr-1 {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

section.list-rev .name {
  color: #2D2B2B;
  font-weight: 600;
  font-size: 18px;
}

section.list-rev .gr-2 {
  width: 100%;
}

section.list-rev .gr-2 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #2D2B2B;
}

section.list-rev .star {
  font-size: 16px;
  color: #F4C226;
}

section.list-rev .grey-star {
  font-size: 16px;
  color: #DCDCDC;
  margin-left: -3px;
}

section.list-rev .gr-3 {
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 480px) {
  section.list-rev .review-block {
    width: 100%;
  }
}

section.text-page {
    font-size: 17px;
    line-height: 1.6;
    color: #535353;
    margin-bottom: 50px;
}

section.text-page h1 {
    color: #090627;
    font-size: 38px;
    font-family: 'Mulish', Arial, sans-serif;
    line-height: 1.07;
    font-weight: 700;
    margin-bottom: 15px;
}

section.text-page ul, section.text-page ol {
    margin: 20px;
}


/* MOBILE */

@media screen and (max-width: 1536px) {
    section.reviews .reviews-js .swiper-button-prev {
        left: 5%;
    }
    section.reviews .reviews-js .swiper-button-next {
        right: 5%;
    }
}
@media screen and (max-width: 1024px) {
    section.masters .master-js {
        position: relative;
    }
    
    section.reviews .reviews-js {
        position: relative;
    }
    
    section.geo .wrap {
        gap: 20px;
    }
    
    section.geo .wrap .map {
        width: 560px;
    }
    
    section.geo .wrap .data {
        width: calc(100% - 580px);
    }
    
    section.contacts .timing .item {
        flex-wrap: wrap;
        gap: 0 5px;
        line-height: 19px;
    }
    
    footer .wrap {
        flex-wrap: wrap;
    }
    section.ask .wrap {
        gap: 20px;
    }
    
    section.ask .wrap .left, section.ask .wrap .right {
        width: 250px;
    }
    
    section.ask .wrap .middle {
        width: calc(100% - 540px);
    }
    section.call-back .images .first {
        width: 300px;
    }
     
    
    section.call-back .images .second {
        width: calc(100% - 331px);
    }
    
    section.call-back .images .first .image {
        height: 200px;
    }
    section.reviews .reviews-js .swiper-button-prev {
        left: 0%;
    }
    section.reviews .reviews-js .swiper-button-next {
        right: 0%;
    }
}

@media screen and (max-width: 768px) {
    section.another .wrap .item {
        width: calc(100%/2 - 20px);
    }
    header .wrap .menu {
        display: none;
    }
    header .burger-js {
        display: flex;
    }
    section.hero .wrapper .wrap {
        flex-direction: column;
    }
    
    section.hero .wrapper .wrap .data {
        width: 100%;
    }
    
    section.hero .wrapper .wrap .image {
        width: 100%;
    }
    section.masters  .item {
        flex-direction: column;
                justify-content: center;
    }
    
    section.hero .wrapper .main-title {
        text-align: center;
        font-size: 36px;
    }
    
    section.hero .wrapper .desc {
        text-align: center;
    }
    
    section.hero .wrapper .wrap form {
        justify-content: center;
    }
    
    section.hero .wrapper .wrap .policy {
        text-align: center;
    }
    
    section.hero .advantages {
        flex-wrap: wrap;
    }
    
    section.hero .advantages .item {
        width: 100%;
    }
    
    section.technical .wrap .item {
        width: calc(100%/2 - 20px);
    }
    
    section.form-sale .wrapper .wrap {
        padding: 40px 40px 400px;
        text-align: center;
        background-size: 400px;
        background-position: center bottom;
    }
    
    section.form-sale .wrapper .wrap .name {
        font-size: 30px;
    }
    
    section.form-sale .wrapper .wrap .desc p {
        font-size: 16px;
    }
    
    section.etaps .wrap {
        flex-direction: column;
    }
    
    section.why .wrap {
        flex-direction: column;
    }
    
    section.why .wrap .col {
        width: 100%;
    }
    
    section.why .wrap .col:nth-child(2) {
        width: 450px;
    }
    
    section.etaps .wrap .image {
        width: 100%;
    }
    
    section.etaps .steps {
        padding-right: 0;
    }
    
    .swiper-button-next {
        right: 0;
    }
    
    .swiper-button-prev {
        left: 0;
    }
    
    section.masters  .item .name {
        font-size: 18px;
    }
    
    section.masters  .item .stag,section.masters  .item .rating {
        font-size: 14px;
        margin: 0;
    }
    
    section.sertificates .wrap {
        padding: 40px;
        flex-direction: column-reverse;
    }
    
    section.sertificates .wrap .sertificates-js {
        margin: 0 auto;
    }
    
    section.sertificates .wrap .sertificates-js .swiper-button-prev {
        left: 0;
    }
    
    section.sertificates .wrap .sertificates-js .swiper-button-next {
        right: 0;
    }
    
    section.sertificates .wrap .data {
        width: 100%;
    }
    
    .title {
        font-size: 30px;
    }
    
    section.reviews .reviews-js .swiper-pagination {
        display: none;
    }
    
    section.faq .item .quest .name {
        font-size: 18px;
    }
    
    section.content img.uc-st-img {
        height: auto;
    }
    
    section.geo .wrap {
        flex-direction: column;
    }
    
    section.geo .wrap .data {
        width: 100%;
    }
    
    section.geo .wrap .map {
        height: 535px;
        margin: 30px auto;
    }
    
    section.contacts .wrap {
        flex-direction: column;
    }
    
    section.contacts .wrap .maps {
        width: 100%;
        height: 350px;
    }
    
    section.contacts .wrap .data {
        width: 100%;
    }
    
    section.contacts .timing {
        flex-direction: column;
    }
    
    section.contacts .timing .item {
        width: 100%;
    }
    body.hidden {
        overflow: hidden;
    }
    
    section.ask .wrap {
        flex-direction: column;
    }
    
    section.ask .wrap .left, section.ask .wrap .right {
        width: 100%;
        text-align: center;
    }
    
    section.ask .wrap .middle {
        width: 100%;
    }
    
    section.ask .wrap .middle .form .policy {
        text-align: center;
    }
    section.masters .wrap .item {
        width: calc(100%/2 - 20px);
    }
    section.master .master-tech .item {
        width: calc(100%/2 - 20px);
    }
    
    section.master .master-tech {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    section.sovet .wrap .item .name {
        font-size: 20px;
    }
    
    section.form-reviews .wrap {
        flex-direction: column;
    }
    
    section.form-reviews .wrap .right {
        width: 100%;
    }
    
    section.form-reviews .wrap .left {
        width: 100%;
    }
    section.about .item {flex-direction: column;}
    
    section.about .item .image {
        width: 100%;
        height: 200px;
    }
    
    section.about .item .info {
        width: 100%;
    }
    
    section.how-many .wrap {
        flex-direction: column;
    }
    
    section.how-many .wrap .item {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    section.how-many .wrap .item:nth-child(1) .block {
        height: 65px;
        width: 60%;
    }
    
    section.how-many .wrap .item .block {
        height: 65px;
    }
    
    section.how-many .wrap .item .num {
        left: 15px;
        width: auto;
    }
    
    section.how-many .wrap .item:nth-child(2) .block {
        height: 65px;
        width: 62%;
    }
    
    section.how-many .wrap .item:nth-child(3) .block {
        height: 65px;
        width: 65%;
    }
    
    section.how-many .wrap .item:nth-child(4) .block {
        height: 65px;
        width: 74%;
    }
    
    section.how-many .wrap .item:nth-child(5) .block {
        height: 65px;
        width: 67%;
    }
    
    section.how-many .wrap .item:nth-child(6) .block {
        height: 65px;
        width: 70%;
    }
    
    section.call-back .wrap {
        flex-direction: column;
    }
    
    section.call-back .wrap .left {
        width: 100%;
    }
    
    section.call-back .wrap .right {
        width: 100%;
    }
    
    section.call-back .wrap .name {
        text-align: center;
        font-size: 30px;
        line-height: 34px;
    }
    
    section.call-back .wrap .desc {
        text-align: center;
    }
    
    section.call-back .images {
        flex-direction: column;
    }
    
    section.call-back .images .first {
        width: 100%;
    }
    
    section.call-back .images .first .image {
        width: 100%;
        justify-content: center;
    }
    
    section.call-back .images .first .name {
        text-align: center;
    }
    
    section.call-back .images .second {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    section.another .wrap .item {
        width: 100%;
        font-size: 16px;
    }
    section.hero .wrapper .wrap form {
        flex-direction: column;
    }
    
    .form .input {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    section.hero .wrapper .wrap {
        padding: 30px;
    }
    
    section.hero .wrapper .wrap .image img {
        width: 100%;
    }
    
    section.technical .wrap .item {
        width: 100%;
    }
    
    section.form-sale .wrapper .wrap {
        background-size: 100%;
        padding: 25px 25px 400px;
    }
    
    section.why .wrap .col:nth-child(2) {
        width: 100%;
    }
    
    section.why .wrap .col .item:nth-last-child(1) {
        margin: 0;
    }
    
    section.sertificates .wrap .data .name {
        font-size: 28px;
    }
    
    section.sertificates .wrap {
        padding: 30px;
    }
    
    section.sertificates .wrap .data .blocks .flex .item {
        width: 100%;
    }
    
    section.reviews .name {
        flex-direction: column;
    }
    
    section.geo .wrap .map {
        width: 100%;
        height: 390px;
    }
    
    section.geo .wrap .map .item:nth-child(1) {
        width: 47px;
    }
    
    section.geo .wrap .map .item:nth-child(1) .name {
        font-size: 10px;
        left: 8px;
        top: 9px;
    }
    
    section.geo .wrap .map .item:nth-child(2) {
        width: 85px;
        left: 35px;
    }
    
    section.geo .wrap .map .item .name {
        font-size: 14px;
    }
    
    section.geo .wrap .map .item:nth-child(2) .name {
        left: 28px;
        top: 87px;
    }
    
    section.geo .wrap .map .item:nth-child(3) {
        width: 70px;
        left: 85px;
        top: 37px;
    }
    
    section.geo .wrap .map .item:nth-child(3) .name {
        left: 23px;
    }
    
    section.geo .wrap .map .item:nth-child(4) {
        width: 101px;
        left: 124px;
        top: -6px;
    }
    
    section.geo .wrap .map .item:nth-child(4) .name {
        left: 31px;
        top: 60px;
    }
    
    section.geo .wrap .map .item:nth-child(5) {
        width: 234px;
        left: 89px;
        top: 59px;
    }
    
    section.geo .wrap .map .item:nth-child(5) .name {
        left: 135px;
        top: 49px;
    }
    
    section.geo .wrap .map .item:nth-child(6) {
        width: 113px;
        left: 34px;
        top: 147px;
    }
    
    section.geo .wrap .map .item:nth-child(6) .name {
        left: 47px;
        top: 50px;
    }
    
    section.geo .wrap .map .item:nth-child(7) {
        width: 90px;
        left: 123px;
        top: 132px;
    }
    
    section.geo .wrap .map .item:nth-child(7) .name {
        left: 30px;
        top: 23px;
    }
    
    section.geo .wrap .map .item:nth-child(8) {
        width: 70px;
        left: 95px;
        top: 201px;
    }
    
    section.geo .wrap .map .item:nth-child(8) .name {
        top: 56px;
        left: 6px;
    }
    
    section.geo .wrap .map .item:nth-child(9) {
        width: 100px;
        left: 150px;
        top: 187px;
    }
    
    section.geo .wrap .map .item:nth-child(10) {
        width: 93px;
        top: 149px;
        right: 98px;
    }
    
    section.geo .wrap .map .item:nth-child(10) .name {
        left: 26px;
        top: 53px;
    }
    
    section.geo .wrap .map .item:nth-child(9) .name {
        left: 25px;
        top: 86px;
    }
    
    section.geo .wrap .data .metro .item .metr {
        font-size: 15px;
    }
    
    section.geo .wrap .data .city a {
        font-size: 15px;
    }
    
    section.geo .wrap .data .okrug a {
        font-size: 15px;
    }
    
    section.contacts .wrap .data .calls {
        padding: 20px;
        flex-direction: column;
    }
    
    section.contacts .wrap .data .calls .item {
        display: flex;
        width: 100%;
        justify-content: start;
        gap: 15px;
    }
    
    section.contacts .wrap .data .calls .item .icon {
        margin: 0;
    }
    
    section.contacts .wrap .data .calls .desc {
        width: calc(100% - 55px);
        text-align: left;
    }
    
    section.contacts .wrap .data .write .name {
        font-size: 16px;
        text-align: center;
    }
    
    .form form {
        flex-direction: column;
    }
    
    .form .policy {
        text-align: center;
    }
    
    section.contacts .timing .item {
        font-size: 16px;
    }
    
    footer .wrap {
        gap: 20px;
        padding-bottom: 20px;
    }
    
    footer .wrap ul li {
        width: 100%;
    }
    
    footer .copyright {
        padding-top: 20px;
        flex-direction: column;
        gap: 15px;
    }
    header .wrap .phone a {
        border: 0;
        padding: 0;
        width: auto;
        height: auto;
    }
    
    section.hero .advantages .item .icon .name {
        font-size: 16px;
    }
    
    section.hero .advantages .item .text {
        font-size: 14px;
    }
    
    section.technical .wrap .item .data .name {
        font-size: 16px;
    }
    
    section.technical .wrap .item .data .price {
        font-size: 16px;
    }
    
    section.form-sale .wrapper .wrap .name {
        line-height: 30px;
        margin-top: 0;
    }
    
    section.why .wrap .item .top .name {
        font-size: 18px;
    }
    
    section.why .wrap .col:nth-child(2) {
        overflow: hidden;
    }
    
    section.geo .wrap .data .okrug a {
        width: calc(100%/4 - 10px);
    }
    section.ask .wrap .name {
        font-size: 26px;
    }
    
    section.ask .wrap {
        padding: 20px;
    }
    tr td:nth-child(2) {
        white-space: nowrap;
    }
    section.masters .wrap .item {
        width: 100%;
    }
    section.master .wrap {
        flex-direction: column;
    }
    
    section.master .wrap .image {
        width: 100%;
    }
    
    section.master .wrap .data {
        width: 100%;
    }
    
    section.master .name {
        font-size: 16px;
    }
    
    section.master .tit {
        font-size: 16px;
    }
    
    section.master .date {
        font-size: 22px;
    }
    
    section.master .master-tech .item {
        width: 100%;
    }
    
    section.sovet .wrap .item {
        width: 100%;
        padding: 20px;
    }
    
    section.form-reviews .wrap .left .name {
        font-size: 26px;
        text-align: center;
    }
    
    section.form-reviews .wrap .left .desc {
        text-align: center;
    }
    
    section.form-reviews .wrap {
        padding: 25px;
    }
    
    section.form-reviews .wrap .right form input {
        width: 100%;
    }
    section.about .item .info {
        padding: 25px;
    }
    
    section.about .item .info .name {
        font-size: 20px;
    }
    
    section.about .item .info .text {
        font-size: 14px;
    }
    section.our-cont .wrap .item {
        width: 100%;
    }
    
    section.our-cont .wrap {
        flex-direction: column;
    }
}