@charset "utf-8";
@import url("../fonts/fonts.css");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	vertical-align: baseline;
	text-decoration: none;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: 'Gill Sans Medium';
	color: #414042;
}
.center {
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
	clear: both;
	display: table;
}
.content {
	float: left;
	width: 100%;
	height: auto;
	position: relative;
}
.body {
	float: left;
	width: 100%;
	padding-top: 220px;
}
.body .content{
	padding: 20px;
}
strong {
	font-family:"Brandon Grotesque Black Italic";
}
.mobile {
	display: none;
}
.desktop {
	display: block;
}
.width_100{
	float: left;
	width: 100%;
}
.col{
	float: left;
	width: 50%;
	padding: 60px;
    text-align: justify;
    line-height: 28px;
	font-family: 'Gill Sans Medium';
}
.espacio_30v{
	margin-bottom: 30px;
}
.espacio_30v_top{
	margin-top: 30px;
}
.espacio_50v_top{
	margin-top: 50px;
}

.title{
	text-align: center;
	font-size: 26px;
	line-height: 24px;
	color: #fff;
	font-family: "Brandon Grotesque Black Italic";
	padding: 30px 0 30px 0;
	background-color: #F6F6F6;
	background-image: url(../images/bg.jpg);
	background-position: top center;
}

h1{
	font-family: 'Gill Sans Light';
	text-align: center;
	color: #c0a760;
	font-size: 23px;
	letter-spacing: 1px;
}

#header {
	z-index: 1000;
	height: 170px;
	float: left;
	width: 100%;
	padding-top: 30px;
	position: fixed;
	background-color: #fff;
	-webkit-transition: all 0.3s; /* Safari prior 6.1 */
	transition: all 0.3s;
}
#header .logo {
	height: 100%;
	float: left;
	margin-left: 30px;
}
#header a:hover{
	color: #c0a760;
	-webkit-transition: all 0.3s; /* Safari prior 6.1 */
	transition: all 0.3s;
}
#header .menu {
	font-family: 'Gill Sans Medium';
	opacity: 1;
	min-width: 230px;
	float: right;
	font-size: 14px;
	line-height: 26px;
	list-style-type: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#header .menu.consultanos{
	padding-right: 100px;
}

#header .menu-button {
	-webkit-transition: all 0.3s; /* Safari prior 6.1 */
	transition: all 0.3s;
	
	position: absolute;
	display: none;
    opacity: 0;
    top:20px;
	right: 20px;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	border: #c0a760 2px solid;
	text-align: center;
    padding-top: 15px;
	background-color: #fff;
}

#header .menu-button.show {
	display: block;
    opacity: 1;
	border: #c0a760 2px solid;
}

#header .menu-button:hover {
	cursor: pointer;
	background-color: #c0a760;
}
#header li {
	padding-left: 10px;
}
#header li:first-child {
	line-height: 38px;
	color: #c0a760;
	font-size: 18px;
}
#header a{
	color: #414042;
	user-select: none;
}
#header .menu i{
	margin: 0 10px 0 0;
}
#header .correo_btn{
	float: right;
	width: 39px;
	height: 39px;
	clear: both;
	margin-right: 30px;
}
#header .correo_btn img{
	bottom: 0px;
	right: 10px;
}

#header.small {
	height: 100px;
	padding-top: 20px;
	background-color: rgba(255,255,255,0.00);
}

/*  HOME  */

.slider{
		position: relative;
		float: left;
		width: 100%;
		height: 38.5vw;
	}

	.slider img{
		width: 100%;
		
		position: absolute;
		opacity: 0;
		-webkit-transition: all 0.7s; /* Safari prior 6.1 */
		transition: all 0.7s;
	}
	
	.slider .texto{
		text-align: left;
		opacity: 0;
		position: absolute;
		-webkit-transition: all 0.9s; /* Safari prior 6.1 */
		transition: all 0.9s;
		
		background-color:rgba(255,255,255,0.80);
		padding: 30px;
		width: 630px;
		bottom: 20px;
		left: -15px;
		color:#303334;
		
	}

.slider img.selected{
		opacity: 1;
	}
	
	.slider .texto.selected{
		opacity: 1;
		left: 30px;
	}
	ul#bullets{
		position: absolute;
		z-index: 100;
		right: 30px;
		top: 26%;
		padding-left: 95px;
	}
	ul#bullets li{
		width: 15px;
		height: 15px;
		background-color: #c5a35d;
		border:#c5a35d 1px solid;
		transform: rotate(45deg);
		list-style: none;
		margin: 25px;
	}
	ul#bullets li.selected{
		background-color: rgba(47,47,47,1.00);
		border:#fff 1px solid;
		cursor: pointer;
	}
	ul#bullets li:hover{
		background-color: #e2d1ae;
		border:#e2d1ae 1px solid;
		cursor: pointer;
	}
	

.slider h2{
	font-size:24px;
	margin-top:10px;
}
.tile{
	background: url(../images/tile.png) repeat;
	width: 100%;
	overflow: auto;
	background-color: #333333;
	color: #fff;
	font-size: 24px;
	line-height: 30px;
	font-family: 'Gill Sans Medium';
	letter-spacing: 0.01em;
}
.tile p{
	float: left;
	padding: 50px;
	max-width: 800px;
}

