.banner {
    width: 100%;
    position: relative;
    text-decoration: none;
}
.banner__body{
    flex-grow: 1;
    display: flex;
    flex-direction: column;

    margin-bottom: 30px;
}
.banner__wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    padding: 30px;
    color: #fff;
    line-height: 1.75;
}

.banner__bg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: 90% 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.banner__title{
    font-weight: bold;
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 3px 5px 6px #000;
}

.banner__subtitle ul li{
    list-style-type: circle;
}

@media (max-width: 778px){
    .banner__title{
        line-height: 1;
    }
}
.banner__button{
    color: inherit;
    background-color: transparent;
    display: inline-flex;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
}
@media (max-width: 778px){
    .banner__button{
        font-size: 14px;
    }
}


.section-banners{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 778px){
    .section-banners .container{
        padding: 0;
    }
}


.section-banners > *:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 0px;
}