﻿.auto .full-height {
    height: 100vh;
    overflow: hidden;
    position: relative;
}
    .auto .full-height .content {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
.auto .header video {
    display: block;
    position: relative;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
    .auto .full-height .full-height-img {
        display: block;
        position: absolute;
        width: 100%;
        z-index: 1;
    }
        .auto .full-height .full-height-img img {
            width: 100%;
        }
        .auto .full-height .full-height-img.not-on-mobile {
            display: block;
        }
        .auto .full-height .full-height-img.not-on-desktop { display: none; }

        .auto .full-height.expand-bottom .full-height-img {
            top: 0;
        }
        .auto .full-height.center .full-height-img {
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }
        .auto .full-height.expand-top .full-height-img,
        .auto .full-height .expand-top.full-height-img {
            bottom: 0;
        }
        .auto .full-height.expand-top-left .full-height-img,
        .auto .full-height .expand-top-left.full-height-img {
            bottom: 0;
            right: 0;
        }
        .auto .full-height.expand-right .full-height-img,
        .auto .full-height .expand-right.full-height-img {
            left: 0;
            height: 100%;
            width: auto;
        }
    .auto .full-height.expand-left .full-height-img,
    .auto .full-height .expand-left.full-height-img {
        right: 0;
        height: 100%;
        width: auto;
    }
        .auto .full-height.expand-bottom-left .full-height-img,
        .auto .full-height .expand-bottom-left.full-height-img {
            top: 0;
            right: 0;
        }
        .auto .full-height.expand-top-bottom .full-height-img,
        .auto .full-height .expand-top-bottom.full-height-img {
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

    .auto .full-height .expand-top.expand-offset-5.full-height-img {
        bottom: -5%;
    }

    .auto .full-height .expand-top.expand-offset-10.full-height-img {
        bottom: -10%;
    }

    .auto .full-height .expand-top.expand-offset-15.full-height-img {
        bottom: -15%;
    }

    .auto .full-height .expand-top.expand-offset-20.full-height-img {
        bottom: -20%;
    }

    .auto .full-height .expand-top.expand-offset-25.full-height-img {
        bottom: -25%;
    }

@media (max-width: 768px) {
    .auto .full-height.mobile-auto .full-height-img {
        position: relative;
    }
    .auto .full-height.mobile-auto .content {
        position: absolute;
        top: 0;
        left: 0;
    }
    .auto .full-height .full-height-img.not-on-mobile { display: none; }
    .auto .full-height .full-height-img.not-on-desktop { display: block; }
}