@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family: 'AvenirNext-Regular';
	src: url('AvenirNext-Regular.otf')  format('opentype');
	src: url('AvenirNext-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;

}

@font-face {
	font-family: 'AvenirNext-DemiBold';
	src: url('AvenirNext-DemiBold.otf')  format('opentype');
	src: url('AvenirNext-DemiBold.ttf') format('truetype');
	font-weight: 700;
	font-style: bold;
}

@font-face {
	font-family: 'AvenirNext-UltraLight';
	src: url('AvenirNext-UltraLight.otf')  format('opentype');
	src: url('AvenirNext-UltraLight.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

* {
	border: 0 none;
	outline: 0;
	padding: 0;
	margin: 0;
}

article, aside, figure, footer, header, menu, nav, section { 
	display: block;
}

.parrafos_gen strong {
	font-family: 'AvenirNext-DemiBold', sans-serif;
    font-weight: 700;
    color: #f58220;
}

/* Mixin itself */
.clearfix() {
  &:before,
  &:after {
    content: " ";
    display: table;
  }
  &:after {
    clear: both;
  }
}

/* Usage as a mixin */
.element {
  .clearfix();
}

/* PESTAÑAS */
#contenedor {
    margin: 20px auto;
    width: 738px;  /* Ancho del contenedor */
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: absolute;
}

#contenedor input {
	/*height: 32px;*/
	visibility: hidden;
	position: absolute;
}

#contenedor label {
	float: left;
	cursor: pointer;
	font-size: 18px;  /* Tamaño del texto de las pestañas */
	line-height: 25px;
	height: 55px;
	padding: 7px 0px;
	display: block;
	color: #f58220;  /* Color del texto de las pestañas */
	text-align: center;
	border-radius: 5px 5px 0 0;
	/* background: #FFFFFF;  Fondo de las pestañas */
	font-family: 'AvenirNext-UltraLight', sans-serif;
    font-weight: 300;
}

#contenedor input:hover + label {
	background: #ddd;  /* Fondo de las pestañas al pasar el cursor por encima */
	color: #666;  /* Color del texto de las pestañas al pasar el cursor por encima */
}

