  @charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/*
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

*/
/*
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*/
/*
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

*/
/*
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*/
/* Branding colours */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

*/
/*
FONT FACE (IN YOUR FACE)
*/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
@font-face {
  font-family: "product_sansregular";
  src: url("/wp-content/themes/corpuschristi/library/fonts/product_sans_regular-webfont.woff2") format("woff2"), url("/wp-content/themes/corpuschristi/library/fonts/product_sans_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "product_sans_lightregular";
  src: url("/wp-content/themes/corpuschristi/library/fonts/product_sans_light-webfont.woff2") format("woff2"), url("/wp-content/themes/corpuschristi/library/fonts/product_sans_light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*  @font-face {
      font-family: 'Font Name';
      src: url('/wp-content/themes/corpuschristi/library/css/library/fonts/font-name.eot');
      src: url('/wp-content/themes/corpuschristi/library/css//wp-content/themes/corpuschristi/library/css/library/fonts/font-name.eot') format('embedded-opentype'),
             url('/wp-content/themes/corpuschristi/library/css/library/fonts/font-name.woff') format('woff'),
             url('/wp-content/themes/corpuschristi/library/css/library/fonts/font-name.ttf') format('truetype'),
             url('/wp-content/themes/corpuschristi/library/css/library/fonts/font-name.svg') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
  font-family: open-sans, sans-serif;
}

/***
// Typoagraphy Global Styles
**/
p {
  font-family: "product_sans_lightregular", "Helventica Neau", Helvetica, Arial, sans-serif;
  color: #505050;
  font-weight: 400;
  -ms-hyphens: none;
      hyphens: none;
  line-height: 1.8;
}

li {
  font-family: open-sans, sans-serif;
  color: #505050;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (min-width: 992px) {
  p, li {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  p, li {
    font-size: 1.15em;
  }
}
b, strong {
  font-family: "product_sansregular", "Helventica Neau", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

/*
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

*/
/*
TRANSITION
*/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*
Backgrounds
*/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include backgroundsize(all 0.2s ease-in-out);
*/
/*
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*
BOX SIZING
*/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*
CSS3 TRANSITIONS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*/
html {
  overflow-x: hidden;
}

.sj-max-width {
  max-width: 1920px;
  margin: 0 auto;
}

a, .hl-learn-more, .card_date, .filter-item {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  font-family: futura-pt, sans-serif;
  font-style: normal;
}

h1 {
  font-weight: 600;
  color: #093154 !important;
}

h2 {
  font-weight: 500;
  color: #093154 !important;
}

h3, h4, h5, h6 {
  font-weight: 500;
  color: #0D7F9E !important;
}

h4 {
  font-size: 21px !important;
}

em {
  font-style: italic;
}

.upper-menu li > a,
.lower-menu li > a,
.footer-link-list li a,
p,
.events-highlight h3 {
  font-family: open-sans, sans-serif;
}

.sub-menu li > a {
  font-family: futura-pt, sans-serif;
}

.bg-center {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.btn-primary,
.wp-block-button__link,
.wp-block-button > a {
  display: inline-block;
  text-decoration: none;
  background-color: #093154;
  color: #fff !important;
  padding: 0.3rem 3.4375rem;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out all;
  transition: 0.25s ease-in-out all;
  border: 1px solid #093154;
  text-align: center;
}

.btn-primary:hover,
.wp-block-button__link:hover,
.wp-block-button > a:hover {
  color: #093154 !important;
  background-color: transparent;
}

.btn-primary:focus,
.wp-block-button__link:focus,
.wp-block-button > a:focus {
  color: #fff !important;
  background-color: #093154;
  border-color: #093154;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary:active:focus {
  color: #fff !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-ghost {
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  color: #093154;
  padding: 0.3rem 3.4375rem;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out all;
  transition: 0.25s ease-in-out all;
  border: 1px solid #093154;
  text-align: center;
}

.btn-ghost:hover {
  color: #fff;
  background-color: #093154;
}

img {
  max-width: 100%;
}

.box-shadow-left {
  -webkit-box-shadow: -6px -6px #EBF3FF;
          box-shadow: -6px -6px #EBF3FF;
  border-radius: 4px;
}

.box-shadow-right {
  -webkit-box-shadow: 6px -6px #EBF3FF;
          box-shadow: 6px -6px #EBF3FF;
}

.general-padding {
  padding: 2rem 30px;
}

@media screen and (min-width: 576px) {
  .btn-primary,
  .btn-ghost {
    padding: 0.3rem 4.4375rem;
  }
}
@media screen and (min-width: 992px) {
  .general-padding {
    padding: 2rem 100px 100px;
  }
}
@media screen and (min-width: 1200px) {
  .btn-primary,
  .btn-ghost {
    padding: 0.3rem 6.4375rem;
  }
}
/***
Header
**/
.navbar {
  background-color: #093154;
}

.upper-menu,
.lower-menu {
  display: none;
}

.nav-menu {
  margin: 15px 0;
}

#header_logo {
  width: 240px;
}

#offcanvasRight {
  background-color: #093154;
}

.mobile-nav {
  text-align: center;
}

.mobile-lower-menu,
.mobile-lower-menu,
.sub-menu {
  padding: 0;
  text-align: center;
}

.offcanvas-header .btn-close {
  padding: 0;
  height: 2px;
  width: 30px;
  background-color: transparent;
  opacity: 1;
  margin: 20px 1rem 20px 0;
  position: relative;
}

.offcanvas-header .btn-close:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.offcanvas-header .btn-close:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#menu-upper-menu-1 li a,
#menu-lower-menu li a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #fff;
}

#mobileMenuFooter {
  text-align: center;
  margin: 3rem 0 0;
}

#mobileMenuFooter p, #mobileMenuFooter a {
  font-family: open-sans;
  color: #fff;
  font-size: 0.7rem;
  text-decoration: none;
}

.sub-menu li a {
  font-size: 0.9rem;
}

.menu-item {
  margin: 5px 0;
  padding: 10px 0 5px;
}

.menu-item.menu-item-has-children {
  position: relative;
}

.search-icon.menu-item i {
  color: #fff;
  cursor: pointer;
}

@media screen and (min-width: 576px) {
  .offcanvas-header .btn-close {
    margin: 20px 1.5rem 20px 0;
  }
}
@media (min-width: 900px) {
  .navbar {
    padding: 0;
  }
  .upper-menu,
  .lower-menu {
    display: block;
  }
  .nav-menu {
    margin: 15px 30px;
  }
  #header_logo {
    width: 300px;
  }
  .upper-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
  }
  .upper-menu li {
    margin: 0 15px;
  }
  .upper-menu li a {
    text-decoration: none;
    color: #fff;
  }
  .lower-menu {
    width: 100%;
    -webkit-box-shadow: 0px 3px 6px rgba(9, 49, 84, 0.1411764706);
            box-shadow: 0px 3px 6px rgba(9, 49, 84, 0.1411764706);
    margin: 0;
    padding: 0;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    position: relative;
  }
  .lower-menu li {
    margin: 15px 0;
    padding: 10px 0;
  }
  .lower-menu li a {
    color: #093154;
    text-decoration: none;
  }
  .sub-menu {
    text-align: left;
    position: absolute;
    top: 50px;
    left: -67px;
    visibility: hidden;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    background-color: #fff;
    width: 100vw;
  }
  .sub-menu li {
    margin: 0;
  }
  .sub-menu li,
  .sub-menu li a {
    color: #093154;
    -webkit-transition: color 0.25s;
    transition: color 0.25s;
  }
  .sub-menu li a:hover {
    color: #f15e22;
  }
  .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    top: 60px;
  }
}
@media (min-width: 992px) {
  #header_logo {
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .nav-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #menu-main-menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .menu-item {
    margin: 5px 25px;
    padding: 5px 15px;
  }
}
@media (min-width: 1700px) {
  .sub-menu {
    width: 350px;
    padding: 10px 0 10px 5px;
  }
}
/***
Burger Menu
**/
.navbar .hamburger {
  display: block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: transparent;
  margin-right: 1rem;
}

.hamburger-inner {
  height: 2px;
  width: 30px;
  position: relative;
  right: 0;
  background-color: #fff;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  border-radius: 4px;
}

.hamburger-inner:before,
.hamburger-inner:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-color: #fff;
}

.hamburger-inner:before {
  top: 6px;
}

