*{
	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),rgba(0, 0, 0, 0.5)), url(../HTMLPictures/Cover.JPG);

	
} 
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: 2px 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{
	width: 92.5%;
	padding: 20px 50px;
	margin: auto;
	background: whitesmoke;
	overflow: auto;
	
}

.col2{
	margin: 15px;
	float: left;
	width: 30%;
	font-size: 25px;
}


.col3{
	margin: 15px;
	float: left;
	width: 780px;
	font-size: 20px;
}
.bar{
	width: 50%;
	height: 25vh;
	display: flex;
	background:transparent;
	align-items: center;
	justify-content: center;

}
.bar form{
	background:darkgrey;
	width:600px;
	height:50px;
	display:flex;
	border: 1px solid lightgray;
	border-radius: 2px;
	border-style: solid;

}
.bar form input{
	flex: 1;
	border: 1px solid lightgray;
	outline: none;

}
.bar form button{
	background:	#909090;
	padding: 10px 50px;
	border: none;
	outline: none;
	color: #000;
	letter-spacing: 1px;
	cursor: pointer;
}
.container{

	max-width: 1200px;
	padding: 20px 50px;
	margin: auto;
	background: #f2f2f2;
	overflow: auto;

}
.gallery{

	margin: 6px;
	
	 border-radius: 5px 10px 15px 30px/30px 15px 10px 5px;
	float: left;
	width: 388px;


}
.gallery img{
	width: 100%;
	height: 550px;
	border-radius: 5px 10px 15px 30px/30px 15px 10px 5px;

}
.description{
	padding: 15px;
	text-align: center;
	color: black;
	font-size: 25px ;


}