﻿.anim-curtain {
    animation: anim-curtain 1.25s cubic-bezier(0.32, 0.42, 0, 0.99) forwards;
}
@keyframes anim-curtain{
    0%{
        width: 100%;
    }
    25%{
        width: 100%;
    }
    65%{
        width: 50%;
    }
}
.anim-appear-up{
    animation: anim-appear-up .5s forwards;
    animation-delay: 0.7s;
    opacity: 0;
}
@keyframes anim-appear-up{
    0%{
        opacity: 0;
        transform: translateY(100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
.anim-delay-1{
    animation-delay: .75s !important;
}
.anim-delay-2{
    animation-delay: .8s !important;
}
.anim-delay-3{
    animation-delay: .85s !important;
}
.anim-delay-4{
    animation-delay: .9s !important;
}
.anim-delay-5{
    animation-delay: .95s !important;
}

/* Animation Responsive */

/* Tablet Landscape */
@media screen and (max-width: 768px){
    
}