.hamburger-inner:after {
  bottom: 6px;
}

.navbar #menu-main-menu {
  display: none;
}

@media screen and (min-width: 576px) {
  .navbar .hamburger {
    margin-right: 1.5rem;
  }
}
@media screen and (min-width: 900px) {
  .navbar .hamburger {
    display: none;
  }
  .main-nav {
    margin: 15px 0;
    padding: 0;
  }
  .menu-item-has-children > .sub-menu li:before {
    content: "";
    margin: 0 10px;
    width: 5px;
    height: 5px;
    background-color: red;
    display: inline-block;
  }
}
/*
Home Page Styles
*/
.home-header {
  overflow: hidden;
}

.home-header-img {
  height: 375px;
}

.home-header-video {
  padding: 0;
}
.home-header-video iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  pointer-events: none;
}

.home-header-content {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  background: #fff;
}

.home-header-content:before {
  height: 25px;
  width: 100%;
  background-color: #093154;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}

.home-header-content:after {
  height: 25px;
  width: 25%;
  background-color: #0D7F9E;
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
}

.title-line-break {
  width: 100%;
  height: 1.5px;
  background-color: #F7941D;
  margin: 15px auto;
}

#homePage h1 {
  font-weight: 300;
  font-size: 45px;
}
#homePage h1 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  font-size: 45px;
}
#homePage p {
  color: #0D7F9E;
  line-height: 1.75;
}
#homePage .btn-wrapper {
  margin: 15px 0 35px;
}
#homePage .btn-primary {
  font-size: 18px;
}

#discover {
  margin: 50px 0;
}
#discover .btn-primary {
  font-size: 18px;
}

.discover-left-col h2 {
  font-size: 2rem;
}

.dropdown-list-box {
  margin: 2rem 0;
  padding: 10px 20px;
  -webkit-box-shadow: 0px 6px 20px rgba(7, 46, 80, 0.2117647059);
          box-shadow: 0px 6px 20px rgba(7, 46, 80, 0.2117647059);
}
.dropdown-list-box .dropdown-wrapper {
  position: relative;
}
.dropdown-list-box #dropDownList {
  position: absolute;
  display: none;
  margin: 10px 5px 0 55px;
  padding: 0;
  border: 1px solid #707070;
  background-color: #fff;
}
.dropdown-list-box #dropDownList li {
  color: #505050;
  padding: 5px 15px;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  cursor: pointer;
  font-size: 1rem;
}
.dropdown-list-box #dropDownList li:focus, .dropdown-list-box #dropDownList li:hover {
  background: #ecf0f1;
}
.dropdown-list-box #dropDownList li:active {
  background: #fbfcfc;
}
.dropdown-list-box .select {
  border: 1px solid #f7941d;
}

#status-select {
  width: calc(100% - 60px);
  border-bottom: 1px solid;
  border-bottom-color: #F7941D;
  display: inline-block;
  margin-left: 7px;
  cursor: pointer;
  position: relative;
}
#status-select p {
  color: #505050;
  padding: 0 15px;
  font-size: 1rem;
  margin: 0;
  opacity: 0;
}
#status-select > i {
  position: absolute;
  right: 5px;
  bottom: 5px;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
#status-select > i.arrow-open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#status-select > option {
  background-color: transparent;
  font-family: inherit;
  border-radius: 0;
}

#dropDownList {
  width: calc(100% - 60px);
}

.btn-wrapper {
  margin: 25px 0 45px;
}

#homeContent .btn-primary {
  font-size: 18px;
}

.two_columns_image {
  height: 250px;
  border-radius: 4px;
}

.colour-boxes-container-top {
  text-align: right;
  margin: 0 0 4rem;
}

.colour-boxes-container-bottom {
  margin: 4rem 0 0;
}

.right .reveal {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.left .reveal {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.reveal.active:first-child {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.reveal.active:nth-child(2) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.reveal.active:nth-child(3) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.reveal.active:nth-child(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.reveal.active:last-child {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.two-columns-colour-boxes {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  margin: 0 5px;
}

#highlight_section {
  position: relative;
}

#highlight_section:before {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(93, 158, 255, 0.12);
  z-index: -1;
}

.news-highlight,
.front-event {
  -webkit-box-shadow: 0px 0px 15px rgba(86, 86, 86, 0.337254902);
          box-shadow: 0px 0px 15px rgba(86, 86, 86, 0.337254902);
  border-radius: 4px;
  padding: 0;
  margin: 0 auto 3rem;
  background-color: #fff;
  overflow: hidden;
}

.front-event {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.front-event:hover {
  -webkit-box-shadow: 0 0 1em rgba(86, 86, 86, 0.1490196078), 6px -6px #EBF3FF;
          box-shadow: 0 0 1em rgba(86, 86, 86, 0.1490196078), 6px -6px #EBF3FF;
}

.news-highlight h3 {
  color: #093154 !important;
}

.front-events-highlight {
  padding: 0;
}

.front-event {
  position: relative;
}

.events-highlight h3 {
  margin: 10px 0 15px 0;
  color: #093154 !important;
}

#highlight_section .highlight-container p {
  color: #083266;
}

.hl-learn-more, .card_date {
  letter-spacing: 1.5px;
  color: #0D7F9E;
}

.hl-learn-more {
  text-decoration: none;
  font-size: 18px !important;
}

.card_date {
  font-size: 14px !important;
}

.for {
  color: #707070;
  text-transform: capitalize;
}

.highlight-img-col {
  height: 300px;
}

.highlight-content-col {
  padding: 2rem;
}

.highlight-cta {
  color: #0D7F9E;
}

.home-alumni-col {
  padding: 2rem;
}

.home-alumni-col p {
  font-size: 16px;
}

@media screen and (min-width: 576px) {
  .two_columns_image {
    height: 350px;
  }
  .home-header-img {
    height: 576px;
  }
}
@media screen and (min-width: 768px) {
  .home-header-content {
    padding: 3rem 7rem 7rem;
  }
  .home-header-content:before,
  .home-header-content:after {
    height: 45px;
  }
  #homePage h1 span {
    font-size: 2.5rem;
  }
  #homePage .btn-wrapper {
    margin: 15px 0 0;
  }
  .pr {
    padding-right: 40px;
  }
  .pl {
    padding-left: 40px;
  }
  .discover-left-col h2 {
    font-size: 2.5rem;
  }
  .two_columns_image {
    height: 400px;
  }
  #highlight_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #highlight_section::before {
    height: 40%;
  }
  .front-event .highlight-img-col {
    height: 250px;
  }
  .front-event .highlight-content-col {
    padding: 20px 25px 85px;
  }
  .front-event .highlight-content-col h3 {
    font-size: 22px;
    line-height: 1.7;
  }
  .front-event .tax-wrapper {
    position: absolute;
    bottom: 3%;
    width: 80%;
  }
  .home-alumni-img {
    text-align: center;
  }
  .home-alumni-img img {
    width: 500px;
  }
}
@media screen and (min-width: 992px) {
  .home-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .home-header.video {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    padding-bottom: 45px;
  }
  .home-header-img {
    height: 100vh;
    max-height: 100%;
  }
  .home-header-content {
    position: initial;
    text-align: left;
    padding: 7rem 3rem 3rem;
  }
  .home-header-content.video {
    padding: 4rem 3rem;
  }
  #homePage h1 {
    font-size: 55px;
  }
  #homePage h1 span {
    font-size: 45px;
  }
  #homePage .btn-primary {
    font-size: 1.15em;
  }
  #discover .btn-primary {
    font-size: 1.15em;
  }
  #discover .dropdown-list-box > div {
    font-size: 18px;
  }
  #discover #status-select {
    width: calc(100% - 65px);
  }
  #discover #status-select > p {
    font-size: 18px;
  }
  #discover #dropDownList {
    width: calc(100% - 65px);
    margin: 10px 5px 0 60px;
  }
  #discover #dropDownList li {
    font-size: 18px;
  }
  #homeContent .btn-primary {
    font-size: 1.15em;
  }
  .two_columns_image {
    min-height: 320px;
  }
  .two-columns-colour-boxes {
    width: 40px;
    height: 40px;
  }
  .news-highlight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 2rem 2rem 4rem;
  }
  .news-highlight .highlight-img-col {
    height: 100%;
  }
  .news-highlight .highlight-content-col {
    padding: 2rem;
  }
  .news-highlight .highlight-content-col p {
    font-size: 18px;
  }
  .news-highlight .highlight-content-col > div {
    margin-top: 2rem;
  }
  .news-highlight h3 {
    font-size: 35px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  #homePage h1 {
    font-size: 60px;
  }
  #homePage h1 span {
    font-size: 50px;
  }
  .home-header-content {
    padding: 10rem 7rem 5rem 4rem;
  }
  .home-header-content.video .home-header-content-container {
    max-width: none;
  }
  .home-header-content-container {
    max-width: 500px;
  }
  #highlight_section::before {
    height: 60%;
  }
  .news-highlight {
    margin: 2rem 2rem 5rem;
  }
  .home-alumni-col {
    padding: 4rem;
  }
  .pr {
    padding-right: 70px;
  }
  .pl {
    padding-left: 70px;
  }
  .discover-left-col .btn-wrapper {
    margin: 25px 0 20px;
  }
  .news-highlight .highlight-content-col {
    padding: 3rem 5rem;
  }
  .news-highlight .highlight-content-col h3 {
    font-size: 45px;
  }
  .news-highlight .highlight-content-col p {
    font-size: 1.15em;
  }
  .front-event .highlight-content-col {
    padding: 30px 25px 115px;
  }
}
@media screen and (min-width: 1500px) {
  .home-header.video {
    padding-bottom: 70px;
  }
  .home-header-content:before,
  .home-header-content:after {
    height: 70px;
  }
  .dropdown-list-box {
    max-width: 540px;
  }
  .front-event .tax-wrapper {
    width: 85%;
  }
  .front-event .highlight-content-col {
    padding: 30px 25px 105px;
  }
  .news-highlight {
    margin: 2rem 2rem 7rem;
  }
}
/*
Post Filter Page Styles
*/
#postFilterPage {
  margin-top: 50px;
}
#postFilterPage h1 {
  font-size: 3rem;
}

