.nav_transparent {
    padding: 10px 0px 10px;
    border: 1px;
    background: rgba(0, 0, 0, 0.8);
}

.nav_dark {
    background-color: #000;
    padding: 10px;
}

.homeBg{
    height: 85vh;
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
}

.homeContainer{
    padding: 60vh 0px 0px 50px;
}

.homeBg::before {
    content: "";
    height: 85vh;
    width:100%;
    background-size:cover;
    background-position: center;
    display: block;
    position: absolute;
    opacity: 1;
    z-index: -1;
}

.homeTitle {
    font-size: 55px;
    font-weight: bold;
    clear: both;
    color: #fff;
}

.movie_thumb {
}

.btn_opaque {
    font-size: 20px;
    border: 1px solid #939393;
    text-decoration: none;
    margin: 10px;
    background-color: rgba(0, 0, 0, 0.74);
    color: #fff;
}

.btn_opaque:hover {
    border: 1px solid #939393;
    text-decoration: none;
    background-color: rgba(57, 57, 57, 0.74);
    color: #fff;
}

.video_cover {
    position: relative;
    padding-bottom: 30px;
}

.select_black {
    background-color: #000;
    height: 45px;
    padding: 12px;
    font-weight: bold;
    color: #fff;
}

.profile_manage {
    font-size: 25px;
    border: 1px solid #ccc;
    padding: 5px 30px;
    text-decoration: none;
}

.profile_manage:hover {
    font-size: 25px;
    border: 1px solid #fff;
    padding: 5px 30px;
    text-decoration: none;
    color: #fff;
}

.video_cover:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
    background-size: cover;
}

.intrinsic-container {
    position: relative;
    height: 0;
    overflow: hidden;
}

/* 16x9 Aspect Ratio */
.intrinsic-container-16x9 {
    padding-bottom: 56.25%;
}

/* 4x3 Aspect Ratio */
.intrinsic-container-4x3 {
    padding-bottom: 75%;
}

.intrinsic-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.movieTitle{
    padding: 10px;
    font-size: 14px;
    text-align: center;
    padding-top: 20px;
}

@media screen and (max-width: 768px) {

    .homeBg{
        height: 65vh;
    }

    .homeBg::before {
        height: 65vh;
    }

    .homeContainer{
        padding: 30vh 0px 0px 50px;
    }

    .homeTitle {
        font-size: 30px;
        font-weight: bold;
        clear: both;
        color: #fff;
    }
}