#page_content.homepage section.top_banner {
    width: 100%;
    padding: 1em;
    overflow: hidden;
}


#page_content.homepage section.top_banner .section_content{
    width: 100%;
    max-width: 130em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3em 2em;
}







#page_content.homepage section.top_banner .section_content .text_container{
    width: max-content;
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1em;
    padding: 1em;
    opacity: 0;
    transform: translateX(-20em);
}


#page_content.homepage.ready section.top_banner .section_content .text_container{
    animation: animateTextContainer 0.75s ease-in-out forwards;
}

@keyframes animateTextContainer {
    from{
        opacity: 0;
        transform: translateX(-20em);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}













#page_content.homepage section.top_banner .section_content .text_container .title{
    font-size: min(5.5em, 12vw);
    font-weight: 100;
    text-align: left;
    background: linear-gradient(to right, var(--main-orange), var(--main-blue-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#page_content.homepage section.top_banner .section_content .text_container .title .hidden{
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
}

#page_content.homepage section.top_banner .section_content .text_container .description{
    font-size: min(1.25em, 4vw);
    font-weight: 300;
    text-align: left;
    line-height: 2em;
    width: 100%;
    max-width: 39em;
    margin-top: 2em;
}



#page_content.homepage section.top_banner .section_content .text_container .cta_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 3em;
    font-size: min(1em, 4vw);
}


#page_content.homepage section.top_banner .section_content .text_container .cta_container .cta{
    align-self: stretch;
}




#page_content.homepage section.top_banner .section_content .text_container .cta_container .cta .app_icon.video{
    min-width: 1.75em;
    margin-bottom: -0.1em;
}

#page_content.homepage section.top_banner .section_content .text_container .cta_container .cta .app_icon.rule-book{
    min-width: 1.5em;
    margin-bottom: -0.25em;
}

#page_content.homepage section.top_banner .section_content .text_container .cta_container .cta .app_icon.buy{
    min-width: 1.5em;
    margin-bottom: -0.1em;
}











#page_content.homepage section.top_banner .section_content .image_container{
    width: 100%;
    max-width: 45em;
    aspect-ratio: 10 / 8;
    position: relative;
    transform: rotateX(25deg);
}







#page_content.homepage section.top_banner .section_content .image_container .bouquet_container{
    position: absolute;
    z-index: 0;
    top: 50%;
    width: 60%;
    aspect-ratio: 1 / 1;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}







#page_content.homepage section.top_banner .section_content .image_container .bouquet_container.bouquet_left_container{
    left: 25%;
    transform-origin: center;
}


#page_content.homepage.ready section.top_banner .section_content .image_container .bouquet_container.bouquet_left_container{
    animation: appearBouquetLeft 0.75s 0.5s ease-in-out forwards, animateBouquetLeft 6s 1.25s ease-in-out infinite;
}

@keyframes appearBouquetLeft {
    0%{
        opacity: 0;
        transform: translate(calc(-50% - 10em), -50%) rotate(0deg);
    }
    100%{
        opacity: 1;
        transform: translate(-50%, -50%) rotate(20deg);
    }
}

@keyframes animateBouquetLeft {
    0%{
        opacity: 1;
        transform: translate(-50%, -50%) rotate(20deg);
    }
    50%{
        opacity: 1;
        transform: translate(-50%, -50%) rotate(25deg);
    }
    100%{
        opacity: 1;
        transform: translate(-50%, -50%) rotate(20deg);
    }
}


#page_content.homepage section.top_banner .section_content .image_container .bouquet_container.bouquet_right_container{
    left: 78%;
    transform-origin: center;
}

#page_content.homepage.ready section.top_banner .section_content .image_container .bouquet_container.bouquet_right_container{
    animation: appearBouquetRight 0.75s 0.5s ease-in-out forwards, animateBouquetRight 6s 1.25s ease-in-out infinite;
}

@keyframes appearBouquetRight {
    0%{
        opacity: 0;
        transform: translate(calc(-50% + 10em), -50%) rotate(0deg);
    }
    100%{
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-20deg);
    }
}

@keyframes animateBouquetRight {
    0%{
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-20deg);
    }
    50%{
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-25deg);
    }
    100%{
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-20deg);
    }
}





#page_content.homepage section.top_banner .section_content .image_container .bouquet_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}








#page_content.homepage section.top_banner .section_content .image_container .banner_board{
    width: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-25% + 20em));
    opacity: 0;
}

#page_content.homepage.ready section.top_banner .section_content .image_container .banner_board{
    animation: animateBoard 0.75s ease-in-out forwards;
}

@keyframes animateBoard {
    from{
        opacity: 0;
        transform: translate(-50%, -25%) scale(0);
    }
    to{
        opacity: 1;
        transform: translate(-50%, -25%) scale(1);
    }
}

#page_content.homepage section.top_banner .section_content .image_container .banner_box{
    width: 25%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 30%;
    left: 50%;
    transform: translate(-50%, calc(-75% - 20em));
    opacity: 0;
}

#page_content.homepage.ready section.top_banner .section_content .image_container .banner_box{
    animation: animateBox 0.75s ease-in-out forwards;
}

@keyframes animateBox {
    from{
        opacity: 0;
        transform: translate(-50%, calc(-75% - 20em));
    }
    to{
        opacity: 1;
        transform: translate(-50%, -75%);
    }
}













@media screen and (min-width: 600px) {


    #page_content.homepage section.top_banner .section_content .text_container .cta_container{
        flex-direction: row;
    }


}






@media screen and (min-width: 1200px) {

    #page_content.homepage section.top_banner .section_content{
        flex-direction: row;
        justify-content: space-evenly;
    }


    #page_content.homepage section.top_banner .section_content .text_container{
        font-size: min(1.2vw, 1em);
        width: max-content;
        min-width: 40em;
    }


    #page_content.homepage section.top_banner .section_content .image_container{
        max-width: 60em;
    }

}
