﻿.stripParallax {
    /* Full height */
    height: 100%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stripVideoContainer {
    position: relative;
    overflow: hidden;
}

.stripVideoContainer video {
    margin-bottom: -5px;
}

.stripVideoContent {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
}

.stripWidth {
    width: 100% !important;
    height: auto !important;
}

.stripFullWidth {
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .stripWidth {
        width: auto !important;
        height: 600px !important;
    }
}