#videocontainer {
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 31.25%;
}

#overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#background_video {
    width: 100%
}

#main_content {
    z-index: 200;
    position: absolute;
    display: inline-block;

    margin-left: -63px;
    /* Vertical center */
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#main_content h1 {
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'proxima-nova-condensed', Helvetica;
    color: #fff;
    font-size: 35px;
}

#main_content .sub_head {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

#main_content .info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: 10px;
}

body {
    overflow-x: none;
}

#background_video {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;
    height: 100%;
    width: 100%;
}

#video_cover {
    position: absolute;

    width: 100%;
    height: 100%;

    background: url('/Public/video/video_cover.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

#video_controls {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

#play img {
    width: 100px;
}

#pause img {
    width: 90px;
}

#pause {
    display: none;
}

@media (min-width: 768px) {
    #video_controls {
        display: none;
    }
}

@media (max-width: 768px) {
    #videocontainer {
        display: none;
    }

    .ab_info {
        margin-top: 10px;
    }
}
}
