 


.wv1_slideshow{
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
}

.wv1_slideshow-item{
    width: inherit;
    height: inherit;
    position: absolute;
    opacity: 0;
    animation: slideanim 30s infinite;
}

.wv1_slideshow-item:nth-child(1),
.wv1_slideshow-item:nth-child(1) img{
    animation-delay: 0;
}
.wv1_slideshow-item:nth-child(2),
.wv1_slideshow-item:nth-child(2) img{
    animation-delay: 10s;
}

.wv1_slideshow-item:nth-child(3),
.wv1_slideshow-item:nth-child(3) img{
    animation-delay: 20s;
}

.wv1_slideshow-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 30s infinite;
}

.wv1_slideshow-item-text{
     
	width: 35%;
	height: 34%;
	border-radius: 10px;
    position: absolute;
    top: 310px;	
    transform: translateY(-50%);
    left: 15%;;
    background-color: rgba(183,183,183,0.80);
    color: #000000;
    padding: 18px;
    font-family: 'Raleway', sans-serif;
	overflow: hidden;
}

.wv1_slideshow-item-text h5{
    font-size: 24px;
	color: #C90E11;
     
}

.wv1_slideshow-item-text p{
    font-weight: 300;
    font-size: 20px;
    margin-top: 20px;
	
}

@keyframes slideanim{
    25%{
        opacity: 1;
    }
    40%{
        opacity: 0;
    }
}

@keyframes zoom{
    100%{
        transform: scale(1.3);
    }
}

@media screen and (max-width: 1100px){
    .slideshow-item-text{
        max-width: 75%;
    }
}

@media screen and (max-width: 768px){
    .slideshow-item-text{
        padding: 3rem 1.5rem;
    }
}

@media screen and (max-width: 456px){
    .slideshow-item-text{
        max-width: 100%;
        top: inherit;
        transform: translateY(0);
        bottom: 0;
    }

   .wv1_slideshow-item-text h5{
        font-size: 2rem;
    }

   .wv1_slideshow-item-text p{
        font-size: 1rem;
    }
}