/*  PROPUESTA  */

.tile_degradado{
	width:100%;
	height:45vw;
	background:url(../images/tile_degradado.png);
	padding:30px;
	position: relative;
}
.tile_degradado .inner{
	padding-top: 9vw;
	width:100%;
	height:100%;
	background-color:rgba(255,255,255,0.9);
}

.texto_{
	width: 460px;
	line-height: 26px;
	font-size: 21px;
	margin: 80px auto 60px auto;
	text-align: justify;
}

.tile_degradado .linea{
	border-radius: 3px;
	height: 120px;
	width: 3px;
	background-color: #333036;
	position: absolute;
	bottom: 0px;
	left: calc(50% - 1px);
}

.texto_2{
	font-family:"Brandon Grotesque Black Italic";
	background-color: #333036;
	width: 100%;
	padding: 90px 0px 110px 0px; 
	text-align: center;
	line-height: 38px;
	color: #D1D3D4;
	font-size: 30px;
	clear: both;
}

.texto_2 h4 {
	margin-bottom: 30px;
	font-family: 'Gill Sans Medium';
	font-size: 20px;
	    letter-spacing: 1px;
}

.title_tile{
	background-size: contain;
	background-image: url(../images/title_tile.png);
	background-position: center;
	line-height: 120px;
	font-family:"Brandon Grotesque Black Italic";
	font-size: 18px;
	text-align: center;
	float: left;
	width: 100%;
}

.propuesta  img{
	width: 50%;
}
ul#propuestas li:hover{
	cursor: pointer;
	color: #C0a760;
}

.texto_3{
	/*font-family:"Brandon Grotesque Black Italic";*/
	background-color: #333036;
	width: 100%;
	padding: 80px 0px 80px 0px; 
	text-align: left;
	line-height: 36px;
	color: #D1D3D4;
	font-size: 22px;
	clear: both;
}

.texto_3 ul{
	/*padding-left: 95px;*/
	padding-left: 55px;
}
.texto_3 ul li{
  background: url(../images/li_dorado.png) no-repeat left; /* <-- change `left` & `top` too for extra control */
  padding: 0px 0px 0px 50px;
  /* reset styles (optional): */
  list-style: none;
  margin: 0;
}
h2{
	font-family:"Brandon Grotesque Black Italic";
	font-size: 48px;
}

/*	METODOLOGIA 	*/

.clientes h2{
		text-align: left;
		line-height: 36px;
		font-size: 34px;
   		margin-bottom: 30px;
		color: #C5A45D;
		margin-left: -15px;
	}
	
#clientes .col{
		padding: 45px;
	}
#clientes img{
	width: 50%;
	height: auto;
}

.metodologia{
	background-color:#e6e7e9;
	padding-bottom:180px;
	padding-top:180px;
	line-height:24px;
	float: left;
    width: 100%;
}
.metodologia .texto_{
	max-width:670px;
	margin-bottom:90px;
	color:#656568;
	line-height: 36px;
}

.metodologia .triangulos{
	max-width:1100px;
	margin-left:auto;
	margin-right:auto;
}

.metodologia .triangulo{
	width:20%;
	float:left;
	transform: rotate(45deg);
	padding:0px 40px;
}

.metodologia .triangulo .inner{
	width:100%;
	float:left;
	border:#C5A45D 1px solid;
	padding-top: calc(100% - 2px); /* 1:1 Aspect Ratio */
	position: relative; /* If you want text inside of it */
}


.metodologia .triangulo .texto{
	padding-top: 32%;
    text-align: center;
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	font-size: 18px;
}

.metodologia .triangulo .triangulito{
	position: absolute;
    background: #C5A45D;
    width: 30px;
    height: 30px;
    bottom: -43%;
    right: -43%;
}

/*	SOMOS: 	*/


.somos_mision{
	height:110vh;
	position: relative;
}

.somos_mision .triangulo{
	transform: rotate(45deg);
	background-color:#c5a35d;
	position:absolute;
	/*background:url(images/li_dorado.png) no-repeat center;*/
	width:30px;
	height:30px;
	bottom:60px;
	left:calc(50% - 15px);
}

.somos{
	height:100%;
	background-color:#e6e7e9;
	padding-bottom:180px;
	padding-top:180px;
	line-height:24px;
}
.somos h1{
	text-align:left;
	margin-bottom:30px;
	padding-left:40px;
}
.somos p{
	padding:0px 40px 0px 40px;
}
.mision{
	color:#c5a35d;
	height:100%;
	background-color:#312f35;
	padding-bottom:180px;
	padding-top:140px;
}
.mision p{
	margin-top:20px;
	margin-bottom:50px;
	color:#fff;
	padding-left:30px;
	width:90%;
}
.mision h2{
	font-size:38px;
}

