@font-face {
    font-family: "Roboto-Light";
    src: url('fuentes/Roboto-Light.ttf') format("truetype");
}
@font-face {
    font-family: "Roboto";
    src: url('fuentes/Roboto-Regular.ttf') format("truetype");
}
@font-face {
    font-family: "Roboto-Medium";
    src: url('fuentes/Roboto-Medium.ttf') format("truetype");
}
@font-face {
    font-family: "Roboto-Bold";
    src: url('fuentes/Roboto-Bold.ttf') format("truetype");
}
@font-face {
    font-family: "Roboto-Black";
    src: url('fuentes/Roboto-Black.ttf') format("truetype");
}
@font-face {
    font-family: "OpenSans-Regular";
    src: url('fuentes/OpenSans-Regular.ttf') format("truetype");
}
@font-face {
    font-family: "OpenSans-SemiBold";
    src: url('fuentes/OpenSans-SemiBold.ttf') format("truetype");
}
* {
	margin:0;
	padding:0;
}

.social3 {
	position: fixed; 
	right: 0; 
	top: 45vh;
	z-index: 2000; 
}
.social3 ul {
	list-style: none;
	margin-top:5%;
}

.social3 ul li a {
	display: inline-block;
	color:#fff;
	background: #000;
	padding: 10px 10px;
	font-size:18px;
	text-decoration: none;
	-webkit-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease; 
}
 
