.home-body {
	/*background-color: rgba(255, 204, 153, 0.5);*/
}

.home-section {
	margin-bottom: 30px;
}

.home-section-title {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	
	margin-bottom: 1em;
}
.home-section-title h2 {
	color: #fff;
	font-size: 24px;
	letter-spacing: 1.5px;
	line-height: 24px;
	/*height: 24px;*/
	margin: 0 1em;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
}
.home-section-title::before, .home-section-title::after {
	content: " ";
	
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	flex-grow: 1;
	height: 12px;
}

.home-card {
	display: flex;
	flex-direction: column;
	
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .15);
	margin-bottom: 15px;
	overflow: hidden;
}
.home-card-image-top, .home-card-video-top {
	border-radius: 3px 3px 0 0;
}
.home-card-image, .home-card-image-top {
	display: block;
	background-color: #3d3d3d;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: auto;
	max-width: 100%;
}
.home-card-image[data-url], .home-card-image-top[data-url] {
	cursor: pointer;
}
.home-card-features {
	background-color: #394e5f;
}
.home-card-features .home-card-image, .home-card-features .home-card-image-top {
	background-image: url(../images/features_default.jpg);
	/*opacity: .8;*/
	box-shadow: 0 0 150px rgba(0, 0, 0, .5) inset;
}
.home-card-video, .home-card-video-top {
	background-color: #3d3d3d;
}
.home-card-block {
	padding: 20px;
	/*border-radius: 3px;*/
}
.home-card-features .home-card-block {
	background-color: #fff;
}
.home-card-meta {
	color: #75797c;
	font-size: 14px;
	font-weight: 300;
	line-height: 18px;
	margin: 0;
	margin-bottom: 10px;
}
.home-card-title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	margin: 0;
	margin-bottom: 13px;
}
.home-card-title a:link, .home-card-title a:visited {
	color: #3d3d3d;
}
.home-card-title a:hover, .home-card-title a:active, .home-card-title a:focus {
	color: #547ea2;
	text-decoration: none;
}
/*.home-card-title::after {
	content: '';
	display: block;
	
	background-color: #3d3d3d;
	height: 3px;
	margin-top: 10px;
	width: 33%;
	
	transition: background-color .2s, color .2s;
}*/
.home-card-title:hover::after {
	background-color: #547ea2;
}
.home-card-text {
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
	margin: 0;
	margin-bottom: 20px;
	word-break: break-word;
}
@media only screen and (min-width : 768px) {
	.home-card-features .home-card-text {}
}

.home-card-btn-group {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 -5px 0 -5px;
}
.home-card-btn-group .home-card-btn, .home-card-btn-group .home-card-alt-btn {
	flex-grow: 1;
	margin: 5px;
}
@media only screen and (min-width : 768px) {
	.home-card-btn-group {
		margin: 0 -15px 0 -15px;
	}
	.home-card-btn-group .home-card-btn, .home-card-btn-group .home-card-alt-btn {
		margin: 15px;
	}
	
}
.home-card-btn, .home-card-alt-btn {
	border: 1px solid #d8d8d8;
	border-radius: 2px;
	font-size: 18px;
	font-weight: normal;
	height: 50px;
	line-height: 50px;
	padding: 0 26px;
	text-transform: uppercase;
}
a.home-card-btn, a.home-card-btn:link, a.home-card-btn:visited {
	background-color: #ebebeb;
	/*border-color: #d8d8d8;*/
	color: #3d3d3d;
}
a.home-card-btn:hover, a.home-card-btn:active, a.home-card-btn:focus {
	background-color: #394e5f;
	border-color: #394e5f;
	color: #fff;
	text-decoration: none;
}

a.home-card-alt-btn, a.home-card-alt-btn:link, a.home-card-alt-btn:visited {
	background-color: #394e5f;
	border: 1px solid #394e5f;
	color: #fff;
	font-size: 16px;
	height: 42px;
	line-height: 42px;
	padding: 0 22px;
	text-transform: none;
}
a.home-card-alt-btn:hover, a.home-card-alt-btn:active, a.home-card-alt-btn:focus {
	background-color: #ebebeb;
	border-color: #ccc;
	color: #3d3d3d;
	text-decoration: none;
}

@media only screen and (min-width : 768px) {
	.home-cards-columns {
		display: flex;
		align-content: space-between;
		margin: 0 -10px;
	}
	.home-cards-columns>.home-card {
		margin: 0 10px;
	}
}


