.anim__come{
    opacity: 0;
}
.anim__set-anim-come{
    animation: anim-come forwards 0.7s;
    animation-delay: .3s;
}

.anim_welcome .anim_welcome_item_1{
    opacity: 0;
    animation: anim-welcome forwards 0.5s;
    animation-delay: 0s;
}
.anim_welcome .anim_welcome_item_2{
    opacity: 0;
    animation: anim-welcome forwards 0.5s;
    animation-delay: .4s;
}
.anim_welcome .anim_welcome_item_3{
    opacity: 0;
    animation: anim-welcome forwards 0.5s;
    animation-delay: .8s;
}
.anim_welcome .anim_welcome_item_4{
    opacity: 0;
    animation: anim-welcome forwards 0.5s;
    animation-delay: 1.2s;
}
.anim_welcome .anim_welcome_item_5{
    opacity: 0;
    animation: anim-welcome forwards 0.5s;
    animation-delay: 1.6s;
}

@keyframes anim-welcome{
    0%{
        opacity: 0;
        transform: translateY(10px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes anim-come{
    0%{
        opacity: 0;
        transform: translateY(-10px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}