body {
	padding: 0;
	margin: 0;
	background: #eee;
}

/*--- navigation bar ---*/
.navbar {
	background:#0e5194;
}

.nav-link,
.navbar-brand {
	color: #fff;
	cursor: pointer;
	margin:0 !important;
	padding: 0px !important;
}

.nav-link {
	margin-right: 1em !important;
}

.nav-link:hover {
	color: #ffcc00;
}

.navbar-collapse {
	justify-content: flex-end;
}

/*--- header ---*/
.header {
	
	position: relative;
	height:350px;
}

.overlay {
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.7);
}

.description {
	left: 50%;
	position: absolute;
	top: 45%;
	transform: translate(-50%, -55%);
	text-align: center;
}
.description h1 {
	color: #7cfc00;
}
.description p {
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.5;
}

/*--- footer ---*/
.page-footer {
	background-color: #0e5194;
	color: #ccc;
	padding: 60px 0 30px;
}

.footer-copyright {
	color: #666;
	padding: 40px 0;
}

/*--- features ---*/

.features {
	margin: 1em auto;
	padding: 1em;
	position: relative;
}
.feature-title {
	color: #333;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.features img {
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	margin-bottom: 16px;
}


.card-body {
	//background-color:#000000;
	//color:white;
}

@media (max-width: 575.98px) {
	.description {
		left: 0;
		padding: 0 15px;
		position: absolute;
		top: 10%;
		transform: none;
		text-align: center;
	}

	.description h1 {
		font-size: 2em;
	}

	.description p {
		font-size: 1.2rem;
	}

	.features {
		margin: 0;
	}
}