.banner {
    position: relative;
}
.banner-video--container {
    position: relative;
    width: 100%; /* 16:9 ratio */
    height: 850px;
    overflow: hidden;
}
/* Optional dark overlay */
.banner-video--container::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
}
.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* 16:9 ratio */
    height: 850px;
    transform: translate(-50%, -50%);
    pointer-events: none; /* prevents clicks */
    z-index: 0;
}
.banner-video iframe {
    width: 100%;
    height: 100%;
    transform: scale(1.3);
}
.banner-body {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}
.banner-body h1 {
    color:#F5F5F5;
}
.banner-body p {
    color:#F5F5F5;
    font-family: "Open Sans", sans-serif;
    font-size: 2.1875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.8125rem;
}
.banner-bg {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 2;
}
.banner .b2-link {
    margin: 20px 0;
}
.banner-logo {
    margin-bottom: 40px;
}
@media only screen and (max-width: 1650px) {
    .banner-bg {
        right: -70px;
    }
    .banner-body {
        top: 65%;
        transform: translateY(-65%);
    }
    .banner-video iframe {
        transform: scale(1.6);
    }
}
@media only screen and (max-width: 1400px) {
    .banner-body {
        top: 70%;
        transform: translateY(-70%);
    }
}
@media only screen and (max-width: 1280px) {
    .banner {
        text-align: center;
    }
    .banner-bg {
        display: none;
    }
    .banner-body h1 {
        font-size: 3rem;
        line-height: 3.575rem;
    }
    .banner-body {
        top: 60%;
        transform: translateY(-60%);
    }
    .banner-body p {
        font-size: 1.5rem;
        line-height: 1.875rem;
        padding: 0 80px;
    }
    .banner-image {
        height: 575px;
        object-fit: cover;
    }
    .banner-logo {
        width: 10%;
    }
    .banner-video,
    .banner-video--container {
        height: 600px;
    }
}
@media only screen and (max-width: 991px) {
    .banner-body {
        top: 50%;
        transform: translateY(-50%);
    }
    .banner-logo {
        width: 15%;
        margin-bottom: 0;
    }
    .banner-video iframe {
        transform: scale(2);
    }
}
@media only screen and (max-width: 767px) {
    .banner-logo {
        width: 30%;
    }
    .banner-body br {
        display: block;
    }
    .banner-body h1 {
        font-size: 1.9rem;
        line-height: 2.2rem;
    }
    .banner-body p {
        font-size: 1rem;
        line-height: 1.4rem;
        padding: 0px;
    }
    .banner-video,
    .banner-video--container {
        height: 490px;
    }
    .banner-video iframe {
        transform: scale(3.4);
    }
}
@media only screen and (max-width: 380px) {
    .banner-video iframe {
        transform: scale(3.6);
    }
}