/*  BASE ------------------------------------------------------------------  */
html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
}
.header {
    height: 110px;
    width: 100%;
}

#footer {
    bottom: 0;
    height: 125px;
    /*position: absolute;*/
    width: 100%;
    background-color: #fafafa;
}
.bannerBaseBanner{
    width: 100%;;
    position: relative;
    margin-bottom: 50px;
}
.bannerBaseBanner img{
    width: 100%;
    height: 450px;
    background-size: cover;
    object-fit: cover;
}

.blackFilterBannerBase{
    filter: brightness(0.5);
}

.textoBannerBase{
    position: absolute;
    color: white;
    bottom: 30px;
    left: 15px;
    right: 15px;
    max-width: 1320px;
    margin: 0 auto;
}

.textoBannerBase h1{
    font-weight: 600;
}

.textoBannerBase h2{
    font-size: 24px;
}

/* Responsive adjustments for banner text */
@media (min-width: 576px) {
    .textoBannerBase {
        left: 20px;
        right: 20px;
    }
}

@media (min-width: 576px) {
    .textoBannerBase {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .textoBannerBase {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .textoBannerBase {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .textoBannerBase {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .textoBannerBase {
        max-width: 1320px;
    }
}
