/*   SECCION SERVICIO DESARROLLO SOFTWARE            */
/*****************************************************/
.ContedorBanner {
  height: 50px;
  width: 90%;
  display: grid;
  grid-template-columns: 50px 1fr 120px;
  margin: 50px auto;
}


.tituloSeccion {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-right: auto;
  font-size: 28px;
  font-weight: bold;
  color: #021446;
  grid-column: 2/3;
}

.contenedorDevSoft {
  width: 90%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contenedorImagen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  text-align: center;
}

.contenedorImagen img {
  width: 70%;
  border-radius: 20px;
}

.contenedorParrafos {
  width: 60%;
}

.elementosParrafo {
  display: flex;
  margin-bottom: 30px;
}

.elementosParrafo img {
  width: 80px;
  height: 80px;
  margin-right: 30px;
}

.tituloParrafo {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #002138;
  line-height: 1.3;
}

.tituloParrafo .textResaldao {
  color: #e94a4b;
}

.textParrafo {
  font-size: 17px;
  font-weight: 400;
  text-align: justify;
  margin-right: 20px;
  color: #666;
  line-height: 1.2;
}

.botonSerPro {
  margin-top: 20px;
  width: 50%;
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
  border: 1px solid transparent;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 1.25;
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  text-align: center;
}

.botonSerPro:hover {
  color: #e94a4b;
}

/*CONTENEDOR MISIÓN Y VISIÓN*/
/*******************************************************/
.contenedorMisionVision {
  position: relative;
  background-image: url("/imagenes/fodoCuatro.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 30px;
  display: flex;
  width: 100%;
  height: 250px;
  color: white;
}

.contenedorMisionVision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 63, 124, 0.77);
  color: white;
}

.contenedorElementoMV {
  width: 50%;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.tituloMV {
  font-size: 25px;
  font-weight: bold;
  padding: 10px 0;
}

.textMV {
  font-size: 18px;
  text-align: justify;
  margin-right: 20px;
  line-height: 1.2;
}
/*******************************************************/

/*SECCIÓN NUESTROS VALORES*/
/*******************************************************/
.tituloValores {
  margin-top: 50px;
  color: #252525;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 30px;
  width: 100%;
  text-align: center;
  font-weight: 300;
  margin-bottom: 30px;
}
.contenedorValores {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  display: flex;
}
.contenedorValor {
  padding: 20px;
}
.iconoValor {
  color: #a11a1a;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
.tituloValor {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
.textValor {
  text-align: justify;
  color: #252525;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.3;
}
