:root {
	--primary-color-hex: #f3b550; /* yellow */
	--primary-color: var(--primary-color-hex);
	--primary-color-text: #fff;

	--secondary-color-hex: #568cc7; /* blue */
	--secondary-color: var(--secondary-color-hex);
	--secondary-color-text: #fff;

	--yellow: var(--primary-color);
	--blue: var(--secondary-color);
	--red: #c3392b;
	--charcoal: #2c2c2c;
	--nav-background: var(--grey);
	--nav-text: var(--charcoal);
	--grey: #747773;
	

	
	--section-padding-top: 3rem;
	--section-padding-bottom: 3rem;
	
	--footer-background-color: var(--charcoal);
	--footer-text-color: #fff;
	--footer-header-color: #eba941;

	--copyright-background-color: #202020;
	
	--font-primary: 'Jost', Helvetica, Arial, sans-serif;
	--font-secondary: Helvetica, Arial, sans-serif;

	--header_spacer_height: 0em;

	--default-lh: 1.75;
    --default-p: clamp(15px, 3.55vw, 17px);
    --default-h3: clamp(40px,4.55vw,64px);
	--default-width: 81%;
	
	--icon-svg: url("/images/layouts/right-icon.svg");
	--icon-svg-play: url("/images/layouts/watch-icon.svg");	
	--k-arrow: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.56 25.11'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon class='cls-1' points='12.56 12.56 6.28 18.83 0 25.11 0 12.56 0 0 6.28 6.28 12.56 12.56'/%3E%3C/g%3E%3C/svg%3E");


	/*Kids*/
	--k-green:#56bb6b;
	--k-blue:#598cc7;
	--k-yellow:#ffb805;
	--k-red:#fc4a30;
	--k-font-primary: 'Palanquin Dark', Helvetica, Arial, sans-serif;
	--k-font-secondary: 'Montserrat', Helvetica, Arial, sans-serif;
	
	/* Students */
	--s-blue:#388ae3;
	--s-green:#80ebad;
	--s-red:#fc7a57;
	--s-yellow:#fff059;
	--s-black:#171717;
	--s-gray:#f0f0f0;
	--s-font-primary: 'Clash Display', Helvetica, Arial, sans-serif;
	--s-font-secondary: 'Montserrat', Helvetica, Arial, sans-serif;

}


/* Default Styles
   ========================================================================== */


article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active,
a:hover,
a:visited:hover,
a:active:hover {
    text-decoration: none;
    outline-width: 0
}

b,
strong {
    font-weight: inherit
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

.p_form {
	line-height: 1.5 !important;
}

.p_form .fld_check input, .p_form .fld_radio input {
	margin-top: 5px !important;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0
}

optgroup {
    font-weight: bold
}

button,
input {
    overflow: visible
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

html {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  /* Page Layout & Utility
   ========================================================================== */

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  background: #353535;
  -ms-font-feature-settings: 'liga' 1, 'kern';
   -o-font-feature-settings: 'liga' 1, 'kern'; /* FF old */
      font-feature-settings: 'liga' 1, 'kern';
}

.main-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 0;
  margin: 0 auto;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 400;
  color: var(--charcoal);
}

.wide {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.container {
  position: relative;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}


.mobile {
  display: none !important;
}
.yt-container {
	max-width: 1000px;
	margin: 0 auto !important;
	padding-top: 30px;
}
.yt-responsive {
	width: 100%;
	height: 0;
	padding-bottom:56.25%;
	position:relative;
	overflow: hidden;
}
.yt-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
  .wide, .main-container {
    width: 100%;
    min-width: 0;
  }

/*
  .container {
    width: 540px;
  }
*/
/*
.flex.stacked {
	margin-right: auto !important;
}
*/
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
#mainContainer #announcement {
	color: #fff;
	transition: all .3;
	background: var(--red) !important;
	font-size: clamp(15px, 3.55vw, 17px);
    margin: 0;
    padding: 10px 0;
}
#mainContainer #announcement p {
	margin: 10px 0;
}
#mainContainer #announcement.scrolled {
	display: none !important;
	transition: all .3;
}

/*  Header
   ========================================================================== */
/*
#header_spacer {
	position: relative;
	height: var(--header_spacer_height);
	background: #fff;
}
*/

.primary {
	position: fixed;
	display: block;
	z-index: 3000;
	background-color: transparent;
	transition: .3s;
}

	.primary.scrolled {
/*
		padding-top: 10px;
		padding-bottom: 10px;
*/
		background-image: none;
		box-shadow: 0 -5px 10px #000;
		background-color: #fff;
	}

