#whatwedo {
	padding-bottom: 0;
}
#category {
	display: flex;
	flex-wrap: wrap;
}
#category>* {
	display: block;
	width: 50%;
	margin-bottom: var(--header-height);
	text-decoration: none;
}
#category img {
	width: 80px;
}
#category h5 {
	font-size: 1em;
	margin-top: 0.5em;
}
@media (min-width:641px) {
	#category>* {
		width: 25%;
		padding-left: var(--padding-lr);
		padding-right: var(--padding-lr);
	}
}
@media (min-width:801px) {
	#category img {
		width: 120px;
	}
	#category h5 {
		font-size: 1.2em;
	}
}


#schools {
	padding-top: 0;
}
#schools h3 {
	text-align: left;
}
#schools .logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	/*background-color: blue;*/
}
#schools .logos>figure {
	/*background-color: pink;*/
	width: 200px;
	margin: 0 20px 40px;
}
#schools .logos>figure img,
#schools .logos>figure div {
	display: block;
	max-width: 150px;
	height: 100px;
	margin: auto;
}
#schools .logos>figure figcaption {
	font-size: 0.8em;
	line-height: 1.25em;
	opacity: 0.5;
	margin-top: 1em;
	display: none;
}
@media (min-width:901px) {
	#schools .desc {
		width: 30%;
		float: left;
		/*background-color: red;*/
	}
	#schools .logos {
		width: 70%;
		float: right;
	}
}
#schools .desc,
#schools .logos,
#schools hr {
	margin-bottom: var(--header-height);
}

#success-story {
	margin-top: -15em;
	padding-top: 15em;
	padding-bottom: 0;
}

#videos {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#videos>* {
	display: block;
	width: 60%;
	max-width: 300px;
	padding: 0 var(--padding-lr);
	margin: 0 auto var(--header-height) auto;
	overflow: hidden;
}
#videos a.photo {
	display: block;
	position: relative;
	z-index: 0;
}
#videos a.photo::before {
	content: "";
	display: block;
	background: url(/images/icon-play.svg) center center no-repeat;
	background-size: 48px !important;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: 0.3s;
}
#videos a.photo img {
	border-radius: 50%;
}
#videos a:hover.photo::before {
	opacity: 0.8;
}
#videos a.caption {
	line-height: 1.25em;
	margin-top: 1em;
	display: block;
	color: var(--text-color);
	text-decoration: none;
}
@media (min-width:641px) {
	#videos>* {
		width: 28%;
	}
}

#mainvideo {
	display: none;
	/*background-color: yellow;*/
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	border: none;
	margin: 0;
	padding: 0;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}
#mainvideo iframe {
	border: none;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
#closevideobtn {
	display: block;
	position: absolute;
	top: var(--padding-lr);
	right: var(--padding-lr);
	color: #fff;
	width: 24px;
	height: 24px;
	font-size: 0;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	opacity: 0.8;
	overflow: hidden; /* prevent scrollbar */
	z-index: 201; /* pop z-index is 200. This is to ensure the button always visible */
	-webkit-transform: translate3d(0,0,0); /* Safari z-index order fix */
	
}
#closevideobtn::after {
	font-family: KYD;
	content: "\0042"; /* x */
	font-size: 24px;
	}




#cards {
	/*background-color: yellow;*/
}
#cards a.thumbnail {
	display: block;
	max-width: 360px;
	margin: auto auto 2em;
}
#cards div.message {
	/*color: #fff;*/
	/*font-style: italic;*/
	font-size: 1.2em;
	
}
#cards>* {
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	padding: var(--header-height) 0;
}
@media (min-width:801px) {
	#cards a.thumbnail {
		width: 33.3333%;
		float: left;
	}
	#cards div.message {
		width: 66.6666%;
		float: right;
		padding-left: var(--padding-lr);
	}
}


