.banner-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(20px, 3.66vw, 60px) clamp(20px, 4vw, 70px);
    z-index: 3;
}

.banner-title {
    max-width: 476px;
    line-height: 98%;
}

.banner-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.banner-text {
    max-width: 533px;
}

.banner-image-wrapper {
    height: 370px;
    position: relative;
    z-index: 1;
}

.banner-image {
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(250deg, 
    rgba(62, 0, 0, 0.6) 0%, 
    rgba(69, 9, 9, 0.6) 8%, 
    rgba(88, 34, 34, 0.6) 20%, 
    rgba(119, 76, 76, 0.6) 37%, 
    rgba(163, 134, 134, 0.3) 56%, 
    rgba(218, 206, 206, 0.2) 77%, 
    rgba(255, 255, 255, 0.1) 90%);
    rotate: -180deg;
    z-index: 2;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.0) 100%);
    z-index: 2;
}

@media (max-width: 992px) {

    .banner-footer {
        flex-direction: column;
        gap: 10px;
    }

}

