@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap');

/*
azul #092D4C;
NEGRO #000000;
rojo #BF0005;
font-family: 'Poppins', sans-serif;
*/
/*ESTILOS GENERALES*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
body {
	background: #000;
}
img {
	display: block;
  width: 100%;
}
ul, li {
	list-style: none;
}
a {
	display: block;
	text-decoration: none;
}
.contenedor {
	width: 95%;
	margin: auto;
	max-width: 1400px;
}
.section {
  padding: 60px 0; 
	overflow: hidden;
}

/*BOTON FLOTANTE WASAP*/
.wa-img {
  display: block;
  width: 70px;
  height: 70px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  line-height: 80px;
	text-align: center;
  z-index: 999;
}

/*LOGO SUPERIOR*/
.logo-superior {
	overflow: hidden;
	max-width: 1500px;
	margin: auto;
	background: #fff;
}
.logotipo-header {
	padding: 5px;
	max-width: 260px;
	margin: auto;
}
.logosuperior-datos {
	display: none;
}

/*BANNER PRINCIPAL*/
.mockfondo-index {
  overflow: hidden;
  max-width: 1500px;
  margin: auto;
	background-image: url(../img/banner-principal.jpg);
	background-size: cover;
	background-position: center;
  height: 300px;
  object-fit: cover;
  position: relative;
	z-index: -100;
}
.mockfondo-index:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
}
.textos-banner {
  position: absolute;
  top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 98%
}
.banner-txt {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 2em;
  line-height: 1.2em;
}
.banner-txt2 {
  text-align: center;
  font-weight: 300;
  color: #fff;
  font-size: 1.2em;
}
.banner-txt3 {
	width: 220px;
	margin: 20px auto;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  color: #fff;
	background: #D60707;
  font-size: 1.2em;
}

/*PRESENTACION*/
#presentacion {
	max-width: 1500px;
	margin: auto;
	background: #fff;
}
.presentacion-titulo {
	text-align: center;
	font-size: 2em;
	color: #1d1d1d;
}
.grupo-presentacion {
  max-width: 1400px;
  margin: auto;
}
.columna-presentacion {
	padding: 10px;
	background: #fff;
	overflow: hidden;
}
.presentacion-img {
	height: 300px;
	object-fit: cover;
}
.presentacion-rubros {
	text-align: center;
	font-size: 1.4em;
	color: #1d1d1d;
}
.lineainferior {
	width: 60%;
	margin: 10px auto;
	height: 2px;
	background: #ED1C25;
}
.presentacion-txt {
	font-size: 1em;
	color: #666;
	text-align: center;
}

/*LINK INICIO*/
.link-inicio {
	transition: all .3s;

}
.link-inicio:hover {
	transform: scale(1.1);
	filter: blur(1.5px);
}
.rubros-hover {
	color: #092D4C;
}
.rubros-hover:hover {
	color: #ED1C25; 
}

/*IMAGENES INDEX*/
#galeriaindex {
	max-width: 1500px;
	margin: auto;
	background: #fff;
}
.grupo-galeriaindex {
	max-width: 1400px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.columna-galeriaindex {
  width: 50%;
	padding: 10px;
}

/*REDES INDEX*/
#redes {
	max-width: 1500px;
	margin: auto;
	background: #fff;
}
.redes-img {
	max-width: 400px;
	margin: auto;
}

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

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
}
.solicite-asesor-titulo {
	max-width: 700px;
  margin: auto;
  font-weight: 600;
	font-size: 2em;
	color: #fff;
	margin-bottom: 10px;
}
.solicite-asesor-txt {
	display: none;
}
.soliciteasesor-btn {
	position: relative;
	z-index: 1000;
  font-weight: 600;
    color: #fff;
    text-align: center;
    display: inline-block;
    padding: 10px 30px;
		background: #BF0005;
}
.soliciteasesor-btn:hover {
    background-color: #333;
}

/*FOOTER*/
.footer {
	max-width: 1500px;
	margin: auto;
  padding: 80px 0;
	background: #1d1d1d;
	overflow: hidden;
}
.grupo-footer {

}
.columna-footer {
	margin: 40px auto;
	border-bottom: 1px dashed #999;
	padding-bottom: 20px;
}
.columna-footer:last-child {
	border-bottom: none;
}
.columna-footer p {
	display: flex;
}
.logotipo-footer {
	width: 200px;
	padding: 20px;
	margin-bottom: 10px;
}
.grupo-footer h2 {
  font-size: 1.2em;
  color: #fff;
	font-weight: 600;
}
.grupo-footer p {
	font-size: 0.9em;
	color: #fff;
}
.twitter-logo {
  width: 30px;
	margin: 5px 0 5px 10px;
}
.grupo-footer [class^="icon-"] {
	padding-right: 10px;
	font-size: 1.6em;
	color: #fff
}

/*ELABORADO POR*/
.elaboradopor {
	max-width: 1500px;
	margin: auto;
  padding: 60px 0;
	background: #BF0005;
	overflow: hidden;
}
.elaboradopor-txt, a {
	text-align: center;
	font-size: 1em;
	padding: 0 10px;;
	color: rgba(255,255,255,0.7);
}


/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
.logotipo-header {
	padding: 0px;
}
.logosuperior-datos {
	display: flex;
	justify-content: center;
	margin-left: 30px;
	border-right: 1px dashed #999;
	padding-right: 20px;
	}
	.logosuperior-datos:last-child {
	border-right: none;
	}
.grupo-logosuperior {
		padding: 10px 0 20px 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
.a {
		width: 20%;
		margin: 0;
	}
.gruposuperior-datos {
		display: flex;
	}
.datos-titulo {
font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	color: #333;
}
.telefonos {
	font-size: 0.9em;
	color: #666;
}
.logosuperior-datos .icon-call, .icon-mail {
  color: #ED1C25;
  margin-right: 10px;
  font-size: 1.4em;
  display: block;
}
	


/*	PRESENTACION*/
.grupo-presentacion {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.columna-presentacion {
	width: 25%;
	margin: 5px;
}
	
/*	GALERIA*/
.grupo-galeriaindex {
	justify-content: center;
}
.columna-galeriaindex {
  width: 26%;
}
}

@media (min-width: 1024px) {
/*--------------------BANNER--------------------*/
.mockfondo-index {
  height: 500px;
}
.banner-txt {
  font-size: 3em;
}
/*	FOOTER*/
.grupo-footer {
	display: flex;
	justify-content: space-between;
}
.columna-footer {
	width: 33%;
	border-right: 1px dashed rgba(255,255,255, 0.5);
	border-bottom: none;
	padding: 20px;
	margin: 0px auto;
}
.columna-footer:last-child {
	border-right: none;
}
.logotipo-footer {
	width: 220px;
	padding: 0;
}
	
/*FOOTER*/
	.columna-footer .icon-mail {
		margin-right: 0;
	}
}