@import url('https://fonts.googleapis.com/css?family=Poppins:400,700');

body {
	background: #ffffff;
	font-family: Poppins, Arial, sans-serif;
	font-size: 16px;
	color: #45464b;
	font-weight: 400;
	margin-bottom: 60px;
}
img {
	width:100%;
}
h1 {
	font-size: 72px;
	letter-spacing: -3px;
	font-weight: 700;
	margin-bottom: 0px;
}
h2 {
	font-size: 32px;
	text-align: center;
	font-weight: 700;
	letter-spacing: -0.5px
}
h4 {
	font-size: 14px;
	margin-top:0;
	color: #94979e;
}
/* Custom Elements */
.splash {
	/*background: #F67280;*/
	 background-image: linear-gradient(to right top, #f67280, #e97083, #dc6f84, #ce6d85, #c06c84);
	text-align: center;
	color: #ffffff;
	padding:10px 30px 60px 30px;
	line-height: 1.5;
}
.splash h2 span {
	background: #ffffff;
	color: #6C5B7B;
	padding: 5px 15px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.flex-grid {
	display:flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin:auto;
}
.flex-grid .flex-box {
    position: relative;
    margin: 15px;
    background: none;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    position: relative;
    width: 100%;
    min-width: 0;
    border-radius: 10px;
    text-align: center;
}
.cols-3 .flex-box {
    width: calc(100% / 3 - 30px);
}
.section-header, .section-footer {
	width: 100%;
	margin: 30px 0;
}
.section-footer {
	color: #94979e;
	text-align: center;
}
.image-wrapper {
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
	padding:15px;
	transition: all 0.5s ease;
}
.image-wrapper:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.supported {
	text-align: center;
	border-bottom: 1px solid #f1f1f1;
}
.supported img {
	width:100%;
	max-width: 860px;
}
@media (max-width:768px) {
	h1 {
		font-size: 60px;
	}
	.cols-3 .flex-box {
		width: 100%;
	}
}