section.depoimentos {
  background: var(--main-bg) url('../../images/bg-quotes.png') no-repeat;
  background-position: 5.6rem 3.2rem;
  display: flex;
  justify-content: space-between;
}

div.depoimento {
  color: var(--white);
  background: var(--testimonials-bg);
  display: flex;
  flex-direction: column;
  font-family: 'Raleway', sans-serif;
  padding: 3.2rem;
  width: 25%;
}

div.depoimento
div.texto
p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8rem;
  margin-bottom: 1.2rem;
}

div.depoimento
div.perfil {
  align-items: center;
  display: flex;
}

div.depoimento
div.perfil
img {
  border-radius: 50%;
  margin-right: 1.2rem;
  width: 4.2rem;
}

div.depoimento
div.perfil
div.dados-pessoais 
h3.nome{
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
div.depoimento
div.perfil
div.dados-pessoais 
p.cargo {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (max-width: 425px){
  section.depoimentos {
    flex-direction: column;
    background-position: 3.2rem 6.2rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  div.depoimento {
    width: auto;
    margin-bottom: 3.2rem;
  }
  
  div.depoimento:last-child {
    margin-bottom: 0;
  }
}