.lw_slideshow{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.lw_slideshow-item{
    width: inherit;
    height: inherit;
    position: absolute;
    opacity: 0;
    animation: slideanim 31s infinite;
}

.lw_slideshow-item:nth-child(1),
.lw_slideshow-item:nth-child(1) img{
    animation-delay: 0;
}
.lw_slideshow-item:nth-child(2),
.lw_slideshow-item:nth-child(2) img{
    animation-delay: 10s;
}

.lw_slideshow-item:nth-child(3),
.lw_slideshow-item:nth-child(3) img{
    animation-delay: 20s;
}

.lw_slideshow-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 31s infinite;
}


@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;
    }

    .slideshow-item-text h5{
        font-size: 2rem;
    }

    .slideshow-item-text p{
        font-size: 1rem;
    }
}