.__container_div_fonts {

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text_container_locale {
    height: 80%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  

}


.__arrow_image {
    background-image: url('/assets/imgs/down-arrow.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    animation: __animation_style_text 1s ease-out;
    filter: invert(1);
}


.set_arrow_content {

    width: 100px;
    height: 200px;
    overflow: hidden;


}


.__container_text_one_by_one{
   
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.__text_line_side {

    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.__text_decored_show{
    color: white;
    text-align: justify;
    line-height: 33px;
    width: 80%;
}


.__text_line_description_over_container {

    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text_user_viewer {
    text-align: center;
    line-height: 44px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 200;

    font-style: normal;
    font-size: 28px;
    opacity: 0.7;
    color: rgb(216, 214, 214);

    animation: __animation_style_text 1s ease-out;
}


@keyframes __animation_style_text {

    0% {
        transform: translateY(100px);
    }

    80% {
        transform: translateY(-10px);
        /* sobe um pouco além */
    }

    100% {
        transform: translateY(0);
    }

}


.__text_decored_show{
    text-align: center;
}

.__text_decored_show span {
    opacity: 0;
    display: inline-block;
    animation: showWord 0.5s ease forwards;
}

@keyframes showWord {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }

}