.social3 ul li .icon-facebook {background:#3b5998;}
.social3 ul li .icon-youtube {background:#d71e18;}
.social3 ul li .icon-instagram {background:#bc2a8d;}
.social3 ul li .icon-mail3 {background:#808080;}
.social3 ul li .icon-whatsapp {background:#25d366;} 
.social3 ul li a:hover {
	background: #000; 
	padding-top: 10px;
	padding-left: 10px;
}
header {
	width:100%;
	height:auto;
	float:left;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
}
.info-m {
	position:absolute;
	width:100%;
	z-index:2001;
}
.h_logo {
	width:100%;
	height:auto;
	text-align:center;
	padding-bottom:2%;
}
#logo_cientifica {
	width:22%;
	height:auto;
	margin-top:5px;
}
.h_cabezera {
	width:100%;
	height:auto;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
	background-color:#f0f0f0;
}
.h_logo_unsa {
	width:100%;
	height:auto;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
	padding-top:3%;
}
.h_seccion1 {
	width:56%;
}
.h_seccion2 {
	width:20%;
}
.h_seccion3 {
	width:14%;
}
.h_seccion4 {
	width:14%;
}


.h_menu {
	width:100%;
	height:auto;
}
.m-contenedor {
	width:100%;
	max-width:1000px;
	margin: 0 auto;
	padding-bottom:4%;
}
.menu {
	width:100%;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
	font-family: "Roboto";
}
.btn1, .btn2, .btn3, .btn4, .btn5, .btn6 {
	width:13.3%;
	text-align:center;
	text-decoration:none;
}
.btn1 div, .btn2 div, .btn3 div, .btn4 div, .btn5 div, .btn6 div {
	padding-top:12%;
	padding-bottom:12%;
	color:#333333;
}
.btn7 {
	width:1% !important;
	text-align:center;
	text-decoration:none;
}
.btn7 img {
	margin-top:110%;
}
.btn7 div {
	padding-top:50%;
	padding-bottom:50%;
}
.btn1 div:hover, .btn2 div:hover, .btn3 div:hover, .btn4 div:hover, .btn5 div:hover, .btn6 div:hover {
	color:#ffffff;
	background-color:#0071ba;
}
ul.nav {
	width:100%;
	list-style: none; /* esto elimina el marcador de lista */
	 /* esto crea el borde superior de los vínculos (los demás se sitúan usando un borde inferior en el LI) */
	margin-bottom: 0px; /* esto crea el espacio entre la navegación en el contenido situado debajo */
	font-family: "Roboto-Medium";
}
ul.nav ul /* Para todos los ul debajo del ul.menu */
 {
	position:absolute; /* Esta posición es relativa al <li> que contiene a este <ul> */
    left:0px; /* Para que no monte sobre el <li> */
    /*top:65px;*/
    display:none;
    list-style:none;
	z-index:5;
	
}
ul.nav li:hover > ul
 {
    display:block;
 }
ul.nav li {
	text-align:center;
	position:relative; 
	padding:1px;
	float:left;
	width:16%;
	 /* esto crea la separación de los botones */
}
ul.nav li li{
	width: 220px;
}
ul.nav li li a, ul.nav li li a:visited {
	background:#FFFFFF;
	padding: 7% 5% 7% 5%;
	font-size:13px;
}
ul.nav li li a:hover, ul.nav li li a:active, ul.nav li li a:focus {
	color:#FFFFFF;
	background:#0071ba;
}
ul.nav a, ul.nav a:visited { /* al agrupar estos selectores, se asegurará de que los vínculos mantengan el aspecto de botón incluso después de haber sido visitados */
	padding: 12% 2% 12% 2%;
	display: block; /* esto da al anclaje propiedades de bloque, de manera que llene todo el LI en el que está contenido para que toda el área reaccione a un clic de ratón. */
	color:#333333;
	font-size:13px;
	text-decoration: none;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* esto cambia el color de fondo y del texto tanto para usuarios que naveguen con ratón como para los que lo hagan con teclado */
	color: #0071ba;
	font-weight:bold;
	border-bottom:solid;
	border-width: 3px;
	border-color: #0071ba;
}


.logo {
	width:65%;
}
#logo {
	width:11%;
	height:auto;
	margin-left:70%;
	margin-top:1%;
	padding-bottom:1%;
}

.abslider {
	width:100%;
	padding: 0;
	float:left;
}
#slider1_container {
	position: relative; 
	margin: 0 auto;
    top: 0px; 
	left: 0px; 
	width: 1600px; 
	height: 554px; 
	overflow: hidden;
}
#loading {
	position: absolute; 
	top: 0px; 
	left: 0px;
}
#loading2 {
	filter: alpha(opacity=70); 
	opacity: 0.7; 
	position: absolute; 
	display: block;
    top: 0px; 
	left: 0px; 
	width: 100%; 
	height: 100%;
}
#loading3 {
	position: absolute; 
	display: block; 
	background: url(../images/loading.gif) no-repeat center center;
    top: 0px; 
	left: 0px; 
	width: 100%; 
	height: 100%;
}
#slides {
	cursor: move; 
	position: absolute; 
	left: 0px; 
	top: 0px; 
	width: 1600px;
    height: 554px; 
	overflow: hidden;
}
#caption {
	position: absolute; 
	width: 445px; 
	height: 300px; 
	top: 100px; 
	left: 600px;
}
#phone {
	position: absolute; 
	width: 445px; 
	height: 300px; 
	top: 0px; 
	left: 0px;
}
#img_caption {
	position: absolute; 
	width: 102px; 
	height: 78px; 
	top: 70px; 
	left: 130px;
}
#text {
	position: absolute; 
	width: 80px; 
	height: 53px; 
	top: 153px; 
	left: 163px;
}
#fruit {
	position: absolute; 
	width: 140px; 
	height: 90px; 
	top: 60px; 
	left: 220px;
}
#navigator {
	position: absolute; 
	width: 200px; 
	height: 155px; 
	top: 57px; 
	left: 121px; 
}
#caption2 {
	position: absolute; 
	width: 470px; 
	height: 220px; 
	top: 120px; 
	left: 650px;
}
#caption2_img {
	position: absolute; 
	width: 470px; 
	height: 220px; 
	top: 0px; 
	left: 0px;
}
#caption2_img1 {
	position: absolute; 
	width: 379px; 
	height: 213px; 
	top: 4px; 
	left: 45px;
}
#caption2_img2 {
	position: absolute; 
	width: 379px; 
	height: 213px; 
	top: 4px; 
	left: 45px;
}
#caption2_img_point {
	position: absolute; 
	width: 257px; 
	height: 300px; 
	top: 80px; 
	left: 200px;
}
#caption2_nav_horizontal {
	position: absolute; 
	width: 379px; 
	height: 213px; 
	top: 4px; 
	left: 45px;
}
#titulo {
	position: absolute; 
	width: 480px; 
	height: 120px; 
	top: 30px; 
	left: 30px; 
	padding: 5px;
    text-align: left; 
	line-height: 60px; 
	text-transform: uppercase; 
	font-size: 50px;
    color: #FFFFFF;
}
#titulo2 {
	position: absolute; 
	width: 480px; 
	height: 120px; 
	top: 30px; 
	left: 30px; 
	padding: 5px;
    text-align: left; 
	line-height: 60px; 
	text-transform: uppercase; 
	font-size: 50px;
    color: #FFFFFF;
}
#titulo3 {
	position: absolute; 
	width: 480px; 
	height: 120px; 
	top: 30px; 
	left: 30px; 
	padding: 5px;
    text-align: left; 
	line-height: 60px; 
	text-transform: uppercase; 
	font-size: 50px;
    color: #FFFFFF;
}
#leyenda {
	position: absolute; 
	width: 480px; 
	height: 120px; 
	top: 300px; 
	left: 30px; 
	padding: 5px;
    text-align: left; 
	line-height: 36px; 
	font-size: 30px;
    color: #FFFFFF;
}
#leyenda2 {
	position: absolute; 
	width: 640px; 
	height: 144px; 
	top: 308px; 
	left: 274px; 
	padding: 5px;
    text-align: left; 
	line-height: 36px; 
	font-size: 50px;
    color: #FFFFFF;
}
#leyenda3 {
	position: absolute; 
	width: 480px; 
	height: 120px; 
	top: 300px; 
	left: 30px; 
	padding: 5px;
    text-align: left; 
	line-height: 36px; 
	font-size: 30px;
    color: #FFFFFF;
}
#leyenda4 {
	position: absolute; 
	width: 683px; 
	height: 75px; 
	top: 179px; 
	left: 875px; 
	padding: 5px;
    text-align: left; 
	line-height: 36px; 
	font-size: 50px;
    color: #FFFFFF;
}
/*Bullet Navigator Skin Begin -->
             jssor slider bullet navigator skin 21 css */
            /*
            .jssorb21 div           (normal)
            .jssorb21 div:hover     (normal mouseover)
            .jssorb21 .av           (active)
            .jssorb21 .av:hover     (active mouseover)
            .jssorb21 .dn           (mousedown)
            */
            .jssorb21 div, .jssorb21 div:hover, .jssorb21 .av
            {
                background: url(../images/b21.png) no-repeat;
                overflow:hidden;
                cursor: pointer;
            }
            .jssorb21 div { background-position: -5px -5px; }
            .jssorb21 div:hover, .jssorb21 .av:hover { background-position: -35px -5px; }
            .jssorb21 .av { background-position: -65px -5px; }
            .jssorb21 .dn, .jssorb21 .dn:hover { background-position: -95px -5px; }