.filter-list {
  padding: 1rem 0;
}

.filter-item {
  position: relative;
  margin: 20px 0;
  color: #093154;
  font-size: 1.5rem;
}
.filter-item.filter-active {
  color: #0D7F9E;
}
.filter-item a {
  font-family: futura-pt, sans-serif;
  color: #093154;
  text-decoration: none;
}
.filter-item a.active {
  color: #0D7F9E;
}

.filter-item:not(:first-child):before {
  position: absolute;
  content: "";
  height: 0.5px;
  width: 100%;
  background-color: #F7941D;
  margin: 15px auto;
  left: 0;
  top: -25px;
}

.display-post {
  position: relative;
  -webkit-box-shadow: 0 0 1em rgba(86, 86, 86, 0.337254902);
          box-shadow: 0 0 1em rgba(86, 86, 86, 0.337254902);
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  margin: 2rem 0;
  border-radius: 4px;
  overflow: hidden;
}

.display-post:hover {
  -webkit-box-shadow: 0 0 1em rgba(86, 86, 86, 0.1490196078), 6px -6px #EBF3FF;
          box-shadow: 0 0 1em rgba(86, 86, 86, 0.1490196078), 6px -6px #EBF3FF;
}

.tile-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 25;
}

.post-img-col {
  height: 300px;
}
.post-img-col.default {
  background-size: 180px !important;
}

.post-content-col {
  padding: 1.5rem 1.5rem 5.5rem;
}

.post-content-col .display-post-title {
  color: #093154;
  padding: 10px 0 30px;
}

.display-post-footer {
  position: absolute;
  width: 85%;
  bottom: 3%;
}

.display-post-cta-wrapper a {
  text-decoration: none;
  color: #0D7F9E;
  letter-spacing: 1.44px;
  font-weight: 400;
  font-size: 18px;
}

.filter-line-break {
  height: 1px;
  width: 100%;
  background-color: #F7941D;
  margin: 15px auto;
}

#loadMore {
  font-size: 1.5rem;
  margin: 3rem 0 0;
  opacity: 0;
}
#loadMore.show {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .post-filter-pg-content {
    margin: 0 2rem;
  }
  .display-post {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    margin: 0;
  }
  .post-img-col {
    height: 250px;
  }
}
@media screen and (min-width: 876px) {
  #postFilterPage {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
  }
  #postFilterPage .display-post {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .filter-item:not(:first-child):before {
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .filter-posts {
    padding-left: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .filter-item:not(:first-child):before {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  #postFilterPage {
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
  }
  #postFilterPage .display-post {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media screen and (min-width: 1500px) {
  #postFilterPage {
    -ms-grid-columns: 1fr 5fr;
    grid-template-columns: 1fr 5fr;
  }
  #postFilterPage .display-post {
    max-width: 30%;
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}
/***
Footer
**/
#footer {
  background-color: #161616;
}

.footer-item-container {
  padding: 1rem 20px;
}

.upper-footer .footer-item {
  margin: 0 0 20px 0;
  padding: 10px 0;
  position: relative;
}
.upper-footer .footer-item:after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 100px;
}
.upper-footer .footer-item.no-item-heading:after {
  content: none;
}

.upper-footer img {
  margin: 5px 0 15px;
  padding-left: 5px;
}

.upper-footer p {
  line-height: 1.8;
}

.footer-contact-info {
  margin: 5px 0 !important;
}

#footer .lower-footer {
  background-color: #000;
  padding: 1rem 2rem;
}

#footer h4 {
  color: #fff !important;
  font-size: 2rem;
}

#footer h5 {
  color: #fff !important;
  margin: 5px 0 15px;
}

.footer-link-list {
  padding: 0;
}

.footer-link-list li {
  margin: 5px 0;
}
.footer-link-list li.no-title-link-list {
  margin: 0 !important;
  font-size: unset;
}
.footer-link-list a {
  text-decoration: none;
}

.contact-text {
  font-size: 15px;
  line-height: 1.7;
  margin: 1.5rem 0 3.5rem !important;
}

#footer p,
#footer a {
  font-size: 15px;
  color: #fff;
  margin: 0;
}

#footer .lower-footer .copyright {
  font-size: 0.7rem;
}
#footer .lower-footer a {
  font-family: open-sans, sans-serif;
  font-size: 0.7rem;
  text-decoration: none !important;
}

@media screen and (min-width: 992px) {
  #footer > div {
    padding-bottom: 2rem !important;
  }
  .lower-footer {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .footer-item {
    max-width: 20%;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
}
/*
Search Page Styles
*/
.sj-page-top {
  margin-top: 2rem;
}
.sj-page-top .main-content-row {
  margin-top: 50px;
  margin-bottom: 100px;
}
.sj-page-top .main-content-row a {
  font-family: open-sans, sans-serif !important;
  color: #093154;
  font-size: 16px;
}
.sj-page-top .main-content-row ul {
  list-style: disc;
}
.sj-page-top h1 {
  font-size: 36px;
}
.sj-page-top h1:after {
  display: block;
  content: "";
  background-color: #F7941D;
  max-width: 50%;
  width: 190px;
  height: 1px;
  margin: 25px 0;
}
.sj-page-top p,
.sj-page-top li {
  font-size: 1rem;
}

#searchPage {
  margin-top: 100px;
}
#searchPage h1 {
  margin-top: 50px;
  line-height: 1.5;
}
#searchPage .for {
  text-transform: capitalize;
}
#searchPage .pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#searchPage .pagination .page-numbers {
  font-size: 1rem;
  text-decoration: none;
  margin: 0 3px;
  color: #76777b;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
#searchPage .pagination .page-numbers:hover {
  color: #093154;
}
#searchPage .pagination .page-numbers.current {
  color: #093154;
  text-decoration: underline;
}
#searchPage .pagination .next.page-numbers,
#searchPage .pagination .prev.page-numbers {
  border: 1px solid #093154;
  padding: 2px 12px;
  border-radius: 4px;
  color: #093154;
}

