.text-blue {
	color: #0579B8;
}

body {
	font-family: 'Open Sans', sans-serif;
	position: relative;
	font-weight: 400;
	line-height: 1.2;
	font-size: 32px;
	color: #000;
}

h1, h2, h3, h4, h5, .trueno {
	font-family: Trueno;
}

header {
	background: #0579B8;
	position: sticky;
	top: 0px;
	z-index: 2;
}

#header {
	/*max-width: 1000px;*/
	padding: 15px 92px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	min-height: 70px;
	box-sizing: border-box;
}

.uppercase {
	text-transform: uppercase;
}

.contact-link__wrap {
	display: flex;
}

#header #contact {
	font-size: 24px;
	color: #f8c21c;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
}


main #intro {
	text-align: center;
	padding: 75px 0px;
}

main #intro h1 {
	font-size: inherit;
	margin-bottom: 0px;
	margin-top: 0px;
}

main #intro #claim {
	font-size: 20px;
	margin-top: 10px;
}

main section {
	margin: 15px 0px;
	padding: 15px;
	max-width: 1000px;
	margin: 0 auto;
}

main #who-benefit .who-benefit_columns {
	color: #fff;
	margin-top: 35px;
	margin-bottom: 35px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

main .who-benefit_columns .col {
	padding: 15px;
	background: #0579B8;
	width: 325px;
	box-sizing: border-box;
}

main .who-benefit_columns .col .title {
	font: bold 18px "trueno";
	color: white;
}

main .who-benefit_columns .col li {
	margin-bottom: 15px;
}
main .who-benefit_columns .col ul {
	padding-left: 17px;
}

main #who-benefit {

}

main #who-benefit ul li:before {
	background-color: #fff;
}

main section h2 {
	font-size: 24px;
	text-transform: uppercase;
}

main section p,
main section ul,
main section ol {
	font-size: 18px;
}

main section ul li,
main section ol li {
	line-height: 1.2;
	padding: 3px 0px;
	position: relative;
}

main section ol,
main section ul {
	list-style: none;
}

main section ol {
	counter-reset: ol_counter;
}

main section ol li:before {
	counter-increment: ol_counter;
	content: counter(ol_counter);
	color: #0579B8;
	position: absolute;
	left: -20px;
	top: 1px;
	/*font-family: "Trueno";*/
	/*font-weight: bolder;*/
	font: normal 20px "Trueno";
	display: block;
}

main section ul.marker_tik li {
	margin-bottom: 15px;
}

main section ul.marker_tik li:before {
	content: '✔';
	display: block;
	position: absolute;
	background-color: transparent;
	width: auto;
	height: auto;
	left: -20px;
	top: 4px;
	color: #0579B8;
}

main section ul:not(.marker_tik) li:before {
	content: '';
	display: block;
	position: absolute;
	width: 6px;
	height: 6px;
	background-color: #0579B8;
	left: -15px;
	top: 11px;
}


main #use-cases li {
	margin-bottom: 30px;
}

main #what-is h2 {
	margin-bottom: 0px;
}

footer {
	background: #2b2f38;
	padding: 15px;
}

footer #contact-us {
	text-align: center;
	color: #fff;
	text-transform: uppercase;
}

footer #contact-us a {
	display: inline-block;
	padding: 10px 35px;
	background: #f8c21c;
	color: #2b2f38;
	font-weight: bold;
	font-family: "Trueno";
	text-decoration: none;
	border-radius: 10px;
}

footer #copy {
	max-width: 1295px;
	padding-left: 15px;
	padding-right: 15px;
	font: normal 18px "Trueno";
	float: none;
	margin: 50px auto 0px;
}


@media (max-width: 1024px) {

	body {
		font-size: 24px;
	}

	footer {
		padding: 15px;
	}

	#header {
		padding: 15px 15px;
		flex-direction: column;
	}

	.contact-link__wrap {
		margin-top: 10px;
	}

	main section:nth-of-type(even) {
		background: #f1f1f1
	}

	main #intro h1 {
		font-size: 32px;
	}

	main #intro #claim {
		margin-top: 15px;
	}

	main #who-benefit {
		padding: 15px;
		border-radius: 0px;
	}

	main #who-benefit .who-benefit_columns {
		flex-direction: column;
	}

	main .who-benefit_columns .col {
		width: 100%;
		margin-bottom: 15px;
	}

	main #who-benefit .who-benefit_columns .col:not(:last-child) {
		margin-bottom: 15px;
	}
}