﻿.header-type-fixed .full-page-video-banner-section{
    height: 100vh;
}
.header-type-relative .full-page-video-banner-section {
    height: calc(100vh - var(--header-height));
}
.full-page-video-banner-section video {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.full-page-video-banner {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
}
.full-page-video-banner-section-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-top: 100px;
    padding-left: 60px;
    padding-right: 20px;
}
.full-page-video-banner-section-text-content {
    position: relative;
    max-width: 60%;
}
@media only screen and (min-width: 1024px) {
    .video-mobile {
        display: none;
    }

    .video-desktop {
        display: block;
    }
}
@media only screen and (max-width: 1023px) {
    .video-mobile {
        display: block;
    }

    .video-desktop {
        display: none;
    }

    .full-page-video-banner-section-text-content {
        padding-top: 50px;
        padding-left: 20px;
        max-width: 80%;
    }
}