﻿/* Slideshow container */
.slideshow-container {
   /* max-width: 1000px;*/
    width: 100%;
    position: relative;
    margin: auto;
    margin:0px;
    padding:0px;
}

/* Caption text */
.slideshow-text {
    color: #f2f2f2;
    /*background-color:black;*/
    font-size: 30px;
    font-weight:bold;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media(max-width:800px) {

    .slideshow-text {
        
        font-size: 20px;
    }
    }

.zoom-in-out-element {
    animation: zoom-in-zoom-out 5s ease ;/*infinite;*/
}

.zoom-in-out-element-inf {
    animation: zoom-in-zoom-out 5s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        scale: 85%;
        opacity: 1.0;
    }

    /*25% {
        scale: 100%;
        opacity: 1.0;
    }*/

    /*50% {
        scale: 100%;
        opacity: 1.0;
    }*/

   /* 75% {
        scale: 100%;
        opacity: 1.0;
    }*/

    100% {
        scale: 105%;
        opacity: 1.0;
    }
}