/*
Theme Name: Valor Collegiate
Author: Proof Branding
Author URI: https://proofbranding.com
Description: Custom WordPress theme for Valor Collegiate.
Version: 2.0
*/

/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

strong, b {
	font-weight: bold;
}

i, em {
	font-style: italic;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
	border: 0;
	clip: rect( 1px, 1px, 1px, 1px );
	clip-path: inset( 50% );
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}


/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth !important;
}

*, *:before, *:after {
	box-sizing: inherit;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

img {
	max-width: 100%;
	height: auto;
}

iframe, embed {
	max-width: 100%;
}
html.with-featherlight{overflow:hidden}
.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}
.featherlight:last-of-type{background:rgba(0,0,0,.8)}
.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle}
.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background: transparent;cursor:auto;white-space:normal}
.featherlight .featherlight-inner{display:block}
.featherlight link.featherlight-inner,
.featherlight script.featherlight-inner,
.featherlight style.featherlight-inner{display:none}
.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000;border:0;padding:0}
.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}
.featherlight .featherlight-image{width:100%}
.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch; background: transparent}
.featherlight iframe{border:0;}
.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
@media only screen and (max-width:1024px){
  .featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}
}
@media print{html.with-featherlight>*>:not(.featherlight){display:none}}


/*--------------------------------------------------------------
# Animation
--------------------------------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}


/*--------------------------------------------------------------
# Swipebox
--------------------------------------------------------------*/
/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
          transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url(images/loader.gif) no-repeat center center;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  -webkit-transition: 0.5s;
          transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%;
}

#swipebox-bottom-bar {
  bottom: -50px;
}
#swipebox-bottom-bar.visible-bars {
  -webkit-transform: translate3d(0, -50px, 0);
          transform: translate3d(0, -50px, 0);
}

#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
}

#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}

#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url(images/icons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}

#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}

#swipebox-next {
  background-position: -78px 13px;
  float: right;
}

#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
          animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
          animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
          box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
          box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }

  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #000;
  opacity: 0.95;
}

#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}

/*-------------------------------------------------
# Slick Slider CSS
-------------------------------------------------*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url("images/ajax-loader.gif") center center no-repeat;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 255px;
  display: block;
  width: 35px;
  height: 35px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  opacity:1;
  z-index: 1;
  transition: all .15s ease-in-out;
  min-width: 10px;
}

.slick-prev {
  left: 20px;
  background: url(images/arrow-left.svg) no-repeat;
  background-size: 35px 35px;
}

.slick-slider:hover .slick-prev {

}

.slick-next {
  right: 20px;
  background: url(images/arrow-right.svg) no-repeat;
  background-size: 35px 35px;
}

.slick-slider:hover .slick-next {
  
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: .75;
}

.slick-dotted.slick-slider {
  margin: 0px;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 15px;
  height: 15px;
  padding: 0px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  min-width: 1px;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  background-color: #fff;
  opacity: 1;
}

.slick-dots li button:before {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  content: '';
  text-align: center;
  opacity: .5;
  transition: all 0.15s ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  background-color: #fff;
  opacity: 1;
}


/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a, a:visited {
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: none;
}

a, button, input[type=submit] {
	transition: all ease-in-out 0.15s;
}

.entry-content a {
  color: #e15c25;
  font-weight: 700;
}

.entry-content a:hover {
  text-decoration: underline;
}

a.btn, button {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  display: inline-block;
  padding: 20px 30px 18px;
  border-radius: 40px;
  border-width: 2px;
  border-style: solid;
	margin-bottom: 10px;
	text-align: center;
}

a.btn-transparent a.btn-transparent {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}

a.btn-transparent:hover {
  border-color: #fff;
  color: #19498b;
  background-color: #fff;
}

.entry-content a.btn {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #19498b;
  border-color: #19498b;
}

.entry-content a.btn:hover {
  background-color: #19498b;
  color: #fff;
  text-decoration: none;
}

.entry-content a.btn-transparent {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}

.entry-content a.btn-transparent:hover {
  border-color: #fff;
  color: #19498b;
  background-color: #fff;
}


.play-button-holder a {
display: block;
text-align: center;
}

.play-button-holder span {
	display: block;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 25px;
	font-weight: 700;
	color: #e15c25;
	text-decoration: none;
}

.play-button-holder a .play-button {
margin: 0 auto 10px;
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
border: 3px solid #e15c25;
border-radius: 50px;
background-color: #e15c25;
font-size: 40px;
-webkit-transition: all ease-in-out 0.15s;
transition: all ease-in-out 0.15s;
box-shadow: 0 0 0 rgba(255,255,255,0.8);
animation: pulse 2s infinite;
}

.play-button-holder a .play-button:hover {
background-color: e15c25;
border-color: #fff;
}

.play-button-holder a .play-button i {
	position: relative;
	left: 4px;
	top: -3px;
	color: #fff;
}

.play-button-holder a:hover {
	text-decoration: none !important;
}


@media (max-width: 767px) {
	.entry-content a.btn {
		display: block;
		padding: 10px;
	}
}


/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
body {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 31px;
  line-height: 1.9375rem;
  background-color: #fff;
  color: #4b596d;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
}

.block-width-1300 .container{
	max-width:1350px
}
.narrow-column .container {
  max-width: 1000px;
}
.fullwidth .container {
	max-width: 100%;
}
.threecol-mo .container {
	max-width: 1500px;
	padding-left: 0;
	padding-right: 0;
}

.container:after {
  content: "";
	display: table;
	clear: both;
}

.block {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 800px) {
  .block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}


.grid-colors{
	
}
.grid-colors .column:nth-child(1),
.grid-colors .column:nth-child(8){
	background-color: #8f8f8f
}
.grid-colors .column:nth-child(2),
.grid-colors .column:nth-child(7){
	background-color: #8da4c2
}
.grid-colors .column:nth-child(3),
.grid-colors .column:nth-child(6){
	background-color: #6380a8
}
.grid-colors .column:nth-child(4),
.grid-colors .column:nth-child(5){
	background-color: #19498b
}

/*--------------------------------------------------------------
# WordPress
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*--------------------------------------------------------------
Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
.hero h1 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.hero h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e15c25;
}

.entry-content p {
  margin: 0 0 1.5em;
}

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

.entry-content h2,
p.column-heading,
.threecol-mo h3 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 900;
  color: #19498b;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 40px;
  text-transform: uppercase;
}

.entry-content h2:after,
p.column-heading:after,
.threecol-mo h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #9bbee2;
  width: 50px;
  height: 2px;
}

.entry-content h2.center {
  text-align: center;
}

.entry-content h2.center:after {
  left: 50%;
  margin-left: -25px;
}

.entry-content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 36px;
  line-height: 2.25rem;
  color: #e15c25;
  font-weight: 900;
  margin: 30px 0 10px;
}

.threecol-mo h3 {
	color: #fff;
	margin-bottom: 30px;
	text-align: center;
}

.threecol-mo h3:after {
	left: 50%;
	margin-left: -25px;
	background-color: #fff;
}

.entry-content ul {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
}

.entry-content li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
}

.entry-content ul li:before {
  content: '\2022';
  color: #e15c25;
  display: inline-block;
  width: 1em;
  margin-left: -1em
}

.threecol-mo .entry-content ul li:before {
	color: #fff;
}

.entry-content p.bordered {
  text-align: center;
  border-top: 2px solid #9bbee2;
  border-bottom: 2px solid #9bbee2;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 36px;
  line-height: 2.25rem;
}

@media (max-width: 767px) {
	.entry-content p.bordered {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 28px;
		line-height: 1.75rem;
	}
}

/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding-top: 10px;
  z-index: 999;
  transition: background ease-in-out 0.25s;
}
.site-header .container {
	position:relative
}

.notification-bar {
  background: #e15c25;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
	line-height:20px;
  padding: 10px 0;
  font-weight: 700;
  position: relative;
  top: -10px;
}

.notification-bar a {
  color: #fff;
  text-decoration: underline;
}

.notification-bar a:hover {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 993px) {
	.site-branding {
		float: left;
	}

	.menu-wrapper {
		float: right;
		width: auto;
	}
}

@media (max-width: 62em) {
  .site-header {
    background: #19498b;
    box-shadow: 0 0 10px 1px rgba(5, 58, 88, 0.5);
  }
}

.admin-bar .site-header {
  top: 32px;
}

.header-bg .site-header,
.single-post .site-header,
.page-no-hero .site-header{
  background: #19498b;
  box-shadow: 0 0 10px 1px rgba(5, 58, 88, 0.5);
}

.nav-toggle {
  background: #19498b;
}

.site-branding a {
	display: block;
}

@media (max-width: 992px) {
	.site-branding img {
		max-width: 80px;
		height: auto;
	}
}

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/
.menu-wrapper {
/*   position: relative; */
}

