@import url('https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&display=swap');
body
{
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: 'PT Sans Narrow', sans-serif;
}
.open
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 10000;
}
section
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(101, 209, 255);
	background: linear-gradient(207deg, rgb(159, 199, 214) 0%, rgb(255, 255, 255) 44%, rgba(159, 199, 214) 100%);
	display: grid;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.bannerText
{
	position: absolute;
	top: 50%;
	left: 15%;
	transform: translateY(-50%);
	max-width: 700px;
	text-align: justify;
}
.bannerText h2,
.bannerText h3
{
	position: relative;
	margin: 0;
	padding: 0;
	display: inline-block;
	transform-origin: left;
	text-transform: uppercase;
	transform: scaleX(0);
	animation: revealTextReverse 0.5s ease-in-out forwards;
}
.bannerText h2
{
	font-size: 6em;
	animation-delay: 1s;
	text-shadow: 7px 7px #0000;
}
.bannerText h3
{
	font-size: 3em;
	animation-delay: 1s;
	text-shadow: 7px 7px #0000;
}
.bannerText h2:before,
.bannerText h3:before
.bannerText h3:before
{
	animation-delay: 1s;
}
@keyframes revealText
{
	0%
	{
		transform: scaleX(1);
	}
	100%
	{
		transform: scaleX(0);
	}
}
@keyframes revealTextReverse
{
	0%
	{
		transform: scaleX(0);
	}
	100%
	{
		transform: scaleX(1);
	}
}
.bannerText p
{
	opacity: 0;
	font-weight: 400;
	font-size: 1.2em;
	animation: fadeIn 1s linear forwards;
	animation-delay: 1s;
	text-shadow: 5px 5px #0000;
}
@keyframes fadeIn
{
	0%
	{
		opacity: 0;
	}
	100%
	{
		opacity: 1;
	}
}
.bannerText a
{
	opacity: 0;
	display: inline-block;
	margin: 20px 0 0;
	padding: 10px 20px;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.2em;
	letter-spacing: 1px;
	animation: fadeInBottom 0.5s linear forwards;
	animation-delay: 1s;
	border-radius: 80px 80px 80px 80px;
	border: 3px solid #ffffff;
}
@keyframes fadeInBottom
{
	0%
	{
		transform: translateY(50px);
		opacity: 0;
	}
	100%
	{
		transform: translateY(0);
		opacity: 1;
	}
}
.bulb
{
	opacity: 0;
	position: absolute;
	right: 15%;
	top: 50%;
	transform: translateY(-50%);
	animation: fadeIn 1s linear forwards;
	animation-delay: 1s;
	z-index: 100;
	height: 400px;
	width: 150px;
}
.sci
{
	position: absolute;
	bottom: 15px;
	right: 30px;
	display: flex;
	flex-direction: column;
}
.sci li
{
	opacity: 0;
	list-style: none;
	padding: 10px 0;
	text-align: center;
	animation: fadeInBottom 0.5s linear forwards;
}
.header ul li:nth-child(1),
.sci li:nth-child(1)
{
	animation-delay: 1s;
}
.header ul li:nth-child(2),
.sci li:nth-child(2)
{
	animation-delay: 1s;
}
.header ul li:nth-child(3),
.sci li:nth-child(3)
{
	animation-delay: 1s;
}
.header ul li:nth-child(4),
.sci li:nth-child(4)
{
	animation-delay: 1s;
}
.header ul li:nth-child(5),
.sci li:nth-child(5)
{
	animation-delay: 1s;
}
.header ul li:nth-child(6),
.sci li:nth-child(6)
{
	animation-delay: 1s;
}
.sci li a
{
	font-size: 1.2em;
	color: #000;
}
.header
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 0 10%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}
.header .logo
{
	opacity: 0;
	margin: 0;
	padding: 0;
	font-size: 2em;
	text-transform: uppercase;
	animation: fadeIn 0.5s linear forwards;
	animation-delay: 1s;
}
.header ul
{
	margin: 0;
	padding: 0;
	z-index: 100;
	display: flex;
}
.header ul li
{
	opacity: 0;
	list-style: none;
	margin: 0 10px;
	animation: fadeIn 0.5s linear forwards;
	padding: 10px;
}
.header ul li:last-child
{
	margin-right: 0;
}
.header ul li a
{
	text-decoration: none;
	font-size: 1.2em;
	color: #000;
	padding: 5px 10px;
	letter-spacing: 2px;
}
.header ul li a.active,
.header ul li a:hover
{
	color: #fff;
	border-radius: 80px 80px 80px 80px;
	border: 3px solid #ffffff9e;
}
@keyframes fadeInRight
{
	0%
	{
		transform: translateX(150px);
		opacity: 0;
	}
	100%
	{
		transform: translateX(0);
		opacity: 1;
	}
}