﻿```css
/*==============================
    Video Gallery
==============================*/
.video-gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
}

/*==============================
    Video Card
==============================*/

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .35s ease;
    height: 100%;
}

    .video-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

/*==============================
    Thumbnail
==============================*/

.video-thumb {
    position: relative;
    overflow: hidden;
}

    .video-thumb img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .5s;
        display: block;
    }

.video-card:hover img {
    transform: scale(1.08);
}

/* Dark Overlay */

.video-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.18);
    transition: .3s;
}

.video-card:hover .video-thumb::before {
    background: rgba(0,0,0,.35);
}

/*==============================
    Play Button
==============================*/

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

    .play-btn i {
        font-size: 28px;
        color: #b88a44;
        margin-left: 5px;
    }

.video-card:hover .play-btn {
    background: #b88a44;
    transform: translate(-50%, -50%) scale(1.08);
}

    .video-card:hover .play-btn i {
        color: #fff;
    }

/*==============================
    Content
==============================*/

.video-body {
    padding: 22px;
}

    .video-body h4 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #222;
        line-height: 1.4;
    }

    .video-body p {
        color: #666;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

/*==============================
    No Data
==============================*/

.no-data {
    text-align: center;
    padding: 80px;
    font-size: 20px;
    color: #777;
}

/*==============================
    Bootstrap Modal
==============================*/

.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    background: #b88a44;
    color: #fff;
    border: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    background: #000;
}

    .modal-body iframe,
    .modal-body video {
        width: 100%;
        height: 650px;
        display: block;
        border: none;
    }

/*==============================
    Section Title
==============================*/

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-title p {
        max-width: 700px;
        margin: auto;
        color: #666;
        line-height: 1.8;
    }

/*==============================
    Responsive
==============================*/

@media(max-width:991px) {

    .video-thumb img {
        height: 220px;
    }

    .modal-body iframe,
    .modal-body video {
        height: 450px;
    }
}

@media(max-width:767px) {

    .video-gallery-section {
        padding: 60px 0;
    }

    .video-thumb img {
        height: 210px;
    }

    .play-btn {
        width: 65px;
        height: 65px;
    }

        .play-btn i {
            font-size: 22px;
        }

    .video-body h4 {
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .modal-body iframe,
    .modal-body video {
        height: 280px;
    }
}

```