/****
404 Page Styles
/
.sj-error-page {
  margin-top: 100px !important;
}
.sj-error-page .img-col {
  height: 250px;
  background-size: 180px !important;
  margin: 35px 0 0;
}
.sj-error-page p {
  margin: 25px 10px 0;
}
.sj-error-page .btns-col {
  margin-top: 25px;
}
.sj-error-page .btns-col div:first-child {
  text-align: center;
}
.sj-error-page .btns-col div:last-child {
  text-align: center;
}
.sj-error-page .btns-col a {
  min-width: 100%;
  margin: 10px 0;
}
.sj-error-page #searchform {
  text-align: center;
}
.sj-error-page #searchform .screen-reader-text {
  display: none;
}
.sj-error-page .search-input {
  width: calc(100% - 55px);
  color: #093154;
  margin: 0;
  border: 1px solid #093154;
}
.sj-error-page .search-submit {
  color: #093154;
}

#arcPage .main-content-row {
  margin-top: 50px;
}
#arcPage .main-content-row h1 {
  text-transform: capitalize;
}
#arcPage .navigation.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#arcPage .navigation.pagination .page-numbers {
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  padding: 2px 10px;
  text-decoration: none;
  color: #093154;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
#arcPage .navigation.pagination .page-numbers:not(.dots):hover {
  border-color: #093154;
}
#arcPage .navigation.pagination .page-numbers.current, #arcPage .navigation.pagination .page-numbers.prev, #arcPage .navigation.pagination .page-numbers.next {
  color: #fff;
  background-color: #093154;
}

@media screen and (min-width: 576px) {
  .search-post {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    max-width: 45%;
    margin: 1rem 0;
  }
  #searchPage .pagination .page-numbers {
    font-size: 1.2rem;
    margin: 0 7px;
  }
  .sj-error-page .img-col {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  #arcPage .main-content-row .posts-container {
    margin-top: 50px;
    grid-gap: 50px;
  }
  #arcPage .main-content-row .posts-container .display-post {
    margin: 0;
  }
}
@media screen and (min-width: 900px) {
  .sj-page-top .main-content-row {
    margin-top: 150px;
  }
  #arcPage .main-content-row {
    margin-top: 150px;
  }
  #course_types {
    margin-top: 150px;
  }
  .sj-error-page {
    margin-top: 150px !important;
  }
  .sj-error-page p {
    margin: 25px 10px;
  }
  .sj-error-page .btns-col {
    margin-top: 75px;
  }
  #searchPage h1 {
    margin-top: 150px;
  }
}
@media screen and (min-width: 992px) {
  .sj-page-top {
    margin-top: 7rem;
  }
  .sj-page-top .main-content-row {
    margin-top: 50px;
  }
  .sj-error-page .btns-col a {
    min-width: 300px;
    margin: 1rem 0;
  }
  .sj-error-page .btns-col div:first-child {
    text-align: right;
  }
  .sj-error-page .btns-col div:last-child {
    text-align: left;
  }
  #searchPage .pagination .page-numbers {
    font-size: 1.15em;
  }
}
@media screen and (min-width: 1200px) {
  #arcPage .main-content-row h1 {
    margin-bottom: 55px;
  }
  #arcPage .main-content-row .posts-container {
    grid-gap: 40px;
  }
  #arcPage .main-content-row .posts-container .display-post {
    max-width: 30%;
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
  .search-post {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
  }
}
@media screen and (min-width: 1400px) {
  .search-post-container {
    grid-gap: 25px;
  }
  .search-post {
    margin: 0;
  }
}
@media screen and (min-width: 1500px) {
  .search-post {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
    margin: 1rem;
  }
}
/* Form styles */
.gform_wrapper.gravity-theme .gfield.gfield--width-full,
.gfield_label,
.gform_button {
  font-family: open-sans;
}

.gform_footer.top_label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#input_1_1_3:focus,
#input_1_1_6:focus,
#input_1_3,
#input_1_4 {
  outline: none;
}

.gform_button {
  font-family: open-sans;
  background-color: #fff;
  border: 1px solid #093154;
  padding: 5px 55px;
  border-radius: 4px;
  color: #093154;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.gform_button:hover {
  color: #fff;
  background-color: #093154;
}

/* Default table styles */
#interor_page_content_wrapper table {
  border-collapse: separate;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}
#interor_page_content_wrapper th {
  text-align: left;
  font-weight: var(--table-header-font-weight);
}
#interor_page_content_wrapper th,
#interor_page_content_wrapper td {
  padding: var(--table-cell-padding-y) var(--table-cell-padding-x);
  line-height: inherit;
}
#interor_page_content_wrapper th {
  vertical-align: middle;
  padding: 10px 0;
}
#interor_page_content_wrapper td {
  vertical-align: top;
}

.wp-block-table tr {
  border: transparent;
}

.wp-block-table td,
.wp-block-table th {
  padding: 10px 25px !important;
}

.wp-block-table.is-style-regular thead tr th:not(:last-of-type) {
  border-right: 1px solid #eee;
}
.wp-block-table.is-style-regular tbody tr td:not(:last-of-type) {
  border-right: 1px solid #eee;
}
.wp-block-table.is-style-regular tbody tr:nth-child(2n+1) {
  background-color: #d7e0e7;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(2n) {
  background-color: #eee;
}
.wp-block-table.is-style-stripes thead {
  background-color: #093154;
  color: #fff;
  border-bottom: 3px solid #F7941D;
}

/****
browse courses block Styles
/
.view-filter-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 0;
}
.view-filter-btns .view-btn {
  font-size: 20px;
  padding: 0 10px;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.view-filter-btns .view-btn :hover {
  color: #0D7F9E;
  cursor: pointer;
}
.view-filter-btns .view-btn :hover i {
  color: #0D7F9E;
}
.view-filter-btns .view-btn.active i {
  color: #0D7F9E;
}
.view-filter-btns .view-btn i {
  color: #000000;
}
.view-filter-btns .view-btn.grid-initial i {
  color: #0D7F9E;
}

.browseCoursesGrid {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: none;
}
.browseCoursesGrid.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.browseCoursesGrid.gridInitial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.browseCoursesList {
  display: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.browseCoursesList.active {
  display: block;
}
.browseCoursesList h3 {
  font-size: 30px;
  margin: 25px 0;
  color: #093154 !important;
}
.browseCoursesList h4 {
  display: inline;
  color: #0D7F9E;
  font-size: 22px;
  padding-left: 0.5rem;
}
.browseCoursesList .accordion-icon i {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.browseCoursesList span.accordion-open i {
  -webkit-transform: translateY(-3px) rotate(45deg);
          transform: translateY(-3px) rotate(45deg);
}
.browseCoursesList.active {
  display: block !important;
}

@media screen and (min-width: 1024px) {
  .view-filter-btns .view-btn.grid-initial i {
    color: #000000;
  }
  .view-filter-btns .view-btn.list-initial i {
    color: #0D7F9E;
  }
  .browseCoursesGrid.gridInitial {
    display: none;
  }
  .browseCoursesList.listInitial {
    display: block;
  }
}
/****
H2 Child page underline
****/
.row.section_heading div .has-underline-h2:after {
  display: block;
  content: "";
  background-color: #F7941D;
  max-width: 50%;
  width: 190px;
  height: 1px;
  margin: 25px 0;
}

.course-single {
  padding: 1rem;
  position: relative;
}

.course-single:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background-color: #F7941D;
}

.course-single:last-child:after {
  content: none;
}

.course-title-container {
  cursor: pointer;
}

.accordion-icon i {
  color: #0D7F9E;
  font-size: 13px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: -webkit-transform 0.15s ease-in;
  transition: -webkit-transform 0.15s ease-in;
  transition: transform 0.15s ease-in;
  transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in;
}

.course-description {
  display: none;
  width: 90%;
  padding: 1rem 0 0;
}
.course-description .btn-ghost:hover {
  color: #fff;
}

#course_types {
  margin-top: 50px !important;
}
#course_types h1 {
  margin-bottom: 25px;
  font-size: 40px;
  margin-top: 25px;
}
#course_types h2 {
  display: inline;
  color: #0D7F9E;
}
#course_types .course-title-container span.accordion-open i {
  -webkit-transform: translateY(-5px) rotate(45deg);
          transform: translateY(-5px) rotate(45deg);
}

#coursesArc .main-content-row {
  margin-top: 50px;
}
#coursesArc .main-content-row h1 {
  text-transform: capitalize;
  margin-bottom: 25px;
  font-size: 40px;
}
#coursesArc .main-content-row h2 {
  font-size: 30px;
  margin: 25px 0;
}
#coursesArc .main-content-row h3 {
  display: inline;
  color: #0D7F9E;
  font-size: 22px;
  padding-left: 0.5rem;
}
#coursesArc .main-content-row .accordion-icon i {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
#coursesArc .main-content-row span.accordion-open i {
  -webkit-transform: translateY(-3px) rotate(45deg);
          transform: translateY(-3px) rotate(45deg);
}

