﻿/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
    position: relative;
    margin-bottom: -7px;
}

#bg-video {
    min-width: 100%;
    min-height: 80vh;
    max-width: 100%;
    max-height: 80vh;
    object-fit: cover;
    z-index: -1;
}

    #bg-video::-webkit-media-controls {
        display: none !important;
    }

.video-overlay {
    position: absolute;
    /*background-color: rgba(35,45,57,0.8);*/
    background: #2E4D73;
    background: linear-gradient(0deg,rgba(46, 77, 115, 1) 0%, rgba(46, 77, 115, 0) 100%);
    top: 0;
    left: 0;
    bottom: 7px;
    width: 100%;
}

.main-banner .caption {
    text-align: left;
    position: absolute;
    width: 80%;
    left: 5%;
    bottom: 5%;
    /*transform: translate(50%,10%);*/
}

    .main-banner .caption h5 {
        margin-top: 0px;
        font-size: 22px;
        font-weight: 500;
        color: #fff;
        letter-spacing: 0.5px;
    }

    .main-banner .caption h2 {
        margin-bottom: 15px;
        font-size: 36px;
        font-weight: 800;
        color: #fff;
        letter-spacing: 1px;
    }

        .main-banner .caption h2 em {
            font-style: normal;
            color: #ed563b;
            font-weight: 900;
        }

.main-button a {
    display: inline-block;
    font-size: 15px;
    padding: 12px 20px;
    background-color: #ed563b;
    color: #fff;
    text-align: center;
    font-weight: 400;
    transition: all .3s;
}

    .main-button a:hover {
        background-color: #f9735b;
    }
