/**
 * @copyright Task Planning
 * @author Epalazue (edoardo@nucliux.mx)
 * @version 1.0.0 (Abril 2020)
 * @since 1.0.0
 */

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

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

/*Página*/
html,body{
	background-color: white;
	width: 100%;
	height: 100%;
	color: #707070;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 1.2vw;
}

h1{
	font-weight: 700;
	font-size: 2vw;
}

h2{
	font-weight: 400;
	font-size: 1.8vw;
	text-transform: uppercase;
	letter-spacing: 0.03vw;
}

h3{
	font-weight: 400;
	font-size: 1.5vw;
}

.whatsapp{
	position: fixed;
	bottom: 1vh;
	left: 1vw;
	z-index: 15;

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

.whatsapp img{
	width: 6vw;
	height: auto;
	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: 2vw;
	}

	h1{
		font-size: 3vw;
	}

	h2{
		font-size: 2.5vw;
	}

	h3{
		font-size: 2.5vw;
	}

	.whatsapp img{
		width: 10vw;
	}
}

/*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: 5vw;
	}

	h2{
		font-size: 4.5vw;
	}

	h3{
		font-size: 4.5vw;
	}

	.whatsapp img{
		width: 18vw;
	}
}