﻿/* all */
.hero {
    /* to undo container padding */
    display: none;
    margin: 0 -20px 3em;
}

/* banner */
.hero__img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* carousel */
.hero--carousel .flexslider .flex-control-paging {
    bottom: 2em;
    left: 50%;
}

/* video */
.hero--video {
    position: relative;
    overflow: hidden;
}

.hero__video-container {
    display: none;
    top: 0;
    left: 0;
    z-index: 1;
    min-height: 100%;
    min-width: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.hero__video {
    display: none;
    top: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero__poster {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__poster-img {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (min-width:768px) {
    .hero {
        display: block;
    }

    .hero__video-container {
        display: block;
    }

    .hero__video {
        display: block;
    }

    .hero__poster {
        display: none;
    }
}
