/* For the homepage promo video */
/* Paperthin - BD - 12/2019 */

/* 
Colors:

Dark Blue: #062042
Medium Blue: #01428c
Light Blue: #658fba 
*/

.video-promo-container {
    background-color: #dadbdc;
}

    .video-promo-container  {
        width: 100%;
        height: auto;
        width: 100%;
        padding-top: 56.25%;
        position: relative;
    }

        .video-promo-container .video-promo-video iframe,
        .video-promo-container .video-promo-video video,
        .video-promo-container .video-promo-video img {
            position: absolute;
            width: 100%;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }

    .video-promo-text {
        background-color: #dadbdc;
        color: #062042;
        padding: 40px 2%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

        .video-promo-title {
            font-weight: 800;
            font-size: 1.75em;
            max-width: 60%;
        } 

        .video-promo-text a {
            color: #062042;
            text-decoration: none;
        }

        a.video-action,
        a.video-action:visited {
            background-color: #5f6063;
            display: inline-block;
            color: #fff;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 1.5em;
            position: relative;
            line-height: 1em;
        }


        a.video-action:hover {
            top: -1px;
        }


@media (max-width: 899px) {
    .video-promo-text {
        flex-direction: column;
        padding: 30px 20px;
    }

    .video-promo-title {
        padding: 0;
        max-width: 100%;
        margin-bottom: 30px;
    }
}