@keyframes VideoFade {
    0% {
        opacity: 0%;
    }

    10% {
        opacity: 100%;
    }

    90% {
        opacity: 100%;
    }
    100% {
        opacity: 0%;
    }
}

@keyframes TextFade {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

.header {
    padding: 0;
    z-index: -2;
    height: 80vh;
    
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;

    position: sticky;
    top: 0;

    margin: 0;

    display: flex;
    justify-content: center;

    background-color: #11141B;
}


.header__video {
    pointer-events: none;
    opacity: 0%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: VideoFade 6s ease-out forwards;
}


.header__image {
    pointer-events: none;
    opacity: 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    animation: TextFade 1s 6s ease-out forwards;

    position: absolute;

    font-weight: 100;
    font-size: 0.75rem;
    color: #2b3242;

    width: 80%;
    height: 100%;
}

.transition {
    width: 100%;
    height: 3rem;
    margin-top: -3rem;
    margin-bottom: -1rem;
}

.quote {
    padding: 10rem 10vw;
}

@media (min-width: 768px) {
    .header {
        
        height: 90vh;
    }
    .header__image {
        width: 70%;
    }
}

@media (min-width: 992px) {
    .header__image {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .header__image {
        width: 40%;
    }
}