body {
	font-family: Montserrat;
	background-image: url(../img/body-background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
	color: #203D3F;
	font-weight: 600;
}

label {
	font-weight: bold;
}

.headline {
	font-size: 1.5em;
}

a {
	color: #666;
	text-decoration: none;
}

.btn-red {
	background-color: #B33237;
	color: #FFF;
	font-weight: 500;
}

.top-nav {
	background: rgba(221, 26, 50, 1);
	padding: 10px;
}

.top-nav ul {
	list-style: none;
	display: flex;
	justify-content: right;
	width: 100%;
	margin-bottom: 0;
	align-items: center;
}

.top-nav .nav-item {
	display: contents;
}

.top-nav ul li:not(:last-child) {
	margin-right: 20px;
}

.top-nav ul .nav-item:first-of-type::after {
	margin: 0 1em;
	content: '|';
	color: #FFF;
}
	
.top-nav .nav-link {
	color: #FFF;
}

nav {
	box-shadow: 0px 2px 8px 0px rgba(46, 46, 46, .5);
}

.nav-link {
	font-weight: 600;
}

.navbar-brand img {
	width: 200px;
}


main {
	margin-top: 50px;
}

main .header {
	margin-top: -50px;
	background: linear-gradient(
    to bottom,
    #D01B35 0%,
    #D01B35 45%,
    transparent 45%,
    transparent 100%
  );
}

.benefits {
	background: rgba(221, 26, 50, 1);
	padding: 20px 0;
	position: relative;
	margin-top: 20px;
	margin-bottom: 100px;
	color: #FFF;
}

.benefits h2 {
	color: #FFF;
	text-align: center;
}

.benefits:before {
	content: '';
	display: block;
	width: 100%;
	height: 20px;
	background-image: url(../img/red-bar.png);
	position: absolute;
	top: -20px;
}

.benefits:after {
	content: '';
	display: block;
	width: 100%;
	height: 20px;
	background-image: url(../img/red-bar.png);
	position: absolute;
	bottom: -15px;
}

.feature-card {
	border-radius: 12px;
	padding: 20px;
	background: #f8f9fa;
	height: 100%;
	transition: 0.2s ease;
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
	margin-bottom: 
}

.feature-content {
	width: 70%;
	float: left;
}

.feature-title {
	font-weight: 600;
	font-size: 1.3em;
	padding-bottom: 10px;
	border-bottom: 1px solid #D8D7DD;
}

.feature-image {
	width: 30%;
}

.feature-text {
	font-size: 0.9rem;
	color: #6c757d;
}

footer {
	margin-top: 50px;
}

footer .contact a:link {
	color: #FFF;
	text-decoration: none;
}

footer .contact {
	background: rgba(221, 26, 50, 1);
	padding: 1em;
	margin-bottom: 2.5em;
}

footer ul {
	list-style: none;
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 0;
}

footer .contact ul {
	color: #FFF;
	font-size: 2em;
}

footer ul li:not(:last-child)::after {
	margin: 0 1em;
	content: '|';
}

footer .contact i {
	margin-right: 10px;
}

footer .footer-links {
	margin: 50px 0;
}


@media (max-width: 991px) {
	main .header {
		background: linear-gradient(
			to bottom,
			#5F8B7E 0%,
			#5F8B7E 50%,
			transparent 50%,
			transparent 100%
		  );
	}
	footer .contact ul {
		display: block;
	}
	
	footer .contact ul li {
		text-align: center;
	}
	
	footer .contact ul li:not(:last-child)::after {
		content: unset;
	}
	
	footer ul {
		justify-content: space-evenly;
	}
	
	footer ul li:not(:last-child)::after {
		margin: 0 0.5em;
	}
}