/*
--------------------------------------------------------------------------------------

	Various components
	components.various.css

--------------------------------------------------------------------------------------
*/



/*
-------------------------------------------
	Fonts
-------------------------------------------
*/


@font-face {
    font-family: 'gilroy';
    src: url('fonts/gilroy-extrabold-webfont.woff2') format('woff2'),
         url('fonts/gilroy-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'kepler';
	src: url('fonts/KeplerStd-Italic.eot');
	src: url('fonts/KeplerStd-Italic.eot?#iefix') format('embedded-opentype'),
		url('fonts/KeplerStd-Italic.woff') format('woff'),
		url('fonts/KeplerStd-Italic.ttf') format('truetype');
	font-weight: normal;
}



/*
-------------------------------------------
	Headings
-------------------------------------------
*/

.big-heading {
	font-family: 'gilroy', helvetica, arial, sans-serif;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	font-size: 3em;
	margin-top: 0;
	margin-bottom: 25px;
	padding-top: 0;
}

.heading-smallest {font-size: 1em;}
.heading-small {font-size: 1.2em;}
.heading-medium {font-size: 1.5em;}
.heading-large {font-size: 1.7em;}
.heading-largest {font-size: 2em;}


/*
-------------------------------------------
	Paragraph styles
-------------------------------------------
*/


.sub-heading {
	font-family: 'kepler', georgia, serif;
	color: #777;
	background-color: transparent;
	font-size: 1.4em;
	font-style: italic;
	margin-bottom: 30px;
}

.sub-heading a {text-decoration: none; }

.text-block p:last-child {margin-bottom: 0;}


/*
-------------------------------------------
	Link styles
-------------------------------------------
*/


.lone-link {
	margin:10px 0 0 0;
	text-align: center;
}

.lone-link a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.lone-link a:hover {
	color: #fff;
	font-weight: bold;
	text-decoration: underline;
}



/*
-------------------------------------------
	Lists
-------------------------------------------
*/


.list a {text-decoration: none;}

.list {
	margin:0 0 25px 0; 
	padding:0;
	list-style:none;
	list-style-type:none;
}

.list ul {margin:10px 0 10px 25px;}

.list li {
	list-style:none;
	list-style-type:none;
	padding-left:0;
	margin-left: 0;
	line-height:150%;
	margin-bottom: 5px;
}

/* cols, inline */

.list--2-cols {
	-moz-column-count:2;
	-webkit-column-count:2;
	column-count: 2;
	margin-bottom: 20px;
}

.list--2-cols li {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.list--inline li {
	display: inline-block;
	margin-right: 5px;
}

/* ticks */

.list--ticks li {
	padding: 7px 0 12px 40px;
	display:inline-block; 
	width:100%;
	margin-bottom: 0;
	min-height: 28px;
	line-height: 150%;
	background: url(icons/tick.png);
	background: url(icons/tick.svg), linear-gradient(transparent, transparent);
	background-position: 0 3px;
	background-repeat: no-repeat;
}

/* bullets */

.list--bullets {
	margin:0 0 25px 25px;
	list-style-type: none;
	padding: 0;
}

.list--bullets ul {margin:10px 0 10px 25px;}

.list--bullets li {
	margin-bottom: 5px;
	position: relative;
	padding-left: 20px;
}

.list--bullets li:before {
	content: "\2022";
	color: #000;
	background-color: transparent;
	font-size: 25px;
	position: absolute;
	left: 0;
	top: 0;
}


/* breadcrumb */

.breadcrumb {
	margin: 30px 0 0 0;
	text-align: center;
	color: #ccc;
}

.breadcrumb a {text-decoration: none;}

.list--breadcrumb,
.list--breadcrumb li {
	list-style:none;
	list-style-type:none;
	margin:0;
	padding:0;	
}

.list--breadcrumb {margin:0 0 25px 0;}

.list--breadcrumb li {
	display:inline;
	padding:0;
	margin:0 5px 0 0;
	color:#777;
	background-color: transparent;
}

.list--breadcrumb li:before {content:normal;}

.list--breadcrumb li:after {
	color:#ddd;
	background-color: transparent;
	font-family:"Hiragino Mincho ProN";
	font-size: 10px;
	content: "\25b6";
	display:inline-block;
	margin-left:9px;
}

.list--breadcrumb li:last-child {margin:0;}

.list--breadcrumb li:last-child:after {
	content: "";
	margin-left: 0;
}


/* tabs */

.list--tabs {
	text-align: center;
	margin: 0 0 30px 0;
}

.list--tabs li {
	display: inline-block;
	margin-right: 5px;
}

.list--tabs li:last-of-type {margin-right: 0;}

.list--tabs a {
	font-family: 'gilroy', helvetica, arial, sans-serif;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	color: #fff;
	font-size: 1em;
	text-decoration: none;
	display: block;
	padding:10px 15px;
	border-radius: 20px;
	background: #000;
	background: rgb(000, 000, 000);
	background: rgba(000, 000, 000, 0.3);
}

.list--tabs a:hover {
	background: #000;
	background: rgb(000, 000, 000);
	background: rgba(000, 000, 000, 0.6);
	color: #fff;
}

.list--tabs a.list--tabs__active {
	background-color: #498059;
	color: #fff;
}


/* ordered */

ol {
	margin:0 0 20px 25px;
	padding:0;
	counter-reset: item;
	list-style-type:none;
	
}

ol ol {
	margin:10px 0 10px 25px;
	padding:0;
	counter-reset: item;
	list-style-type:none;
}

ol li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 5px;
	line-height:150%;
}

ol li:before {
	content: counter(item) ". ";
	font-size:1em;
	counter-increment: item;
	color: #777;
	background-color: transparent;
	display: inline-block;
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}




/*
-------------------------------------------
	Tables
-------------------------------------------
*/

.table {margin: 0 0 20px 0;}

.table td, 
.table th {
	padding: 10px 12px;
	border: 1px solid #ddd;
	text-align: left;
}

.table th {font-weight:bold;}


/* wrap */

.table-wrap {overflow:auto;}


/* striped */

.table--striped tr:nth-child(even) {background: #eee;}


/* alt */

.table--alt td, 
.table--alt th {border: 1px solid #777;}


/*
-------------------------------------------
	Quotes
-------------------------------------------
*/


.quote {
	background: url(icons/quote.png);
	background: url(icons/quote.svg), linear-gradient(transparent, transparent);
	background-position: center top;
	background-repeat: no-repeat;
	padding-top: 50px;
	margin:0;
}

.quote__text {
	font-family: 'kepler', georgia, serif;
	text-align: center;
	font-style: italic;
	font-size: 1.8em;
}

.quote__cite {
	text-align: center;
	font-style: normal;
	display: block;
	color: #777;
	background-color: transparent;
}

.quote__cite a {
	font-weight: bold;
	color: #236AB2;
	background-color: transparent;
	text-decoration: none;
}

.quote__cite a:hover {
	color: #000;
	background-color: transparent;
}



/*
-------------------------------------------
	Image and Text
-------------------------------------------
*/

.image-and-text__image,
.image-and-text__text {
	width: 50%;
	float:left;
}

.image-and-text__image {text-align: center;}

.image-and-text__text-wrap {
	width: 70%;
	padding-left: 30px;
}


.image-and-text__caption {
	color: #777;
	padding: 5px 0 0 15px;
	margin-bottom: 0;
	font-style: italic;
}


/* swap? what's this? */

.image-and-text--swap .image-and-text__caption {
	text-align: right;
	padding:5px 15px 0 0;
}

.image-and-text--swap .wrap--half {
	float: right;
}




/*
-------------------------------------------
	Images
-------------------------------------------
*/

.left {
	float: left;
	margin:0 25px 25px 0;
}

.right {
	float: right;
	margin:0 0 25px 25px;
}

.caption {
	color: #777;
	background-color: transparent;
	font-style: italic;
}



/*
-------------------------------------------
	Double quote (home)
-------------------------------------------
*/

.double-quote__text {
	font-family: 'kepler', georgia, serif;
	font-style: italic;
	font-size: 1.6em;
	padding-top: 10px;
}

 .double-quote__text--left {
 	margin-right: 170px;
 	padding-left: 70px;
 	text-align: right;
 }

  .double-quote__text--right {
 	margin-left: 170px;
 	padding-right: 70px;
 	text-align: left;
 }

.double-quote__image {width: 140px;}

.double-quote__image--left {float: right;}
.double-quote__image--right {float: left;}

.double-quote__image img {
	border-radius: 5px;
}




/*
-------------------------------------------
	Buttons
-------------------------------------------
*/

.button {
	padding:10px 15px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	border:none;
	cursor: pointer;
}

.button--primary {
	background-color: #498059;
	color: #fff;
}

.button--secondary {
	color: #fff;
	background-color: transparent;
	border:3px solid #fff;
}

.button--tertiary {
	background-color: #133F6B;
	color: #fff;
}

.button--buy {
	color: #fff;
	background-color: #E3294A;
	border:3px solid #fff;
}

.button--form {
	padding:5px 10px;
	font-size: .9em;
}

.button--apply {
	position:fixed;
	top:100px;
	left:15px;
	background-color: #E3294A;
	color: #fff;
	z-index: 1;
}

.button:hover {
	text-decoration: none;
	background-color: #000;
	color: #fff;
}

input[type="submit"]:disabled,
input[type="submit"]:disabled:hover {
	background-color:#555;
	cursor:auto;
	opacity:0.2;
}


/*
-------------------------------------------
	Boxes
-------------------------------------------
*/

.box {
	border:1px solid #ddd;
	padding:15px 20px;
	margin-bottom: 20px;
}

.box p:last-of-type {margin-bottom: 0;}

.box h2 {
	font-size: 1.3em;
	margin-bottom: 8px;
}

.box--blog {margin-left: 30px;}

.box-simple {
	border: 1px solid #ddd;
	padding: 20px;
}



/*
-------------------------------------------
	Feature blocks
-------------------------------------------
*/


.feature-block {padding: 40px 0;}

.page-header {padding: 40px 0 40px 0;}

.fifty-fifty {width: 50%;}

.fifty-fifty__wrap {
	padding: 0 12% 40px 12%; 
	text-align: center;
}



/*
-------------------------------------------
	Get inspired
-------------------------------------------
*/

.get-inspired {
	height: 600px;
	width: 100%;
	background: url(/img/various/collage.jpg) repeat-x;
	-webkit-animation: backgroundScroll 60s linear infinite;
	animation: backgroundScroll 60s linear infinite;
	transform: translate3d(0,0,0);
}


@-webkit-keyframes backgroundScroll {
	from {background-position: 0 0;}  
	to {background-position: -1600px 0;}  
}

@keyframes backgroundScroll {
	from {background-position: 0 0;}  
	to {background-position: -1600px 0;}  
}

.get-inspired__box {
	background: #000000;
	background: rgb(000, 000, 000);
	background: rgba(000, 000, 000, 0.9);
	border-radius: 5px;
	color:#fff;
	width: 500px;
	margin: 0 auto;
	text-align: center;
	padding: 30px 30px 40px 30px;
	margin-top: 130px;
}

.get-inspired__links {margin-bottom: 0;}

.get-inspired__links li {margin-bottom: 12px;}

.get-inspired__links a {
	color: #fff;
	background-color: transparent;
	text-decoration: none;
}

.get-inspired__links a:hover {
	color: #fff;
	background-color: transparent;
	text-decoration: underline;
}




/*
-------------------------------------------
	Program teasers
-------------------------------------------
*/


.program-teaser {}

.program-teaser__image {
	display: block;
	border-radius: 5px 5px 0 0;
	width: 100%;
}

.program-teaser__image:hover {opacity:0.8;}

.program-teaser__header {
	/* used for course overview page */
	background-color: #000;
	color: #fff;
	padding:20px;
	margin: 0;
	text-align: center;
	border-radius: 5px 5px 0 0;
}

.program-teaser__header-title,
.program-teaser__header-title a {
	color: #fff;
	background-color: transparent;
	text-decoration: none;
}

.program-teaser__header-price {
	color: #fff;
	background-color: transparent;
	padding:0;
	margin: 0;
	font-weight: bold;
}

.program-teaser__info {
	background-color: #fff;
	color: #000;
}

.program-teaser__info-wrap {
	padding: 15px;
	color: #777;
}

.program-teaser__category {
	font-size: .8em;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
}

.program-teaser__category--jobs {
	color: #498059;
	background-color: transparent;
}

.program-teaser__category--internships {
	color: #E3294A;
	background-color: transparent;
}

.program-teaser__category--volunteer {
	color: #7B003F;
	background-color: transparent;
}

.program-teaser__category--education {
	color: #67AEF6;
	background-color: transparent;
}

.program-teaser__heading {
	font-family: 'gilroy', helvetica, arial, sans-serif;
	font-size: 1.5em;
	font-weight: normal;
	text-transform: none;
	margin: 5px 0;
}

.program-teaser__program {
	margin: 0 0 12px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
	color: #000;
	background-color: transparent;	
}

.program-teaser__info p {margin: 0 0 8px 0;}

.program-teaser__info p:last-child {margin: 0;}

.program-teaser__data {
	float: right;
	color: #000;
	background-color: transparent;
}

.program-teaser__button {
	color: #fff;
	background-color: #498059;
	font-size: .8em;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	display: block;
	padding: 10px 20px;
	text-transform: uppercase;
	border-radius: 0 0 5px 5px;
}

.program-teaser__button--internships {background-color: #E3294A;}

.program-teaser__button--volunteer {background-color: #7B003F;}

.program-teaser__button--education {background-color: #67AEF6;}

.program-teaser__button:hover {
	text-decoration: none;
	background-color: #000;
	color: #fff;
}



/*
-------------------------------------------
	Programs
-------------------------------------------
*/


.program-header {
	text-align: center;
	margin-bottom: 0;
	padding-top: 40px;
}

/* program overview */

.program-overview {
	background-color: #f5f5f5;
	padding-top: 25px;
	text-align: center;
}

.program-overview__icon {margin: 0 0 5px 0; }

.program-overview__text {
	color: #777;
	margin: 0; 
}

.program-overview__link,
.program-overview__link:hover {
	text-decoration: none;
	display: block;
	color: #539D3C;
}

.program-overview__link-text {
	margin: 0;
	color: #539D3C;
}


/* faqs */

.faqs__question {
	font-family: 'gilroy', helvetica, arial, sans-serif;
	font-size: 1.2em;
	font-weight: normal;
	padding:14px 15px 14px 35px;
	line-height: 130%;
	color: #000;
	cursor: pointer;
	background: url(icons/expand.png);
	background: url(icons/expand.svg), linear-gradient(transparent, transparent);
	background-position: 10px center;
	background-repeat: no-repeat;
}

.faqs__question:hover {
	background: url(icons/expand-hover.png);
	background: url(icons/expand-hover.svg), linear-gradient(transparent, transparent);
	background-position: 10px center;
	background-repeat: no-repeat;
}

.faqs__question--open {
	background: url(icons/contract.png);
	background: url(icons/contract.svg), linear-gradient(transparent, transparent);
	background-position: 10px center;
	background-repeat: no-repeat;
}

.faqs__question--open:hover {
	background: url(icons/contract-hover.png);
	background: url(icons/contract-hover.svg), linear-gradient(transparent, transparent);
	background-position: 10px center;
	background-repeat: no-repeat;
}

.faqs__answer {padding:0 20px 14px 35px;}

.faqs__answer ul {margin-bottom: 20px;}

.faqs__answer p:last-child {margin-bottom: 0;}

.faqs dt:nth-of-type(odd),
.faqs dd:nth-of-type(odd) {background-color: #f5f5f5;}


/* application form */


.apply-form {
	background-color: #f5f5f5;
	color: #000;
}

.hide-apply-form .apply-form {display: none;}

.feature-block.apply-form {padding-top: 60px;}

.apply-form__label {
	display:block;
	font-weight: bold;
	color: #000;
	background-color: transparent;
	padding-bottom: 12px;
}

.apply-form__label--radio {margin: 0 15px 0 8px;}

.apply-form__input {
	border: 2px solid #ddd;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.apply-form__input:focus {
	border:2px solid #E3294A;
	outline: none;
}

.apply-form__radio label {
	display: inline-block;
	padding:0 14px 0 8px;
}

.apply-form__error .apply-form__label {
	color:red;
	background-color: transparent;
}

.apply-form__error .apply-form__input {border: 2px solid red;}

.apply-form__error-message {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding:50px 80px;
	color: #fff;
	background-color: #E3294A;
	z-index: 500;
}

.apply-form__error-message a {
	color: #fff;
	text-decoration: underline;
	background-color: transparent;
}

.apply-form__file {
	display: block;
	width: 100%;
	padding: 5px 10px;
	border-radius: 5px;
	border: 2px solid #ddd;
}


/* experimental buttons for radio (not in use) */

.switch-field {
	padding-top: 5px;
	display: block;
}

.switch-field input {display: none;}

.switch-field label {float: left;}

.switch-field label {
  display: inline-block;
  width: 60px;
  background-color: #e4e4e4;
  font-family: arial, helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  text-shadow: none;
  padding: 6px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition:    all 0.1s ease-in-out;
  -ms-transition:     all 0.1s ease-in-out;
  -o-transition:      all 0.1s ease-in-out;
  transition:         all 0.1s ease-in-out;
}

.switch-field label:hover {cursor: pointer;}

.switch-field input:checked + label {
  background-color: #A5DC86;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.switch-field label:first-of-type {border-radius: 4px 0 0 4px;}

.switch-field label:last-of-type {border-radius: 0 4px 4px 0;}


/*
-------------------------------------------
	Tabs
-------------------------------------------
*/



.tab {
	display: none; 
	text-align: left;
	margin-top: 20px;
}

.tabs input[value="1"]:checked ~ .tab-1,
.tabs input[value="2"]:checked ~ .tab-2,
.tabs input[value="3"]:checked ~ .tab-3,
.tabs input[value="4"]:checked ~ .tab-4,
.tabs input[value="5"]:checked ~ .tab-5,
.tabs input[value="6"]:checked ~ .tab-6,
.tabs input[value="7"]:checked ~ .tab-7,
.tabs input[value="8"]:checked ~ .tab-8,
.tabs input[value="9"]:checked ~ .tab-9,
.tabs input[value="10"]:checked ~ .tab-10,
.tabs input[value="11"]:checked ~ .tab-11,
.tabs input[value="12"]:checked ~ .tab-12,
.tabs input[value="13"]:checked ~ .tab-13,
.tabs input[value="14"]:checked ~ .tab-14,
.tabs input[value="15"]:checked ~ .tab-15 {display: block;}

.tabs--big {text-align: center;}

.tabs--big input.tabs__state {display: none;}

.tabs label {
	display: inline-block;
	padding: 0 10px 0 0;
}

.tabs--big label {
	display: inline-block;
	font-family: 'gilroy', helvetica, arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #fff;
	font-size: 1em;
	text-decoration: none;
	padding:10px 15px;
	margin: 0 5px 15px 0;
	border-radius: 20px;
	background: #000;
	background: rgb(000, 000, 000);
	background: rgba(000, 000, 000, 0.3);	
}

.tabs--big label:hover {
	cursor: pointer;
	background: #000;
	background: rgb(000, 000, 000);
	background: rgba(000, 000, 000, 0.8);
	color: #fff;
}

.tabs--big input:checked + label {
	background-color: #498059;
	color: #fff;
}



/*
-------------------------------------------
	Text and sidepiece
-------------------------------------------
*/


.text-and-sidepiece__sidepiece {
	text-align: right;
	color: #777;
}


/*
-------------------------------------------
	Carousel
-------------------------------------------
*/


.carousel {
	position: relative;
    z-index: 2;
    padding-bottom: 80%;
    height: 0;
    overflow: hidden;
}

@media (min-width:640px) {
    .carousel {
        padding-bottom: 60%;
    }
}

@media (min-width:1024px) {
    .carousel {
        padding-bottom: 48%;
    }
}

.carousel__link {
	display: block;
    text-decoration: none;
}

.carousel__link:hover {text-decoration: none;}

.carousel__image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel__text {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	background-image: -webkit-linear-gradient(-90deg, rgba(0,0,0,0.00) 5%, #000000 100%);
  	background-image: -moz-linear-gradient(-180deg, rgba(0,0,0,0.00) 5%, #000000 100%);
  	background-image: -o-linear-gradient(-180deg, rgba(0,0,0,0.00) 5%, #000000 100%);
  	background-image: -ms-llinear-gradient(-180deg, rgba(0,0,0,0.00) 5%, #000000 100%);
  	background-image: linear-gradient(-180deg, rgba(0,0,0,0.00) 5%, #000000 100%);
    color: #fff;
    padding: 20px 0 50px 0;
}

@media (min-width:640px) {
    .carousel__text {
        padding: 20px 0 60px 0;
    }
}

@media (min-width:1024px) {
    .carousel__text {
        padding: 50px 0 70px 0;
    }
}


.carousel__heading {
	font-family: 'gilroy', helvetica, arial, sans-serif;
	text-shadow: 0px 1px 5px rgba(0,0,0,0.40);
	text-transform: none;
	font-size: 1.6em;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	color:#fff;
	background-color: transparent;
	text-align: center;
	margin: 0 auto;
	padding:0 20px 10px 20px;
	
}

@media (min-width:640px) {
    .carousel__heading {
        font-size: 2em;
    }
}

@media (min-width:1024px) {
    .carousel__heading {
        font-size: 3.2em;
    }
}

.carousel__description {
	max-width: 55em;
	font-weight: bold;
	color:#fff;
	background-color: transparent;
	text-align: center;
	margin: 0 auto;
	padding: 0 20px;
}

.owl-carousel {z-index: 2;}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-left: -70px;
    position: absolute;
    bottom: 12px;
    left: 50%;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #67AEF6;
}


/*
-------------------------------------------
	Gallery
-------------------------------------------
*/


.gallery {
	background-color: #f5f5f5;
	color: #000;
	padding-top: 30px;
}

.gallery--white {
	background-color: #fff;
	color: #000;
}

.gallery__list a {display: block;}

.gallery__list--videos a {position: relative;}

.gallery__list li {
	margin-right: 8px;
    display: inline-block;
}

.gallery__list li:last-child {margin-right: 0;}

.gallery__list img {
	border-radius:5px;
	border:4px solid #fff;
	width: 120px;
	height: 120px;
}

.gallery--white .gallery__list img {border:4px solid #ddd;}

.gallery__list--videos img {width: 180px;}

.gallery__list a:hover img {border:4px solid #E3294A;}

.gallery__video {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
	margin: 25px 0;
}

.gallery__video iframe, 
.gallery__video object, 
.gallery__video embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.icon-play {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -24px;
	margin-left: -34px;
	width: 68px;
	height: 48px;
	background: url('icons/play-button.png');
	background: url('icons/play-button.svg'), linear-gradient(transparent, transparent);
	background-position: top left;
	background-repeat: no-repeat;
	opacity: 0.7;
}



/*
-------------------------------------------
	Full size
-------------------------------------------
*/

.full-size {display: block;}





/*
-------------------------------------------
	Buy now
-------------------------------------------
*/


.buy-now {
	background-color:#539D3C;
	color: #fff;
	padding:30px 0;
	text-align: right;
}

.buy-now__text {
	color: #fff;
	margin-bottom: 0;
	padding-top: 6px;
	text-align: left;
}

.buy-now__price {
	font-weight: bold;
	font-size: 1.2em;
	display: inline-block;
	padding: 10px 10px 0 0;
}

.buy-now__form {display: inline-block;}




/*
-------------------------------------------
	Testimonials
-------------------------------------------
*/

.testimonial {
	border-top: 1px solid #eee;
	padding-top: 30px;
	margin-top: 30px;
}

.testimonial:first-child {
	border-top: 0;
	margin-top: 0;
}

.testimonial:last-child {margin-bottom: 30px;}

.testimonial__photo {
	height: 140px;
	width:140px;
	float: left;
}

.testimonial__photo img {border-radius: 4px;}

.testimonial__text {padding-left: 170px;}

.testimonial__cite {
	color: #777;
	font-style: italic;
}

.counter {
	color: #777;
	background-color: transparent;
}

.counter-value {
	font-size: 3em;
	font-weight: bold;
	color: #E3294A;
}

.active a {color: #000;}



/*
-------------------------------------------
	Search
-------------------------------------------
*/


.search-box__input {
	padding:10px 15px;
	border:2px solid #ccc;
	border-right: 0;
	float: left;
	width: 80%;
}

.search-box__input:focus {
	outline: none;
	border:2px solid #000;
	border-right: 0;
}

.search-box__button {
	padding:10px 15px;
	border:2px solid #E3294A;
	background-color: #E3294A;
	color: #fff;
	float: left;
	width: 20%;
	cursor: pointer;
}

.search-box__button:focus {
	outline:none;
	background-color: #000;
	border:2px solid #000;
}

/* subscribe (footer) */

.search-box--smaller {max-width: 500px;}

.search-box__input--smaller {
	width: 60%;
	padding:8px 10px;
}

.search-box__button--smaller {
	width: 25%;
	padding:8px 10px;
}


/* results */

.search-results__title {
	margin-bottom: 5px;
}

.search-results__link {text-decoration: none;}

.keyword {
	font-style: normal;
	background-color: #F8CAD2;
	color: #000;
}




/*
-------------------------------------------
	Articles (Blog)
-------------------------------------------
*/


.article-list,
.article-list:hover {
	display:block;
	text-decoration:none;
	text-align:left;
	float:left;
}

.article-list__heading {
	font-size:1.2em;
	color:#236AB2;
	margin:10px 0 10px 120px;
}

.article-list__date {
	color:#777;	
	margin:0 0 0 120px;
}

.article-list__image {
	border-radius:8px;
	float:left;	
}

.article-list:hover .article-list__heading {color:#E3294A;}

.article-list:hover .article-list__image {opacity:0.8;}



/*
-------------------------------------------
	Share buttons
-------------------------------------------
*/


.share-widget {
	display: block;
	margin-bottom: 0;
	background-color: #fff;
	color: #000;
	padding: 0 0 20px 0;
	text-align: center;
}

.hide-social .share-widget {display: none;}

.share {
	min-height: 32px;
	padding:8px 10px 8px 35px;
	color: #fff;
	display:inline-block;
	border-radius: 4px;
}

.share--facebook {
	background: url(icons/social/facebook.png);
	background: url(icons/social/facebook.svg), linear-gradient(transparent, transparent);
	background-position: center left;
	background-repeat: no-repeat;
	background-color: #385084;	
}

.share--twitter {
	background: url(icons/social/twitter.png);
	background: url(icons/social/twitter.svg), linear-gradient(transparent, transparent);
	background-position: center left;
	background-repeat: no-repeat;
	background-color: #4BC0E2;	
}

.share--google {
	background: url(icons/social/google.png);
	background: url(icons/social/google.svg), linear-gradient(transparent, transparent);
	background-position: center left;
	background-repeat: no-repeat;
	background-color: #CC463A;	
}

.share:hover {
	opacity: 0.8;
	color:#fff;
}


/*
-------------------------------------------
	Misc
-------------------------------------------
*/

.separator {
	color: #ccc;
	background-color: transparent;
	font-size: 20px;
	display: inline-block;
	padding:0 5px;
	vertical-align: middle;
}

.small-print {
	color: #777;
	font-size: .9em;
}




/* effects */

.effect-enlarge img {
	transition: all .2s ease-in-out;
	-webkit-backface-visibility: hidden; 
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.effect-enlarge img:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}


/* background images */

.bg-image-schoolclass {
	background-image: url(../img/backgrounds/class.jpg);
	background-position: top center;
	background-repeat: no-repeat;
}


/* social media */

.fb_iframe_widget span {vertical-align: top !important;}

.hide-social .social-media-fixed {display: none;}

.social-media-fixed {
	position:fixed;
	top:100px;
	right:0;
	z-index: 1;
	padding: 10px;
    background: rgb(255, 255, 255, 0.8);
    border-radius: 5px 0px 0px 5px;
}


/*
-------------------------------------------
	Media queries
-------------------------------------------
*/


@media 
only screen and (max-width: 1280px), 
only screen and (max-device-width: 1280px) {

	.button--apply,
	.social-media-fixed {display: none;}


} /* end media query */


@media 
only screen and (max-width: 768px), 
only screen and (max-device-width: 768px) {


	.fifty-fifty {width: 100%;}

	.fifty-fifty__wrap {
		padding: 0 10% 40px 10%; 
	}

	.double-quote__text {
		padding-top: 0;
		font-size:1.3em;
	}

	.double-quote__text--left {padding-left: 0;}

	.double-quote__text--right {padding-right: 0;}

	.get-inspired__box {width: 90%;}

	.box--blog {margin-left: 0;}

	.image-and-text__image,
	.image-and-text__text {width: 100%;}

	.image-and-text__text {margin-top: 20px;}

	.image-and-text__text-wrap {
		width: 90%;
		margin:0 auto;
		padding-left: 0;
	}

	.search-box__input--smaller {width: 70%;}

	.search-box__button--smaller {width: 30%;}




} /* end media query */



@media 
only screen and (max-width: 414px), 
only screen and (max-device-width: 414px) {

	.list--2-cols {
	    -moz-column-count:1;
	    -webkit-column-count:1;
		column-count: 1;
	}

	.get-inspired {
		background: url(/img/various/collage-mobile.jpg) repeat-x;
		-webkit-animation: none;
		animation: none;
		transform: none;
}

	.double-quote__image {
		width: 100px;
		float:left;
	}

	.double-quote__text--left {
	 	margin-left: 120px;
	 	margin-right: 0;
	 	text-align: left;
	}

	.double-quote__text--right {
	 	margin-left: 120px;
	}

	.quote__text {font-size: 1.3em;}

	.apply-form__input {margin-bottom: 0;}

	.apply-form__error-message {padding:40px 30px;}

	.text-and-sidepiece__sidepiece {text-align: left;}

	.buy-now {
		text-align: left;
		padding:30px 0 20px 0;
	}

	.buy-now__price {
		display: block;
    	padding: 0 0 10px 0;
	}

	.buy-now__text {padding-top: 0;}

	.testimonial__photo {
		width: 100%;
		height:auto;
		min-height: 140px;
		float: none;
		margin-bottom: 20px;
	}

	.testimonial__text {
		padding-right: 0;
		padding-left: 0;
	}

	.gallery__list--videos img {width: 150px;}

	.gallery__list img {
		width: 85px;
		height: 85px;
	}

	.left,
	.right {
		max-width: 40%;
		height: auto;
	}

	.image-centered {width: 100%;}

	.search-box__input {width: 70%;}
	.search-box__button {width: 30%;}

	.sub-heading {font-size: 1.1em;}


} /* end media query */



