
html { scroll-behavior: smooth; }

header {
    height: 100vh;
    cursor: auto;
}

/* header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
} */

header {
    /* height: 100vh; */
    cursor: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    
}



.header-content-container {
    position: absolute;
    width: 100%;
}

#countdown {
    display: flex;
    gap: 50px;
}

.fade-in { opacity: 1; }

.sec-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* max-width: 1200px; */
    width: 100%;
    margin: 0 auto;
}

.sec-header-content h1 {
    font-size: 8vw;
    margin-bottom: 20px;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
    margin: 0 0 100px 0;
}

.sec-header-content h2 {
    text-align: center;
    color: #f0f0f0;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}

.oe-p-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
}


.sec-header-content span h1,
.container span img {
    opacity: 0;

        transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);

    animation: fadeIn .5s ease-out forwards;
    display: inline-block;
}

.sec-header-content #countdown {
    animation-delay: 1.7s;
}

.container span img {
    animation-delay: 2.2s;
}

@keyframes fadeIn{
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
    BOUNCING - Arrow
*/
.arrow
{
    position: relative;
    bottom: -2rem;
    width: 150px;
    height: 150px;

/**
* Dark Arrow Down
*/
    background-image: url(/Icons/caret-down.svg);
    background-size: contain;
    cursor: pointer;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}


@media screen and (max-width: 768px) {

    .sec-header-content { padding: 30px 0;}
    .sec-header-content h1 {
        font-size: 80px;
    }

    .sec-header-content h2 {
        font-size: 30px;
        text-align: center;
    }

    #countdown {
        gap: 20px;
    }

    #countdown div span {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 500px) {
    header { height: 60vh;}

    .sec-header-content h1 {
        font-size: 60px;
    }

    .header-content-container {
        height: 60vh !important;
        /* left: 30px !important; */
        width: 92% !important;
    }

    #countdown {
        gap: 0;
        font-size: 50px !important;
    }

    video {
        object-fit: cover !important;
        width: 100% !important;
        height: 95% !important;
    }

    .a-link-oe-p {
        height: 60vh !important;
    }
}

/* @media screen and (max-width: 768px) {

    header {
        height: 80vh;
    }

    section { padding: 30px 0;}
    section h1 {
        font-size: 60px;
    }

    section h2 {
        font-size: 30px;
        text-align: center;
    }

    #countdown {
        gap: 10px;
    }

    #countdown div span {
        font-size: 20px !important;
    }

    .container {
        position: absolute;
        bottom: 100px !important;
        left: 0 !important;
        width: 100vw !important;
    }
}

@media screen and (max-width: 500px) {

    #countdown {
        gap: 0;
    }

    .sec-sm img {
        width: 30px;
    }
} */