.cover{
    height: 100vh;
    min-height: 970px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center
}
.cover h1{
    font-weight: 900;
}
@media (max-width: 767px) {
    .cover{
        height: auto;
    }
}
.videoback{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.cover__overlay{
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left: 0;
    background-image: url('img/bg.png');
    background-color: rgba(6, 45, 77, 0.43);
}
hr{
    border-color: white;
    border-width: 2px;
    margin-bottom: 50px;
}
.btn-custom-sm{
    text-align: center;
    font-size: 16px;
    display: inline-block;
    color: white;
    font-weight: 700;
    width: 100%;
    line-height: 33px;
    background-color: transparent;
    border: solid rgba(255, 255, 255, 1) 2px;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.2s ease-in;
}
.btn-custom-sm:last-child{
    margin-bottom: 0;
}
.btn-custom-sm:hover{
    color: #00A0E3;
    border: solid rgba(255, 255, 255, 1) 2px;
    background-color: white;
    text-decoration: none;
}
.cover input[type="email"]{
    background: rgba(255,255,255, 0.3);
    padding: 10px;
    font-size: 22px;
    height: 48px;
    border-radius: 10px 0 0 10px;
    border: 1px solid white;
    text-align: center;
}
.cover input[type="submit"]{
    background-color: rgba(255,255,255,.5);
    border: 1px solid white;
    font-size: 22px;
    color: white;
    padding: 0 30px;
    height: 48px;
    margin-left: -5px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

.cover input[type="submit"]:hover{
    background-color: rgba(255,255,255,1);
    color: #00A0E3;
}

.cover input[type="email"]::-webkit-input-placeholder{
    text-transform: uppercase;
    color: white;
}
.cover input[type="email"]::-moz-placeholder{
    text-transform: uppercase;
    color: white;
}
.cover input[type="email"]:-ms-input-placeholder{
    text-transform: uppercase;
    color: white;
}
.cover .social{
    color: white;
    display: inline-block;
    margin: 0 5px;
}
.cover__video{
    margin: 0 auto;
    margin-bottom: 45px;
    border: 1px solid white;
    border-radius: 15px;
    height: 200px;
    width: 350px;
    background-color: rgba(255,255,255,0);
    background-image: url('img/video_background.png');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease-in-out;
}

.cover__video:hover{
    background-color: rgba(255,255,255,.3);
}
.cover__video__play_button{
    background-image: url('img/video_play.png');
    background-size: cover;
    height: 50px;
    width: 50px;
    cursor: pointer;
}