.Slides {
    display: none;
}


/* Slideshow container */

.slideshow-container {
    max-width: 1200px;
    position: relative;
    margin: auto;
}


/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* The dots/bullets/indicators */

.dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* .active {
    background-color: #717171;
} */


/* animated image  */

.img__animate {
    animation: fadeInRight 0.3s;
}


/* Fading animation */

.fade {
    animation: animate 300ms ease-in-out;
}

@keyframes fadeInRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes animate {
    from {
        opacity: 0;
    }
   
    to {
        opacity: 1;
    }
}