.primary > .container {
  width: 90%;
  padding-left: 0;
  padding-right: 0;
  display: table;
  vertical-align: middle;
}

#logo {
  display: table-cell;
  transition: .25s ease-out;
  line-height: 1;
  vertical-align: middle;
}

#logo a {
  display: block;
}

#logo img {
	padding: 30px 0 30px;
	max-width: 280px;
	height: auto;
	transition: .3s;
	/* 	filter: invert(1); */
}

	.primary.scrolled #logo img {
		padding: 17px 0px;
		max-width: 230px;		
/* 		filter: invert(0); */
	}

/*
.site-header.wide {
	border-bottom: 15px solid var(--orange);
}
*/

@media (max-width: 1024px) {
	:root {
		--header_spacer_height: 0;
	}

	#logo img {
		max-width: 170px;
	}
  .primary {
/*     padding: 10px 0; */
    display: block;
  }
}

/*
@media (max-height: 600px) {
  .primary {
    position: relative;
    padding: 0;
  }
  
  	.primary.scrolled {
	  	padding: 0;
  	}
  
  .primary > .container {

    width: 100%;
    padding: 0;
  }
  
  #logo {
    float: left;
    display: block;
    margin-left: 2%;
    padding: 12px 0;
    width: 70%;
    max-width: 300px;
    
    float: none;
  }
  
  	#logo img {
	  	width: 100%;
  	}
}
*/
  
/*  Navigation
   ========================================================================== */



/*  General Content Styles
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#content .cb-body img {
  max-width: 100%;
  height: auto;
}


.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

a.btn, a.btn:visited,
span.btn {
    position: relative;
    padding: 15px 34px 15px 18px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .4s;
    opacity: 1;
    display: inline-block;
    margin-bottom: 0.5em;
}


	a.btn.red, a.btn.red:visited,
	span.btn.red {
	    color: var(--primary-color-text);
	    background: var(--red);
	}

	a.btn.blue, a.btn.blue:visited,
	span.btn.blue {
	    color: var(--secondary-color-text);
	    background: var(--secondary-color);
	}

	a.btn.charcoal, a.btn.charcoal:visited,
	span.btn.charcoal {
	    color: #fff;
	    background: var(--charcoal);
	}
	a.btn.green, a.btn.green:visited,
	span.btn.greenl {
	    color: #fff;
	    background: #8cc63f;
	}

	a.btn.white, a.btn.white:visited,
	span.btn.white {
	    color: var(--charcoal);
	    background: #fff;
	}
			a.btn.white::after,
			span.btn.white::after {
		filter: invert(1);
			}

		a.btn span,
		span.btn span {
			position: relative;
			display: inline-block;
			transition: .2s;
		}
			a.btn::after,
			span.btn::after {
				content: "";
				position: absolute;
				top: 50%;
				width: .9em;
				height: .9em;
				display: inline-block;
				transform: translate(10px, -50%);
				transition: .2s;
				background-repeat: no-repeat;
				background-image: var(--icon-svg);
			}
				a.btn:hover::after,
				span.btn:hover::after {
					transform: translate(14px, -50%);
				}
				
  	a.btn:hover,
  	span.btn:hover {
		filter: brightness(110%);
	}
	
		a.btn:hover span,
		span.btn:hover span {
			transform: translateX(4px);
		}

	a.btn.kyellow, a.btn.kyellow:visited,
	span.btn.kyellow {
	    color: var(--primary-color-text);
	    background: var(--k-yellow);
	    clip-path: polygon(1% 6%, 96% 0, 100% 100%, 0 94%);
	    font-size: clamp(17px, 3.55vw, 21px);
	    font-family: var(--k-font-primary);
	    text-transform: none;
	    font-weight: 400;
	    letter-spacing: 1px;
	    padding: 8px 47px 11px 18px;
/* 	    right: 28px; */
	}
			a.btn.kyellow::after,
			span.btn.kyellow::after {
				background-image: var(--k-arrow);
			    width: 0.6em;
			    height: 1em;
			}
	a.btn.sgreen, a.btn.sgreen:visited,
	span.btn.sgreen {
	    color: var(--primary-color-text);
	    background: transparent;
	    font-size: clamp(11px, 2.3vw, 15px);
	    font-family: var(--s-font-primary);
	    text-transform: none;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: 1px;
	    padding: 10px 21px;
	    outline: 3px solid #80ebad;
	    margin: 0;
		-webkit-transition: all 0.1s linear; 
		-moz-transition: all 0.1s linear; 
		-o-transition: all 0.1s linear; 
		transition: all 0.1s linear;
	}
			a.btn.sgreen::after,
			span.btn.sgreen::after {
			    display: none;
			}

	  	a.btn.sgreen:hover,
	  	span.btn.sgreen:hover {
			filter: brightness(110%);
			  outline-offset: 2px;
		-webkit-transition: all 0.1s linear; 
		-moz-transition: all 0.1s linear; 
		-o-transition: all 0.1s linear; 
		transition: all 0.1s linear;
		}
         		
