.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%);
}