/*SERVICIOS*/
#servicios {
  max-width: 100%;
  margin: auto;
	background: #1d1d1d;
}
#servicios .titulo-seccion {
  color: #fff;
}
#servicios .subtitulo-seccion {
  color: #fff;
}
.grupo-servicios {
	max-width: 1000px;
	margin: auto;
}
.columna-servicios {
	padding: 10px;
	
	display: flex;
  flex-wrap: wrap;
	
	margin-bottom: 20px;
	border-bottom: 1px dashed #eee;
}
.columna-servicios:last-child {
	border-bottom: none;
}
.servicios-mitad {
	width: 100%;
}
.servicios-img {
	width: 240px;
	margin-bottom: 20px;
}
.servicios-rubros {
  font-size: 1em;
  text-align: center;
  color: #fff;
	font-weight: 500;
	margin-bottom: 10px;
}

.servicios-btn {
  width: 50%;
  align-self: flex-end;
  margin: 10px auto;
}
.servicios-boton {
font-family: "Poppins", sans-serif;
  font-size: 1em;
  background: #EB6216;
  color: #eee;
  padding: 7px;
  text-align: center;
	border-radius: 10px;
	transition: all .4s;
}
.servicios-boton:hover {
	background: #1d1d1d;
}

/*INDUSTRIAS*/
#industrias {
  max-width: 100%;
  margin: auto;
  background: #eee;
}
.grupo-industrias {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.columna-industrias {
	width: 48%;
	margin: 1%;
	padding: 10px;
}
.industrias-img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 10px;
}
.industrias-rubros {
  font-size: 1em;
  text-align: center;
	font-weight: 500;
	margin-bottom: 10px;
}



/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
/*	SERVICIOS*/
	.grupo-servicios {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.columna-servicios {
		background: rgba(255,255,255,0.1);
		width: 31%;
		margin: 1%;
		border-bottom: none;
	}
/*INDUSTRIAS*/
	.columna-industrias {
		width: 12%;
		padding: 0;
	}
	
}

@media (min-width: 1024px) {


}