.hero-section.hero--cols {
    background-color: #3C766F;
    color: var(--color-white);
    height: var(--hero-height);
    max-height: var(--hero-height);
}

.hero--cols .hero-cols {
    margin-top: 55px;
}

.hero-cols {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 710px;
    align-items: center;
    gap: 64px;
}

.hero-col--text .hero-title {
    max-width: 1011px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: normal;
    line-height: 77px;
}

.hero-subtitle-alt {
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-lead {
    max-width: 980px;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.hero-col--media {
    height: 100%;
}

.hero-media-box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 750px;
    height: 631px;
    border-radius: 60px 0 0 0;
    overflow: hidden;
    background: #e6ecea;
}

.hero-media-box img {
    object-position: center top;
}

.btn-hero {
    max-width: 444px;
    width: 100%;
}


@media (max-width: 991px) {
    .hero-section.hero--cols {

        height: auto;
        max-height: none
    }

    .hero-cols {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-block: 48px;
    }

    .hero-col--media {
        justify-content: flex-start;
    }

    .hero-media-box {
        width: 100%;
        height: 280px;
        border-radius: 24px 0 0 0;
        position: relative;
    }
}
@media (min-width:768px) and (max-width:1200px) {
    .hero-cols {
        grid-template-columns: 1fr 0 !important;
    }

    .hero-col:last-child {
        display: none !important;
    }

    
}
@media (min-width:800px) and (max-width:1600px) {
    .hero-cols {
        grid-template-columns: 1fr 568px;
        gap: 51px;
    }

    .hero-col--text .hero-title {
        max-width: 809px;
    }

    .hero-title {
        font-size: 51px;
        line-height: 62px;
    }

    .hero-subtitle-alt {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 19px;
    }

    .hero-lead {
        max-width: 784px;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 22px;
    }

    .hero-media-box {
        width: 600px;
        height: 505px;
        border-radius: 48px 0 0 0;
    }

    .btn-hero {
        max-width: 355px;
    }
}