.post-header {
  padding-top: 100px;
}

.post-footer {
  padding-top: 50px;
  margin-bottom: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.employee-img-col {
  width: 300px;
  height: 300px;
}

@media screen and (min-width: 768px) {
  #course_types h1 {
    margin-top: 55px;
  }
}
@media screen and (min-width: 900px) {
  #course_types {
    margin-top: 150px !important;
  }
  #coursesArc .main-content-row {
    margin-top: 150px;
  }
}
.floating-cta-wrapper {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.floating-cta-wrapper.show {
  opacity: 1;
  max-width: 160px;
}
.floating-cta-wrapper.active {
  max-width: 350px;
}
.floating-cta-wrapper.active .cta-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.floating-cta-wrapper.active .close-icon-wrapper {
  display: inline-block;
  margin-top: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.floating-cta-wrapper .cta-list-wrapper {
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.32);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}
.floating-cta-wrapper .cta-list-wrapper .cta-title {
  background: #0D7F9E;
  padding: 20px;
}
.floating-cta-wrapper .cta-list-wrapper .cta-title h3 {
  color: #fff !important;
  font-weight: 700;
  margin: 0;
  font-size: 18px;
  text-align: center;
}
.floating-cta-wrapper .cta-list-wrapper .cta-list {
  opacity: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item {
  padding: 5px 20px;
}
.floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:first-of-type {
  padding-top: 15px;
}
.floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:last-of-type {
  padding-bottom: 15px;
}
.floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item a {
  color: #0D7F9E;
  text-decoration: none;
  font-size: 18px;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.floating-cta-wrapper .cta-list-wrapper .cta-list.show {
  opacity: 1;
}
.floating-cta-wrapper .cta-list-wrapper .cta-list.show .cta-link-item.show a {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.floating-cta-wrapper .close-icon-wrapper {
  display: none;
  background: #0D7F9E;
  padding: 5px 10px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.32);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.32);
}
.floating-cta-wrapper .close-icon-wrapper i {
  font-size: 24px;
}

@media screen and (min-width: 1200px) {
  .floating-cta-wrapper {
    cursor: pointer;
  }
  .floating-cta-wrapper, .floating-cta-wrapper.show {
    max-width: 100%;
  }
  .floating-cta-wrapper.active .cta-list-wrapper .cta-title h3 {
    font-size: 24px;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item {
    position: relative;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:before {
    content: "";
    -webkit-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    position: absolute;
    width: 10px;
    height: 100%;
    display: block;
    left: -10px;
    top: 0;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:hover:before {
    left: 0;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:hover:nth-of-type(5n + 1):before {
    background: #0D7F9E;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:hover:nth-of-type(5n + 2):before {
    background: #A7CF3A;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:hover:nth-of-type(5n + 3):before {
    background: #F7941D;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:hover:nth-of-type(5n + 4):before {
    background: #D01619;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:hover:nth-of-type(5n):before {
    background: #B03E92;
  }
  .floating-cta-wrapper .cta-list-wrapper .cta-list .cta-link-item:hover a {
    color: #093154;
  }
}
.post_tile-block {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  margin-bottom: 30px;
}
.post_tile-block a {
  text-decoration: none;
}
.post_tile-block .sj_js_postTile_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1%;
  z-index: 2;
  background: rgba(41, 128, 185, 0.8);
}
.post_tile-block .sj_js_postTile_Image {
  width: 100%;
  padding-bottom: 70%;
  background-size: cover !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
}
.post_tile-block .sj_js_postTile_content {
  padding: 40px;
  background: #fff;
}
.post_tile-block .sj_js_postTile_content h5 {
  font-size: 1em;
  color: #7dd667;
  padding: 0;
  margin: 0 0 10px 0;
}
.post_tile-block .sj_js_postTile_content h3 {
  font-family: "product_sans_lightregular", "Helventica Neau", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
  color: #7dd667;
  margin: 0;
  padding: 0;
  font-weight: 400 !important;
}

/*
Site Name:
Author:

Stylesheet: Header styles

*/
.interior-containers .ajax_content_sections .course_type_card {
  position: relative;
  background: #093154;
  display: block;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 6px -6px #ebf3ff;
  -webkit-box-shadow: 6px -6px #ebf3ff;
  -moz-box-shadow: 6px -6px #ebf3ff;
  -o-box-shadow: 6px -6px #ebf3ff;
  margin: 0.5%;
  -webkit-transition: 0.25s ease-in-out all;
  transition: 0.25s ease-in-out all;
}
.interior-containers .ajax_content_sections .course_type_card h4 {
  font-size: 1.5em;
  margin: 0;
}
.interior-containers .ajax_content_sections .course_type_card h4 a {
  font-family: futura-pt, sans-serif;
  text-decoration: none;
  color: #fff;
  padding: 25px;
  margin: 0;
  display: block;
}
.interior-containers .ajax_content_sections .course_type_card h4 i {
  position: absolute;
  right: 20px;
  top: 45%;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.4);
}
.interior-containers .ajax_content_sections .course_type_card:hover {
  background: #0D7F9E;
  box-shadow: 0px 0px #ebf3ff;
  -webkit-box-shadow: 0px 0px #ebf3ff;
  -moz-box-shadow: 0px 0px #ebf3ff;
  -o-box-shadow: 0px 0px #ebf3ff;
}

/*
Site Name:
Author:

Stylesheet: Employee Block
*/
.employee_heading {
  margin: 35px 0;
  padding-top: 50px;
}

.employee-block .employee_profile_block {
  position: relative;
}
.employee-block .employee_profile_block:hover .employee_profile_image {
  -webkit-box-shadow: 6px -6px #EBF3FF;
          box-shadow: 6px -6px #EBF3FF;
}
.employee-block .employee_profile_block .employee_profile_link {
  position: absolute;
  width: 100%;
  height: 100%;
}
.employee-block .employee_profile_block .employee_profile_image {
  width: 100%;
  padding-bottom: 100%;
  margin: 0 0 10px 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/*
Site Name:
Author:

Stylesheet: Student Blogs Block
*/
#studentBlogs .posts-container {
  grid-gap: 30px;
}
#studentBlogs .display-post-footer {
  bottom: 0;
}
#studentBlogs .display-post-cta-wrapper a {
  color: #0D7F9E;
  font-size: 18px;
  font-family: futura-pt, sans-serif;
}

@media screen and (min-width: 992px) {
  #studentBlogs .display-post {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 20px 0;
  }
}
@media screen and (min-width: 1200px) {
  #studentBlogs .display-post {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media screen and (min-width: 1700px) {
  #studentBlogs .display-post {
    max-width: 31%;
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
  }
}
/*
Site Name:
Author:

Stylesheet: Gallery Block
*/
.wp-block-gallery.columns-3 {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .wp-block-gallery.has-nested-images {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wp-block-gallery.has-nested-images.columns-2 .wp-block-image {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .wp-block-gallery.has-nested-images.columns-3 .wp-block-image {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .wp-block-gallery.has-nested-images.columns-4 .wp-block-image {
    max-width: 20%;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .wp-block-gallery.has-nested-images.columns-5 .wp-block-image {
    max-width: 15%;
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
  }
}
/* Manipulate WP's Gutenberg block */
.wp-block-columns {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important; /* Align images in a three columns block */
}

/* Sparkjoy two columns block */
@media screen and (min-width: 768px) {
  .row.justify-content-between.two-columns .col-md-6 {
    width: 45% !important;
  }
}
/* Sparkjoy three columns block */
.row.justify-content-between.three-columns .col-lg-4,
.row.justify-content-between.three-columns .col-md-4 {
  width: 100% !important;
}

body .is-layout-flex {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

@media screen and (min-width: 768px) {
  .row.justify-content-between.three-columns .col-lg-4,
  .row.justify-content-between.three-columns .col-md-4 {
    width: 30% !important;
  }
  body .is-layout-flex.row.justify-content-between .col-md-4 {
    width: 30% !important;
  }
  body .is-layout-flex .col-lg-4 {
    width: 30% !important;
  }
}
@media screen and (min-width: 992px) {
  .row.justify-content-between.three-columns .col-lg-4,
  .row.justify-content-between.three-columns .col-md-4 {
    width: 100% !important;
  }
}
@media screen and (min-width: 1320px) {
  .row.justify-content-between.three-columns .col-lg-4,
  .row.justify-content-between.three-columns .col-md-4 {
    width: 30% !important;
  }
  body .is-layout-flex .col-lg-4 {
    width: 30% !important;
  }
}
.section-cp-youtube iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  pointer-events: none;
}

/* Stay in Touch page MS forms */
.form-link {
  display: none;
}

.mobile-form-link {
  text-align: center;
}
.mobile-form-link a {
  background: #093154;
  color: #fff !important;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .form-link {
    display: block;
  }
  .mobile-form-link {
    display: none;
  }
}
.gform_body legend {
  font-size: 1rem;
  font-weight: bold;
}
.gform_body input,
.gform_body select {
  padding: 5px 10px;
}
.gform_body .name_first input[type=text],
.gform_body .name_last input[type=text] {
  width: 100%;
}
.gform_body .name_first label,
.gform_body .name_last label {
  margin-bottom: 15px;
}
.gform_body .ginput_left input[type=email],
.gform_body .ginput_right input[type=email] {
  width: 100%;
}
.gform_body .ginput_left label,
.gform_body .ginput_right label {
  margin-bottom: 15px;
}
.gform_body .gfield_contains_required > label {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.gform_body .ginput_container_phone input[type=tel] {
  width: 100%;
  margin-bottom: 15px;
}
.gform_body textarea {
  width: 100%;
  margin-bottom: 15px;
}
.gform_body .ginput_container_select,
.gform_body .ginput_container_phone {
  margin-bottom: 15px;
}
.gform_body .gf_clear {
  display: none;
}

.gfield_description {
  margin-bottom: 15px;
}

input.large {
  width: 100%;
}

.ginput_container label {
  margin-bottom: 15px;
}
.ginput_container select {
  width: 100%;
}

.gsection_description,
.field_sublabel_below,
.field_description_above {
  margin: 15px 0;
}
.gsection_description label,
.field_sublabel_below label,
.field_description_above label {
  margin-bottom: 15px;
}

.ginput_container_address span {
  display: block;
  margin: 15px 0;
}
.ginput_container_address span input {
  width: 100%;
}

.gchoice {
  margin: 15px 0;
}
.gchoice input,
.gchoice label {
  cursor: pointer;
}
.gchoice label {
  margin: 0 0 0 8px;
}

.gfield_label {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .gform_body .ginput_container_name.has_first_name.has_last_name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .gform_body .ginput_container_name.has_first_name.has_last_name .name_first,
  .gform_body .ginput_container_name.has_first_name.has_last_name .name_last {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .gform_body select {
    width: 100%;
  }
}
@media (min-width: 876px) {
  .gform_body .ginput_container_email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .gform_body .ginput_container_email .ginput_left,
  .gform_body .ginput_container_email .ginput_right {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  /* Update your information - Alumni form */
  .ginput_container_address.has_street.has_street2.has_city.has_state.has_zip.has_country {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .ginput_container_address.has_street.has_street2.has_city.has_state.has_zip.has_country span.ginput_full {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .ginput_container_address.has_street.has_street2.has_city.has_state.has_zip.has_country span.ginput_left, .ginput_container_address.has_street.has_street2.has_city.has_state.has_zip.has_country span.ginput_right {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
/*
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*/
.section-cp-accordion .listing-item {
  background: #fff;
  margin-bottom: 15px;
}
.section-cp-accordion .listing-item:last-of-type {
  margin-bottom: 0;
}
.section-cp-accordion .lists-wrapper {
  list-style: none;
  padding: 0;
}
.section-cp-accordion .lists-wrapper .listing-item {
  position: relative;
  list-style: none;
}
.section-cp-accordion .lists-wrapper .listing-item .listing-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  cursor: pointer;
  background: #fff;
  border: 1px solid #093154;
  padding: 10px 15px;
  -webkit-transition: background 250ms ease-in;
  transition: background 250ms ease-in;
}
.section-cp-accordion .lists-wrapper .listing-item .listing-title span {
  color: #093154 !important;
}
.section-cp-accordion .lists-wrapper .listing-item .listing-title i {
  color: #093154;
  font-size: 20px;
}
.section-cp-accordion .lists-wrapper .listing-item .listing-title.open {
  background: #093154;
}
.section-cp-accordion .lists-wrapper .listing-item .listing-title.open span {
  color: #fff !important;
}
.section-cp-accordion .lists-wrapper .listing-item .listing-title.open i {
  color: #fff;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
.section-cp-accordion .lists-wrapper .listing-item .accordion-content {
  display: none;
  margin: 25px 0;
}

/*
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

*/
.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/*
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

*/
/*
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "product_sans_lightregular", "Helventica Neau", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
.blue-btn:hover, .blue-btn:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.blue-btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #2980b9;
}
.blue-btn:hover, .blue-btn:focus {
  background-color: #2574a8;
}
.blue-btn:active {
  background-color: #2472a4;
}

.df-container.df-controls-bottom .df-bg {
  background-color: #eaedf2 !important;
}
.df-container.df-controls-bottom .df-ui-nav.df-ui-prev .df-ui-btn:before {
  padding-left: 15px;
}
.df-container.df-controls-bottom .df-ui-nav.df-ui-next .df-ui-btn:before {
  padding-right: 15px;
}
.df-container.df-controls-bottom .df-ui-nav.df-ui-prev .df-ui-btn:before, .df-container.df-controls-bottom .df-ui-nav.df-ui-next .df-ui-btn:before {
  background-color: #093154;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px;
}

/*
Site Name:
Author:

Stylesheet: Header styles

*/
.menu-quick-links-container {
  display: none;
}
.menu-quick-links-container ul {
  margin: 0;
  padding: 0;
}
.menu-quick-links-container ul li a {
  color: #fff;
}

#lower_main_nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 103px;
  background: #fff;
  z-index: 10;
}
#lower_main_nav .nav {
  padding: 15px 0;
}
#lower_main_nav .nav .nav-link {
  font-size: 0.8em;
  color: #093154;
  font-family: open-sans, sans-serif;
}
#lower_main_nav .nav .nav-link.active {
  font-weight: 600;
}

.subMenuBoxes {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 8;
  position: fixed;
  left: 0;
  right: 0;
  top: 155px;
  background: #fff;
  z-index: 9;
  padding: 30px 0;
  min-height: 200px;
  opacity: 1;
}
.subMenuBoxes:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 40px;
}
.subMenuBoxes.brandblue:after {
  background-color: #0D7F9E;
}
.subMenuBoxes.brandblue li:before {
  background: #0D7F9E;
}
.subMenuBoxes.brandgrean:after {
  background-color: #A7CF3A;
}
.subMenuBoxes.brandgrean li:before {
  background: #A7CF3A;
}
.subMenuBoxes.brandorange:after {
  background-color: #F7941D;
}
.subMenuBoxes.brandorange li:before {
  background: #F7941D;
}
.subMenuBoxes.brandred:after {
  background-color: #D01619;
}
.subMenuBoxes.brandred li:before {
  background: #D01619;
}
.subMenuBoxes.brandpurple:after {
  background-color: #B03E92;
}
.subMenuBoxes.brandpurple li:before {
  background: #B03E92;
}
.subMenuBoxes.branddarkblue:after {
  background-color: #093154;
}
.subMenuBoxes.branddarkblue li:before {
  background: #093154;
}
.subMenuBoxes.hide {
  top: -300px;
  opacity: 0;
  z-index: -1;
}
.subMenuBoxes .subMenuBoxesBG {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 33.333%;
  background-size: cover !important;
}
.subMenuBoxes .subMenuBoxesLinks {
  width: 67%;
  padding: 20px 5%;
}
.subMenuBoxes .subMenuBoxesLinks ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.subMenuBoxes .subMenuBoxesLinks li {
  line-height: 1;
  position: relative;
  border: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  margin-bottom: 20px;
}
.subMenuBoxes .subMenuBoxesLinks li:before {
  content: " ";
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
  position: absolute;
  top: 15px;
}
.subMenuBoxes .subMenuBoxesLinks li a {
  font-size: 1em;
  display: inline-block;
  padding: 0;
  margin: 0;
  color: #093154;
  text-decoration: none;
  padding-left: 25px;
}

#searchform-desktop {
  display: none;
}

.search-input {
  width: 50vw;
  background: transparent;
  border: transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-left: 10px;
  font-size: 20px;
  margin: 20px 10px 0 0;
}

.search-input:focus {
  outline: none;
}

.search-submit {
  border: transparent;
  background: transparent;
  color: #fff;
}

#searchform-mobile {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#searchform-mobile.mobile-search-active {
  display: block;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
#searchform-mobile .screen-reader-text {
  display: none;
}

.search-close {
  color: #fff;
  font-size: 20px;
}
.search-close i {
  cursor: pointer;
}

.offcanvas-header {
  position: absolute;
  top: 0;
  right: 0;
}

.offcanvas-body {
  text-align: center;
}
.offcanvas-body #offcanvasLogo {
  padding: 25px 25px 0;
  width: 100vw;
}

.offcanvas-end {
  width: 100vw;
}

#mobileOffCanvasBody .menu-quick-links-container {
  display: block;
}
#mobileOffCanvasBody .menu-quick-links-container li a {
  font-size: 1.5rem;
}

