/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    color: #242424;
    background-color: #F9F9F9;
}

body.no-scroll {
    overflow: hidden;
}

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

h2 {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #242424;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.2;
}

@media (max-width: 980px) {
    h2 {
      font-size: 30px;
    }
}

@media (max-width: 640px) {
    h2 {
      font-size: 26px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    h2 {
      font-size: 24px;
    }
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/*---- Ленивая загрузка ----*/
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  img.lazy.loaded {
    opacity: 1;
  }

/*----- Кастомный alert----- */
.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-alert__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.custom-alert__content {
    position: relative;
    background-color: #fff;
    padding: 25px 35px;
    margin: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 15px;
}

.custom-alert__icon {
    width: 50px;
    height: auto;
}

.custom-alert__message {
    font-size: 16px;
}

.custom-alert__button {
    padding: 13px 30px;
    font-size: 14px;
    color: #fff;
    background-color: #366AD0;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    width: 140px;
}

.custom-alert__button:hover {
    background-color: #3974E8;
}



/* Контейнеры */
.container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 28px 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

/* Основной контент - отступ будет задаваться динамически через JavaScript */
.main-content,
.hero,
main,
.content {
    transition: padding-top 0.3s ease; /* Плавный переход при изменении отступа */
}

/* Дополнительные стили для улучшения визуала */
.header--scrolled {
    box-shadow: 0 2px 20px rgba(54, 106, 208, 0.15);
}

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

    }
    .container {
        padding: 0 20px;
    }
}

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

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}

/* Логотип */
.header__logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header__company-name {
    font-weight: 700;
    color: #366ad0;
    font-size: 20px;
    line-height: 1.2;
    margin-top: -1px;
}

.header__company-description {
    font-weight: 400;
    color: #242424;
    font-size: 14px;
    line-height: 1.2;
}

/* Навигация */
.header__nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.header__nav-link {
    font-weight: 600;
    color: #366ad0;
    font-size: 16px;
    line-height: 1.2;
    margin-top: -1px;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: #2a5bb8;
}

/* Кнопка бургер-меню */
.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__burger img {
    height: 40px;
    width: auto;
}

