/**
 * @copyright Blue Wave
 * @author Nucliux (edoardo@nucliux.mx)
 * @version 1.0.0 (Febrero 2024)
 * @since 1.0.0
 */

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


/*Tipografías*/
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&display=swap');

@font-face{
	font-family: "Helvetica";
	font-weight: 400;
	src: url("fonts/Helvetica-Regular.ttf");
}

@font-face{
	font-family: "Helvetica";
	font-weight: 700;
	src: url("fonts/Helvetica-Bold.ttf");
}

@font-face{
	font-family: "Helvetica";
	font-weight: 700;
	font-style: italic;
	src: url("fonts/Helvetica-BoldOblique.ttf");
}

/*Página*/
html,body{
    background-color: #FFFFFF;
	width: 100%;
	height: 100%;
	color: #7C7C7C;
	font-family: 'Helvetica', sans-serif;
	font-weight: 400;
	font-size: 1.2vw;
	line-height: 1.7vw;
}

h1{
	color: #495464;
	font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 2vw;
	line-height: 2.5vw;
}

h2{
	font-family: 'Helvetica', serif;
    font-weight: 700;
    font-size: 1.2vw;
	line-height: 1.7vw;
}

.whatsapp img{
	position: fixed;
	bottom: 1vh;
	right: 1vw;
	z-index: 15;
	width: auto;
	height: 8vh;
	object-fit: contain;

	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.whatsapp img:hover{
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
}

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

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

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

	.whatsapp img{
		right: 2vw;
		height: 10vh;
	}
}

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

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

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