

/* Start:/local/templates/green_cert/styles/style.css?178583690165720*/
@charset "UTF-8";

/*Переменные*/

/*Миксины*/

/* Общее */

    .form-cert {
        padding: 80px 0;
        background: url('/green-cert/bg08.png') center center / cover no-repeat;
        position: relative;
    }
    .form-cert::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    .form-cert .contain {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
        display: flex;
        gap: 60px;
        align-items: flex-start;
    }
    .form-cert__info {
        flex: 0 0 380px;
        padding-top: 20px;
    }
    .form-cert__title {
        font-family: 'Golos Text', sans-serif;
        font-weight: 700;
        font-size: 26px;
        line-height: 31px;
        color: #FFFFFF;
        margin: 0 0 20px 0;
    }
    .form-cert__subtitle {
        font-family: 'Golos Text', sans-serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 18px;
        color: #FFFFFF;
        margin: 0 0 32px 0;
    }
    .form-cert__fields {
        flex: 1;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    }
    .form-cert__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    .form-cert__field {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .form-cert__field label {
        font-family: 'Golos Text', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #333;
    }
    .form-cert__field input,
    .form-cert__field select {
        padding: 12px 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
        font-family: 'Golos Text', sans-serif;
        transition: border-color 0.3s ease;
        background: #fff;
        width: 100%;
        box-sizing: border-box;
    }
    .form-cert__field input:focus,
    .form-cert__field select:focus {
        border-color: #007800;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0,120,0,0.1);
    }
    .form-cert__field input.error,
    .form-cert__field select.error {
        border-color: #dc3545 !important;
    }
    .form-cert__field .error-message {
        color: #dc3545;
        font-size: 12px;
        display: none;
        margin-top: 4px;
    }
    .form-cert__field .error-message.show {
        display: block;
    }
    .form-cert__field--full {
        grid-column: 1 / -1;
    }
    .form-cert__field--optional label::after {
        content: " (необязательно)";
        font-weight: 400;
        color: #949CA6;
        font-size: 12px;
    }
    .form-cert__submit {
        margin-top: 16px;
        width: 100%;
        padding: 16px;
        background: #007800;
        color: #fff;
        font-family: 'Golos Text', sans-serif;
        font-weight: 700;
        font-size: 16px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .form-cert__submit:hover {
        background: #005a00;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,120,0,0.3);
    }
    .form-cert__submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    .form-cert__errors {
        color: #dc3545;
        font-size: 14px;
        margin-top: 12px;
        padding: 8px 12px;
        background: rgba(220, 53, 69, 0.1);
        border-radius: 8px;
        display: none;
    }
    .form-cert__errors.show {
        display: block;
    }
    .form-cert__success {
        display: none;
        padding: 20px;
        background: #d4edda;
        border-radius: 8px;
        text-align: center;
        margin-top: 16px;
    }
    .form-cert__success.show {
        display: block;
    }
    .form-cert__success h2 {
        font-family: 'Golos Text', sans-serif;
        font-weight: 700;
        font-size: 24px;
        color: #155724;
        margin: 0;
    }
    .form-cert__success p {
        font-family: 'Golos Text', sans-serif;
        font-size: 16px;
        color: #155724;
        margin: 8px 0 0 0;
    }

    /* ===== АДАПТИВ ===== */
    @media (max-width: 1200px) {
        .form-cert .contain {
            gap: 40px;
        }
        .form-cert__info {
            flex: 0 0 300px;
        }
        .form-cert__title {
            font-size: 22px;
            line-height: 28px;
        }
    }
    @media (max-width: 992px) {
        .form-cert {
            padding: 60px 0;
        }
        .form-cert .contain {
            flex-direction: column;
            gap: 30px;
            padding: 0 20px;
        }
        .form-cert__info {
            flex: 1;
            width: 100%;
            padding-top: 0;
            text-align: center;
        }
        .form-cert__title {
            font-size: 24px;
            line-height: 29px;
        }
        .form-cert__fields {
            padding: 30px 24px;
            width: 100%;
            box-sizing: border-box;
        }
    }
    @media (max-width: 768px) {
        .form-cert {
            padding: 40px 0;
        }
        .form-cert .contain {
            flex-direction: column;
            gap: 20px;
            padding: 0;
            max-width: 100%;
        }
        .form-cert__info {
            text-align: center;
            padding: 0 16px;
        }
        .form-cert__title {
            font-size: 20px;
            line-height: 26px;
            margin-bottom: 12px;
        }
        .form-cert__subtitle {
            font-size: 14px;
            line-height: 17px;
            margin-bottom: 20px;
        }
        .form-cert__fields {
            padding: 20px 16px;
            border-radius: 0;
            width: 100%;
            box-sizing: border-box;
        }
        .form-cert__row {
            grid-template-columns: 1fr;
            gap: 12px;
            margin-bottom: 12px;
        }
        .form-cert__field label {
            font-size: 12px;
        }
        .form-cert__field input,
        .form-cert__field select {
            padding: 10px 14px;
            font-size: 13px;
            width: 100%;
            box-sizing: border-box;
        }
        .form-cert__submit {
            padding: 14px;
            font-size: 14px;
            width: 100%;
            box-sizing: border-box;
        }
    }
    @media (max-width: 480px) {
        .form-cert {
            padding: 30px 0;
        }
        .form-cert__fields {
            padding: 16px 12px;
        }
        .form-cert__row {
            gap: 10px;
            margin-bottom: 10px;
        }
        .form-cert__field input,
        .form-cert__field select {
            padding: 8px 12px;
            font-size: 12px;
        }
        .form-cert__submit {
            padding: 12px;
            font-size: 13px;
        }
    }
    /* ===== ОБЩИЕ СТИЛИ ===== */
    .contain {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .flex {
        display: flex;
    }
    .txt--20 {
        font-size: 20px;
    }
/* ===== БЛОК 1: ГЕРОЙ (Hero) ===== */
.hero-cert {
    position: relative;
    width: 100%;
    min-height: 568px;
    background: url('/green-cert/bg01.png') center center / cover no-repeat;
    overflow: hidden;
}
.hero-cert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 56, 87, 0.3);
    z-index: 1;
}
.hero-cert .contain {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 120px 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.hero-cert__label {
    display: inline-block;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 6px 14px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #314673;
}
.hero-cert__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #FFFFFF;
    margin: 0;
    max-width: 1200px;
}
.hero-cert__subtitle {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0;
}
.hero-cert__box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.8);
    border-left: 3px solid #007800;
    border-radius: 8px;
}
.hero-cert__box-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #293857;
    margin: 0;
}
.hero-cert__box-desc {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #293857;
    margin: 0;
}
.hero-cert__button {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    background: #FF941B;
    border-radius: 8px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-cert__button:hover {
    background: #e68200;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 148, 27, 0.3);
}

/* Адаптив для Hero */
@media (max-width: 1200px) {
    .hero-cert .contain {
        padding: 40px 20px;
    }
    .hero-cert__title {
        font-size: 32px;
        line-height: 38px;
    }
    .hero-cert__box {
        padding: 16px 20px;
    }
    .hero-cert__box-text {
        font-size: 16px;
        line-height: 20px;
    }
}
@media (max-width: 768px) {
    .hero-cert {
        min-height: auto;
    }
    .hero-cert .contain {
        padding: 30px 16px;
        gap: 16px;
    }
    .hero-cert__title {
        font-size: 26px;
        line-height: 32px;
    }
    .hero-cert__subtitle {
        font-size: 15px;
        line-height: 19px;
    }
    .hero-cert__label {
        font-size: 12px;
        padding: 4px 12px;
    }
    .hero-cert__box {
        padding: 14px 16px;
        gap: 10px;
    }
    .hero-cert__box-text {
        font-size: 14px;
        line-height: 18px;
    }
    .hero-cert__box-desc {
        font-size: 13px;
        line-height: 16px;
    }
    .hero-cert__button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* ===== БЛОК 2: ЧТО ТАКОЕ ЗЕЛЁНЫЙ СЕРТИФИКАТ ===== */
.what-is {
    padding: 30px 0 80px;
    background: #EDEDED;
    position: relative;
    overflow: hidden;
    min-height: 438px;
}
/* Иконка листика на фоне */
.what-is::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -95px;
    width: 765px;
    height: 672px;
    background: url('/green-cert/icon.svg') center center / contain no-repeat;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}
.what-is .contain {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.what-is__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #212121;
    margin: 0 0 28px 0;
}
.what-is__box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-left: 3px solid #007800;
    border-radius: 8px;
    margin-bottom: 28px;
}
.what-is__box-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #383838;
    margin: 0;
}
.what-is__steps-title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #212121;
    margin: 0 0 28px 0;
}
.what-is__steps-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.what-is__steps-list li {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #383838;
    padding-left: 20px;
    position: relative;
}
.what-is__steps-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007800;
    font-weight: 700;
}

