* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--i-green: #4cc76d;
	--i-yellow: #f3c04f;
	--i-red: #e6557a;
	--i-blue: #6156ed;
	--i-d-blue: #1d1951;
	--i-grey-1: #f7f8f9;
	--i-grey-2: #ebecf0;
	--i-grey-3: #d7dae1;
	--i-grey-4: #abadb6;
	--i-grey-5: #434250;
}
html {
	min-height: 100%;
}
body {
	font-family: 'Cairo', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--i-grey-5);
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	background-image: url(../img/blob1.svg);
	background-position: 230% 55%;
	background-repeat: no-repeat;
	background-size: 137% auto;
	/*
	background-image: url(../img/blob1.svg), url(../img/ivm-horiz-thin.png);
	background-position: 230% 55%, right bottom;
	background-repeat: no-repeat, no-repeat;
	background-size: 137% auto, 221px auto;
	*/
}
h1, h2, h3, h4, h5, p {
	margin: 0;
	margin-bottom: 2em;
}
h1 {
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.5;
}
h2 {
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
}
p {
	line-height: 1.5;
	margin-bottom: 15px;
}
ul {
	list-style: square;
	padding-left: 30px;
	margin-bottom: 15px;
}
p + ul {
	margin-top: -5px;
}
a {
	color: var(--i-blue);
	transition:all .2s ease-in-out;
}
a, a:visited, a:focus {
	text-decoration: none;
	outline: 0;
}
a:hover, a:focus {
	text-decoration: none;
}
#content a:hover, #content a:focus {
	color: #fff;
	background: var(--i-blue);
}
#top {
	padding-top: 20px;
	padding-bottom: 15px;
	background: #fff;
	box-shadow: 0px 0px 50px -13px rgb(171 173 182);
	position: relative;
}
#top::before, #footer::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 5px;
	display: block;
	content: '';
	background-image: linear-gradient(90deg, var(--i-d-blue),var(--i-blue),var(--i-red),var(--i-yellow),var(--i-green));
}
#top .logo a {
	display: inline-block;
	text-decoration: none !important;
}
#top .logo img {
	display: block;
	max-height: 36px;
	width: auto;
}
.section_wrapper {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	position: relative;
}
#top .section_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.section {
	padding-top: 50px;
	padding-bottom: 50px;
}
#content .section:first-child {
	padding-top: 0;
}
.btn {
	display: inline-block;
	text-align: center;
	padding: 5px 10px;
	border-radius: 15px;
	line-height: 20px;
	min-width: 60px;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	transition:all .2s ease-in-out;
}
.btn:hover, .btn:focus {
	text-decoration: none;
}
.btn-blue {
	color: #fff;
	background: var(--i-blue);
}
.btn-blue:hover, .btn-blue:focus {
	color: #fff;
	background: var(--i-green);
}
.btn-red {
	color: var(--i-grey-5);
	background: var(--i-red);
}
.btn-red:hover, .btn-red:focus {
	color: #fff;
	background: var(--i-green);
}
.btn > img {
	display: inline-block;
	height: 20px;
	width: auto;
}
#hero h1 {
	text-align: center;
	margin: 1em 0;
}
.em {
	font-size: 1.25em;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.em, .em * {
	vertical-align: top;
}
.red {
	color: var(--i-red);
}
.green {
	color: var(--i-green);
}
.blue {
	color: var(--i-blue);
}
#content {
	flex-grow: 1;
	overflow: hidden;
	background:url(../img/ivm-horiz-thin.png) right bottom no-repeat;
}
#footer {
	color: var(--i-grey-1);
	background: var(--i-grey-5);
	padding-top: 30px;
	padding-bottom: 20px;
	position: relative;
}
@media screen and (min-width: 1280px) {
	.section_wrapper {
		max-width: 1270px;
	}
}
@media screen and (max-width: 1199px) {
	#content {
		background-size: 120px auto;
	}
}
@media screen and (max-width: 991px) {
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 20px;
	}
	#top .section_wrapper {
		flex-direction: column;
		align-items: center;
	}
	#top .logo {
		padding-bottom: 15px;
	}
	#top .logo img {
		max-height: 28px;
	}
	#hero h1 {
		margin: .5em 0;
	}
	.section {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}
@media screen and (max-width: 800px) {
	.mid-screen {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	body {
		background-size: 140% auto;
	}
}
@media screen and (max-width: 400px) {
	body {
		background-image: none;
	}
}