/**
 * @copyright Agrupa RH
 * @author MacoLab (edoardo@nucliux.mx)
 * @version 1.0.0 (Febrero 2021)
 * @since 1.0.0
 */

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

@import "fullpage.min.css";
@import "animate.min.css";

/*Tipografías*/
@font-face{
	font-family: "Gill Sans";
	font-weight: 400;
	src: url("fonts/GillSans-Regular.otf");
}

@font-face{
	font-family: "Gill Sans";
	font-weight: 300;
	src: url("fonts/GillSans-Light.otf");
}

@font-face{
	font-family: "Quiche Sans";
	font-weight: 400;
	src: url("fonts/QuicheSans-Regular.otf");
}

/*Página*/
html,body{
    background-color: #000000;
	width: 100%;
	height: 100%;
	color: #FFFFFF;
	font-family: 'Gill Sans', sans-serif;
	font-weight: 300;
	font-size: 1.3vw;
}

h1{
	color: #AC8E6E;
	font-family: 'Quiche Sans', sans-serif;
	font-weight: 400;
	font-size: 1.8vw;
}

h2{
	font-family: 'Gill Sans', sans-serif;
	font-weight: 400;
	font-size: 1.8vw;
}

h3{
	color: #AC8E6E;
	font-family: 'Quiche Sans', sans-serif;
	font-weight: 400;
	font-size: 1vw;
}

.centro{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;

	-webkit-display: flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
}

.ancho-completo{
	width: 100%;
	height: 100%;

	transition: all 1.3s ease-out;
	-webkit-transition: all 1.3s ease-out;
}

.ancho{
	width: 80%!important;
	height: 80%!important;
}

.macolab{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2vh;
	width: 100%;

	display: -webkit-flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
}

.macolab img{
	width: auto;
	height: 5vh;
	object-fit: contain;
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
	html,body{
		font-size: 2.5vw;
	}

	h1{
		font-size: 3vw;
	}

	h2{
		font-size: 3vw;
	}

	h3{
		font-size: 2vw;
	}

	.macolab{
		padding-bottom: 3vh;
	}

	.macolab img{
		height: 4vh;
	}
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
	html,body{
		font-size: 4vw;
	}

	h1{
		font-size: 4.5vw;
	}

	h2{
		font-size: 4.5vw;
	}

	h3{
		font-size: 3.5vw;
	}
}
