.slideshow-container {
  width: 1000px;
  position: relative;
  margin: auto;
  position: relative;
}

/* butões de proximo e anterior*/
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -40px;
  color: white;
  font-weight: bold;
  font-size: 23px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* muda o butão de posição para a direita */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* cor do  butão quando opnteiro está sobreposto */
.prev:hover, .next:hover {
  background-color: #413e3d80;
}


/* estilo dos botões */
.dot {
 
  position: flex;
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.4s ease;
  top: 30px;
  margin-top: -500px;

  

}
.dotlug {
  
  position: absolute;
  margin-top: -30px;
  left: 0; 
  right: 0; 
  
}



/* cor de fundo do botão*/
.active, .dot:hover {
  background-color: #ff6432;

}

/* animação fade ao passar de slide */
.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}
}

/* muda  o tamanho do texto consante o tamanho do ecrã */
@media only screen and (max-width: 300px) {
  .slideshow-container {width: 100px}
}



  /* Extra small devices (phones, 600px and down) */
  @media only screen and (max-width: 600px) {
    .slideshow-container {width: 300px}
  }

  /* Small devices (portrait tablets and large phones, 600px and up) */
  @media only screen and (min-width: 600px) {
    .slideshow-container {width: 500px;}
  }

  /* Medium devices (landscape tablets, 768px and up) */
  @media only screen and (min-width: 768px) {
    .slideshow-container {width: 700px;}
  } 

  /* Large devices (laptops/desktops, 992px and up) */
  @media only screen and (min-width: 992px) {
    .slideshow-container {  width: 1000px;}
  } 

  /* Extra large devices (large laptops and desktops, 1200px and up) */
  @media only screen and (min-width: 1200px) {
    .slideshow-container {  width: 1000px;}
  }