/* EQUIPO */


	.gill{
		font-family: 'Gill Sans Medium';
		text-align: left;
		font-size: 20px;
	}
	.col3{
		float: left;
		width: 33%;
	}

	#grid{
		position: relative;
	}
	.asociado{
		width: 100%;
		padding: 0px 15px 0px 15px;
		/*position: absolute;*/
	}
	.asociado .linea .triangulito{
		width: 25px;
		height: 25px;
		background-color: #c5a35d;
		transform: rotate(45deg);
		position: absolute;
		left: -12px;
		bottom: 2px;
	}
	
	.asociado .linea .triangulito.chico{
		width: 10px;
		height: 10px;
		left: -5px;
	}
	.asociado .linea .triangulito.maschico{
		width: 6px;
		height: 6px;
		left: -3px;
	}
	
	
	.asociado .linea{
		position: relative;
		display: table;
		margin-left: auto;
		margin-right: auto;
		width: 1px;
		background: #535354;
		margin-bottom: -15px;
	}



.asociado .inner{
	width: 100%;
	height: auto;
	border: #f7f2e8 1px solid;
	padding: 45px;
	text-align: justify;
	line-height: 20px;
	font-size: 14px;
}
.asociado h2{
	font-family: "Brandon Grotesque Black Italic";
    font-size: 30px;
	line-height: 30px;
	margin-left: -10px;
	margin-bottom: 18px;
}

.asociado .inner img{
	width: 80%;
	height: auto;
	display: table;
	margin-left: auto;
    margin-right: auto;
}


.asesoria{
	float: left;
	margin: 40px 0px -10px 40px;
}

.color_dorado{
	color: #C0a760;
}

/* NOVEDADES */

.novedades .tile_degradado{
		line-height: 55vh;
		height: 65vh;
	}
	.novedades .tile_degradado .inner{
		padding-top: 0;
	}
	.novedades h2{
		text-align: left;
		font-size: 30px;
		margin-bottom: 20px;
	}
	.novedades .col .item{
		float: left;
		width: 100%;
		padding: 50px;
		background-color: #fff;
		margin: 20px 0px;
	}
	.novedades .col{
		padding: 20px;
	}
	.novedades p{
		/*padding: 20px;*/
		color: #333;
		float: left;
		margin-bottom: 20px;
	}
	
	.novedades .fecha{
		
	}
	.novedades a.btn{
		color: #333;
		font-family: "Gill Sans Medium";
		line-height: 40px;
		font-size: 20px;
	}
	.novedades a.btn .circ{
		color: #fff;
		text-align: center;
		width: 40px;
		height: 40px;
		float: left;
		background-color: #c0a760;
		border-radius: 40px;
		margin-right: 20px;
	}

a.btn_atras{
	margin-bottom: 60px;
	margin-right: 60px;
	float: right;
	line-height: 43px;
	background-color: #C5A45D;
	width: 140px;
	text-align: center;
	color: #414042;
}

 a.btn_atras:hover{
	cursor: pointer;
	background-color: #e2d1ae;
	-webkit-transition: all 0.3s; /* Safari prior 6.1 */
	transition: all 0.3s;
}
	

.ventajas h2{
	text-align: left;
	font-size: 30px;
	color: #c5a35d;
	margin-bottom: 20px;
	margin-left: -30px;
	width: calc(100% + 30px);
	clear: both;
	float: left;
}

.ventajas p{
	float: left;
	margin-bottom: 20px;
}

.ventajas ul{
	margin-top: 50px;
	max-width: 700px;
	line-height: 20px;
	list-style: none; 
	text-align: justify;
	font-size: 18px; 
}

.ventajas ul li{
	margin-top: 12px;
	padding-left: 20px;
	position: relative;
}

.ventajas ul li .circ {
	background-color: #C5A45D;
	width: 10px;
	height: 10px;
	border-radius: 30px;
	position: absolute;
	top: 5px;
	left: 0px;
}


#footer{
	float: left;
	width: 100%;
	padding: 50px 50px 30px 50px;
}
#footer .logo {
	margin: 20px 0 0 0;
	float: left;
	width: 300px;
}

#footer .linea{
	float: left;
	height: 2px;
	width: 48px;
	background-color: #C5A45D;
	margin-top: 20px;
	clear:both;
}

#footer ul{
	font-size: 14px;
	float: right;
	margin-top: 20px;
	list-style-type: none;
	/*width: 50%;height: 100px;*/
}
#footer ul li{
	color: #414042;
	min-width: 270px;
	float: left;
	line-height: 24px;
}
#footer ul a{
	color: #414042;
}
#footer a:hover{
	color: #646465;
}

#footer .btn_formulario{
	float: right;
	line-height: 43px;
	background-color: #C5A45D;
	width: 140px;
	text-align: center;
	color: #414042;
}

#footer .btn_formulario:hover{
	cursor: pointer;
	background-color: #e2d1ae;
	-webkit-transition: all 0.3s; /* Safari prior 6.1 */
	transition: all 0.3s;
}



#footer .linkedin{
	float: left;
    clear: both;
	margin-top: 30px;
}
#footer .linkedin a{
	
}
#footer .linkedin a:hover{
	background-color: #2babe2;
}