: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 3 SECTION ===== */
.hero3 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero3-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero3-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 222, 191, 0.75) 2.78%, rgba(115, 115, 115, 0) 38.57%);
    z-index: 1;
}

.hero3-gradient-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, #3D4E62 15%, rgb(61, 78, 98) 48%, rgba(115, 115, 115, 0) 100%) !important;
    opacity: 35%;
    z-index: 1;
}

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

.hero3-content {
    z-index: 10;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin: 0;
    height: auto;
    position: absolute;
    left: 128px;
    bottom: 128px;
}

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

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

.hero3-heading .white {
    color: var(--color-white);
}

.hero3-heading .wheat {
    color: rgba(255, 222, 191, 88%);
}

.hero3 p {
    color: white;
}

@media (max-width: 1199px) {
    .hero3 {
        width: 100%;
    }

    .hero3-content-wrapper {
        max-width: 100%;
        padding: 0 100px;
    }

    .hero3-content {
        max-width: 600px;
        width: 100%;
        gap: 2.25rem;
        left: 100px;
        bottom: 100px;
    }

    .hero3-heading-wrapper {
        gap: 16px;
    }
}

@media (max-width: 991px) {

    .hero3-content {
        max-width: 100%;
        width: 100%;
        top: 0;
        margin-top: 164px;
        left: 0;
        bottom: unset;
        position: relative;
    }
}

@media (max-width: 767px) {

    .hero3-content-wrapper {
        padding: 0 56px;
    }
}

@media (max-width: 639px) {

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