@charset "UTF-8";
/******************
 * SCSS Variables   *
 ******************/
/*
** http://stackoverflow.com/questions/17181849/placeholder-mixin-scss-css
*/
/*
** https://github.com/mastastealth/sass-flex-mixin
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files
------------------------------------------------------------- */
/** HIDE GFORMS HONEYPOT */
.gform_validation_container {
  display: none !important;
}
/** END HIDE GFORMS HONEYPOT */
* {
  box-sizing: border-box;
}
/******************
 * SCSS Variables   *
 ******************/
[class*="block-grid-"], .row .row {
  margin: 0;
}
[class*="column"] + [class*="column"]:last-child {
  float: left;
}
html, body {
  min-height: 100%;
  background: #ffffff;
  line-height: 30px;
  color: #4d4d72;
  font-family: tondo, sans-serif, sans-serif;
}
input, textarea {
  font-family: tondo, sans-serif, sans-serif;
  font-size: 17px;
  color: #5f5f5f;
  line-height: 30px;
}
a {
  text-decoration: none;
  color: var(--main-color);
}
.singular-content {
  font-weight: 300;
}
.singular-content h1 {
  margin-bottom: 25px;
}
.singular-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 40em) {
  .singular-content h2 {
    font-size: 32px;
  }
}
.singular-content h3 {
  font-size: 30px;
  margin: 24px 0 16px;
}
@media only screen and (max-width: 40em) {
  .singular-content h3 {
    font-size: 24px;
  }
}
.singular-content h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 40em) {
  .singular-content h4 {
    font-size: 20px;
  }
}
.singular-content p {
  font-size: 17px;
  margin: 0 0 20px;
}
.singular-content p img.left {
  float: left;
}
.singular-content p img.right {
  float: right;
}
.singular-content ul, .singular-content ol {
  font-size: 17px;
}
.singular-content .video-container {
  margin: 0 0 20px;
}
.singular-content .gform_wrapper {
  margin-bottom: 20px;
}
.singular-content a:not(.btn) {
  color: var(--main-color);
}
.singular-content img {
  border-radius: 20px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.singular-content.is-main a:not([class]) {
  color: #e5004c;
  position: relative;
}
.singular-content.is-main a:not([class]):after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5004c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.singular-content.is-main a:not([class]):hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.singular-content a:not([class]) {
  color: var(--link-color);
  position: relative;
}
.singular-content a:not([class]):after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--link-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.singular-content a:not([class]):hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.singular-content a.has-img:after {
  display: none;
}
.singular-content blockquote {
  color: #000036;
  position: relative;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 40px;
  margin-bottom: 40px;
}
.singular-content blockquote p {
  font-size: 36px;
  line-height: 1.4;
  padding-left: 32px;
}
.singular-content blockquote:before {
  content: "“";
  font-size: 90px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -30px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: mic-32-new-web, sans-serif, sans-serif;
  margin: 0;
  text-decoration: none;
  color: #000036;
  font-weight: 600;
}
h1 {
  font-size: 24px;
  line-height: normal;
}
h2 {
  font-size: 22px;
  line-height: normal;
}
h3 {
  font-size: 18px;
  line-height: normal;
}
h4 {
  font-size: 17px;
  line-height: normal;
}
h5 {
  font-size: 13px;
  line-height: normal;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}
.std dl dl {
  margin: 0 0 1.5em 0;
}
.std dl dl dt {
  font-weight: normal;
}
.std dl dd {
  margin-left: 1.5em;
}
.std dl table {
  margin-bottom: 1.4em;
}
.std dl th {
  font-weight: normal;
}
.std dl th, .std dl td, .std dl caption {
  padding: 3px 10px 3px 0;
}
.std dl tfoot {
  font-style: italic;
}
.std dl caption {
  background: #eee;
}
.readmore {
  color: var(--secondary-color);
  position: relative;
  line-height: 1;
  display: inline-block;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.readmore:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.readmore:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.readmore.is-main {
  color: #e5004c;
  position: relative;
}
.readmore.is-main:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5004c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.readmore.is-main:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.bottom-collapse-container {
  overflow: hidden;
  cursor: pointer;
}
.bottom-collapse-container .bottom-collapse {
  background-color: #e5e5e5;
  bottom: -70px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 70px;
  line-height: 70px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.bottom-collapse-container .bottom-collapse span {
  margin-top: 10px;
  display: block;
  -webkit-transition: transform 0.35s;
  -khtml-transition: transform 0.35s;
  -moz-transition: transform 0.35s;
  -ms-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  -khtml-transform: translate3d(0, 200%, 0);
  -moz-transform: translate3d(0, 200%, 0);
  -ms-transform: translate3d(0, 200%, 0);
  -o-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
  text-transform: uppercase;
}
.bottom-collapse-container .bottom-collapse .fa {
  font-size: 12px;
  margin-top: 10px;
  -webkit-transition: transform 0.35s;
  -khtml-transition: transform 0.35s;
  -moz-transition: transform 0.35s;
  -ms-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  -khtml-transform: translate3d(0, 200%, 0);
  -moz-transform: translate3d(0, 200%, 0);
  -ms-transform: translate3d(0, 200%, 0);
  -o-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
.bottom-collapse-container:hover .bottom-collapse {
  bottom: 0;
}
.bottom-collapse-container:hover .bottom-collapse span, .bottom-collapse-container:hover .bottom-collapse .fa {
  margin-top: 0;
  -webkit-transition-delay: 0.05s;
  -khtml-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  -ms-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transform: translate3d(0, 0, 0);
  -khtml-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);
}
.bottom-collapse-container:hover .bottom-collapse .fa {
  -webkit-transition-delay: 0.125s;
  -khtml-transition-delay: 0.125s;
  -moz-transition-delay: 0.125s;
  -ms-transition-delay: 0.125s;
  -o-transition-delay: 0.125s;
  transition-delay: 0.125s;
  -webkit-transform: translate3d(0, 0, 0);
  -khtml-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);
}
.hide {
  overflow: hidden;
  height: 0;
}
.nodisplay {
  display: none;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 2em;
  margin-top: 7px;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 2em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/******************************************
 * Border (single-line)                   *
 * -------------------------------------- *
 * a: all             l: light            *
 * t: top             m: medium           *
 * r: right           d: dark             *
 * b: bottom          b: black            *
 * l: left                                *
 * h: horizontal                          *
 * v: vertical                            *
 ******************************************/
.no-border {
  border: none;
}
.bal {
  border: 1px solid #e7e6eb;
}
.bam {
  border: 1px solid #dadada;
}
.bad {
  border: 1px solid #ccc;
}
.bab {
  border: 1px solid #000;
}
.btl {
  border-top: 1px solid #e7e6eb;
}
.btm {
  border-top: 1px solid #dadada;
}
.btd {
  border-top: 1px solid #ccc;
}
.btb {
  border-top: 1px solid #000;
}
.brl {
  border-right: 1px solid #e7e6eb;
}
.brm {
  border-right: 1px solid #dadada;
}
.brd {
  border-right: 1px solid #ccc;
}
.brb {
  border-right: 1px solid #000;
}
.bbl {
  border-bottom: 1px solid #e7e6eb;
}
.bbm {
  border-bottom: 1px solid #dadada;
}
.bbd {
  border-bottom: 1px solid #ccc;
}
.bbb {
  border-bottom: 1px solid #000;
}
.bll {
  border-left: 1px solid #e7e6eb;
}
.blm {
  border-left: 1px solid #dadada;
}
.bld {
  border-left: 1px solid #ccc;
}
.blb {
  border-left: 1px solid #000;
}
.bhl {
  border-top: 1px solid #e7e6eb;
  border-bottom: 1px solid #e7e6eb;
}
.bhm {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.bhd {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.bhb {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.bvl {
  border-left: 1px solid #e7e6eb;
  border-right: 1px solid #e7e6eb;
}
.bvm {
  border-left: 1px solid #dadada;
  border-right: 1px solid #dadada;
}
.bvd {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.bvb {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
/******************************************
 * Border radius                          *
 * -------------------------------------- *
 * a: all                n: none          *
 * t: top                t: tiny (2px)    *
 * r: right              s: small (5px)   *
 * b: bottom                              *
 * l: left                                *
 ******************************************/
.bran {
  border-radius: 0;
}
.brat {
  border-radius: 2px;
}
.bras {
  border-radius: 5px;
}
.brtn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.brtt {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.brts {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.brrn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.brrt {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.brrs {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.brbn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.brbt {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.brbs {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.brln {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.brlt {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.brls {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
/******************************************
 * Margins & Paddings                     *
 * -------------------------------------- *
 * a: all                n: none          *
 * t: top                t: tiny (2px)    *
 * r: right              s: small (5px)   *
 * b: bottom             m: medium (10px) *
 * l: left               l: large (15px)  *
 * h: horizontal         h: huge (20px)   *
 * v: vertical                            *
 ******************************************/
.man {
  margin: 0;
}
.mat {
  margin: 2px;
}
.mas {
  margin: 15px;
}
.mam {
  margin: 30px;
}
.mal {
  margin: 60px;
}
.mah {
  margin: 90px;
}
.mtn {
  margin-top: 0;
}
.mtt {
  margin-top: 2px;
}
.mts {
  margin-top: 15px;
}
.mtm {
  margin-top: 30px;
}
.mtl {
  margin-top: 60px;
}
.mth {
  margin-top: 90px;
}
.mrn {
  margin-right: 0;
}
.mrt {
  margin-right: 2px;
}
.mrs {
  margin-right: 15px;
}
.mrm {
  margin-right: 30px;
}
.mrl {
  margin-right: 60px;
}
.mrh {
  margin-right: 90px;
}
.mbn {
  margin-bottom: 0;
}
.mbt {
  margin-bottom: 2px;
}
.mbs {
  margin-bottom: 15px;
}
.mbm {
  margin-bottom: 30px;
}
.mbl {
  margin-bottom: 60px;
}
.mbh {
  margin-bottom: 90px;
}
.mln {
  margin-left: 0;
}
.mlt {
  margin-left: 2px;
}
.mls {
  margin-left: 15px;
}
.mlm {
  margin-left: 30px;
}
.mll {
  margin-left: 60px;
}
.mlh {
  margin-left: 90px;
}
.mhn {
  margin-left: 0;
  margin-right: 0;
}
.mht {
  margin-left: 2px;
  margin-right: 2px;
}
.mhs {
  margin-left: 15px;
  margin-right: 15px;
}
.mhm {
  margin-left: 30px;
  margin-right: 30px;
}
.mhl {
  margin-left: 60px;
  margin-right: 60px;
}
.mhh {
  margin-left: 30px;
  margin-right: 90px;
}
.mvn {
  margin-top: 0;
  margin-bottom: 0;
}
.mvt {
  margin-top: 2px;
  margin-bottom: 2px;
}
.mvs {
  margin-top: 15px;
  margin-bottom: 15px;
}
.mvm {
  margin-top: 30px;
  margin-bottom: 30px;
}
.mvl {
  margin-top: 60px;
  margin-bottom: 60px;
}
.mvh {
  margin-top: 30px;
  margin-bottom: 90px;
}
.pan {
  padding: 0;
}
.pat {
  padding: 2px;
}
.pas {
  padding: 15px;
}
.pam {
  padding: 30px;
}
.pal {
  padding: 60px;
}
.pah {
  padding: 90px;
}
.ptn {
  padding-top: 0;
}
.ptt {
  padding-top: 2px;
}
.pts {
  padding-top: 15px;
}
.ptm {
  padding-top: 30px;
}
.ptl {
  padding-top: 60px;
}
.pth {
  padding-top: 90px;
}
.prn {
  padding-right: 0;
}
.prt {
  padding-right: 2px;
}
.prs {
  padding-right: 15px;
}
.prm {
  padding-right: 30px;
}
.prl {
  padding-right: 60px;
}
.prh {
  padding-right: 90px;
}
.pbn {
  padding-bottom: 0;
}
.pbt {
  padding-bottom: 2px;
}
.pbs {
  padding-bottom: 15px;
}
.pbm {
  padding-bottom: 30px;
}
.pbl {
  padding-bottom: 60px;
}
.pbh {
  padding-bottom: 90px;
}
.pln {
  padding-left: 0;
}
.plt {
  padding-left: 2px;
}
.pls {
  padding-left: 15px;
}
.plm {
  padding-left: 30px;
}
.pll {
  padding-left: 60px;
}
.plh {
  padding-left: 90px;
}
.phn {
  padding-left: 0;
  padding-right: 0;
}
.pht {
  padding-left: 2px;
  padding-right: 2px;
}
.phs {
  padding-left: 15px;
  padding-right: 15px;
}
.phm {
  padding-left: 30px;
  padding-right: 30px;
}
.phl {
  padding-left: 60px;
  padding-right: 60px;
}
.phh {
  padding-left: 30px;
  padding-right: 90px;
}
.pvn {
  padding-top: 0;
  padding-bottom: 0;
}
.pvt {
  padding-top: 2px;
  padding-bottom: 2px;
}
.pvs {
  padding-top: 15px;
  padding-bottom: 15px;
}
.pvm {
  padding-top: 30px;
  padding-bottom: 30px;
}
.pvl {
  padding-top: 60px;
  padding-bottom: 60px;
}
.pvh {
  padding-top: 30px;
  padding-bottom: 90px;
}
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  transition: transform 0.5s ease-in-out;
}
@media only screen and (max-width: 63.9em) {
  .header {
    height: 80px;
  }
}
@media only screen and (min-width: 64em) {
  .header.scrolled {
    transform: translateY(-47px);
  }
  .header.scrolled .logo img {
    transform: scale(0.5);
  }
  .header.scrolled .cbo-menu {
    transform: translateY(-10px);
  }
}
.header a {
  color: #000036;
}
.header .logo {
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 20px;
}
.header .logo img {
  margin-top: 10px;
  max-height: 60px;
  width: auto;
  transition: all 0.5s ease-in-out;
}
@media only screen and (min-width: 64em) {
  .header .logo {
    height: 117px;
  }
  .header .logo img {
    align-self: center;
    max-height: 87px;
    max-width: 190px;
    height: auto;
    width: auto;
    transform-origin: bottom left;
    transition: transform 0.5s ease-in-out;
  }
}
.header .header-top {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #e7e6eb;
}
.header .header-top:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 100%;
  width: 99999px;
  height: 1px;
  background: #e7e6eb;
}
.header .header-top .phone {
  font-family: mic-32-new-web, sans-serif;
  font-size: 17px;
}
.header .header-top .phone:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  color: var(--main-color);
  font-size: 16px;
}
.header .header-top .socials {
  margin-left: 30px;
}
.header .header-top .socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .header-top .socials ul li {
  border-left: 1px solid #e7e6eb;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 46px;
}
.header .header-top .socials ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s;
}
.header .header-top .socials ul li a i:before {
  transition: color 0.3s;
}
.header .header-top .socials ul li a:hover {
  background: #f3f3f7;
}
.header .header-top .socials ul li a.facebook:hover {
  background: #1877f2;
  color: #ffffff;
}
.header .header-top .socials ul li a.instagram:hover {
  background: #4c5fd7;
  color: #ffffff;
}
.header .header-top .socials ul li a.youtube:hover {
  background: #ff0000;
  color: #ffffff;
}
.header .header-top .socials ul li a.twitter:hover {
  background: #1da1f2;
  color: #ffffff;
}
.header .header-top .socials ul li a.tiktok:hover {
  background: #ee1d52;
  color: #ffffff;
}
.header .header-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .header-bottom .main-nav {
  width: 100%;
}
.header .header-bottom .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header .header-bottom .main-nav ul li {
  position: relative;
}
.header .header-bottom .main-nav ul li a {
  display: block;
  padding: 20px 0;
  position: relative;
  font-family: mic-32-new-web, sans-serif;
  font-size: 17px;
  font-weight: 400;
}
.header .header-bottom .main-nav ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  display: block;
  height: 4px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background: var(--main-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.2s;
}
.header .header-bottom .main-nav ul li a:hover:before {
  transform: scaleY(1);
}
.header .header-bottom .main-nav ul li.menu-item-has-children a:after {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  font-size: 16px;
  color: var(--main-color);
  position: relative;
  left: 5px;
  top: 1px;
}
.header .header-bottom .main-nav ul li.current-post-ancestor a, .header .header-bottom .main-nav ul li.current_page_ancestor a, .header .header-bottom .main-nav ul li.current_page_item a {
  color: var(--main-color);
}
.header .header-bottom .main-nav ul li.current-post-ancestor a:before, .header .header-bottom .main-nav ul li.current_page_ancestor a:before, .header .header-bottom .main-nav ul li.current_page_item a:before {
  transform: scaleY(1);
}
.header .header-bottom .main-nav ul li .sub-menu li.current_page_item a {
  color: var(--main-color);
}
.header .header-bottom .main-nav ul li ul.sub-menu {
  position: absolute;
  top: 50px;
  left: -24px;
  margin-top: 10px;
  z-index: 100;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  background: #f3f3f7;
  border-radius: 6px;
}
.header .header-bottom .main-nav ul li ul.sub-menu li {
  margin: 0;
  white-space: nowrap;
  align-self: flex-start;
  width: 100%;
}
.header .header-bottom .main-nav ul li ul.sub-menu li:not(:last-of-type) {
  border-bottom: 1px solid #dad9de;
}
.header .header-bottom .main-nav ul li ul.sub-menu li.current_page_item, .header .header-bottom .main-nav ul li ul.sub-menu li.current-menu-item, .header .header-bottom .main-nav ul li ul.sub-menu li a {
  color: #000036;
  display: block;
  padding: 14px 32px 14px 24px;
  transition: background-color 0.3s ease-in-out;
}
.header .header-bottom .main-nav ul li ul.sub-menu li.current_page_item:after, .header .header-bottom .main-nav ul li ul.sub-menu li.current_page_item:before, .header .header-bottom .main-nav ul li ul.sub-menu li.current-menu-item:after, .header .header-bottom .main-nav ul li ul.sub-menu li.current-menu-item:before, .header .header-bottom .main-nav ul li ul.sub-menu li a:after, .header .header-bottom .main-nav ul li ul.sub-menu li a:before {
  display: none;
}
.header .header-bottom .main-nav ul li ul.sub-menu li.current_page_item:hover, .header .header-bottom .main-nav ul li ul.sub-menu li.current-menu-item:hover, .header .header-bottom .main-nav ul li ul.sub-menu li a:hover {
  background: #dedee9;
}
.header .header-bottom .main-nav ul li ul.sub-menu li.current-menu-item a {
  color: var(--main-color);
  display: block;
  padding: 0 32px 0 0;
}
.header .header-bottom .main-nav ul li ul.sub-menu li.current_page_item a, .header .header-bottom .main-nav ul li ul.sub-menu li.current-page-ancestor a, .header .header-bottom .main-nav ul li ul.sub-menu li.current-post-ancestor a, .header .header-bottom .main-nav ul li ul.sub-menu li.current-menu-item a {
  color: var(--main-color);
  display: block;
  padding: 0 32px 0 0;
}
.header .header-bottom .main-nav ul li ul.sub-menu li:first-of-type a {
  border-radius: 6px 6px 0 0;
}
.header .header-bottom .main-nav ul li ul.sub-menu li:last-of-type a {
  border-radius: 0 0 6px 6px;
}
.header .header-bottom .main-nav ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header .header-bottom .search {
  margin-left: 20px;
}
.header .header-bottom .search #search-toggle {
  border-radius: 50%;
  border: 1px solid #e7e6eb;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out;
}
.header .header-bottom .search #search-toggle.active, .header .header-bottom .search #search-toggle:hover {
  border-color: #000036;
}
.header .header-bottom .search i {
  font-size: 15px;
  transition: color 0.3s;
}
@media only screen and (max-width: 63.9em) {
  .header .grid-container, .header .grid-x {
    height: 100%;
  }
}
.header .nav-toggle {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}
.header .nav-toggle .hamburger {
  position: relative;
  margin: 0 12px 0 0;
  width: 20px;
}
.header .nav-toggle .hamburger div {
  width: 20px;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  top: 50%;
}
.header .nav-toggle .hamburger div:first-of-type {
  transform: translateY(calc(-50% - 1px));
}
.header .nav-toggle .hamburger div:last-of-type {
  transform: translateY(calc(-50% + 4px));
}
.header .nav-toggle span {
  color: #000036;
  font-family: mic-32-new-web, sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.mobile-nav {
  position: fixed;
  z-index: 1010;
  top: 0;
  bottom: 0;
  left: 100%;
  right: 0;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  overflow: scroll;
  overflow-x: hidden;
  padding: 0 0 50px;
}
.mobile-nav .wrapper {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transition-delay: 0s;
}
.mobile-nav .close {
  position: absolute;
  right: 40px;
  top: 30px;
}
.mobile-nav .close:after {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  color: var(--main-color);
  font-size: 24px;
}
.mobile-nav .phone {
  padding: 30px 40px;
}
.mobile-nav .phone a {
  font-size: 17px;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 700;
  color: #000036;
}
.mobile-nav .phone a:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  color: var(--main-color);
  margin-right: 4px;
}
.mobile-nav ul.nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav ul.nav li {
  position: relative;
  margin: 0;
  border-top: 1px solid #e7e6eb;
  border-bottom: 1px solid #e7e6eb;
}
.mobile-nav ul.nav li .sub-toggle {
  position: absolute;
  right: 10px;
  top: 30px;
  width: 40px;
  height: 40px;
}
.mobile-nav ul.nav li .sub-toggle:after {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  color: var(--main-color);
  font-size: 20px;
  display: block;
  transform-origin: center;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease-in-out;
}
.mobile-nav ul.nav li a {
  color: #000036;
  display: block;
  padding: 24px 40px;
  font-family: mic-32-new-web, sans-serif;
  font-size: 21px;
  transition: background-color 0.3s;
  transition-delay: 0.3s;
}
.mobile-nav ul.nav li a.active {
  background: #f3f3f7;
  transition-delay: unset;
}
.mobile-nav ul.nav li ul.sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f3f3f7;
}
.mobile-nav ul.nav li ul.sub-menu li {
  border: none;
}
.mobile-nav ul.nav li ul.sub-menu li a {
  display: block;
  font-size: 18px;
  padding: 10px 56px;
}
.mobile-nav .search-form {
  padding: 20px 40px;
}
.mobile-nav .search-form form {
  border: 1px solid #e7e6eb;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.mobile-nav .search-form form input {
  border: none;
  box-shadow: none;
}
.mobile-nav .search-form form button {
  background: transparent;
  border: none;
}
@media only screen and (max-width: 40em) {
  .mobile-nav .search-form form button {
    position: relative;
    right: 20px;
  }
}
.mobile-nav .socials {
  text-align: center;
}
.mobile-nav .socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .socials ul li {
  border-top: 1px solid #e7e6eb;
  border-bottom: 1px solid #e7e6eb;
  border-left: 1px solid #e7e6eb;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 46px;
}
.mobile-nav .socials ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s;
}
.mobile-nav .socials ul li a i {
  color: #000036;
}
.mobile-nav .socials ul li a i:before {
  transition: color 0.3s;
}
.mobile-nav .socials ul li a:hover {
  background: #f3f3f7;
}
.mobile-nav .socials ul li:last-of-type {
  border-right: 1px solid #e7e6eb;
}
.mobile-nav.active {
  left: 40px;
  transition-delay: 0s;
}
.mobile-nav.active .wrapper {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}
.search-bar {
  position: fixed;
  z-index: 990;
  bottom: 100%;
  left: 0;
  right: 0;
  background: #f3f3f7;
  padding: 30px;
  text-align: center;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  transition: all 0.3s;
}
.search-bar .search-form {
  margin: 0 auto;
  max-width: calc(100% - 1.875rem);
  width: 620px;
}
.search-bar .search-form form {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #cccbd0;
}
.search-bar .search-form form .search-input-container {
  width: 100%;
  flex-grow: 1;
}
.search-bar .search-form form .search-input-container input {
  width: 100%;
  border: none;
  box-shadow: none;
  background-color: transparent;
  padding: 12px 20px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
  color: #4d4d72;
}
.search-bar .search-form form .search-input-container input::placeholder {
  color: rgba(77, 77, 114, 0.8);
}
.search-bar .search-form form button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 20px;
}
.search-bar .search-form form button i {
  font-size: 16px;
}
.search-bar.active {
  transform: translateY(calc(100% + 117px));
}
.search-bar.scrolled {
  transform: translateY(-47px);
}
.search-bar.scrolled.active {
  transform: translateY(calc(100% + 70px));
}
.cbo-menu {
  position: relative;
  transition: transform 0.3s;
  transition-delay: 0.3s;
}
.cbo-menu .cbo-toggle {
  position: relative;
  z-index: 2010;
  background: #00976c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px 14px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  margin: 0 0 -6px 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.cbo-menu .cbo-toggle:hover {
  background: #00835d;
}
.cbo-menu .cbo-toggle .hamburger {
  position: relative;
  margin-right: 40px;
  background-color: rgba(255, 255, 0, 0.2);
}
.cbo-menu .cbo-toggle .hamburger div {
  position: absolute;
  top: -2px;
  left: 0;
  width: 21px;
  height: 2px;
  background: #ffffff;
  transform-origin: center;
  transition: transform 0.3s;
}
.cbo-menu .cbo-toggle .hamburger div:nth-of-type(2) {
  top: 3px;
}
.cbo-menu .cbo-toggle .label {
  color: #ffffff;
  font-family: mic-32-new-web, sans-serif;
  font-size: 17px;
}
.cbo-menu .cbo-toggle.active .hamburger div:first-of-type {
  transform: translateY(3px) rotate(45deg);
}
.cbo-menu .cbo-toggle.active .hamburger div:nth-of-type(2) {
  transform: translateY(-2px) rotate(-45deg);
}
.cbo-menu .menu-wrapper {
  position: absolute;
  z-index: 2000;
  top: 0;
  right: -80px;
  padding: 110px 70px 70px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(#73ac25, #00976c);
  transform: translateY(-1400px);
  transition: transform 0.3s ease-in-out;
}
.cbo-menu .menu-wrapper.active {
  transform: translateY(0);
}
.cbo-menu .menu-wrapper .singular-content {
  color: #ffffff;
}
.cbo-menu .menu-wrapper .singular-content h3 {
  color: #ffffff;
  font-size: 30px;
  margin: 0 0 24px 0;
}
@media only screen and (min-width: 64em) {
  .cbo-menu .menu-wrapper .singular-content {
    min-width: 420px;
  }
}
.cbo-menu .menu-wrapper nav.cbo-nav ul {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
}
.cbo-menu .menu-wrapper nav.cbo-nav ul li {
  margin: 0;
  padding: 8px 0;
  position: relative;
}
.cbo-menu .menu-wrapper nav.cbo-nav ul li a {
  color: #ffffff;
  display: inline-block;
  font-size: 19px;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 700;
  transition: color 0.3s;
}
.cbo-menu .menu-wrapper nav.cbo-nav ul li a .title {
  display: inline-block;
}
.cbo-menu .menu-wrapper nav.cbo-nav ul li a:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  line-height: 1;
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: #73ac25;
  transition: transform 0.3s;
  position: relative;
  top: -3px;
}
.cbo-menu .menu-wrapper nav.cbo-nav ul li a:hover:before {
  transform: translateX(4px);
}
#overlay {
  position: absolute;
  z-index: 1000;
  top: 0;
  bottom: 0;
  right: -1000px;
  background: rgba(0, 0, 54, 0.75);
  width: 1000vw;
  height: 1000vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: all;
}
#overlay.active {
  opacity: 1;
  visibility: visible;
}
#nav-overlay {
  position: absolute;
  z-index: 1000;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 54, 0.75);
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: all;
}
#nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.header-link {
  margin-right: 30px;
  display: inline-block;
  background-color: var(--main-color);
  color: #ffffff !important;
  padding: 0 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  transition: all 300ms linear;
}
.header-link:hover {
  background-color: var(--secondary-color);
}
@media only screen and (max-width: 63.9em) {
  .header-link {
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
.section-home-header {
  padding-top: 24px;
}
.section-home-header .home-lead {
  padding: 70px 0 120px;
}
@media only screen and (min-width: 64em) {
  .section-home-header .home-lead {
    padding-right: 150px;
    min-height: 690px;
  }
}
@media only screen and (max-width: 63.9em) {
  .section-home-header .home-lead {
    padding: 0 0 120px;
  }
}
.section-home-header .carousel {
  z-index: 10;
  right: 0;
}
@media only screen and (min-width: 64em) {
  .section-home-header .carousel {
    position: absolute;
    top: -200px;
    bottom: -110px;
    left: 50%;
    right: -150px;
  }
}
.section-home-header .carousel .bg {
  position: absolute;
}
.section-home-header .carousel .bg.is-school .oval-1 {
  fill: var(--main-color);
}
.section-home-header .carousel .bg.is-school .oval-2 {
  fill: var(--secondary-color);
}
.section-home-header .carousel #home-gallery {
  background-color: #ffffff;
  mask-image: url(../img/mask.svg);
  -webkit-mask-image: url(../img/mask.svg);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  z-index: 1;
  margin-bottom: -70px;
  margin-top: -70px;
  aspect-ratio: 1.4035087719;
  left: -10px;
}
.section-home-header .carousel #home-gallery * {
  height: 100%;
}
@media only screen and (max-width: 63.9em) {
  .section-home-header .carousel #home-gallery {
    mask-size: 100vw;
    -webkit-mask-size: 100vw;
  }
}
@supports not (aspect-ratio: 1.4035087719) {
  .section-home-header .carousel #home-gallery {
    display: flex;
  }
  .section-home-header .carousel #home-gallery * {
    display: flex;
    width: 100%;
  }
  .section-home-header .carousel #home-gallery:before {
    content: "";
    display: inline-block;
    padding-top: 71.25%;
  }
}
@media only screen and (min-width: 64em) {
  .section-home-header .carousel #home-gallery {
    position: absolute;
    top: 270px;
    left: 0;
    right: 0;
    height: 790px;
    margin: 0;
    aspect-ratio: unset;
  }
}
.section-home-header .carousel #home-gallery .slick-track {
  background-color: #ffffff;
}
.section-home-header .carousel #home-gallery .slide {
  background-position: center !important;
}
@media only screen and (max-width: 63.9em) {
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance:none) and (stroke-color:transparent) {
      .section-home-header .carousel #home-gallery:before {
        content: "";
        display: block;
        padding-top: 71.25%;
      }
      .section-home-header .carousel #home-gallery * {
        height: unset;
      }
    }
  }
}
.section-home-usps {
  background: #000036;
  min-height: 600px;
  color: #ffffff;
  padding: 180px 0;
}
@media only screen and (max-width: 40em) {
  .section-home-usps {
    padding: 80px 0;
  }
}
.section-home-usps .usps .widget-contentblock h1, .section-home-usps .usps .widget-contentblock h2, .section-home-usps .usps .widget-contentblock h3, .section-home-usps .usps .widget-contentblock h4, .section-home-usps .usps .widget-contentblock h5, .section-home-usps .usps .widget-contentblock h6 {
  color: #ffffff;
}
.section-home-usps .usps .widget-contentblock h3 {
  font-family: calliope-mvb, sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
  font-size: 26px;
}
@media only screen and (min-width: 64em) {
  .section-home-usps .usps .widget-contentblock h3 {
    font-size: 30px;
  }
}
.section-home-usps .usps .widget-contentblock h2 {
  font-size: 30px;
}
@media only screen and (min-width: 64em) {
  .section-home-usps .usps .widget-contentblock h2 {
    font-size: 48px;
  }
}
.section-home-usps .usps .widget-contentblock p {
  color: rgba(255, 255, 255, 0.7);
}
.section-home-usps .usps .uspholder .usp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media only screen and (min-width: 40em) {
  .section-home-usps .usps .uspholder .usp {
    margin: 60px 0 0 0;
  }
}
@media only screen and (max-width: 63.9em) {
  .section-home-usps .usps .uspholder .usp {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 40em) {
  .section-home-usps .usps .uspholder .usp {
    gap: 30px;
  }
}
@media only screen and (min-width: 40em) {
  .section-home-usps .usps .uspholder .usp .usp-text {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 64em) {
  .section-home-usps .usps .uspholder .usp .usp-text {
    padding-right: 120px;
  }
}
.section-home-usps .usps .uspholder .usp h3 {
  color: #ffffff;
  font-size: 30px;
}
@media only screen and (max-width: 40em) {
  .section-home-usps .usps .uspholder .usp h3 {
    font-size: 24px;
  }
}
.section-home-usps .usps .uspholder .usp .usp-subtitle {
  color: #ffffff;
  font-size: 14px;
  margin-block: 0.5em;
}
.section-home-usps .usps .uspholder .usp .singular-content {
  color: rgba(255, 255, 255, 0.7);
}
.section-home-usps .usps .uspholder .usp .top figure {
  position: relative;
}
.section-home-usps .usps .uspholder .usp .top figure .image-holder {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  padding: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  .section-home-usps .usps .uspholder .usp .top figure .image-holder {
    width: 200px;
    height: 200px;
  }
}
.section-home-usps .usps .uspholder .usp .top figure .image-holder img {
  max-width: 100%;
  max-height: 80%;
  height: auto;
  width: auto;
  object-fit: cover;
}
.section-home-usps .usps .uspholder .usp .top figure .image-holder picture {
  max-width: 60%;
  max-height: 60%;
}
.section-home-usps .usps .uspholder .usp .top figure .image-holder picture img {
  max-width: 100%;
  max-height: 120px;
}
@media only screen and (max-width: 63.9em) {
  .section-home-usps .usps .uspholder .usp .top figure .image-holder picture img {
    max-height: 46px;
  }
}
.section-home-usps .usps .uspholder .usp .top figure .bg {
  position: absolute;
  top: 5px;
  left: -5px;
  z-index: auto;
  border-radius: 50%;
  background-color: var(--main-color);
  width: 76px;
  height: 76px;
}
@media only screen and (min-width: 64em) {
  .section-home-usps .usps .uspholder .usp .top figure .bg {
    width: 200px;
    height: 200px;
    top: 10px;
    left: -10px;
  }
}
.section-home-usps .usps .uspholder:nth-of-type(odd) .usp {
  flex-direction: row-reverse;
}
.section-home-usps .usps .uspholder:nth-of-type(odd) .usp .top figure .bg {
  top: 5px;
  left: 5px;
}
@media only screen and (min-width: 64em) {
  .section-home-usps .usps .uspholder:nth-of-type(odd) .usp .top figure .bg {
    top: 10px;
    left: 10px;
  }
}
@media only screen and (min-width: 40em) {
  .section-home-usps .usps .uspholder:nth-of-type(odd) .usp .usp-text {
    margin: 0 60px 0 0;
  }
}
@media only screen and (min-width: 64em) {
  .section-home-usps .usps .uspholder:nth-of-type(odd) .usp .usp-text {
    padding-left: 140px;
    padding-right: 0;
  }
}
.section-home-usps .usps .uspholder:nth-of-type(2) .usp .top figure .bg {
  top: -5px;
  left: -5px;
}
@media only screen and (min-width: 64em) {
  .section-home-usps .usps .uspholder:nth-of-type(2) .usp .top figure .bg {
    top: -10px;
    left: -10px;
  }
}
.section-home-usps.is-main .uspholder:nth-of-type(2) .top figure .bg {
  background-color: #0072ba;
}
.section-home-usps.is-main .uspholder:nth-of-type(3) .top figure .bg {
  background-color: #73ac25;
}
.section-home-usps.is-main .uspholder:nth-of-type(4) .top figure .bg {
  background-color: #e5004c;
}
.section-home-content {
  padding: 60px 0 60px;
}
@media only screen and (min-width: 40em) {
  .section-home-content {
    padding: 120px 0 140px;
  }
}
.section-home-content .content-widget h4 {
  font-size: 24px;
  margin: 0 0 24px 0;
}
.section-home-content .content-widget h3 {
  font-size: 24px;
  margin: 0 0 32px 0;
}
@media only screen and (min-width: 40em) {
  .section-home-content .content-widget h3 {
    font-size: 30px;
  }
}
.section-home-content .content-widget h2 {
  font-size: 32px;
  margin: 0 0 40px 0;
}
@media only screen and (min-width: 40em) {
  .section-home-content .content-widget h2 {
    font-size: 48px;
  }
}
.section-home-content .content-widget .image img {
  border-radius: 24px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 40em) {
  .section-home-content .content-widget.img-left .image {
    text-align: left;
  }
}
@media only screen and (min-width: 40em) {
  .section-home-content .content-widget.img-right .image {
    text-align: right;
  }
}
.section-home-cbo {
  position: relative;
  padding: 60px 0 60px;
  background: linear-gradient(#73ac25, #00976c);
  color: #ffffff;
}
@media only screen and (min-width: 40em) {
  .section-home-cbo {
    padding: 160px 0 140px;
  }
}
.section-home-cbo .btn.btn-second {
  background: #e5004c;
}
.section-home-cbo .btn.btn-second:hover {
  color: #e5004c !important;
}
.section-home-cbo .cbo-logo {
  width: 308px;
  height: 190px;
  background-image: url("../img/section-cbo.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-home-cbo .inner-top {
  margin-bottom: 100px;
}
@media only screen and (max-width: 40em) {
  .section-home-cbo .inner-top {
    padding-top: 40px;
  }
}
.section-home-cbo .inner-top .singular-content {
  color: rgba(255, 255, 255, 0.8);
}
.section-home-cbo .inner-top .singular-content h3 {
  font-size: 24px;
  font-family: calliope-mvb, sans-serif;
  font-weight: 100;
  color: #ffffff;
}
.section-home-cbo .inner-top .singular-content h2 {
  font-size: 48px;
  color: #ffffff;
}
@media only screen and (min-width: 64em) {
  .section-home-cbo .inner-top .singular-content {
    padding-right: 130px;
  }
}
@media only screen and (max-width: 40em) {
  .section-home-cbo .inner-top .singular-content {
    margin-bottom: 30px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .section-home-cbo .inner-top .post-item {
    position: relative;
    left: -80px;
  }
}
.section-home-cbo .inner-bottom .cbo-page {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
  overflow: hidden;
  height: 440px;
  padding: 40px;
  border-radius: 30px;
  color: #ffffff;
}
@media only screen and (max-width: 40em) {
  .section-home-cbo .inner-bottom .cbo-page {
    height: 300px;
  }
}
.section-home-cbo .inner-bottom .cbo-page .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
  height: 100%;
  transform: translateY(-140px);
  border-radius: 30px;
  transition: transform 0.3s ease-in-out;
}
.section-home-cbo .inner-bottom .cbo-page .title {
  position: relative;
  z-index: 10;
}
.section-home-cbo .inner-bottom .cbo-page .title h2 {
  color: #ffffff;
  font-size: 24px;
}
.section-home-cbo .inner-bottom .cbo-page .title h3 {
  color: #ffffff;
  font-size: 24px;
  font-family: calliope-mvb, sans-serif;
  font-weight: 100;
}
.section-home-cbo .inner-bottom .cbo-page .arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
}
.section-home-cbo .inner-bottom .cbo-page .arrow svg {
  width: 20px;
  height: auto;
}
.section-home-cbo .inner-bottom .cbo-page .arrow svg path {
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 64em) {
  .section-home-cbo .inner-bottom .cbo-page.item-0 {
    margin-top: -160px;
  }
  .section-home-cbo .inner-bottom .cbo-page.item-1 {
    margin-top: 60px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .section-home-cbo .inner-bottom .cbo-page.item-0 {
    margin-top: -90px;
  }
}
.section-home-cbo .inner-bottom .cbo-page:hover {
  border-radius: 30px;
}
.section-home-cbo .inner-bottom .cbo-page:hover .arrow {
  background: #e5004c !important;
}
.section-home-cbo .inner-bottom .cbo-page:hover .arrow svg path {
  fill: #ffffff !important;
}
.section-home-cbo .inner-bottom .cbo-page:hover .overlay {
  transform: translateY(0);
}
.section-home-cbo.is-main .cbo-logo {
  display: none;
}
.section-home-news {
  padding: 60px 0 60px;
}
@media only screen and (min-width: 40em) {
  .section-home-news {
    padding: 110px 0 60px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .section-home-news .list-item {
    width: 95%;
  }
}
@media only screen and (min-width: 64em) {
  .section-home-news .cell:nth-child(2) {
    margin-bottom: 95px;
  }
}
@media only screen and (min-width: 64em) {
  .section-home-news .facebook {
    width: 602px;
    height: 560px;
  }
}
.section-home-content-2 {
  padding: 190px 0;
  background: linear-gradient(var(--main-color), #000036);
}
@media only screen and (max-width: 40em) {
  .section-home-content-2 {
    padding: 100px 0;
  }
}
.section-home-content-2 .content-widget h2, .section-home-content-2 .content-widget h3, .section-home-content-2 .content-widget h4, .section-home-content-2 .content-widget p {
  color: #ffffff;
}
.section-home-content-2.is-main {
  background: linear-gradient(#0072ba, #000036);
}
.section-home-news h2 {
  font-size: 48px;
  margin: 0 0 60px 0;
}
.section-home-news .social-widget {
  text-align: right;
}
.section-home-news .readmore {
  margin-top: 50px;
}
.footer {
  position: relative;
  background: #f3f3f7;
  padding: 90px 0 0 0;
}
.footer .footer-top .logo-social .logo {
  margin-bottom: 30px;
}
.footer .footer-top .logo-social .logo img {
  max-width: 220px;
  height: auto;
}
.footer .footer-top .logo-social .part-of {
  font-size: 14px;
  margin-bottom: 24px;
}
.footer .footer-top .logo-social .part-of a {
  color: #000036;
  position: relative;
}
.footer .footer-top .logo-social .part-of a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000036;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.footer .footer-top .logo-social .part-of a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.footer .footer-top .logo-social .socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer .footer-top .logo-social .socials ul li {
  display: inline-block;
  margin-right: 15px;
}
.footer .footer-top .logo-social .socials ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  background: #ffffff;
  color: #000036;
  transition: all 0.3s ease-in-out;
}
.footer .footer-top .logo-social .socials ul li a:hover {
  transform: translateY(-6px);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.2), 0px 10px 30px 0px rgba(0, 0, 54, 0.3);
}
.footer .footer-top .footer-nav-col {
  margin-bottom: 32px;
}
@media only screen and (min-width: 64em) {
  .footer .footer-top .footer-nav-col {
    margin-bottom: 0;
  }
}
.footer .footer-top .footer-nav-col ul.footer-nav li a {
  position: relative;
  font-family: mic-32-new-web, sans-serif;
  color: #000036;
  position: relative;
}
.footer .footer-top .footer-nav-col ul.footer-nav li a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000036;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.footer .footer-top .footer-nav-col ul.footer-nav li a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.footer .footer-top .footer-nav-col ul.footer-nav li a[target=_blank]:before {
  content: "";
  background-image: url(../img/svg/external.svg);
  background-repeat: no-repeat;
  width: 10px;
  height: 19px;
  display: inline-block;
  position: absolute;
  left: calc(100% + 6px);
  z-index: 99;
  top: 5px;
}
.footer .footer-top h4 {
  font-size: 21px;
  color: #000036;
  margin: 0 0 20px 0;
}
.footer .footer-top .contact {
  margin-bottom: 32px;
  color: #000036;
  font-family: mic-32-new-web, sans-serif;
}
@media only screen and (min-width: 64em) {
  .footer .footer-top .contact {
    width: 120%;
    margin-bottom: 0;
  }
}
.footer .footer-top .contact .item:before {
  color: var(--main-color);
  display: inline-block;
  margin-right: 8px;
}
.footer .footer-top .contact .item.phone:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
}
.footer .footer-top .contact .item.email:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
}
.footer .footer-top .contact .item.address:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
}
.footer .footer-top .contact a:not(.btn) {
  color: #000036;
  position: relative;
}
.footer .footer-top .contact a:not(.btn):after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000036;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.footer .footer-top .contact a:not(.btn):hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.footer .footer-top .contact .btn {
  margin-top: 20px;
}
.footer .footer-bottom {
  color: #9797a6;
  padding: 30px 0 80px;
}
.footer .footer-bottom * {
  font-size: 0.875rem;
}
.footer .footer-bottom a {
  color: #000036;
  position: relative;
}
.footer .footer-bottom a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000036;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.footer .footer-bottom a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.footer .footer-bottom nav.footer-bottom-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
}
.footer .footer-bottom nav.footer-bottom-nav ul li {
  display: inline-block;
  margin-right: 32px;
}
.footer .cbo-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 160px;
  background: url(../img/footer-logo.png);
}
@media only screen and (max-width: 40em) {
  .footer {
    padding-bottom: 80px;
  }
}
body {
  position: relative;
  padding-top: 117px;
  overflow-x: hidden;
}
#watch-pixel {
  position: absolute;
  left: 10px;
  top: 40px;
  pointer-events: none;
  width: 1px;
  height: 1px;
  background: transparent;
}
.full-container {
  width: 1920px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.lazy, .webpexpress-processed {
  background-image: none !important;
  background-color: #fff;
}
.grid-container {
  max-width: 80rem !important;
}
img {
  vertical-align: middle;
}
.btn {
  position: relative;
  display: inline-block;
  background: #ffffff;
  color: #e5004c;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 700;
  font-size: 19px;
  border-radius: 50px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  padding: 12px 36px;
  transition: all 0.3s ease-in-out;
}
.btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  background: #e5004c;
  transition: transform 0.3s;
}
.btn:hover {
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.2), 0px 10px 30px 0px rgba(0, 0, 54, 0.25);
  background: #e5004c;
  color: #ffffff;
}
.btn.btn-second {
  background: var(--main-color);
  color: #ffffff;
}
.btn.btn-second:hover {
  color: var(--main-color);
  background: #ffffff;
}
.btn.arrow:after {
  content: url(../img/svg/icon-long-arrow-right-white.svg);
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 30px;
  margin-left: 20px;
  background: none;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}