/*Arrow Navigator Skin Begin -->
             jssor slider arrow navigator skin 21 css */
            /*
            .jssora21l              (normal)
            .jssora21r              (normal)
            .jssora21l:hover        (normal mouseover)
            .jssora21r:hover        (normal mouseover)
            .jssora21ldn            (mousedown)
            .jssora21rdn            (mousedown)
            */
            .jssora21l, .jssora21r, .jssora21ldn, .jssora21rdn
            {
            	position: absolute;
            	cursor: pointer;
            	display: block;
                background: url(../images/a21.png) center center no-repeat;
                overflow: hidden;
            }
            .jssora21l { background-position: -3px -33px; }
            .jssora21r { background-position: -63px -33px; }
            .jssora21l:hover { background-position: -123px -33px; }
            .jssora21r:hover { background-position: -183px -33px; }
            .jssora21ldn { background-position: -243px -33px; }
            .jssora21rdn { background-position: -303px -33px; }			
			
#jssorb21 {
	position: absolute; 
	bottom: 26px; 
	left: 6px;
}
#prototype {
	POSITION: absolute; 
	WIDTH: 19px; 
	HEIGHT: 19px; 
	text-align:center; 
	line-height:19px; 
	color:White; 
	font-size:12px;
	margin-top:-30px;
}
/****/
.nosotros {
	width:100%;
	height:auto;
	float:left;
	text-align:center;
}
.detalle {
	width:100%;
	padding: 0;
	float:left;
}
.d-contenedor {
	width:100%;
	max-width:1400px;
	margin: 0 auto;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
}
.d-titulo {
	width:100%;
	font-family: "Roboto";
	color:#4d4d4d;
	margin-top:4%;
	text-align:center;
}
.d-titulo h1 {
	text-align:center;
	font-family: "Roboto-Light";
	color:#262324;
}
.d-titulo h2 {
	font-family: "Roboto-Black";
	color:#0071ba;
	width:65%;
	margin:0 auto;
}
.sub_barra {
	width:51%;
	height:2px;
	background-color:#6c6e6f;
	margin:0 auto;
}
.sub_barra2 {
	width:281px;
	height:2px;
	background-color:#6c6e6f;
	margin:0 auto;
}
.sub_barra3 {
	width:215px;
	height:2px;
	background-color:#ffffff;
	margin-left:30%;
}
.sub_barra4 {
	width:215px;
	height:2px;
	background-color:#ffffff;
	margin-left:15%;
}
.i_valores {
	width:40%;
}
.r_valores {
	width:60%;
	padding-top:6%;
}
#img_nosotros {
	margin-top:15%;
	margin-left:3%;
	width:84%; 
	height:auto;
}
.div_valores {
	padding-top:3%;
	padding-bottom:3%;
}
.div_valores h3 {
	font-family: "Roboto-Medium";
	color:#0071ba;
	margin-left:5%;
}
.div_valores p {
	font-family: "Roboto";
	color:#262324;
	margin-left:5%;
	margin-right:5%;
	font-size:18px;
	margin-top:1%;
}
.div_valores p span {
	font-weight:bold;
}
.div_valores:hover {
	border-style: solid;
	border-width: 1px;
	border-color: #0071ba;
}
.i_laboratorio {
	width:20%;
	margin-top:6%;
}
#lab {
	width:190%;
	position:relative;
	z-index:5;
	margin-top:-5%;
	padding-bottom:7%;
}
.r_laboratorio {
	width:80%;
	margin-top:8%;
	background-color:#0071ba;
	color:#FFFFFF;
}
.r_laboratorio h1 {
	margin-left:30%;
	font-family: "Roboto-Medium";
	margin-top:5%;
}
#logo_blanco {
	margin-left:30%;
	margin-top:3%;
	width:39%; 
	height:auto;
}
.r_laboratorio p {
	margin-left:30%;
	margin-right:12%;
	font-family: "Roboto";
	font-size:20px;
	margin-top:3%;
}
.r_wild {
	width:15%;
	margin-top:6%;
}
#lab2 {
	width:260%;
	position:relative;
	z-index:2;
	margin-top:-5%;
	padding-bottom:7%;
	margin-left:-160%;
}
.i_wild {
	width:85%;
	margin-top:8%;
	background-color:#5ea45e;
	color:#FFFFFF;
}
.i_wild h1 {
	margin-left:15%;
	font-family: "Roboto-Medium";
	margin-top:5%;
}
#logo_blanco_wild {
	margin-left:15%;
	margin-top:3%;
}
.i_wild p {
	margin-left:15%;
	margin-right:33%;
	text-align:justify;
	font-family: "Roboto";
	font-size:20px;
	margin-top:3%;
}
.d_producto {
	width:33.3%;
}
#demos {
	width: 95%; 
	margin: 0 auto; 
	max-width:1400px;
}



