*{
	margin: 0;
	padding: 0;
    font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

.header{
	min-height: 50vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.1), rgba(4,9,30,0.1)), url(../Images/GalleryBackground.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: hidden
}

nav{
	position: fixed;
	width: 100%;
	line-height: 50px;
	z-index: 100;
}

nav ul{
	float: right;
	margin: 0;
	padding-right: 42px;
}

.logo{
	height: 48px;
	float: left;
	margin: 16px 18px;
}

nav.black{
	background: rgb(148, 171, 221);
}

.nav-links{
	flex: 1;
	text-align: right;
}

.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 16px 32px;
	position: relative;
}

.nav-links ul li a{
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #940e05;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after{
	width: 100%;
} 

.titleBox{
    background-color: transparent;
	height: 40%;
	width: 70%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.titleBox h1{
	font-size: 61px;
	font-weight: 600;
	padding-top: 15%;
}

.titleBox h3{
	font-size: 30px;
	color: #fff;
	font-weight: 600;
	line-height: 22px;
	padding: 10px;
}

.titleBox hr{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
	border: 1px solid #940e05;
}

.buttonBox{
	height: 7%;
	width: 40%;
	color: #fff;
	position: absolute;
	top: 88%;
	left: 50%;
	transform: translate(-50%, -50%);
	justify-content: space-between;
	text-align: center;
	display: flex;
}

.heroBtn{
	display: inline-block;
	text-decoration: none;
	color: black;
	border: 1px solid black;
	padding: 12px 34px;
	font-size: 13px;
	background: white;
	position: relative;
	cursor: pointer;
}

.heroBtn:hover{
	border: 1px solid #940e05;
	background: #940e05;
	transition: 0.5s;
}

nav .fa{
	display: none;
}

h1{
	font-size: 36px;
	font-weight: 600;
	text-align: center;
}

h3{
	color: #777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	text-align: center;
}

hr{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
	border: 1px solid #940e05;
}

/* -----Footer Section----- */

.footer{
	width: 100%;
	text-align: center;
	padding: 30px 0;
}

.icons .fa{
	color: #f44336;
	margin: 0 13px;
	cursor: pointer;
	padding: 18px 0;
}

.fa-copyright{
	color: #f44336;
}

 /* -----media query section----- */
 
@media(max-width: 700px){

	.titleBox{
		top: 40%;
	}

	.titleBox h1{
		font-size: 25px;
	}

	.titleBox h3{
		font-size: 12px;
	}

	hr{
		width: 64%;
	}

	.heroBtn{
		margin-top: 1.5%;
	}

	.nav-links ul li{
		display: block;
	}
	
	.nav-links{
		position: absolute;
		background: #3f3737;
		height: 100vh;
		width: 200px;
		top: -1000px;
		right: 0;
		text-align: left;
		z-index: 101;
		transition: 1s;
	}

	nav .fa{
		display: block;
		color: white;
		margin: 20px;
		font-size: 22px;
		cursor: pointer;
		text-align: right;
	}


	.nav-links ul li{
		padding: 0;
	}

}