.banner-interno,
.banner-interno .parallax-container {
    max-height: 250px;
    position: relative;
}

.banner-interno::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(51, 51, 51, 0.47) 47%, rgba(51, 51, 51, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(47%, rgba(51, 51, 51, 0.47)), color-stop(100%, rgba(51, 51, 51, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(51, 51, 51, 0.47) 47%, rgba(51, 51, 51, 1) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(51, 51, 51, 0.47) 47%, rgba(51, 51, 51, 1) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(51, 51, 51, 0.47) 47%, rgba(51, 51, 51, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(51, 51, 51, 0.47) 47%, rgba(51, 51, 51, 1) 100%);
}

.banner-interno .container {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    width: 100%;
    height: fit-content;
    bottom: 0
}

.banner-interno .container {
    display: flex;
    height: 100%;
    align-items: flex-end;
    padding-top: 20px;
    padding-bottom: 20px;
}

.banner-interno .container nav {
    background-color: transparent;
}

.title-banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-interno .nav-wrapper {
    white-space: nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

@media(max-width:991px) {
    .title-banner h1 {
        font-size: 2.2rem;
    }
}