@charset "utf-8";

.carousel-slide-title:nth-child(1) { top: 0; }
.carousel-slide-title:nth-child(2) { top: -100%; }
.carousel-slide-title:nth-child(3) { top: -200%; }
.carousel-slide-title:nth-child(4) { top: -300%; }
.carousel-slide-title:nth-child(5) { top: -400%; }

.slider-img:nth-child(1) { 
    top: 0;
}
.slider-img:nth-child(2) { 
    top: 100%;
}
.slider-img:nth-child(3) { 
    top: 200%; 
}
.slider-img:nth-child(4) { 
    top: 300%;
}
.slider-img:nth-child(5) {
    top: 400%;
}



@keyframes animation-text-slider  {
    0% { perspective: 50px; transform: translateY(-300px) scale(1) rotateX(50deg) rotateY(50deg); opacity: 0; }
    100% { perspective: 0px; transform: translateY(0px) scale(1) rotateX(0deg) rotateY(0deg); opacity: 1; }
}


@keyframes animation-image-layer-slider  {
    0% { perspective: 50px; transform: translateY(1500px) scale(1); opacity: 0; }
    100% { perspective: 0px; transform: translateY(0px) scale(1); opacity: 1; }
}
/* @keyframes animation-image-layer-slider2  {
    0% { perspective: 50px; transform: translateX(1000px) scale(1); opacity: 0; }
    100% { perspective: 0px; transform: translateX(0px) scale(1); opacity: 1; }
} */


.animation-text-slider { animation: animation-text-slider 1.2s forwards; animation-delay: .3s; }
.animation-text-slider2 { animation: animation-text-slider 1s forwards; animation-delay: .3s; }

.animation-image-layer-slider { animation: animation-image-layer-slider 1.3s forwards; animation-delay: 0s; }
.animation-image-layer-slider2 { animation: animation-image-layer-slider 1.3s forwards; animation-delay: 0s; }

