


.slider-headline {
  font-size: 6vh;
}

.slider-caption {
  font-size: 2.5vh;
}

/* Medium devices (small laptops, large tablets, 782 and up) */
@media only screen and (min-width: 782px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .slider-headline {
      font-size: 8vh;        
  }

  .slider-caption {
      font-size: 3vh;
  }    
}




.slick-track, .slide-item {
    width: 100vw !important;
}


/* // Image display (e.g. object fitting) */
.slide-item>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* //Zooming Animation */
@keyframes fadezoom {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }
}

/* // With this class name, you can call an animation that zooms */
.slick-animation {
  animation: fadezoom 10s 0s forwards;
  -webkit-animation: fadezoom 10s 0s forwards;
}
  

/* @keyframes scale {
    100% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
}
  } */