/* Контактная информация */
.header__contact {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__location {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.header__city {
    font-weight: 500;
    color: #242424;
    font-size: 12px;
    text-align: right;
    margin-top: -1px;
}

.header__schedule {
    font-weight: 500;
    color: #242424;
    font-size: 12px;
    text-align: right;
}

.header__phone-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.header__phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__phone-icon {
    width: 22px;
    height: 22px;
    position: relative;
}

.header__phone-icon img {
    width: 21px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 1px;
}

.header__phone {
    font-weight: 700;
    color: #366ad0;
    font-size: 20px;
    text-align: right;
    margin-top: -1px;
    transition: color 0.3s ease;
}

.header__phone:hover {
    color: #2a5bb8;
}

.header__callback-btn {
    display: flex;
    width: 205px;
    height: 58px;
    justify-content: center;
    align-items: center;
    padding: 17px 20px;
    background-color: #366ad0;
    border-radius: 12px;
    font-weight: 600;
    color: #ffffff;
    font-size: 17px;
    margin-top: -0.5px;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Убираем подчеркивание */
    box-sizing: border-box;
}

.header__callback-btn:hover {
    background-color: #2a5bb8;
        color: #ffffff; /* Сохраняем белый цвет при hover */
}
.header__callback-btn:focus {
    outline: 2px solid #366ad0;
    outline-offset: 2px;
}

/* Разделитель */
.header__divider {
    width: 100%;
    height: 1px;
    background-color: #366AD0;
    margin-bottom: 24px;
}

/* Услуги */
.header__services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__service-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.header__service-item:hover {
    transform: translateY(-2px);
}

.header__service-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.header__service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__service-text {
    font-weight: 600;
    color: #366ad0;
    font-size: 16px;
    margin-top: -1px;
    transition: color 0.3s ease;
}

.header__service-item:hover .header__service-text {
    color: #2a5bb8;
}

/* Мобильное меню */
.header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: none;
    overflow: hidden; /* Предотвращаем скролл */
}

.header__mobile-menu--active {
    display: block;
}

.header__mobile-content {
    position: absolute;
    top: 100px; /* Высота шапки */
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: #ffffff;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow-y: auto;
     box-sizing: border-box; /* Важно! */
}

/* Убираем возможные отступы */
.header__mobile-content * {
    max-width: 100%;
    box-sizing: border-box;
}

.header__mobile-nav {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -20px;
}

.header__mobile-link {
    font-family: "Manrope", Helvetica;
    font-weight: 600;
    color: #366ad0;
    font-size: 16px;
    margin-top: -1px;
    transition: color 0.3s ease;
}

.header__mobile-link:hover {
    color: #2a5bb8;
}

.header__mobile-divider {
    width: 100%;
    height: 1px;
    background-color: #366AD0;
}

.header__mobile-services {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 40px;
}

.header__mobile-service {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.header__mobile-service:hover {
    transform: translateY(-2px);
}

.header__mobile-service-icon {
    width: 20px;
    height: 20px;
}

.header__mobile-service-text {
    font-family: "Manrope", Helvetica;
    font-weight: 600;
    color: #366ad0;
    font-size: 16px;
    margin-top: -1px;
    transition: color 0.3s ease;
}

.header__mobile-service:hover .header__mobile-service-text {
    color: #2a5bb8;
}

.header__mobile-callback {
    display: flex;
    width: 100%;
    max-width: 351px;
    height: 58px;
    align-items: center;
    justify-content: center;
    padding: 17px 20px;
    background-color: #366ad0;
    border-radius: 12px;
    font-family: "Manrope", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 17px;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Убираем подчеркивание */
    box-sizing: border-box;
}

.header__mobile-callback:hover {
    background-color: #2a5bb8;
    color: #ffffff; /* Сохраняем белый цвет при hover */
}

.header__mobile-callback:focus {
    outline: 2px solid #366ad0;
    outline-offset: 2px;
}

.header__mobile-location {
    display: flex;
    width: 100%;
    max-width: 351px;
    align-items: center;
    justify-content: space-between;
}

.header__mobile-city,
.header__mobile-schedule {
    font-family: "Manrope-Medium", Helvetica;
    font-weight: 500;
    color: #242424;
    font-size: 12px;
    text-align: right;
    margin-top: -1px;
}

/* Адаптивность */

@media (max-width: 1240px) {

    .header__phone-block {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 1200px) {
    .header__services {
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
    }
    
    .header__nav {
        gap: 15px;
    }
    .header__contact {
        gap: 20px;
    }
    
    .header__callback-btn {
        width: 100%;
        height: 50px;
        font-size: 15px;
    }
}

@media (max-width: 980px) {
    .container {
        width: calc(100% - 40px);
        padding: 0;
    }
    
    /* Скрываем десктопные элементы */
    .header__nav--desktop,
    .header__divider--desktop,
    .header__services--desktop,
    .header__callback-btn--desktop {
        display: none;
    }
    
    /* Показываем бургер */
    .header__burger {
        display: block;
    }
    
    .header__top {
        margin-bottom: 0;
    }
    
    .header__contact {
        gap: 20px;
    }
    
    .header__mobile-content {
        top: 80px;
        height: calc(100vh - 80px);
    }
}

@media (max-width: 768px) {
    .header__contact {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .header__phone-block {
        flex-direction: column;
        gap: 10px;
    }
    
    .header__location {
        display: none;
    }
}

@media (max-width: 640px) {
    .header__logo-image {
        width: 40px;
        height: 40px;
    }
    
    .header__company-name {
        font-size: 18px;
    }
    
    .header__phone {
        font-size: 18px;
    }
    
    .header__mobile-content {
        top: 70px;
        height: calc(100vh - 70px);
    }
}

@media (max-width: 550px) {
    .header__company-name {
        font-size: 15px;
    }
    .header__company-description {
        font-size: 10px;
    }
    .header__phone-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 0;
    }
    
    .header__phone {
        font-size: 13px;
    }
    
    .header__mobile-content {
        top: 60px;
        height: calc(100vh - 60px);
    }
}


/*----- Формы в модальных окнах ----- */

/* Общие стили для модального окна */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.custom-modal__content {
    position: relative;
    background-color: #ffffff;
    padding: 40px 45px;
    max-width: 600px;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 0 30px rgba(54, 106, 208, 0.15);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.custom-modal__title {
    color: #366ad0;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.custom-modal__text {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #242424;
    margin-bottom: 0;
}

.custom-modal__form {
    margin-top: 30px;
}

.custom-modal__close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.custom-modal__close-button:hover {
    background-color: #f5f5f5;
}

.custom-modal__close-button img {
    display: block;
    width: 20px;
    height: 20px;
}

.custom-form__input,
.custom-form__textarea {
    width: 100%;
    color: #242424;
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 0 20px;
    height: 58px;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-form__input:focus,
.custom-form__textarea:focus {
    outline: none;
    border-color: #366ad0;
    box-shadow: 0 0 0 3px rgba(54, 106, 208, 0.1);
}

.custom-form__input::placeholder,
.custom-form__textarea::placeholder {
    color: #999999;
    font-weight: 400;
}

.custom-form__textarea {
    height: 100px;
    padding-top: 15px;
    resize: vertical;
    min-height: 100px;
}

.custom-form__button-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden; 
    border-radius: 12px;
}

.custom-form__button-wrap .custom-form__button-effects {
    position: absolute;
    top: 0;
    left: 30px;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    animation-name: flash;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: 1s;
    pointer-events: none;
}

.custom-form__button-wrap .custom-form__button-effects::before {
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    width: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: skewX(-45deg);
}

@keyframes flash {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.custom-form__button {
    width: 100%;
    height: 58px;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    background-color: #366ad0;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
        text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-form__button:hover {
    background-color: #2a5bb8;
    transform: translateY(-1px);
}

.custom-form__button:active {
    transform: translateY(0);
}

.custom-form__button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.custom-form__link {
    color: #366ad0;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.custom-form__link:hover {
    color: #2a5bb8;
    text-decoration: underline;
}

/* Стили для контейнера чекбокса */
.custom-form__checkbox-wrap {
    margin-bottom: 25px; 
}

/* Стили для текста чекбокса */
.custom-form__checkbox-text {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #242424;
    line-height: 1.4;
}

/* Стили для кастомного чекбокса */
.custom-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 10px;
}

.custom-form__checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #366ad0;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

/* Галочка для чекбокса */
.custom-form__checkbox:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #366ad0;
    transform: translate(-50%, -50%);
}

/* Состояние при наведении */
.custom-form__checkbox:hover {
    border-color: #2a5bb8;
    box-shadow: 0 0 0 3px rgba(54, 106, 208, 0.1);
}

.custom-form__checkbox:checked:hover::before {
    color: #2a5bb8;
}

.custom-form__checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(54, 106, 208, 0.2);
}

/* Адаптивность */
@media (max-width: 980px) {
    .custom-modal__content {
        max-width: calc(100% - 40px);
        margin: 20px;
        padding: 30px 25px;
        border-radius: 12px;
    }
    
    .custom-modal__title {
        font-size: 24px;
    }
    
    .custom-modal__text {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .custom-modal__content {
        max-width: calc(100% - 20px);
        margin: 10px;
        padding: 25px 20px;
    }
    
    .custom-modal__title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .custom-modal__text {
        font-size: 14px;
    }
    
    .custom-modal__form {
        margin-top: 25px;
    }
    
    .custom-form__input,
    .custom-form__textarea {
        height: 50px;
        font-size: 15px;
        padding: 0 15px;
    }
    
    .custom-form__textarea {
        height: 80px;
        padding-top: 12px;
    }
    
    .custom-form__button {
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .custom-modal__content {
        max-width: calc(100% - 10px);
        margin: 5px;
        padding: 20px 15px;
    }
    
    .custom-modal__title {
        font-size: 20px;
    }
    
    .custom-form__checkbox-text {
        font-size: 13px;
    }
}


/* Hero блок */

.hero {
    position: relative;
    padding: 60px 0 80px;
    background: transparent;
    overflow: hidden;
}

.hero__background-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('/assets/images/new-pages/svg/line-hero.svg') no-repeat center;
    background-size: cover;
    z-index: 1;
}

@media (min-width: 1500px) {
.hero__background-line {
    top: 0;
    left: 360px;
    right: 360px;
}
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hero__text-block {
    max-width: 610px;
}

.hero__title {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #242424;
    margin: 0 0 20px 0;
}

.hero__description {
    font-size: 18px;
    line-height: 1.4;
    color: #242424;
    margin: 0 0 30px 0;
}

.hero__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
    max-width: 480px;
}

.hero__input {
    width: 100%;
    height: 58px;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    font-size: 17px;
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 600;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.hero__input:focus {
    outline: none;
    border-color: #366AD0;
}

.hero__input::placeholder {
    color: #A9A9A9;
}

.hero__button {
    padding: 18px 30px;
    background: #366AD0;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero__button:hover {
    background: #2952A3;
}

.hero__consent {
    font-size: 13px;
    line-height: 1.4;
    color: #666666;
    margin: 0;
    max-width: 480px;
}

.hero__consent a {
    color: #366AD0;
    text-decoration: none;
}

.hero__consent a:hover {
    text-decoration: underline;
}

.hero__right-block {
    display: flex;
    flex-direction: row;
        align-items: stretch;
    gap: 15px;
        min-height: 100%;
}

.hero__image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
        display: block;
}

.hero__image-mob {
    display: none;
}

.hero__features {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    max-width: 280px;
}

.hero__feature {
        flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-sizing: border-box;
    
}

.hero__feature-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__feature-icon img {
    width: 100%;
    height: auto;
}

.hero__feature-text {
    font-size: 18px;
    font-weight: 600;
    color: #242424;
    line-height: 1.3;
    text-align: center;
    margin: 0;
}

@media (max-width: 1240px) {
    .hero__image {
        width: auto;
        height: 100%;
    }
    .hero__text-block {
        max-width: 480px;
    }

}

/* Планшеты */
@media (max-width: 1200px) {
    .hero {
        padding: 40px 0 60px;
    }
    .hero__text-block {
        max-width: 400px;
    }

    .hero__title {
        font-size: 36px;
    }
    
    .hero__image {
        height: 100%; /* Важно! Задаём конкретную высоту */
        object-fit: cover; /* Заполняет контейнер с обрезкой */
        object-position: center;
    }

    
    .hero__features {
        gap: 15px;
        width: auto;
    }
}

/* Мобильные устройства */
@media (max-width: 980px) {
    .hero__background-line {
        display: none;
    }
    
    .hero {
        background: #F9F9F9;
        padding: 30px 0 50px;
    }
    
    .hero__content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .hero__text-block {
        max-width: 100%;
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero__form {
        max-width: 640px;
        width: 100%;
    }
    
    .hero__right-block {
        order: 2;
        flex-direction: column; /* На мобильных УТП под фото */
        align-items: center;
        max-width: 640px;
        width: 100%;
    }
    
    .hero__features {
        gap: 15px;
        width: 100%;      
        max-width: 640px;
    }
    
    .hero__title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero__description {
        font-size: 17px;
        margin-bottom: 25px;
    }
    .hero__image-block {
        display: none;
    }  
    .hero__image-mob {
        display: block;
        height: 300px;
        border-radius: 20px;
        width: 100%; 
        max-width: 640px;
        object-fit: cover; 
        object-position: 20% 30%;
        margin-bottom: 30px;
    }

}

/* Средние телефоны */
@media (max-width: 640px) {
    .hero {
        padding: 20px 0 40px;
    }
    
    .hero__form {
        gap: 12px;
    }
    
    .hero__input {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .hero__button {
        padding: 15px 25px;
        font-size: 14px;
    }
}

/* Малые телефоны */
@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }
    
    .hero__description {
        font-size: 15px;
    }
    
    .hero__consent {
        font-size: 12px;
    }
    
    .hero__feature-text {
        font-size: 16px;
    }
}

/*--- Список услуг ----*/

.spisok-uslug {
  padding-bottom: 60px;
  background-color: #f8f8f8;
}

/* Обычный грид для всех экранов > 480px */
.spisok-uslug__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Слайдер скрыт по умолчанию */
.spisok-uslug__slider-container {
  display: none;
  position: relative;
}

.spisok-uslug__swiper {
  width: 100%;
  padding-bottom: 50px;
}

.spisok-uslug__card {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.spisok-uslug__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  z-index: 2;
}

.spisok-uslug__card-title {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #242424;
  margin-bottom: 25px;
  line-height: 1.3;
}

.spisok-uslug__description {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #242424;
  margin-bottom: 12px;
  line-height: 1.4;
}

.spisok-uslug__price {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #366AD0;
  padding: 17px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  width: 150px;
  display: inline-block;
}

.spisok-uslug__link {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #366AD0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.spisok-uslug__link:hover {
  color: #3974E8;
}

.spisok-uslug__image-wrapper {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 150px;
  height: auto;
  z-index: 1;
}

.spisok-uslug__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Кастомизация пагинации */
.spisok-uslug__pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
  display: none;
}


.spisok-uslug__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  opacity: 1;
  margin: 0 4px;
  transition: background-color 0.3s ease;
}

.spisok-uslug__pagination .swiper-pagination-bullet-active {
  background-color: #366AD0;
}

/* Планшеты */
@media (max-width: 1200px) {
  .spisok-uslug__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media (max-width: 980px) {
  .spisok-uslug {
    padding: 40px 0;
  }
  
  .spisok-uslug__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
}


@media (max-width: 740px) {
.spisok-uslug__image-wrapper {
  width: 130px;
}
}


/* СЛАЙДЕР АКТИВЕН НА ЭКРАНАХ ≤ 640px */
@media (max-width: 640px) {
  .spisok-uslug {
    padding: 30px 0;
  }
  
  /* Скрываем грид */
  .spisok-uslug__grid {
    display: none;
  }
  
  /* Показываем слайдер */
  .spisok-uslug__slider-container {
    display: block;
  }

  .spisok-uslug__pagination {
    display: block;
  }
  
  .spisok-uslug__image-wrapper {
      width: 150px;
    }
  
}

/*--- Форма 1 ---*/
    
.discount-form {
  padding-top: 30px;
    padding-bottom: 30px;
  overflow: hidden;
}

.discount-form__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/new-pages/svg/line-hero.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
}

.discount-form__content {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #366AD0;
    padding: 55px;
    border-radius: 20px;
    flex-direction: column;
    height: 410px;
}

.discount-form__text-block {
    z-index: 4;
}

.discount-form__form-block {
    z-index: 3;
}

.discount-form__title {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  max-width: 600px;
}

.discount-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discount-form__inputs {
  display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
}

.discount-form__input {
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  font-size: 16px;
  color: #242424;
  outline: none;
  width: 100%;
  transition: box-shadow 0.3s ease;
}

.discount-form__input::placeholder {
  color: #A9A9A9;
}

.discount-form__input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.discount-form__button {
  padding: 15px 30px;
  background: #242424;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.discount-form__button:hover {
  background: #1a1a1a;
}

.discount-form__consent {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  margin-top: 13px;
}

.discount-form__policy-link {
  color: #ffffff;
  text-decoration: underline;

}

.discount-form__master {
    z-index: 2;
      position: absolute;
      right: 0;
      bottom: 0;
      height: 100%;
      width: auto;
}

.discount-form__master-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Планшеты */
@media (max-width: 1200px) {
    .discount-form__title {
        max-width: 500px;
    }
}

/* Мобильные устройства */
@media (max-width: 980px) {
    .discount-form__content {
        padding: 40px;
        height: auto;
    }
  
  .discount-form__title {
    font-size: 28px;
    max-width: 100%;
  }
  
  .discount-form__inputs {
    gap: 12px;
  }
  
  .discount-form__input {
    padding: 12px 16px;
  }
  
  .discount-form__button {
    padding: 12px 24px;
  }
    .discount-form__master {
    display: none;
  }
  
    .discount-form__form-block {
        width: 100%;
    }
}

/* Средние телефоны */
@media (max-width: 640px) {
    .discount-form__inputs {
        flex-direction: column;
        gap: 15px;
    }

}

/* Малые телефоны */
@media (max-width: 480px) {
  
  .discount-form__title {
    font-size: 24px;
  }
  
  .discount-form__input {
    padding: 10px 14px;
    font-size: 17px;
  }
  
  .discount-form__button {
    padding: 10px 20px;
    font-size: 17px;
  }
  
  .discount-form__consent {
    font-size: 14px;
  }
      .discount-form__content {
        padding: 30px 20px;
    }
}


/*--- Краткий текст ---*/
.info-hero {
    padding-top: 60px;
    padding-bottom: 30px;
}

.info-hero h2 {
    margin-bottom: 40px;
}

.info-hero__content {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.info-hero__text {
    flex: 1;
}

.info-hero__text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.info-hero__text p:last-child {
    margin-bottom: 0;
}

.info-hero__image {
    flex-shrink: 0;
    max-width: 640px;
}

.info-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Планшеты и мобильные устройства */
@media (max-width: 980px) {
    .info-hero__content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .info-hero__image {
        max-width: 640px;
        width: 100%;
    }
    .info-hero__image img {
        height: 350px;
        object-fit: cover;
    }
}

/* Средние и малые телефоны */
@media (max-width: 640px) {
    .info-hero__image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .info-hero__image img {
        height: 220px;
        object-fit: cover;
    }
}

/*---- Почему мы? блок с табами ----*/
.why-choose {
  padding: 60px 0 30px 0;
}

.why-choose__tabs {
  position: relative;
}

.why-choose__tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  position: absolute;
    top: 0;
    right: 0;
}

.why-choose__tab-button {
  padding: 17px 20px;
  background: #DBE4FB;
  border-radius: 12px;
  color: #366AD0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  width: 170px;
}

.why-choose__tab-button:hover {
  color: #ffffff;
  background: #366AD0;    
}

.why-choose__tab-button--active {
  color: #ffffff;
  background: #366AD0;    
}

.why-choose__tab-panel {
  width: 100%;
  display: none;
}

.why-choose__tab-panel--active {
  display: block;
}

.why-choose__content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.why-choose__text {
  flex: 1;
  max-width: 550px;
  padding-top: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
}

.why-choose__subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
}

.why-choose__description {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

.why-choose__image {
  flex-shrink: 0;
  max-width: 525px;
}

.why-choose__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Мобильная версия - аккордеон */
.why-choose__accordion {
  display: none;
}

.why-choose__accordion-item {
  width: 100%;
  margin-bottom: 10px;
}

.why-choose__accordion-button {
  width: 100%;
  padding: 17px 20px;
  background: #DBE4FB;
  border-radius: 12px;
  color: #366AD0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  text-align: left;
}

.why-choose__accordion-button--active {
  color: #ffffff;
  background: #366AD0;
}

.why-choose__accordion-content {
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.why-choose__accordion-content--active {
  display: block;
}

.why-choose__accordion-wrapper {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose__accordion-image {
  width: 100%;
}

.why-choose__accordion-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.why-choose__accordion-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-choose__accordion-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
}

.why-choose__accordion-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Адаптивность */
@media (max-width: 1240px) {
    .why-choose__tab-button {
    padding: 17px 40px;
    width: auto;
}
  .why-choose__content-wrapper {
    gap: 30px;
  }
  
  .why-choose__text {
    padding-top: 100px;
  }
  
  .why-choose__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
    .why-choose__tab-button {
        padding: 17px 30px;
    }
    .why-choose__img {
        height: 323px;
        object-fit: cover;
    }
    
    .why-choose__image {
        max-width: 440px;
    }
}

@media (max-width: 1024px) {
    .why-choose__image {
        max-width: 378px;
    }
}

@media (max-width: 980px) {
  .why-choose__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .why-choose__text {
    max-width: 100%;
    padding-top: 0;
    gap: 15px;
  }
  
  .why-choose__image {
    max-width: 100%;
  }
  
    .why-choose__tab-buttons {
        flex-direction: column;
    }
}

@media (max-width: 780px) {
    .why-choose__image {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
  /* Скрываем десктопную версию */
  .why-choose__tabs--desktop {
    display: none;
  }
  
  /* Показываем мобильную версию */
  .why-choose__accordion--mobile {
    display: block;
  }
  
  .why-choose {
    padding: 40px 0 30px 0;
  }
  
  .why-choose__accordion-subtitle {
    font-size: 20px;
  }
  
  .why-choose__accordion-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .why-choose__accordion-button {
    padding: 15px 16px;
    font-size: 16px;
  }
  
}

/*---- СЛАЙДЕР МАСТЕРА ----*/
.masters-slider {
  padding: 60px 0 30px 0;
}

.masters-slider__wrapper {
  position: relative;
}

.masters-slider__navigation {
  position: absolute;
  top: 50%;
  left: -35px;
  right: -35px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.masters-slider__arrow {
  position: absolute;
  top: 0;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masters-slider__arrow--prev {
  left: 0;
}

.masters-slider__arrow--next {
  right: 0;
}

.masters-slider__arrow img {
  height: 33px;
  width: auto;
}

.masters-slider__swiper {
  overflow: hidden;
}

/* Сделать все слайды одинаковой высоты */
.masters-slider__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.masters-slider__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  height: 100%;
}

.masters-slider__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.masters-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.masters-slider__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.masters-slider__name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.masters-slider__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.masters-slider__rating img {
  height: 22px;
  width: auto;
}

.masters-slider__score {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.masters-slider__details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.masters-slider__text {
  font-size: 14px;
  margin: 0;
  color: #242424;
}

.masters-slider__certified {
  display: flex;
  align-items: center;
  gap: 6px;
      flex-direction: row-reverse;
    justify-content: flex-end;
}

.masters-slider__certified img {
  height: 24px;
  width: auto;
}

.masters-slider__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 49px;
  background: #366AD0;
  color: white !important;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.masters-slider__button:hover {
  background: #2a5bb8;
  color: white !important;
}

/* Точки видны только на экранах ниже 640px */
.masters-slider__pagination {
  display: none;
  margin-top: 12px;
  text-align: center;
  position: static !important;
}

.masters-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background: #DBE4FB;
  opacity: 1;
}

.masters-slider__pagination .swiper-pagination-bullet-active {
  background: #366AD0;
}

/* Медиа-запросы */
@media (max-width: 1100px) {
  .masters-slider__navigation {
    left: -30px;
    right: -30px;
  }
}

@media (max-width: 980px) {
  .masters-slider__navigation {
    left: -20px;
    right: -20px;
  }
}

@media (max-width: 640px) {
  .masters-slider__navigation {
    display: none;
  }
  
  .masters-slider__pagination {
    display: block;
  }
  .masters-slider {
        padding: 40px 0 30px 0;
    }
}

/*---- СЕРТИФИКАТЫ ----*/

.certificates {
  padding: 60px 0 30px 0;
}

.certificates__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #242424;
  margin-bottom: 25px;
}

.certificates__slider-wrapper {
  width: 100%;
}

.certificates-slider {
  width: 100%;
  overflow: hidden;
}

.certificates-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.certificates-slider .swiper-slide {
  height: auto;
  display: flex;
}

.certificates-slider__item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.certificates-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.certificates-slider__pagination {
  display: none;
  margin-top: 12px;
  text-align: center;
  position: static !important;
}

.certificates-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background: #DBE4FB;
  opacity: 1;
}

.certificates-slider__pagination .swiper-pagination-bullet-active {
  background: #366AD0;
}

/* Адаптивность */
@media (max-width: 980px) {
  .certificates-slider__pagination {
    display: block;
  }
}

@media (max-width: 640px) {
  .certificates {
    padding: 40px 0;
  }

    .certificates {
        padding: 40px 0 30px 0;
    }
}

@media (max-width: 480px) {
  .certificates {
    padding: 30px 0;
  }
  
  .certificates__content {
    gap: 20px;
  }
}

/*---- ОТЗЫВЫ ----*/

.reviews {
  padding: 60px 0 30px 0;
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.reviews__title {
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  color: #242424;
}

.reviews__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 58px;
  background: #366AD0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.reviews__button:hover {
  background: #2856b8;
}

.reviews__content {
  position: relative;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reviews__card {
  background: #ffffff;
  border: 1px solid #C8C8C8;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.reviews__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.reviews__user {
  display: flex;
  gap: 25px;
  align-items: center;
}

.reviews__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
      object-position: top;
}

.reviews__user-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
      align-items: flex-start;
}

.reviews__user-name {
  font-size: 18px;
  font-weight: 600;
  color: #366AD0;
  margin: 0;
}

.reviews__company-logo {
  height: 14px;
  width: auto;
  object-fit: contain;
}

.reviews__rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.reviews__date {
  font-size: 14px;
  font-weight: 500;
  color: #242424;
}

.reviews__stars {
  height: 22px;
  width: auto;
}

.reviews__text {
  font-size: 14px;
  font-weight: 500;
  color: #242424;
  line-height: 1.5;
}

.reviews__slider {
  display: none !important;
}

.reviews__pagination {
  display: none;
  margin-top: 12px;
  text-align: center;
  position: static !important;
}

.reviews__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background: #DBE4FB;
  opacity: 1;
}

.reviews__pagination .swiper-pagination-bullet-active {
  background: #366AD0;
}

/* Адаптивность */
@media (max-width: 1200px) {
 .reviews__button {
    width: 100%;
    max-width: 270px;
  }
}

@media (max-width: 980px) {
  .reviews {
    padding: 40px 0;
  }
  
  .reviews__title {
    font-size: 28px;
  }
  
  .reviews__rating {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
    .reviews__grid {
        grid-template-columns: 1fr;
      }
  
  .reviews {
      padding: 40px 0 30px 0;
    }
    
}

@media (max-width: 640px) {
  .reviews {
    padding: 30px 0;
  }
  
  .reviews__title {
    font-size: 24px;
  }
  
  .reviews__button {
    height: 48px;
    font-size: 15px;
  }
  
  .reviews__grid {
    display: none;
  }
  
  .reviews__slider {
    display: block !important;
  }
  
  .reviews__pagination {
    display: block;
  }
  
  .reviews__card-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .reviews__rating {
    flex-direction: row;
    align-items: center;
    align-self: flex-start;
  }
  
   .reviews__button {
    max-width: 200px;
  }
  .reviews__user {
    gap: 15px;
  }
  
  .reviews__avatar {
    width: 40px;
    height: 40px;
  }
  
  .reviews__user-name {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
    
  .reviews__header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .reviews__card {
    padding: 15px;
    gap: 20px;
  }
  
 .reviews__button {
    max-width: 300px;
  }
  
  .reviews__user {
    gap: 12px;
  }
  
  .reviews__user-info {
    gap: 8px;
  }
}



/*--- Форма 2 ---*/

.contact-form {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

.contact-form__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/new-pages/svg/line-form-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
  border-radius: 20px;
}

.contact-form__content {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
    background: #366AD0;
    padding: 55px;
    border-radius: 20px;
    justify-content: space-between;
}

.contact-form__text-block {
  z-index: 4;
}

.contact-form__form-block {
  z-index: 3;
}

.contact-form__title {
  color: #ffffff;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.contact-form__subtitle {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  max-width: 470px;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form__input {
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  font-size: 16px;
  color: #242424;
  outline: none;
  width: 100%;
  height: 50px;
}

.contact-form__input::placeholder {
  color: #A9A9A9;
}

.contact-form__button {
  padding: 15px 30px;
  background: #ffffff;
  color: #366ad0;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact-form__consent {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  margin-top: 13px;
  opacity: 0.9;
}

.contact-form__policy-link {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact-form__policy-link:hover {
  opacity: 0.8;
}

/* Планшеты */
@media (max-width: 1200px) {
  .contact-form__subtitle {
    max-width: 450px;
  }
 
}

/* Мобильные устройства */
@media (max-width: 980px) {
  .contact-form__content {
    padding: 40px;
    flex-direction: column;
  }
  
  .contact-form__subtitle {
    font-size: 18px;
    max-width: 100%;
     text-align: center;
  }
  
  .contact-form__form-block {
    width: 100%;
  }
    .contact-form__title {
        text-align: center;
  }
}

/* Средние телефоны */
@media (max-width: 640px) {

}

/* Малые телефоны */
@media (max-width: 480px) {
  .contact-form__title {
    font-size: 90px;
  }
  
  .contact-form__consent {
    font-size: 14px;
  }
  
  .contact-form__content {
    padding: 30px 20px;
  }
}


/*----- FAQ блок ----*/


.faq-block {
    padding: 60px 0 30px 0;
}

.faq-block__content {
    display: flex;
    gap: 20px;
}

.faq-block__accordion {
    flex: 1;
}

.faq-block__expert {
    width: 300px;
    flex-shrink: 0;
}

.faq-item {
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}
.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item__header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    cursor: pointer;
}

.faq-item__title {
    font-size: 25px;
    font-weight: 500;
    color: #242424;
    margin: 0;
    flex: 1;
}

.faq-item__arrow {
    width: 30px;
    height: 30px;
    color: #242424;
    transition: all 0.3s ease;
}

.faq-item__content {
    display: none;
    padding: 0 30px 30px;
}

.faq-item__line {
    height: 1px;
    background: #D3D3D3;
    margin-bottom: 30px;
}

.faq-item__text {
    font-size: 16px;
    color: #242424;
    line-height: 1.5;
}

.faq-item--active .faq-item__title {
    color: #366AD0;
}

.faq-item--active .faq-item__arrow {
    color: #366AD0;
    transform: rotate(90deg);
}

.faq-item--active .faq-item__content {
    display: block;
}

.expert-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
}

.expert-card__label {
    font-size: 20px;
    font-weight: 700;
    color: #242424;
}

.expert-card__photo {
    width: 100%;
    height: 195px;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}

.expert-card__info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expert-card__name {
    font-size: 24px;
    font-weight: 600;
    color: #242424;
    margin: 0;
}

.expert-card__position,
.expert-card__education {
    font-size: 14px;
    font-weight: 500;
    color: #242424;
    margin: 0;
}

.expert-card__phone {
    font-size: 24px;
    font-weight: 600;
    color: #366AD0;
    text-decoration: none;
}

.expert-card__button {
    height: 50px;
    width: 100%;
    background: #366AD0;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.expert-card__button:hover {
    background: #2a5bb8;
}

@media (max-width: 980px) {
    .faq-block__content {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-block__expert {
        width: 100%;
        max-width: 640px;
        order: 2;
    }
    
    .faq-block__accordion {
        order: 1;
    }
}

@media (max-width: 640px) {
    .faq-item__header {
        gap: 20px;
        padding: 20px;
    }
    
    .faq-item__title {
        font-size: 20px;
    }
    
    .faq-item__content {
        padding: 0 20px 20px;
    }
    
    .expert-card {
        padding: 15px;
        gap: 15px;
    }
    
    .reviews {
        padding: 30px 0;
      }
}

/*---- Контакты ----*/


/*---- Карта ----*/

.map {
    padding-top: 40px;
}

.map__content {
    height: 400px;
}

.map__content iframe {
    border-radius: 20px;
}

/*---- ФУТЕР ----*/

.footer {
  background-color: #242424;
  color: #f9f9f9;
  padding: 30px 0;
  margin-top: 60px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
      width: 100%;
}

/* Основной контент */
.footer__main {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 40px;
  align-items: start;
}

/* Брендинг */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__logo {
  width: 35px;
  height: auto;
}

.footer__logo-link {
  display: block;
  line-height: 0;
}

.footer__brand-name {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f9f9f9;
  text-decoration: none;
  line-height: 1.55;
}

.footer__brand-name:hover {
  opacity: 0.8;
}

      .footer__nav-row {
        display: flex;
        gap: 30px;
        justify-content: space-between;
    }
/* Навигация */
.footer__nav {
  display: flex;
  gap: 60px;
}

.footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  color: #b6b6b6;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.55;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: #f9f9f9;
}

/* Дополнительные ссылки */
.footer__additional {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__additional-link {
  color: #b6b6b6;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.55;
  transition: color 0.3s ease;
}

.footer__additional-link:hover {
  color: #f9f9f9;
}

/* Контакты */
.footer__contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  text-align: right;
}

.footer__phone {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #f9f9f9;
  text-decoration: none;
  margin-bottom: 16px;
  line-height: 1.55;
}

.footer__phone:hover {
  opacity: 0.8;
}

.footer__address {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  line-height: 1.55;
      max-width:190px;
}

/* Нижняя часть */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.footer__copyright-text {
  font-size: 11px;
  color: #b6b6b6;
  margin: 0;
  line-height: 1.55;
}

/* Оплата */
.footer__payment {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__payment-text {
  font-size: 10px;
  color: #b6b6b6;
  line-height: 1.55;
}

.footer__payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__payment-icon {
  height: 20px;
  width: auto;
}

.footer__payment-icon:last-child {
  height: 38px;
}

/* Правовая информация */
.footer__legal-link {
  font-size: 12px;
  color: #b6b6b6;
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: #f9f9f9;
}

/* Адаптивность */
@media screen and (max-width: 1200px) {
  .footer__main {
    gap: 30px;
  }
  
  .footer__nav {
    gap: 40px;
  }
  
  .footer__brand {
    gap: 15px;
  }
  
  .footer__logo {
    width: 38px;
  }
}

@media screen and (max-width: 980px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
  }
  
    .footer__contact {
        position: absolute;
        top: 0;
        right: 0;
    }
    .footer__nav-row {
        justify-content: flex-start;
    }
  
  .footer__nav {
    gap: 30px;
  }
    
}

@media screen and (max-width: 640px) {
  .footer {
    padding: 20px 0;
  }
  
  .footer__wrapper {
    gap: 30px;
  }
  
  .footer__main {
    gap: 25px;
  }
  
  .footer__nav {
    flex-direction: column;
    gap: 20px;
  }
  
    .footer__bottom {
    flex-direction: column;
    gap: 15px;
  }
  
  
  .footer__payment {
    order: -1;
  }
  
  .footer__copyright {
      order: 3;
  }
  
  .footer__payment-icons {
    gap: 6px;
  }
  
  .footer__payment-icon {
    height: 18px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 15px 0;
  }
  
  .footer__wrapper {
    gap: 25px;
  }
  
  .footer__main {
    gap: 20px;
  }
  
  .footer__brand {
    gap: 12px;
    order: 0;
  }
 
    .footer__contact {
        position: static;
        order: 1;
        text-align: left;
        align-items: flex-start;
    } 
    
  .footer__nav-row {
      order: 2;
  }
  .footer__brand-name {
    font-size: 17px;
  }
  
  .footer__nav-link,
  .footer__additional-link {
    font-size: 13px;
  }
  
  .footer__copyright-text {
    font-size: 10px;
  }
  
  .footer__legal-link {
    font-size: 11px;
  }
}

/*---- Страница Отзывы ----*/

.reviews__page {
    grid-template-columns: 1fr;
}

.review-form {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

.review-form__content {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background-color: #366AD0;
  padding: 55px;
  border-radius: 20px;
  flex-direction: column;
  min-height: 410px;
}

.review-form__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/new-pages/svg/line-hero.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
}

.review-form__text-block {
  z-index: 4;
}

.review-form__form-block {
  z-index: 3;
  width: 100%;
}

.review-form__title {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  max-width: 600px;
}

.review-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-form__inputs {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: space-between;
}

.review-form__input {
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  font-size: 17px;
  font-weight: 500;
  color: #242424;
  outline: none;
  width: 100%;
  height: 58px;
  transition: box-shadow 0.3s ease;
}

.review-form__input::placeholder {
  color: #A9A9A9;
}

.review-form__input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.review-form__textarea {
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  font-size: 17px;
  font-weight: 500;
  color: #242424;
  outline: none;
  width: 100%;
  min-height: 180px;
  resize: vertical;
  font-family: inherit;
  transition: box-shadow 0.3s ease;
}

.review-form__textarea::placeholder {
  color: #A9A9A9;
}

.review-form__textarea:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.review-form__bottom {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.review-form__rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-column: 1;
}

.review-form__stars {
  display: flex;
  gap: 8px;
  cursor: pointer;
}

.review-form__star {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.review-form__star:hover {
  transform: scale(1.1);
}

.review-form__consent {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  grid-column: 2;
}

.review-form__policy-link {
  color: #ffffff;
  text-decoration: underline;
}

.review-form__button {
  padding: 15px 30px;
  background: #242424;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  grid-column: 3;
  justify-self: end;
  width: 100%;
}

.review-form__button:hover {
  background: #1a1a1a;
}

/* Планшеты */
@media (max-width: 1200px) {
  .review-form__title {
    max-width: 500px;
  }
  
  .review-form__bottom {
    gap: 30px;
  }
}

/* Мобильные устройства */
@media (max-width: 980px) {
  .review-form__content {
    padding: 40px;
    min-height: auto;
  }

  .review-form__title {
    font-size: 28px;
    max-width: 100%;
  }

  .review-form__inputs {
    gap: 12px;
  }

  .review-form__input,
  .review-form__textarea {
    padding: 12px 16px;
  }

  .review-form__bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .review-form__rating {
    order: 1;
  }

  .review-form__consent {
    order: 2;
    text-align: center;
    max-width: 100%;
  }

  .review-form__button {
    order: 3;
    width: 100%;
    height: 58px;
    padding: 0;
    font-weight: 500;
    justify-self: stretch;
  }

  .review-form__stars {
    justify-content: center;
  }
}

/* Средние телефоны */
@media (max-width: 640px) {
  .review-form__inputs {
    flex-direction: column;
    gap: 15px;
  }
}

/* Малые телефоны */
@media (max-width: 480px) {
  .review-form__title {
    font-size: 24px;
  }

  .review-form__input,
  .review-form__textarea {
    padding: 10px 14px;
    font-size: 17px;
  }

  .review-form__button {
    font-size: 17px;
  }

  .review-form__consent {
    font-size: 14px;
  }

  .review-form__content {
    padding: 30px 20px;
  }

  .review-form__star {
    width: 28px;
    height: 28px;
  }

  .review-form__stars {
    gap: 6px;
  }
}


/*---- Страница мастеров ----*/

.master-page {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Основной заголовок */
.master-page__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  color: #242424;
  margin: 0 0 20px 0;
  text-align: left;
}

/* Описательный текст */
.master-page__description {
  margin-bottom: 60px;
}

.master-page__text {
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  text-align: left;
}

/* Блок с картинкой и информацией */
.master-page__content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.master-page__image {
  flex-shrink: 0;
  width: 100%;
  max-width: 525px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #f5f5f5;
}

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

.master-page__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  height: 300px;
}

.master-page__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.master-page__rating img {
  height: 22px;
  width: auto;
}

.master-page__score {
  font-size: 18px;
  font-weight: bold;
  color: #242424;
}

.master-page__details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.master-page__detail {
  font-size: 14px;
  margin: 0;
  color: #242424;
}

.master-page__certified {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.master-page__certified img {
  height: 24px;
  width: auto;
}

.master-page__certified-text {
  font-size: 14px;
  margin: 0;
  color: #242424;
}

/* Форма консультации */
.master-page__form-wrapper {
  background-color: #366AD0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.master-page__form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/new-pages/svg/line-hero.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
}

.master-page__form-content {
  position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 55px;
    z-index: 2;
    flex-direction: column;
}

.master-page__form-text {
}

.master-page__form-title {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
}

.master-page__form-block {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.master-page__form {
  display: flex;
  gap: 15px;
  align-items: center;
  width: 100%;
}

.master-page__input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  font-size: 16px;
  color: #242424;
  outline: none;
  height: 58px;
  transition: box-shadow 0.3s ease;
}

.master-page__input::placeholder {
  color: #A9A9A9;
}

.master-page__input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.master-page__button {
      flex: 1;
  padding: 15px 30px;
  background: #242424;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  height: 58px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.master-page__button:hover {
  background: #1a1a1a;
}

.master-page__consent {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  max-width: 385px;
}

.master-page__policy-link {
  color: #ffffff;
  text-decoration: underline;
}

/* Планшеты */
@media (max-width: 1200px) {
  .master-page__title {
    font-size: 32px;
  }
  
  .master-page__content {
    gap: 30px;
  }
  
  .master-page__image {
    max-width: 400px;
    height: 300px;
  }
  
  .master-page__form-content {
    gap: 30px;
    padding: 40px;
  }
  
  .master-page__form-title {
    font-size: 26px;
  }
}

/* Мобильные устройства */
@media (max-width: 980px) {
  .master-page__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .master-page__text {
    font-size: 16px;
  }
  .master-page__form-block {
    flex-direction: column;
}
  
  .master-page__content {
    flex-direction: column;
    gap: 20px;
  }
  
  .master-page__image {
    max-width: 100%;
    height: 300px;
    align-self: center;
  }
  
  .master-page__info {
    align-self: stretch;
  }
  
  .master-page__rating {
    justify-content: center;
  }
  
  .master-page__details {
    align-items: center;
  }
  
  .master-page__detail {
    text-align: center;
  }
  
  .master-page__certified {
    justify-content: center;
  }
  
  .master-page__form-content {
    flex-direction: column;
    gap: 24px;
    padding: 30px;
    text-align: center;
  }
  
  .master-page__form {
    flex-direction: column;
    gap: 15px;
  }
  
  .master-page__input,
  .master-page__button {
    width: 100%;
  }
}

/* Средние телефоны */
@media (max-width: 640px) {
  .master-page__title {
    font-size: 24px;
  }
  
  .master-page__text {
    font-size: 15px;
  }
  
  .master-page__info {
    padding: 16px;
  }
  
  .master-page__form-content {
    padding: 24px;
  }
  
  .master-page__form-title {
    font-size: 22px;
  }
}

/* Малые телефоны */
@media (max-width: 480px) {
  .master-page__title {
    font-size: 22px;
  }
  
  .master-page__text {
    font-size: 14px;
  }
  
  .master-page__info {
    padding: 16px;
    gap: 16px;
  }
  
  .master-page__image {
    height: 300px;
  }
  
  .master-page__rating img {
    height: 20px;
  }
  
  .master-page__score {
    font-size: 16px;
  }
  
  .master-page__detail {
    font-size: 13px;
  }
  
  .master-page__certified img {
    height: 22px;
  }
  
  .master-page__certified-text {
    font-size: 13px;
  }
  
  .master-page__form-content {
    padding: 20px;
  }
  
  .master-page__form-title {
    font-size: 20px;
  }
  
  .master-page__input,
  .master-page__button {
    padding: 12px 16px;
    font-size: 16px;
  }
  
  .master-page__consent {
    font-size: 13px;
  }
}

/*---- Страница мастера (блок сертификатов) ----*/

.master-certificates {
  padding: 60px 0 30px 0;
}

.master-certificates__content {
  display: flex;
  flex-direction: column;
}

.master-certificates__slider-wrapper {
  width: 100%;
}

.master-certificates-slider {
  width: 100%;
  overflow: hidden;
}

.master-certificates-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.master-certificates-slider .swiper-slide {
  height: auto;
  display: flex;
}

.master-certificates-slider__item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.master-certificates-slider__image {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.master-certificates-slider__pagination {
  display: none;
  margin-top: 12px;
  text-align: center;
  position: static !important;
}

.master-certificates-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background: #DBE4FB;
  opacity: 1;
}

.master-certificates-slider__pagination .swiper-pagination-bullet-active {
  background: #366AD0;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .master-certificates-slider__image {
    height: 500px;
  }
}

@media (max-width: 980px) {
  .master-certificates {
    padding: 50px 0 30px 0;
  }
  
  .master-certificates-slider__pagination {
    display: block;
  }
  
  .master-certificates-slider__image {
    height: 500px;
  }
}

@media (max-width: 640px) {
  .master-certificates {
    padding: 40px 0 30px 0;
  }
  
  .master-certificates__content {
    gap: 25px;
  }
    .master-certificates-slider__image {
    height: 400px;
  }
}

@media (max-width: 540px) {
    .master-certificates-slider__image {
    height: auto;
  }
}


@media (max-width: 480px) {
  .master-certificates {
    padding: 30px 0;
  }
  
  .master-certificates__content {
    gap: 20px;
  }
  
  .master-certificates-slider__image {
    height: 400px;
  }

.master-certificates__slider-wrapper {
    margin-top: -20px;
}
}
