/*=============== LOGOS ===============*/
.logos__img{
  width: 300px;
  opacity: .4;
  transition: .3s;
}

.logos__container{
  grid-template-columns: repeat(2 ,max-content);
  justify-content: center;
  align-items: center;
  gap: 4rem ;
  padding-bottom: 2rem;
}

.logos__img:hover{
    opacity: 1;
}


.section h3 {
    font-size: 2rem;
    text-align: center;
    color: #848181;
    opacity: 1;
    margin-bottom: 2rem;
}

@media  (max-width: 768px)
 {
  .logos__container{
      grid-template-columns: 1fr;
      gap: 2rem;
      padding-bottom: 1rem;
  } 
  .logos__img {
        width: 180px;
        margin: 0 auto;
    }
  .section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
 }