/*PRESENTACION*/
#resena {
  background: #DDE3EB;
}
.resena-img {
	width: 80%;
	margin-bottom: 40px;
}
.resena-txt {
  font-size: 1em;
  padding: 0 10px;
  text-align: justify;
  color: #333;
}
/*INDICATIVOS*/
.grupo-indicativos {
  padding: 0 10px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.columna-indicativos {
	width: 100%;
}
.grupo-indicativos .icon-checklist {
	font-size: 1.4em;
	color: #EE1B24;
	margin-right: 10px;
}
.indicativos-txt {
	display: flex;
	border-bottom: 1px dashed #333;
	padding: 1px 0;
}

/*PRINCIPALES SERVICIOS*/
#servicios {
  background: #102A4F;
}
#servicios .presentacion-titulo {
	color: #fff;
}
#servicios .presentacion-subtitulo {
	color: #fff;
}
.grupo-servicios {
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.columna-servicios {
	padding: 10px;
	background: #fff;
	width: 48%;
	margin: 1%;
	margin-bottom: 40px;
	border-radius: 20px;
	overflow: hidden;
  transition: all 0.4s;
}
.columna-servicios:hover {
	opacity: 0.3;
	transform: scale(1);
}
.servicios-img {
	margin-bottom: 10px;
}
#servicios .rubros {
	padding: 0 10px;
	font-size: 1em;
	color: #1d1d1d;
	text-align: center;
	font-weight: 600;
}
#servicios .servicios-txt {
	padding: 10px;
	font-size: 0.9em;
	color: #1d1d1d;
	text-align: center;
}

/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
/*RESEÑA*/
.grupo-resena {
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: center;
}
	.columna-resena {
		width: 50%;
		padding: 10px;
	}
	.resena-img {
		max-width: 100%;
	}



/*	SERVICIOS*/
.columna-servicios {
	width: 25%;
}

}

@media (min-width: 1024px) {
.columna-indicativos {
	margin: 1%;
	width: 48%;
}
}