/*PAGINA NOSOTROS*/
#nosotros {
  max-width: 1900px;
  margin: auto;
  overflow: hidden;
  background: #fff;
}
.nosotros-titulo {
font-family: 'Open Sans', sans-serif;
  font-size: 2.8em;
  font-weight: 700;
  text-align: center;
  color: #333;
	letter-spacing: -2px;
}
.nosotros-txt {
  margin: auto;
  font-size: 1em;
  color: #333;
  text-align: justify;
  padding-left: 28px;
}
.grupo-nosotros {
  max-width: 1700px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.columna-nosotros {
  width: 100%;
  margin: auto;
}
.nosotros-img {
	height: 310px;
	object-fit: cover;
}

/*SOLICITE ASESOR*/
.solicite-asesor {
	position: relative;
	overflow: hidden;
  max-width: 1900px;
  margin: auto;
	background-image: url(../img/solicite-asesor.jpg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
	background-attachment: fixed;
  padding: 140px 10px;
	text-align: center;
}
.solicite-asesor:before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
.solicite-asesor-txt {
  max-width: 960px;
  margin: auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff; 
}
.soliciteasesor-btn {
  position: relative;
  z-index: 1000;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  text-align: center;
  display: inline-block;
  padding: 10px 30px;
  background: #FED403;
}
.soliciteasesor-btn:hover {
    background-color: #131F47;
}

/*ESTILOS RESPONSIVE*/
@media (min-width: 450px) {

}

@media (min-width: 768px) {
.nosotros-titulo {
	font-size: 3em;
}
.columna-nosotros {
  max-width: 50%;
  padding: 0 20px;
}
.nosotros-img {
	height: 500px;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
/*INVERTIMOS EL ORDEN HORIZONTAL*/
  .equipo {
    flex-direction: row-reverse;
  }

}

@media (min-width: 1024px) {

}