.carruselNosotros{
    display:flex;
    width: 100%;
    height: 730px;
    position:relative;
}

.carruselNosotros_texto{
  z-index:0;
  padding:166px;
  top:50%;
  transform: translateY(-48%);
  color:white;
  position:absolute;
}

.carruselNosotros_imagen {
  width: 100%;
  height: 100%;
  transition: background-image 0.4s ease;
}

.img1Nosotros {
    display:flex;
    background-image:url('./imgs/nosotros/carruselNosotros1.png');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    background-color: grey;
}

.img2Nosotros {
    display:flex;
    background-image:url('./imgs/nosotros/carruselNosotros2.png');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    background-color:black;
}

.img3Nosotros {
    display:flex;
    background-image:url('./imgs/nosotros/carruselNosotros3.png');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    background-color: lightgrey;
}


.carruselNosotros button{
  all: unset;
  cursor:pointer;
  width:10px;
  height:20px;
  position: absolute;
  z-index:100;
  top:50%;
  /*background-color: pink;*/
  transform: translateY(50%);
}

.carruselNosotros .retroceder{
  background-image:url('./imgs/flecha1.png');
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center;
  left:67px;
}

.carruselNosotros .avanzar{
  background-image:url('./imgs/flecha2.png');
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center;
  right:67px;
}

@media (max-width: 980px) {
  
  .carruselNosotros br{
    display:none;
  }
  
  .carruselNosotros_texto{
    text-align:center;
    padding:10%;
    transform: translateY(-55%);
    align-items: center;
    justify-content: center;
    /*background-color: green;*/
  }
  
  .carruselNosotros button{
     bottom:150px;
     top: auto;
     transform: none;
  }
  
    .carruselNosotros .retroceder{
      left:45%;
    }

    .carruselNosotros .avanzar{
      right:45%;
    }
  
}  



