* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    background: #0000003b;
    height: 50px;
    border-radius: 100%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    font-size: 25px;
}

/* Position the "next button" to the right */
.next {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  border-radius: 100%;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    padding: 8px 12px;
    position: absolute;
    bottom: 35px;
    width: 100%;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot-container {
    text-align: center;
    position: relative;
    top: -35px;
    background: #d1d1d145;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}
.mySlides img{
    width: 100%;
    height: 450px;
    margin-top: 130px;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@media only screen and (max-width: 600px) {
    .text {
        font-size: 20px;
    }
    .dot-container {
        top: -25px;
        padding: 5px 0px;
    }
    /* Next & previous buttons */
    .prev, .next {
        height: 30px;
        width: 30px;
        font-size: 15px;
    }
    .mySlides img{
        margin-top: 82px;
    }


  }

  @media only screen and (max-width: 1020px) {
    .mySlides img{
        margin-top: 82px;
    }

  }