/* ---BANNER STYLES--- */

.banner_section {
    position: relative;
    height: 80vh;
    padding: 15vw 10vw 0 10vw;
    border-radius: 0 0 2.5vw 2.5vw;
    background: black;
    overflow: hidden;
}

.banner_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00000090, #00000000);
    z-index: 1;
}

.banner_section .absolute_media {
    opacity: .8;
}

.banner_section .banner_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    z-index: 1;
}

.banner_section .title_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.banner_section .title_box>span {
    color: var(--cream);
    font-size: 1vw;
    font-weight: 500;
}

.banner_section h1,
.banner_section p {
    color: var(--cream);
}

.banner_section p {
    width: 50%;
}

.banner_section .main_btn {
    background: var(--cream);
}

.banner_section .main_btn span {
    color: var(--dark-green);
}

@media (max-width: 996px) {
    .banner_section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 10vw;
        border-radius: 0 0 5vw 5vw;
    }
    .banner_section::before {
        background: linear-gradient(to right, #00000090, #00000000);
    }
    .banner_section .banner_box {
        gap: 5vw;
    }
    .banner_section .title_box {
        gap: 2vw;
    }
    .banner_section .title_box>span {
        font-size: 3.5vw;
    }
    .banner_section p {
        width: 100%;
    }
}


/* ---FOOTER STYLES--- */

footer {
    margin-top: 0;
}