@media screen and (min-width: 675px) {
  #offcanvasLogo {
    max-width: 650px;
  }
}
@media screen and (min-width: 900px) {
  .sj-lg-menu {
    display: none !important;
  }
  .navbar .hamburger {
    display: block !important;
  }
  #lower_main_nav {
    display: block;
  }
  #searchform-desktop {
    position: absolute;
    top: 98px;
    width: 100%;
    left: 0px;
    right: 0px;
    z-index: 99;
    background: #093154;
  }
  #searchform-desktop form {
    margin: 0 auto 40px;
    text-align: center;
  }
  #searchform-desktop .screen-reader-text {
    display: none;
  }
  #searchform-desktop .search-submit > i {
    padding: 10px;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }
  #searchform-desktop .search-submit:hover > i {
    background-color: #fff;
    color: #093154;
    border-radius: 50%;
  }
  .menu-quick-links-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  #lower_main_nav .nav .nav-link {
    font-size: 0.9rem;
  }
  .subMenuBoxes {
    top: 140px;
  }
  .subMenuBoxes .subMenuBoxesLinks li {
    max-width: 33.33%;
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
  }
  .subMenuBoxes .subMenuBoxesLinks li:before {
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .sj-lg-menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .navbar .hamburger {
    display: none !important;
  }
  #lower_main_nav .nav-item {
    margin: 0 15px;
  }
  .search-close {
    display: none;
  }
}
.text-editor blockquote {
  position: relative;
  padding-left: 100px;
}
.text-editor blockquote:before {
  display: block;
  content: "";
  width: 10px;
  height: 100%;
  background: #093154;
  position: absolute;
  left: 50px;
}
.text-editor img.aligncenter {
  display: block;
  margin: 24px auto;
}
.text-editor img.alignleft, .text-editor img.alignnone {
  display: block;
}
.text-editor img.alignright {
  float: right;
}
.text-editor p:first-of-type {
  margin-top: 0;
}
.text-editor p:last-of-type {
  margin-bottom: 0;
}
.text-editor ul {
  list-style-type: disc;
}
.text-editor ol {
  list-style-type: decimal;
}
.text-editor ul, .text-editor ol {
  padding-left: 35px;
}
.text-editor a:not(.button) {
  color: #2980b9;
}
.text-editor table td,
.text-editor table th {
  padding: 10px 25px !important;
}
.text-editor table tbody tr td:not(:last-of-type) {
  border-right: 1px solid #eee;
}
.text-editor table tbody tr:nth-child(2n+1) {
  background-color: #d7e0e7;
}