/* Адаптив для Блока 2 */
@media (max-width: 1200px) {
    .what-is::before {
        width: 400px;
        height: 400px;
        right: -30px;
        top: -30px;
    }
}
@media (max-width: 768px) {
    .what-is {
        padding: 40px 0 60px;
        min-height: auto;
    }
    .what-is::before {
        width: 250px;
        height: 250px;
        right: -20px;
        top: -10px;
        opacity: 0.08;
    }
    .what-is__title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .what-is__box {
        padding: 14px 16px;
        margin-bottom: 20px;
    }
    .what-is__box-text {
        font-size: 13px;
        line-height: 16px;
    }
    .what-is__steps-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    .what-is__steps-list li {
        font-size: 13px;
        line-height: 16px;
        padding-left: 16px;
        margin-bottom: 4px;
    }
}

/* ===== БЛОК 3: ДЛЯ КОГО ===== */
.for-whom-cert {
    padding: 56px 0 80px;
    background: #FFFFFF;
}
.for-whom-cert .contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.for-whom-cert__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #212121;
    margin: 0 0 16px 0;
}
.for-whom-cert__text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #545454;
    margin: 0 0 0 0;
}
.for-whom-cert__text--light {
    font-weight: 400;
    margin-bottom: 16px;
}
.for-whom-cert__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.for-whom-cert__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.for-whom-cert__item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px 20px;
    gap: 10px;
    background: #FFFFFF;
    border-top: 2px solid #007800;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    /* === ОДИНАКОВАЯ ВЫСОТА === */
    flex: 1;
    min-height: 120px;
}
.for-whom-cert__item-title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #212121;
    margin: 0;
    flex-shrink: 0;
}
.for-whom-cert__item-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #737373;
    margin: 0;
    flex: 1;
}

/* ===== ВЫРАВНИВАНИЕ КАРТОЧЕК ПО ВЫСОТЕ ВНУТРИ КОЛОНОК ===== */
.for-whom-cert__col .for-whom-cert__item {
    flex: 1;
}

/* === ФИКСИРОВАННАЯ ВЫСОТА ДЛЯ ВСЕХ КАРТОЧЕК (опционально) === */
/* Раскомментируйте, если хотите строго одинаковую высоту */
/*
.for-whom-cert__item {
    height: 160px;
}
*/

