/*PAGINAS SE SERVICIOS*/
.banner-interior {
	max-width: 1500px;
	margin: auto;
	position: relative;
}
.banner-interior:before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}
.bannerinterior-img {
	height: 300px;
	object-fit: cover;
}
.bannerinterior-titulo {
	font-size: 2em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 100%;
	color: #fff;
	text-align: center;
	z-index: 1;
}
/*textos*/
.servicios-txt {
	max-width: 800px;
	margin: auto;
	font-size: 1.2em;
	text-align: center;
	padding: 10px 0;
}




/*PAGINA SOLUCIONES*/

#soluciones {
	background: #fff;
	max-width: 1500px;
	margin: auto;
}
.grupo-soluciones {
  max-width: 1400px;
  margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.columna-soluciones {
	width: 48%;
	border: 1px solid #eee;
	margin: 1%;
	padding-bottom: 20px;
}
.soluciones-img {
	object-fit: cover;
}
#soluciones h2 {
	font-size: 1em;
  color: #666;
	padding: 10px 5px;
	line-height: 1.2em;
}
.columna-soluciones p {
  font-size: 0.9em;
  text-align: left;
  color: #666;
	padding: 5px;
}



/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
.grupo-soluciones {

}
.columna-soluciones {
	width: 30%;
}
#soluciones h2 {
	font-size: 1.4em;
	padding: 20px;
}
.columna-soluciones p {
	padding: 0 20px;
	font-size: 1em;
}
}

@media (min-width: 1024px) {

}