@keyframes ArrowAnimation {
    0% {
        bottom: 0;
    }
    25% {
        bottom: 40px;
    }
    32% {
        bottom: 0;
    }
    40% {
        bottom: 20px;
    }
    50% {
        bottom: 0;
    }
}

#hero {
    position: relative;
    height: max(600px, 100vh);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero #hero-main {
    position: absolute;
    inset: 0;
    margin-top: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 8vw;
}

#hero #hero-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: min(300px, 25vw);
    padding-right: 3vw;
}

#hero #hero-title {
    /*font-weight: 900;*/
    font-family: GothamBlack;
    font-size: min(3vw, 48px);
    line-height: 1em;
}

#hero .hero-datetime {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 25%;
}

#hero .hero-datetime-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#hero .hero-datetime-logo {
    width: min(27px, 2vw);
    margin-right: 2vw;
}

#hero .hero-datetime-content {
    font-weight: 400;
    font-family: GothamBook;
    font-size: min(2vw, 19px);
    line-height: 1em;
}

#hero #hero-button {
    border: 1px solid #33CC99;
    outline: none;
    font-weight: 600;
    font-family: GothamBook;
    font-size: min(2vw, 19px);
    color: var(--background-color);
    background-color: #33CC99;
    border-radius: 50px;
    padding: .8em 2em;
    transition-duration: .4s;
}

#hero #hero-button:hover {
    background-color: var(--font-color);
    color: #33CC99;
    box-shadow: 0 0 10px #33CC99;
}

#hero #teaser-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero #hero-teaser {
    width: min(600px, 50vw);
}

#hero #teaser-video {
    position: absolute;
    width: 86%;
    left: 5.8%;
    top: 13%;
}

#hero #teaser-circles {
    position: absolute;
    width: 31%;
    bottom: 0;
    left: 33.4%;
}

#hero #teaser-button {
    position: absolute;
    left: 43%;
    width: 12%;
    padding-top: 12%;
    border: 1px solid #33CC99;
    border-radius: 50%;
    background-color: #33CC99;
    transition-duration: .4s;
}

#hero #teaser-button > .fa-play{
    position: absolute;
    inset: 0;
    left: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: min(30px, 3vw);
    color: white;
    transition-duration: .4s;
}

#hero #teaser-button:hover {
    cursor: pointer;
    background-color: var(--font-color);
    box-shadow: 0 0 10px #33CC99;
}

#hero #teaser-button:hover > .fa-play {
    color: #33CC99;
}

#hero #down-arrow-container {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#hero #hero-down-arrow {
    position: relative;
    margin-bottom: 20px;
    width: min(30px, 5vw);
    animation: ArrowAnimation 4s ease 2s infinite normal;
}

@media only screen and (max-width: 900px) {
    #hero {
        height: max(700px, 100vh);
    }

    #hero #hero-main {
        margin-top: 20vh;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-end;
    }

    #hero #hero-text {
        align-items: center;
        height: min(280px, 58vw);
    }

    #hero #hero-title {
        text-align: center;
        font-size: min(30px, 10vw);
    }

    #hero .hero-datetime-logo {
        width: min(5vw, 27px);
    }

    #hero .hero-datetime-content {
        font-size: min(4vw, 19px);
    }

    #hero #hero-button {
        font-size: min(6vw, 19px);
    }

    #hero #teaser-container {
        margin-bottom: 20px;
    }

    #hero #hero-teaser {
        width: min(350px, 90vw);
    }

    #hero #teaser-button > .fa-play {
        font-size: min(20px, 3vw);
    }
}

@media only screen and (max-width: 360px) and (min-height: 651px) and (max-height: 700px) {
    #down-arrow-container {
        margin-bottom: 10%;
    }
}
@media only screen and (max-width: 360px) and (min-height: 600px) and (max-height: 650px) {
    #down-arrow-container {
        margin-bottom: 20%;
    }
    @keyframes ArrowAnimation {
        0% {
            bottom: 0;
        }
        25% {
            bottom: 10px;
        }
        32% {
            bottom: 0;
        }
        40% {
            bottom: 15px;
        }
        50% {
            bottom: 0;
        }
    }
}
@media only screen and (max-width: 360px) and (min-height: 550px) and (max-height: 599px) {
    #down-arrow-container {
        margin-bottom: 35%;
    }
}
@media only screen and (max-width: 900px) {
    #hero-button { 
        display: none;
    }
}
