body {
	background-color: #ededed;
	font-family: 'Open Sans';
	color: #333333;
	font-size: 16px;
	font-weight: 400;
}


/* types */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}

h1 {
	font-size: 1.875rem;
}

@media (min-width: 992px) {
	h1 {
		font-size: 2.5rem;
	}
}


/* Links */
a {
	color: #000;
	transition: 0.25s;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: #000;
	outline: 0;
	box-shadow: 0 none;
	text-decoration: none;
}

a[disabled="disabled"] {
	pointer-events: none;
	opacity: 0.75;
}
		
@media (min-width: 992px) {
	a:hover {
		color: #0e7e9b;
	}
}



.heading {
	position: relative;
	text-align: center;
	padding-bottom: 10px;
}

.heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	height: 1px;
	width: 50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 0;
	border-bottom: 3px solid #0e7e9b;
}

.heading h1 {
	display: inline-block;
}


/* Layout */
header {
	background-color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
}

header > .container {
	display: flex;
	align-items: center;
}

header .logo {
	width: 140px;
}

section {
	position: relative;
}


/* List style */
.list-dash {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.list-dash li {
	display: block;
	padding: 5px 0;
}

ul.list-dash li:before {
    font-family: FontAwesome;
    content: "\f068";
    margin-right: 10px;
    color: #0e7e9b;
    font-size: 10px;
}

@media (min-width: 768px) {
	ul.list-dash {
		display: flex;
		flex-wrap: wrap;
	}
	
	ul.list-dash li {
		width: 50%;
	}
}