#nav {
  display: block;
}

#nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.responsive-menu-icon {
  display: none;
}

.responsive-menu-icon::before {
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0c9";
  font-size: 25px;
}

.openwide .responsive-menu-icon::before {
  content: "\f00d";
}

#nav .menu {
  clear: both;
  float: right;
  width: auto;
}

#nav li.menu-item {
  display: inline-block;
  float: left;
  margin-bottom: 0;
}

#nav .menu a {
  display: block;
  padding: 10px;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
}

#nav .menu a.VIpgJd-ZVi9od-xl07Ob-lTBxed {
  padding-top: 7px;
  
}

#nav .menu a.VIpgJd-ZVi9od-xl07Ob-lTBxed span:first-child {
  color: #ffffff !important;
}

#nav .menu a.VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  border-color: transparent !important;
}

#nav .menu a.VIpgJd-ZVi9od-xl07Ob-lTBxed span:last-child {
  color: #ffffff !important;
  border-left: 0 !important;
  margin-left: 3px !important;
  font-size: 12px;
}

#nav .menu > li > a {
  padding: 25px 10px 30px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

#nav .menu > li.menu-item-has-children > a {
  position: relative;
  padding-right: 15px;
}

#nav .menu > li:last-child a.goog-te-menu-value,
#google_translate_element {
	display: inline-block;
}

#nav .menu > li:last-child .sep {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	position: relative;
	top: 0;
}
.goog-te-gadget-simple {
    background-color: transparent !important;
    border-left: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-right: none !important;
		font-family: 'Maven Pro', sans-serif !important;
	  font-weight: 700 !important;
	  font-size: 18px !important;
	  font-size: 1.125rem !important;
		text-transform: uppercase !important;
		color: #fff !important;
		padding: 18px 10px 30px !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
	color: #fff !important;
	padding: 0 !important;
}

.goog-te-gadget img {
	display: none !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:nth-of-type(2n) {
	padding: 0 3px;
	color: #fff;
	display: none !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:nth-of-type(3n) {
	padding: 0 3px;
	color: #fff !important;
	font-size: 8px !important;
}

/* Sub-menu Menu Items */
#nav .sub-menu {
  left: -9999px;
  opacity: 0;
  position: absolute;
  transition: opacity .4s ease-in-out;
  width: 280px;
  z-index: 99;
}

#nav ul.sub-menu li {
  margin: 0;
  padding: 0;
}

#nav .sub-menu a {
  position: relative;
  width: 280px;
  padding: 10px 20px;
  background: #e15c25;
	color: #fff;
	font-size: 14px;
	font-size: 0.875rem;
	text-transform: uppercase;
}

#nav .sub-menu a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 270px;
  left: 15px;
  bottom: 0;
}

#nav .sub-menu a:hover {
	background: #cf5522;
}

#nav .sub-menu li.current-menu-item a {
	font-weight: 700;
}

#nav .sub-menu > li:last-child > a {
	border-radius: 0 0 5px 5px;
}

#nav .sub-menu > li:last-child > a:after {
  height: 0;
}

#nav .menu-item:hover {
  position: static;
}

#nav .menu-item:hover > .sub-menu {
  left: auto;
  opacity: 1;
}

/* 2nd level and below Menu Items */
#nav .sub-menu .sub-menu {
  margin: -48px 0 0 219px;
}
@media screen and (max-width: 1110px) {
  .responsive-menu-icon {
	  top:20px;
	}
}
@media screen and (max-width: 1100px) {
	 .responsive-menu-icon { 
		 top: 6px;
	}

}
@media screen and (max-width: 1110px) {
  .responsive-menu-icon {
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
  
    right: 10px;
    z-index: 1;
    text-align: center;
  }
  .menu-wrapper {
    width: 100%;
    padding: 0;
    float: none;
  }
  #nav .menu > .menu-item > .sub-menu,
  #nav .menu {
    display: none;
    float: none;
    width: 100%;
  }
  #nav .menu {
    height: 100vh;
    overflow-y: scroll;
    padding-left: 15px;
    padding-right: 15px;
  }
  #nav .menu .menu-item {
    display: block;
    float: none;
  }
  #nav .menu li.menu-item {
    margin-left: 0;
    margin-bottom: 0;
  }
  #nav .menu li a,
  #nav .menu li a:hover {
    display: block;
    line-height: 1;
    padding: 20px 0;
    text-align: center;
  }
  #nav .menu > li.pill > a {
    padding: 15px 30px;
  }
  #nav .menu li.menu-item-has-children {
    cursor: pointer;
    position: relative;
  }
  #nav .menu > li.menu-item-has-children > a {
    padding-right: 0;
  }
  #nav .menu > li.menu-item-has-children:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 16px;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    right: 0;
    top: 6px;
    z-index: 999;
    position: absolute;
		color: #5e7fae;
  }
  #nav .menu > li.menu-open.menu-item-has-children:before {
    content: "\f077";
  }
  #nav .menu .sub-menu {
    border: none;
    left: auto;
    opacity: 1;
    position: relative;
    transition: opacity .4s ease-in-out;
    width: 100%;
    z-index: 99;
    padding-left: 0;
    padding-right: 0;
  }
  #nav .menu .sub-menu .sub-menu {
    margin: 0;
  }
  #nav .menu .sub-menu li a,
  #nav .menu .sub-menu li a:hover {
    padding: 10px 0;
    position: relative;
    text-transform: none;
    width: 100%;
  }
  #nav .menu .current-menu-item > a,
  #nav .menu .sub-menu a,
  #nav .menu .sub-menu a:hover,
  #nav .menu a:hover,
  #nav .menu li:hover {
    background: none;
  }
  #nav .sub-menu a:after {
    display: none;
  }
  #nav .menu > li.menu-item-has-children > a:after {
    display: none;
  }
}


@media (max-width: 767px) {
	.responsive-menu-icon {
/* 		top: -46px; */
	}

	#nav .menu > li:last-child .sep {
		display: none;
	}

	#nav .menu > li:last-child a.goog-te-menu-value,
	#google_translate_element {
		display: block;
		text-align: center;
	}
}


/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  background-color: #19498b;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.714rem;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

@media (min-width: 992px) {
  .site-footer {
    text-align: left;
  }

  .site-footer .container {
    display: flex;
  }

  .site-footer .widget-area {
    width: 30%;
    margin-left: 5%;
  }

  .site-footer .widget-area:first-child {
    margin-left: 0;
  }
}

