/*

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

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

.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 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 16s infinite;
}

.slideshow-item-text{
    max-width: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10rem 5rem;
    font-family: 'Raleway', sans-serif;
}

.slideshow-item-text h5{
    font-size: 3.5rem;
    letter-spacing: 3px;
}

.slideshow-item-text p{
    font-weight: 300;
    font-size: 1.6rem;
    margin-top: 2rem;
}

@keyframes slideanim{
    25%{
        opacity: 1;
    }
    40%{
        opacity: 0.5;
    }
}

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


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

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

.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 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 16s infinite;
}

.slideshow-item-text{
  max-width: 70%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1%;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  padding: 7rem 5rem;
  font-family: 'Raleway', sans-serif;
  border-radius:40px;
}

.slideshow-item-text h5{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.slideshow-item-text p{
  font-weight: 300;
  font-size: 1.6rem;
  margin-top: 2rem;
}

@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);
    top: 20%;
  }

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

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