/* Visit http://www.menucool.com/responsive-slider for instructions */

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

#carouselExampleFade .carousel-item img {
    -webkit-animation: zoom 20s;
    animation: zoom 20s;
}

.carousel-caption {
    position: absolute;
    text-align: center;
    top: 55%;
    transform: translateY(-55%);
    font-size: 64px;
    line-height: 1.2;
    font-weight: 600;
    z-index: 100;
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}