/*  Footer
   ========================================================================== */

#bottom {
	background-color: var(--footer-background-color);
	min-height: 300px;
	height: auto;
	padding-top: var(--section-padding-top);
}

	#bottom > .container {
		width: 90%;
		max-width: 1200px;
		
		width: 100%;
		max-width: 1500px;

		padding-bottom: var(--section-padding-top);
		padding-bottom: calc(var(--section-padding-bottom) + 20px);
	}

#bottom .contact_container {
	width: 44%;
	padding-top: 60px;
	padding-left: 145px;
}

	#bottom .contact_container img {
	    padding-right: 60px;
/* 		filter: invert(1); */
	}

#bottom .columns {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 60px 90px 60px 60px;
	flex: 1 1 auto;
}


.columns .col {
	position: relative;
	min-height: 150px;
	height: auto;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
/*     text-transform: uppercase; */
}

	.columns .col:last-child {
/*
		margin-left: 20px;
		padding-left: 50px;
*/
	}

.col h5 {
	position: relative;
	margin: 0 0 1em;
	color: var(--yellow);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}

	.col h5 a {
		color: var(--yellow);
		text-decoration: none;
	}

		.col h5 a:hover {
			filter: brightness(110%);
		}

.col p {
	position: relative;
    margin: 0 0 .75em;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
}

	.col p a {
		color: var(--footer-text-color);
		text-decoration: none;
	}
	
		.col p a:hover {
			color: var(--primary-color);
			text-decoration: underline;
		}


.footer-background {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 110%;
    height: 250%;
    background-image: var(--background-image);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: contrast(0);
    opacity: .3;
    pointer-events: none;
}

.site-footer a {
		color: var(--yellow);
		text-decoration: none;
}

.site-footer .location-info {
	position: relative;
}
	.site-footer .location-info p {
	    margin: 0;
	    font-family: var(--font-secondary);
	    font-size: clamp(1rem, 2.55vw, 1.5rem);
	    font-weight: 400;
	    color: var(--footer-text-color);
	    text-transform: uppercase;
	    line-height: 1.5;
	    white-space: nowrap;
	    letter-spacing: 2px;
	    padding-bottom: 1em;
	}

	.site-footer .contact-info {
		position: relative;
		margin-top: 3em;
	}

		.site-footer .contact-info p {
		    margin: 0;
		    font-size: 1.4rem;
		    font-weight: 600;
		    color: var(--footer-text-color);
		    text-transform: uppercase;
		    line-height: 1.2;
			white-space: nowrap;
		}
		
			.contact-info a[href^='tel'] {
				font-size: 35px;
				font-weight: 400;
			}
	
			.contact-info a[href^='mailto:'] {
				font-size: 18px;
			}
	

.site-footer {
	background-image: var(--background-image);
	background-position: center bottom;
	background-size: cover;
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  overflow: hidden;
  padding: 0;
}

.footer-row {
  margin: 5em auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-flex-flow: row nowrap;
          flex-flow: row;
  -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.footer-column {
  font-size: 1.4em;
  line-height: 1.6;
}

.footer-column p {
  margin: .2em 0;
}

.footer-column a:not(.button) {
  color: #fff;
}

.footer-column strong {
  font-size: 1.14em;
}

.footer-column strong,
.footer-column strong a {
  color: #dea92c !important;
  font-weight: 600;
}

.footer-column a:not(.button):not(.social-link):hover {
  text-decoration: underline;
}

.footer-column a.button {
  font-size: 14px;
  margin: 1em 0;
}

#search {
  position: relative;
  width: 260px;
  margin: 0;
}

