html,
body {
	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: 100%;
	padding: 0px;
	margin: 0px;

	background: url(../images/background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 400;
	font-size: 100%;
	overflow-x: hidden;
}

h1,
h2,
h3 {
	font-weight: 500;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
}

h1 {
	font-size: 2.8rem;
	font-weight: 700;
}

h2 {
	color: #ffffff;
	padding-bottom: 10px;
}

h3 {
	font-size: 1rem;
	line-height: 1.5rem;
}

strong {
	color: #f1c11a;
	font-weight: 700;
}

a {
	color: #ffffff;
}

a:hover {
	color: #f1c11a;
	text-decoration: none;
}

a:visited {
	color: #ffffff;
	text-decoration: none;
}

/* home section */
#home {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	height: 100vh;
	color: #ffffff;
}

#home .home-thumb {
	text-align: center;
	background-color: rgba(0, 50, 120, 0.85);
	padding-bottom: 40px;
}

/* Mobile Responsive */
@media (max-width: 980px) {
	h1 {
		font-size: 2.4rem;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	h3 {
		font-size: 0.8rem;
		line-height: 1.3rem;
	}

	.container {
		width: 90%;
	}
}

@media (max-width: 700px) {
	#logo {
		width: 80%;
	}
}

@media (max-width: 470px) {
	h1 {
		font-size: 1rem;
	}

	h2 {
		font-size: 0.8rem;
	}

	h4 {
		font-size: 0.8rem;
	}

	#home .home-thumb {
		padding-bottom: 10px;
	}
}