@media (min-width: 767px) {
    .container {
        max-width: 80%;
    }

    .wrap {
        margin: 0 auto;
        max-width: 80%;
    }
}

.video-banner {
    padding-top: 200px;
    padding-bottom: 140px;
    background: var(--bg-img) no-repeat 50%;
    background-size: cover;
    text-align: center;
}

.video-banner h1 {
    margin: 0;
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.video-banner p {
    margin: 20px 0 0;
    font-family: Georgia, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

@media (min-width: 767px) {

    .video-banner {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {

    .video-banner {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .video-banner h1 {
        font-size: 48px;
    }

    .video-banner p {
        font-size: 18px;
    }
}

/*#region*/
.bread-wrap {
    background: var(--the-other-green);
}

.bread {
    padding: 8px 0;
    color: #fff;
}

.bread a {
    color: #fff;
    text-decoration: none;
}

@media (min-width: 767px) {

}

@media (max-width: 767px) {

}

/*#endregion*/


.video-wrap {
    padding: 80px 0;
}

.video-wrap h2 {
    margin: 0 0 40px;
    position: relative;
    font-family: "Georgia", sans-serif;
    font-size: 36px;
    text-align: center;
    display: flex;
    align-items: center;
}

.video-wrap h2:before,
.video-wrap h2:after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #000;
}

.video-wrap h2 span {
    background: #fff;
    max-width: 90%;
    padding: 0 25px;
    color: #565656;
}


.video-list .grid {
    margin-bottom: 20px;
}

.video-list .item {
    padding: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    min-height: 100%;
}

.video-list .img a{
    display: block;
    position: relative;
}

.video-list .img a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.15) url(../img/icon_video.png) no-repeat 50%;
    opacity: 0;
    transition: all .5s;
}

.video-list .item:hover a:after {
    opacity: 1;
}

.video-list .item h5 {
    margin: 15px 0 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.player video{
    width:100%;
    object-fit:fill
}