html, body {
  border: 0;
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  background: #e5ffe2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

form {
  background:#d4ffde;
  width: 100%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
  font-family: lato;
  position: relative;
  color: #333;
  border-radius: 10px;
  z-index:2;
}
form header {
  background: #008126;
  padding: 30px 20px;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}
form label {
  margin-left: 20px;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 5px;
  position: relative;
}
form label span {
  color: #FF3838;
  font-size: 2em;
  position: absolute;
  left: 2.3em;
  top: -10px;
}
form input {
  display: block;
  width: 78%;
  margin-left: 20px;
  padding: 5px 20px;
  font-size: 1em;
  border-radius: 3px;
  outline: none;
  border: 1px solid #ccc;
}
form .help {
  margin-left: 20px;
  font-size: 0.8em;
  color: #777;
}
form button {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: inherit;
  color: white;
  background:#1fb900;
  outline: none;
  border: none;
  padding: 5px 15px;
  font-size: 1.3em;
  font-weight: 400;
  border-radius: 3px;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
form button:hover {
  background: #35ff07;
  }
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');  
:root{
	--overlay-color:  #cbfeeb;
}
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
color: #fff;
}
.showcase{
		position: absolute;
		right: 0;
		width:	100%;
		min-height: 100vh;	
		padding: 100px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #111;
		color: #111;
		z-index:	2;	
		transition: 0.5s;
}
.showcase.active{
		right: 300px;
}
.showcase header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px 100px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
.logo{
	text-transform: uppercase;
	cursor: pointer;
	}
.toggle{
		position: relative;
		width:	60px;
		height: 60px;
		background: url('menu.png');
		background-repeat: no-repeat;
		background-size: 30px;
		background-position: center;
		cursor: pointer;	
}
.toggle.active{
	    background: url('closed.png');
		background-repeat: no-repeat;
		background-size: 25px;
		background-position: center;
}
.showcase video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

.overlay{
position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: var(--overlay-color);*/
}
.text{
	position: relative;
	z-index: 10;	
}
.text h2{
	font-size:	5em;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
}
.text h3{
	font-size:	4em;
	font-weight: 700;
	line-height: 1em;
	text-transform: uppercase;
}
.text p{
	font-size: 1.1em;
	margin: 20px 0;
	font-weight: 400;
	max-width: 700px;
}
.text a{
	display: inline-block;
	font-size: 1em;
	background: #8BC43E;
	padding: 10px 30px;
	text-decoration: none;
	color: #fff;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.2s;
	border-radius: 50%;
}
.text a:hover{
letter-spacing: 8px;
transform: scale(2) translateY(15px);	
}
.social{
	position: absolute;
	bottom: 20px;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
}
.social li{
	list-style: none;
}
.social li a {
	display: inline-block;
	filter: invert(1);
	margin-right: 20px;
	transform: scale(0.5);
	transition: 0.5;
}
.social li a:hover{
	transform: scale(0.5) translateY(15px);	
}
.menu{
		position: absolute;
		top: 0;
		right: 0;
		width: 300px;
		height: 100%;
		display:flex;
		align-items: center;
		justify-content: center;
}
.menu ul{
	position: relative;
	list-style: none;
}
.menu ul li a{
	text-decoration: none;
	font-size: 24px;
	color: #111;
}
.menu ul li a:hover{
	color: var(--overlay-color);
}
@media (max-width: 798px){
.showcase,
.showcase header{
	padding: 40 px;
}	
.text h2{
font-size: 3em;	
}
.text h3{
	font-size: 2em;
}	
}