.search-input {
  position: relative;
  width: 100%;
  padding: 8px 48px 8px 8px;
  font-size: 16px;
  line-height: 16px;
  background: #404140;
  color: #fff;
  outline: 0;
  box-sizing: border-box;
}

.search-btn,
.search-input {
  margin: 0;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
}

.footer-info {
  padding: 2em 0;
}

	.footer-info::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--copyright-background-color);
	}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  display: inline-block;
  margin: 10px 0 0 50px;
  font-family: var(--font-primary);
  font-size: 10px;
  color: #fff;
  vertical-align: middle;
}

.footer-copyright a,
.footer-copyright a:visited{
  color: #fff;
  text-decoration: none;
} 



/*
section#section-social {
	padding-top: 2.4rem;
	padding-bottom: 2.4rem;
	background-color: var(--footer-background-color);
	border-bottom: rgba(255, 255, 255, 0.16) solid 1px;
}
*/

/*
	#section-social img {
		height: 60px;
	}
*/
	
	.social_container {
		margin-top: 0.5em;
		color: var(--primary-color);
		font-size: 35px;
		display: flex;
		flex-wrap: wrap;
	}
	
		.social_container a {
			color: var(--primary-color-text);
			text-decoration: none;
			transition: .2s;
		}
		
			.social_container a:not(:first-child) {
				padding-left: 20px;
			}
		
			.social_container a:hover {
				color: var(--primary-color);
			}
#mainContainer #content .blog-container h3.cb-header {
	width: 100%;
}	
p.blog_post_published {
    color: #c3ccd5;
}		
	
@media (max-width: 1024px) {
	.col p {
		font-size: 17px;
	}
	#bottom .contact_container {
    width: 100%;
    align-items: center;
    padding: 60px;
	}
	#bottom .contact_container img {
		padding-right: 0;
		max-width: 350px;
	}
	#bottom .container.flex {
		flex-direction: column;
		align-items: center;
	}
	#bottom .columns {
		padding: 60px 0px 60px 60px;
		width: 90%;
	}
}

@media (max-width: 768px) {
	.flex.stacked > img {
	    margin: 0 auto;
	}
	
	#bottom .contact_container {
		padding: 60px;
	}
	
		#bottom .contact_container img {
			padding-right: 0;
			max-width: 360px;
		}

	#bottom > .container {
		width: 95%;
		align-items: center;
	}
	
		#bottom > .container > div {
			width: 100%;
			align-items: center;
		}
			#bottom .contact_container img {
			    padding-right: 0px;
			}

		.site-footer .contact-info p {
			text-align: center;
		}

	.columns .col {
	    width: 90%;
	    margin: 0 auto 2rem;
	}
	.columns .col.column-one {
	    width: 90%;
	    margin-bottom: 30px;
	}
	
	#bottom .columns {
	    display: flex;
	    justify-content: center;
	    flex-direction: column;
	    text-align: center;
	    padding: 0px;
	}

		#bottom .columns .col:last-child {
			margin-left: auto;
			padding: 0;
		}
		
			.footer-background {
				left: 50%;
				transform: translate(-50%, -50%);
				background-position: center;
			}
	
	#search {
	    position: relative;
	    width: 100%;
	    margin: 0;
	}


	body.modal_active #modal_container {
		overflow: hidden;
	}
	
	#modal_container[data-modal] .modal_window {
		width: 100%;
		height: 100%;
		top: 0;
		padding-bottom: 0;
	}
	
	#modal_container .modal_window .modal_body {
		overflow: auto;
	}
}	
	
@media (max-width: 640px) {
  .footer-row {
    -ms-flex-flow: column;
        -webkit-flex-flow: column;
            flex-flow: column;
    text-align: center;
  }
  
  	.social_container {
	  	font-size: 30px;
  	}

	.site-footer .location-info p {
/* 		font-size: 1.75rem; */
		text-align: center;
		white-space: normal;
	}



  .footer-column {
    margin: 1em 0;
    font-size: 1.4em;
    line-height: 2;
  }
  
  #bottom .floating-icon-container {
	  width: 50%;
	  max-width: 160px;
  }

  #search {
    width: 100%;
  }


  .footer-copyright {
    text-align: center;
  }

  .footer-copyright p {
    display: block;
    margin: 20px auto;
  }

	#section-social .right {
		text-align: right;
		justify-content: center;
		font-size: 32px;
		color: #fff;
		text-align: center;
	}
}

@media (max-width: 500px) {
	#bottom .contact_container {
		padding: 0;
		padding-bottom: 50px;
	}
}