/*SERVICIOS*/
#servicios {
  max-width: 100%;
  margin: auto;
	background: #002768;
}
#servicios .titulo-seccion {
  color: #fff;
}
#servicios .subtitulo-seccion {
  color: #fff;
}
.grupo-servicios {
	max-width: 1200px;
	margin: auto;
  
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.columna-servicios {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  background: #eee;
/*le damos flex y flex-wrap*/
	display: flex;
	flex-wrap: wrap;
}
.servicios-mitad {
	width: 100%;
}
.servicios-btn {
  width: fit-content;
  align-self: flex-end;
  margin: 10px auto;
}
.servicios-boton {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  border: 2px solid #BE0A2F;
  background: #BE0A2F;
  color: #fff;
  padding: 7px 20px;
  text-align: center;
	border-radius: 5px;
	transition: all .4s;
}
.servicios-boton:hover {
  color: #fff;
	background: #BE0A2F;
}
.servicios-img {
  width: 70px;
	margin-bottom: 20px;
}
.servicios-rubros {
  font-size: 1.2em;
	line-height: 1.2em;
  text-align: center;
  color: #333;
	font-weight: 500;
  margin-bottom: 20px;
}

/*FUNCIONES CLAVE*/
#funciones {
  max-width: 100%;
  margin: auto;
  background: #eee;
}
.grupo-funciones {

}
.columna-funciones {
  width: 100%;
	padding: 10px 20px;

  margin-bottom: 10px;
/*  box-shadow: 1px 1px 10px rgba(0,0,0,0.2);*/
}

/*BENEFICIOS*/
#beneficios {
  max-width: 100%;
  margin: auto;
	background: #eee;
}
#beneficios .txt {
  text-align: center;
}
.grupo-beneficios {
	max-width: 1200px;
	margin: auto;
  
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.columna-beneficios {
  width: 100%;
  padding: 20px;
  border: 1px dashed #999;
  margin-bottom: 20px;
}
.beneficios-img {
  width: 70px;
	margin-bottom: 20px;
}
.beneficios-rubros {
  font-size: 1.2em;
	line-height: 1.2em;
  text-align: center;
  color: #333;
	font-weight: 500;
  margin-bottom: 20px;
}

/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
/*	SERVICIOS*/
	.grupo-servicios {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.columna-servicios {
		width: 31%;
		margin: 1%;
	}
/*  BENEFICIOS*/
  .columna-beneficios {
    width: 23%;
    margin: 1%
  }
  
/*FUNCIONES*/
	.grupo-funciones {
    display: flex;
    justify-content: space-between;
	}
  .funciones-colum {
    padding: 10px;
  }
  .funcimag {
    width: 45%;
  }
}

@media (min-width: 1024px) {


}