/* 4. VIDEO MODULE */
.video-section {
    padding: 140px 0;
    background: #000;
    color: #fff;
}
.video-section  h2{
    color: #fff;
}
.video-wrap {
    width: 100%;
    /* height: 650px; */
    background: url('https://images.unsplash.com/photo-1504198458649-012800d46324?auto=format&fit=crop&q=80&w=1200') center/cover;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.video-wrap video{width:100%;}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-ring {
    width: 100px;
    height: 100px;
    border: 1px solid var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
}

.play-ring:hover {
    background: var(--brand-gold);
}