.site-footer .widget {
  margin-bottom: 30px;
}

.site-footer h3 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.site-footer h4,
.site-footer p {
  margin: 0 0 15px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer form .cf {
  display: flex;
}

.site-footer input[type=email] {
  background-color: #192246;
  color: #fff;
  border-radius: 25px;
  padding: 15px 15px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  width: 68%;
  font-family: inherit;
}

.site-footer a.btn,
.site-footer button,
.site-footer input[type=submit] {
  padding: 7px 25px;
  display: inline-block;
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  cursor: pointer;
	margin: 0;
}

.site-footer a.btn:hover,
.site-footer button:hover,
.site-footer input[type=submit]:hover {
  background-color: #ffffff;
  color: #192246;
  text-decoration: none;
}

.site-footer form button {
  width: 30%;
  text-align: center;
  margin-left: 2%;
}

.colophon .links a.social {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 30px;
	margin-right: 5px;
}

.colophon .links a.social:hover {
	background-color: #192246;
	border-color: #192246;
}

.colophon .credits {
	line-height: 30px;
}

.footer-badge,
.footer-badge a {
	text-align: center;
	display: block;
}

.footer-badge img {
	width: 100px;
	height: 100px;
	margin: 0 auto;
}

@media (min-width: 992px) {
	.footer-badge a {
		text-align: right;
	}
}

@media (max-width: 992px) {
	.site-footer .widget-area {
		margin-bottom: 50px;
	}

	.site-footer .widget-area:last-child {
		margin-bottom: 0;
	}

	.site-footer form {
		max-width: 300px;
		margin: 0 auto;
	}

	.site-footer form .cf {
		display: block;
	}

	.site-footer form input[type=email] {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}

	.site-footer form button {
		display: block;
		width: 100%;
		margin-left: 0;
	}

	.colophon .links a:last-child {
		display: block;
		margin-top: 20px;
	}

	.colophon .designer {
		display: block;
	}
}


/*--------------------------------------------------------------
# Layout - News
--------------------------------------------------------------*/


/* Blog Archives
---------------------------------------- */
#posts .container {
	max-width: 890px;
	padding-top: 90px;
	padding-bottom: 55px;
}

#posts .teaser {
	padding-bottom: 54px;
	border-bottom: 1px solid #e8ebef;
	margin-bottom: 55px;
}

.teaser .meta {
	margin: 0;
	font-size: 14px;
	line-height: 24px;
}

.meta .sep {
	padding: 0 10px;
}

.teaser h2 {
	margin: 10px 0 30px;
}

.teaser-entry h2 a {
	color: #19498b;
}

.teaser .readmore {
	margin-bottom: 0;
	font-weight: 700;
}

.nav-links a {
	color: #19498b;
}


@media only screen and (max-width: 767px) {
	#posts .container {
	    padding-top: 48px;
	    padding-bottom: 40px;
	}

	#posts .teaser {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.teaser h2 {
	    font-size: 24px;
	    line-height: 28px;
	}
}


/* Single Post
---------------------------------------- */
#post .container {
	max-width: 1015px;
	padding-top: 20px;
	padding-bottom: 55px;
}
.single-post #post {
	padding-top: 100px;
}
#post .entry-header {
	padding-top: 50px;
	margin-bottom: 30px;
}

h1.entry-title {
	font-size: 30px;
	line-height: 35px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 15px;
}

.entry-header .meta {
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	margin: 0;
}

#post .single-more {
	text-align: center;
}

#post .single-more a {
	color: #243E89;
	font-size: 14px;
	line-height: 18px;
	font-weight: 900;
	text-transform: uppercase;
}

#post .single-more a:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	h1.entry-title {
	    font-size: 24px;
	    line-height: 28px;

	}
}


/*--------------------------------------------------------------
# Layout - 2024 Homepage
--------------------------------------------------------------*/
/* Utilities */
.homepage .bold {
  font-weight: 700;
}

.homepage .orange {
  color: #E15C25;
}

.homepage hr {
  width: 88px;
  height: 3px;
  border: none;
  background-color: #9BBEE2;
  margin: 1rem auto;
}

.homepage p.small {
  font-size: 1rem;
}

/* General Structure */
.homepage {
  overflow-x: hidden;
}
.homepage section {
  display: block;
}

/* Section Headings & Footers */
.homepage .section-heading__content {
  text-align: center;
  margin-bottom: 3rem;
}

.homepage .section-heading__content h2 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 700;
  color: #19498B;
  margin-top: 0;
  margin-bottom: 1.125rem;
  text-transform: uppercase;
}

.homepage .section-heading__content p {
  color: #19498B;
  text-transform: uppercase;
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .homepage .section-heading__content h2 {
    font-size: 3.75rem;
    line-height: 4.5rem;
  }
  
  .homepage .section-heading__content p {
    font-size: 1.5rem;
  }
}

/* Hero Video */
.homepage .hero-video {
  position: relative;
  height: 600px;
}

#homepage-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
}

.homepage .hero-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.homepage .hero-video .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage .hero-video__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.homepage .hero-video__content h1 {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem;
}

.homepage .hero-video__content p {
  color: #ffffff;
}

.homepage .hero-video__content a.btn {
  background: url(images/playbutton.svg) left 20px top 10px no-repeat;
  padding: 15px 40px 15px 70px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

.homepage .hero-video__content a.btn:hover {
  background-color: #E15C25;
  border-color: #E15C25;
}

@media (min-width: 992px) {
  .homepage .hero-video {
    height: 1000px;
  }
  
  .homepage .hero-video__content h1 {
    font-size: 3.75rem;
    line-height: 4.75rem;
  }
}

/* Page Introduction */
.homepage .page-intro {
  background-color: #19498B;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow-y: visible;
  z-index: 3;
}

.homepage .page-intro:before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: url(images/background-logo-small.svg) 0 0 no-repeat;
}

.homepage .page-intro__content {
  position: relative;
}

.homepage .page-intro__content .container {
  text-align: center;
  color: #ffffff;
}

.homepage .page-intro__buttons .container {
    margin-top: 2rem;
}

.homepage .page-intro__buttons a.btn {
  color: #ffffff;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  padding: 15px 30px;
  display: block;
  text-align: center;
}

.homepage .page-intro__buttons a.btn:hover {
  background-color: #ffffff;
  color: #19498B;
}

@media (min-width: 992px) {
  .homepage .page-intro:before {
    top: -100px;
    width: 200px;
    height: 200px;
    background-image: url(images/background-logo.svg);
  }
  
  .homepage .page-intro__buttons .container,
  .homepage .page-intro__buttons .container p {
    text-align: center;
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-top: 0;
  }
  
  .homepage .page-intro__content .container {
    position: relative;
    z-index: 2;
    background-color: #19498B;
    border-left: 2px solid #9BBEE2;
    border-right: 2px solid #9BBEE2;
    padding: 50px;
  }
  
  
  .homepage .page-intro__content:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    width: 100%;
    height: 20px;
    background: url(images/homepage-intro-bg.svg) left top repeat-x;
    z-index: 1;
  }
  
  
}

/* Four Columns */
.homepage .columns-four {
  padding-top: 40px;
  padding-bottom: 40px;
}

.homepage .columns-four .column {
  padding: 0 20px;
  text-align: center;
  margin-bottom: 2rem;
}

.homepage .columns-four .column img.icon {
  margin-bottom: 2rem;
}

.homepage .columns-four .column h4 {
  color: #19498B;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 1em 0;
}

