/*Header Section*/
.header {
	background: url('../../assets/bg.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
}
.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}
.header .content {
	position: relative;
	z-index: 1;
}
.header .content * {
	text-align: center;
	color: white;
	text-shadow: 0px 4px 3px rgba(100,100,100,0.4),
             0px 8px 13px rgba(100,100,100,0.1),
             0px 18px 23px rgba(100,100,100,0.1);
}
.header .content .btn.btn-primary {
	background-color: #0B60B0;
	border-color: #0B60B0;
	border-radius: 0;
	color: white;
	padding: 12px 30px;
	text-transform: uppercase;
	text-shadow: none;
	font-weight: bold;
}