/* Адаптив для Блока 3 */
@media (max-width: 1200px) {
    .for-whom-cert__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .for-whom-cert {
        padding: 40px 0 60px;
    }
    .for-whom-cert__title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    .for-whom-cert__text {
        font-size: 14px;
        line-height: 17px;
    }
    .for-whom-cert__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .for-whom-cert__item {
        padding: 14px 16px 16px;
        min-height: 100px;
    }
    .for-whom-cert__item-title {
        font-size: 15px;
        line-height: 18px;
    }
    .for-whom-cert__item-text {
        font-size: 13px;
        line-height: 16px;
    }
}
/* ===== БЛОК 4: ПРОБЛЕМА И РЕШЕНИЕ ===== */
.problem-solution {
    padding: 60px 0 80px;
    background: #F3FAF3;
    position: relative;
}
.problem-solution .contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ===== ОБЩИЙ КОНТЕЙНЕР ===== */
.problem-solution__wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px 0;
}

/* ===== БЛОК ПРОБЛЕМЫ (слева вверху) ===== */
.problem-solution__problem {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 588px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.problem-solution__icon {
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
}
.problem-solution__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.problem-solution__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.problem-solution__label {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    color: #007800;
    margin: 0 0 8px 0;
}
.problem-solution__text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #171A21;
    margin: 0;
}

/* ===== СТРЕЛКА (по центру, между проблемой и решением) ===== */
.problem-solution__arrow {
    position: relative;
    z-index: 3;
    margin: -10px 0 -10px 0;
    padding-left: 150px;
}
.problem-solution__arrow img {
    display: block;
    width: 110px;
    height: auto;
}

/* ===== БЛОК РЕШЕНИЯ (справа снизу, ~70% ширины) ===== */
.problem-solution__solution {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 75%;
    width: 100%;
    margin-left: auto;
    margin-top: -10px;
    position: relative;
    z-index: 1;
}
.problem-solution__solution .problem-solution__icon {
    order: 0;
}
.problem-solution__solution .problem-solution__content {
    order: 1;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1200px) {
    .problem-solution__problem {
        max-width: 480px;
    }
    .problem-solution__solution {
        max-width: 70%;
    }
    .problem-solution__icon {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
    }
    .problem-solution__arrow img {
        width: 80px;
    }
}
@media (max-width: 992px) {
    .problem-solution__problem {
        max-width: 100%;
    }
    .problem-solution__solution {
        max-width: 85%;
    }
    .problem-solution__arrow {
        padding-left: 30px;
    }
}
@media (max-width: 768px) {
    .problem-solution {
        padding: 40px 0 60px;
    }
    /* На мобилке всё вертикально */
    .problem-solution__wrap {
        padding: 0;
    }
    .problem-solution__problem {
        max-width: 100%;
        margin-bottom: 16px;
        gap: 12px;
    }
    .problem-solution__arrow {
        margin: 0 auto;
        padding-left: 0;
        display: flex;
        justify-content: center;
    }
    .problem-solution__arrow img {
        width: 60px;
        transform: rotate(90deg);
    }
    .problem-solution__solution {
        max-width: 100%;
        margin-left: 0;
        margin-top: 16px;
        gap: 12px;
    }
    .problem-solution__icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
    }
    .problem-solution__label {
        font-size: 15px;
        line-height: 18px;
    }
    .problem-solution__text {
        font-size: 13px;
        line-height: 16px;
    }
}
@media (max-width: 480px) {
    .problem-solution__problem {
        flex-direction: column;
        align-items: flex-start;
    }
    .problem-solution__solution {
        flex-direction: column;
        align-items: flex-start;
    }
    .problem-solution__icon {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }
}
/* ===== БЛОК 5: ИСТОЧНИКИ ЭНЕРГИИ ===== */
.sources {
    padding: 56px 0 80px;
    background: #FFFFFF;
}
.sources .contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.sources__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #171A21;
    margin: 0 0 12px 0;
}
.sources__subtitle {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #6B7380;
    margin: 0 0 32px 0;
}

/* ===== СЕТКА 2x2 ===== */
.sources__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #DEE3E8;
    border-radius: 12px;
    overflow: hidden;
}
.sources__item {
    padding: 32px 32px 36px;
    background: #FFFFFF;
    border-bottom: 1px solid #DEE3E8;
    border-right: 1px solid #DEE3E8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.sources__item:nth-child(2) {
    border-right: none;
}
.sources__item:nth-child(3) {
    border-bottom: none;
}
.sources__item:nth-child(4) {
    border-right: none;
    border-bottom: none;
}

/* ===== ЗЕЛЕНАЯ ЛИНИЯ СВЕРХУ ===== */
.sources__item-line {
    width: 100%;
    height: 2px;
    background: #003300;
    flex-shrink: 0;
}

/* ===== ИКОНКА ===== */
.sources__item-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}
.sources__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== ТЕКСТОВЫЙ БЛОК ===== */
.sources__item-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}
.sources__item-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}
.sources__item-name {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #003300;
    margin: 0;
}
.sources__item-tag {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #949CA6;
    margin: 0;
}
.sources__item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.sources__item-text p {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #6B7380;
    margin: 0;
}

