@charset "UTF-8";
html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

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

img[src$=".svg"] {
  width: 100%;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

input[type=text], input[type=email], input[type=submit], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*==============================================================*/
/*==============================================================*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

@keyframes fadeUp {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
    transform: translateY(60px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -o-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeft {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@media (min-width: 600px) {
  .animate-items .is-visible:nth-child(1) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
  }

  .animate-items .is-visible:nth-child(2) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
  }

  .animate-items .is-visible:nth-child(3) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
  }

  .animate-items .is-visible:nth-child(4) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
  }

  .animate-items .is-visible:nth-child(5) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
  }

  .animate-items .is-visible:nth-child(6) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
  }

  .animate-items .is-visible:nth-child(7) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
  }

  .animate-items .is-visible:nth-child(8) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
  }

  .animate-items .is-visible:nth-child(9) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.9s;
  }

  .animate-items .is-visible:nth-child(10) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }

  .animate-items .is-visible:nth-child(11) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.1s;
  }

  .animate-items .is-visible:nth-child(12) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
  }

  .animate-items .is-visible:nth-child(13) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.3s;
  }

  .animate-items .is-visible:nth-child(14) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.4s;
  }

  .animate-items .is-visible:nth-child(15) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
  }

  .animate-items .is-visible:nth-child(16) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.6s;
  }

  .animate-items .is-visible:nth-child(17) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.7s;
  }

  .animate-items .is-visible:nth-child(18) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.8s;
  }

  .animate-items .is-visible:nth-child(19) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 1.9s;
  }

  .animate-items .is-visible:nth-child(20) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2s;
  }

  .animate-items .is-visible:nth-child(21) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.1s;
  }

  .animate-items .is-visible:nth-child(22) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.2s;
  }

  .animate-items .is-visible:nth-child(23) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.3s;
  }

  .animate-items .is-visible:nth-child(24) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.4s;
  }

  .animate-items .is-visible:nth-child(25) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.5s;
  }

  .animate-items .is-visible:nth-child(26) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.6s;
  }

  .animate-items .is-visible:nth-child(27) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.7s;
  }

  .animate-items .is-visible:nth-child(28) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.8s;
  }

  .animate-items .is-visible:nth-child(29) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 2.9s;
  }

  .animate-items .is-visible:nth-child(30) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3s;
  }

  .animate-items .is-visible:nth-child(31) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.1s;
  }

  .animate-items .is-visible:nth-child(32) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.2s;
  }

  .animate-items .is-visible:nth-child(33) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.3s;
  }

  .animate-items .is-visible:nth-child(34) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.4s;
  }

  .animate-items .is-visible:nth-child(35) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.5s;
  }

  .animate-items .is-visible:nth-child(36) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.6s;
  }

  .animate-items .is-visible:nth-child(37) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.7s;
  }

  .animate-items .is-visible:nth-child(38) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.8s;
  }

  .animate-items .is-visible:nth-child(39) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 3.9s;
  }

  .animate-items .is-visible:nth-child(40) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4s;
  }

  .animate-items .is-visible:nth-child(41) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.1s;
  }

  .animate-items .is-visible:nth-child(42) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.2s;
  }

  .animate-items .is-visible:nth-child(43) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.3s;
  }

  .animate-items .is-visible:nth-child(44) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.4s;
  }

  .animate-items .is-visible:nth-child(45) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.5s;
  }

  .animate-items .is-visible:nth-child(46) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.6s;
  }

  .animate-items .is-visible:nth-child(47) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.7s;
  }

  .animate-items .is-visible:nth-child(48) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.8s;
  }

  .animate-items .is-visible:nth-child(49) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 4.9s;
  }

  .animate-items .is-visible:nth-child(50) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5s;
  }

  .animate-items .is-visible:nth-child(51) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.1s;
  }

  .animate-items .is-visible:nth-child(52) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.2s;
  }

  .animate-items .is-visible:nth-child(53) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.3s;
  }

  .animate-items .is-visible:nth-child(54) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.4s;
  }

  .animate-items .is-visible:nth-child(55) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.5s;
  }

  .animate-items .is-visible:nth-child(56) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.6s;
  }

  .animate-items .is-visible:nth-child(57) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.7s;
  }

  .animate-items .is-visible:nth-child(58) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.8s;
  }

  .animate-items .is-visible:nth-child(59) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 5.9s;
  }

  .animate-items .is-visible:nth-child(60) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6s;
  }

  .animate-items .is-visible:nth-child(61) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.1s;
  }

  .animate-items .is-visible:nth-child(62) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.2s;
  }

  .animate-items .is-visible:nth-child(63) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.3s;
  }

  .animate-items .is-visible:nth-child(64) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.4s;
  }

  .animate-items .is-visible:nth-child(65) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.5s;
  }

  .animate-items .is-visible:nth-child(66) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.6s;
  }

  .animate-items .is-visible:nth-child(67) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.7s;
  }

  .animate-items .is-visible:nth-child(68) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.8s;
  }

  .animate-items .is-visible:nth-child(69) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 6.9s;
  }

  .animate-items .is-visible:nth-child(70) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7s;
  }

  .animate-items .is-visible:nth-child(71) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.1s;
  }

  .animate-items .is-visible:nth-child(72) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.2s;
  }

  .animate-items .is-visible:nth-child(73) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.3s;
  }

  .animate-items .is-visible:nth-child(74) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.4s;
  }

  .animate-items .is-visible:nth-child(75) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.5s;
  }

  .animate-items .is-visible:nth-child(76) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.6s;
  }

  .animate-items .is-visible:nth-child(77) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.7s;
  }

  .animate-items .is-visible:nth-child(78) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.8s;
  }

  .animate-items .is-visible:nth-child(79) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 7.9s;
  }

  .animate-items .is-visible:nth-child(80) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8s;
  }

  .animate-items .is-visible:nth-child(81) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.1s;
  }

  .animate-items .is-visible:nth-child(82) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.2s;
  }

  .animate-items .is-visible:nth-child(83) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.3s;
  }

  .animate-items .is-visible:nth-child(84) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.4s;
  }

  .animate-items .is-visible:nth-child(85) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.5s;
  }

  .animate-items .is-visible:nth-child(86) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.6s;
  }

  .animate-items .is-visible:nth-child(87) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.7s;
  }

  .animate-items .is-visible:nth-child(88) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.8s;
  }

  .animate-items .is-visible:nth-child(89) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 8.9s;
  }

  .animate-items .is-visible:nth-child(90) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9s;
  }

  .animate-items .is-visible:nth-child(91) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.1s;
  }

  .animate-items .is-visible:nth-child(92) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.2s;
  }

  .animate-items .is-visible:nth-child(93) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.3s;
  }

  .animate-items .is-visible:nth-child(94) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.4s;
  }

  .animate-items .is-visible:nth-child(95) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.5s;
  }

  .animate-items .is-visible:nth-child(96) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.6s;
  }

  .animate-items .is-visible:nth-child(97) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.7s;
  }

  .animate-items .is-visible:nth-child(98) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.8s;
  }

  .animate-items .is-visible:nth-child(99) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 9.9s;
  }
}
.animate-items .grid-item.scroll {
  opacity: 1;
}

.animate-items .grid-item .item {
  opacity: 1;
}

@media (min-width: 600px) {
  .animate-items .grid-item .item {
    opacity: 0;
  }

  .scroll {
    opacity: 0;
  }

  .is-visible.fadeUp {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
    animation-timing-function: 0.6s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
  }

  .is-visible.fadeDown {
    animation: fadeDown;
    -webkit-animation-name: fadeDown;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
    animation-timing-function: 0.6s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
  }

  .is-visible.fadeRight {
    animation: fadeRight;
    -webkit-animation-name: fadeRight;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
    animation-timing-function: 0.6s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
  }

  .is-visible.fadeLeft {
    animation: fadeLeft;
    -webkit-animation-name: fadeLeft;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
    animation-timing-function: 0.6s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
  }

  .is-visible.zoomIn {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
    animation-timing-function: 0.6s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
  }
}
.mobile {
  display: block;
}
@media (min-width: 900px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 900px) {
  .desktop {
    display: block;
  }
}

.wrap900 {
  max-width: 900px;
  width: 94%;
  margin: 0 auto;
}

.wrap1000 {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}

.wrap1100 {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
}

.wrap1200 {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
}

.wrap1400 {
  max-width: 1400px;
  width: 94%;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .mobile-full {
    width: 100% !important;
  }
}

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

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

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

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid.flex-end {
  justify-content: flex-end;
}
.grid.flex-start {
  justify-content: flex-start;
}
.grid.flex-center {
  justify-content: center;
}
.grid .w-50 {
  width: 100%;
}
@media (min-width: 900px) {
  .grid .w-50 {
    width: 50%;
  }
}
.grid .w-33 {
  width: 100%;
}
@media (min-width: 900px) {
  .grid .w-33 {
    width: 33.3333333%;
  }
}
.grid .w-25 {
  width: 100%;
}
@media (min-width: 768px) {
  .grid .w-25 {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .grid .w-25 {
    width: 25%;
  }
}

body, html {
  font-size: 16px;
  color: #333333;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
  width: 100%;
}
@media (min-width: 900px) {
  body, html {
    overflow-x: hidden;
    font-size: 18px;
    scroll-behavior: smooth;
  }
}

::selection {
  background: #1b4681;
  color: #ffffff;
}

::-moz-selection {
  background: #1b4681;
  color: #ffffff;
}

.button {
  position: relative;
  display: inline-block;
  background: #fcbb11;
  color: #002c49;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 14px 20px;
  overflow: hidden;
  font-size: 16px;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.1em;
}
.button:hover {
  background: #60a0d6;
  color: #ffffff;
}

.page-base {
  margin: 60px auto 70px;
}

.base.alt ::selection {
  background: #fcbb11;
  color: #1b4681;
}
.base.alt ::-moz-selection {
  background: #fcbb11;
  color: #1b4681;
}
.base.alt .check-list li {
  color: #ffffff;
}
.base.alt p, .base.alt .large, .base.alt h2, .base.alt h3, .base.alt li, .base.alt a:not(.button) {
  color: #ffffff;
}
.base.alt li::before {
  color: #fcbb11;
}
.base.alt h4 {
  color: #fcbb11;
}
.base p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.base p.contact-info {
  display: flex;
  justify-content: flex-start;
}
.base p.contact-info .icon {
  color: #60a0d6;
  width: 30px;
  position: relative;
  top: 6px;
  font-size: 18px;
}
@media (min-width: 900px) {
  .base p.contact-info .icon {
    top: 8px;
  }
}
.base p.contact-info .hide {
  display: none;
}
.base p.contact-info .icon-email {
  font-size: 14px;
  top: 8px;
}
@media (min-width: 900px) {
  .base p.contact-info .icon-email {
    top: 10px;
  }
}
.base p.large {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: #275694;
}
@media (min-width: 600px) {
  .base p.large {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .base p.large {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .base p.large {
    font-size: 36px;
  }
}
.base strong {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
}
.base em {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: italic;
}
.base strong em,
.base em strong {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: italic;
}
.base a:not(.button) {
  text-decoration: underline;
  color: #275694;
}
.base a:not(.button):hover {
  text-decoration: none;
}
.base a.external-link {
  background: url(../images/external.svg) no-repeat center left;
  background-size: 20px;
  padding-left: 25px;
  z-index: 5;
  cursor: pointer;
}
.base a.download {
  background: url(../images/download.svg) no-repeat center left;
  background-size: 17px;
  padding-left: 24px;
  z-index: 5;
  cursor: pointer;
}
.base blockquote {
  padding: 0 0 0 30px;
  margin: 40px auto;
  border-left: 2px solid #fcbb11;
}
@media (min-width: 600px) {
  .base blockquote {
    padding: 0 0 0 40px;
  }
}
.base blockquote p {
  font-size: 18px;
  line-height: 1.5;
  color: #275694;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: italic;
}
@media (min-width: 600px) {
  .base blockquote p {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .base blockquote p {
    font-size: 24px;
  }
}
.base hr {
  background: #f1f1f1;
  height: 2px;
  width: 100%;
  border: none;
  margin: 30px auto;
}
.base h2 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
  color: #1b4681;
}
@media (min-width: 600px) {
  .base h2 {
    font-size: 40px;
  }
}
@media (min-width: 900px) {
  .base h2 {
    margin-bottom: 25px;
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .base h2 {
    font-size: 55px;
  }
}
.base h3 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
  color: #275694;
}
@media (min-width: 900px) {
  .base h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .base h3 {
    font-size: 36px;
  }
}
.base h4 {
  color: #60a0d6;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .base h4 {
    font-size: 18px;
  }
}
.base ul {
  margin: 0 0 30px 20px;
  list-style: none;
}
@media (min-width: 900px) {
  .base ul {
    margin: 0 0 40px 20px;
  }
}
.base ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.4;
}
.base ul li::before {
  position: absolute;
  top: 1px;
  left: 8px;
  text-indent: -15px;
  content: "•";
  color: #275694;
}
.base ul li ul {
  margin: 12px 0 30px 10px;
}
@media (min-width: 600px) {
  .base ul.two-column-list {
    column-count: 2;
    column-gap: 30px;
  }
}
.base ul.school-list {
  margin-left: 0;
}
.base ul.school-list br {
  display: none;
}
.base ul.school-list li {
  padding: 0;
}
.base ul.school-list li::before {
  display: none;
}
.base ul.check-list {
  margin: 0px 0px 30px;
}
.base ul.check-list li {
  padding-left: 40px;
  color: #275694;
}
.base ul.check-list li::before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e903";
  color: #ffffff;
  background: #fcbb11;
  font-size: 14px;
  width: 25px;
  height: 25px;
  text-indent: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999em;
  overflow: hidden;
}
.base ol {
  list-style: none;
  counter-reset: a;
  margin: 0 0 30px 20px;
}
@media (min-width: 900px) {
  .base ol {
    margin: 0 0 30px 30px;
  }
}
.base ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  line-height: 1.5;
}
.base ol li::before {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  position: absolute;
  text-indent: -35px;
  counter-increment: a;
  content: counter(a) ".";
  color: #275694;
  top: 0px;
}
.base .alignnone, .base .aligncenter {
  margin: 0 auto 30px;
  display: block;
}
.base .alignright {
  margin: 0 auto 30px;
  display: block;
}
@media (min-width: 900px) {
  .base .alignright {
    margin: 0 0 30px 30px;
    float: right;
  }
}
.base .alignleft {
  margin: 0 auto 30px;
  display: block;
}
@media (min-width: 900px) {
  .base .alignleft {
    float: left;
    margin: 0 30px 30px 0;
  }
}
.base .wp-caption img {
  width: 100%;
}
.base .wp-caption .wp-caption-text {
  margin-top: -2px;
  background: #f1f1f1;
  font-size: 14px;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
  padding: 10px;
}
.base .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin: 30px auto;
}
.base .embed-container iframe, .base .embed-container object, .base .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tablepress {
  line-height: 1.4;
  font-size: 12px;
}
@media (min-width: 600px) {
  .tablepress {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .tablepress {
    font-size: 16px;
  }
}
.tablepress thead {
  border-bottom: 2px solid #437bb5;
}
.tablepress thead th {
  background: #f1f1f1 !important;
  color: #275694 !important;
  text-transform: uppercase;
  font-size: 12px;
}
@media (min-width: 600px) {
  .tablepress thead th {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .tablepress thead th {
    font-size: 16px;
  }
}
.tablepress .odd td {
  background: #f1f1f1 !important;
}

.tablepress td, .tablepress th {
  padding: 12px 8px !important;
}

.tablepress > * + tbody > * > *,
.tablepress > tbody > * ~ * > *,
.tablepress > tfoot > * > * {
  border-top: 1px solid #cccccc !important;
}

.base .gform_wrapper {
  margin: 40px auto;
}
.base .gform_wrapper .gsection_title {
  border-bottom: 2px solid #f1f1f1;
  color: #275694;
  display: block;
  font-size: 30px;
  line-height: 1;
  padding-bottom: 15px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0px;
}
@media (min-width: 900px) {
  .base .gform_wrapper .gsection_title {
    font-size: 36px;
  }
}
.base .gform_wrapper .gform_fields {
  margin: 0;
  display: table;
  width: 100%;
  clear: both;
}
.base .gform_wrapper .gform_hidden {
  margin: 0 !important;
}
.base .gform_wrapper .gfield {
  width: 100%;
  float: left;
  padding-left: 0;
  margin-bottom: 30px;
  line-height: 1;
}
.base .gform_wrapper .gfield:before {
  display: none;
}
.base .gform_wrapper .gfield label {
  display: block;
  font-size: 14px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 5px 0 0 0;
}
.base .gform_wrapper .gfield .gfield_label {
  color: #275694;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  margin: 0 0 8px 0;
  font-size: 18px;
  letter-spacing: normal;
  text-transform: none;
}
.base .gform_wrapper .gfield_required {
  color: #60a0d6;
}
.base .gform_wrapper input, .base .gform_wrapper textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid #cccccc;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
  padding: 8px 10px;
  height: 50px;
  background: #f1f1f1;
  font-size: 16px;
}
@media (min-width: 900px) {
  .base .gform_wrapper input, .base .gform_wrapper textarea {
    font-size: 18px;
  }
}
.base .gform_wrapper textarea {
  height: 200px;
}
.base .gform_wrapper .gform_validation_container {
  display: none;
}
@media (min-width: 768px) {
  .base .gform_wrapper .form-left, .base .gform_wrapper .name_first {
    width: 48%;
    clear: left;
    float: left;
  }
}
@media (min-width: 768px) {
  .base .gform_wrapper .form-right, .base .gform_wrapper .name_last {
    width: 48%;
    float: right;
    clear: right;
  }
}
@media (max-width: 768px) {
  .base .gform_wrapper .name_first {
    display: block;
    margin-bottom: 30px;
  }
}
.base .gform_wrapper .form-address span {
  display: block;
}
.base .gform_wrapper .form-address span.gfield_required {
  display: inline-block;
}
.base .gform_wrapper .form-address .address_line_1, .base .gform_wrapper .form-address .address_line_2 {
  margin-bottom: 30px;
}
.base .gform_wrapper .form-address .address_city {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .base .gform_wrapper .form-address .address_city {
    width: 48%;
    clear: left;
    float: left;
  }
}
.base .gform_wrapper .form-address .address_state {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .base .gform_wrapper .form-address .address_state {
    width: 48%;
    float: right;
    clear: right;
  }
}
.base .gform_wrapper .form-address .address_zip {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .base .gform_wrapper .form-address .address_zip {
    width: 48%;
    clear: left;
    float: left;
  }
}
.base .gform_wrapper .form-address .address_country {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .base .gform_wrapper .form-address .address_country {
    width: 48%;
    float: right;
  }
}
.base .gform_wrapper .ginput_container_select, .base .gform_wrapper .ginput_address_state {
  position: relative;
  border: 1px solid #cccccc;
  height: 50px;
}
.base .gform_wrapper .ginput_container_select:after, .base .gform_wrapper .ginput_address_state:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #275694;
}
.base .gform_wrapper .ginput_container_select select, .base .gform_wrapper .ginput_address_state select {
  font-size: 0.9em;
  border: none;
  background: #f1f1f1;
  height: 48px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .base .gform_wrapper .ginput_container_select, .base .gform_wrapper .ginput_address_state {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.base .gform_wrapper .ginput_container_select:after, .base .gform_wrapper .ginput_address_state:after {
  display: block;
}
.base .gform_wrapper .gfield--has-description .gfield_description {
  margin-bottom: 20px;
  font-size: 16px;
}
.base .gform_wrapper .ginput_container_checkbox,
.base .gform_wrapper .ginput_container_radio {
  /* after */
  /* before */
}
.base .gform_wrapper .ginput_container_checkbox .gchoice,
.base .gform_wrapper .ginput_container_radio .gchoice {
  line-height: 1.6;
  margin: 5px 0;
  width: auto;
  max-width: max-content;
}
.base .gform_wrapper .ginput_container_checkbox .gchoice label,
.base .gform_wrapper .ginput_container_radio .gchoice label {
  color: #333333;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
  line-height: normal;
  cursor: pointer;
  position: relative;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox],
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  height: auto;
  width: auto;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label:before,
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label:after,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label:before,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:not(:checked) + label:after,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:not(:checked) + label:after {
  width: 20px;
  height: 20px;
  background: #f1f1f1;
  border: 1px solid #cccccc;
  top: 2px;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:checked + label:after,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:checked + label:after {
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid #60a0d6;
  background-color: #60a0d6;
  z-index: 0;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:not(:checked) + label:before,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:checked + label:before,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:checked + label:before {
  top: 2px;
  left: 2px;
  width: 7px;
  height: 13px;
  margin-top: 3px;
  border-top: 0px solid transparent;
  border-left: 0px solid transparent;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio],
.base .gform_wrapper .ginput_container_radio input[type=radio] {
  visibility: hidden;
  position: absolute;
  height: auto;
  width: auto;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio] + label:before,
.base .gform_wrapper .ginput_container_radio input[type=radio] + label:before {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  background: #f1f1f1;
  border: 1px solid #cccccc;
  top: 3px;
  position: relative;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio]:checked + label:before,
.base .gform_wrapper .ginput_container_radio input[type=radio]:checked + label:before {
  background: #ffffff;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio]:checked + label::after,
.base .gform_wrapper .ginput_container_radio input[type=radio]:checked + label::after {
  content: " ";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 999em;
  left: 2px;
  top: 5px;
  background: #60a0d6;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio] + label:before,
.base .gform_wrapper .ginput_container_radio input[type=radio] + label:before {
  border-radius: 50%;
}
.base .gform_wrapper .gfield--type-fileupload .gform_fileupload_rules {
  font-size: 16px;
  margin-top: 8px;
  display: block;
}
.base .gform_wrapper .form-nolabel .gfield_label, .base .gform_wrapper .form-nolabel .gsection_title {
  display: none !important;
}
.base .gform_wrapper .gform_required_legend {
  display: none;
}
.base .gform_wrapper .gform_footer .gform_button {
  position: relative;
  display: inline-block;
  border: none;
  height: auto;
  background: #fcbb11;
  color: #002c49;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 14px 20px;
  overflow: hidden;
  font-size: 16px;
  cursor: pointer;
  width: 200px;
  text-align: center;
  letter-spacing: 0.1em;
}
.base .gform_wrapper .gform_footer .gform_button:hover {
  background: #60a0d6;
  color: #ffffff;
}
.base .gform_wrapper .gform_validation_errors {
  display: none;
}
.base .gform_wrapper .gfield_error input, .base .gform_wrapper .gfield_error textarea {
  border: 1px solid #fcbb11 !important;
}
.base .gform_wrapper .gfield_error .validation_message {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: italic;
  color: #60a0d6;
  text-align: left;
  font-size: 13px;
  display: block;
  clear: both;
  padding-top: 7px;
}

.gform_confirmation_message {
  color: #60a0d6;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: italic;
  line-height: 1.4em;
  padding: 30px 0;
  text-align: center;
  font-size: 16px;
}
@media (min-width: 900px) {
  .gform_confirmation_message {
    font-size: 18px;
  }
}

body img.gform_ajax_spinner {
  display: none !important;
}

.alert {
  background: #fcbb11;
  position: relative;
  padding: 10px 40px 15px;
}
.alert.hide {
  display: none;
}
.alert #closeAlert {
  color: #ffffff;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.alert #closeAlert:hover {
  color: #002c49;
}
.alert p {
  font-size: 16px;
  display: inline-block;
}
@media (min-width: 900px) {
  .alert p {
    font-size: 18px;
  }
}
.alert p:last-of-type {
  margin-bottom: 0px;
}
.alert .icon-alert {
  position: relative;
  top: 2px;
  display: inline-block;
  margin: 4px;
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: #002c49;
}
@media (min-width: 900px) {
  .site-header {
    position: relative;
    background: transparent;
    margin-bottom: -208px;
  }
}
.site-header .top {
  display: none;
  padding: 35px 0;
}
@media (min-width: 900px) {
  .site-header .top {
    display: block;
  }
}
.site-header .top .logo {
  display: block;
  width: 420px;
}
.site-header .top .search {
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
}
.site-header .top .gtranslate_wrapper {
  position: relative;
  z-index: 2;
}
.site-header .top .gtranslate_wrapper .gt_switcher {
  width: 170px;
  display: flex;
  overflow: visible !important;
}
.site-header .top .gtranslate_wrapper .gt_selected {
  background: none;
  position: relative;
  display: flex;
  align-items: center;
}
.site-header .top .gtranslate_wrapper .gt_selected a::after {
  display: none !important;
}
.site-header .top .gtranslate_wrapper .gt_selected::before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
  color: #fcbb11;
  font-size: 20px;
}
.site-header .top .gtranslate_wrapper .gt_selected a {
  border: none;
  width: 100%;
  color: #ffffff;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
}
.site-header .top .gtranslate_wrapper .gt_selected a:hover {
  background: transparent;
  color: #60a0d6;
}
.site-header .top .gtranslate_wrapper .gt_selected img {
  display: none;
}
.site-header .top .gtranslate_wrapper .nturl img {
  display: none;
}
.site-header .top .gtranslate_wrapper .gt_option {
  position: absolute;
  width: 100%;
  max-height: none;
  text-align: left;
  top: 25px;
  border: none;
  background: #60a0d6;
  padding: 3px 0;
  height: auto !important;
}
.site-header .top .gtranslate_wrapper .gt_option a {
  text-transform: none;
  padding: 3px 8px;
  font-size: 12px;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  display: block !important;
  line-height: 1.4 !important;
  color: #ffffff;
}
.site-header .top .gtranslate_wrapper .gt_option a:hover {
  background: #275694;
}
.site-header .top .search-trigger {
  font-size: 18px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #002c49;
  background: #fcbb11;
  width: 35px;
  height: 35px;
  border-radius: 999em;
  overflow: hidden;
  cursor: pointer;
}
.site-header .top .search-trigger:hover {
  background: #60a0d6;
  color: #ffffff;
}
.site-header .general-search-form {
  width: 250px;
  position: absolute;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  display: none;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 3;
}
.site-header .general-search-form.open {
  display: flex;
}
.site-header .general-search-form input {
  font-size: 18px;
  padding: 10px 8px;
  height: 100%;
  text-indent: 5px;
  color: #333333;
  width: 100%;
  border-radius: 999em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
}
.site-header .general-search-form label {
  width: calc(100% - 50px);
}
.site-header .general-search-form button {
  width: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 18px;
  border-radius: 999em;
  color: #275694;
  border: none;
  background: #ffffff;
  cursor: pointer;
}
.site-header .general-search-form button:hover {
  color: #fcbb11;
}
.site-header .main-navigation .grid {
  align-items: center;
}
.site-header .main-navigation .mobile-search {
  display: none;
}
.site-header .main-navigation .mobile-logo {
  display: block;
  width: 250px;
  margin-left: 3%;
}
@media (min-width: 900px) {
  .site-header .main-navigation .mobile-logo {
    display: none;
  }
}
.site-header .main-navigation .menu-primary-container {
  width: 100%;
  display: none;
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu-primary-container {
    display: flex;
    background: #002c49;
    justify-content: flex-end;
  }
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu {
    display: flex;
    justify-content: flex-end;
    max-width: 1400px;
    width: 94%;
    margin: 0 auto;
  }
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu li {
    margin-left: 20px;
  }
}
@media (min-width: 1024px) {
  .site-header .main-navigation .menu li {
    margin-left: 30px;
  }
}
@media (min-width: 1200px) {
  .site-header .main-navigation .menu li {
    margin-left: 50px;
  }
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu li#menu-item-877 a {
    font-family: "Whitney SSm A", "Whitney SSm B";
    font-weight: 700;
    font-style: normal;
    color: #fcbb11;
  }
  .site-header .main-navigation .menu li#menu-item-877 a:hover {
    color: #60a0d6;
  }
}
.site-header .main-navigation .menu li.menu-item-has-children {
  position: relative;
}
.site-header .main-navigation .menu li.menu-item-has-children > a::after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
  color: #fcbb11;
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu li.menu-item-has-children > a::after {
    top: 1px;
    position: relative;
  }
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu li.menu-item-has-children:hover > a {
    color: #fcbb11;
  }
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu a {
    font-size: 18px;
    color: #ffffff;
    padding: 20px 0;
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .site-header .main-navigation .menu a {
    font-size: 20px;
  }
}
.site-header .main-navigation .menu a:hover {
  color: #fcbb11;
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu .sub-menu {
    display: block !important;
    position: absolute;
    z-index: 999;
    top: auto;
    left: -20px;
    visibility: hidden;
    opacity: 0;
    background: #002c49;
    width: max-content;
    width: 275px;
    padding: 15px 0 20px;
    text-align: left;
  }
  .site-header .main-navigation .menu .sub-menu li {
    margin: 0 auto;
    padding: 0 20px;
  }
  .site-header .main-navigation .menu .sub-menu li:last-of-type a {
    border: none;
  }
  .site-header .main-navigation .menu .sub-menu li a {
    font-family: "Whitney SSm A", "Whitney SSm B";
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    padding: 13px 0;
    display: block;
    width: 100%;
    line-height: 1.3;
    border-bottom: 1px solid #1b4681;
  }
  .site-header .main-navigation .menu .sub-menu li a::after {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 22px;
    color: #fcbb11;
  }
  .site-header .main-navigation .menu .sub-menu.menu-item-has-children {
    position: relative;
  }
  .site-header .main-navigation .menu .sub-menu.menu-item-has-children::after {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 13px;
    font-family: "icomoon";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e904";
    color: #fcbb11;
  }
}
@media (min-width: 900px) {
  .site-header .main-navigation .menu .sub-menu .sub-menu {
    top: 0px;
    left: auto;
    right: calc(-100% - 0px);
    background: #002c49;
    padding: 0;
  }
  .site-header .main-navigation .menu .sub-menu .sub-menu::before {
    display: none;
  }
  .site-header .main-navigation .menu .sub-menu .sub-menu li:last-of-type a {
    border: none;
  }
  .site-header .main-navigation .menu .sub-menu .sub-menu a {
    font-family: "Whitney SSm A", "Whitney SSm B";
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
    padding: 13px 0;
    border-bottom: 1px solid #1b4681;
  }
  .site-header .main-navigation .menu .sub-menu .sub-menu a:hover {
    color: #fcbb11;
  }
}

