/**
 * @copyright Poderosas mujeres
 * @author Epalazue (edoardo@nucliux.mx)
 * @version 1.1.0 (Junio 2022)
 * @since 1.0.0
 */

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

/*Importación de tipográfias*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

img{
	width: 100%;
	height: auto;
	object-fit: contain;
}

a{
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

a:hover{
	background-color: rgba(255,255,255,0.2);
}

.scroll{
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 0 4%;
	width: 92%;
	height: 9vh;

	display: -webkit-flex;
	-webkit-justify-content: space-between;
}

.scroll span{
	display: flex;

	display: -webkit-flex;
}

.scroll div{
	margin-right: 1vw;
	width: 8vw;
	height: 9vh;
	cursor: pointer;

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

.scroll div:nth-child(4){
	width: 10vw;
}

.scroll div:hover{
	background-color: rgba(255,255,255,0.2);
}

.scroll a{
	width: 15vw;
	height: 9vh;
}

.menu{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 9vh;
}

.registro{
	position: absolute;
	top: 435vh;
	right: 0;
	width: 100%;
	height: 115vh;
}

.login{
	position: absolute;
	top: 9vh;
	right: 0;
	width: 100%;
	height: 100vh;
}

.login-alterno{
	height: 140vh;
}

.columna{
	position: absolute;
	top: 9vh;
	width: 25%;
	height: 100vh;
}

.columna1{
	right: 25%;
}

.columna2{
	right: 0;
}

#menu{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
}

#inicio{
	padding-top: 8vh;
}

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

	.scroll{
		height: 4vh;
	}

	.scroll div{
		height: 4vh;
	}

	.scroll a{
		height: 4vh;
	}

	.menu{
		height: 5vh;
	}

	.registro{
		top: 220vh;
		height: 60vh;
	}

	.login{
		top: 5vh;
		height: 50vh;
	}

	.login-alterno{
		height: 70vh;
	}

	.columna{
		top: 5vh;
		height: 50vh;
	}

	#inicio{
		padding-top: 4vh;
	}
}

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

	.scroll{
		height: 2vh;
	}

	.scroll div{
		height: 2vh;
	}

	.scroll a{
		height: 2vh;
	}

	.menu{
		height: 3vh;
	}

	.registro{
		top: 125vh;
		height: 30vh;
	}

	.login{
		top: 3vh;
		height: 30vh;
	}

	.login-alterno{
		height: 40vh;
	}

	.columna{
		top: 3vh;
		height: 30vh;
	}

	#inicio{
		padding-top: 2vh;
	}
}
