@font-face {
  font-family: "Hind Madurai-medium";
  src: url(/font/HindMadurai-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Hind Madurai-regular";
  src: url(/font/HindMadurai-Regular.ttf);
  font-weight: 600;
}

.nosotros-texto {
  font-size: 16px;
  text-align: justify;
  font-family: "Hind Madurai-regular";
  color: #000;
}

.caja-nosotros {
  margin-left: 20px;
  margin-right: 80px;
  animation: caja_nosotros 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.imagen-nosotros img {
  animation: mision_caja 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.valores-nosotros {
  height: auto;
  width: 100%;
  background-color: #f0e3e3;
}

.mision {
  width: 100%;
  background-color: #5b5d5a;
  height: 300px;
  border-radius: 20px;
}
/*encabezado h3*/
.nosotros-mision {
  padding-bottom: 1rem;
}

.vision {
  width: 100%;
  background-color: #5b5d5a;
  height: 300px;
  border-radius: 20px;
}
/*encabezado h3*/
.nosotros-vision {
  padding-bottom: 1rem;
}

/*mision-caja*/
.mision-caja {
  margin-left: 2rem;
  margin-right: 2rem;
  animation: mision_caja 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.mision-caja p {
  text-align: justify;
}

/*vision-caja*/
.vision-caja {
  margin-left: 2rem;
  margin-right: 2rem;
  animation: vision_caja 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.vision-caja p {
  text-align: justify;
}

/* UBICACION*/
.ubicacion {
  width: 100%;
  height: auto;
}

/*###terminos-condiciones###*/

.terminos-condiciones {
  width: 100%;
  height: auto;
  background-color: #f0e3e3;
}

.caja-terminoscon {
  padding-left: 4rem;
  padding-right: 4rem;
}

@media screen and (max-width: 991px) {
  .imagen-nosotros img {
    width: 100%;
  }
  .imagen-nosotros {
    display: flex;
    justify-content: center;
  }

  /*mision-caja*/
  .mision-caja {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  /*encabezado h3*/
  .nosotros-mision {
    padding-bottom: 0.5em;
    font-size: 20px;
  }
  /*mision parrafo*/
  .nosotros-misionp {
    font-size: 13px;
  }
  /*vision-caja*/
  .vision-caja {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  /*encabezado h3*/
  .nosotros-vision {
    padding-bottom: 0.5em;
    font-size: 20px;
  }
  /*vision parrafo*/
  .nosotros-visionp {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  /*mision-caja*/
  .mision-caja {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  /*encabezado h3*/
  .nosotros-mision {
    padding-bottom: 0.5em;
    font-size: 30px;
  }
  /*mision parrafo*/
  .nosotros-misionp {
    font-size: 15px;
  }
  /*vision-caja*/
  .vision-caja {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  /*encabezado h3*/
  .nosotros-vision {
    padding-bottom: 0.5em;
    font-size: 30px;
  }
  /*vision parrafo*/
  .nosotros-visionp {
    font-size: 15px;
  }

  .caja-terminoscon {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}

@keyframes caja_nosotros {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes mision_caja {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes vision_caja {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
