@charset "UTF-8";

body, html {
	height: 100%;
	margin: 0;
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	font-family: 'Source Sans 3', sans-serif;
}

.maintext {
	padding-left: 40px;
	padding-right: 40px;
}

.divider {
	flex-grow: 1;
}

.logo {
	padding-left: 40px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.subheader {
	font-size: 1.2em;
	color: #00AEEF;
}

.header {
	font-size: 3.6em;
	font-weight: 700;
	color: #2E3092;
}

.description {
	margin-top: 20px;
	font-size: 1.2em;
	color: #000000;
}

.footer {
	padding-right: 10px;
	margin-bottom: -5px;
	max-width: 1000px;
	align-content: center;
}

.col1 {
		max-width: 1000px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

.col2 {
	flex-grow: 1;
}

.col3 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.rightimage {
	width: 100%;
	display: flex;
	flex-direction: row;
}

.badges1 {
	width: 0px;
	overflow: hidden;
}

.badges2 {
	display: flex;
	flex-direction: row;
}

.badge {
	margin-left: 10px;
	margin-left: 10px
}

/* Tablet */
@media screen and (641px <= width <= 940px) {
	
	.col1 {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}
	
	.col2 {
		width: 0px;
		overflow: hidden;
	}
	
	.col3 {
		width: 0px;
		overflow: hidden;
	}
	
	.badges1 {
		width: auto;
		padding-left: 30px;
		padding-top: 40px;
		display: flex;
		flex-direction: row;
	}
}

/* Mobile */
@media screen and (0 <= width <= 640px) {
	
	.col1 {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}
	
	.col2 {
		width: 0px;
		overflow: hidden;
	}
	
	.col3 {
		width: 0px;
		overflow: hidden;
	}
	
	.subheader {
		font-size: 1.0em;
	}

	.header {
		font-size: 2.4em;
	}

	.description {
		margin-top: 14px;
		font-size: 1.0em;
	}
	
	.badges1 {
		width: auto;
		padding-left: 30px;
		padding-top: 40px;
		display: flex;
		flex-direction: row;
	}
}





