* {
	padding:0;
	margin:0;
	font-family: "Manrope", sans-serif;
}

a {
	color:inherit;
	text-decoration: none;
}

header {
	height: 96px;
	width: 100%;
	position: fixed;
	top:0;
	left:0;
	transition: all 0.3s ease-in-out;
	z-index: 999;
	background-color: black;
}
header > .menu-logo {
	width: 25%;
	height: 100%;
	display: inline-block;
	margin-right: -5px;
	vertical-align: top;
	text-align: center;
}
header > .menu-logo > img {
	position: relative;
	height: 100%;
	transition: all 0.3s ease-in-out;
	padding: 16px;
	box-sizing: border-box;
}
header > .menu-list {
	position: fixed;
	right: 0;
	opacity: 0;
	top:0;
	z-index: -1;
	padding-top: 128px;
	padding-bottom: 32px;
	width: 100%;
	height: 100%;
	list-style: none;
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	color: white;
	letter-spacing: 2px;
	background-color: rgba(51,51,51,0.9);
	width: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
header.open > .menu-list {
	opacity: 1;
	width: 100%;
}
header > .menu-list > a {
	display: block;
	text-align: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0,0,0,0);
	transition: all 0.3s ease-in-out;
}
header > .menu-list > a:hover {
	border-bottom: 4px solid #ff3300;
	color: #ff3300;
}
header > .social-list {
	position: fixed;
	display: grid;
	grid-template-columns: repeat(3, 24px);
	gap: 12px;
	top: 38px;
	right: 96px;
	transition: top 0.3s ease-in-out;
}
header > .social-list > a {
	margin: 0 1px;
	display: inline-block;
}
header > .social-list > a > img {
	width: 100%;
}

/*MENU ICON*/
header > .menu-icon {
	position: absolute;
	top: 38px;
	right: 32px;
	width: 32px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}
header > .menu-icon:hover {
	cursor: pointer;
}
header > .menu-icon > span {
	position: absolute;
	left:0;
	width: 100%;
	height: 20%;
	background-color: white;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
}
header > .menu-icon.open > span:nth-child(1) {
	top:0px;
	left:0px;
}
header > .menu-icon > span:nth-child(2) {
	left: 0px;
	top: 40%;
}
header > .menu-icon > span:nth-child(3) {
	left: 0px;
	bottom: 0;
}
/*MENU OPEN*/
header > .menu-icon.open > span:nth-child(1) {
	left: -8px;
	-webkit-transform: rotate(135deg) translateY(-280%);
	transform: rotate(135deg) translateY(-280%);
}
header > .menu-icon.open > span:nth-child(2) {
	left: -16px;
	opacity: 0;
}
header > .menu-icon.open > span:nth-child(3) {
	left: -8px;
	-webkit-transform: rotate(-135deg) translateY(280%);
	transform: rotate(-135deg) translateY(280%);
}

/*SCROLLED*/
header.scrolled {
	height: 64px;
}
header.scrolled > .menu-icon {
	top:16px;
}
header.scrolled > .social-list {
	top: 22px;
}

/*MEDIA QUERY*/

@media (min-width: 1250px) {
	header > .menu-icon {
		display: none;
	}
	header > .menu-list {
		overflow: initial;
		opacity: 1;
		right: 250px;
		position: relative;
		transform: none;
		-webkit-transform: none;
		top:4px;
		padding-top: 0; 
		padding-bottom: 0;
		width: 75%;
		height: 100%;
		text-align: right;
		display: inline-block;
		vertical-align: top;
		font-size: 14px;
		background-color: rgba(0,0,0,0);
	}
	header > .menu-list > a {
		top: 26px;
		position: relative;
		display: inline-block;
		margin: 0 32px;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(0,0,0,0);
		transition: all 0.3s ease-in-out;
	}
	header.scrolled > .menu-list > a { 
		top:8px;
		padding-bottom: 16px;
	}
	header > .social-list {
		position: fixed;
		top: 38px;
		right: 64px;
	}

}