.homepage .columns-four .column p {
  font-size: 1rem;
  line-height: 1.35rem;
}

.homepage .columns-four .section-footer {
  text-align: center;
  padding-top: 3rem;
}

.homepage .columns-four .section-footer a.btn {
  padding: 15px 80px;
  text-align: center;
  color: #ffffff;
  border-color: #E15C25;
  background-color: #E15C25;
  font-size: 1.25rem;
}

.homepage .columns-four .section-footer a.btn:hover {
  color: #E15C25;
  border-color: #E15C25;
  background-color: #ffffff;
}

@media (min-width: 992px) {
  .homepage .columns-four {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .homepage .columns-four__columns {
    display: flex;
    justify-content: space-between;
  }
  
  .homepage .columns-four .column {
    flex: 0 0 25%;
    margin-bottom: 0;
  }
}

/* Four Columns with Banner */
.homepage .columns-four__banner {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.homepage .columns-four__banner .section-heading {
  position: relative;
  text-align:center;
  padding-bottom: 1rem;
}

.homepage .columns-four__banner .section-heading h2,
.homepage .columns-four__banner .section-heading p {
  color: #ffffff;
}

.homepage .columns-four__banner .section-heading p {
  text-transform: none;
}

.homepage .columns-four__banner .columns-four__columns {
  column-gap: 20px;
}

.homepage .columns-four__banner .column {
  flex: 0 0 calc(25% - 20px);
  background: rgba(255,255,255,0.25);
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  align-items: stretch;
  color: #ffffff;
}

.homepage .columns-four__banner .column-content {
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  font-weight: 600;
}

.homepage .columns-four__banner .column-content .counter-holder {
  /* html format, for when someone inevitably deletes this:
  <p class="counter-holder">
  <span class="counter" data-count="1900">1,000</span>
  <span class="counter-symbol">%</span>
  </p>
  */
  display: block;
  font-size: 3.75rem;
  line-height: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}


.homepage .columns-four__banner .section-footer {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding-top: 3rem;
}

.benefits-columns.block .container {
  max-width: 1400px;
  text-align: center;
}

.hr-wrapper {
  height: 172px;
  position: relative;
  margin-top: 30px;
}

.hr-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #9BBEE2;
}

/* Three Columns */
.homepage .columns-three {
  padding-top: 40px;
  padding-bottom: 40px;
}

.homepage .columns-three .column {
  margin-bottom: 2rem; 
  text-align: center;
}

.homepage .columns-three .column img.icon {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .homepage .columns-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .homepage .columns-three__columns {
    display: flex;
    justify-content: space-between;
  }
  
  .homepage .columns-three .column {
    flex: 0 0 33.333%;
    position: relative;
    padding: 40px 40px 20px;
    margin-bottom: 0;
  }
  
  .homepage .columns-three .column:nth-child(2):before,
  .homepage .columns-three .column:nth-child(2):after {
    content: '';
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #9BBEE2;
  }
  
  .homepage .columns-three .column:nth-child(2):before {
    left: 0;
  }
  
  .homepage .columns-three .column:nth-child(2):after {
     right: 0;
  }
}

/* Text Image */
.homepage .text-image {
  padding-top: 40px;
  padding-bottom: 40px;
}

.homepage .text-image .img img {
  border-radius: 30px;
}

.homepage .text-image .bd h2,
.homepage .text-image .bd h3 {
  font-size: 2rem;
  line-height: 1.25;
  color: #19498B;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  background: url(images/homepage-intro-bg.svg) left bottom repeat-x;
}

.homepage .text-image .bd p {
  margin: 1.5em 0;
}



@media (min-width: 992px) {
  .homepage .text-image {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .homepage .text-image .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  
  .homepage .text-image.reverse .container {
    flex-direction: row;
  }
  
  .homepage .text-image .img {
    flex: 0 0 50%;
  }
  
  .homepage .text-image.reverse .bd {
    flex: 0 0 50%;
    padding-left: 80px;
  }
  
  .homepage .text-image:not(.reverse) .bd {
    padding-left: 0;
    padding-right: 80px;
  }
  
  .homepage .text-image.align-text-right .bd {
    text-align: right;
  }
  
  .homepage .text-image.align-text-right .bd img {
    display: inline !important;
  }
  
  .homepage .text-image .bd h2,
  .homepage .text-image .bd h3 {
    font-size: 2.25rem;
    margin-top: 0;
  }

}

/* Text Image - Fullwidth */
.homepage .text-image-fullwidth {
  padding-top: 40px;
  padding-bottom: 40px;
}

.homepage .text-image-fullwidth .text-image-wrap {
  position: relative;
  background: #19498B;
}

.homepage .text-image-fullwidth .text-image-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
  display: inline-block;
  width: 100%;
  height: 350px;
}

.homepage .text-image-fullwidth .text-image-content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.homepage .text-image-fullwidth .text-image-content h2,
.homepage .text-image-fullwidth .text-image-content h3 {
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  padding-bottom: 20px;
  margin-bottom: 2rem;
  background: url(images/homepage-intro-bg.svg) left bottom repeat-x;
}

.homepage .text-image-fullwidth .text-image-content p {
  color: #ffffff;
  margin: 1.5em 0;
}

.homepage .text-image-fullwidth .text-image-content a.btn {
  color: #ffffff;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  background: transparent;
  padding: 15px;
  text-align: center;
  display: block;
}

.homepage .text-image-fullwidth .text-image-content a.btn:hover {
  background-color: #ffffff;
  color: #19498B;
}

@media (min-width: 992px) {
  .homepage .text-image-fullwidth .text-image-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    background: url(images/compass-model.svg) left center no-repeat;
    z-index: 3;
  }
  
  .homepage .text-image-fullwidth .text-image-wrap .container {
    position: relative;
    display: flex;
  }
  
  .homepage .text-image-fullwidth .text-image-img {
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
    display: inline-block;
    width: 50%;
    flex: 0 0 50%;
  }
  
  .homepage .text-image-fullwidth .text-image-content {
    flex: 0 0 50%;
    margin-left: 50%;
    padding: 80px 0 80px 140px;
  }
  
  .homepage .text-image-fullwidth .text-image-content a.btn {
    padding: 15px 40px;
    display: inline-block;
  }
}

/* Awards */
.homepage .awards {
  padding-top: 40px;
  padding-bottom: 40px;
}

.homepage .awards__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.homepage .awards__grid .award {
  flex: 0 0 50%;
  padding: 0;
}