.site-footer {
  padding: 0 0 60px;
  background: linear-gradient(to top right, #275694 0%, #275694 2%, #002c49 100%);
  color: #ffffff;
}
.site-footer ::selection {
  background: #fcbb11;
  color: #1b4681;
}
.site-footer ::-moz-selection {
  background: #fcbb11;
  color: #1b4681;
}
.site-footer .left {
  max-width: 365px;
  padding-top: 60px;
  width: 100%;
}
@media (min-width: 900px) {
  .site-footer .left {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .site-footer .left {
    width: 50%;
  }
}
.site-footer .left .logo {
  display: block;
  max-width: 365px;
  width: 100%;
  margin: 0 0 40px;
}
@media (min-width: 900px) {
  .site-footer .left .logo {
    max-width: 320px;
  }
}
@media (min-width: 1200px) {
  .site-footer .left .logo {
    max-width: 365px;
  }
}
.site-footer .left .social {
  display: flex;
  justify-content: flex-start;
  margin: 40px auto;
}
.site-footer .left .social li {
  margin-right: 30px;
}
.site-footer .left .social a {
  font-size: 35px;
  color: #fcbb11;
}
.site-footer .left .social a:hover {
  color: #ffffff;
}
.site-footer .left .disclaimer {
  margin: 40px auto;
}
.site-footer .left .disclaimer p {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  line-height: 1.4;
  font-size: 16px;
}
.site-footer .right {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 900px) {
  .site-footer .right {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .site-footer .right {
    width: 50%;
  }
}
.site-footer .right .contact {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .site-footer .right .contact {
    width: 65%;
  }
}
@media (min-width: 1400px) {
  .site-footer .right .contact {
    width: 70%;
  }
}
.site-footer .right .contact a {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
}
.site-footer .right .contact a:hover {
  color: #fcbb11;
}
.site-footer .right .contact .address {
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 20px;
}
.site-footer .right .contact .phone, .site-footer .right .contact .email {
  line-height: 1.4;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
.site-footer .right .contact .phone .icon-email, .site-footer .right .contact .email .icon-email {
  font-size: 13px;
}
.site-footer .right .contact .phone .icon, .site-footer .right .contact .email .icon {
  color: #fcbb11;
  margin-right: 10px;
}
.site-footer .right .quick-links {
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 600px) {
  .site-footer .right .quick-links {
    width: 35%;
  }
}
@media (min-width: 1400px) {
  .site-footer .right .quick-links {
    width: 30%;
  }
}
.site-footer .right .line {
  display: none;
}
@media (min-width: 900px) {
  .site-footer .right .line {
    display: block;
    background: #60a0d6;
    height: 80px;
    width: 1px;
  }
}
@media (min-width: 900px) {
  .site-footer .right .inner {
    font-size: 18px;
    margin-top: -20px;
    padding: 0 15px;
  }
}
@media (min-width: 1200px) {
  .site-footer .right .inner {
    font-size: 18px;
    padding: 0 20px;
  }
}
.site-footer .right h4 {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fcbb11;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.site-footer .right .menu li {
  line-height: 1.2;
  margin-bottom: 20px;
}
.site-footer .right .menu a {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
}
.site-footer .right .menu a:hover {
  color: #fcbb11;
}
.site-footer .right .copyright {
  border-top: 2px solid #fcbb11;
  padding-top: 20px;
  width: 100%;
}
.site-footer .right .copyright p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
}
.site-footer .right .copyright a {
  text-decoration: underline;
}
.site-footer .right .copyright a:hover {
  text-decoration: none;
}

.mobile-toggle-container {
  display: block;
  position: relative;
  width: 60px;
  height: 65px;
  cursor: pointer;
  display: block;
}
@media (min-width: 900px) {
  .mobile-toggle-container {
    display: none;
  }
}

.mobile-toggle {
  display: flex;
  height: 100%;
  align-items: center;
}
.mobile-toggle:hover .menu-icon::after, .mobile-toggle:hover .menu-icon::before {
  background: #ffffff;
}
.mobile-toggle:hover .menu-icon span {
  background: #ffffff;
}

.menu-icon {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
}
.menu-icon::after, .menu-icon::before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 3px;
  background: #ffffff;
  content: "";
  opacity: 1;
  transition: all 0.2s ease;
}
.menu-icon::before {
  top: -11px;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0.15, 0.36, 1);
}
.menu-icon::after {
  bottom: -13px;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
}
.menu-icon span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  display: block;
  width: 40px;
  height: 3px;
  background: #ffffff;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
}

@media (max-width: 900px) {
  .menu-open .site-header {
    position: relative;
  }
  .menu-open .main-navigation {
    justify-content: space-between;
  }
  .menu-open .mobile-search {
    padding: 20px;
    background: #1b4681;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 9999;
  }
  .menu-open .mobile-search .gtranslate_wrapper {
    position: relative;
    z-index: 2;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_switcher {
    width: 190px;
    display: flex;
    overflow: visible !important;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_selected {
    background: none;
    position: relative;
    display: flex;
    align-items: center;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_selected a::after {
    display: none !important;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_selected::before {
    font-family: "icomoon";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e912";
    color: #fcbb11;
    font-size: 20px;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_selected a {
    border: none;
    width: 100%;
    color: #ffffff;
    font-family: "Whitney SSm A", "Whitney SSm B";
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_selected a:hover {
    background: transparent;
    color: #60a0d6;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_selected img {
    display: none;
  }
  .menu-open .mobile-search .gtranslate_wrapper .nturl img {
    display: none;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_option {
    position: absolute;
    width: 100%;
    max-height: none;
    text-align: center;
    top: 25px;
    border: none;
    background: #60a0d6;
    padding: 3px 0;
    height: auto !important;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_option a {
    text-transform: none;
    padding: 3px 8px;
    font-size: 12px;
    font-family: "Whitney SSm A", "Whitney SSm B";
    font-weight: 700;
    font-style: normal;
    display: block !important;
    line-height: 1.4 !important;
    color: #ffffff;
  }
  .menu-open .mobile-search .gtranslate_wrapper .gt_option a:hover {
    background: #275694;
  }
  .menu-open .search-trigger {
    font-size: 18px;
    margin-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #002c49;
    background: #fcbb11;
    width: 35px;
    height: 35px;
    border-radius: 999em;
    overflow: hidden;
    cursor: pointer;
  }
  .menu-open .search-trigger:hover {
    background: #60a0d6;
    color: #ffffff;
  }
  .menu-open .general-search-form {
    width: 250px;
    position: absolute;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    display: none;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 3;
  }
  .menu-open .general-search-form.open {
    display: flex;
  }
  .menu-open .general-search-form input {
    font-size: 18px;
    padding: 10px 8px;
    height: 100%;
    text-indent: 5px;
    color: #333333;
    width: 100%;
    border-radius: 999em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
  }
  .menu-open .general-search-form label {
    width: calc(100% - 50px);
  }
  .menu-open .general-search-form button {
    width: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 18px;
    border-radius: 999em;
    color: #275694;
    border: none;
    background: #ffffff;
    cursor: pointer;
  }
  .menu-open .general-search-form button:hover {
    color: #fcbb11;
  }
  .menu-open .menu {
    display: block;
  }
  .menu-open .menu-primary-container {
    z-index: 999;
    margin: 0 auto;
    display: block !important;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    background: #1b4681;
  }
  .menu-open .menu-primary-container br {
    display: none !important;
  }
  .menu-open .menu-primary-container li {
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: left;
  }
  .menu-open .menu-primary-container li#menu-item-877 a {
    background: #fcbb11;
    text-align: center;
    color: #002c49;
  }
  .menu-open .menu-primary-container li#menu-item-877 a:hover {
    background: #60a0d6;
    color: #ffffff;
  }
  .menu-open .menu-primary-container li.go .sub-menu li .sub-menu {
    display: block !important;
  }
  .menu-open .menu-primary-container li.menu-item-has-children a::after {
    position: absolute !important;
    right: 20px;
    top: 17px !important;
  }
  .menu-open .menu-primary-container li:last-of-type a {
    border: none;
  }
  .menu-open .menu-primary-container li a {
    font-size: 18px;
    line-height: 1.2;
    padding: 15px 20px;
    display: block;
    color: #ffffff;
    font-family: "Whitney SSm A", "Whitney SSm B";
    font-weight: 700;
    font-style: normal;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .menu-open .menu-primary-container li a:hover {
    color: #fcbb11;
  }
  .menu-open .menu-primary-container li .sub-menu {
    background: #275694;
  }
  .menu-open .menu-primary-container li .sub-menu li {
    margin: 0 auto;
  }
  .menu-open .menu-primary-container li .sub-menu li.menu-item-has-children > a::after {
    display: none;
  }
  .menu-open .menu-primary-container li .sub-menu li:last-of-type a {
    border: none;
  }
  .menu-open .menu-primary-container li .sub-menu li a {
    padding-left: 30px;
    color: #ffffff;
  }
  .menu-open .menu-primary-container li .sub-menu li .sub-menu {
    background: #437bb5;
  }
  .menu-open .menu-primary-container li .sub-menu li .sub-menu a {
    padding-left: 30px;
    font-family: "Whitney SSm A", "Whitney SSm B";
    font-weight: 400;
    font-style: normal;
  }
  .menu-open .menu-primary-container li .sub-menu a {
    font-family: "Whitney SSm A", "Whitney SSm B";
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px;
    padding: 15px 20px;
  }
}
@media (max-width: 900px) and (min-width: 600px) {
  .menu-open .menu-primary-container li .sub-menu a {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .menu-open .menu-primary-container li .sub-menu a:hover {
    color: #fcbb11;
  }
}
.menu-open .mobile-toggle:hover .menu-icon::after, .menu-open .mobile-toggle:hover .menu-icon::before {
  right: 0px !important;
}
.menu-open .mobile-toggle:hover .menu-icon span {
  left: 0px !important;
}
.menu-open .mobile-toggle .menu-icon::after, .menu-open .mobile-toggle .menu-icon::before {
  opacity: 0 !important;
  transition: all 0.6s ease;
}
.menu-open .mobile-toggle .menu-icon-left {
  transform: rotate(45deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-open .mobile-toggle .menu-icon-right {
  transform: rotate(-225deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

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

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 22;
  transition: ease-in 222ms;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "icomoon";
  font-size: 30px;
  line-height: 0.8;
  padding: 3px;
  width: 40px;
  height: 40px;
  border-radius: 999em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  transition: ease-in 222ms;
  color: #fcbb11;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0px;
}
.slick-prev:hover:before, .slick-prev:focus:before {
  color: #fcbb11;
  background: transparent;
  border-color: #fcbb11;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -35px;
}
.slick-prev:before {
  content: "\e90d";
}
[dir=rtl] .slick-prev:before {
  content: "\e90c";
}

.slick-next {
  right: 0px;
}
.slick-next:hover:before, .slick-next:focus:before {
  color: #fcbb11;
  background: transparent;
  border-color: #fcbb11;
}
[dir=rtl] .slick-next {
  left: -35px;
  right: auto;
}
.slick-next:before {
  content: "\e90c";
}
[dir=rtl] .slick-next:before {
  content: "\e90d";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 0.75;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "icomoon";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 1;
}

.page-hero {
  background-position: unset;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .page-hero {
    padding-top: 207px;
    background-position: center;
    margin-bottom: 140px;
  }
}
.page-hero ::selection {
  background: #fcbb11;
  color: #1b4681;
}
.page-hero ::-moz-selection {
  background: #fcbb11;
  color: #1b4681;
}
.page-hero .grid {
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}
.page-hero .title {
  max-width: 1400px;
  width: 94%;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .page-hero .title {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
  }
}
.page-hero .title .inner {
  padding: 60px 0;
}
.page-hero .title .breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fcbb11;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .page-hero .title .breadcrumbs {
    font-size: 16px;
  }
}
.page-hero .title .breadcrumbs span:last-of-type {
  display: none;
}
.page-hero .title h1 {
  font-size: 45px;
  color: #ffffff;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
}
@media (min-width: 600px) {
  .page-hero .title h1 {
    font-size: 60px;
  }
}
@media (min-width: 900px) {
  .page-hero .title h1 {
    font-size: 70px;
  }
}
@media (min-width: 1200px) {
  .page-hero .title h1 {
    font-size: 84px;
  }
}
.page-hero .photo {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .page-hero .photo {
    width: 60%;
    margin-bottom: -80px;
  }
}
.page-hero .photo .overlay {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 44, 73, 0.7), rgba(0, 44, 73, 0));
}
.page-hero .photo img {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: auto;
}

.horizontal-line {
  margin: 30px auto;
  width: 94%;
  max-width: 1200px;
  height: 2px;
  background: #fcbb11;
}
.horizontal-line.bg-lgray {
  background-color: #f1f1f1;
}
.horizontal-line.bg-lblue {
  background-color: #60a0d6;
}

.wysiwyg {
  margin: 60px auto;
}
.wysiwyg.bg-lgray {
  background: #f1f1f1;
  margin: 0 auto;
  padding: 30px 0;
}
.wysiwyg .base {
  max-width: 1000px;
  margin: 0 auto;
}

.spacer {
  height: 30px;
  width: 100%;
  background: #ffffff;
}
.spacer.bg-lgray {
  background-color: #f1f1f1;
}

.two-column {
  margin: 70px auto 30px;
}
@media (min-width: 900px) {
  .two-column .grid {
    margin: 0 -40px;
  }
}
.two-column .grid-item {
  width: 100%;
  margin: 0 auto 30px;
}
@media (min-width: 900px) {
  .two-column .grid-item {
    width: 50%;
  }
}
.two-column .grid-item:last-of-type {
  border-top: 2px solid #fcbb11;
  padding-top: 60px;
}
@media (min-width: 900px) {
  .two-column .grid-item:last-of-type {
    padding: 0;
    border: none;
    border-left: 2px solid #fcbb11;
  }
}
@media (min-width: 900px) {
  .two-column .grid-item .inner {
    padding: 0 40px;
  }
}

.photo-text {
  padding: 30px 0;
}
.photo-text.bg-white {
  background: #ffffff;
}
.photo-text.bg-lgray {
  background: #f1f1f1;
}
.photo-text .grid {
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 900px) {
  .photo-text .grid {
    margin: 0 -30px;
  }
}
.photo-text .grid.reverse {
  flex-direction: row-reverse;
}
.photo-text .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .photo-text .grid-item {
    padding: 0 30px;
    width: 50%;
  }
}
.photo-text .grid-item.photo {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .photo-text .grid-item.photo {
    margin: 0;
  }
}
.photo-text .grid-item.photo img {
  width: 100%;
  height: auto;
}

.cta-blocks {
  margin: 60px auto 30px;
}
.cta-blocks .grid {
  margin: 0 -20px;
}
.cta-blocks .grid-item {
  width: 100%;
  margin-bottom: 60px;
  max-width: 600px;
  margin: 0 auto 60px;
}
@media (min-width: 900px) {
  .cta-blocks .grid-item {
    margin: 0 0 60px;
    flex: 1 1 0;
    width: 0;
  }
}
.cta-blocks .item {
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
  padding: 50px 40px;
  height: 100%;
  margin: 0 20px;
  border-radius: 30px 0 30px 0;
  position: relative;
}
.cta-blocks .item .button {
  position: absolute;
  bottom: -22px;
}
.cta-blocks .item .button:hover {
  background: #60a0d6;
}

.statistics {
  padding: 60px 0 70px;
  background: #f1f1f1;
}
.statistics.bg-blue {
  background-color: #275694;
}
.statistics.bg-blue .slick-prev::before, .statistics.bg-blue .slick-next::before {
  border-color: #ffffff !important;
  color: #fcbb11 !important;
}
.statistics.bg-navy {
  background-color: #002c49;
}
.statistics.bg-navy .slick-prev::before, .statistics.bg-navy .slick-next::before {
  border-color: #ffffff !important;
  color: #fcbb11 !important;
}
.statistics .slide {
  color: #ffffff;
  height: auto;
}
.statistics .stat-slider {
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}
.statistics .stat-slider .slick-list {
  order: 2;
}
.statistics .stat-slider .slick-prev {
  order: 0;
  position: relative;
  margin: 0 10px;
  margin-top: 20px;
}
.statistics .stat-slider .slick-prev::before {
  border-color: #fcbb11;
  color: #275694;
}
.statistics .stat-slider .slick-prev:hover::before {
  color: #fcbb11 !important;
}
.statistics .stat-slider .slick-next {
  position: relative;
  order: 1;
  margin-top: 20px;
}
.statistics .stat-slider .slick-next::before {
  border-color: #fcbb11;
  color: #275694;
}
.statistics .inner {
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
  padding: 50px 20px;
  height: 100%;
  margin: 0 10px;
  border-radius: 30px 0 30px 0;
  position: relative;
}
.statistics .number {
  color: #fcbb11;
  font-size: 55px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .statistics .number {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  .statistics .number {
    font-size: 72px;
  }
}
.statistics .label {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin: 10px auto;
}
.statistics .details p {
  line-height: 1.6;
  font-size: 18px;
}
.statistics .details p strong {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
}
.statistics .details p em {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: italic;
}
.statistics .details p strong em,
.statistics .details p em strong {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: italic;
}
.statistics .details hr {
  width: 90px;
  margin: 20px auto;
  height: 2px;
  background: #fcbb11;
  border: none;
}

.offset-photo-text-box {
  margin: 60px auto;
}
@media (min-width: 900px) {
  .offset-photo-text-box {
    margin: 80px auto 160px;
  }
}
.offset-photo-text-box .grid {
  flex-wrap: wrap-reverse;
}
.offset-photo-text-box .grid.reverse {
  flex-direction: row-reverse;
}
@media (min-width: 900px) {
  .offset-photo-text-box .grid.reverse .inner {
    margin: 0px auto 0 -100px;
  }
}
.offset-photo-text-box .grid-item.image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
@media (min-width: 900px) {
  .offset-photo-text-box .grid-item.image {
    width: 50%;
  }
}
.offset-photo-text-box .grid-item.image img {
  display: block;
  width: 100%;
}
@media (min-width: 900px) {
  .offset-photo-text-box .grid-item.image img {
    display: none;
  }
}
.offset-photo-text-box .text {
  margin: 0 auto;
  width: 94%;
  margin-top: -40px;
}
@media (min-width: 600px) {
  .offset-photo-text-box .text {
    margin-top: -60px;
  }
}
@media (min-width: 900px) {
  .offset-photo-text-box .text {
    margin-top: 0;
    width: 50%;
  }
}
.offset-photo-text-box .inner {
  margin: 0 auto;
  max-width: 800px;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  height: 100%;
  padding: 40px 30px 20px;
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .offset-photo-text-box .inner {
    top: 80px;
    padding: 60px 60px 50px;
    margin: 0px -100px 0 auto;
  }
}
@media (min-width: 1200px) {
  .offset-photo-text-box .inner {
    padding: 90px 100px 80px;
  }
}

.feature-photo-text-box {
  margin: 60px auto;
}
.feature-photo-text-box.bg-blue .text {
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
}
.feature-photo-text-box.bg-lgray .text {
  background: #f1f1f1;
}
.feature-photo-text-box .grid {
  flex-wrap: wrap-reverse;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}
.feature-photo-text-box .grid.reverse {
  flex-direction: row-reverse;
}
@media (min-width: 900px) {
  .feature-photo-text-box .grid.reverse .inner {
    margin: 0 auto 0 0;
  }
}
.feature-photo-text-box .grid-item.image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
@media (min-width: 900px) {
  .feature-photo-text-box .grid-item.image {
    width: 40%;
  }
}
.feature-photo-text-box .grid-item.image img {
  display: block;
  width: 100%;
}
@media (min-width: 900px) {
  .feature-photo-text-box .grid-item.image img {
    display: none;
  }
}
.feature-photo-text-box .text {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 900px) {
  .feature-photo-text-box .text {
    width: 60%;
  }
}
.feature-photo-text-box .inner {
  margin: 0 auto;
  max-width: 800px;
  height: 100%;
  padding: 40px 30px 20px;
}
@media (min-width: 900px) {
  .feature-photo-text-box .inner {
    padding: 60px 60px 50px;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1200px) {
  .feature-photo-text-box .inner {
    padding: 90px 60px 80px;
  }
}

.accordion {
  margin: 60px auto;
}
.accordion .expanded {
  display: none;
}
.accordion .container {
  margin: 0px auto 20px;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}
.accordion .content {
  padding: 40px 30px 20px;
  background: #f1f1f1;
}
@media (min-width: 600px) {
  .accordion .content {
    padding: 40px 30px 20px 85px;
  }
}
.accordion .expand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 30px 30px 15px;
  cursor: pointer;
  position: relative;
  background: #f1f1f1;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 600px) {
  .accordion .expand {
    padding: 30px;
  }
}
.accordion .expand:hover {
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
}
.accordion .expand:hover h3 {
  color: #fcbb11;
}
.accordion .expand:hover .icon::before {
  color: #fcbb11;
}
.accordion .expand h3 {
  margin-bottom: 0px;
  padding-left: 15px;
  line-height: 1.3;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  color: #1b4681;
  font-size: 20px;
  text-transform: none;
  letter-spacing: normal;
}
@media (min-width: 600px) {
  .accordion .expand h3 {
    padding-left: 20px;
    font-size: 22px;
  }
}
.accordion .expand .icon::before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  color: #1b4681;
  font-size: 35px;
}
.accordion .expand.open {
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
}
.accordion .expand.open h3 {
  color: #fcbb11;
}
.accordion .expand.open .icon::before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fcbb11;
  content: "\e901";
}

.timeline {
  margin: 70px auto 80px;
}
.timeline .intro {
  margin-bottom: 50px;
}
.timeline .container {
  position: relative;
}
.timeline .container::before {
  position: absolute;
  left: 40px;
  z-index: 1;
  content: "";
  width: 2px;
  height: 100%;
  background: #fcbb11;
}
@media (min-width: 480px) {
  .timeline .container::before {
    left: 45px;
  }
}
@media (min-width: 600px) {
  .timeline .container::before {
    left: 60px;
  }
}
.timeline .row {
  margin-bottom: 60px;
  align-items: flex-start;
}
.timeline .row .year {
  width: 80px;
  position: relative;
  z-index: 2;
}
@media (min-width: 480px) {
  .timeline .row .year {
    width: 90px;
  }
}
@media (min-width: 600px) {
  .timeline .row .year {
    width: 120px;
  }
}
.timeline .row .year .inner {
  background: #ffffff;
  border: 2px solid #fcbb11;
  border-radius: 999em;
  overflow: hidden;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #275694;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
}
@media (min-width: 480px) {
  .timeline .row .year .inner {
    width: 90px;
    height: 90px;
    font-size: 32px;
  }
}
@media (min-width: 600px) {
  .timeline .row .year .inner {
    font-size: 40px;
    width: 120px;
    height: 120px;
  }
}
.timeline .row .content {
  width: calc(100% - 80px);
}
@media (min-width: 480px) {
  .timeline .row .content {
    width: calc(100% - 90px);
  }
}
@media (min-width: 600px) {
  .timeline .row .content {
    width: calc(100% - 120px);
  }
}
.timeline .row .base {
  padding-top: 10px;
  padding-left: 20px;
}
@media (min-width: 600px) {
  .timeline .row .base {
    padding-top: 20px;
    padding-left: 50px;
  }
}
.timeline .row .base *:last-child {
  margin-bottom: 0;
}

.testimonials {
  margin: 60px auto;
}
.testimonials .slick-prev {
  top: auto;
  bottom: 10px;
  left: auto;
  right: 80px;
}
@media (min-width: 600px) {
  .testimonials .slick-prev {
    right: 110px;
  }
}
@media (min-width: 768px) {
  .testimonials .slick-prev {
    right: 120px;
  }
}
@media (min-width: 1400px) {
  .testimonials .slick-prev {
    right: 150px;
  }
}
.testimonials .slick-next {
  top: auto;
  bottom: 10px;
  left: auto;
  right: 30px;
}
@media (min-width: 600px) {
  .testimonials .slick-next {
    right: 60px;
  }
}
@media (min-width: 768px) {
  .testimonials .slick-next {
    right: 60px;
  }
}
@media (min-width: 1400px) {
  .testimonials .slick-next {
    right: 100px;
  }
}
.testimonials .testimonial {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonials .testimonial.with-career-path {
  border-top: 40px solid #ffffff;
}
.testimonials .testimonial .quote {
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
  border-radius: 30px 0 30px 0;
  padding: 80px 30px;
  color: #ffffff;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .testimonials .testimonial .quote {
    padding: 80px 60px;
  }
}
@media (min-width: 768px) {
  .testimonials .testimonial .quote {
    padding: 60px 60px 80px 90px;
  }
}
@media (min-width: 1024px) {
  .testimonials .testimonial .quote {
    padding: 60px 60px 80px 120px;
  }
}
@media (min-width: 1400px) {
  .testimonials .testimonial .quote {
    padding: 60px 100px 80px 120px;
  }
}
.testimonials .testimonial .quote p {
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: italic;
}
@media (min-width: 600px) {
  .testimonials .testimonial .quote p {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .testimonials .testimonial .quote p {
    font-size: 22px;
  }
}
.testimonials .testimonial .quote .name {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: right;
}
@media (min-width: 900px) {
  .testimonials .testimonial .quote .name {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .testimonials .testimonial .quote .name {
    font-size: 36px;
  }
}
.testimonials .testimonial .quote .position {
  color: #fcbb11;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: right;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .testimonials .testimonial .quote .position {
    font-size: 18px;
  }
}
.testimonials .testimonial .photo-career-path {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  background: #002c49;
  padding: 0 20px 30px;
  border-radius: 30px 0 0px 0;
}
@media (min-width: 768px) {
  .testimonials .testimonial .photo-career-path {
    margin: 0;
    width: 300px;
    padding: 0 30px 30px;
  }
}
@media (min-width: 1024px) {
  .testimonials .testimonial .photo-career-path {
    width: 400px;
    padding: 0 50px 30px;
  }
}
.testimonials .testimonial .photo-career-path + .quote {
  width: 100%;
  border-radius: 0px 0 30px 0;
  padding: 40px 30px 80px;
  color: #ffffff;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .testimonials .testimonial .photo-career-path + .quote {
    padding: 40px 60px 80px;
  }
}
@media (min-width: 768px) {
  .testimonials .testimonial .photo-career-path + .quote {
    min-height: 300px;
    width: calc(100% - 300px);
  }
}
@media (min-width: 1024px) {
  .testimonials .testimonial .photo-career-path + .quote {
    min-height: 400px;
    width: calc(100% - 400px);
    padding: 60px 60px 80px;
  }
}
@media (min-width: 1400px) {
  .testimonials .testimonial .photo-career-path + .quote {
    padding: 60px 100px 80px;
  }
}
.testimonials .testimonial .photo-career-path .name-path {
  text-transform: uppercase;
  color: #fcbb11;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0 auto 30px;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid #fcbb11;
  max-width: 300px;
}
@media (min-width: 1200px) {
  .testimonials .testimonial .photo-career-path .name-path {
    margin: 0 20px 30px;
  }
}
.testimonials .testimonial .photo-career-path .path {
  display: flex;
  margin: 0 auto;
  padding-left: 15px;
  padding-bottom: 10px;
  max-width: 300px;
}
.testimonials .testimonial .photo-career-path .path:last-of-type {
  padding-bottom: 0;
}
.testimonials .testimonial .photo-career-path .path .date {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  color: #fcbb11;
  width: 45px;
  line-height: 1.4;
  position: relative;
}
.testimonials .testimonial .photo-career-path .path .date::before {
  display: block;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #fcbb11;
  border-radius: 999em;
  left: -14.5px;
  top: 9px;
}
.testimonials .testimonial .photo-career-path .path .text {
  width: calc(100% - 45px);
  padding-left: 10px;
  color: #ffffff;
  line-height: 1.4;
}
.testimonials .testimonial .photo-career-path .img {
  width: 300px;
  height: 300px;
  border-radius: 999em;
  overflow: hidden;
  margin: 0 auto 30px;
  margin-top: -40px;
}
@media (min-width: 768px) {
  .testimonials .testimonial .photo-career-path .img {
    width: 240px;
    height: 240px;
  }
}
@media (min-width: 1024px) {
  .testimonials .testimonial .photo-career-path .img {
    width: 300px;
    height: 300px;
  }
}
.testimonials .testimonial .photo {
  width: 300px;
  height: 300px;
  border-radius: 999em;
  overflow: hidden;
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .testimonials .testimonial .photo {
    margin: 0;
    margin-right: -60px;
  }
}
@media (min-width: 1024px) {
  .testimonials .testimonial .photo {
    width: 400px;
    height: 400px;
  }
}
.testimonials .testimonial .photo + .quote {
  width: 100%;
}
@media (min-width: 768px) {
  .testimonials .testimonial .photo + .quote {
    min-height: 300px;
    width: calc(100% - 240px);
  }
}
@media (min-width: 1024px) {
  .testimonials .testimonial .photo + .quote {
    min-height: 400px;
    width: calc(100% - 340px);
  }
}

.logo-gallery {
  margin: 30px auto;
}
.logo-gallery .logo-slider {
  padding: 0 30px;
}
@media (min-width: 480px) {
  .logo-gallery .slick-track {
    align-items: center;
  }
}
.logo-gallery .slick-track img {
  padding: 0 30px;
}
.logo-gallery .slick-prev::before,
.logo-gallery .slick-next::before {
  background: #fcbb11;
  color: #ffffff;
  border-color: #fcbb11;
}
.logo-gallery .slick-prev:hover::before, .logo-gallery .slick-next:hover::before {
  background: #275694 !important;
  border-color: #275694 !important;
}

.page-hero + .kippfwdcols {
  margin-top: -60px;
}

@media (min-width: 900px) {
  .kippfwdcols .wrap1400 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.kippfwdcols .txt {
  padding-top: 40px;
}
@media (min-width: 900px) {
  .kippfwdcols .txt {
    width: 60%;
    padding-top: 25px;
  }
}
@media (min-width: 1024px) {
  .kippfwdcols .txt {
    width: 57%;
  }
}
.kippfwdcols .kippfwdbio {
  position: relative;
  background: #f1f1f1;
  text-align: center;
  padding: 30px 25px 45px;
  width: 320px;
  margin: 0 auto -30px;
}
@media (min-width: 600px) {
  .kippfwdcols .kippfwdbio {
    width: 400px;
  }
}
@media (min-width: 900px) {
  .kippfwdcols .kippfwdbio {
    width: 34%;
    margin: 0 0 -30px;
  }
}
.kippfwdcols .kippfwdbio .img {
  margin: 0 auto 10px;
  max-width: 250px;
  position: relative;
}
.kippfwdcols .kippfwdbio .img:hover .readOverlay {
  opacity: 1;
}
.kippfwdcols .kippfwdbio .readOverlay {
  transition: ease-in-out 0.2s;
  opacity: 0;
  background: rgba(96, 160, 214, 0.9);
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 3px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  color: #ffffff;
}
.kippfwdcols .kippfwdbio img {
  width: 100%;
  max-width: none;
}
.kippfwdcols .kippfwdbio .name {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #275694;
}
@media (min-width: 600px) {
  .kippfwdcols .kippfwdbio .name {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .kippfwdcols .kippfwdbio .name {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .kippfwdcols .kippfwdbio .name {
    font-size: 36px;
  }
}
.kippfwdcols .kippfwdbio .position {
  color: #60a0d6;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.kippfwdcols .kippfwdbio .read {
  position: relative;
  display: inline-block;
  background: #fcbb11;
  color: #002c49;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 14px 20px;
  overflow: hidden;
  font-size: 16px;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.kippfwdcols .kippfwdbio .read:hover {
  background: #60a0d6;
  color: #ffffff;
}
.kippfwdcols .kippfwdbio .bio {
  display: none;
}
.kippfwdcols .kippfwdbio .bio.open {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kippfwdcols .kippfwdbio .popup {
  animation: fadeUp;
  -webkit-animation-name: fadeUp;
  animation-duration: 0.6s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.68, -0.3, 0.265, 1.3);
  animation-fill-mode: forwards;
  text-align: left;
  position: relative;
  z-index: 999;
  display: block;
  padding: 60px 0px 30px;
  height: 100%;
  overflow: scroll;
  background: linear-gradient(to top right, #275694 0%, #275694 2%, #002c49 100%);
}
.kippfwdcols .kippfwdbio .closeModal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  color: #fcbb11;
}
.kippfwdcols .kippfwdbio .closeModal:hover {
  color: #ffffff;
}

.home .site-main {
  background: #275694;
}
.home .page-hero {
  background-position: center;
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .home .page-hero {
    padding-bottom: 80px;
  }
}
.home .page-hero .inner {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .home .page-hero .inner {
    max-width: 1000px;
  }
}
.home .page-hero .inner h1 {
  font-size: 45px;
  color: #ffffff;
  font-family: "Permanent Marker", cursive;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
@media (min-width: 600px) {
  .home .page-hero .inner h1 {
    font-size: 60px;
  }
}
@media (min-width: 900px) {
  .home .page-hero .inner h1 {
    font-size: 50px;
    line-height: 0.9;
  }
}
@media (min-width: 1200px) {
  .home .page-hero .inner h1 {
    font-size: 70px;
  }
}
@media (min-width: 1400px) {
  .home .page-hero .inner h1 {
    font-size: 84px;
  }
}
.home .page-hero .inner .button {
  margin-top: 30px;
}
.home .page-hero .video {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .home .page-hero .video {
    width: 60%;
  }
}
.home .page-hero .video .overlay {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 44, 73, 0.7), rgba(0, 44, 73, 0));
}
.home .page-hero video {
  width: 100%;
  height: auto;
}
.home .page-hero .muteToggle {
  position: absolute;
  bottom: 2px;
  right: 0;
  z-index: 2;
  background: rgba(96, 160, 214, 0.5);
  color: white;
}
.home .page-hero .muteToggle:hover {
  background: #60a0d6;
}
.home .page-hero .muteToggle span {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
}
.home .page-hero .muteToggle:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e917";
  font-size: 28px;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  line-height: 50px;
}
.home .page-hero .muteToggle.volumeON:before {
  content: "\e918";
}
.home .page-hero .slider-nav {
  margin-top: 50px;
}
@media (min-width: 1500px) {
  .home .page-hero .slider-nav {
    margin-top: -20px;
  }
}
.home .page-hero .slider-nav .slick-next {
  left: 50px;
}
.home .offset-photo-text-box {
  background: #275694;
}
@media (min-width: 900px) {
  .home .offset-photo-text-box {
    margin: 0 auto 120px;
  }
}
.home .statistics {
  padding: 0 0 70px;
}
@media (min-width: 900px) {
  .home .statistics {
    padding: 60px 0 70px;
  }
}
.home .statistics .intro {
  width: 100%;
}
@media (min-width: 1024px) {
  .home .statistics .intro {
    width: 33.3333333%;
    padding-right: 60px;
  }
}
.home .statistics .stat-slider {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .home .statistics .stat-slider {
    width: 66.6666667%;
  }
}
.home .statistics .stat-slider .slick-list {
  order: 2;
}
.home .statistics .stat-slider .slick-prev {
  order: 0;
  position: relative;
  margin: 0 10px;
  top: auto;
  margin-top: 0;
}
.home .statistics .stat-slider .slick-prev::before {
  border-color: #fcbb11;
  color: #275694;
}
.home .statistics .stat-slider .slick-prev:hover::before {
  color: #fcbb11 !important;
}
.home .statistics .stat-slider .slick-next {
  position: relative;
  order: 1;
  top: auto;
  margin-top: 0;
}
.home .statistics .stat-slider .slick-next::before {
  border-color: #fcbb11;
  color: #275694;
}
.home .photo-with-textbox#prepare .grid {
  justify-content: flex-start;
}
.home .photo-with-textbox#lead .grid {
  justify-content: center;
}
.home .photo-with-textbox#support .grid {
  justify-content: flex-end;
}
.home .photo-with-textbox .photo {
  width: 100%;
  height: auto;
}
.home .photo-with-textbox .textbox {
  padding-bottom: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home .photo-with-textbox .textbox .base {
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
  max-width: 800px;
  padding: 40px 30px 20px;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .home .photo-with-textbox .textbox .base {
    margin-top: -60px;
    padding: 60px 60px 30px;
  }
}

.page-template-athletics-sport .overlay,
.page-template-athletics-hub .overlay {
  display: none;
}

.athletics-nav {
  background: #f1f1f1;
  padding: 30px 0;
}
.athletics-nav .grid {
  justify-content: center;
  align-items: center;
}
.athletics-nav .grid-item {
  font-size: 16px;
  margin-top: 15px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .athletics-nav .grid-item {
    margin: 0;
    width: auto;
    font-size: 18px;
  }
}
.athletics-nav a {
  text-decoration: underline;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  color: #275694;
}
.athletics-nav a:hover {
  text-decoration: none;
}
.athletics-nav .custom-select {
  position: relative;
  border: 1px solid #cccccc;
  height: 45px;
  width: 250px;
}
@media (min-width: 768px) {
  .athletics-nav .custom-select {
    width: 300px;
    margin-right: 10px;
  }
}
.athletics-nav .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #275694;
}
.athletics-nav .custom-select select {
  font-size: 18px;
  border: none;
  background: #ffffff;
  height: 43px;
  border-radius: 5px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .athletics-nav .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.athletics-nav .custom-select:after {
  display: block;
}

.sports-list {
  margin: 60px auto 1px;
}
@media (min-width: 900px) {
  .sports-list .grid {
    margin: 0 -30px;
  }
}
.sports-list .grid-item {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 900px) {
  .sports-list .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 900px) {
  .sports-list .inner {
    padding: 0 30px;
  }
}
@media (min-width: 900px) {
  .sports-list .base h3 {
    font-size: 40px;
  }
}
.sports-list .sports {
  margin-top: 30px;
}
.sports-list .sports li {
  margin-bottom: 25px;
  line-height: 1.2;
}
.sports-list .sports li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: max-content;
}
.sports-list .sports li img {
  width: 40px;
  margin-right: 10px;
}
@media (min-width: 900px) {
  .sports-list .sports li img {
    width: 45px;
  }
}
.sports-list .sports li a {
  color: #275694;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
}
.sports-list .sports li a:hover {
  color: #60a0d6;
}

.athletic-director {
  margin: 60px auto;
}
.athletic-director .grid {
  justify-content: center;
  align-items: center;
}
.athletic-director .ad {
  width: 380px;
  margin: 0 auto 40px;
}
@media (min-width: 900px) {
  .athletic-director .ad {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .athletic-director .ad {
    width: 420px;
  }
}
.athletic-director .ad .inner {
  background: #f1f1f1;
  padding: 50px 20px;
  text-align: center;
}
.athletic-director .ad .photo {
  max-width: 235px;
  margin: 0 auto 10px;
}
.athletic-director .ad .name {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #275694;
}
@media (min-width: 600px) {
  .athletic-director .ad .name {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .athletic-director .ad .name {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .athletic-director .ad .name {
    font-size: 36px;
  }
}
.athletic-director .ad .position {
  color: #60a0d6;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.athletic-director .ad .readbio {
  position: relative;
  display: inline-block;
  background: #fcbb11;
  color: #002c49;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 14px 20px;
  overflow: hidden;
  font-size: 16px;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.athletic-director .ad .readbio:hover {
  background: #60a0d6;
  color: #ffffff;
}
.athletic-director .intro {
  width: 100%;
}
@media (min-width: 900px) {
  .athletic-director .intro {
    width: calc(100% - 380px);
  }
}
@media (min-width: 1200px) {
  .athletic-director .intro {
    width: calc(100% - 420px);
  }
}
@media (min-width: 900px) {
  .athletic-director .intro .base {
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .athletic-director .intro .base {
    padding-left: 60px;
  }
}

.athletics-tabs {
  margin: 60px auto 70px;
}
.athletics-tabs .js-tablist {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.athletics-tabs .js-tablist__item {
  position: relative;
  margin-right: 20px;
  width: auto;
  line-height: normal;
}
@media (min-width: 600px) {
  .athletics-tabs .js-tablist__item {
    margin-right: 30px;
  }
}
.athletics-tabs .js-tablist__item a {
  display: block;
  text-align: center;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: #275694;
  cursor: pointer;
  position: relative;
}
@media (min-width: 600px) {
  .athletics-tabs .js-tablist__item a {
    font-size: 35px;
  }
}
@media (min-width: 900px) {
  .athletics-tabs .js-tablist__item a {
    font-size: 40px;
  }
}
.athletics-tabs .js-tablist__item a:hover {
  color: #60a0d6;
}
.athletics-tabs .js-tablist__item a[aria-selected=true].js-tablist__link {
  color: #60a0d6;
  position: relative;
  border-bottom: 2px solid #fcbb11;
}
.athletics-tabs .js-tablist__item a[aria-selected=true].js-tablist__link:hover {
  color: #60a0d6;
}
.athletics-tabs .js-tablist__item a[aria-selected=true].js-tablist__link::after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fcbb11;
  content: "\e90a";
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  font-size: 8px;
}
.athletics-tabs .js-tabcontent[aria-hidden=true] {
  display: none;
}
.athletics-tabs .js-tabcontent {
  margin-top: 40px;
  width: 100%;
}
.athletics-tabs .section-title h2 {
  border-bottom: 2px solid #275694;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.athletics-tabs ul.coaches {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .athletics-tabs ul.coaches {
    margin: 0 -30px;
  }
}
.athletics-tabs ul.coaches li.coach {
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 900px) {
  .athletics-tabs ul.coaches li.coach {
    width: 33.3333333%;
  }
}
@media (min-width: 900px) {
  .athletics-tabs ul.coaches li.coach .inner {
    padding: 0 30px;
  }
}
.athletics-tabs ul.coaches li.coach h3 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  color: #275694;
}
@media (min-width: 900px) {
  .athletics-tabs ul.coaches li.coach h3 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .athletics-tabs ul.coaches li.coach h3 {
    font-size: 36px;
  }
}
.athletics-tabs ul.coaches li.coach .position {
  color: #60a0d6;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media (min-width: 900px) {
  .athletics-tabs ul.coaches li.coach .position {
    font-size: 18px;
  }
}
.athletics-tabs ul.coaches li.coach .email {
  margin-top: 10px;
  line-height: 1.2;
}
.athletics-tabs ul.coaches li.coach .email a {
  text-decoration: underline;
  color: #275694;
}
.athletics-tabs ul.coaches li.coach .email a:hover {
  text-decoration: none;
}
.athletics-tabs .table-wrap {
  overflow-x: auto;
}
.athletics-tabs table.athleticTable {
  width: 100%;
  border-spacing: 0;
  text-align: left;
  white-space: nowrap;
}
.athletics-tabs table.athleticTable th, .athletics-tabs table.athleticTable thead td {
  border-collapse: collapse;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
  background: #60a0d6;
}
.athletics-tabs table.athleticTable tbody td {
  white-space: nowrap;
  padding: 12px 10px;
  min-width: 40px;
  font-size: 14px;
  background: #f1f1f1;
  border-bottom: 1px solid #cccccc;
}
.athletics-tabs table.athleticTable tbody a {
  color: #275694;
  text-decoration: underline;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
}
.athletics-tabs table.athleticTable tbody a:hover, .athletics-tabs table.athleticTable tbody a:focus {
  color: #60a0d6;
  text-decoration: none;
}
.athletics-tabs table.athleticTable tbody .notes + .addToCals {
  margin-top: 10px;
}
.athletics-tabs table.athleticTable tbody .addToCals {
  font-size: 12px;
}
.athletics-tabs table.athleticTable tbody .addToCals a, .athletics-tabs table.athleticTable tbody .addToCals input {
  border: none;
  padding: 0;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #275694;
  text-decoration: underline;
  display: inline-block;
  background: none;
}
.athletics-tabs table.athleticTable tbody .addToCals form {
  display: inline-block;
}
.athletics-tabs #photos .grid {
  justify-content: flex-start;
  margin: 0 -10px;
}
.athletics-tabs #photos .grid-item {
  padding: 0 10px;
  margin-bottom: 20px;
  width: 50%;
}
@media (min-width: 600px) {
  .athletics-tabs #photos .grid-item {
    width: 33%;
  }
}
@media (min-width: 768px) {
  .athletics-tabs #photos .grid-item {
    width: 25%;
  }
}
.athletics-tabs #photos .gallery-button {
  display: block;
  width: 100%;
}
.athletics-tabs #photos .gallery-button img {
  width: 100%;
  height: auto;
}

.nivo-lightbox-title-wrap {
  display: none !important;
}

.athletics-intro {
  margin: 60px auto 0;
}

.athletics-coachesNEW {
  margin: 60px auto -30px;
}
.athletics-coachesNEW .intro {
  margin-bottom: 40px;
}
.athletics-coachesNEW .grid {
  justify-content: center;
}
.athletics-coachesNEW .grid-item {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .athletics-coachesNEW .grid-item {
    width: 50%;
  }
}
.athletics-coachesNEW .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.athletics-coachesNEW .inner .photo {
  margin: 0 0 10px;
  width: 200px;
}
@media (min-width: 600px) {
  .athletics-coachesNEW .inner .photo {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .athletics-coachesNEW .inner .photo {
    width: 230px;
  }
}
.athletics-coachesNEW .inner .container {
  width: 100%;
  text-align: center;
}
@media (min-width: 600px) {
  .athletics-coachesNEW .inner .container {
    text-align: left;
    width: calc(100% - 200px);
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .athletics-coachesNEW .inner .container {
    width: calc(100% - 230px);
  }
}
.athletics-coachesNEW .name {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #275694;
}
@media (min-width: 600px) {
  .athletics-coachesNEW .name {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .athletics-coachesNEW .name {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .athletics-coachesNEW .name {
    font-size: 36px;
  }
}
.athletics-coachesNEW .position {
  color: #60a0d6;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.athletics-coachesNEW .readbio {
  position: relative;
  display: inline-block;
  background: #fcbb11;
  color: #002c49;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 14px 20px;
  overflow: hidden;
  font-size: 16px;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.athletics-coachesNEW .readbio:hover {
  background: #60a0d6;
  color: #ffffff;
}

.team:nth-of-type(odd) {
  background: #f1f1f1;
}
.team .wrap1400 {
  padding: 80px 0 50px;
}
.team .grid {
  margin-top: 60px;
  justify-content: center;
}
.team .grid .grid-item {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 600px) {
  .team .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .team .grid .grid-item {
    width: 33.333333%;
  }
}
.team .grid .inner {
  padding: 0 20px;
}
.team .grid .img {
  margin: 0 auto 10px;
  max-width: 250px;
  position: relative;
}
.team .grid .img:hover .readbio {
  opacity: 1;
}
.team .grid .img .readbio {
  transition: ease-in-out 0.2s;
  opacity: 0;
  background: rgba(96, 160, 214, 0.9);
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 3px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  color: #ffffff;
}
.team .grid .img img {
  width: 100%;
  max-width: none;
}
.team .grid .name {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #275694;
}
@media (min-width: 600px) {
  .team .grid .name {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .team .grid .name {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .team .grid .name {
    font-size: 36px;
  }
}
.team .grid .position {
  color: #60a0d6;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.team .grid .read {
  position: relative;
  display: inline-block;
  background: #fcbb11;
  color: #002c49;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 14px 20px;
  overflow: hidden;
  font-size: 16px;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.team .grid .read:hover {
  background: #60a0d6;
  color: #ffffff;
}

.bio {
  display: none;
}
.bio.open {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bio.open .popup {
  animation: fadeUp;
  -webkit-animation-name: fadeUp;
  animation-duration: 0.6s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.68, -0.3, 0.265, 1.3);
  animation-fill-mode: forwards;
  text-align: left;
  position: relative;
  z-index: 999;
  display: block;
  padding: 60px 0px 30px;
  height: 100%;
  overflow: scroll;
  background: linear-gradient(to top right, #275694 0%, #275694 2%, #002c49 100%);
}
.bio.open .closeModal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  color: #fcbb11;
}
.bio.open .closeModal:hover {
  color: #ffffff;
}
.bio.open .grid {
  margin: 0;
}
.bio.open .grid .photo {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .bio.open .grid .photo {
    text-align: left;
    width: 350px;
    margin-bottom: 0;
  }
}
.bio.open .grid .photo img {
  width: 100%;
  height: auto;
  max-width: 295px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .bio.open .grid .photo img {
    max-width: 350px;
    margin: 0;
  }
}
.bio.open .grid .photo + .content {
  width: 100%;
}
@media (min-width: 900px) {
  .bio.open .grid .photo + .content {
    width: calc(100% - 350px);
    margin-bottom: 0;
  }
}
.bio.open .grid .content {
  margin-bottom: 0;
  width: 100%;
}
.bio.open .grid .base {
  padding: 0 20px;
}
@media (min-width: 900px) {
  .bio.open .grid .base {
    padding: 0 60px;
  }
}
.bio.open .grid .base h2 {
  margin-bottom: 10px;
}
.bio.open .grid .base h4 {
  margin-bottom: 30px;
}
.bio.open .grid .base p {
  margin-bottom: 20px;
}

.page-id-107 .page-hero {
  margin-bottom: 0px;
}
@media (min-width: 900px) {
  .page-id-107 .page-hero {
    margin-bottom: 80px;
  }
}

.page-template-news .post-list, .archive .post-list {
  justify-content: center;
}
@media (min-width: 900px) {
  .page-template-news .post-list, .archive .post-list {
    margin: 0 -30px;
  }
}
.page-template-news .post-list .grid-item, .archive .post-list .grid-item {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .page-template-news .post-list .grid-item, .archive .post-list .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 900px) {
  .page-template-news .post-list .inner, .archive .post-list .inner {
    padding: 0 30px;
  }
}
.page-template-news .post-list .inner .base h4, .archive .post-list .inner .base h4 {
  font-size: 14px;
}
.page-template-news .post-list .inner .base a.post-title, .archive .post-list .inner .base a.post-title {
  text-decoration: none;
}
.page-template-news .post-list .inner .base a.post-title:hover h3, .archive .post-list .inner .base a.post-title:hover h3 {
  color: #60a0d6;
}

.blog-sidebar {
  margin: 60px auto 80px;
}
.blog-sidebar .grid {
  justify-content: center;
}
.blog-sidebar .widget {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.blog-sidebar h3 {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  color: #275694;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}
@media (min-width: 900px) {
  .blog-sidebar h3 {
    width: auto;
    margin: 0;
    margin-right: 15px;
  }
}
.blog-sidebar .custom-select {
  position: relative;
  border: 1px solid #cccccc;
  height: 45px;
  width: 250px;
}
@media (min-width: 900px) {
  .blog-sidebar .custom-select {
    width: 300px;
  }
}
.blog-sidebar .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #275694;
}
.blog-sidebar .custom-select select {
  font-size: 18px;
  border: none;
  background: #f1f1f1;
  height: 43px;
  border-radius: 5px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 400;
  font-style: normal;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .blog-sidebar .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.blog-sidebar .custom-select:after {
  display: block;
}

.nav-links {
  padding: 30px 0 35px;
  border-top: 2px solid #f1f1f1;
}
.nav-links a {
  color: #60a0d6;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .nav-links a {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  .nav-links a {
    font-size: 18px;
  }
}
.nav-links a:hover {
  color: #fcbb11;
}
.nav-links a .icon {
  color: #fcbb11;
  font-size: 18px;
  vertical-align: bottom;
}
@media (min-width: 600px) {
  .nav-links a .icon {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .nav-links a .icon {
    font-size: 22px;
  }
}

.single-post .page-hero, .archive .page-hero {
  padding: 60px 0;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .single-post .page-hero, .archive .page-hero {
    padding-top: 267px;
  }
}
.single-post .page-hero .date, .single-post .page-hero h4, .archive .page-hero .date, .archive .page-hero h4 {
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fcbb11;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 600px) {
  .single-post .page-hero .date, .single-post .page-hero h4, .archive .page-hero .date, .archive .page-hero h4 {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.single-post .page-hero h1, .archive .page-hero h1 {
  font-size: 45px;
  color: #ffffff;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
}
@media (min-width: 600px) {
  .single-post .page-hero h1, .archive .page-hero h1 {
    font-size: 60px;
  }
}
@media (min-width: 900px) {
  .single-post .page-hero h1, .archive .page-hero h1 {
    font-size: 70px;
  }
}
@media (min-width: 1200px) {
  .single-post .page-hero h1, .archive .page-hero h1 {
    font-size: 84px;
  }
}

.single-post .post-meta {
  text-align: center;
  color: #60a0d6;
  padding: 20px 0;
  border-bottom: 2px solid #f1f1f1;
  font-size: 16px;
  line-height: 1.5;
}
.single-post .post-meta strong {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 15px;
  text-transform: uppercase;
}
.single-post .post-meta span {
  color: #fcbb11;
  display: inline-block;
  margin: 0 7px;
}
.single-post .post-meta a:hover {
  color: #1b4681;
}
.single-post .post-content {
  margin-top: 60px;
}
.single-post .post-index {
  margin-top: 60px;
}
.single-post .nav-links {
  padding: 30px 0 35px;
  border-top: 2px solid #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
}
.single-post .blog-sidebar {
  margin: 60px auto 1px;
}
.single-post .blog-sidebar .widget {
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .single-post .blog-sidebar .widget {
    width: 50%;
  }
}
.single-post .blog-sidebar .widget h3 {
  margin: 0 0 10px;
  width: 100%;
}

.ssbp-wrap {
  margin: 60px auto;
}
.ssbp-wrap .ssba-share-text {
  font-size: 14px;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  color: #275694;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .ssbp-wrap .ssba-share-text {
    font-size: 16px;
  }
}
.ssbp-wrap .ssbp-list li {
  margin: 0 7px !important;
  padding: 0 !important;
}
.ssbp-wrap .ssbp-list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  border: none !important;
  color: #60a0d6 !important;
  font-size: 40px;
  margin: 0 auto;
  padding: 0;
}
.ssbp-wrap .ssbp-list a:hover::before {
  color: #fcbb11;
}
.ssbp-wrap .ssbp-list a img, .ssbp-wrap .ssbp-list a svg {
  display: none !important;
}
.ssbp-wrap .ssbp-list a::before {
  font-size: 40px;
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ssbp-wrap .ssbp-list a.ssba_facebook_share::before {
  content: "\e909";
}
.ssbp-wrap .ssbp-list a.ssba_twitter_share::before {
  content: "\e908";
}
.ssbp-wrap .ssbp-list a.ssba_linkedin_share::before {
  content: "\e906";
}
.ssbp-wrap .ssbp-list a.ssba_email_share::before {
  content: "\e915";
  font-size: 23px;
}

.page-template-template-faces .page-hero .photo .overlay {
  display: none;
}
.page-template-template-faces .faces-logo {
  display: block;
  max-width: 600px;
  margin: 60px auto;
  width: 100%;
}
.page-template-template-faces .entry-content {
  margin: 60px auto;
}
.page-template-template-faces .faces {
  margin: 60px auto 80px;
}
.page-template-template-faces .faces .grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-template-faces .faces .grid .grid-item {
  width: 50%;
}
@media (min-width: 600px) {
  .page-template-template-faces .faces .grid .grid-item {
    width: 25%;
  }
}
@media (min-width: 900px) {
  .page-template-template-faces .faces .grid .grid-item {
    width: 20%;
  }
}
.page-template-template-faces .faces .readbio {
  position: relative;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
}
.page-template-template-faces .faces .readbio:hover .active {
  opacity: 1;
}
.page-template-template-faces .faces .readbio img {
  margin-bottom: -5px;
}
.page-template-template-faces .faces .readbio .active {
  position: absolute;
  z-index: 2;
  transition: ease-in 0.2s;
  opacity: 0;
  top: 0;
  left: 0;
}
.page-template-template-faces .popupNav {
  display: flex;
  background: #1b4681;
}
.page-template-template-faces .popupNav a {
  width: 50%;
  text-transform: uppercase;
  height: 40px;
  letter-spacing: 0.15em;
  font-size: 12px;
  line-height: 40px;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  padding: 0 15px;
  color: #ffffff;
  cursor: pointer;
}
.page-template-template-faces .popupNav a.deactivated {
  opacity: 0;
}
.page-template-template-faces .popupNav a:hover {
  color: #fcbb11;
}
.page-template-template-faces .popupNav a.prev:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  content: "\e90d";
  color: #fcbb11;
}
.page-template-template-faces .popupNav a.next {
  text-align: right;
}
.page-template-template-faces .popupNav a.next:after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  content: "\e90c";
  color: #fcbb11;
}
.page-template-template-faces .bioPopContent {
  display: none;
  padding: 0;
}
.page-template-template-faces .fancybox-midigation {
  display: none;
}
.page-template-template-faces .fancybox-infobar {
  display: none;
}
.page-template-template-faces .fancybox-slide--html .fancybox-close-small {
  top: 40px;
  padding: 0;
}
.page-template-template-faces .popup {
  max-width: 900px;
  width: 100%;
  background: linear-gradient(to top left, #1b4681 0%, #1b4681 2%, #002c49 100%);
  margin: 0 auto;
}
.page-template-template-faces .popup .header {
  display: flex;
  flex-wrap: wrap;
  padding-top: 45px;
  padding-bottom: 20px;
}
.page-template-template-faces .popup .header .img {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .page-template-template-faces .popup .header .img {
    margin: 0;
    width: 280px;
  }
}
.page-template-template-faces .popup .header .img img {
  width: 100%;
  height: auto;
}
.page-template-template-faces .popup .header .content {
  width: 100%;
}
@media (min-width: 600px) {
  .page-template-template-faces .popup .header .content {
    width: calc(100% - 280px);
  }
}
.page-template-template-faces .popup .header .content .name {
  padding: 0px 20px 10px;
}
.page-template-template-faces .popup .header .content h3 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
  color: #ffffff;
}
@media (min-width: 600px) {
  .page-template-template-faces .popup .header .content h3 {
    font-size: 40px;
  }
}
@media (min-width: 900px) {
  .page-template-template-faces .popup .header .content h3 {
    margin-bottom: 25px;
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .page-template-template-faces .popup .header .content h3 {
    font-size: 55px;
  }
}
.page-template-template-faces .popup .header .content .title {
  color: #fcbb11;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .page-template-template-faces .popup .header .content .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.page-template-template-faces .popup .header .content .bio {
  padding: 20px;
  display: block;
}
.page-template-template-faces .popup .header .content .bio .base {
  margin: 0;
}
.page-template-template-faces .popup .header .content .bio p {
  margin: 0 0 30px;
  line-height: 1.6;
}

.fancybox-navigation {
  display: none;
}

.fancybox-button svg path {
  fill: #ffffff;
}

.fancybox-button {
  right: 10px !important;
}
.fancybox-button:hover svg path {
  fill: #fcbb11;
}

.board-section {
  margin: 60px auto;
}
.board-section:nth-of-type(odd) {
  background: #f1f1f1;
  padding: 60px 0 10px;
}
.board-section:nth-of-type(odd) .grid-item {
  border-color: #cccccc;
}
.board-section .base {
  margin-bottom: 60px;
}
.board-section .grid {
  justify-content: center;
}
@media (min-width: 480px) {
  .board-section .grid {
    margin: 0 -20px;
  }
}
.board-section .grid-item {
  border-left: 2px solid #f1f1f1;
  margin-bottom: 60px;
  width: 350px;
}
.board-section .inner {
  padding: 0 20px;
}
.board-section .name {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #275694;
}
@media (min-width: 768px) {
  .board-section .name {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .board-section .name {
    font-size: 32px;
  }
}
.board-section .title {
  color: #60a0d6;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
}
.board-section .position {
  font-size: 17px;
  line-height: 1.3;
  color: #275694;
  margin-bottom: 10px;
}
.board-section .email a {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #60a0d6;
}
.board-section .email a:hover {
  color: #1b4681;
}
.board-section .email a .icon-envelope {
  font-size: 18px;
  display: inline-block;
  margin-right: 7px;
  vertical-align: bottom;
}

.our-schools {
  margin: 60px auto 80px;
}
.our-schools .school {
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  border: 1px solid #f1f1f1;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.2, 1.5);
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.2);
}
.our-schools .school:hover {
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.2);
}
.our-schools .school .grid-item.image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
@media (min-width: 900px) {
  .our-schools .school .grid-item.image {
    width: 25%;
  }
}
.our-schools .school .grid-item.image img {
  display: block;
  width: 100%;
}
@media (min-width: 900px) {
  .our-schools .school .grid-item.image img {
    display: none;
  }
}
.our-schools .school .grid-item.general {
  width: 100%;
}
@media (min-width: 900px) {
  .our-schools .school .grid-item.general {
    width: 40%;
  }
}
.our-schools .school .grid-item.general .inner {
  padding: 50px 20px;
}
@media (min-width: 900px) {
  .our-schools .school .grid-item.general .inner {
    padding: 50px 30px;
  }
}
.our-schools .school .grid-item.numbers {
  width: 100%;
}
@media (min-width: 900px) {
  .our-schools .school .grid-item.numbers {
    width: 35%;
  }
}
.our-schools .school .grid-item.numbers .inner {
  padding: 0px 20px 50px;
  text-align: center;
}
@media (min-width: 900px) {
  .our-schools .school .grid-item.numbers .inner {
    padding: 50px 30px;
    text-align: left;
  }
}
.our-schools .school .logo {
  display: block;
  max-width: 350px;
  width: 100%;
  margin: 0 auto 10px;
}
.our-schools .school .info {
  display: block;
  color: #275694;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.our-schools .school .info strong {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
}
.our-schools .school .info a {
  text-decoration: underline;
}
.our-schools .school .info a:hover {
  text-decoration: none;
}
.our-schools .school .button {
  margin-top: 20px;
}
.our-schools .school .stats {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #275694;
}
@media (min-width: 600px) {
  .our-schools .school .stats {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .our-schools .school .stats {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .our-schools .school .stats {
    font-size: 36px;
  }
}
.our-schools .school .stats span {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  color: #fcbb11;
  letter-spacing: -0.03em;
}
@media (min-width: 600px) {
  .our-schools .school .stats span {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .our-schools .school .stats span {
    font-size: 72px;
  }
}

.general-info .general {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .general-info .general {
    margin: 0;
    width: 444px;
  }
  .general-info .general .inner {
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .general-info .general {
    width: 500px;
  }
}
.general-info .general .info {
  display: flex;
  align-items: flex-start;
  color: #275694;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.general-info .general .info .icon {
  color: #fcbb11;
  width: 25px;
  display: inline-block;
  position: relative;
  top: 2px;
}
.general-info .general .info strong {
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
}
.general-info .general .info a {
  text-decoration: underline;
}
.general-info .general .info a:hover {
  text-decoration: none;
}
.general-info .general .stats {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #275694;
}
@media (min-width: 600px) {
  .general-info .general .stats {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .general-info .general .stats {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .general-info .general .stats {
    font-size: 36px;
  }
}
.general-info .general .stats span {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  color: #fcbb11;
  letter-spacing: -0.03em;
}
@media (min-width: 600px) {
  .general-info .general .stats span {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .general-info .general .stats span {
    font-size: 72px;
  }
}
.general-info .general .button {
  margin-top: 30px;
}
.general-info .mission {
  width: 100%;
}
@media (min-width: 900px) {
  .general-info .mission {
    width: calc(100% - 444px);
  }
}
@media (min-width: 1200px) {
  .general-info .mission {
    width: calc(100% - 500px);
  }
}

.values-academics.two-column {
  background: #f1f1f1;
  padding: 60px 0 20px;
  margin: 60px auto 30px;
}
@media (min-width: 900px) {
  .values-academics.two-column {
    margin: 60px auto;
    padding: 60px 0;
  }
}

#asl-storelocator .asl-wrapper .sl-main-cont .asl-panel-inner .sl-main-cont-box .sl-list-wrapper .sl-list .sl-item {
  padding: 20px !important;
}
#asl-storelocator h3::before {
  display: none;
}
#asl-storelocator h3 {
  padding: 0;
}
#asl-storelocator button:hover, #asl-storelocator input[type=button]:hover, #asl-storelocator input[type=reset]:hover, #asl-storelocator input[type=submit]:hover {
  box-shadow: none !important;
}
#asl-storelocator li.sl-grade {
  margin-bottom: 15px !important;
  color: #60a0d6 !important;
}
#asl-storelocator li.sl-grade span {
  text-transform: none !important;
  letter-spacing: 0.1em !important;
  font-weight: 700 !important;
  color: #60a0d6 !important;
}
#asl-storelocator .btn, #asl-storelocator .span-geo, #asl-storelocator .btn-block, #asl-storelocator .btn-default, #asl-storelocator .action, #asl-storelocator .directions, #asl-storelocator .zoomhere {
  background: #fcbb11 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  color: #1b4681 !important;
  border: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border-radius: 0 !important;
  text-decoration: none !important;
}
#asl-storelocator .btn:hover, #asl-storelocator .span-geo:hover, #asl-storelocator .btn-block:hover, #asl-storelocator .btn-default:hover, #asl-storelocator .action:hover, #asl-storelocator .directions:hover, #asl-storelocator .zoomhere:hover {
  color: #ffffff !important;
  background: #60a0d6 !important;
}

#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .sl-main-cont .asl-map .map-image .asl-map-canv .infoBox .infoWindow .infowindowContent .info-addr .info-addr-inner a:hover {
  color: #60a0d6;
}

#asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .sl-main-cont-box ul.sl-list li.sl-item .sl-addr-sec .addr-loc ul li span:hover, #asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .sl-main-cont-box ul.sl-list li.sl-item .sl-addr-sec .addr-loc ul li a:hover {
  color: #60a0d6;
}

#asl-storelocator.asl-cont .agile-modal-header h4 {
  display: none;
}

.page-search-results .page-hero {
  padding: 60px 0;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .page-search-results .page-hero {
    padding-top: 267px;
  }
}
.page-search-results .page-hero h4 {
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fcbb11;
  font-family: "Whitney SSm A", "Whitney SSm B";
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 600px) {
  .page-search-results .page-hero h4 {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.page-search-results .page-hero h1 {
  font-size: 45px;
  color: #ffffff;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
}
@media (min-width: 600px) {
  .page-search-results .page-hero h1 {
    font-size: 60px;
  }
}
@media (min-width: 900px) {
  .page-search-results .page-hero h1 {
    font-size: 70px;
  }
}
@media (min-width: 1200px) {
  .page-search-results .page-hero h1 {
    font-size: 84px;
  }
}
.page-search-results .result-list {
  margin: 30px auto;
}
.page-search-results .result-list .result {
  border-bottom: 2px solid #f1f1f1;
  padding: 40px 0 45px;
}
.page-search-results .result-list .result:last-of-type {
  border: none;
}
.page-search-results .result-list .result .post-title {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 15px;
  color: #275694;
  display: inline-block;
}
@media (min-width: 600px) {
  .page-search-results .result-list .result .post-title {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .page-search-results .result-list .result .post-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .page-search-results .result-list .result .post-title {
    font-size: 36px;
  }
}
.page-search-results .result-list .result .post-title:hover {
  color: #60a0d6;
}
.page-search-results .result-list .result p {
  line-height: 1.6;
  margin-bottom: 20px;
}
.page-search-results .result-list .result .link {
  color: #60a0d6;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .page-search-results .result-list .result .link {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  .page-search-results .result-list .result .link {
    font-size: 18px;
  }
}
.page-search-results .result-list .result .link:hover {
  color: #fcbb11;
}
.page-search-results .result-list .result .link .icon {
  color: #fcbb11;
  font-size: 18px;
  vertical-align: bottom;
}
@media (min-width: 600px) {
  .page-search-results .result-list .result .link .icon {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .page-search-results .result-list .result .link .icon {
    font-size: 22px;
  }
}
.page-search-results .nav-link-container .page-numbers:not(.next):not(.prev) {
  display: none !important;
}
.page-search-results .nav-link-container .nav-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