/*
Big Feature:
copy:   two column  except in mobile size.
*/

.home-card-features .home-card-block {
	padding: 30px 20px;
}
@media only screen and (min-width : 768px) {
	.home-card-features .home-card-block {
		padding: 30px 40px;
	}
}
.home-card-features .home-card-meta {
	font-size: 18px;
	line-height: 22px;
	text-align: right;
}
.home-card-features .home-card-title {
	font-size: 28px;
	font-weight: 900;
	line-height: 36px;
}
@media (min-width: 768px) {
	.home-card-features .home-card-title {
		text-align: right;
	}
}

.home-card-play-btn {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;

	background-image: url('../images/btn-play.png');
	background-repeat: no-repeat;
	background-size: 100px;
	background-position: center;
	cursor: pointer;
	display: block;
	opacity: .65;
}
.home-card-play-btn:hover {
	opacity: .9;
}
.home-card-play-btn img {
	height: auto;
	max-width: 100%;
}
@media (min-width: 480px) {
	.home-section-news .home-card-play-btn {
		background-size: 75px;
	}
}



#feature-carousel-next, #feature-carousel-prev {
	position: absolute;
	top: 0;
	z-index: 1;
	
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	height: 203px;
	opacity: .5;
	width: 40px;
}
@media (min-width: 400px) { #feature-carousel-next, #feature-carousel-prev { height: 262px; } }
@media (min-width: 500px) { #feature-carousel-next, #feature-carousel-prev { height: 329px; } }
@media (min-width: 600px) { #feature-carousel-next, #feature-carousel-prev { height: 396px; } }
@media (min-width: 700px) { #feature-carousel-next, #feature-carousel-prev { height: 462px; } }
@media (min-width: 800px) { #feature-carousel-next, #feature-carousel-prev { height: 529px; } }
@media (min-width: 900px) { #feature-carousel-next, #feature-carousel-prev { height: 596px; } }
@media (min-width: 992px) {
	#feature-carousel-next, #feature-carousel-prev {
		height: 620px;
	}
}
#feature-carousel-next {
	right: 0;
	background-image: url(../images/carousel_arrow_next.png);
}
#feature-carousel-prev {
	left: 0;
	background-image: url(../images/carousel_arrow_prev.png);
}
#feature-carousel-next:hover, #feature-carousel-prev:hover {
	opacity: 1;
}
@media (min-width: 768px) {
	#feature-carousel-next, #feature-carousel-prev {
		width: 60px;
	}
}

.owl-carousel.owl-theme .owl-controls {
	display: none;
	margin: 0;
}
.owl-theme .owl-controls .owl-pagination {
	position: absolute;
	top: 320px;
	right: 0;
	left: 0;

	display: none;
	margin: 0;
}
@media (min-width: 768px) {
	.owl-theme .owl-controls .owl-pagination {
		display: block;
	}

}
.owl-theme .owl-controls .owl-pagination {
	height: 70px;
}
.owl-theme .owl-controls .owl-pagination .owl-page {
	position: relative;
}
.owl-theme .owl-controls .owl-pagination .owl-page span {
	background-color: #ebebeb;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border: 0;
	border-radius: 0;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, .25);
	display: block;
	height: 70px;
	margin: 0 5px;
	opacity: 1;
	width: 70px;
}
.owl-theme .owl-controls .owl-pagination .owl-page span::after {
	content: " ";
	position: absolute;
	right: 5px;
	bottom: 0;
	left: 5px;

	background-color: #da0000;
	height: 5px;
	opacity: .65;
}
.owl-theme .owl-controls .owl-pagination .owl-page:hover span::after, .owl-theme .owl-controls .owl-pagination .owl-page.active span::after {
	content: " ";
	position: absolute;
	top: 0;
	right: 5px;
	bottom: 0;
	left: 5px;

	height: auto;
}

#feature-carousel-progress-bar {
	background-color: #ffba00;
	border-radius: 3px 0 0 0;
	height: 10px;
	max-width: 100%;
	width: 0%;
}
#feature-carousel-progress {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;

	background-color: #394e5f;
	border-radius: 3px 3px 0 0;
	z-index: 5;
}

