/**
 * Banner Responsive Styles
 * Media queries for banner sections across different screen sizes
 */
/* Tablet and Below - Awards */
@media screen and (max-width: 768px) {
    .awards_wrapper {
        gap: 30px;
    }
    .awards_and_certificates {
        gap: 18px;
        flex-wrap: nowrap;
    }
}
@media screen and (max-width: 767px) {
    .support-optimize-banner {
        padding-bottom: 5em;
        padding-top: 11em;
    }
}
/* Mobile - Awards */
@media screen and (max-width: 600px) {
    .awards_wrapper {
        gap: 30px;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .awards_and_certificates {
        align-self: flex-start;
    }
    .main_banner_video .awards_and_certificates {
        flex-wrap: wrap;
    }
}
/* Medium Screens - Image Corner Object */
@media (min-width: 561px) and (max-width: 1024px) {
    section.main_banner_video:has(.image_corner_object) .h2.text-full-width {
        max-width: 80% !important;
    }
}
/* Desktop */
@media (max-width: 1300px) {
    body:not(.search) .support-optimize-banner .container {
        min-height: 12em;
    }
}
/* Tablet */
@media (max-width: 1039px) {
    section.main_banner_video {
        padding-top: 10em;
    }
}
/* Tablet - Typography */
@media (max-width: 1024px) {
    .support-optimize-banner h2,
    .support-optimize-banner .h2,
    .support-optimize-banner h1 {
        max-width: 100% !important;
    }
}
/* Mobile - Container Height & Video */
@media only screen and (max-width: 910px) {
    body:not(.search) .support-optimize-banner .container {
        min-height: unset;
    }
    .main_banner_video video.support_video {
        height: auto;
    }
}
/* Mobile - Glossary Link */
@media only screen and (max-width: 924px) {
    .glossary_industry_link {
        margin-top: 1.6em;
    }
}
/* Mobile - Headings */
@media (max-width: 767px) {
    .support-optimize-banner h1 {
        max-width: none !important;
    }
}
/* Mobile - Hide Video Controls */
@media only screen and (max-width: 1200px) {
    .support-optimize-banner #main_video,
    .support-optimize-banner #toggleMute {
        display: none;
    }
}
/* Tablet - Typography Sizes */
@media only screen and (max-width: 1300px) {
    h1, .h1 {
        font-size: 2.3em;
        line-height: 1em;
        margin-bottom: 8px;
    }
    h2, .h2 {
        font-size: 1.35em;
        line-height: 1.12em;
        font-weight: 400;
        margin-bottom: 8px;
    }
}
/* Desktop - Padding and Heading Adjustments */
@media only screen and (max-width: 1024px) {
    .support-optimize-banner {
        padding-bottom: 5em;
        padding-top: 11em;
    }
    .support-optimize-banner h1 {
        text-align: left;
    }
    .support-optimize-banner h1 span {
        vertical-align: top;
    }
}
/* iOS Support */
@supports (-webkit-overflow-scrolling: touch) {
    * {
        cursor: pointer;
    }
}