/*
Site Name:
Author:

Stylesheet: Inteior page styles

*/
.wp-block-image img {
  height: 100%;
}

.ajax-hide {
  opacity: 0;
}

#ajax_loader {
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  right: -30px;
  z-index: 4;
  background: #fff;
}
#ajax_loader.ajax-hide {
  display: none !important;
}

.interior-containers {
  margin-top: 100px !important;
  margin-bottom: 100px;
}
.interior-containers h1 a {
  color: #093154 !important;
  font-weight: 600;
  text-decoration: none;
}
.interior-containers #side_nav_interior_page .ajax-nav-divider {
  background: #F7941D;
  width: 100%;
  height: 1px;
  display: block;
  margin: 10px 0;
}
.interior-containers #side_nav_interior_page .side_nav_sub_page_list {
  height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.interior-containers #side_nav_interior_page .side_nav_sub_page_list.show {
  height: auto;
}
.interior-containers #side_nav_interior_page .side_nav_sub_page_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.interior-containers #side_nav_interior_page .side_nav_sub_page_list li i {
  padding-top: 0.9rem;
}
.interior-containers #side_nav_interior_page .side_nav_sub_page_list li .ajax-nav-child-items.list-group-item {
  padding: 0.5rem 1rem 0;
}
.interior-containers #side_nav_interior_page ul {
  margin: 0 0 0 1rem;
  padding: 0;
}
.interior-containers #side_nav_interior_page ul li {
  border: none;
}
.interior-containers #side_nav_interior_page a {
  text-decoration: none;
  display: inline-block;
  font-size: 1.1em;
  color: #9fa6b4;
  border: none;
  margin-bottom: 15px;
}
.interior-containers #side_nav_interior_page a.active {
  background: none;
  color: #093154;
}
.interior-containers #side_nav_interior_page a i {
  display: inline-block;
  margin-right: 5px;
}
.interior-containers #side_nav_interior_page a.ajax-nav-items {
  padding: 10px 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}
.interior-containers #side_nav_interior_page a.ajax-nav-items:not(:nth-of-type(1)):before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #f7941d;
  margin: 15px auto;
  left: 0;
  top: -25px;
}
.interior-containers .interior-content-column {
  margin-top: 5rem;
  position: relative;
}
.interior-containers .ajax_content_sections {
  margin-bottom: 100px;
}
.interior-containers .ajax_content_sections h2 {
  font-size: 2.375em;
}
.interior-containers .ajax_content_sections .section_heading h2 {
  font-size: 2.75em;
}
.interior-containers .ajax_content_sections h3 {
  font-size: 1.75em;
  color: #0D7F9E;
  font-weight: 400 !important;
}
.interior-containers .ajax_content_sections h4 {
  font-size: 1em;
}
.interior-containers .ajax_content_sections .wp-block-columns p {
  margin-bottom: 80px;
}
.interior-containers .ajax_content_sections .sj-hero-image {
  margin-top: 80px;
  margin-bottom: 80px;
}
.interior-containers .ajax_content_sections ul {
  list-style: disc;
}
.interior-containers .ajax_content_sections ol {
  list-style: decimal;
}
.interior-containers .ajax_content_sections.child-page-data-title {
  padding-top: 60px;
}
.interior-containers .ajax_content_sections a {
  font-family: open-sans, sans-serif;
  color: #093154;
  font-size: 16px;
}

.wp-block-column li {
  font-size: 1rem;
  color: #505050;
}

.wp-block-button {
  margin: 20px 0;
}

.sj_block_blockqoute {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}
.sj_block_blockqoute p {
  color: #0D7F9E;
  font-size: 1.25em;
  padding-left: 17px;
  margin: 25px 0 !important;
}
.sj_block_blockqoute:before {
  background: #0D7F9E;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  content: " ";
}

figure.alignleft {
  text-align: left;
}
figure.aligncenter {
  text-align: center;
}
figure.alignright {
  text-align: right;
}
figure.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-right {
  text-align: right;
}

.has-text-align-center {
  text-align: center;
}

#interor_page_content_wrapper {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wp-block-gallery .wp-block-image {
  width: 20%;
  margin: 2.5%;
}

.sj_js_postTile {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  width: 100%;
}
.sj_js_postTile .sj_js_postTile_nav {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 90%;
  z-index: 2;
}
.sj_js_postTile .sj_js_postTile_Image {
  width: 100%;
  padding-bottom: 70%;
  background-size: cover !important;
}
.sj_js_postTile .sj_js_postTile_content {
  padding: 40px;
  background: #fff;
}
.sj_js_postTile .sj_js_postTile_content h5 {
  font-family: "product_sans_lightregular", "Helventica Neau", Helvetica, Arial, sans-serif;
  font-size: 1em;
  color: #7dd667;
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
  font-weight: 400 !important;
}
.sj_js_postTile .sj_js_postTile_content h3 {
  font-family: "product_sans_lightregular", "Helventica Neau", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  color: #093154;
  margin: 0 !important;
  padding: 0 !important;
  font-weight: 400 !important;
}

