/*--------------basic-------------------------------------------------------------------*/
*{
	padding: 0px;
	margin: 0px;
}

/*-----------------main----------------------------------------------------------------*/
.main{
	width: 100%;
	height: 700px;
	background-image: url(image/Hills.png);
	background-size: cover;
}
/*=====================top-nav============*/
.top_nav {
	display: flex;
}

.nav_menu{
	display: flex;
	width: 70%;
	align-items: center;
	justify-content: space-evenly;
}

.nav_menu>li {	
	list-style-type: none;	
}
.nav_menu>li>a{
	font-family: Montserrat;
	font-size: 1em;
	color: black;
	text-decoration: none;
	text-transform: capitalize;
}
.nav_menu>li>a:hover{
	color:yellowgreen;
	text-decoration: underline;
}
.nav_left {
	width: 15%;
}

.nav_left>img {
	width: 100%;
}

.nav_right {
	width: 15%;
	font-size: 18px;	
	text-transform: uppercase;
	color: #000000;
	font-weight: 800;
	font-family: Montserrat;
	text-align: right;
	box-sizing: border-box;
	padding-right: 20px;
}