#hero.video-header {
    position: relative;
    background-color: black;
    height: 75vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

#hero.video-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#hero.video-header .container {
    position: relative;
    z-index: 2;
}

#hero.video-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

@media only screen and (max-width: 650px) {
    #hero.video-header h1 {
        /*font-size: 3.1em !important;*/
    }
}

@media only screen and (max-width: 1370px) {
    .navbar-brand strong{
       /* font-size: 11px!important;*/
    }
}

.video-card {
    height: fit-content;
}
.video-card .video-card-img{
    width: 100%;
    border: 2px  solid #a4a5c4;
    border-radius: 10px;
}
.video-card .video-card-footer {
    background: #f29c1278;
    position: absolute;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95.2%;
    visibility: hidden;
}
.video-card:hover .video-card-footer {
    visibility: visible;
}
.video-card .video-card-footer .bi{
    font-size: 70px;
    color: #fff;
}

.bottom-links {
    position: fixed;
    right: 14px;
    bottom: 80px;
    display: block;
}

.bottom-links-link {
    font-size: 16px;
    display: block;
    background: #f29c12;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    transition: 0.3s;
    margin-bottom: 10px;
}

.bottom-links-link:hover {
    color: #fff;
}