.slideshow {

	
    position: relative;
    overflow:  visible;
    background: #F7F7F7;
    margin: 20px 0;
	
}
.slideshow-item {

    position: absolute;
    opacity: 0;
    animation: slideanim 20s infinite;
    pointer-events: none;
}
.slideshow-item:nth-child(1),
.slideshow-item:nth-child(1) img {
    animation-delay: 0;
}
.slideshow-item:nth-child(2),
.slideshow-item:nth-child(2) img {
    animation-delay: 5s;
}
.slideshow-item:nth-child(3),
.slideshow-item:nth-child(3) img {
    animation-delay: 10s;
}
.slideshow-item:nth-child(4),
.slideshow-item:nth-child(4) img {
    animation-delay: 15s;
}
.slideshow-item img {
    
	width: 100%;
    height: 100%;
    object-fit: cover;
   /* animation: zoom 40s infinite;*/
}

@keyframes slideanim {
    12.5%{
        opacity: 1;
        pointer-events: auto;  } 
    25%{
        opacity: 1;
        pointer-events: auto; }    
    37.5%{
        opacity: 0; }
}

@/*keyframes zoom {
    50%{
        transform: scale(1.3); }    
}*/


@media screen and (max-width: 1100px){

  .slideshow {                 /* photo hall*/
    position: relative;
    overflow:  visible;
    background: #F7F7F7;
    margin-top: 20px;
	
}


    .slideshow-item-text{
        max-width: 75%;
    }
}
@media screen and (max-width: 456px){
    .slideshow-item-text {
        bottom: 0;
        left: 0;
        max-width: 100%;
    }
    .slideshow-item-text h5 {
        font-size: 18px;
    }
    .slideshow-item-text p {
        font-size: 13px;
    }
}

