/*===================*/
/* colores generales */
/*===================*/
/*===================*/
/* textos */
/*===================*/
/*===================*/
/* global */
/*===================*/
/*===================*/
/* carrusel */
/*===================*/
/*===================*/
/* header nav */
/*===================*/
/*===================*/
/* Footer */
/*===================*/
*,
p,
figure {
  margin: 0px;
  padding: 0px;
}

main {
  margin-top: 60px;
}
@media (max-width: 991px) {
  main {
    margin-top: 54px;
  }
}

/*========================*/
/* efecto aparecer */
/*========================*/
.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/*========================*/
/* Home */
/*========================*/
.home-titulo3 {
  color: var(--color1);
  font-weight: 700;
  font-size: 25px;
}

/*========================*/
/* seccion quienes somos */
/*========================*/
.home-btnContacto {
  background-color: var(--color2);
  color: var(--textoClaro);
  border-radius: 5px;
  padding: 5px 10px;
  border: 0px;
  transition: 0.3s;
}
.home-btnContacto:hover {
  background-color: var(--color2Hover);
  transition: 0.3s;
}

.home-contInfoQuienesSomos {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-contImgsQuienesSomos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.imgQuienesSomos1 {
  max-width: 100%;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5450980392));
}

/*========================*/
/* seccion servicios */
/*========================*/
.home-contBackgroundServicios {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 270px;
}

.home-filtroBackgroundServicios {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.home-contContServicios {
  position: relative;
  z-index: 9;
}

/*========================*/
/* seccion nosotros*/
/*========================*/