#hero_img {
    height: 600px;
}

@media screen and (max-width:768px) {
    #hero_img {
            height: 680px;
        }
}

#hero_img .hero-container {
    position: absolute;
    left:0;
    right:0;
    z-index: 100;
}

#hero_img .hero-container .logo {
    width: 250px;
    height: auto;
}

#hero_img .hero-image img {
    object-fit: cover;
}

#hero_img:after {
    content: '';
    position: absolute;
    top:0;
    bottom:0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.30) 0%, #0C0C0C 100%);

}
#hero_img.tema-white:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.30) 50%, var(--bs-body-bg) 100%);
}