#seasons-banners {
    position: relative;
}
.seasons-banners-backgrounds,
.seasons-banner-background-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.seasons-banner-background-item {
    opacity: 0;
    -webkit-transition: all .75s ease;
    -moz-transition: all .75s ease;
    -o-transition: all .75s ease;
    transition: all .75s ease;
}
.seasons-banner-background-item.active {
    opacity: 1;
}
.seasons-banner-background-item,
.seasons-banner-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.seasons-banner-wrap {
    position: relative;
    padding-top: 125%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.3);
}
.seasons-banner-over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.3);
    font-size: 50px;
    color: white;
    font-family: 'Playfair Display', serif;
    padding: 20px;
    text-align: center;
    -webkit-transition: all .75s ease;
    -moz-transition: all .75s ease;
    -o-transition: all .75s ease;
    transition: all .75s ease;
}
body.el .seasons-banner-over {
    font-family: 'Times New Roman', serif;
}
.seasons-banner-image {
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transition: all .75s ease;
    -moz-transition: all .75s ease;
    -o-transition: all .75s ease;
    transition: all .75s ease;
}
.seasons-banner-item.inactive .seasons-banner-over,
.seasons-banner-item.inactive .seasons-banner-image {
    opacity: 0;
}
.seasons-banner-item:nth-child(4n+1) .seasons-banner-image {
    left: 0;
    right: -300%;
}
.seasons-banner-item:nth-child(4n+2) .seasons-banner-image {
    left: -100%;
    right: -200%;
}
.seasons-banner-item:nth-child(4n+3) .seasons-banner-image {
    left: -200%;
    right: -100%;
}
.seasons-banner-item:nth-child(4n+4) .seasons-banner-image {
    left: -300%;
    right: 0;
}
/*Responsive*/
@media only screen and (max-width: 1650px) {
    .seasons-banner-over {
        font-size: 40px;
    }
}
@media only screen and (max-width: 1350px) {
    .seasons-banner-over {
        font-size: 30px;
    }
}
@media only screen and (max-width: 769px) {
    .seasons-banner-wrap {
        padding-top: 33%;
    }
    .seasons-banner-item:nth-child(4n+1) .seasons-banner-image,
    .seasons-banner-item:nth-child(4n+2) .seasons-banner-image,
    .seasons-banner-item:nth-child(4n+3) .seasons-banner-image,
    .seasons-banner-item:nth-child(4n+4) .seasons-banner-image {
        left: 0;
        right: 0;
    }
    .seasons-banner-item.inactive .seasons-banner-over,
    .seasons-banner-item.inactive .seasons-banner-image {
        opacity: 1;
    }
}
@media only screen and (max-width: 500px) {
    .seasons-banner-over {
        font-size: 20px;
    }
}