/* UNIVERSAL */

html,
body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	left: 0;
	top: 0;
	font-size: 100%;
	font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	color: #333447;
	line-height: 1.5;

}

/* ROOT FONT STYLES */

/* TYPOGRAPHY */

h1 {
	font-size: 2rem;
	margin-bottom: 0;
	color: #000;
}

h2 {
	font-size: 1.5rem;
	color: #000;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 1.375rem;
}

h4 {
	font-size: 1.125rem;
}

h5 {
	font-size: 1rem;
}

h6 {
	font-size: 0.875rem;
}

p {
	font-size: 1rem;
	line-height: 1.5;
	margin-top: 0;
	margin-bottom: 2rem;
}

.subtitle {
	color: #676767;
	margin-bottom: 3rem;
	font-size: 1.55rem;
}

.font-light {
	font-weight: 300;
}

.font-regular {
	font-weight: 400;
}

.font-heavy {
	font-weight: 700;
}

/* POSITIONING */

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.justify {
	text-align: justify;
}

/* ==== GRID SYSTEM ==== */

section {
	padding-top: 70px;
}

.container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.row {
	position: relative;
	width: 100%;
}

.row [class^="col"] {
	float: left;
	margin: 0 2%;
	min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	width: 96%;
}

.col-1-sm {
	width: 4.33%;
}

.col-2-sm {
	width: 12.66%;
}

.col-3-sm {
	width: 21%;
}

.col-4-sm {
	width: 29.33%;
}

.col-5-sm {
	width: 37.66%;
}

.col-6-sm {
	width: 46%;
}

.col-7-sm {
	width: 54.33%;
}

.col-8-sm {
	width: 62.66%;
}

.col-9-sm {
	width: 71%;
}

.col-10-sm {
	width: 79.33%;
}

.col-11-sm {
	width: 87.66%;
}

.col-12-sm {
	width: 96%;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
	display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
	.container {
		width: 80%;
	}
}

@media only screen and (min-width: 45em) {  /* 720px */
	.col-1 {
		width: 4.33%;
	}

	.col-2 {
		width: 12.66%;
	}

	.col-3 {
		width: 21%;
	}

	.col-4 {
		width: 29.33%;
	}

	.col-5 {
		width: 37.66%;
	}

	.col-6 {
		width: 46%;
	}

	.col-7 {
		width: 54.33%;
	}

	.col-8 {
		width: 62.66%;
	}

	.col-9 {
		width: 71%;
	}

	.col-10 {
		width: 79.33%;
	}

	.col-11 {
		width: 87.66%;
	}

	.col-12 {
		width: 96%;
	}

	.hidden-sm {
		display: block;
	}
}

@media only screen and (min-width: 60em) { /* 960px */
	.container {
		width: 75%;
		max-width: 60rem;
	}
}


.img-fluid {
	max-width: 100%;
	display: block
}

.img-full {
	width: 100%;
	display: block
}

.headline-text {
	font-size: 1rem;
	margin-bottom: 0.2rem;
	color: #676767;
	font-weight: bold;
}

.about-wrapper {
	padding: 3rem 2rem;
	background: #009d94;
	background: linear-gradient(90deg, rgba(0,157,148,1) 50%, rgba(1,55,99,1) 100%);
	color: #fff;
}

.about-wrapper h2 {
	color: #fff;
	font-size: 1rem;
	margin: 0;
}

.about-wrapper p:last-of-type {
	margin-bottom: 0;
}

.icon-col-wrapper {
	color: #525a69;
}

.icon-col-wrapper h3 {
	color: #00a096;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
}

.icon-col-wrapper p {
	font-size: .8rem;
	font-weight: normal;
}

.list-title {
	color: #000;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.list {
	list-style: none;
	padding-left: 0;
	position: relative;
	margin: 0;
}

.list li {
	padding-bottom: 1rem;
	color: #525a69;
}

.list li::before {
	content: '';  /* placeholder for the SVG */
	position: absolute;
	left: -35px;  /* place the SVG at the start of the padding */
	width: 25px;
	height: 25px;
	background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='25' height='25' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path fill='%2300a096' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}

.list li strong {
	color: #000;
}