.btn.arrow:hover:after {
  transform: translateX(6px);
}
input[type="submit"].btn, button.btn {
  border: none;
}
.backlink {
  line-height: 1;
  display: inline-block;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #e5004c;
}
.backlink .title {
  display: inline-block;
  color: #e5004c !important;
  color: #e5004c;
  position: relative;
}
.backlink .title:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e5004c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.backlink .title:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.backlink .title:after {
  top: calc(100% - 1px) !important;
}
.backlink:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5004c;
  color: #ffffff;
  transition: all 0.3s linear;
  position: relative;
  top: -1px;
  border: 2px solid #e5004c;
}
.backlink:hover:before {
  background: #ffffff !important;
  color: #e5004c;
}
.backlink:hover .title:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.backlink.is-main {
  color: #e5004c;
}
.backlink.is-main:before {
  background: #e5004c;
}
.icon-tiktok:after {
  content: url(../img/svg/icon-tiktok.svg);
  display: inline-block;
  width: 12px;
  position: relative;
  top: 3px;
}
.icon-tiktok:hover:after {
  color: white;
  fill: white;
}
.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 40px 0;
}
@media only screen and (min-width: 64em) {
  .page-title {
    font-size: 3.75rem;
  }
}
.handwritten {
  font-family: calliope-mvb, sans-serif;
  font-weight: 300;
}
.rounded {
  position: relative;
}
.rounded:before {
  content: url(../img/svg/bow-top.svg);
  position: absolute;
  top: -2px;
  left: -7px;
  right: -7px;
  pointer-events: none;
}
.rounded:after {
  content: url(../img/svg/bow-bottom.svg);
  position: absolute;
  bottom: -12px;
  left: -4px;
  right: -4px;
  pointer-events: none;
}
.rounded.section-home-content:last-of-type:after {
  content: url(../img/svg/bow-bottom-blue.svg);
}
.news-breadcrumbs {
  position: relative;
  padding-bottom: 100px;
}
.news-breadcrumbs:after {
  content: "";
  display: block;
  mask-image: url(../img/svg/bow-bottom.svg);
  mask-size: contain;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  background-color: #f3f3f7;
  position: absolute;
  bottom: 0;
  left: -4px;
  right: -4px;
  pointer-events: none;
  height: 220px;
}
.gform_wrapper {
  border-radius: 30px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  padding: 60px;
}
.gform_wrapper .validation_error, .gform_wrapper .validation_message {
  display: none;
}
.gform_wrapper .gform_heading h3.gform_title {
  font-size: 30px;
  margin: 0 0 24px 0;
}
.gform_wrapper .gform_heading .gform_description {
  display: block;
  font-size: 17px;
  font-weight: 300;
  margin: 0 0 20px;
}
.gform_wrapper .gform_body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gform_wrapper .gform_body ul li {
  margin: 0;
  padding: 10px 0;
}
@media only screen and (min-width: 40em) {
  .gform_wrapper .gform_body ul li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.gform_wrapper .gform_body ul li label {
  padding-top: 6px;
  flex-basis: 33%;
  font-size: 18px;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 600;
  color: #000036;
}
.gform_wrapper .gform_body ul li label .gfield_required {
  color: #f69100;
  margin-left: 4px;
  font-weight: 400;
}
.gform_wrapper .gform_body ul li ul li {
  display: inline-block;
  padding-right: 15px;
}
.gform_wrapper .gform_body ul li.hidden_label label {
  display: none;
}
.gform_wrapper .gform_body ul li .ginput_container {
  flex-basis: 66%;
}
.gform_wrapper .gform_body ul li .ginput_container input[type="text"], .gform_wrapper .gform_body ul li .ginput_container textarea {
  width: 100%;
  box-shadow: none;
  font-size: 17px;
  padding: 6px 20px;
  border-radius: 6px;
  border: 1px solid #cecdd1;
}
.gform_wrapper .gform_body ul li .ginput_container textarea {
  height: 150px;
  resize: vertical;
}
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_select {
  width: 100%;
  border: 1px solid #cecdd1;
  border-radius: 6px;
  position: relative;
}
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_select:after {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  color: var(--main-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.gform_wrapper .gform_body ul li .ginput_container select {
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  font-size: 17px;
}
.gform_wrapper .gform_body ul li.gfield_error input[type="text"], .gform_wrapper .gform_body ul li.gfield_error textarea {
  border-color: #e5004c;
}
.gform_wrapper .gform_footer {
  margin-top: 24px;
}
@media only screen and (min-width: 40em) {
  .gform_wrapper .gform_footer .custom-footer {
    display: flex;
    align-items: center;
  }
}
.gform_wrapper .gform_footer .custom-footer .required {
  flex-basis: 33%;
}
.gform_wrapper .gform_footer .custom-footer .required span {
  color: #f69100;
}
.quick-links {
  margin-top: 32px;
}
.quick-links h3 {
  font-size: 1.875rem;
  margin: 10px 0 16px 0;
}
.quick-links ul {
  margin: 0;
  padding: 0 0 0 40px;
  list-style: none;
}
.quick-links ul li {
  margin: 0;
  padding: 8px 0;
  position: relative;
}
.quick-links ul li a {
  color: var(--main-color);
  display: inline-block;
  font-size: 19px;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 700;
  transition: color 0.3s;
}
.quick-links ul li a .title {
  display: inline-block;
  color: var(--main-color);
  position: relative;
}
.quick-links ul li a .title:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.quick-links ul li a .title:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.quick-links ul li a .title:after {
  top: calc(100% - 4px) !important;
}
.quick-links ul li a:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  font-size: 14px;
  display: inline-block;
  margin-right: 16px;
  border: 2px solid var(--main-color);
  width: 21px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  border-radius: 50%;
  background: var(--main-color);
  color: #ffffff;
  transition: all 0.3s;
  position: relative;
  top: -2px;
  padding-left: 1px;
}
.quick-links ul li a:hover .title:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.quick-links ul li a:hover:before {
  background: #ffffff;
  color: var(--main-color);
}
.quick-links.is-main ul li a {
  color: #e5004c;
}
.quick-links.is-main ul li a .title {
  color: #e5004c;
  position: relative;
}
.quick-links.is-main ul li a .title:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e5004c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.quick-links.is-main ul li a .title:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.quick-links.is-main ul li a:before {
  background: #e5004c;
  border-color: #e5004c;
}
.quick-links.is-main ul li a:hover:before {
  background: #ffffff;
  color: #e5004c;
}
.post-item {
  position: relative;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  padding: 60px;
  border-radius: 30px;
}
.post-item h3 {
  font-size: 24px;
  font-family: calliope-mvb, sans-serif;
  font-weight: 100;
  margin: 0 0 10px 0;
}
.post-item h2 {
  font-size: 30px;
  margin: 0 0 16px 0;
}
.post-item .singular-content {
  padding: 0 !important;
  color: #000036 !important;
}
.post-item .thumbnail {
  background-size: cover;
  background-position: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
}
@media only screen and (min-width: 64em) {
  .post-item .thumbnail {
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translate(-50%, -50%);
  }
}
.list-title {
  text-align: center;
  margin-bottom: 60px;
}
.list-title h2 {
  font-size: 30px;
  margin: 0;
}
.list-item {
  display: block;
  position: relative;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  background: #ffffff;
  border-radius: 30px;
  padding: 60px;
  color: #000036;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.list-item.news-featured {
  margin-top: 40px;
}
.list-item .img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .list-item .img {
    position: absolute;
    top: -40px;
    right: -40px;
  }
}
@media only screen and (max-width: 63.9em) {
  .list-item .img {
    position: relative;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.list-item .img .bgimg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}
.list-item .list-item-header .post-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.list-item .list-item-header .post-meta .date {
  font-family: calliope-mvb, sans-serif;
  font-size: 21px;
  font-weight: 300;
}
.list-item .list-item-header h2.title {
  font-size: 30px;
  margin: 0 0 16px;
}
@media only screen and (min-width: 64em) {
  .list-item .list-item-header h2.title {
    min-height: 72px;
    padding-right: 120px;
  }
}
.list-item .readmore {
  color: var(--main-color);
  position: relative;
}
.list-item .readmore:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.list-item .readmore:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.list-item:not(.employee-item):hover {
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.2), 0px 10px 30px 0px rgba(0, 0, 54, 0.25);
}
.list-item:not(.employee-item):hover .img .bgimg {
  transform: scale(1.1);
}
.list-item.is-main .readmore {
  color: #e5004c;
  position: relative;
}
.list-item.is-main .readmore:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e5004c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.list-item.is-main .readmore:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.list-item.service-item {
  width: calc(100% - 20px);
  min-height: 312px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 64em) {
  .list-item.service-item .content {
    padding-right: 120px;
  }
}
.list-item.news-item-simple {
  padding: 40px;
  width: 100%;
  height: 100%;
}
.list-item.news-item-simple h2.title {
  padding: 0;
  font-size: 24px;
}
.list-item.employee-item {
  width: 100%;
  padding: 40px 20px;
  margin: 0 0 40px 0;
  border-radius: 20px;
  min-height: 90%;
}
.list-item.employee-item .img {
  width: 210px;
  height: 210px;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 63.9em) {
  .list-item.employee-item .img {
    top: -80px;
  }
}
.list-item.employee-item .img .bgimg {
  width: 210px;
  height: 210px;
}
.list-item.employee-item header {
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .list-item.employee-item header {
    padding-top: 160px;
  }
}
.list-item.employee-item header h2.title {
  font-size: 18px;
  padding: 0;
  min-height: auto;
  margin-bottom: 8px;
}
.list-item.employee-item header .function {
  font-size: 15px;
}
@media only screen and (max-width: 63.9em) {
  .list-item.employee-item header {
    margin-top: -40px;
  }
}
.list-item.search-item {
  color: #000036 !important;
  margin-bottom: 40px;
}
.list-item.search-item h3 {
  margin: 0 0 16px 0;
}
.wp-paginate {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-paginate li {
  display: inline-block;
  margin: 0 12px;
}
.wp-paginate li a {
  font-size: 17px;
}
.wp-paginate li span.current {
  font-weight: 700;
}
.taxonomy {
  margin: 0 30px 0 0;
}
.taxonomy .label {
  background: #00976c;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 300;
  border-radius: 50px;
  padding: 2px 12px;
}
.section-page-header {
  position: relative;
  margin: 0 0 70px 0;
}
@media only screen and (min-width: 64em) {
  .section-page-header {
    margin: 0 0 140px 0;
  }
}
@media only screen and (min-width: 64em) {
  .section-page-header:not(.no-img) .full-container {
    min-height: 580px;
  }
}
@media only screen and (min-width: 64em) {
  .section-page-header:not(.no-img) {
    min-height: 480px;
  }
}
.section-page-header.no-img {
  margin: 0;
}
.section-page-header .grid-container {
  position: relative;
  z-index: 10;
}
@media only screen and (min-width: 64em) {
  .section-page-header .page-lead {
    padding-top: 100px;
  }
}
.section-page-header .page-lead span {
  display: block;
  font-size: 30px;
  margin: 0 0 10px 0;
}
.section-page-header .header-img {
  position: absolute;
  top: 0;
  bottom: -70px;
  left: 45%;
  right: 0;
  z-index: 1;
  mask-image: url(../img/mask.svg);
  -webkit-mask-image: url(../img/mask.svg);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 0 -290px;
  -webkit-mask-position: 0 -290px;
}
@media only screen and (min-width: 64em) {
  .section-page-header .header-img {
    min-height: 610px;
    max-height: 640px;
  }
}
@media (min-width: 1079px) and (max-width: 1599px) {
  .section-page-header .header-img {
    mask-position: 0 -140px;
    -webkit-mask-position: 0 -140px;
  }
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .section-page-header .header-img {
    mask-size: 130%;
    -webkit-mask-size: 130%;
  }
}
@media (min-width: 1800px) {
  .section-page-header .header-img {
    mask-size: 120%;
    -webkit-mask-size: 120%;
  }
}
@media only screen and (max-width: 63.9em) {
  .section-page-header .header-img {
    aspect-ratio: 1.4035087719;
    mask-size: 100%;
    -webkit-mask-size: 100%;
    left: -10px;
    mask-position: center;
    -webkit-mask-position: center;
  }
}
@media only screen and (max-width: 63.9em) {
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance:none) and (stroke-color:transparent) {
      .section-page-header .header-img:before {
        content: "";
        display: block;
        padding-top: 71.25%;
      }
      .section-page-header .header-img .img {
        position: absolute;
        top: 0;
      }
    }
  }
}
.section-page-header .header-img .img {
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 63.9em) {
  .section-page-header .header-img {
    position: relative;
  }
}
@media (min-width: 1921px) {
  .section-page-header .header-img {
    mask-size: 100%;
    -webkit-mask-size: 100%;
    right: -150px;
  }
}
.section-page-header .quick-links {
  display: inline-block;
  background: #ffffff;
  padding: 30px 100px 30px 40px;
  border-radius: 30px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
}
@media only screen and (min-width: 64em) {
  .section-page-header .quick-links {
    position: absolute;
    right: 0.9375rem;
    bottom: -80px;
  }
}
@media only screen and (max-width: 63.9em) {
  .section-page-header .quick-links {
    width: 100%;
  }
}
.section-page-header .quick-links h3 {
  margin-top: 0;
}
.section-page-header .quick-links ul {
  padding: 0;
}
.section-page-header .quick-links ul li {
  padding-left: 0;
}
.section-page-header.is-main .readmore {
  color: #e5004c;
  position: relative;
  margin-left: 35px;
}
.section-page-header.is-main .readmore:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5004c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.section-page-header.is-main .readmore:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.section-page-header.is-main .readmore:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  font-size: 14px;
  display: inline-block;
  margin-right: 16px;
  border: 2px solid #e5004c;
  width: 21px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  border-radius: 50%;
  background: #e5004c;
  color: #ffffff;
  transition: all 0.3s;
  top: -4px;
  position: absolute;
  left: -35px;
  padding-left: 1px;
}
.section-page-header.is-main .readmore:hover:before {
  background: #ffffff;
  color: #e5004c;
}
.section-page-header.header-simple {
  min-height: unset;
}
@media only screen and (min-width: 64em) {
  .section-page-header.header-simple {
    margin: 0 0 90px 0;
  }
}
@media only screen and (max-width: 40em) {
  .section-page-header.header-simple {
    margin: 0;
  }
}
.section-page-header.header-simple h1 {
  margin: 0;
}
.section-page-header.header-simple span.handwritten {
  font-size: 30px;
  margin: 0 0 10px 0;
}
@media only screen and (min-width: 64em) {
  .section-page-header.header-news-overview {
    margin-bottom: 50px;
  }
}
.section-page-content {
  background: #f3f3f7;
  padding: 120px 0 40px;
}
.section-page-content.white-bg {
  background: #ffffff;
}
.section-page-content.search-results {
  background: #ffffff;
  padding: 0 0 40px;
}
.section-page-content.section-schools-content {
  padding: 120px 0 10px;
}
.section-post-content {
  padding: 120px 0;
}
.section-post-content.white-bg {
  background: #ffffff;
}
.section-gallery {
  padding: 110px 0 50px;
}
.section-gallery .gallery {
  position: relative;
  width: 870px;
  max-width: calc(100% - 1.875rem);
  height: 505px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
}
@media only screen and (max-width: 40em) {
  .section-gallery .gallery {
    height: 300px;
  }
}
.section-gallery .gallery .slick-slider {
  height: 100%;
}
.section-gallery .gallery .slick-list {
  height: 100%;
  border-radius: 30px;
}
.section-gallery .gallery .slick-list .slick-track {
  height: 100%;
}
.section-gallery .gallery .gallery-item {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.section-gallery .gallery .gallery-item .enlarge {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 54, 0.25);
  opacity: 0;
  transition: opacity 0.3s;
}
.section-gallery .gallery .gallery-item .enlarge:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  font-size: 80px;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section-gallery .gallery .gallery-item .enlarge:hover {
  opacity: 1;
}
.section-gallery .gallery .gallery-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
  padding: 10px;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-gallery .gallery .gallery-nav .arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5004c;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  transition: all 0.3s linear;
}
.section-gallery .gallery .gallery-nav .arrow.slick-disabled {
  opacity: 0.75;
  cursor: default;
  pointer-events: none;
}
.section-gallery .gallery .gallery-nav .arrow:hover {
  background-color: #0072ba;
}
.section-gallery .gallery .gallery-nav .pagingInfo {
  font-size: 17px;
  color: #4d4d72;
  padding: 0 20px;
}
.fancybox-bg {
  background: #000036;
}
.fancybox-arrow {
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5004c;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  transition: opacity 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999999;
}
.fancybox-arrow.fancybox-prev {
  left: 0.9375rem;
}
.fancybox-arrow.fancybox-next {
  right: 0.9375rem;
}
.fancybox-arrow.fancybox-close {
  right: 0.9375rem;
  top: 20px;
  transform: none;
}
.fancybox-arrow:disabled {
  cursor: default;
  opacity: 0.75;
}
.section-breadcrumbs {
  text-align: center;
  color: #e5004c;
  font-family: mic-32-new-web, sans-serif;
  font-size: 16px;
}
.section-breadcrumbs a {
  color: #e5004c;
  position: relative;
}
.section-breadcrumbs a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5004c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.section-breadcrumbs a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.section-breadcrumbs .sep {
  display: inline-block;
  font-size: 0;
}
.section-breadcrumbs .sep svg {
  position: relative;
  top: 1px;
  width: 20px;
  margin: 0 24px;
}
.section-related-pages {
  padding: 180px 0 200px;
  background: linear-gradient(var(--main-color), #000036);
}
.section-related-pages.is-main {
  background: linear-gradient(#0072ba 0%, #000036 80%, #000036 100%);
}
.section-related-pages:last-of-type:after {
  content: url(../img/svg/bow-bottom-blue.svg);
}
.section-related-pages h3 {
  font-size: 24px;
  margin: 0 0 32px 0;
  text-align: center;
  color: #ffffff;
}
.section-related-pages h2 {
  font-size: 36px;
  margin: 0 0 80px 0;
  text-align: center;
  color: #ffffff;
}
.section-related-pages .related-page {
  display: block;
  position: relative;
  background: #ffffff;
  border-radius: 20px 20px 40px 20px;
  padding: 40px;
  min-height: 180px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
}
.section-related-pages .related-page h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  color: #000036;
  text-align: left;
}
.section-related-pages .related-page h2 {
  font-size: 24px;
  color: #000036;
  text-align: left;
  margin: 0;
}
@media only screen and (min-width: 64em) {
  .section-related-pages .related-page h2 {
    padding-right: 60px;
  }
}
.section-related-pages .related-page .arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
}
.section-related-pages .related-page .arrow svg path {
  transition: all 0.3s ease-in-out;
}
.section-related-pages .related-page:hover .arrow {
  background: var(--main-color);
}
.section-related-pages .related-page:hover .arrow svg path {
  fill: #ffffff !important;
}
.section-related-pages:not(.is-main) .arrow svg path {
  fill: var(--main-color) !important;
}
.usp-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 60px 0;
  padding-bottom: 40px;
}
.usp-container.usp-container-news {
  padding-bottom: 0;
  margin-top: 60px;
}
@media only screen and (max-width: 63.9em) {
  .usp-container {
    display: block;
    padding: 0 0.9375rem !important;
  }
}
@media only screen and (min-width: 64em) {
  .usp-container .uspholder {
    flex-basis: 32%;
  }
}
.usp-container .uspholder .usp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 63.9em) {
  .usp-container .uspholder .usp {
    flex-direction: row;
    justify-content: flex-start;
    gap: 40px;
  }
  .usp-container .uspholder .usp .top {
    flex-basis: 25%;
  }
  .usp-container .uspholder .usp .usp-text .usp-title {
    text-align: left;
    margin-top: -20px;
  }
}
.usp-container .uspholder .usp .top {
  margin-bottom: 32px;
}
.usp-container .uspholder .usp .top figure {
  position: relative;
}
.usp-container .uspholder .usp .top figure .image-holder {
  position: relative;
  z-index: 1;
  background: #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.usp-container .uspholder .usp .top figure .image-holder img {
  max-width: 60%;
  height: auto;
}
.usp-container .uspholder .usp .top figure .bg {
  position: absolute;
  top: 5px;
  left: -5px;
  width: 100px;
  height: 100px;
  z-index: auto;
  border-radius: 50%;
  background-color: var(--main-color);
}
.usp-container .uspholder .usp .usp-title {
  font-size: 20px;
  text-align: center;
}
.usp-container .uspholder:first-of-type .usp .top figure .bg {
  top: -5px;
  background-color: #0072ba;
}
.usp-container .uspholder:nth-of-type(2) .usp .top figure .bg {
  left: 5px;
  background-color: #73ac25;
}
.usp-container .uspholder:nth-of-type(3) .usp .top figure .bg {
  background-color: #e5004c;
}
.service-grid.is-main .uspholder:first-of-type .bg {
  background: #0072ba !important;
}
.service-grid.is-main .uspholder:nth-of-type(2) .bg {
  background: #73ac25 !important;
}
.service-grid.is-main .uspholder:nth-of-type(3) .bg {
  background: #e5004c !important;
}
.section-news-latest {
  margin-bottom: 100px;
}
.section-news-latest .social-widget.facebook {
  text-align: right;
}
.faceted-search-footer {
  text-align: center;
  margin-top: 40px;
}
.faceted-search-footer .showmore span:after {
  content: "+";
  display: inline-block;
  margin-left: 6px;
}
.single-news .section-post-content {
  padding: 80px 0 0;
}
@media only screen and (max-width: 63.9em) {
  .single-news .section-post-content {
    padding: 0;
  }
}
.single-news .page-title {
  margin: 0 0 70px 0;
}
.single-news .post-thumbnail {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  position: relative;
  z-index: 10;
  margin: -30px 0 30px 40px;
}
@media only screen and (min-width: 40em) {
  .single-news .post-thumbnail {
    float: right;
  }
}
@media only screen and (max-width: 40em) {
  .single-news .post-thumbnail {
    margin: 0 auto 30px;
  }
}
.single-news .post-thumbnail img {
  border-radius: 50%;
  position: relative;
  z-index: 10;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
}
.single-news .post-thumbnail:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--main-color);
}
.single-news .section-gallery {
  padding-top: 32px;
}
.single-news .section-gallery .gallery {
  margin: 0;
}
.post-meta {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.post-meta .taxonomy {
  margin-right: 30px;
}
.post-meta .post-date {
  font-size: 30px;
  color: #000036;
}
.section-latest-news {
  margin-bottom: 110px;
}
.section-latest-news h2 {
  font-size: 30px;
}
.page-template-template-contact .section-page-content {
  padding: 80px 0 30px;
}
@media only screen and (max-width: 40em) {
  .page-template-template-contact .section-page-content {
    padding-top: 0;
  }
}
@media only screen and (max-width: 40em) {
  .page-template-template-contact .section-page-content .cell:first-of-type {
    padding-top: 0;
  }
}
.page-template-template-contact .page-lead h3 {
  font-size: 30px;
  margin: 0 0 10px 0;
}
.contact-details {
  margin-top: 50px;
}
.contact-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-details ul li {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 30px 0;
}
.contact-details ul li .icon {
  position: relative;
  margin-right: 20px;
  flex-grow: 0;
  top: -6px;
}
.contact-details ul li .icon i {
  display: block;
  background: var(--main-color);
  color: #ffffff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
}
.contact-details ul li .wrapper a {
  display: inline-block;
  font-size: 24px;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 600;
  color: #000036;
  position: relative;
}
.contact-details ul li .wrapper a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000036;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.contact-details ul li .wrapper a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
.contact-details ul li .wrapper span {
  display: block;
  font-size: 17px;
  font-weight: 300;
}
.section-list-schools {
  background: linear-gradient(#73ac25, #00976c);
  color: #ffffff;
  padding: 160px 0;
}
.section-list-schools .list-title {
  text-align: left;
}
.section-list-schools .list-title h2 {
  color: #ffffff;
  font-size: 48px;
}
.section-list-schools .list-title h3 {
  color: #ffffff;
  font-size: 24px;
}
.section-list-schools .school-item {
  display: block;
  position: relative;
  min-height: 340px;
  padding: 40px;
  border-radius: 20px 20px 40px 20px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  overflow: hidden;
  margin-bottom: 20px;
}
.section-list-schools .school-item .background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}
.section-list-schools .school-item .overlay {
  height: 220px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
}
.section-list-schools .school-item .titles {
  position: relative;
  z-index: 3;
}
.section-list-schools .school-item .titles h2, .section-list-schools .school-item .titles h3 {
  font-size: 24px;
  color: #ffffff;
}
.section-list-schools .school-item .arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
}
.section-list-schools .school-item .arrow svg {
  width: 20px;
  height: auto;
}
.section-list-schools .school-item .arrow svg path {
  transition: all 0.3s ease-in-out;
}
.section-list-schools .school-item:hover .background {
  transform: scale(1.1);
}
.section-list-schools .school-item:hover .arrow {
  background: #e5004c;
}
.section-list-schools .school-item:hover .arrow svg path {
  fill: #ffffff !important;
}
.section-google-maps {
  margin-bottom: 130px;
}
.section-google-maps .maps-title {
  text-align: center;
}
.section-google-maps .maps-title h2 {
  font-size: 30px;
  margin: 0 0 40px 0;
}
.section-google-maps .search {
  margin-top: -20px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.section-google-maps .search input {
  border-radius: 50px;
  border: none;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  padding: 10px 32px;
  width: 400px;
  max-width: 90%;
}
.section-google-maps .search .autocomplete-items {
  position: absolute;
  z-index: 99;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 350px;
  max-width: 400px;
}
.section-google-maps .search .autocomplete-items .tab {
  width: 100%;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
.section-google-maps .search .autocomplete-items .result {
  text-align: left;
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: block;
  color: #000036;
}
.section-google-maps .search .autocomplete-items .result:last-child {
  border: none;
}
.section-google-maps .search .autocomplete-items .result:hover {
  color: var(--main-color);
}
.section-google-maps .search .autocomplete-items .result:hover strong, .section-google-maps .search .autocomplete-items .result:hover .tag {
  color: var(--main-color);
}
.section-google-maps .search .autocomplete-items .result strong {
  color: #000036;
}
.section-google-maps .search .autocomplete-items .result .tag {
  color: #000036;
}
.section-google-maps .search .autocomplete-items .autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}
.section-google-maps .searchbar {
  display: inline-block;
  transform: translateY(50%);
  position: relative;
}
.section-google-maps .searchbar:after {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  top: 17px;
  right: 44px;
  position: absolute;
}
.section-google-maps #maps {
  height: 400px;
  border-radius: 30px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
}
@media only screen and (min-width: 64em) {
  .section-google-maps #maps {
    height: 600px;
  }
}
body.is-main .btn-second {
  background: #e5004c;
}
body.is-main .btn-second:hover {
  color: #e5004c;
}
body.is-main .related-page .arrow svg {
  width: 20px;
}
body.is-main .related-page .arrow svg path {
  fill: #e5004c !important;
}
body.is-main .related-page:hover .arrow {
  background: #e5004c;
}
body.is-main .contact-details ul li .icon i {
  background: #e5004c;
}
body.is-school .btn {
  color: var(--main-color);
}
body.is-school .btn:hover {
  color: #ffffff;
  background-color: var(--main-color);
}
body.is-school .btn.btn-second {
  color: #ffffff;
}
body.is-school .btn.btn-second:hover {
  color: var(--main-color);
  background-color: #ffffff;
}
body.is-school .readmore {
  color: var(--main-color);
  position: relative;
  margin-left: 35px;
}
body.is-school .readmore:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
body.is-school .readmore:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
body.is-school .readmore:before {
  font-family: "IcoFont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  font-size: 14px;
  display: inline-block;
  margin-right: 16px;
  border: 2px solid var(--main-color);
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  border-radius: 50%;
  background: var(--main-color);
  color: #ffffff;
  transition: all 0.3s;
  top: -4px;
  position: absolute;
  left: -35px;
}
body.is-school .readmore:hover:before {
  background: #ffffff;
  color: var(--main-color);
}
body.is-school .section-home-cbo .inner-bottom .cbo-page:hover {
  border-radius: 30px;
}
body.is-school .section-home-cbo .inner-bottom .cbo-page:hover .arrow svg path {
  fill: #ffffff !important;
}
body.is-school .section-breadcrumbs {
  color: var(--main-color);
}
body.is-school .section-breadcrumbs a {
  color: var(--main-color);
  position: relative;
}
body.is-school .section-breadcrumbs a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
body.is-school .section-breadcrumbs a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transform-delay: 1s;
}
body.is-school .section-breadcrumbs .sep {
  display: inline-block;
  font-size: 0;
}
body.is-school .section-breadcrumbs .sep svg .arrow {
  fill: var(--main-color) !important;
}
.facetsearch {
  position: relative;
}
.facetsearch.loading .loader {
  opacity: 1;
}
.loader {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
.loader .background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.75);
}
.spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--main-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.gm-style-iw-t:after {
  display: none !important;
}
.gm-style-iw-d {
  overflow: hidden !important;
}
.gm-style .gm-style-iw-c {
  background-color: transparent !important;
  box-shadow: none !important;
}
button.gm-ui-hover-effect {
  top: 14px !important;
  right: 14px !important;
}
.infowindow {
  position: relative;
  background: #ffffff;
  padding: 40px;
  border-radius: 0 20px 40px 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.infowindow:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #00976c transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
}
.infowindow h4 {
  font-size: 26px;
  margin: 0 0 12px 0;
}
.infowindow span {
  font-size: 17px;
}
.infowindow .arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  outline: none;
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  transition: background-color 0.3s linear;
  overflow: hidden;
}
.infowindow .arrow:after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  mask-size: 50%;
  mask-image: url(../img/svg/icon-arrow-right.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: 50%;
  -webkit-mask-image: url(../img/svg/icon-arrow-right.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #e5004c;
  transition: background-color 0.3s linear;
}
.infowindow .arrow:hover {
  background-color: #e5004c;
}
.infowindow .arrow:hover:after {
  background-color: #ffffff;
}
.section-news-featured .grid-x .cell:first-of-type {
  order: 2;
}
.section-news-featured img {
  border-radius: 30px;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 54, 0.1)) drop-shadow(0px 10px 15px rgba(0, 0, 54, 0.15));
}
.section-news-featured .widget-content .handwritten {
  font-size: 24px;
  line-height: 72px;
  color: #ffffff;
}
.section-news-featured .widget-content h3 {
  font-size: 48px;
  line-height: 54px;
  text-align: left;
}
.section-news-featured .widget-content p {
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
}
.section-about-content {
  padding: 120px 0 50px;
}
.section-services-content {
  padding: 65px 0 10px;
}
#ui-datepicker-div {
  padding: 15px;
  background-color: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
}
#ui-datepicker-div .ui-datepicker-next {
  float: right;
}
@media only screen and (max-width: 40em) {
  .eme-calendar-table {
    display: none;
  }
}
.eme-calendar-table a {
  color: var(--main-color) !important;
}
.eme_events_list {
  display: none !important;
}
@media only screen and (max-width: 40em) {
  .eme_events_list {
    display: block !important;
  }
}
.eme-rsvp-form .eme-form-tr .eme-form {
  padding: 10px;
}
.eme-rsvp-form .eme-form-tr .eme-form-label {
  padding-top: 6px;
  flex-basis: 33%;
  font-size: 16px;
  font-weight: 600;
  color: #000036;
}
.eme-rsvp-form .eme-form-tr .nodynamicupdates {
  width: 100%;
  box-shadow: none;
  font-size: 17px;
  border-radius: 6px;
  border: 1px solid #cecdd1;
  color: #5f5f5f;
  line-height: 30px;
  background-color: transparent;
}
.eme-rsvp-form .eme-form-tr .eme-required-field {
  display: none;
}
.eme-rsvp-form .eme-form-reservation {
  display: none;
}
.eme_submit_button {
  position: relative;
  display: inline-block;
  background: #ffffff;
  color: #e5004c;
  font-family: mic-32-new-web, sans-serif;
  font-weight: 700;
  font-size: 19px;
  border-radius: 50px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.1), 0px 10px 30px 0px rgba(0, 0, 54, 0.15);
  padding: 12px 36px;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
  border: unset;
}
.eme_submit_button:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  background: #e5004c;
  transition: transform 0.3s;
}
.eme_submit_button:hover {
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 54, 0.2), 0px 10px 30px 0px rgba(0, 0, 54, 0.25);
  background: #e5004c;
  color: #ffffff;
}
.eme_submit_button.btn-second {
  background: var(--main-color);
  color: #ffffff;
}
.eme_submit_button.btn-second:hover {
  color: var(--main-color);
  background: #ffffff;
}
.eme_submit_button.arrow:after {
  content: url(../img/svg/icon-long-arrow-right-white.svg);
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 30px;
  margin-left: 20px;
  background: none;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}
.eme_submit_button.arrow:hover:after {
  transform: translateX(6px);
}
