/* ===== HERO 2 SECTION ===== */
.hero2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

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

.hero2-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;
}

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

.hero2-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;
}

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

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

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

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

.hero2 p {
    color: white;
}

.hero2-logo-wrapper {
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10;
    padding: 16px;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin: 0;
    height: auto;
    position: absolute;
    right: 128px;
    top: 20%;
}

@media (max-width: 1199px) {
    .hero2 {
        min-height: 480px;
    }

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

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

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

    .hero2-logo-wrapper {
        padding: 16px;
        max-width: 35%;
        gap: 2.25rem;
        right: 100px;
        top: 20%;
    }
}

@media (max-width:992px) {
    .hero2 {
        min-height: 480px;
    }

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

    .hero2-content {
        max-width: 50%;
        gap: 2.25rem;
        left: 0;
        bottom:unset;
        top:164px;
        position: relative;
    }

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

    .hero2-logo-wrapper {
        padding: 16px;
        max-width: 35%;
        gap: 2.25rem;
        right: 100px;
        top: 20%;
    }
}

@media (max-width:767px) {
    .hero2 {
        min-height: 480px;
    }

    .hero2-content-wrapper {
        max-width: 100%;
        padding: 0 56px;
        flex-direction: column;
    }

    .hero2-content {
        max-width: 100%;
        gap: 2.25rem;
        left: 0;
        order: 2;
        bottom: unset;
        position: relative;
        top: unset;
        margin-top: 24px;
    }

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

    .hero2-logo-wrapper {
        padding: 16px;
        max-width: 35%;
        gap: 2.25rem;
        right: unset;
        left: 0;
        top: unset;
        order: 1;
        margin-top: 164px;
        position: relative
    }
}

@media (max-width:639px) {
    .hero2 {
        min-height: 480px;
    }

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

    .hero2-content {
        gap: 2.25rem;
    }

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

    .hero2-logo-wrapper {
        max-width: 360px;
    }
}