.banners {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms, bottom 0ms 250ms;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	-ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.banner.show {
    bottom: 0;
    opacity: 1;
    pointer-events: all;
    transition: opacity 250ms, bottom 0ms;
}

.banner-controls {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 100px;
    color: #FFF;
    cursor: pointer;
    opacity: 0;
    transition: opacity 150ms;
}

.banners:hover .banner-controls,
.banners:focus .banner-controls {
    opacity: .25;
}

.banners .banner-controls:hover {
    opacity: 1;
}

.banner-controls.next {
    right: calc((100% - 1400px) / 2);
}

.banner-controls.previous {
    left: calc((100% - 1400px) / 2);
}

html.no-material-icons .banner-controls {
    width: 250px;
    height: 250px;
}

html.no-material-icons .banner-controls.next {
    background: url(../img/icons/keyboard-arrow-right.svg) no-repeat center / 100%;
}

html.no-material-icons .banner-controls.previous {
    background: url(../img/icons/keyboard-arrow-left.svg) no-repeat center / 100%;
}

.banner__bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner__content {
    width: 100%;
    /* height: 100%; */
    padding: 30px;
    position: relative;
    color: #fff;
    font: 100 14px/1.286 Roboto, sans-serif;
    text-align: center;
}

.banner__content h1 {
    margin: 0 0 5px;
    color: inherit;
    font-size: 26px;
    font-weight: 100;
    line-height: 26px;
}

.banner__content h1 strong {
    font-weight: 300;
    font-style: normal;
}

.banner__content p {
    margin: 0 0 30px;
}

.banner__content .button {
    margin: 0;
    width: auto;
    padding: 10px 30px;
    font: 14px/1.286 Roboto, sans-serif;
}

@media (max-width: 1400px) {
    .banner-controls.next {
        right: 0px;
    }
    .banner-controls.previous {
        left: 0px;
    }
}

@media (min-width: 661px) {
    .banners {
        height: 400px;
    }
    .banner {
        width: 100%;
    }
    .banner__content {
        font: 100 22px/1 Roboto, sans-serif;
    }
    .banner__content h1 {
        font-size: 48px;
        line-height: 48px;
    }
    .banner__content .button {
        padding: 15px 48px;
        font: 16px/1.125 Roboto, sans-serif;
    }
}

@media (min-width: 961px) {
    .banners {
        height: 562px;
    }
    .banner__content {
        font: 100 28px/1 Roboto, sans-serif;
    }
    .banner__content h1 {
        margin: 0 0 20px;
        font: 100 72px/1 Roboto, sans-serif;
    }
    .banner__content h1 strong {
        font-weight: 300;
    }
    .banner__content p {
        margin: 0 0 30px;
    }
    .banner__content .button {
        padding: 15px 54px;
        font: 18px/1 Roboto, sans-serif;
    }
}

@media (max-width: 767px) {
    html.touchevents .banner-controls {
        display: none;
    }
    .banners .banner:after {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        background: rgba(0, 0, 0, .5);
        z-index: 2;
    }
    .banner__bg-image {
        z-index: 1;
    }
    .banner__content {
        z-index: 3;
    }
    .banner-controls {
        z-index: 5;
    }
}