/* * * Banners * * */
.b-banner {
    position: relative;
    min-height: 292px;
    font: 300 30px 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #000;
    background: #eee right center no-repeat;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.b-banner * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.b-banner_link {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
    color: transparent;
    background: rgba(255, 255, 255, .000001);
}

.b-banner_capsule {
    display: table;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 292px;
    border-collapse: separate;
    table-layout: fixed;
}

.b-banner_capsule_cell {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 0;
}

.b-banner_capsule p {
    margin: 0;
}

.b-banner_capsule p ~ p {
    margin-top: .1em;
}

.b-banner_arrow {
    display: inline-block;
    position: relative;
    margin-top: 2px;
    font-size: 12px;
    color: #e8652c;
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}

.b-banner:hover .b-banner_arrow {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}

.b-banner img.b-banner_pic {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.b-banner img.b-banner_pic.cover {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -o-object-fit: cover;
    object-fit: cover;
}

.b-banner_video {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.b-banner_video + * {
    background: rgba(238, 238, 238, .5);
}

@media (max-width: 1263px) {

    .b-banner {
        min-height: 216px;
        font: 300 24px 'Roboto', sans-serif;
    }

    .b-banner_capsule {
        height: 216px;
    }

    .b-banner img.b-banner_pic {
        height: 181px;
    }

    .b-banner img.b-banner_pic.bottom {
        top: auto;
        right: -25px;
        bottom: -5px;
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

}

@media (max-width: 767px) {

    .b-banner {
        min-height: 216px;
        font: 300 18px/1.5 'Roboto', sans-serif;
    }

    .b-banner_capsule {
        height: auto;
    }

    .b-banner_capsule_cell {
        padding: 22px 0 134px;
    }

    .b-banner img.b-banner_pic {
        width: 100%;
        height: auto;
    }

    .b-banner img.b-banner_pic.bottom {
        left: 0;
        right: 0;
    }

}

@media (min-width: 480px) and (max-width: 767px) {

    .b-banner_capsule_cell {
        padding: 22px 0 194px;
    }

}

/* * * Banners :: carousels * * */
.b-banners_carousel .b-carousel_item ~ .b-carousel_item {
    display: none;
}

.b-banners_carousel .b-carousel_paging {
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: 21px;
    right: 0;
    pointer-events: none;
}

.b-banners_carousel .b-carousel_paging_bullet {
    pointer-events: auto;
}

.b-banners_carousel .b-carousel_paging_bullet span {
    background: #fff;
}

@media (max-width: 1263px) {

    .b-banners_carousel .b-carousel {
        margin: 0 auto;
        max-width: 666px;
    }

    .b-banners_carousel .b-carousel_arrow {
        width: 19px;
        overflow: hidden;
    }

    .b-banners_carousel .b-carousel_arrow__prev {
        left: -31px;
    }

    .b-banners_carousel .b-carousel_arrow__prev:before {
        float: left;
        width: 27px;
    }

    .b-banners_carousel .b-carousel_arrow__next {
        right: -31px;
    }

    .b-banners_carousel .b-carousel_arrow__next:before {
        float: right;
        width: 27px;
    }

}

@media (max-width: 767px) {

    .b-banners_carousel {
        margin: 0 auto;
        padding: 0 32px;
        max-width: 396px;
    }

    .b-banners_carousel .b-carousel_arrow__prev {
        left: -32px;
    }

    .b-banners_carousel .b-carousel_arrow__next {
        right: -32px;
    }

}

@media (min-width: 1264px) {

    .b-banners_carousel .b-carousel {
        margin: 0 auto;
        max-width: 1120px;
    }

    .b-banners_carousel .b-carousel_arrow__prev {
        left: -52px;
    }

    .b-banners_carousel .b-carousel_arrow__next {
        right: -52px;
    }

}