@charset "UTF-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Abel:wght@300;400;500;600;700;800;900&display=swap");

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:"Abel", sans-serif;
}

.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.2rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}

.color-yellow{
	color:#C8C10E;
}
.header a {
	font-size: .8rem;
}

.header::before {
	background-color: rgba(70,70,70,0.4);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	content: '';
	position:absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.logo {
	fontsize: 1rem;
	color: #C8C10E;
	text-decoration: none;
	font-weight: 400;
}

.navbar a {
	font-size: 1.25rem;
	color: black;
	text-decoration: none;
	font-weight: 900;
	margin-left: 2.5rem;
}

#check {
	display: none;
}

.icons {
	position: absolute;
	right: 5%;
	font-size: 2rem;
	color: #C8C10E;
	cursor: pointer;
	display: none;
}

@media (max-width: 992px){
	.header {
		padding: 1.5rem 5%;
	}
}

@media (max-width: 768px){
	.icons {
		display: inline-flex;
	}
	
	#check:checked~.icons #menu-icon {
		display: none;
	}
	
	.icons #close-icon {
		display: none;
	}
	
	#check:checked~.icons #close-icon {
		display: block;
		
	}
	.navbar {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 0;
		background-color: rgba(70,70,70,0.4);
		-webkit-backdrop-filter: blur(15px);
		backdrop-filter: blur(15px);
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
		overflow: hidden;
		transition: .3s ease;
	}
	
	#check:checked~.navbar {
		height: 11rem;
	}
	
	.navbar a {
		display: block;
		font-size: 2rem;
		margin: .5rem 0;
		text-align: center;
		transform: translateY(-50px);
		transition: .3s ease;
	}
	
	#check:checked~.navbar a {
		transform: translateY(0);
		opacity: 1;
		transition-delay: calc(.15s * var(--i));
	}
	
@media (max-width: 390px){
	.icons {
		display: inline-flex;
	}
	
	#check:checked~.icons #menu-icon {
		display: none;
	}
	
	.icons #close-icon {
		display: none;
	}
	
	#check:checked~.icons #close-icon {
		display: block;
		
	}
	.navbar {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 0;
		background-color: rgba(70,70,70,0.4);
		backdrop-filter: blur(15px);
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
		overflow: hidden;
		transition: .3s ease;
	}
	
	#check:checked~.navbar {
		height: 11rem;
	}
	
	.navbar a {
		display: block;
		font-size: 1rem;
		margin: .5rem 0;
		text-align: center;
		transform: translateY(-50px);
		transition: .3s ease;
	}
	
	#check:checked~.navbar a {
		transform: translateY(0);
		opacity: 1;
		transition-delay: calc(.15s * var(--i));
	}
	}
}