/**
 * @copyright Domodissi
 * @author Blend Estudio (edoardo@nucliux.mx)
 * @version 1.0.0 (Octubre 2021)
 * @since 1.0.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "footer.css";
@import "inicio.css";
@import "seccion.css";
@import "modal.css";

@import "animate.min.css";

/*Tipografías*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

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

@font-face{
	font-family: "Neris";
	font-weight: 300;
	font-style: italic;
	src: url("fonts/Neris-LightItalic.otf");
}

@font-face{
	font-family: "Neris";
	font-weight: 600;
	src: url("fonts/Neris-SemiBold.otf");
}

@font-face{
	font-family: "Neris";
	font-weight: 600;
	font-style: italic;
	src: url("fonts/Neris-SemiBoldItalic.otf");
}

@font-face{
	font-family: "Neris";
	font-weight: 700;
	src: url("fonts/Neris-Black.otf");
}

@font-face{
	font-family: "Neris";
	font-weight: 700;
	font-style: italic;
	src: url("fonts/Neris-BlackItalic.otf");
}

/*Página*/
html,body{
    background-color: white;
	width: 100%;
	height: 100%;
	color: #001049;
	font-family: "Open Sans", sans-serif;
	font-weight: 300;
	font-size: 1.3vw;
	line-height: 1.8vw;
}

h1{
	font-family: "Neris", sans-serif;
	font-weight: 300;
	font-size: 4vw;
	line-height: 4.5vw;
}

h2{
	font-family: "Neris", sans-serif;
	font-weight: 300;
	font-size: 2vw;
	line-height: 2.5vw;
}

h3{
	color: #005FC5;
	font-family: "Neris", sans-serif;
	font-weight: 600;
	font-size: 1.5vw;
	line-height: 2vw;
}

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

	h1{
		font-size: 5vw;
		line-height: 5.5vw;
	}

	h2{
		font-size: 3vw;
		line-height: 3.5vw;
	}

	h3{
		font-size: 2.5vw;
		line-height: 3vw;
	}
}

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

	h1{
		font-size: 6.5vw;
		line-height: 7vw;
	}

	h2{
		font-size: 4.5vw;
		line-height: 5vw;
	}

	h3{
		font-size: 4vw;
		line-height: 4.5vw;
	}
}