/* ===== НИЖНИЙ БЛОК С КНОПКОЙ ===== */
.sources__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #DEE3E8;
}
.sources__bottom-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #6B7380;
    margin: 0;
}
.sources__bottom .button-green {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    background: #007800;
    border-radius: 8px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.sources__bottom .button-green:hover {
    background: #005a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,120,0,0.3);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1200px) {
    .sources__item {
        padding: 24px 20px 28px;
    }
    .sources__item-icon {
        width: 80px;
        height: 80px;
    }
}
@media (max-width: 992px) {
    .sources__grid {
        grid-template-columns: 1fr 1fr;
    }
    .sources__item {
        padding: 20px 16px 24px;
        gap: 16px;
    }
    .sources__item-icon {
        width: 64px;
        height: 64px;
    }
    .sources__item-name {
        font-size: 18px;
        line-height: 22px;
    }
}
@media (max-width: 768px) {
    .sources {
        padding: 40px 0 60px;
    }
    .sources__title {
        font-size: 22px;
        line-height: 28px;
    }
    .sources__subtitle {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 20px;
    }
    .sources__grid {
        grid-template-columns: 1fr;
        border: none;
        border-radius: 0;
        gap: 16px;
    }
    .sources__item {
        border: 1px solid #DEE3E8;
        border-radius: 12px;
        padding: 20px 16px 24px;
        gap: 16px;
        border-bottom: 1px solid #DEE3E8;
        border-right: 1px solid #DEE3E8;
    }
    .sources__item:nth-child(2),
    .sources__item:nth-child(3),
    .sources__item:nth-child(4) {
        border-right: 1px solid #DEE3E8;
        border-bottom: 1px solid #DEE3E8;
    }
    .sources__item:last-child {
        border-bottom: 1px solid #DEE3E8;
    }
    .sources__item-icon {
        width: 56px;
        height: 56px;
    }
    .sources__item-name {
        font-size: 17px;
        line-height: 20px;
    }
    .sources__item-text p {
        font-size: 13px;
        line-height: 16px;
    }
    .sources__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-top: 24px;
        padding-top: 24px;
    }
    .sources__bottom .button-green {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .sources__item {
        padding: 16px 12px 20px;
        gap: 12px;
    }
    .sources__item-icon {
        width: 48px;
        height: 48px;
    }
    .sources__item-name {
        font-size: 16px;
        line-height: 19px;
    }
}

/* ===== БЛОК 6: ГИДРОЭНЕРГЕТИКА ===== */
.hydro {
    padding: 56px 0 80px;
    background: #F3FAF3;
}
.hydro .contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ОСНОВНОЙ КОНТЕЙНЕР ===== */
.hydro__wrap {
    display: flex;
    gap: 8px;
    background: #F3FAF3;
}

/* ===== ЗЕЛЕНАЯ ЛИНИЯ СЛЕВА ===== */
.hydro__line {
    flex: 0 0 4px;
    width: 4px;
    min-height: 613px;
    background: #007800;
    border-radius: 3px;
}

/* ===== ОСНОВНОЙ БЛОК ===== */
.hydro__content {
    flex: 1;
    background: #F3FAF3;
    border-radius: 0 16px 16px 0;
    padding: 16px 16px 0 16px;
}

/* ===== ЗАГОЛОВОК ===== */
.hydro__header {
    padding: 16px 0 0 0;
}
.hydro__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #171A21;
    margin: 0 0 8px 0;
}
.hydro__subtitle {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #6B7380;
    margin: 0 0 16px 0;
}

/* ===== РЕКОМЕНДАЦИЯ (белый полупрозрачный фон, без смайлика) ===== */
.hydro__recommend {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 8px 20px;
    margin-bottom: 16px;
}
.hydro__recommend-title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #003300;
    margin: 0 0 4px 0;
}
.hydro__recommend-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #6B7380;
    margin: 0;
}

/* ===== КОМПАНИЯ С ЛОГОТИПОМ ===== */
.hydro__company {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 0 16px 0;
    width: 100%;
}
.hydro__company-info {
    flex: 1;
}
.hydro__company-name {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    color: #171A21;
    margin: 0 0 8px 0;
}
.hydro__company-desc {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #6B7380;
    margin: 0;
}
.hydro__company-logo {
    flex: 0 0 78px;
    width: 78px;
    height: 64px;
}
.hydro__company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== ДВЕ ГЭС С КАРТИНКАМИ ===== */
.hydro__stations {
    display: flex;
    gap: 16px;
    padding: 16px 0 8px 0;
    width: 100%;
}
.hydro__station {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: transparent;
    border-radius: 8px;
}
.hydro__station-icon {
    width: 129px;
    height: 86px;
}
.hydro__station-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hydro__station-box {
    padding: 14px 16px;
    border-radius: 8px;
    width: 100%;
}
.hydro__station-name {
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #171A21;
    margin: 0;
}

/* ===== ИТОГОВЫЙ ТЕКСТ ===== */
.hydro__footer-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #6B7380;
    padding: 8px 0 16px 0;
    margin: 0;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1200px) {
    .hydro__content {
        padding: 12px 12px 0 12px;
    }
    .hydro__title {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 992px) {
    .hydro__company {
        flex-wrap: wrap;
    }
    .hydro__company-logo {
        flex: 0 0 60px;
        width: 60px;
        height: 50px;
    }
    .hydro__stations {
        flex-direction: column;
        gap: 16px;
    }
    .hydro__station {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    .hydro__station-icon {
        width: 80px;
        height: 54px;
        flex-shrink: 0;
    }
    .hydro__station-box {
        flex: 1;
    }
}
@media (max-width: 768px) {
    .hydro {
        padding: 40px 0 60px;
    }
    .hydro__wrap {
        flex-direction: column;
        background: transparent;
    }
    .hydro__line {
        display: none;
    }
    .hydro__content {
        border-radius: 16px;
        padding: 8px 8px 0 8px;
        background: #F3FAF3;
    }
    .hydro__title {
        font-size: 20px;
        line-height: 26px;
    }
    .hydro__subtitle {
        font-size: 14px;
        line-height: 17px;
    }
    .hydro__recommend {
        padding: 8px 14px;
    }
    .hydro__recommend-text {
        font-size: 13px;
        line-height: 17px;
    }
    .hydro__company {
        gap: 12px;
    }
    .hydro__company-name {
        font-size: 15px;
        line-height: 18px;
    }
    .hydro__company-desc {
        font-size: 13px;
        line-height: 16px;
    }
    .hydro__company-logo {
        flex: 0 0 50px;
        width: 50px;
        height: 40px;
    }
    .hydro__station {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .hydro__station-icon {
        width: 100px;
        height: 66px;
    }
    .hydro__station-box {
        padding: 10px 14px;
    }
    .hydro__station-name {
        font-size: 16px;
        line-height: 19px;
    }
    .hydro__footer-text {
        font-size: 13px;
        line-height: 17px;
        padding: 0 0 12px 0;
    }
}
@media (max-width: 480px) {
    .hydro__company {
        flex-direction: column;
        align-items: flex-start;
    }
    .hydro__company-logo {
        flex: 0 0 40px;
        width: 40px;
        height: 32px;
        align-self: flex-start;
    }
    .hydro__station-icon {
        width: 80px;
        height: 54px;
    }
}
/* ===== БЛОК: ПОСЛЕДОВАТЕЛЬНОСТЬ ДЕЙСТВИЙ ===== */
.steps {
    padding: 56px 0;
    background: #F7F7F7;
}
.steps .contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.steps__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #212121;
    margin: 0 0 32px 0;
}

/* ===== ОБЁРТКА ===== */
.steps__wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== ВЕРХНЯЯ ЧАСТЬ С НОМЕРАМИ ===== */
.steps__progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
    width: 100%;
}
/* Зеленая линия под номерами */
.steps__progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #78C778;
    z-index: 0;
    transform: translateY(-50%);
}
.steps__step-label {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
    background: #F7F7F7;
    padding: 0 8px;
}
.steps__step-num {
    background: #007800;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    padding: 0 10px;
    border-radius: 6px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    flex-shrink: 0;
}