/* LISTENING TOUR */
.home-card-tour-stops {
	background-image: url('../images/listening-tour_bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	
	color: #fff;
	/*min-height: 90px;*/
}
.home-card-tour-stops .home-card-block {
	padding: 0;
}
.home-card-tour-stops a {
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-size: 28px;
	font-style: italic;
	font-weight: 300;
	height: 90px;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}
.home-card-tour-stops a {
	color: #fff;
}
.home-card-tour-stops a:hover, .home-card-tour-stops a:focus {
	color: #fff;
	text-decoration: none;
}
.home-card-tour-stops a span.icon-pin {
	background-image: url('../images/listening-tour-pin.gif');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 32px;
	height: 90px;
	width: 40px;
}
.home-card-tour-stops a strong {
	/*font-style: normal;*/
	font-weight: 900;
	padding: 0 5px;
}
.home-card-tour-stops a::after {
	display: none;
}

/* GRANTS MAP */
.home-card-grants {
	background-image: url('../images/bgkansasgrants.jpg');
}

/* SUBSCRIBE */
.home-card-subscribe {
	background: #f8dc93 url('../images/icon_newsletter.png') no-repeat 0 20px;
	color: #fff;
	min-height: 90px;
}
.home-card-subscribe h3 {
	font-size: 28px;
	font-style: italic;
	font-weight: 300;
	margin: 0;
	padding: 0 0 20px 40px;
}
.home-card-subscribe h3 strong {
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}
.home-card-subscribe h3::after {
	display: none;
}
.home-card-subscribe form {
	position: relative;
	
	display: block;
	height: 50px;
	margin: 0;
	padding: 0;
}
.home-card-subscribe label {
	display: none;
}
.home-card-subscribe input {
	border: 0;
	height: 50px;
	line-height: 50px;
}
.home-card-subscribe .subscribe-btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	
	background: transparent url('../images/carat_newsletter.png') no-repeat center center;
	border: 0;
	border-radius: 0 3px 3px 0;
	text-indent: -9999px;
	width: 38px;
}
@media only screen and (min-width : 860px) {
	.home-card-subscribe .home-card-block {
		display: flex;
		flex-direction: row;
		align-items: center;
		padding-left: 60px;
	}
	.home-card-subscribe .home-card-block h3, .home-card-subscribe .home-card-block form {
		flex-grow: 1;
		flex-basis: 0%;
	}
	.home-card-subscribe .home-card-block h3 {
		padding: 0;
	}
}


/* TWITTER */
.home-card-twitter {
	background-color: #394e5f;
	color: #fff;
}
.home-card-twitter .home-card-head {
	/*background: #1e9ed4;*/
	/*border-bottom: 1px solid rgba(255, 255, 255, .35);*/
	/*height: 85px;*/
	padding: 15px 40px 0;
	text-align: center;
}
.home-card-twitter .home-card-head h3 {
	border-bottom: 1px solid rgba(255, 255, 255, .35);
	color: #fff;
	font-size: 24px;
	font-weight: 900;
	line-height: 70px;
	margin: 0;
}
.home-card-twitter .home-card-head a {
	display: inline-block;
	line-height: 22px;
}
.home-card-twitter .home-card-head h3 small {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 700;
	opacity: .65;
}
@media (min-width: 580px) {
	.home-card-twitter .home-card-head {
		padding-top: 10px;
	}
	.home-card-twitter .home-card-head a {
		background: transparent url('../images/icon_tweet.png') no-repeat 0 50%;
		padding: 0 40px;
	}
	.home-card-twitter .home-card-head h3 small {
		display: inline-block;
	}
}
.home-card-twitter .home-card-head h3 a, .home-card-twitter .home-card-head h3 a:link, .home-card-twitter .home-card-head h3 a:visited {
	color: #fff;
}
.home-card-twitter .home-card-head h3 a:hover, .home-card-twitter .home-card-head h3 a:active, .home-card-twitter .home-card-head h3 a:focus {
	color: #fff;
	text-decoration: none;
}
.home-card-twitter .home-card-head h3 a small, .home-card-twitter .home-card-head h3 a:link small, .home-card-twitter .home-card-head h3 a:visited small {
	opacity: .65;
}
.home-card-twitter .home-card-head h3 a:hover small, .home-card-twitter .home-card-head h3 a:active small, .home-card-twitter .home-card-head h3 a:focus small {
	opacity: 1;
	text-decoration: underline;
}
.home-card-twitter .home-card-block {
	padding: 0 40px 30px;
}
.home-card-tweet {
	border-bottom: 1px dashed rgba(255, 255, 255, .35);
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}
.home-card-tweet:last-of-type {
	border-bottom-width: 0;
}
@media (min-width: 768px) {
	.home-card-tweet {
		border-right: 1px dashed rgba(255, 255, 255, .35);
		border-bottom-width: 0;
		float: left;
		margin: 40px 0;
		padding: 0 20px;
		width: 33.333%;
	}
	.home-card-tweet:last-of-type {
		border-right-width: 0;
	}
}
.home-card-tweet a, .home-card-tweet a:link, .home-card-tweet a:visited {
	color: #fff;
}
.home-card-tweet a:hover, .home-card-tweet a:active, .home-card-tweet a:focus {
	color: #fff;
	text-decoration: underline;
}
.home-card-twitter .home-card-btn {
	display: flex;
	justify-content: center;

	clear: both;
	height: 60px;
	line-height: 60px;
	margin-top: 20px;
	text-transform: uppercase;
}
.home-card-twitter a.home-card-btn, .home-card-twitter a.home-card-btn:link, .home-card-twitter a.home-card-btn:visited {
	background-color: #fff;
	color: #394e5f;
}
.home-card-twitter a.home-card-btn:hover, .home-card-twitter a.home-card-btn:active, .home-card-twitter a.home-card-btn:focus {
	background-color: #e6f8ff;
	color: #394e5f;
	text-decoration: none;
}
.home-card-twitter .home-card-btn .icon {
	display: inline-block;
	background: url('../images/share_icon_twitter.png') no-repeat center center;
	margin-right: 5px;
	min-height: 24px;
	min-width: 24px;
}

