html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-theme-bg);
}

.centered-video-hiro-section{
    width: 100%;
    margin: 0 auto;
    max-width: 1920px;
    position: relative;
    height: calc(100dvh - 72px);
    display: flex;
    border-bottom: 2px solid;
    border-image-source: radial-gradient(47.79% 104.84% at 50% 50%, #0769E8 0%, #002887 100%);
    border-image-slice: 2;
    padding: 0 100px;
}

.centered-video-hiro-section .background-layout{
    position:absolute;
    top: -72px;
    left: 0;
    width: 100%;
    height: calc(100% + 72px);
}

.centered-video-hiro-section .background-layout::after{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: linear-gradient(180deg, rgba(0, 35, 118, 0.00) 52.13%, #002989 100%), linear-gradient(0deg, rgba(0, 13, 44, 0.60) 0%, rgba(0, 13, 44, 0.60) 100%);
}

.centered-video-hiro-section .background-layout video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.centered-video-content{
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    height: 100%;
}

.centered-video-content *{
    text-align: center;
}

.centered-video-content .main-h1{
    color: var(--n-white);
}

.centered-video-content .subtitle-semibold{
    color: var(--d-white);
    margin-top: 24px;
    margin-bottom: 48px;
    max-width: 680px;
}

@media screen and (max-width: 1919px) {
    .centered-video-content{
        max-width: 800px;
    }

    .centered-video-content .subtitle-semibold{
        margin-top: 20px;
        margin-bottom: 40px;
        max-width: unset;
    }
}

@media screen and (max-width: 1439px) {
    .centered-video-content{
        max-width: 720px;
    }
}

@media screen and (max-width: 1279px) {
    
}

@media screen and (max-width: 1079px) {
    .centered-video-hiro-section{
        height: fit-content;
        max-height: unset;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .centered-video-hiro-section .background-layout{
        position: relative;
        top: unset;
        left: unset;
        height: auto;
        flex: 1;
        width: 100%;
        max-height: 636px;
        aspect-ratio: 768 / 636;
    }

    .centered-video-hiro-section .background-layout::after{
        bottom: -1px;
        top: -72px;
        height: auto;
        background: linear-gradient(180deg, rgba(1, 25, 87, 0.00) 52.13%, #011957 100%), linear-gradient(0deg, rgba(3, 20, 60, 0.50) 0%, rgba(3, 20, 60, 0.50) 100%);
    }

    .centered-video-hiro-section .background-layout video{
        position: relative;
        top: -72px;
        max-height: 708px;
        height: calc(100% + 72px);
        width: 100%;
    }

    .centered-video-content{
        max-width: unset;
        padding: 0 40px 60px;
        background: linear-gradient(180deg, #011957 0%, #002887 100%), linear-gradient(180deg, #011648 0%, #010C25 100%);
    }

    .centered-video-content .subtitle-semibold{
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 577px) {
    .centered-video-hiro-section .background-layout {
        position: relative;
        top: unset;
        left: unset;
        height: 252px;
        flex: 1;
        max-height: 252px;
    }

    .centered-video-hiro-section .background-layout video{
        top: -68px;
        height: 320px;
    }

    .centered-video-content{
        align-items: start;
        padding: 0 16px 60px;
    }

    .centered-video-content *{
        text-align: start;
    }

    .centered-video-content .subtitle-semibold{
        margin-bottom: 40px;
    }

    .centered-video-hiro-section .background-layout{
        max-height: 334px;
        aspect-ratio: 375 / 334;
    }

    .centered-video-hiro-section .background-layout::after{
        top: -68px;
    }

    .centered-video-hiro-section .background-layout video{
        top: -68px;
        max-height: 402px;
        height: calc(100% + 68px);
    }
}