
/*----------- Slider Show---------------*/
#myslideshow
{
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    margin-top: 0;
    overflow: hidden;
    margin-top:-36px;
}

.slideshow-container
{
    width: 100%;
    display: block;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.slideshow-container .mySlides
{
    width: 100%;
    display: none;
}

.slideshow-container .mySlides img
{
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    box-shadow: 0px 10px 10px #666;
}

/* Next & previous buttons */
#myslideshow .prev, #myslideshow .next 
{
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Position the "next button" to the right */
#myslideshow .next 
{
  right: 16px;
  border-radius: 3px 0 0 3px;
  cursor: pointer;
}

#myslideshow .prev
{
  left: 16px;
  border-radius: 0 3px 3px 0;
}

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

@media (max-width: 992px)
{
  #myslideshow .prev, #myslideshow .next
  {
    font-size: 32px;
    padding: 14px;
  }

  .dot
  {
    height: 12px;
    width: 12px;
  }
}

@media (max-width: 600px)
{
  #myslideshow .prev, #myslideshow .next
  {
    font-size: 26px;
    padding: 12px;
  }

  .dot
  {
    height: 10px;
    width: 10px;
  }
}

/* Caption text */
.text 
{
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
#myslideshow .pages-dot
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin: 18px auto 0;
    padding-bottom: 18px;
}

.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  border: 2px solid transparent;
}

.pages-dot .active, .dot:hover {
  background-color: #717171;
  border-color: #fff;
}

/* 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}
}
/*----------- Slider Show---------------*/