@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

*
{
	margin: 0
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins' sans-serif;
}
header
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%
	display: flex;
	justify-content: space-between;
	padding: 40px 100px;
	z-index: 10000;
	transition: 0.6s;
}
header .logo
{
	position: relative;
	font-weight: 700;
	color: #fff
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.6s;
}
header #toggle
{
	position: fixed;
	top: 10;
	right: 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
header #toggle:before
{
	content: '';
	position: absolute;
	top: 7px;
	width: 100%;
	height: 2px;
	background: #fff;
}
header #toggle:after
{
	content: '';
	position: absolute;
	bottom: 7px;
	width: 100%;
	height: 2px;
	background: #fff;
}
.banner.active header #toggle:before
{
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
 
}
.banner.active header #toggle:after
{
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
 
}
.banner
{
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 100px;
	background: url(Back1.jpg);
	background-size: auto;
	display: flex;
	align-items: center;
	z-index: 2;

}
.banner.active
{
	transform: translateX(-400px);
}
#navigation
{
	position: fixed;
	top: 0;
	right: 0px;
	width: 400px;
	height: 100vh;
	background: #40c3ff;
	z-index: 1;
	display: grid;
	place-items: center;
	transition: 0.7s; 

}
#navigation.active
{
	right: 0px;
}
#navigation ul
{
	position: relative;
	display: flex;
	flex-direction: column;
}
#navigation ul li
{
	list-style: none;

}
#navigation ul li a
{
	color: #fff;
	text-decoration: none;
	display: inline-block;
	font-size: 2em;
	font-weight: 600;
	text-transform: uppercase;
}
.content
{
	max-width: 600px;
}
.content h2 
{
	color: #fff;
	font-size: 2.35em;

}
.content h2 span
{
	color: #40c3ff;
	font-size: 1.2em;
}
.content p 
{
	font-size: 1.2em;
	color: #fff;
	font-weight: 300;
}
.content a
{
	position: relative;
	display: inline-block;
	margin-top: 20px;
	background: #fff;
	color: #000;
	padding: 10px 30px;
	text-decoration: none;
	font-size: 1.2em;
	font-weight: 500;
}
.sci
{
	position: absolute;
	display: flex;
	flex-direction: column;
	right: 100px;
}
.sci li 
{
	list-style: none;
}
.sci li a
{
	position: relative;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	text-decoration: none;
	border: 1px solid #fff;
	margin: 10px 0 0;
}
.sci li a:hover
{
	background: #fff;
}
.sci li a img
{
	max-width: 20px;
	filter: invert(1);
	mix-blend-mode: difference;
}
@media (max-width: 767px)
{
	header
	{
		padding: 20px 50px;
	}
	.banner
	{
		padding: 100px 50px 150px;
	}
	.banner h2
	{
		font-size: 1.8em;
	}
	.banner .content p,
	.banner .content a
	{
		font-size: 1em;
	}
	.banner.active
	{
		transform: translateX(-250px);
	}
	#navigation
	{
		width: 250px;
	}
	#navigation ul li a
	{
		font-size: 1.5em;
		margin: 5px 0;
	}
	.sci
	{
		position: absolute;
		bottom: 50px;
		right: initial;
		flex-direction: row;
	}
	.sci li a 
	{
		margin: initial;
		margin-right: 10px;
	}

}