.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2 {
	margin-top:0%;
}
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 0px;
	font-size: 120%;
	color:#ffffff;
	font-family: "Roboto-Bold";
	
}
.grid {
	margin: 0 auto;
	width: 100%;
	max-width: 1400px;
	list-style: none;
	text-align: center;
}
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 300px;
	max-width: 480px;
	max-height: 360px;
	width: 31%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}
.h2-niveles {
	font-size: 15px;
	font-family: "Roboto-Medium";
	color:#979797;
}
/*---------------*/
/***** Bubba *****/
/*---------------*/

/*figure.effect-bubba {*/
	/*background: #9e5406;*/
/*}*/

figure.effect-bubba img {
	opacity: 1;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
	opacity: 0.4;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

figure.effect-bubba figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}

figure.effect-bubba h2 {
	padding-top: 30%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
}

figure.effect-bubba p {
	padding: 20px 2.5em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
@media screen and (max-width:1000px) {
	.grid figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 48%;
	}
}
@media screen and (max-width: 40em) {
	.grid figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}






#franja {
	width:100%;
	height:auto;
	margin-top:4%;
	display:block;
}
#franja_movil {
	width:100%;
	height:auto;
	margin-top:4%;
	display:none;
}
.auspiciadores {
	width:100%;
	padding:0;
	float:left;
}
.a-contenedor {
	width:95%;
	max-width:1400px;
	margin: 0 auto;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
}
.a-left {
	width:33.3%;
}
.a-seccion {
	width:100%;
}
.a-seccion h3 {
	text-align:center;
	margin-top:5%;
	font-family: "Roboto-Medium";
}
#a-logo_unsa {
	width: 60%;
	height: auto;
}
#a-logo_unsa_investiga {
	width: 55%;
	height: auto;
}
.a-seccion img {
	display:block;
	margin:auto;
	margin-top:10%;
}
.a-right {
	width:66.7%;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
}
.a-titulo {
	width:100%;
}
.a-titulo h3 {
	text-align:center;
	margin-top:3%;
	font-family: "Roboto-Medium";
}
.ar-izq {
	width:40%;
}
.ar-der {
	width:60%;
} 
.a-right-seccion1 {
	width:100%;
}
.a-right-seccion1 img {
	display:block;
	margin:auto;
	margin-top:6%;
}
.a-right-seccion {
	width:100%;
}
.a-right-seccion img {
	display:block;
	margin:auto;
}
#logosouhter {
	margin-top:12%;
}
#logo_angloamerican {
	margin-top:12%;
}
.mapa {
	width:100%;
	height:auto;
	float:left;
	text-align:center;
}
.mapa h1 {
	font-family: "Roboto";
	color:#4d4d4d;
	margin-top:5%;
}
#mapa {
	width:100%;
	max-width:1600px;
	height:400px;
	display:block;
	margin:0 auto;
	margin-top:3%;
}
.info {
	width:100%;
	max-width:1400px;
	margin:0 auto;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
}
.i-left {
	width:50%;
	text-align:center;
	color:#4d4d4d;
}
#logo_cuerpo {
	margin-top:15%;
	width:77%; 
	height:auto;
}
.tresd-rd-principal {
	width: 60%;
	margin: 0 auto;
	margin-top: 4%;
}
.tresd-rd-video {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 52.25%; /* 16:9 Aspect Ratio */
}
.v-iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.i-right {
	width:50%;
	font-family: "Roboto";
}
.i-right p{
	text-align:justify;
	font-size:22px;
	margin-top:15%;
	padding-left:5%;
	padding-right:10%;
}
.i-right span {
	font-weight:bold;
}
.i-seccion1 {
	width:50%;
	background-color:#92be3d;
}
.i-seccion1 h3 {
	margin-top:40%;
	width:95%;
}
.i-seccion2 {
	width:50%;
}
.i-seccion3 {
	width:50%;
}
.i-seccion4 {
	width:25%;
	background-color:#92be3d;
}
.i-seccion4 h3 {
	margin-top:40%;
	width:95%;
	margin-left:2%;
}
.i-seccion5 {
	width:25%;
}

