* {box-sizing: border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;}
body {
	margin: 0px;
}
a, p, h2, h3, h4, li {
	font-family: 'Source Sans Pro', sans-serif;
	color: #333;
	font-weight: 300;
	}
	p {
		font-size: 20px;
		margin-bottom: 20px;
		margin-top: 0px;
	}
a {
		text-decoration: none;
		color: #fff;}
img {
	max-width: 100%;
}
h2, h3 {
	text-transform: uppercase;
	margin-top: 0px;
	margin-bottom: 15px;
}
h2 {
	text-align: center;
	color: #4fb849;
	font-weight: 500;
}
h3 {
	text-align: center;
	color: #244292;
	font-weight: 500;
}
h3 strong {
	color: #4fb849;
}
.wrapper {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.wrapper::before, .wrapper::after {
	content: '';
	width: 150px;
	height: 200px;
	display: block;
	position: absolute;
	z-index: -1;
}
.wrapper::before {
	top: 0;
	left: 0;
	background-color: #4fb849;
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.wrapper::after {
	bottom: 0;
	right: 0;
	background-color: #244292;
	-webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.logo-title {
	text-align: center;
	margin-bottom: 50px;
	padding: 20px;
}
.text {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 10px;
}
@media screen and (max-width:750px) {
	.wrapper::before, .wrapper::after {
		display: none;
	}
	.wrapper {
		height: auto;
	}
}
