/*Hero Section*/
.hero-container {
    min-height: 85vh;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;   
    height: 100%;
    background-image: url('/imgs/assets/hero_beans.webp');
    z-index: 1;
}

.hero-bg-gradient {
    background-color: rgba(11, 26, 15, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

@media(min-width: 992px) {
    /* .hero-bg-img {
        width: 50%;
        left: auto;
        right: 0;
    } */

    .hero-bg-img {
        background-image: url('/imgs/assets/hero_beans_desktop.webp');
    }

    .hero-bg-gradient {
        width: 100%;
        background: linear-gradient(90deg,rgba(11, 26, 15, 0.7) 45%, rgba(42, 160, 199, 0) 60%);
    }

    /* .hero-bg-gradient {
        background: linear-gradient(90deg,rgba(55, 127, 73, 1) 50%, rgba(42, 160, 199, 0) 60%);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
    } */
}

/*Newsletter*/
@media(min-width: 992px) {
    .newsletter-container {
        border-radius: 50px 0 0 50px;
    }
}