/**
 * @copyright The Glacier Jeans Factory
 * @author Edoardo Alejandro Palazuelos Osorio (edoardo@nucliux.mx)
 * @version 1.0 (Enero 2017)
 * @since 1.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "inicio.css";
@import "nosotros.css";
@import "que_hacemos.css";
@import "contacto.css";

/*Tipografías*/
@font-face{
	font-family: "OpenSans-Bold";
	src: url("fonts/OpenSans-Bold.ttf");
}
@font-face{
	font-family: "OpenSans-BoldItalic";
	src: url("fonts/OpenSans-BoldItalic.ttf");
}
@font-face{
	font-family: "OpenSans-ExtraBold";
	src: url("fonts/OpenSans-ExtraBold.ttf");
}
@font-face{
	font-family: "OpenSans-ExtraBoldItalic";
	src: url("fonts/OpenSans-ExtraBoldItalic.ttf");
}
@font-face{
	font-family: "OpenSans-Italic";
	src: url("fonts/OpenSans-Italic.ttf");
}
@font-face{
	font-family: "OpenSans-Light";
	src: url("fonts/OpenSans-Light.ttf");
}
@font-face{
	font-family: "OpenSans-LightItalic";
	src: url("fonts/OpenSans-LightItalic.ttf");
}
@font-face{
	font-family: "OpenSans-Regular";
	src: url("fonts/OpenSans-Regular.ttf");
}
@font-face{
	font-family: "OpenSans-Semibold";
	src: url("fonts/OpenSans-Semibold.ttf");
}
@font-face{
	font-family: "OpenSans-SemiboldItalic";
	src: url("fonts/OpenSans-SemiboldItalic.ttf");
}


/*Página*/
html, body{
	background-color: white;
	width: 100%;
	height: 100%;
	color: white;
	font-family: 'OpenSans-Regular', sans-serif;
	font-size: 1.3vw;
}

a{
	text-decoration: none;
	color: white;
}

.span-black{
    color: rgba(43,62,79,1);
}
.menu-cambio{
	height: 10vh;
	border-bottom: 2px solid white;
}
.menu-cambio2{
	height: 10vh;
	border-bottom: 2px solid grey;
	color: black;
	background-color: rgba(255,255,255,.9);
}
.menu__navegacion2{
	color: black;
	top: 10vh;
	/*background-color: rgba(255,255,255,.9);*/
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-width: 768px){
	html, body{
		font-size: 4.5vw;
	}
}