.home-card-disclaimer {
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
	margin-left: 20px;
	margin-right: 20px;
	padding: 20px;
	word-break: break-word;
}

/* how can i help? */
.how-can-i-help {
	margin-bottom: 27px;
}
.how-can-i-help .help-title {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	
	margin-bottom: 1em;
}
.how-can-i-help .help-title h2 {
	color: #fff;
	font-size: 24px;
	letter-spacing: 1.5px;
	line-height: 24px;
	margin: 0 1em;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
}
.how-can-i-help .help-title::before, .how-can-i-help .help-title::after {
	content: " ";
	
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	flex-grow: 1;
	height: 12px;
}

.how-can-i-help .help-items {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
}
.how-can-i-help .help-items .help-item {
	position: relative;
	max-width: 150px;
	width: 32.33%;
	
	margin-bottom: 5px;
}
@media only screen and (min-width : 650px) {
	.how-can-i-help .help-items .help-item {
		width: 16%;
	}
}
.how-can-i-help .help-items .help-item::before{
	content:" ";
	
	display:block;
	padding-top:100%;
}
.how-can-i-help .help-items .help-item a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	background-color: rgba(0, 0, 0, .4);
	background-repeat: no-repeat;
	background-position: 50% 40%;
	/*border: 1px solid rgba(255, 255, 255, .35);*/
	border-width: 0;
	border-radius: 1px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	overflow: hidden;
	padding: 69% 10% 10%;
	text-align: center;
}
.how-can-i-help .help-items .help-item a, .how-can-i-help .help-items .help-item a:link, .how-can-i-help .help-items .help-item a:visited {
	color: #fff;
}
.how-can-i-help .help-items .help-item a:hover, .how-can-i-help .help-items .help-item a:active, .how-can-i-help .help-items .help-item a:focus {
	background-color: rgba(0, 0, 0, .6);
	color: #fff;
	text-decoration: none;
}
.email-me-help-item a { background-image: url('../images/service_email_me.png'); }
.assistance-help-item a { background-image: url('../images/service_assistance.png'); }
.flags-help-item a { background-image: url('../images/service_flags.png'); }
.tours-help-item a { background-image: url('../images/service_tours.png'); }
.meetings-help-item a { background-image: url('../images/service_meetings.png'); }
.students-help-item a { background-image: url('../images/service_students.png'); }

@media only screen and (max-width : 991px) {
	.how-can-i-help .help-items .help-item a .abbrev { display: none; }
}

/* MAP */
.home-card-map {
	position: relative;
}
.home-card-map .home-card-head {
	/*background-color: red;*/
}
.home-card-map .map-index {
	background-color: #f8dc93;
}