.quick_links_container {
  margin-top: 120px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 900px) {
  .quick_links_container {
    margin-top: 50px;
  }
}
.quick_links_container .quick_links_items {
  background-size: cover !important;
  position: relative;
  cursor: pointer;
}
.quick_links_container .quick_links_items:first-child {
  display: none;
}
.quick_links_container .quick_links_items a {
  text-decoration: none;
  outline: none;
}
.quick_links_container .quick_links_items .quick_links_link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  color: #fff;
  text-decoration: none;
  outline: none;
  text-transform: uppercase;
  font-size: 1.5em;
}
.quick_links_container .quick_links_items .quick_links_overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: rgba(9, 49, 84, 0.9);
}
.quick_links_container .quick_links_items .quick_links_content {
  position: relative;
  z-index: 2;
  padding: 6rem;
}
@media (max-width: 900px) {
  .quick_links_container .quick_links_items .quick_links_content {
    padding: 6rem 3rem;
  }
}
.quick_links_container .quick_links_items .quick_links_content h3 {
  font-size: 3em;
  font-family: "product_sans_lightregular", "Helventica Neau", Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 1;
  margin: 0 0 20px 0;
  padding: 0;
}
.quick_links_container .quick_links_items .quick_links_content h4 {
  font-size: 2em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: translateY(50px) rotateX(-90deg);
  -webkit-transform: translateY(50px) rotateX(-90deg);
  -moz-transform: translateY(50px) rotateX(-90deg);
  opacity: 0;
}
@media (max-width: 900px) {
  .quick_links_container .quick_links_items .quick_links_content h4 {
    transform: translateY(0px) rotateX(0deg);
    -webkit-transform: translateY(0px) rotateX(0deg);
    -moz-transform: translateY(0px) rotateX(0deg);
    opacity: 1;
  }
}
.quick_links_container .quick_links_items:hover h4 {
  transform: translateY(0px) rotateX(0deg);
  -webkit-transform: translateY(0px) rotateX(0deg);
  -moz-transform: translateY(0px) rotateX(0deg);
  opacity: 1;
}

@media screen and (min-width: 876px) {
  .ajax_content_sections .child-page-data-title {
    padding-top: 140px;
  }
}
@media screen and (min-width: 900px) {
  .interior-containers {
    margin-top: 200px !important;
  }
  #side_nav_interior_page {
    position: sticky;
    top: 200px;
  }
}
@media screen and (max-width: 1550px) {
  #side_nav_interior_page {
    position: relative;
    top: 0;
  }
}
@media screen and (min-width: 992px) {
  .courses-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.5fr 2fr;
    grid-template-columns: 0.5fr 2fr;
  }
  .interior-containers #side_nav_interior_page h1 a {
    font-size: 38px;
  }
  .interior-containers #side_nav_interior_page a {
    font-size: 15px;
  }
  .interior-containers .interior-content-column {
    margin-top: 0 !important;
    padding-left: 130px;
  }
}
@media screen and (min-width: 1200px) {
  .courses-wrapper {
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
  }
}
@media screen and (min-width: 1500px) {
  .courses-wrapper {
    -ms-grid-columns: 1fr 4fr;
    grid-template-columns: 1fr 4fr;
  }
  .interior-containers #side_nav_interior_page a {
    font-size: 18px;
  }
  .interior-containers #side_nav_interior_page a.ajax-nav-items {
    margin: 5px 0 0;
  }
  .interior-containers #side_nav_interior_page a.ajax-nav-items:not(:nth-of-type(1)):before {
    top: -16px;
  }
  .interior-containers #side_nav_interior_page .side_nav_sub_page_list.show li:last-child {
    margin-bottom: 20px;
  }
}
/*
Site Name:
Author:

Stylesheet: Inteior page styles

*/
.ajax_news_events_section {
  position: relative;
}

#ajax_post_container,
#upcoming_events_container {
  grid-gap: 25px;
  margin-top: 35px;
}

#postFilterPage {
  margin-top: 100px;
  margin-bottom: 100px;
}
#postFilterPage .post-img-col {
  background-color: #093154 !important;
}
#postFilterPage .display-post {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
#postFilterPage .display-post.show {
  opacity: 1;
}
#postFilterPage .display-post .is-new-post {
  text-align: center;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  padding: 7px 0;
  width: 40%;
  top: 15px;
  right: 0;
  z-index: 2;
}
#postFilterPage .display-post .is-new-post p {
  font-family: futura-pt, sans-serif;
  letter-spacing: 1.7px;
  color: #fff;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

.ajax_news_events_section #upcoming_events h2,
.ajax_news_events_section #past_events h2 {
  color: #0D7F9E !important;
}
.ajax_news_events_section #upcoming_events h2:after,
.ajax_news_events_section #past_events h2:after {
  display: block;
  content: "";
  background-color: #F7941D;
  width: 100%;
  height: 1px;
  margin: 25px 0;
}
.ajax_news_events_section #upcoming_events {
  display: none;
}
.ajax_news_events_section #upcoming_events h2 {
  display: none;
}
.ajax_news_events_section #upcoming_events.show {
  display: block;
  margin-bottom: 100px;
}
.ajax_news_events_section #upcoming_events.show h2 {
  display: block;
}

.news_events_filter_list {
  position: relative;
}
.news_events_filter_list:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background: rgba(255, 255, 255, 0.6);
}
.news_events_filter_list.ajax-hide {
  opacity: 1;
}
.news_events_filter_list.ajax-hide:after {
  content: none;
}

@media screen and (min-width: 876px) {
  .news_events_filter_list {
    position: sticky;
    top: 200px;
  }
  .ajax_news_events_section #upcoming_events {
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  #postFilterPage {
    margin-top: 200px;
  }
  .ajax_news_events_section #upcoming_events {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  #postFilterPage .small-lion {
    background-size: 280px !important;
  }
}
@media screen and (min-width: 1500px) {
  #ajax_post_container,
  #upcoming_events_container {
    grid-gap: 45px;
    margin-top: 55px;
  }
}
/*
Site Name:
Author:

Stylesheet: News and Events Single Post styles

*/
.news_events_single {
  margin-top: 100px !important;
}
.news_events_single li {
  list-style: disc;
}
.news_events_single h1 {
  font-size: 36px;
}
.news_events_single h1:after {
  display: block;
  content: "";
  background-color: #F7941D;
  max-width: 50%;
  width: 190px;
  height: 1px;
  margin: 25px 0;
}
.news_events_single p {
  font-size: 1rem;
}
.news_events_single a {
  color: #093154;
  font-family: open-sans, sans-serif;
}

.page-img-col {
  position: relative;
  margin: 0 0 30px;
  height: 20vh;
}
.page-img-col:before {
  display: block;
  content: "";
  background-color: #f8f9fa;
  height: 150%;
  position: absolute;
  width: 70%;
  z-index: -1;
  bottom: -15px;
  right: -44px;
}
.page-img-col img {
  height: 75vw;
}

.back-to-link {
  color: #093154;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.back-to-link > i {
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.back-to-link:hover {
  color: #F7941D;
}
.back-to-link:hover > i {
  margin-right: -3px;
}

@media screen and (min-width: 576px) {
  .page-img-col {
    height: 30vh;
  }
  .page-img-col:before {
    right: -212px;
  }
}
@media screen and (min-width: 768px) {
  .news_events_single p,
  .news_events_single li {
    font-size: 18px;
  }
  .page-img-col {
    position: relative;
    margin: 0 0 30px;
  }
  .page-img-col:before {
    width: 130%;
  }
  .page-img-col img {
    height: 460px;
  }
  .back-to-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .news_events_single {
    margin-top: 200px !important;
  }
}
@media screen and (min-width: 992px) {
  .news_events_single h1 {
    font-size: 45px;
  }
  .page-img-col:before {
    height: 200%;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .news_events_single h1 {
    font-size: 45px;
  }
  .page-img-col:before {
    height: 200%;
    width: 55vw;
    right: calc(50% - 50vw);
  }
}
/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/