footer {
	width:100%;
	height:auto;
	float:left;
	background-color:#0071ba;
}
.f-contenedor {
	width:100%;
	max-width:1400px;
	margin:0 auto;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
	padding-bottom:2%;
}
.f-empresas {
	width:45%;
	display: flex;
  	display: -webkit-flex;
  	flex-flow: row wrap;
  	-webkit-flex-flow: row wrap;
}
.f-logo-p {
	width:100%;
	padding-bottom:20px;
	padding-left:1%;
}
#logo-footer-min {
	margin-top:7%;
	margin-left:10%;
}
.f-logo-s {
	width:25%;
	padding-left:1%;
}
.derechos {
	width:100%;
}
.derechos p {
	color:#ffffff;
	font-family: "OpenSans-SemiBold";
	font-size:10px;
	margin-left:10%;
}
.f-info {
	width:32%;
	color:#ffffff;
}
.f-border {
	margin-top:10%;
	border-right:0px solid white;
}
#t-info {
	font-family: "Roboto-Medium";
	font-size:24px;
	margin-left:5%;
}
#t-info2 {
	font-family: "Roboto-Light";
	font-size:18px;
	margin-left:5%;
}
.txt-info {
	font-family: "Roboto";
	margin-top:2%;
	font-size:12px;
	margin-left:5%;
}
.txt-info span {
	font-family: "Roboto-Medium";
}
.f-enlaces {
	width:22.5%;
	color:#ffffff;
}
#t-enlaces {
	font-family: "OpenSans-Bold";
	margin-left:5%;
}
.txt-enlaces {
	font-family: "OpenSans-Regular";
	margin-top:5%;
	font-size:12px;
	margin-left:5%;
}
.txt-enlaces a {
	outline: none;
	color: #ffffff;
	text-decoration: none;
}