@media (min-width: 992px) {
  .homepage .awards {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .homepage .awards-grid-wrapper {
    background: url(images/homepage-intro-bg.svg) left center repeat-x;
  }
  
  .homepage .awards-grid-wrapper .container {
    background: #ffffff;
    border-left: 3px solid #9BBEE2;
    border-right: 3px solid #9BBEE2;
  }
  
  .homepage .awards__grid .award {
    flex: 0 0 16.666%;
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Layout - Homepage
--------------------------------------------------------------*/
.homepage-content {
  clear: both;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.homepage-content .block {
  text-align: center;
	position: relative;
	z-index: 2;
}

.homepage-content .block img.valor-logo {
  margin-bottom: 45px;
	padding-top: 40px;
}

#hero-video {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
}

.homepage-content:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 0;
}

.homepage-content .block a.btn {
  display: block;
  margin-bottom: 10px;
	color: #fff;
	border-color: #fff;
}

.homepage-content .block a.btn:hover {
	color: #19498b;
}

@media (min-width: 768px) and (max-width: 992px) {
	.content {
		margin-top: 61px;
	}

	.homepage-content {
		height: auto;
	}

	.homepage-content .block {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.homepage-content .block a.btn {
    display: inline-block;
    margin: 0 10px;
		padding: 10px;
  }

	.homepage-content .block img.valor-logo {
    max-width: 120px;
		height: auto;
		margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
	.content {
		margin-top: 61px;
	}

	.homepage-content {
		align-items: flex-start;
	}

	.homepage-content .block img.valor-logo {
    max-width: 80px;
		height: auto;
		margin-bottom: 10px;
  }

  .homepage-content .block a.btn {
    padding: 10px;
		display: block;
  }
}

@media (min-width: 500px) and (max-width: 767px) {
	.homepage-content .block a.btn {
    padding: 10px 20px;
		display: inline-block;
  }
}

@media (min-width: 1025px) {
	.homepage-content .block a.btn {
		display: inline-block;
		width: 200px;
		margin: 0 10px;
	}
}


/*--------------------------------------------------------------
# Columns
--------------------------------------------------------------*/
.flex-grid {
  display: flex;
}

.flex-grid .column {
  flex-grow: 1;
}

.flex-grid-halves,
.flex-grid-thirds,
.flex-grid-fourths,
.flex-grid-fifths {
  display: flex;
  justify-content: space-between;
}

.flex-grid-halves .column {
  width: 48.717%;
}

.flex-grid-thirds .column {
  width: 31.62%;
}

.flex-grid-fourths .column {
  width: 23.076%;
}

.flex-grid-fifths .column {
  width: 18.557%;
}

.imagegrid .flex-grid-halves .column {
  width: 50%;
}

.imagegrid .flex-grid-thirds .column {
  width: 33.333%;
}

.imagegrid .flex-grid-fourths .column {
  width: 25%;
}

.space-between .flex-grid-halves .column {
  width: 49.57265%;
}

.space-between .flex-grid-thirds .column {
  width: 32.75%;
}

.threecol-mo .flex-grid-thirds .imagecolumn {
	width: 30%;
}

.threecol-mo .flex-grid-thirds .textcolumn {
	width: 40%;
}

.flex-grid-fourths.flex-grid-two-rows {
	flex-wrap: wrap
}
.grid-colors .flex-grid-fourths.flex-grid-two-rows .column{
	width:25%;
	padding: 50px 40px 50px;
	color:#fff;
	text-align: center;
}
.grid-colors h3,
.grid-colors-2 h3{
	color:#fff;
}
.grid-colors .column p:first-child {
	margin-bottom: 0;
}
.grid-colors .column p:first-child img{
	margin-bottom: -30px;
}
.grid-colors .container {
	padding-left:0;
	padding-right:0;
}
.grid-colors-2.columns-two .flex-grid-fourths {
	flex-wrap: wrap;
}
.grid-colors-2.columns-two .flex-grid-fourths .column {
	width:50%;
	padding: 40px 40px 50px;
	color:#fff;
	text-align: center;
}
.grid-colors-2 .flex-grid-fourths .column:nth-child(1) {
	background-color: #8fa6c5
}
.grid-colors-2 .flex-grid-fourths .column:nth-child(2) {
	background-color: #748faa
}
.grid-colors-2 .flex-grid-fourths .column:nth-child(3) {
	background-color: #4e5f71
}
.grid-colors-2 .flex-grid-fourths .column:nth-child(4) {
	background-color: #465f8e
}

.grid-colors-2 .column img {
	display:block;
	width:100%;
	margin: 0 auto 30px;
}

.students-stats {
	background: url(images/bg-students-stats1.jpg) no-repeat center / cover;
	padding: 100px 0;
	color:#fff;
	text-align: center;
}
.students-stats h2{
	color:#fff;
}
.students-stats h3 {
	color: #fff;
 	font-size: 50px;
 	font-weight: 400;
 	margin: 20px 0 30px;
}

.students-stats .flex-grid-fourths .column {
	background:rgba(255,255,255,0.25);
	padding: 20px 30px 40px;
	font-size: 16px;
	line-height: 20px;
}
@media (max-width: 1000px) {
	.threecol-mo .flex-grid-thirds, {
    display: block;
  }

	.threecol-mo .flex-grid-thirds .column {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .flex-grid,
  .flex-grid-halves,
  .flex-grid-thirds,
  .flex-grid-fourths,
	.flex-grid-fifths,
  .imagegrid .flex-grid,
  .imagegrid .flex-grid-halves,
  .imagegrid .flex-grid-thirds,
  .imagegrid .flex-grid-fourths {
    display: block;
  }
  .flex-grid .column,
  .flex-grid-halves .column,
  .flex-grid-thirds .column,
  .flex-grid-fourths .column,
	.flex-grid-fifths .column,
  .imagegrid .flex-grid .column,
  .imagegrid .flex-grid-halves .column,
  .imagegrid .flex-grid-thirds .column,
  .imagegrid .flex-grid-fourths .column {
    width: 100%;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Hero Block
--------------------------------------------------------------*/
.hero {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero .container {
  min-height: 650px;
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.hero .valign p {
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
  line-height: 2.5rem;
  font-weight: 900;
  color: #fff;
  max-width: 600px;
  text-transform: uppercase;
  margin: 40px 0 0;
}

.hero .valign a {
  color: #fff;
  text-decoration: underline;
}

.hero .valign a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
	.hero .container {
		min-height: 300px;
	}

	.hero .valign p {
		font-size: 20px;
		font-size: 1.25rem;
		line-height: 30px;
		line-height: 1.875rem;
	}
}

/*--------------------------------------------------------------
# Banner Block
--------------------------------------------------------------*/
.banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.8);
}

.banner .container {
  min-height: 300px;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.banner .valign {
	color: #19498b;
  text-align: center;
}

.banner .valign p.large {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
	margin: 0;
}

.banner .valign a {
  color: #e15c25;
  text-decoration: none;
}

.banner .valign a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
	.banner .container {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.banner .valign p.large {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 28px;
		line-height: 1.75rem;
	}
}


/*--------------------------------------------------------------
# Image Grid
--------------------------------------------------------------*/
.imagegrid {
  padding-top: 0;
  padding-bottom: 0;
}

.imagegrid + .imagegrid {
  margin-top: 10px;
}

.imagegrid .column {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  height: 400px;
}

.imagegrid .flex-grid-thirds .column,
.imagegrid .flex-grid-fourths .column {
  height: 300px;
}

@media (max-width: 767px) {
	.imagegrid .column {
		height: 200px;
		margin-bottom: 0;
	}

	.imagegrid .flex-grid-halves .column:last-child {
		margin-bottom: 0;
	}
}

/*--------------------------------------------------------------
# Three Column Media Block
--------------------------------------------------------------*/
.threecol-mo {
	padding-top: 0;
	padding-bottom: 0;
}

.threecol-mo .column {
	min-height: 300px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.threecol-mo .textcolumn {
	background-color: #e15c25;
	padding: 15px 30px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.threecol-mo .entry-content {
	text-align: center;
}

.threecol-mo .entry-content ul {
	text-align: left;
}

.threecol-mo a {
	color: #fff;
}


/*--------------------------------------------------------------
# Media Object
--------------------------------------------------------------*/
.media-object {
	overflow: hidden;
}

.media-object .img {
	float: left;
	width: 30%;
}

.media-object .bd {
	float: right;
	width: 66.66%;
}

@media (max-width: 992px) {
	.media-object {
		display: block;
	}

	.media-object .img,
	.media-object .bd {
		text-align: center;
		float: none;
		width: 100%;
	}

	.media-object h2 {
		text-align: center;
		margin-top: 20px;
	}

	.media-object h2:after {
		left: 50%;
		margin-left: -25px;
	}
}


/*--------------------------------------------------------------
# Matrix
--------------------------------------------------------------*/
.matrix .flex-grid-fourths {
  min-height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.matrix .flex-grid-fourths .column {
  display: flex;
  flex-basis: 50%;
  justify-content: center;
  flex-direction: row-reverse;
	align-items: flex-start;
	padding: 40px 40px 10px;
}
.matrix .flex-grid-fourths .column .bd {
	width: 70%;
}

.matrix .flex-grid-fourths .column > p {
	margin-left: auto;
}

.matrix .column:nth-child(odd) {
	border-right: 1px solid #e8ebef;
}

.matrix .column:first-child,
.matrix .column:nth-child(2) {
	border-bottom: 1px solid #e8ebef;
}

/* .matrix img {
	width: 100%;
	height: auto;
} */

.matrix h3 {
	margin-top: 0;
}

@media (max-width: 1000px) {
	.matrix .flex-grid-fourths {
		display: block;
		width: 100%;
	}

	.matrix .flex-grid-fourths .column {
	  flex-basis: 100%;
		width: 100%;
	  flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		padding: 20px 0;
		border: 0 !important;
	}

	.matrix .flex-grid-fourths .column .bd {
		width: 70%;
	}

	.matrix .flex-grid-fourths .column > p {
		margin-left: 0;
		width: 25%;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.matrix .flex-grid-fourths .column {
		display: block;
		padding: 20px 0 0;
	}

	.matrix .flex-grid-fourths .column .bd,
	.matrix .flex-grid-fourths .column > p {
		width: 100%;
		text-align: center;
	}
}


/*--------------------------------------------------------------
# Team (shortcode)
--------------------------------------------------------------*/
.team-row {
	clear: both;
	max-width: 1070px;
	margin: 0 auto 30px;
	padding: 40px 20px 30px;
}

.team-row:first-child {
	padding-top: 0;
}

.team-row .team-member {
	float: left;
	width: 22%;
	margin-left: 4%;
	position: relative;
	text-align: center;
	font-size: 14px;
	line-height: 16px;
}

.team-member:hover h3{
	color: #E25B26;
}

.team-row .team-member:nth-child(4n+1) {
	clear: both;
	margin-left: 0;
}

.team-member .post-thumb {
	overflow: hidden;
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}

.team-member img {
	display: block;
	width: 100%;
	height: auto;
	transition: all .2s ease-in-out;
	margin: 0 auto;
	max-width: 200px;
}

.team-member:hover img {
	transform: scale(1.05);
}

.team-member .member-info {
	display: none;
}

.team-member h3 {
	margin: 8px 0 0 0;
}

.team-member p {
	margin: 0;
}

.team-member .member-caption {
	font-size: 14px;
	line-height: 18px;
	padding: 5px 0 0
}

.team-member p.more-info {
	margin: 0;
	display: none;
}
.team-member p.more-info a {
	background: #1c2c76 none repeat scroll 0 0;
	border-radius: 5px;
	color: #fff;
	display: none;
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	margin: 15px 0 0;
	padding: 10px 20px;
}

.summary.fullwidth {
	position: relative;
	background: rgba(154,190,227,0.3);
	display: none;
}
.summary.fullwidth > p {
	display: none;
}
.summary.fullwidth .container {
	max-width: 1022px;
	margin: 0 auto;
	padding: 45px 20px;
}
.summary.fullwidth .close-container {
	position: relative;
	padding: 0;
	margin: 0 auto;
	max-width: 1022px;
}
.summary.fullwidth a.close {
	background: url(images/closePanel.png) top left no-repeat;
    background-size: 40px 20px;
    border: none;
    display: block;
    height: 20px;
    overflow: hidden;
    position: absolute;
    right: 20px;
    top: 45px;
    width: 20px;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.summary.fullwidth .member-info p {
	margin: 0 0 20px;
}
.summary.fullwidth .member-info h4 {
	text-align: left;
	margin: 0;
}
.summary.fullwidth .member-info p.team-title {
	text-align: left;
	margin: 0 0 10px;
}
.summary.fullwidth .member-info p.close {
	display: none;
}
.editor-team-grid .entry-content {
	overflow: visible;
}
/*-------------------------------------------------
# POP UP CAPTION
-------------------------------------------------*/
.popover__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 113%;
    margin-left: -150px;
    transform: translate(0,10px);
    background-color: #f2f6fa;
    padding: 10px 15px 20px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    width: 300px;
    border:3px solid #9abee3
}
.popover__content:before {
    position: absolute;
    z-index: -1;
    content: '';
    right: calc(50% - 10px);
    top: -10px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #9abee3 transparent;
    transition-duration: 0.3s;
    transition-property: transform;
}
.team-member:hover .popover__content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0,-20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.popover__message {
  text-align: center;
}

@media only screen and (max-width: 768px) {
	.team-row {
		padding: 0;
	}
	.team-member p.more-info a{
		display: inline-block;
	}
	.team-row .team-member,
	.team-row .team-member:nth-child(4n+1) {
		float: none;
		width: 100%;
		margin:0 auto 40px;
		text-align: center;
		padding: 0 20px;
		max-width: 400px;
	}
	.team-row .team-member .member-info{
		background: #e0ebf6;
		margin-top: 20px;
		margin-left:-20px;
		margin-right: -20px;
		padding: 40px 20px;
		position: relative;

	}
	.member-info h4 {
		margin: 0;
	}
	.member-info p.team-title {
		font-size: 16px;
		font-weight: 700;
		margin: 0 0 25px;
	}
	.member-info p {
		font-size: 16px;
	}
	.member-info p.close a{
		background: url(images/closePanel.png) top left no-repeat;
	    background-size: 20px 10px;
	    border: none;
	    display: block;
	    height: 10px;
	    overflow: hidden;
	    position: absolute;
	    right: 20px;
	    top: 30px;
	    width: 10px;
	    -webkit-transition: none;
	    -moz-transition: none;
	    transition: none;
	}
	.member-info p.close a:hover {

	}
	.team-member .post-thumb {
		max-width: 100%;
	}
	.team-member img {
		max-width: 400px;
	}
	.popover__content {
		opacity: 1;
		visibility: visible;
		position: relative;
		left: auto;
		top: auto;
		margin: 0 auto;
		width: 100%;
		border: 0;
		padding: 0;
		box-shadow: none;
		background-color: transparent;
		transform: ate(0,0);
		margin-bottom: 20px;
	}
	.popover__content:before{
		display: none;
	}
}

.gallery-block {
	text-align: center;
	background: #f2f6fa;
}

/*--------------------------------------------------------------
# Custom Column Blocks
--------------------------------------------------------------*/
/* Watermarked blocks */
.compass-watermark {
  background-image: url(images/compass-watermark.png);
  background-position: right top 40px;
  background-repeat: no-repeat;
}

.valor-watermark {
	background-image: url(images/valor-watermark.png);
  background-position: right top 40px;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
	.valor-watermark,
	.compass-watermark {
		background-size: 75%;
		background-position: right bottom;
	}
}

/* Call to action block */
.call-to-action,
.bg-blue {
  background-color: #f2f6fa;
}

.call-to-action {
	text-align: center;
}

.call-to-action p {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 900;
  color: #19498b;
  text-transform: uppercase;
}

@media (max-width: 767px) {
	.call-to-action p {
		font-size: 20px;
		font-size: 1.25rem;
		line-height: 30px;
		line-height: 1.875rem;
	}
}

/* Featured Staff Members */
.staff-twocol {
	overflow: hidden;
	max-width: 630px;
	margin: 0 auto;
}

.staff-member {
	text-align: center;
	margin-bottom: 40px;
}

.staff-member .member-name {
    font-size: 1.25rem;
    line-height: 1.6rem;
    color: #19498b;
    font-weight: 900;
    margin: 10px 0 0;
	display: block;
	text-align: center;
}

.staff-member .member-role {
	display: block;
	color: #4b596d;
	font-size: 0.875rem;
}

@media (min-width: 992px) {
	.staff-twocol .staff-member {
		float: left;
		width: 48%;
		margin-left: 4%;
	}

	.staff-twocol .staff-member:first-child {
		margin-left: 0;
	}
}

/* Important Dates */
.calendar-item {
	background-color: #f2f6fa;
	padding: 30px 20px;
}

.calendar-item .day {
	color: #e15c25;
	font-weight: 900;
	font-size: 28px;
	font-size: 1.75rem;
	line-height: 28px;
	line-height: 1.75rem;
}

.calendar-item .month {
	color: #e15c25;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 28px;
	line-height: 1.75rem;
}

.calendar-item .details {
	display: block;
	margin-top: 30px;
}

/* Google Calendar instructions */
#family-calendar .entry-content p,
#family-calendar .entry-content ol {
	font-size: 14px;
	line-height: 20px;
}

#family-calendar .entry-content ol {
	list-style: decimal;
	margin-left: 1em;
	margin-bottom: 1em;
}

/* Quote/Testimonial pieces */
.quote {
	text-align: center;
	padding-top: 110px;
	background: url(images/quote-icon.png) center top no-repeat;
}

.quote img {
	border-radius: 50%;
	margin-top: 40px;
}

.quote .author {
	display: block;
	text-align: center;
	font-weight: 700;
	color: #e15c25;
	margin-top: 10px;
}

@media (max-width: 767px) {
	.quote {
		padding-top: 60px;
		background-size: 46px 38px;
	}
}

/* Global Block paddings */
.no-top-margin {
	padding-top: 0;
}

.no-bottom-margin {
	padding-bottom: 0;
}

.no-margin {
	padding-top: 0;
	padding-bottom: 0;
}
/*-------------------------------------------------
# MODAL BOX
-------------------------------------------------*/
.modal,
.modal-box {
  z-index: 99999;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,.8);
  overflow: auto;
}

.modal-box {
  position: relative;
  width: 94%;
  max-width: 640px;
  margin: 100px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}

.modal-header {
  padding: 20px 40px;
  background: #546E7A;
  color: #ffffff;
}

.modal-body {
  background: #ECEFF1;
  padding: 40px 40px 40px;
	position:relative;
}
.modal-body a {
	display:block
}
.modal-body img {
	display:block;
	width:100%;
	max-width: 100%;
	margin: 0 auto 0px;
}
.modal-body h3 {
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 32px;
	line-height: 2rem;
	font-weight: 900;
	color: #19498b;
	position: relative;
	margin: 0 0 20px;
	text-transform: uppercase;
	text-align: center;
}
.modal-body iframe{
	display:block;
	width:100%;
	max-width: 100%;
	margin: 0 auto 0px;
}

/* Close Button */
.close-modal {
  text-align: right;
  cursor: pointer;
	position:absolute;
	right: 15px;
	top: 15px;
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}


/*--------------------------------------------------------------
# Video Grid
--------------------------------------------------------------*/
.video-grid-wrapper {
	margin-bottom: 50px;
}
.video-grid__item {
	margin-bottom: 40px;
	background: #fafafa;
	color: #4b596d;
	-webkit-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}

.video-grid__item:hover {
	background: #f2f2f2;
}

.video-grid__item .video-image {
	position: relative;
}

.video-grid__item .video-image .play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 24px;
  height: 30px;
  border-radius: 50%;
  padding: 10px 12px 10px 20px;
}

.video-grid__item .video-image .play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #e15c25;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-grid__item .video-image .play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #e15c25;
  border-radius: 50%;
  transition: all 200ms;
}

.video-grid__item .video-image .play-button:hover:after {
  background-color: darken(#e15c25, 10%);
}

.video-grid__item .video-image .play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 24px solid #fff;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


.video-grid__item .video-quote {
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	padding: 30px 20px 40px;
}

.video-grid__item .quote__text {
	margin: 0 0 1em;
}

.video-grid__item .quote__author {
	font-size: 14px;
	line-height: 24px;
}

@media (min-width: 992px) {
	.video-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.video-grid__item {
		flex: 0 0 48%;
	}
}

@media (max-width: 767px) {
	#swipebox-close {
		right: 10px;
		top: 40px;
	}
}
.entry-content p.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin-top: 60px;
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*--------------------------------------------------------------
# Video Slider
--------------------------------------------------------------*/
.video-slider-wrapper {
    margin-bottom: 50px;
}
.video-slider-wrapper .container {
	max-width: 1000px;
}
.video-slider__item {
    margin-bottom: 0px;
    background: #fafafa;
    display: block;
    color: #4b596d;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

.video-slider__item:hover {
    background: #f2f2f2;
}

.video-slider__item .video-image {
    position: relative;
}

.video-slider__item .video-image .play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 24px;
  height: 30px;
  border-radius: 50%;
  padding: 10px 12px 10px 20px;
}

.video-slider__item .video-image .play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #e15c25;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-slider__item .video-image .play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #e15c25;
  border-radius: 50%;
  transition: all 200ms;
}

.video-slider__item .video-image .play-button:hover:after {
  background-color: darken(#e15c25, 10%);
}

.video-slider__item .video-image .play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 24px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


.video-slider__item .video-quote {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    padding: 30px 20px 40px;
}

.video-slider__item .quote__text {
    margin: 0 0 1em;
}

.video-slider__item .quote__author {
    font-size: 14px;
    line-height: 24px;
}

@media (min-width: 992px) {
    .video-slider {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .video-slider__item {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    #swipebox-close {
        right: 10px;
        top: 40px;
    }
}
.entry-content p.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-top: 60px;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.simple-banner-scrolling + #page header {
	/* margin-top:0 !important; */
}

body.logged-in .hide-block {
	display: block;
}
.hide-block {
	display: none;
}


/*--------------------------------------------------------------
# Block Logos Grid
--------------------------------------------------------------*/
.logos-grid-wrapper {
	padding-top:0;
	padding-bottom:50px
}
.logo-wrapper {
  margin-bottom: 30px;
  width: 50%;
	margin-left:auto;
	margin-right:auto;
}
.logos-grid{
	display:flex;
	flex-wrap:wrap;
}


.logo-wrapper .client-logo {
  padding: 0px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.logo-wrapper .client-logo span {
  display: block;
  width: 100%;
}

.logo-wrapper .client-logo img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  max-height: 100%;
}

@media only screen and (min-width: 480px) {
  .logos-grid .logo-wrapper {
    width: 33.3333334%;
  }
}
@media only screen and (min-width: 768px) {
  .logos-grid .logo-wrapper {
    width:  25%;
  }
}

@media only screen and (min-width: 1024px) {
  .logos-grid .logo-wrapper {
    width:  16.666667%;
  }
}

.page-no-hero #content .block:first-child {
	padding-top: 100px
}
@media only screen and (min-width: 992px) {
	.page-no-hero #content .block:first-child {
		padding-top: 200px
	}
}

.career-pathways-btns {
	display: block;
	width: 100%;
	justify-content: space-between;
	padding-top:20px
}
@media only screen and (min-width: 768px) {
	.career-pathways-btns {
		display: flex;
	}
}
.career-pathways-btns a {
	line-height:1.1;
	max-width: 350px;
	width:100%;
	margin-inline: auto;
}
@media only screen and (min-width: 768px) {
	.career-pathways-btns a{
		flex: 0 0 32%;
		max-width: 32%;
		display:flex !important;
		align-items:center;
		justify-content:center
	}
}



/*--------------------------------------------------------------
# Block Career Pathway
--------------------------------------------------------------*/
.block-career-pathway {
	padding-top: 50px;
	padding-bottom: 50px;
	
}
.block-career-pathway.no-top-margin {
	padding-top:0;
}
@media only screen and (min-width: 768px) {
	.block-career-pathway {
		padding-top:100px;
		padding-bottom:50px
	}
	
}


@media only screen and (max-width: 767px) {
	.block-career-pathway .entry-content h2 {
		text-align:center;
	}
	.block-career-pathway  .entry-content h2::after {
		left: 50%;
		margin-left: -25px;
	}
}
.block-career-pathway .container{
	max-width:1230px
}
.career-pathway-wrapper{

}
@media only screen and (min-width: 768px) {
	.career-pathway-wrapper{
		display: flex;
		flex-wrap: wrap;
	}
}
.career-photo {
	max-width:500px;
	width:100%;
	margin: 0 auto 30px;
}
@media only screen and (min-width: 768px) {
	.career-photo {
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
		margin-bottom:50px;
	}
}
.career-photo-inner {
	position: relative;	
}
.career-photo img {
	display:block
}
.career-photo h3 {
	position:absolute;
	left:0;
	bottom:0;
	background:#E15C25;
	color:#fff;
	font-family: 'Maven Pro', sans-serif;
	font-size: 28px;
	line-height:37px;
	font-weight:700;
	padding: 25px;
}

.career-content {
	max-width:500px;
	width:100%;
	margin: 0 auto 40px;
	color:#19498B;
	font-size:16px;
	line-height:22px;
}
@media only screen and (min-width: 768px) {
	.career-content {
		flex: 0 0 50%;
		max-width: 50%;
		position: relative;
		margin-left:4.333333%;
	}
}
@media only screen and (min-width: 992px) {
	.career-content {
/* 		font-size:18px;
		line-height:24px; */
		
	}
}
@media only screen and (min-width: 1440px) {
	.career-content {
		margin-left:8.333333%;
	}
}
.career-content-years {
	display:flex;
	flex-wrap: wrap;
	padding-bottom:25px;
	justify-content:center;
}
@media only screen and (min-width:768px) {
	.career-content-years {
		justify-content:left;
	}
}
.years-valor {
	flex: 0 0 50%;
	max-width: 150px;
	margin-bottom:25px;
	text-align:center;
}

.years-education {
	flex: 0 0 50%;
	max-width: 150px;
	margin-bottom:25px;
	text-align:center;
}

@media only screen and (min-width: 540px) {
	.years-valor,
	.years-education {
		max-width: 200px;
	}
}
@media only screen and (min-width: 768px) {
	.years-valor,
	.years-education {
		text-align:left;
	}
}
.years-valor strong,
.years-education strong{
	color: #E15C25;
	font-size: 75px;
	line-height:78px;
	font-weight: 700;
	display:block;
}
.years-valor span,
.years-education span{
	display:block;
	color:#19498B;
	text-transform:uppercase;
	font-weight:700;
	max-width:100px;
	width:100%;
	margin-inline: auto;
}

@media only screen and (min-width: 540px) {
	.years-valor span,
	.years-education span{
		max-width:100%;
	}
}
.career-content-text {
	background:url(images/icon-quote-2.png) no-repeat top center / 66px auto;
	padding-top: 80px;
}
@media only screen and (min-width: 768px) {
	.career-content-text {
		background-position: top left;
	}
}
.career-content-text p {
	margin: 0 0 20px;
}
.career-content-text p:last-child {
	margin:0;
}

.career-timeline {
	position: relative;
	padding: 20px 0 20px 30px;
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}
.career-timeline:before {
	content:"";
	display:block;
	height:100%;
	width: 2px;
	background:#E15C25;
	position:absolute;
	left:10px;
	top:0;
}

@media only screen and (min-width: 768px) {
	.career-timeline {
		max-width: 100%;
		display:flex;
		flex-wrap:wrap;
	}
	.career-timeline:before {
		display:none;
	}
}

.career-timeline-item {
	font-size:18px;
	line-height: 24px;
	color:#19498B;
	margin-bottom: 50px
}
.career-timeline-item:last-child {
	margin-bottom:0;
}
@media only screen and (min-width: 768px) {
	.career-timeline-item {
		flex: 0 0 25%;
		position:relative;
		text-align:center;
		padding: 0 10px 52px;
		font-size:14px;
	    line-height: 18px;
	}
	
	.career-timeline-item:last-child {
		margin-bottom:50px;
	}
	.career-timeline-item:before {
		content:"";
		display:block;
		background:#E15C25;
		height:2px;
		width: 100%;
		position:absolute;
		left:0;
		bottom:35px;
	}
	
	.career-timeline.timeline-items-single-row .career-timeline-item {
		flex: 1;
	}
}
@media only screen and (min-width: 1024px) {
	.career-timeline-item {
		flex: 0 0 20%;
		padding: 0 10px 52px;
	}
}
@media only screen and (min-width: 1200px) {
	.career-timeline-item {
		flex: 0 0 16.66667%;
		padding: 0 10px 52px;
	}
}

@media only screen and (min-width: 1300px) {
	.career-timeline-item {
		font-size:18px;
		line-height: 24px;
	}
}
.career-timeline-item-year {
	position:relative;
}
.career-timeline-item-year:before {
	content: "";
	display: block;
	height: 20px;
	width: 20px;
	background: #fff;
	border: 2px solid #E15C25;
	border-radius: 24px;
	position: absolute;
	left: -29px;
	bottom: -8px;
}
@media only screen and (min-width: 768px) {
	.career-timeline-item-year {
		position:absolute;
		bottom:0;
		left:50%;
		transform: translateX(-50%)
	}
	.career-timeline-item-year:before {
		left:50%;
		transform: translateX(-50%);
		bottom: 26px
	}
}
.career-timeline-item-desc {
	font-weight:700;
}
@media only screen and (min-width: 768px) {
	.career-timeline-item-desc {
		width:100%;
		display:flex;
		height:100%;
		align-items:end;
		justify-content:center;
		max-width:200px;
		margin: 0 auto;
	}
}

/* Two Columns Addition - 8/4/23 */
.two-columns {
	text-align: center;
}

.two-columns-column {
	margin-bottom: 40px;
}

.entry-content .two-columns p {
	margin: 0 auto;
}

.entry-content .show-profile p.profile-name {
	font-weight: bold;
	color: #e15c25;
	margin-bottom: 0;
}

.entry-content .show-profile p.profile-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 16px;
}

.entry-content .show-profile p.profile-contact {
	margin-top: 5px;
	font-size: 16px;
	line-height: 20px;
}

.entry-content .show-profile p.profile-contact a {
	color: #4b596d;
	font-weight: normal;
}

.entry-content .show-profile p.profile-contact a:hover {
	color: #19498b;
}

@media (min-width: 992px) {
	.two-columns {
		max-width: 750px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}
	
	.two-columns-column {
		flex: 0 0 47%;
	}
}

.site-footer .footer-col-2 {
	display: none;
}
.site-footer .footer-col-3{
	margin-left:auto
}