@import url('https://fonts.googleapis.com/css2?family=Poppins&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 80px;
	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: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .5s ease-in-out;
}

.hamburger
{
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 1px;
	transition: all .5s ease-in-out;
}

.hamburger:before,
.hamburger:after
{
	position: absolute;
	content: '';
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 1px;
	transition: all .5s ease-in-out;
}

.hamburger:before
{
	transform: translateY(-10px);
}

.hamburger:after
{
	transform: translateY(10px);
}

.banner.active header #toggle .hamburger
{
	background: transparent;
	box-shadow: none;
}

.banner.active header #toggle .hamburger:before
{
	transform: rotate(45deg);
}

.banner.active header #toggle .hamburger:after
{
	transform: rotate(-45deg);
}

.banner
{
	position: absolute;
	width: 100%;
	min-height: 100vh;
	padding: 100px;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	z-index: 2;
}

.banner.active
{
	transform: translateX(-400px);
}

#navigation
{
	position: fixed;
	top: 0;
	right: -200px;
	width: 400px;
	height: 100vh;
	background: #40c3ff;
	z-index: 1;
	display: grid;
	place-items: center;
	transition: 0.5s;
}

#navigation.active
{
	right: 0;
}

#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;
}

.sci
{
	position: absolute;
	display: flex;
	flex-direction: row;
	bottom: 20px;
	right: initial;
}

.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: 20px 0 0;
	margin: initial;
	margin-right: 20px;
}

.sci li a:hover
{
	font-size: 25px;
	background: #fff;
	transition: 0.5;
}

.sci li a i
{
	color: #fff;
	max-width: 20px;
	filter: invert(0);
	mix-blend-mode: difference;
	font-size: 20px;
}

@media (max-width: 767px)
{
	header
	{
		padding: 20px 30px;
	}
	
	header .logo
	{
		font-size: 1.6em;
		
	}
	
	.banner
	{
		padding: 100px 50px 100px;
		display: flex;
		flex-direction: column;
	}
	
	.banner.active
	{
		transform: translateX(-250px);
	}
	
	#navigation
	{
		width: 250px;
	}
	
	#navigation ul li a
	{
		font-size: 1.5em;
		margin: 5px 0;
	}
	
	
}

.container
{
	width: 100vw;
	padding: 20px;
}

.container .row100
{
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.container .row100 .col
{
	position: relative;
	width: 100%;
	padding: 0 10px;
	margin: 30px 0 10px;
	transition: 0.5s;
}

.container .row100 .inputBox
{
	position: relative;
	width: 100%;
	height: 40px;
	color: #fff;
}

.container .row100 .inputBox input,
.container .row100 .inputBox.textarea textarea
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
	box-shadow: none;
	border: none;
	outline: none;
	font-size: 18px;
	padding: 0 10px;
	z-index: 1;
	color: #FFFFFF;
}

.container .row100 .inputBox .text
{
	position: absolute;
	top: 0;
	left: 0;
	line-height: 40px;
	font-size: 18px;
	padding: 0 10px;
	display: block;
	transition: 0.5s;
	pointer-events: none;
}

.container .row100 .inputBox input:focus + .text,
.container .row100 .inputBox input:valid + .text
{
	top: -35px;
	left: -10px;
}

.container .row100 .inputBox .line
{
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
	height: 2px;
	background: #40c3ff;
	transition: 0.5s;
	border-radius: 2px;
	pointer-events: none;
}

.container .row100 .inputBox.textarea
{
	position: relative;
	width: 100%;
	height: 100px;
}

.container .row100 .inputBox.textarea textarea
{
	height: 100%;
	resize: none;
	
}

.container .row100 .inputBox textarea:focus + .text,
.container .row100 .inputBox textarea:valid + .text
{
	top: -35px;
	left: -10px;
}

input[type="submit"]
{
	border: none;
	padding: 7px 35px;
	outline: none;
	background: #40c3ff;
	color: #FFFFFF;
	font-size: 18px;
	border-radius: 2px;
	text-align: center;
}

input[type="text"]
{
	color: #fff;
}

#contact
{
	width: 100%;
	color: #40c3ff;
	text-align: center;
	font-size: 36px;
	margin-bottom: 10px;
}

.container p
{
	display: none;
	width: 100%;
	text-align: center;
	color: #fff;
}
