#depoimentos {
	height: 100vh;
	width: 100%;
	background-color: white;
  	z-index: 0;	
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
}

#depoimentos h1{
	color: black;
	font-size: 50px;
}

.cont-instrumento-pessoa {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.cont-instrumento-pessoa span{
   margin-bottom: 100px; 
   font-size: 30px;
   color: var(--principal-color);
   font-weight: bold;
   text-shadow: 2px 2px 2px gray;
}

.instrumento-pessoa {
   max-width: 10%;
   margin-bottom: 100px; 
   margin-left: 20px;
   margin-right: 20px;
}

.instrumento-pessoa-v {
   max-width: 5%;
   margin-bottom: 100px; 
   margin-left: 26px;
   margin-right: 20px;
}

.mySlides {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instrumento-depoimento {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-left: 70px;
  padding-right: 70px;
  align-items: center;
  height: 250px;
  width: 100%;
  background-color: rgba(0,0,0,0.8);
  border-radius: 5px;
  border-top: 4px solid var(--principal-color);
}

.depoimento-texto{
  color: white;
}

.depoimento-texto h4{
  color: var(--principal-color);
}

.depoimento-texto p{
  font-style: italic;
}

.contenedor-depoimento-slide {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.contenedor-depoimento-slide img{
  max-width: 150px;
  border-radius: 60%;
  max-height: 150px;
  margin-right: 40px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  bottom: 20%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: var(--principal-color);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: -50px;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: -50px;
  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.8);
}

/* Caption text */

/* 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;
}

/* 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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next {font-size: 11px}
}

@media only screen and (max-width: 590px) { 

  #depoimentos {
    height: 1100px;
    width: 100%;
    background-color: white;
    z-index: 0; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #depoimentos h1{
    color: black;
    font-size: 30px;
  }

  .slideshow-container {
    max-width: 95%;
    margin-top: 50px;
  }

  .instrumento-depoimento {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    align-items: center;
    height: auto;
    width: 200px;
    background-color: rgba(0,0,0,0.8);
    border-radius: 5px;
    border-top: 4px solid var(--principal-color);
  }

  .contenedor-depoimento-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contenedor-depoimento-slide img {
    margin-top: 20px;
    margin-right: 0px;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0px;
    border-radius: 3px 0 0 3px;
  }

  .prev {
    left: 0px;
    border-radius: 3px 0 0 3px;
  }

}