@import url('https://fonts.googleapis.com/css2?family=Arsenal+SC:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Arsenal+SC', sans-serif;
}

.showcase {
	position: absolute;
	right: 0;
	width: 100%;
	min-height: 100vh;
	padding: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #111;
	color: #FFF;
	z-index: 2;
	transition: 0.5s;
}

.showcase.active {
	right: 450px;
}

.menu {
	position: absolute;
	top: 0;
	right: 0;
	width: 450px;
	height: 100%;
	line-height: 3em;
	display: flex;
	align-items: top;
	justify-content: center;
	text-decoration: none;
}

.menu ul {
	position: relative;
	list-style: none;
}

.menu ul li a {
	text-decoration: none;
	color:#8B00FF;
}

.menu ul li a:hover {
	color:#003EFF;
}

.showcase header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px 100px;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	text-transform: uppercase;

	
}

.toggle {
	position: relative;
	width: 115px;
	height: 103px;
	background: url('./FILES/IMAGES/menu.png');
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: center;
	cursor: pointer;
	z-index: 60;

}

.toggle.active {
	background: url('./FILES/IMAGES/close.png');
	background-repeat: no-repeat;
	background-size: 35px;
	background-position: center;
}

.showcase video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.overlay {
	
}

.text {
	position: absolute;
	top: 50;
	left: 0;
	width: 90%;
	padding: 40px 100px;
	z-index: 50;
	
}

.text h2{
	line-height: 2em;
}

.text h3{
	font-size: 1em;
	font-weight: 50;
	letter-spacing: .2em;
	line-height: 1.5em;
	
}

.text2 {
	position: absolute;
	top: 10;
	left: 0;
	width: 100%;
	padding: 40px 100px;

	letter-spacing: .1em;
	z-index: 51;
	
}

.text2 h2{
	line-height: 3em;
}

.text2 h3{
	font-size: 1.2em;
	font-weight: 80;
	letter-spacing: .1em;
	line-height: 1.4em;
	
}

