* {
    font-family: 'Questrial',Helvetica,Arial,Lucida,sans-serif;
	box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
	color: #4f4f4f;
}

a {
	text-decoration: none;
}

.main {
	width: 100%;
	min-height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}


header {
	display: block;
	width: 100%;
	height: 90px;
	position: sticky;
	top: 0;
	background: white;
	z-index: 99;
	-webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
	box-shadow: 0 0 10px rgba(29,36,50,.1);
	transition: all 0.4s ease-in-out;
}

header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	height: 100%;
	margin: auto;
	padding: 5px 0;
	max-width: 1440px;
}

header .logo-container {
	margin-left: 32px;
	height: 95%
}

header .logo-container img#logo {
	height: 100%;
	width: auto;
}

header .homeLink a {
	cursor: pointer;
	font-size: 21px;
	color: rgba(0,0,0,0.6);
	line-height: 1em;
	font-weight: 600;
}





.section {
	margin: auto auto;
	position: relative;
	padding: 0 15px;
}

.section#promo-card .card-body {
	max-width: 1300px;
	margin: auto;
	padding: 40px;
	background: #bcd4d9;
	display: flex;
	box-sizing: border-box;
	border-radius: 16px;
}

.section-card {
	margin-bottom: 50px;
}

.section#promo-card {
	margin-bottom: 50px;
}


.section#promo-card img {
	margin-right: 40px;
	flex: 0 0 170px;
	width: 170px;
}

.section#promo-card .card_text {
	flex: 1;
	letter-spacing: 1px;
}

.section#promo-card .card_actions {
	flex: 0 0 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section#promo-card .card_actions a {
	font-size: 19px;
	padding: 1em 2em;
	background: #44a7c087;
}




footer {
	width: 100%;
	background: white;
	margin: auto auto 0;
}

footer .wrapper {
	width: 100%;
	/*background: #d5edef!important*/
}

footer .footer-section {
	border-top: 1px solid #eeeff1;
	padding: 15px;
}

footer .footer-section#copyright {
	padding: 50px 15px 40px;
}

footer #sponsor-logos {
	display: flex;
	justify-content: center;
}

footer #sponsor-logos .logo-container {
	width: 165px;
	margin: 0 20px;
}

footer #subtext {
	font-size: 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer #subtext #copyright-text {
	color: #abafb8;
	text-align: center;
}

footer #subtext nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 20px;
	font-size: 16px;
}

footer #subtext nav a {
	margin: 0 10px;
	color: #44a7c0;
}

footer #subtext #credits {
	margin-top: 20px;
	text-align: center;
	font-size: 16px;
}

footer #subtext #socials {
	display: flex;
	margin-top: 20px;
}

footer #subtext #socials .social-network {
	width: 50px;
	height: 50px;
	border: 1px solid #dddfe2;
	border-radius: 15px;
	margin: 0 10px;
	color: #69707f;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: .2s ease-in-out
}

footer #subtext #socials .social-network:hover {
	background-color: #f9fafa;
	border-color: #44a7c0;
}

@media (max-width: 1200px) {
	.section#promo-card .card-body {
		flex-wrap: wrap;
	}

	.section#promo-card img {
		order: 1;
	}

	.section#promo-card .card_text {
		flex: 0 1 calc(100% - 210px);
		order: 2;
	}
	
	.section#promo-card .card_actions {
		order: 2;
		margin-left: 210px;
		margin-top: 9px;
		flex: none;
	}

	.section#promo-card .card_actions a {
		font-size:16px!important;
	}
}

@media (max-width: 768px) {

	/*header*/
	header {
		height: 60px;
	}

	header .logo-container {
		margin-left: 0;
	}

	header .homeLink a {
		font-size: 15px;
	}



	/*content*/
	.section#promo-card .card-body {
		flex-direction: column;
		text-align: center;
		align-items: center;
		padding: 15px;
	}

	.section#promo-card img {
		order: 2;
		margin: 40px 0;
	}
	
	.section#promo-card .card_text {
		order: 1;
	}
	
	.section#promo-card .card_actions {
		order: 3;
		margin: 0;
	}




	/*footer*/
	footer #sponsor-logos .logo-container {
		margin: 0 5px;
		min-width: calc(100% / 4 - 5px);
	}

	footer .footer-section#copyright {
		padding: 30px 15px 20px;
	}

	footer #subtext {
		font-size: 16px;
	}

	footer #subtext nav {
		flex-direction: column;
		margin-top: 15px;
		margin-bottom: 5px;
	}

	footer #subtext nav a {
		margin-top: 8px;
	}

	footer #subtext #credits {
		font-size: 14px;
	}
}








@font-face{
	font-family: ETmodules;
	font-display: block;
	src: url(../fonts/modules.eot);
	src: url(../fonts/modules.eot?#iefix) format("embedded-opentype"),
		url(../fonts/modules.woff) format("woff"),
		url(../fonts/modules.ttf) format("truetype"),
		url(../fonts/modules.svg#ETmodules) format("svg");
	font-weight: 400;
	font-style: normal
}