.slide.banner-bg {
    position: relative;
    overflow: hidden;
}
.hp-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease;
}
.hp-hero-video.hp-hero-video-show {
    opacity: 1;
}
.slide.banner-bg .container-fluid {
    position: relative;
    z-index: 2;
}
.hp-hero-mute-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 17px;
    transition: background .15s ease, border-color .15s ease;
}
.hp-hero-mute-btn.hp-hero-mute-btn-show {
    display: flex;
}
.hp-hero-mute-btn:hover {
    background: rgba(0,0,0,0.7);
    border-color: #fff;
}
@media (max-width: 767.98px) {
    .hp-hero-mute-btn {
        top: 16px;
        right: 16px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}
