*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
	text-decoration: none;
}
body{
	overflow-x: hidden;
}
.hero-header{
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background: #222;
}
.wrapper{
	width: 1280px;
	max-width: 95%;
	margin: 0 auto;f
	padding: 0 20px;
}
header{
	padding: 40px 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.logo{
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.logo i{
	height: 45px;
	width: 45px;
	background-color: #007ced;
	border-radius: 50%;
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
	padding: 10px;
	margin-right: 5px;
	cursor: pointer;
	text-align: center;

}
.logo .logo-text{
	font-size: 24px;
	font-weight: 500;
	color: #fff;
}
nav .togglebtn{
	width: 35px;
	height: 35px;
	position: absolute;
	top: 45px;
	right: 3%;
	z-index: 5;
	cursor: pointer;
	background-color: #007ced;
	display: none;
}
nav .togglebtn span{
	display: block;
	background-color: #077ced;
	margin: 5px 0px;
	width: 100%px;
	height: 3px;
	transition: 0.3s;
	transition-property: transform, opacity;

}
nav .navlinks{
	list-style-type: none;
}
nav .navlinks li{
	display: inline-block;
}
nav .navlinks li a{
	color: #e5e5e5;
	margin-right: 2.5rem;
}
.container{
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 4rem;
}

.container{
	width: 100%;
	height: 100vh;
	background: #222;
	display: flex;
	align-items: center;
	justify-content: center;	
}
form{
	background: #fff;
	display: flex;
	flex-direction: column;
	padding: 2vw 4vw;
	width: 90%;
	max-width: 600px;
	border-radius: 10px;
}
form h3{
	color: #555;
	font-weight: 800;
	margin-bottom: 20px;
}
form input, form textarea{
	border: 0;
	margin: 10px 0;
	padding: 20px;
	outline: none;
	background: #f5f5f5;
	font-size: 16px;
}
form button{
	padding: 15px;
	background: #ff5361;
	color: #fff;
	font-size: 18px;
	border: 0;
	outline: none;
	cursor: pointer;
	width: 150px;
	margin: 20px auto 0;
	border-radius: 30px;
}


