*{
	margin: 0;
	padding: 0;
	font-family: 'poppins', sans-serif;
}

.header {
	min-height: 100vh;
	background-size: 100% 100%;
	background-image:linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.5)), url(hiking\ trekpage.jpg);


	
} 
nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;

}	
nav img{
    width: 120px;
    border-radius: 20% 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: 90%;
	color: #fff;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align:center;
}
.text-box h1{
	font-size: 45px;

}
.text-box p{
	font-size: 20px;
	padding-top: 5px;
	padding-bottom: 8px;
}

.head-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 8px 25px ;
	font-size: 14px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.head-btn:hover{
	border: 1px solid #fff;
	background: #fff;
	transition: 1s;
	color: #000;

}
/* body styling  */

.body{
	width: 92.5%;
	padding: 20px 50px;
	margin: auto;
	
	overflow: auto;
	
}

.col2{
	margin: 15px;
	float: left;
	width: 40%;
	font-size: 25px;
}
.col2 img{
	width: 400px;
	height: 500px;
	border-radius: 10px;
}
.col2 p{
	font-size: 20px;
	text-align: center;
margin-right:10%;
margin-top:2%;
}


.col3{
	font-size: 20px;
	margin-top:2%;
}
/* next 2 columns */

.body2{
	width: 92.5%;
	padding: 20px 50px;
	margin: auto;
	background: rgb(255, 255, 255);
	overflow: auto;
	
}

.col4{
	margin: 15px;
	font-size: 30px;
	text-align: center;
}


.col5{
	margin: 15px;
	float: right;
	font-size: 20px;
}

/* adding pictures */

.container{

	max-width: 1200px;
	height: auto;
	margin: auto;
	background: #ffffff;
	overflow: auto;

}
.gallery{

	margin: 5px;
	border: 0.5px solid grey;
	 border-radius: 5px 10px 15px 30px/30px 15px 10px 5px;
	float: left;
	width: 388px;


}
.gallery img{
	width: 100%;
	height: 400px;
	border-radius: 5px 10px 15px 30px/30px 15px 10px 5px;

}
.description{
	padding: 15px;
	text-align: center;
	color: black;
	font-size: 25px ;


}