/* ===== СТРЕЛКА СЛЕВА ОТ БЛОКОВ (кроме 01) ===== */
.steps__step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
}
.steps__step-arrow img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
/* Стрелка только у блоков со 02 по 05 */
.steps__step-label--with-arrow {
    padding-left: 0;
}
.steps__step-label--with-arrow .steps__step-arrow {
    margin-right: 6px;
}

/* ===== КАРТОЧКИ ===== */
.steps__cards {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.steps__card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 18px 16px 20px;
    flex: 1;
    min-height: 169px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.steps__card-title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #212121;
}
.steps__card-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #737373;
}

/* ===== КНОПКА ===== */
.steps__button-wrap {
    margin-top: 24px;
    display: flex;
    justify-content: left;
}
.steps__button-wrap .button-green {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    background: #007800;
    border-radius: 8px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.steps__button-wrap .button-green:hover {
    background: #005a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,120,0,0.3);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1200px) {
    .steps__cards {
        flex-wrap: wrap;
    }
    .steps__card {
        flex: 0 0 calc(50% - 8px);
        min-height: auto;
    }
}
@media (max-width: 992px) {
    .steps__progress {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .steps__progress::before {
        display: none;
    }
    .steps__step-arrow {
        display: none !important;
    }
    .steps__step-label {
        background: transparent;
        padding: 0 4px;
    }
    .steps__step-label--with-arrow {
        padding-left: 4px;
    }
}
@media (max-width: 768px) {
    .steps {
        padding: 40px 0;
    }
    .steps__title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 24px;
    }
    .steps__cards {
        flex-direction: column;
        gap: 12px;
    }
    .steps__card {
        flex: 1;
        min-height: auto;
        padding: 14px 14px 16px;
    }
    .steps__card-title {
        font-size: 13px;
        line-height: 16px;
    }
    .steps__card-text {
        font-size: 12px;
        line-height: 14px;
    }
    .steps__button-wrap .button-green {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: left;
    }
    .steps__step-num {
        font-size: 13px;
        height: 17px;
        min-width: 26px;
        padding: 0 8px;
    }
}
@media (max-width: 480px) {
    .steps__step-num {
        font-size: 12px;
        height: 16px;
        min-width: 22px;
        padding: 0 6px;
        border-radius: 4px;
    }
}
/* ===== БЛОК: ШАБЛОН ДОГОВОРА ===== */
.contract-block {
    padding: 56px 0;
    background: #CFE7CF;
}
.contract-block .contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.contract-block__wrap {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    gap: 32px;
    width: 100%;
    background: rgba(120, 199, 120, 0.3);
    border-left: 3px solid #314673;
    border-radius: 12px;
}
.contract-block__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
}
.contract-block__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #314673;
    margin: 0;
}
.contract-block__desc {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #314673;
    margin: 0;
}
.contract-block__button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 14px 24px;
    gap: 10px;
    background: #314673;
    border-radius: 8px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}
.contract-block__button:hover {
    background: #1f2f4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 70, 115, 0.3);
}
.contract-block__button .arrow-down {
    font-size: 16px;
}

