#fw-section-hero-video-9664987f-6364-45b4-9476-1445c5f4f36b {

/* Increase video banner height for desktop */
.container.container--10.wrapper {
    height: 900px !important;
    min-height: 700px !important;
}

/* Adjust video banner height for mobile devices */
@media (max-width: 767px) {
    .container.container--10.wrapper {
        height: 500px !important;
        min-height: 500px !important;
    }
}
/* Completely center the banner content */
.hero__content.hero__content--center.hero__content--large {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    height: 100% !important;
    gap: 1px !important; /* You can further reduce this to 0 if needed */
    padding: 0 !important;
}

/* Remove unwanted margins from both headings */
.hero__content.hero__content--center.hero__content--large h1,
.hero__content.hero__content--center.hero__content--large h2 {
    margin: 0 !important; /* This will remove any default browser or theme spacing */
    padding: 0 !important;
}

/* Optional: even smaller gap on mobile if you like */
@media (max-width: 767px) {
    .hero__content.hero__content--center.hero__content--large {
        gap: 0px !important; /* Adjust to taste */
    }
}
/* Fully center the banner content */
.hero__content.hero__content--center.hero__content--large {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    height: 100% !important;
    gap: 0 !important; /* Force no gap */
    padding: 0 !important;
}

/* Remove all spacing from both headings and compress them further */
.hero__content.hero__content--center.hero__content--large h1,
.hero__content.hero__content--center.hero__content--large h2 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0.9 !important; /* Even tighter than default */
    transform: translateY(-5px) !important; /* Pull the heading up slightly */
}

/* Optional: Even tighter on mobile */
@media (max-width: 767px) {
    .hero__content.hero__content--center.hero__content--large {
        gap: 0 !important;
    }

    .hero__content.hero__content--center.hero__content--large h1,
    .hero__content.hero__content--center.hero__content--large h2 {
        line-height: 0.9 !important;
        transform: translateY(-3px) !important; /* Slight pull up for mobile */
    }
}
}