.intergen-carousel {

    .carousel-item {

        &.carousel-item-prev,&.carousel-item-next {
            .carousel-caption, .carousel-caption-inner, .carousel-caption-inner >div {
                opacity:0;
            }
        }
        &.active /* .carousel-item.active */ {
            .carousel-caption {
                animation:0.6s ease-in 0s forwards slideshowFadeGrow;
                transform:translateY(30px);
                opacity:0;
                .carousel-caption-inner {
                    & > div {
                        animation:0.5s ease-in-out forwards slideshowFadeUp;
                        opacity:0;
                    }
                    & > div:nth-of-type(1) {
                        animation-delay:0.3s;
                    }
                    & > div:nth-of-type(2) {
                        animation-delay:0.6s;
                    }
                    & > div:nth-of-type(3) {
                        animation-delay:0.9s;
                    }
                    & > div:nth-of-type(4) {
                        animation-delay:1.2s;
                    }
                }

            }
        }
    }
}

@keyframes slideshowFadeGrow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideshowFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}