.hero-container {
    padding-top: 60px !important;
    min-height: 85vh;
    background-image: url('/imgs/assets/hero_2_mobile.webp');
    position: relative;

    &::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: #080808;
        background: linear-gradient(170deg,rgba(8, 8, 8, .9) 10%, rgba(8, 8, 8, .5) 60%, rgba(8, 8, 8, 0) 80%);
        z-index: 1;
    }
}

@media(min-width: 992px) {
    .hero-container {
        background-image: url('/imgs/assets/hero_2.webp');

        &::before {
            background: linear-gradient(95deg,rgba(8, 8, 8, .9) 30%, rgba(8, 8, 8, .7) 40%, rgba(8, 8, 8, .4) 50%, rgba(8, 8, 8, 0) 60%);
        }
    }
}

.bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}