#contenedor input:checked + label {
	font-family: 'AvenirNext-DemiBold', sans-serif;
    font-weight: 700;
	background: #f58220;  /* Fondo de las pestañas al presionar */
	background: rgba(242,100,34,1);
	background: -moz-linear-gradient(top, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(242,100,34,1)), color-stop(100%, rgba(245,131,32,1)));
	background: -webkit-linear-gradient(top, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	background: -o-linear-gradient(top, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	background: -ms-linear-gradient(top, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	background: linear-gradient(to bottom, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f26422', endColorstr='#f58320', GradientType=0 );
	color: #FFFFFF; /* Color de las pestañas al presionar */
	z-index: 6;
	line-height: 25px;
	height: 55px;
	position: static;
	top: -5px;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-o-transition: .1s;
	-ms-transition: .1s;
}

.tab-label-1 {
	width: 25%;
}

.tab-label-2 {
	width: 75%;
}

.conte_boto1 {
	float: left;
	width: 30%;
}

.conte_boto2 {
	float: left;
	width: 33%;
}

.conte_boto3 {
	float: left;
	width: 36%;
}

.content {
	/* background: #f1f1f1;  Fondo del contenido */
	position: static;
	width: 100%;
	height: 2100px;  /* Alto del contenido */
	/* margin: 65px 0; */
	z-index: 5;
	border-top: 1px solid #f58220;
}

.content div {
	position: absolute;
	z-index: -100;
	opacity: 0;
	transition: all linear 0.1s;
}

#contenedor input.tab-selector-1:checked ~ .content .content-1,
#contenedor input.tab-selector-2:checked ~ .content .content-2,
#contenedor input.tab-selector-3:checked ~ .content .content-3,
#contenedor input.tab-selector-4:checked ~ .content .content-4 {
    background: #f1f1f1;
    z-index: 100;
    opacity: 1;
    -webkit-transition: all ease-out 0.2s 0.1s;
	-moz-transition: all ease-out 0.2s 0.1s;
	-o-transition: all ease-out 0.2s 0.1s;
	-ms-transition: all ease-out 0.2s 0.1s;
}


.content-1, .content-2, .content-3, .content-4 {
	width: 100%;
	overflow: hidden;
}



/* CONTENIDO */

.contenido_sas {
	width: 738px;
	height: 2750px;
}

.espac_sec {
	background: #f9f9f9;
	margin: 30px 0 0 0;
	border-bottom: 1px solid #b3b3b3;
}

.contenedor_pri {
 	margin: 5% 5%;
}

.parrafos_gen {
	font-family: 'AvenirNext-Regular', sans-serif;
	font-weight: 400;
	font-size: 16px;
	margin: 6% 10% 6% 25%;
	text-align: justify;
}

.parrafos_cita {
	font-family: 'AvenirNext-DemiBold', sans-serif;
	font-weight: 700;
	font-size: 14px;
	margin: -6% 10% 6% 25%;
	text-align: right;
}

.parrafos_gen_02 {
	font-family: 'AvenirNext-UltraLight', sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #FFFFFF;
	margin: 6% 15% 6% 0%;
	text-align: justify;
}

.titu_h2 {
	font-size: 30px;
	font-weight: 700;
	color: #f58220;
}

.linea_bor {
	border-bottom: 8px solid #0074be;
}

.linea_bor_02 {
	border-top: 8px solid #f58220;
}

.linea_bor_03 {
	border-top: 8px solid #0074be;
}

.caja_01, .caja_02  {
	color: #FFFFFF;
	display: block;
	float: left;
	height: 100px;
	padding: 30px;
}

.caja_03, .caja_04{
	color: #FFFFFF;
	display: block;
	float: left;
	height: 374px;
}

.caja_01 {
	width: 64%;
	background-color: #03314c;
	color: #FFFFFF
}

.caja_02 {
	width: 19.7%;
	background-color: #8fb33e;
	color: #FFFFFF
}

.caja_03 {
	width: 27%;
	background-color: #8fb33e;
	color: #FFFFFF;
}

.caja_04 {
	width: 73%;
	background-color: #8fb33e;
	color: #FFFFFF;
}

.caja_05 {
	display: block;
	float: left;
	height: 68px;
	padding: 30px;

	width: 89%;
	background-color: #8fb33e;
	color: #FFFFFF;
}

.caja_05:hover {
	background-color: #b7ce76;
}

.caja_06 {
	display: block;
	background-color: #03314c;
	color: #FFFFFF;
	height: 536px;
	align-content: center;
	/* Rotate div */
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
}

.caja_06 img {
	margin-top: 44%
}


.caja_texto_01 {
	font-family: 'AvenirNext-UltraLight', sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: #FFFFFF;
}

.caja_texto_02 {
	font-family: 'AvenirNext-Regular', sans-serif;
	font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
}

.caja_texto_02a {
	font-family: 'AvenirNext-Regular', sans-serif;
	font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 47px;
    height: 95px;
}

.caja_texto_03 {
	font-family: 'AvenirNext-UltraLight', sans-serif;
    font-weight: 300;
    font-size: 22px;
    color: #FFFFFF;
}

.caja_texto_04 {
	font-family: 'AvenirNext-Regular', sans-serif;
	font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.espacio_tabla_01 {
	width: 73%;
	float: left;
	margin: 0% 0% 6% 0%;
}

.espacio_tabla_02 {
	width: 27%;
	float: left;
	margin: 0% 0% 6% 0%;
}

/* FOOTER */
.footer_sas { 
	background: #f58220;  /* Fondo de las pestañas al presionar */
	background: rgba(242,100,34,1);
	background: -moz-linear-gradient(top, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(242,100,34,1)), color-stop(100%, rgba(245,131,32,1)));
	background: -webkit-linear-gradient(top, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	background: -o-linear-gradient(top, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	background: -ms-linear-gradient(top, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	background: linear-gradient(to bottom, rgba(242,100,34,1) 0%, rgba(245,131,32,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f26422', endColorstr='#f58320', GradientType=0 );
  	width: 100%;
  	border-bottom: 8px solid #03314c;
}

.box_01 {
	box-sizing: border-box;
	margin: 5% 5% 3% 5%;
	width: 30%;
	float: left;
	text-align: center;
 }

 .box_01 img {
	width: 220px;
 }

.box_02 {
	box-sizing: border-box;
	margin: 6% 5% 3% 5%;
	width: 40%;
	float: left;
	text-align: right;
}

.box_02 a img {
	width: 40px;
	height: auto;
	margin: 1%;
}

.box_03 {
	box-sizing: border-box;
	margin: 0;
	width: 10%;
	float: left;
	text-align: right;
	/* Rotate div */
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
 }

 .box_03 img {
	width: 75px;
 }
