*{
	margin: 0;
	padding: 0;
	
	font-family: 'poppins', sans-serif;
}
.header {
	min-height: 100vh;
	background-size: cover;
	background-image:linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(hiking\ full.jpg);
	background-position: center;
	background-size: cover;
	position: relative;

	
} 	
nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;

}

nav img{
	 width: 120px;
	  border-radius: 50% 20% / 10% 40%;
}
.nav-links{
	flex: 1;
	text-align: right ;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 0px 20px;
	position: relative;
}
.nav-links ul li a{
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #fff;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width: 100%;
}
.text-box{
	width: 100%;
	color: #fff;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 60px;
	padding-bottom: 10px;

}
.head-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px ;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.head-btn:hover{
	border: 1px solid #fff;
	background: #fff;
	transition: 1s;
	color: #000;

}

/* styling for contact form  */

.body{
	position: relative;
	min-height: 100vh;
	padding: 50px 100px;
	justify-content: center;
	display: block;
	align-items: center;
	flex-direction: column;
	background:linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 1.0)), url(hiking.jpg);
	background-size: cover;
}
.contact{
	max-width: 1200px;
	text-align: justify;
}
.contact h2{
	font-size: 36px;
	font-weight: 500;
	color: #fff;
}
.contact h3{
	font-size: 36px;
	font-weight: 500;
	color: #fff;
}
.contact p{
	
	font-weight: 300;
	color: #fff;
}
.container{
	width: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}
.contactinfo{
	width: 50%;
	display: flex;
	flex-direction: column;
}
.box{
	position: relative;
	padding: 20px 0;
	display: flex;

}
.icon{
	min-width: 50px;
	height: 50px;
	background: #fff;
	display: flex;
	justify-content: center;
	border-radius: 30%;
	font-size: 22px;

}
.text{
	display: flex;
	margin-left: 20px;
	font-size: 16px;
	color: #fff;
	flex-direction: column;
	font-weight:300;
}
.ContactForm{
	width: 50%;
	padding: 5%;
	background: #000000;
}
.ContactForm h2{
	font-size: 30px;
	color: #ffffff;
	font-weight: 500;
}
.inputbox{
	position: relative;
	width: 100%;
	margin-top: 10px;
}
.inputbox input{
	width: 100%;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #ffffff;
	outline: none;
}
.inputbox input textarea{
	width: 100%;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #ffffff;
	outline: none;
}
.inputbox span{
	position: absolute;
	left: 0;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	pointer-events: none;
	transition: 0.5s;
	color: #ff4d00;

}
.inputbox input[type="submit"]{
	width: 100px;
	background: #ff8000;
	color: #000000;
	border: none;
	cursor: pointer;
	padding: 10px;
	font-size: 18px;

}