/*** INTRODUCTION VIDEO  ***/
#introduction-video-wrapper {
    background: #000; 
    position: relative;
    z-index: 2;
    padding: 0;
    overflow: hidden;
}
#introduction-video-wrapper .video-container {
    position: relative;
    height: 100vh;
}
/* >> Introduction Video - Video */
#introduction-video-wrapper .video-container video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}
/* >> Introduction Video - Text Overlay */
#introduction-video-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    max-width: 950px;
    padding: 0 20px;
}
#introduction-video-wrapper .text-overlay img.logo-img {
    width: 350px;
    display: block;
    margin: 0 auto 35px;
}
#introduction-video-wrapper .text-overlay h1.outline-header {
    position: absolute;
    left: -100%;
    top: -100%;
}
#introduction-video-wrapper .text-overlay h2,
#introduction-video-wrapper .text-overlay p {
    color: #fff;
    display: block;
    text-align: center;
}
#introduction-video-wrapper .text-overlay h2 {
    display: block;
    font-size: 43px;
    font-weight: 600 !important;
    letter-spacing: 4px;
    margin: 0 0 35px;
    text-transform: none;
}
#introduction-video-wrapper .text-overlay p {
    font-size: 18px;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}
#introduction-video-wrapper .text-overlay a.btn.btn-primary {
    display: block;
    width: 200px;
    margin: 50px auto 0;
}
/* >> Introduction Video - Media Queries */
@media only screen and (max-width: 1150px) {
    #introduction-video-wrapper .text-overlay h2 {
        font-size: 35px;
    }
}
@media only screen and (max-width: 991px) {
    #introduction-video-wrapper .text-overlay h2 {
        font-size: 30px;
    }
    #introduction-video-wrapper .text-overlay p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 500px) {
    #introduction-video-wrapper .text-overlay img.logo-img {
        width: 250px;
    }
}
/* >> Introduction Video - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #introduction-video-wrapper .text-overlay img.logo-img {
        width: 450px;
    }
    #introduction-video-wrapper .text-overlay {
        max-width: 1200px;
    }
    #introduction-video-wrapper .text-overlay h2 {
        font-size: 60px;
    }
    #introduction-video-wrapper .text-overlay p {
        max-width: 1000px;
        font-size: 25px;
    }
}
/* >> Introduction Video - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #introduction-video-wrapper .text-overlay h2 {
        font-size: 20px;
    }
}
/* >> Introduction Video - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #introduction-video-wrapper .text-overlay img.logo-img {
        width: 200px;
    }
    #introduction-video-wrapper .text-overlay h2 {
        font-size: 20px;
    }
    #introduction-video-wrapper .text-overlay p {
        font-size: 15px;
    }
}