/* ===== АДАПТИВ ДЛЯ БЛОКА ДОГОВОРА ===== */
@media (max-width: 992px) {
    .contract-block__wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 20px;
    }
    .contract-block__button {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }
}
@media (max-width: 768px) {
    .contract-block {
        padding: 40px 0;
    }
    .contract-block__wrap {
        padding: 20px 16px;
        gap: 16px;
    }
    .contract-block__title {
        font-size: 16px;
        line-height: 20px;
    }
    .contract-block__desc {
        font-size: 13px;
        line-height: 16px;
    }
    .contract-block__button {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ===== БЛОК 8: ФОРМА ЗАЯВКИ (с фоном bg08.png) ===== */
.form-cert {
    padding: 80px 0;
    background: url('/green-cert/bg08.png') center center / cover no-repeat;
    position: relative;
}
.form-cert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.form-cert .contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.form-cert__info {
    flex: 0 0 380px;
    padding-top: 20px;
}
.form-cert__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 31px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}
.form-cert__subtitle {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    margin: 0 0 32px 0;
}
.form-cert__fields {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.form-cert__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-cert__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-cert__field label {
    font-family: 'Golos Text', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.form-cert__field input,
.form-cert__field select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Golos Text', sans-serif;
    transition: border-color 0.3s ease;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}
.form-cert__field input:focus,
.form-cert__field select:focus {
    border-color: #007800;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,120,0,0.1);
}
.form-cert__field--full {
    grid-column: 1 / -1;
}
.form-cert__submit {
    margin-top: 16px;
    width: 100%;
    padding: 16px;
    background: #007800;
    color: #fff;
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.form-cert__submit:hover {
    background: #005a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,120,0,0.3);
}

/* ===== АДАПТИВ ДЛЯ ФОРМЫ ===== */
@media (max-width: 1200px) {
    .form-cert .contain {
        gap: 40px;
    }
    .form-cert__info {
        flex: 0 0 300px;
    }
    .form-cert__title {
        font-size: 22px;
        line-height: 28px;
    }
}
@media (max-width: 992px) {
    .form-cert {
        padding: 60px 0;
    }
    .form-cert .contain {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    .form-cert__info {
        flex: 1;
        width: 100%;
        padding-top: 0;
        text-align: center;
    }
    .form-cert__title {
        font-size: 24px;
        line-height: 29px;
    }
    .form-cert__fields {
        padding: 30px 24px;
        width: 100%;
        box-sizing: border-box;
    }
}
@media (max-width: 768px) {
    .form-cert {
        padding: 40px 0;
    }
    .form-cert .contain {
        flex-direction: column;
        gap: 20px;
        padding: 0 0;
        max-width: 100%;
    }
    .form-cert__info {
        text-align: center;
        padding: 0 16px;
    }
    .form-cert__title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }
    .form-cert__subtitle {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 20px;
    }
    .form-cert__fields {
        padding: 20px 16px;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .form-cert__row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
    .form-cert__field label {
        font-size: 12px;
    }
    .form-cert__field input,
    .form-cert__field select {
        padding: 10px 14px;
        font-size: 13px;
        width: 100%;
        box-sizing: border-box;
    }
    .form-cert__submit {
        padding: 14px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
}
@media (max-width: 480px) {
    .form-cert {
        padding: 30px 0;
    }
    .form-cert__fields {
        padding: 16px 12px;
    }
    .form-cert__row {
        gap: 10px;
        margin-bottom: 10px;
    }
    .form-cert__field input,
    .form-cert__field select {
        padding: 8px 12px;
        font-size: 12px;
    }
    .form-cert__submit {
        padding: 12px;
        font-size: 13px;
    }
}



/* ===== БЛОК 7: СЛАЙДЕР С ОБЪЕКТАМИ ===== */
.slider-block {
    padding: 24px 0 56px;
    background: #FFFFFF;
    overflow: hidden;
}
.slider-block .contain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.slider-block__title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #212121;
    margin: 0 0 32px 0;
}

/* ===== СЛАЙДЕР ===== */
.slider-block__slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.slider-block__track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
    cursor: grab;
    will-change: transform;
}
.slider-block__track:active {
    cursor: grabbing;
}
.slider-block__slide {
    flex: 0 0 auto;
    width: 280px;
    height: 187px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}
.slider-block__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slider-block__slide--wide {
    width: 380px;
}

/* ===== КНОПКИ НАВИГАЦИИ ===== */
.slider-block__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.slider-block__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #007800;
    background: #FFFFFF;
    color: #007800;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.slider-block__btn:hover {
    background: #007800;
    color: #FFFFFF;
}
.slider-block__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.slider-block__btn:disabled:hover {
    background: #FFFFFF;
    color: #007800;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1200px) {
    .slider-block__slide {
        width: 240px;
        height: 160px;
    }
    .slider-block__slide--wide {
        width: 320px;
    }
}
@media (max-width: 992px) {
    .slider-block__slide {
        width: 200px;
        height: 134px;
    }
    .slider-block__slide--wide {
        width: 260px;
    }
}
@media (max-width: 768px) {
    .slider-block {
        padding: 16px 0 40px;
    }
    .slider-block__title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .slider-block__slide {
        width: 160px;
        height: 107px;
        border-radius: 10px;
    }
    .slider-block__slide--wide {
        width: 200px;
    }
    .slider-block__btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .slider-block__slide {
        width: 140px;
        height: 94px;
    }
    .slider-block__slide--wide {
        width: 180px;
    }
    .slider-block__btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}



* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  scrollbar-gutter: stable;
}

body {
  max-width: 100%;
  margin: 0px;
  font-family: "PTSans";
  font-weight: 400;
  color: #000;
  background: #fff;
  font-size: 18px;
  line-height: 140%;
  width: 100%;
  overflow: hidden auto;
}

main {
  overflow: hidden;
  padding-bottom: 40px;
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}

/* Флексы */

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--top-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--top-center {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--top-right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--top-space {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--top-space-a {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--center-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--center-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--center-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--center-space {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--center-space-a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--bottom-left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--bottom-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--bottom-center {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--bottom-space {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--bottom-space-a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.contain {
  width: 1110px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

/* Шапка */

header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

header.scroll {
  background: #fff;
}

.logo {
  margin-right: auto;
}

.logo img {
  display: block;
  height: 38px;
}

.menu {
  list-style: none;
  gap: 50px;
  font-weight: 700;
  color: #518756;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.menu__item:hover,
.menu__item.active {
  color: #F58F1F;
}

.burger {
  display: none;
}

.burger.open .burger__line:nth-child(1) {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.burger.open .burger__line:nth-child(3) {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.burger.open .burger__line:nth-child(2) {
  width: 0;
}

.burger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #518756;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger__line:nth-child(1) {
  margin-top: -6px;
}

.burger__line:nth-child(3) {
  margin-top: 6px;
}

/* Приветственный экран */

.first-screen {
  width: 100%;
  min-height: calc(var(--vh) * 100);
  position: relative;
  overflow: hidden;
}

.first-screen__image {
  pointer-events: none;
  width: 100%;
}

.first-screen__image img {
  -o-object-position: center bottom !important;
     object-position: center bottom !important;
}

.first-screen__content {
  width: 615px;
  max-width: 100%;
  color: #fff;
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.first-screen__text {
  font-weight: 700;
  margin-bottom: 50px;
}

/* Текс с картинкой */

.text {
  width: 445px;
}

.image {
  width: 540px;
  overflow: hidden;
}

.image img {
  display: block;
  width: 100%;
}

/* Преимущества */

.advantages {
  gap: 30px;
}

.advantage {
  width: calc((100% + 30px) / 3 - 30px);
  text-align: center;
}

.advantage__image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.advantage__image img {
  height: 100px;
}

.advantage__title {
  font-weight: 700;
  text-transform: uppercase;
}

/* Принципы работы */

.principles {
  padding: 50px 0;
  margin-bottom: 50px;
}

.principle {
  width: calc((100% + 30px) / 4 - 30px);
  position: relative;
}

.principle::before,
.principle::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 134px;
  left: 0px;
  z-index: -1;
  background: #78B54E;
}

.principle::after {
  width: 30px;
  left: 100%;
}

.principle:first-child::before {
  left: 50%;
}

.principle:last-child::before {
  width: 50%;
}

.principle:last-child::after {
  display: none;
}

.principle__image {
  width: 100px;
  margin: 0 auto 30px;
}

.principle__image img {
  display: block;
}

.principle__dot {
  width: 10px;
  height: 10px;
  background: #78B54E;
  border-radius: 50%;
  margin: 0 auto 30px;
  position: relative;
}

.principle__dot::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  background: #ddecd2;
  border-radius: 50%;
}

.principle__name {
  text-align: center;
  font-weight: 700;
}

/* Форма */

.from-wrap {
  position: relative;
}

.form {
  background: #518756;
  padding: 100px 95px 100px 0;
  width: 750px;
  position: relative;
  border-radius: 0px 0px 160px 0px;
}

.form::before {
  content: "";
  display: block;
  width: calc((100vw - 1110px) / 2);
  height: 100%;
  position: absolute;
  top: 0px;
  right: 100%;
  background: #518756;
}

.form label {
  width: 100%;
  position: relative;
  display: block;
}

.form label.error {
  position: absolute;
  left: 30px;
  top: calc(100% + 5px);
  font-size: 14px;
  line-height: 1;
  color: #F58F1F;
}

.form h2 {
  color: #fff;
  line-height: 1;
}

.form button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.form__row {
  margin-bottom: 20px;
}

.input {
  width: 100%;
  border: none;
  background: none;
  padding: 15px 30px;
  font-family: "PTSans";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  color: #fff;
  outline: none !important;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
}

.input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

.input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

.input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

.input::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

.input::placeholder {
  color: inherit;
  opacity: 1;
}

.input.error {
  -webkit-box-shadow: inset 0 0 0 1px #F58F1F;
          box-shadow: inset 0 0 0 1px #F58F1F;
}

textarea.input {
  min-height: 120px;
}

.placeholder {
  display: block;
  padding-left: 30px;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
  line-height: 140%;
  font-weight: 700;
}

.from-image {
  position: absolute;
  top: 0;
  left: calc(50% + 15px);
  z-index: -1;
  height: 100%;
  width: calc(50vw - 15px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: unset;
}

.spoiler {
  border: 1px solid #518756;
  border-radius: 10px;
  color: #518756;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 20px;
}

.spoiler:last-child {
  margin-bottom: 0;
}

.spoiler.open {
  background: #518756;
  color: #fff;
}

.spoiler.open .spoiler__name::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  background-color: #94AD76;
}

.spoiler:hover::before {
  width: 100%;
}

.spoiler__name {
  cursor: pointer;
  padding: 30px 90px 30px 30px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.spoiler__name p {
  margin: 0;
}

.spoiler__name::after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #FCBD85;
  pointer-events: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-image: url(/local/templates/green_cert/styles/../img/icons/spoiler.svg);
  background-position: 50% 55%;
  background-repeat: no-repeat;
}

.spoiler__content {
  display: none;
  padding: 0 30px 30px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  padding: 15px 30px;
  border: none;
  background: #F58F1F;
  color: #fff;
  border-radius: 52px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}

.button:hover {
  background: #518756;
}

p {
  margin: 0px 0px 20px 0px;
}

p:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #033f71;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

img {
  max-width: 100%;
}

.txt--20 {
  font-size: 20px;
  line-height: 140%;
}

.txt--center {
  text-align: center;
}

/* Цвета */

.color--green {
  color: #518756;
}

.color--green2 {
  color: #94AD76;
}

.color--orange {
  color: #F58F1F;
}

.color--orange2 {
  color: #FCBD85;
}

.background--green {
  background: #518756;
}

.background--green2 {
  background: #94AD76;
}

.background--orange {
  background: #F58F1F;
}

.background--orange2 {
  background: #FCBD85;
}

h1,
.h1 {
  font-weight: 700;
}

h1:first-child,
.h1:first-child {
  margin-top: 0;
}

h1:last-child,
.h1:last-child {
  margin-bottom: 0;
}

h2,
.h2 {
  font-weight: 700;
}

h2:first-child,
.h2:first-child {
  margin-top: 0;
}

h2:last-child,
.h2:last-child {
  margin-bottom: 0;
}

h3,
.h3 {
  font-weight: 700;
}

h3:first-child,
.h3:first-child {
  margin-top: 0;
}

h3:last-child,
.h3:last-child {
  margin-bottom: 0;
}

h4,
.h4 {
  font-weight: 700;
}

h4:first-child,
.h4:first-child {
  margin-top: 0;
}

h4:last-child,
.h4:last-child {
  margin-bottom: 0;
}

h5,
.h5 {
  font-weight: 700;
}

h5:first-child,
.h5:first-child {
  margin-top: 0;
}

h5:last-child,
.h5:last-child {
  margin-bottom: 0;
}

h1,
.h1 {
  text-shadow: 0px 0px 10px #6F4D34;
  color: #fff;
  font-size: 48px;
  line-height: 100%;
  margin: 0 0 50px;
}

h2,
.h2 {
  color: #518756;
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 50px;
}

main ul {
  margin: 0;
  line-height: 160%;
  padding-left: 24px;
  margin-bottom: 20px;
}

main ul:last-child {
  margin-bottom: 0;
}

main li {
  margin-bottom: 20px;
}

main li:last-child {
  margin-bottom: 0;
}

.fit-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fit-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1280px) {
  .contain {
    width: calc(100% - 80px);
  }

  section {
    padding: 50px 0;
  }

  .menu {
    gap: 30px;
  }

  .first-screen__content {
    padding-top: 120px;
  }

  .first-screen__text {
    margin-bottom: 30px;
  }

  .text {
    width: calc((((100vw - (40px * 2)) + 30px) / 12 * 7) - 30px + 0px);
  }

  .image {
    width: calc((((100vw - (40px * 2)) + 30px) / 12 * 4) - 30px + 0px);
  }

  .advantage__image {
    width: 115px;
    height: 115px;
  }

  .advantage__image img {
    height: 65px;
  }

  .principles {
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .principle::before,
  .principle::after {
    top: 99px;
  }

  .principle__image {
    width: 65px;
  }

  .form {
    width: 100vw;
    padding: 100px 40px;
    margin-left: -40px;
    border-radius: 0 0 60px 60px;
  }

  .form::before {
    display: none;
  }

  .from-image {
    position: relative;
    left: -40px;
    width: 100vw;
    height: 540px;
  }

  h1,
  .h1 {
    margin-bottom: 30px;
  }

  h2,
  .h2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 950px) {
  .menu {
    visibility: none;
    opacity: 0;
    position: absolute;
    top: 60px;
    right: 40px;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #518756;
    gap: 10px;
  }

  .menu.show {
    visibility: visible;
    opacity: 1;
  }

  .burger {
    display: block;
    position: relative;
    width: 28px;
    height: 28px;
    cursor: pointer;
  }

  .burger::before {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    top: -10px;
    left: -10px;
  }

  .first-screen {
    min-height: unset;
  }

  .first-screen__image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }

  .first-screen__image img {
    position: relative;
    top: 0;
    left: 0;
    height: auto;
  }

  .first-screen__content {
    padding-top: 108px;
    padding-bottom: 0;
    color: #000;
  }

  .text-image {
    gap: 50px;
  }

  .text {
    width: 100%;
  }

  .image {
    width: 100%;
  }

  .from-image {
    height: 480px;
  }

  h1,
  .h1 {
    color: #518756;
    text-shadow: none;
  }
}

@media (max-width: 950px) and (max-width: 680px) {
  .menu {
    padding: 8px;
    gap: 6px;
    top: 50px;
    right: 20px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
    line-height: 160%;
  }

  main {
    padding-bottom: 20px;
  }

  .contain {
    width: calc(100% - 40px);
  }

  section {
    padding: 20px 0;
  }

  .logo img {
    height: 28px;
  }

  .first-screen__content {
    padding-top: 68px;
  }

  .first-screen__text {
    margin-bottom: 20px;
  }

  .text-image {
    gap: 30px;
  }

  .advantages {
    gap: 40px;
  }

  .advantage {
    width: 100%;
  }

  .advantage__image {
    margin-bottom: 20px;
  }

  .principles {
    padding: 20px 0;
    gap: 40px;
    margin-bottom: 20px;
  }

  .principle {
    width: 100%;
  }

  .principle::before,
  .principle::after {
    display: none;
  }

  .principle__image {
    margin-bottom: 20px;
  }

  .principle__dot {
    display: none;
  }

  .form {
    padding: 40px 20px;
    margin-left: -20px;
    border-radius: none;
  }

  .form label.error {
    left: 15px;
    font-size: 11px;
  }

  .input {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 20px;
  }

  textarea.input {
    min-height: 80px;
  }

  .placeholder {
    padding-left: 15px;
    font-size: 11px;
  }

  .from-image {
    height: 240px;
    left: -20px;
  }

  .spoiler {
    margin-bottom: 10px;
    border-radius: 5px;
  }

  .spoiler__name {
    padding: 10px 40px 10px 10px;
  }

  .spoiler__name::after {
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-size: 9px;
  }

  .spoiler__content {
    padding: 0 10px 10px;
  }

  .button {
    padding: 10px 15px;
  }

  .button svg {
    width: 20px;
    height: 20px;
  }

  p {
    margin-bottom: 10px;
  }

  .txt--20 {
    font-size: 14px;
  }

  h1,
  .h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  h2,
  .h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }

  main li {
    margin-bottom: 10px;
  }
}

@media (min-width: 951px) {
  .first-screen__text {
    text-shadow: 0 0 10px #6F4D34;
  }
}
/* End */


/* Start:/local/templates/green_cert/styles/fonts.css?1785415316285*/
@font-face {
  font-family: "PTSans";
  font-style: normal;
  font-weight: 400;
  src: url("/local/templates/green_cert/styles/../fonts/PTSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "PTSans";
  font-style: normal;
  font-weight: 700;
  src: url("/local/templates/green_cert/styles/../fonts/PTSans-Bold.ttf") format("truetype");
}
/* End */
/* /local/templates/green_cert/styles/style.css?178583690165720 */
/* /local/templates/green_cert/styles/fonts.css?1785415316285 */