.home-card-map .location-label {
	color: #11253e;
	cursor: pointer;
	font-style: normal;
	font-weight: bold;
	padding: 20px;
	transition: background-color .2s, color .2s;
}
.home-card-map .location-label:hover, .home-card-map .location-label:focus {
	background-color: rgba(0, 0, 0, 0.15);
}
.home-card-map[data-location='washington-dc'] .location-label-washington-dc { background-color: rgba(0, 0, 0, 0.2); }
.home-card-map[data-location='hays'] .location-label-hays { background-color: rgba(0, 0, 0, 0.2); }
.home-card-map[data-location='manhattan'] .location-label-manhattan { background-color: rgba(0, 0, 0, 0.2); }
.home-card-map[data-location='pittsburg'] .location-label-pittsburg { background-color: rgba(0, 0, 0, 0.2); }
.home-card-map[data-location='wichita'] .location-label-wichita { background-color: rgba(0, 0, 0, 0.2); }
.home-card-map[data-location='olathe'] .location-label-olathe { background-color: rgba(0, 0, 0, 0.2); }
.home-card-map[data-location='garden-city'] .location-label-garden-city { background-color: rgba(0, 0, 0, 0.2); }

.home-card-map .location-info {
	display: none;
	
	background-color: #fff;
	padding: 20px;
	transition: background-color .2s, color .2s;
}
.home-card-map .location-info .info-title {
	display: inline-block;
	
	border-bottom: 2px solid #0067c4;
	font-weight: bold;
	padding: 0px 30px 8px 0;
}
.home-card-map .location-info .info-spacer {
	margin-top: 10px;
}

.home-card-map .map-detail { display: none; }

.home-card-map .location-map {
	display: block;
	
	background-image: url('../images/map.jpg');
	background-repeat: no-repeat;
	background-position: top center;
	height: 350px;
	margin: 0 auto;
	width: 650px;
}

.home-card-map .location-map-update {
	display: block;
	
	background-image: url('../images/map10.jpg');
	background-repeat: no-repeat;
	background-position: top center;
	height: 350px;
	margin: 0 auto;
	width: 650px;
}

.home-card-map[data-location='washington-dc'] .location-info-washington-dc { display: block; }
.home-card-map[data-location='hays'] .location-info-hays { display: block; }
.home-card-map[data-location='manhattan'] .location-info-manhattan { display: block; }
.home-card-map[data-location='pittsburg'] .location-info-pittsburg { display: block; }
.home-card-map[data-location='wichita'] .location-info-wichita { display: block; }
.home-card-map[data-location='olathe'] .location-info-olathe { display: block; }
.home-card-map[data-location='garden-city'] .location-info-garden-city { display: block; }

/*.home-section-map .home-card-map[data-highlight-location='hays'] .location-map { background-position: 0px -350px; }
.home-section-map .home-card-map[data-highlight-location='manhattan'] .location-map { background-position: 0px -1050px; }
.home-section-map .home-card-map[data-highlight-location='pittsburg'] .location-map { background-position: 0px -1750px; }
.home-section-map .home-card-map[data-highlight-location='wichita'] .location-map { background-position: 0px -700px; }
.home-section-map .home-card-map[data-highlight-location='olathe'] .location-map { background-position: 0px -1400px; }*/

.home-card-map[data-location='hays'] .location-map { background-position: 0px -350px; }
.home-card-map[data-location='manhattan'] .location-map { background-position: 0px -1050px; }
.home-card-map[data-location='pittsburg'] .location-map { background-position: 0px -1750px; }
.home-card-map[data-location='wichita'] .location-map { background-position: 0px -700px; }
.home-card-map[data-location='olathe'] .location-map { background-position: 0px -1400px; }

.home-card-map[data-location='hays'] .location-map-update { background-position: 0px -350px; }
.home-card-map[data-location='manhattan'] .location-map-update { background-position: 0px -1050px; }
.home-card-map[data-location='pittsburg'] .location-map-update { background-position: 0px -1750px; }
.home-card-map[data-location='wichita'] .location-map-update { background-position: 0px -700px; }
.home-card-map[data-location='olathe'] .location-map-update { background-position: 0px -1400px; }
.home-card-map[data-location='garden-city'] .location-map-update { background-position: 0px -2100px; }

@media (min-width: 768px) {
	.home-card-map .map-detail { display: block; }
}
@media (min-width: 992px) {
	.home-card-map .map-index {
		display: flex;
	}
	.home-card-map .location-info {
		position: absolute;
		top: 64px;
		right: 600px;
		bottom: 0px;
		left: 0px;
		
		background-color: transparent;
	}
	
	.home-card-map .location-map {
		float: right;
	}
	.home-card-map .location-map-update {
		float: right;
	}
}
