/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  /*cursor: pointer;*/
  /*top: 50%;*/
  /*width: auto;*/
  /*margin-top: -22px;*/
  padding: 16px;
  color: #ddd;
  font-weight: bold;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  /*background-color: rgba(0,0,0,0.2);*/
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*MOBIL*/
@media only screen and (min-width: 360px) and (max-width: 1000px) {
  .prev, .next {
    font-size: 50px;
    padding: 10%;
    opacity: 0.5;
  }

   .prev:hover, .next:hover {
    opacity: 1;
  }

  .navigation {
    width: 30%;
    margin: 0 auto;
    padding-left: 10%;
  }

  .navigation a{
    text-decoration: none;
  }

}

/* IPAD - TABLET */
@media screen and (min-width: 1001px) and (max-width: 1280px) {
  .prev, .next {
      font-size: 30px;
      opacity: 0.5;
  }

  .prev:hover, .next:hover {
    opacity: 1;
  }

  .navigation a{
    text-decoration: none;
  }

  .navigation{
    grid-column: 2 / 3;
    margin: 0 auto;
    padding: 5%;
  }

  }

  /* DESKTOP - SMALL */
@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    .navigation {
      grid-column: 2 / 3;
      margin: 0 auto;
      padding: 5%;
  }

    .navigation a{
      text-decoration: none;
    }

  .prev, .next {
  font-size: 30px;
  opacity: 0.5;
  }

  .prev:hover, .next:hover {
    opacity: 1;
  }
  
  }

  /* DESKTOP */
@media only screen and (min-width: 1441px) {
    .navigation {
        position: fixed;
        top: 240px;
        right: 80px;
    }

    .navigation a{
      text-decoration: none;
    }
    
    .prev, .next {
    font-size: 30px;
    opacity: 0.5;
  }

  .prev:hover, .next:hover {
    opacity: 1;
  }

  }