.txt-enlaces a:hover, .txt-enlaces a:focus {
	color: #528cb3;
}

.f-mas {
	width:23%;
	color:#FFFFFF;
}
#t-mas {
	font-family: "Roboto-Medium";
	margin-left:5%;
	margin-top:25%;
}

.social ul {
	list-style: none;
	margin-top:5%;
}
.social ul li {
	display:inline;
	margin-left:2%; 
} 
.social ul li a {
	display: inline-block;
	color:#0071ba;
	background: #000;
	padding: 10px 10px;
	font-size:18px;
	text-decoration: none;
	-webkit-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease; 
	
}
 
.social ul li .icon-facebook {background:#ffffff;}
.social ul li .icon-youtube {background:#ffffff;}
.social ul li .icon-instagram {background:#ffffff;}
.social ul li .icon-linkedin {background:#ffffff;}
.social ul li .icon-mail3 {background:#808080;}
.social ul li .icon-user-tie {background:#6a2733;} 
.social ul li a:hover {
	background: #0071ba; 
	padding: 9px 9px;
	color:#ffffff;
	border-style: solid;
	border-width: 1px;
	border-color: #ffffff; 
}

.social2 {
	position: fixed; 
	right: 0; 
	top: 30vh; 
	z-index: 2000; 
}
.social2 ul {
	list-style: none;
	margin-top:5%;
} 
.social2 ul li a {
	display: inline-block;
	color:#fff;
	background: #000;
	padding: 10px 10px;
	font-size:18px;
	text-decoration: none;
	-webkit-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease; 
}
 
.social2 ul li .icon-facebook {background:#3b5998;}
.social2 ul li .icon-twitter {background:#55aaec;}
.social2 ul li .icon-instagram {background:#bc2a8d;}
.social2 ul li .icon-mail3 {background:#808080;}
.social2 ul li .icon-user-tie {background:#6a2733;} 
.social2 ul li a:hover {
	background: #000; 
	padding: 10px 10px; 
}

.ir-arriba {
	display:none;
	padding:15px;
	background:#ffffff;
	font-size:15px;
	color:#0071ba;
	cursor:pointer;
	position: fixed;
	bottom:15px;
	right:15px;
	z-index:5;
}



@media screen and (max-width:1024px) {
	.i-left p {
		font-family: "Roboto";
		margin-left:5%;
		font-size:12px;
		width:90%;
		text-align:justify;
	}
	
}
@media screen and (max-width:800px) {
	#logo_cuerpo {
		width:57%;
		margin-top:10%;
	}
	.m-contenedor {
		display: none;
	}
	.d-seccion {
		width:50%;
	}
	.i-left {
		width:100%;
		padding-bottom: 0%;
	}
	.i-right {
		width:100%;
	}
	.i-right p{
		font-size:22px;
		margin-top:10%;
	}
	.tresd-rd-principal {
		width: 80%;
	}
	.d-titulo h2 {
		width:85%;
	}
	#img_nosotros {
		margin-top:15%;
		margin-left:0%;
		width:96%; 
		height:auto;
	}
	.div_valores h3 {
		font-size:15px;
		margin-left:0%;
	}
	.div_valores p {
		margin-left:0%;
		font-size:14px;
		margin-top:1%;
		text-align:justify;
	}
	.r_laboratorio p {
		margin-left:30%;
		margin-right:8%;
		font-family: "Roboto";
		font-size:18px;
		margin-top:3%;
		padding-bottom:2%;
	}
	.i_wild p {
		margin-left:10%;
		margin-right:33%;
		text-align:justify;
		font-family: "Roboto";
		font-size:18px;
		margin-top:3%;
		padding-bottom:2%;
	}
	.f-empresas {
		width:50%;
	}
	.f-info {
		width:50%;
	}
	.f-mas {
		display: none;
	}
	
}

@media screen and (max-width: 480px) {
	#logo_cuerpo {
		width:77%;
		margin-top:5%;
	}
	#logo_cientifica {
		width:62%;
		height:auto;
		margin-top:5px;
	}
	.h_logo {
		width:100%;
	}
	#logo_congreso {
		width:50%;
	}
	.d-titulo h2 {
		width:95%;
		font-size:18px;
	}
	.div_valores h3 {
		margin-left:10%;
		margin-right:10%;
	}
	.div_valores p {
		margin-left:10%;
		margin-right:10%;
	}
	.tresd-rd-principal {
		width: 90%;
	}
	.i_valores {
		display:none;
	}
	.r_valores {
		width:100%;
		padding:2%;
	}
	.i_laboratorio {
		display:none;
	}
	.r_laboratorio {
		width:100%;
		text-align:center;
	}
	.r_laboratorio h1 {
		margin:0;
		text-align:center;
		font-family: "Roboto-Medium";
		font-size:20px;
		margin-top:5%;
	}
	#logo_blanco {
		margin:0 auto;
		text-align:center;
		width:60%;
		margin-top:5%;
	}
	.r_laboratorio p {
		margin-left:10%;
		margin-right:10%;
		text-align:justify;
		font-size:16px;
		margin-top:3%;
		padding-bottom:5%;
	}
	.sub_barra3 {
		width:140px;
		height:2px;
		background-color:#ffffff;
		margin:0 auto;
	}
	.sub_barra4 {
		width:140px;
		height:2px;
		background-color:#ffffff;
		margin:0 auto;
	}
	.i_wild {
		width:100%;
		margin-top:0%;
		text-align: center;
	}
	.i_wild h1 {
		margin: 0;
		text-align: center;
		font-size: 20px;
		font-family: "Roboto-Medium";
		margin-top:5%;
	}
	#logo_blanco_wild {
		margin:0 auto;
		text-align:center;
		width:50%;
		margin-top:5%;
	}
	.i_wild p {
		margin-left:10%;
		margin-right:10%;
		text-align:justify;
		font-size:16px;
		margin-top:3%;
		padding-bottom:5%;
	}
	.r_wild {
		display: none;
	}
	.d_producto {
		width:100%;
	}
	#slider1_container {
		width: 1600px; 
		height: 625px; 
	}
	#slides {
		width: 1600px;
		height: 625px; 
	}
	#franja_movil {
		display:block;
	}
	#franja {
		display:none;
	}
	
	.h_cabezera {
		width:100%;
	}
	.h_seccion1 {
		width:26%;
	}
	.h_seccion2 {
		width:30%;
	}
	.h_seccion3 {
		width:14%;
	}
	.h_seccion4 {
		width:25%;
	}
	.d-titulo h1 {
		font-size: 22px;
		text-align:center;
	}
	.d-seccion {
		width:100%;
	}
	.ds-right p {
		width:95%;
		font-size: 12px;
	}
	.d-contenedor {
		width:100%;	
	}
	.a-left {
		width:100%;
	}
	.a-right {
		width:100%;
	}
	#a-logo_unsa {
		width: 50%;
		height: auto;
	}
	#a-logo_unsa_investiga {
		width: 45%;
		height: auto;
	}
	.mapa h1 {
		font-size: 22px;
	}
	.i-right p {
		font-size:14px;
	}
	.f-info {
		width:100%;
	}
	
	.r-info2 {
		width:100%;
	}
	#alu_opt {
		display:none;
	}
	.ip-titulo {
		margin-left:7%;
	}
	.r-info2 h1{
		margin-left:3.5%;
	}
	.barrita {
		margin-left:3.5%;
	}
	.big-not-l {
		width:100%;
	}
	.big-not-r {
		width:100%;
	}
	.small-not-l {
		width:50%;
	}
	.small-not-r {
		width:50%;
	}
	.regular-not {
		width:100%;
	}
	.telefonica {
		width:50%;
	}
	.whatsapp {
		width:50%;
	}
	.correo {
		width:50%;
	}
	.f-enlaces {
		display:none;
	}
	.f-mas {
		width:50%;
		order: 2;
    	-webkit-order: 2;
	}
	.f-empresas {
		width:100%;
		order: 3;
    	-webkit-order: 3;
		padding-left:2%;
	}
	
	.f-logo-p {
		width:100%;
		padding-bottom:20px;
		padding-left:1%;
		text-align:center;
	}
	#logo-footer-min {
		margin-top:7%;
		margin-left:0%;
	}
}