section.banners {
    margin: auto;
    position: relative;
    opacity: 1 !important;
    margin: 2em 0 1em;
}

section.banners .swiper-pagination {
    position: relative;
}

section.banners.borderBottom {
    border-bottom: 1px solid #dedede;
}

section.banners .item {
    --banner-height: 80px;
    --o-img-height-desktop: var(--banner-height);
    --o-img-height-tablet: var(--banner-height);
    --o-img-height-mobile: var(--banner-height);
    --bg-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

section.banners .item > * {
    background-color: var(--bg-color);
    margin: auto;
    padding: 0;
    height: var(--banner-height);
}

section.banners .item.bordered > * {
    border: 1px solid #dedede;
}

section.banners .item > *::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

section.banners .item img {
    background-color: inherit;
}

section.banners .item .video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.banners .item video {
    width: 100%;
    max-height: var(--banner-height);
    margin: -1px;
}

@media screen and (max-width: 700px) {
    section.banners .item {
        --banner-height: 70px;
    }
}