:root {
    --color-dark: #3D4E62;
    --color-dark-alt: #33474D;
    --color-green: #D8DFBF;
    --color-green-muted: #9EA48A;
    --color-beige: #E0C1A4;
    --color-text: #3E3F44;
    --color-light: #F4F5F6;
    --color-white: #FFF;
    --color-disabled: #919C6D;
}

/* ===== HERO 4 SECTION ===== */
.hero4 {
    position: relative;
    width: 100%;
    height: 505px;
    display: flex;
    align-items: center;
}

.hero4-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    height: 100%;
    overflow-x: hidden;
}

.hero4-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #D8DFBF -40%, rgba(115, 115, 115, 0) 100%);
    z-index: 1;
}

.hero4-gradient-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, #5A6731 15%, rgba(118,129,79, 0.77) 48%, rgba(115, 115, 115, 0) 100%) !important;
    opacity: 35%;
    z-index: 1;
}

.hero4-content-wrapper {
    max-width: 1440px;
    padding: 0 128px;
    display: flex;
    height: auto;
    margin: auto;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero4-content {
    z-index: 10;
    max-width: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin: 0;
    height: auto;
    position: absolute;
    right: 128px;
    top: 188px;
}

.hero4-heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero4-heading {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.hero4-logo-wrapper {
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10;
    padding: 16px;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin: 0;
    height: auto;
    position: absolute;
    left: 128px;
    top: 158px;
}

@media (max-width: 1199px) {
    .hero4 {
        height: 505px;
    }

    .hero4-bg {
        height: 100%;
    }

    .hero4-gradient-bottom {
        background: linear-gradient(360deg, #5A6731 15%, rgba(118,129,79, 0.77) 48%, rgba(115, 115, 115, 0) 100%) !important;
    }

    .hero4-content-wrapper {
        max-width: 1024px;
        padding: 0 100px;
    }

    .hero4-content {
        max-width: 260px;
        gap: 36px;
        right: 100px;
        top: 188px;
    }

    .hero4-heading-wrapper {
        gap: 14px;
    }

    .hero4-logo-wrapper {
        padding: 14px;
        max-width: 360px;
        gap: 28px;
        left: 100px;
        top: 158px;
    }
}
@media (max-width: 991px) {
    .hero4 {
        height: 505px;
    }

    .hero4-bg {
        height: 100%;
    }

    .hero4-gradient-bottom {
        background: linear-gradient(360deg, #5A6731 15%, rgba(118,129,79, 0.77) 48%, rgba(115, 115, 115, 0) 100%) !important;
    }

    .hero4-content-wrapper {
        max-width: 100%;
        flex-direction: column;
    }

    .hero4-content {
        position: relative;
        max-width: 260px;
        gap: 36px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero4-logo-wrapper {
        position: absolute;
        padding: 14px;
        max-width: 240px;
        gap: 28px;
        right: 100px;
        top: 50%;
        left: unset;
        transform: translateY(-50%);
    }
}
@media (max-width: 767px) {

    .hero4-content-wrapper {
        padding: 0 56px;
    }
}
@media (max-width: 639px) {
    .hero4 {
        height: 480px;
    }

    .hero4-content-wrapper {
        padding: 0 36px;
    }

    .hero4-content {
        position: relative;
        max-width: 260px;
        top: 128px;
        transform: unset;
    }

    .hero4-logo-wrapper {
        max-width: 240px;
        right: 100px;
        top: unset;
        left: 36px;
        bottom: 96px;
        transform: unset;
    }
}
