@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(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  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 homeblog {
  0% {
    opacity: 0;
    -webkit-transform: translate(13px, 13px);
    -moz-transform: translate(13px, 13px);
    -ms-transform: translate(13px, 13px);
    -o-transform: translate(13px, 13px);
    transform: translate(13px, 13px);
    box-shadow: none;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    box-shadow: 13px 13px 0px 0px #5f5274;
  }
}
@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 .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;
  }
}
.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%;
  }
}

.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-center {
  text-align: center;
}

body, html {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  width: 100%;
  font-size: 18px;
}
@media (min-width: 600px) {
  body, html {
    font-size: 20px;
    scroll-behavior: smooth;
  }
}

::selection {
  background: #2372bd;
  color: #ffffff;
}

::-moz-selection {
  background: #2372bd;
  color: #ffffff;
}

.button {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #fab83a;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 20px;
  overflow: hidden;
  font-size: 16px;
  min-width: 180px;
}
@media (min-width: 600px) {
  .button {
    font-size: 18px;
    padding: 12px 20px;
    min-width: 200px;
  }
}
@media (min-width: 900px) {
  .button {
    font-size: 20px;
    min-width: 220px;
  }
}
.button:hover {
  background: #2372bd;
  color: #ffffff;
}

.page-base {
  margin: 60px auto 61px auto;
}
.page-base .grid {
  margin-top: 90px;
}
@media (min-width: 900px) {
  .page-base .grid {
    margin: 0 -40px;
  }
}
.page-base .grid-item:first-of-type {
  border-bottom: 2px solid #f4f4f4;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .page-base .grid-item:first-of-type {
    margin: 0;
    border: 0;
    border-right: 2px solid #f4f4f4;
  }
}
@media (min-width: 900px) {
  .page-base .grid-item .base {
    padding: 0 40px;
  }
}

.base.alt h2, .base.alt h3, .base.alt h4 {
  color: #fab83a;
}
.base.alt a:not(.button) {
  color: #ffffff;
}
.base.alt a:not(.button):hover {
  color: #fab83a;
}
.base.alt p, .base.alt li {
  color: #ffffff;
}
.base.alt p.large, .base.alt li.large {
  color: #ffffff;
}
.base.text-center hr {
  margin: 20px auto;
}
.base p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.base p.large {
  font-size: 20px;
  color: #084c91;
}
@media (min-width: 600px) {
  .base p.large {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .base p.large {
    font-size: 28px;
  }
}
.base .orange {
  color: #fab83a;
}
.base .blue {
  color: #084c91;
}
.base em {
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
}
.base strong {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
.base em strong,
.base strong em {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: italic;
}
.base hr {
  width: 90px;
  margin: 20px 0;
  border: none;
  height: 2px;
  background: #fab83a;
}
.base h2 {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 20px;
  color: #084c91;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .base h2 {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .base h2 {
    font-size: 48px;
  }
}
.base h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .base h3 {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .base h3 {
    font-size: 28px;
  }
}
.base h4 {
  font-size: 16px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-transform: uppercase;
  color: #084c91;
}
@media (min-width: 600px) {
  .base h4 {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .base h4 {
    font-size: 20px;
  }
}
.base blockquote {
  margin: 40px auto;
  border-left: 2px solid #fab83a;
  padding-left: 20px;
}
@media (min-width: 600px) {
  .base blockquote {
    padding-left: 30px;
  }
}
@media (min-width: 900px) {
  .base blockquote {
    margin-left: 40px;
  }
}
.base blockquote p {
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: #2372bd;
  line-height: 1.6;
}
@media (min-width: 600px) {
  .base blockquote p {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .base blockquote p {
    font-size: 28px;
  }
}
.base blockquote p:last-of-type {
  margin-bottom: 0px;
}
.base a:not(.button) {
  color: #2372bd;
  text-decoration: underline;
}
.base a:not(.button):hover {
  text-decoration: none;
}
.base ul {
  margin: 0 0 30px 0px;
  list-style: none;
}
@media (min-width: 900px) {
  .base ul {
    margin: 0 0 40px 30px;
  }
}
.base ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.5;
  font-size: 16px;
}
@media (min-width: 900px) {
  .base ul li {
    font-size: 18px;
  }
}
.base ul li::before {
  position: absolute;
  top: 1px;
  left: 8px;
  text-indent: -8px;
  content: "•";
  color: #fab83a;
}
.base ul li .button {
  margin-top: 20px;
}
.base ul li ul {
  margin-top: 7px;
  margin-bottom: 0px;
}
.base h4 + ol,
.base h4 + ul {
  margin-top: 20px;
}
.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: 15px;
  line-height: 1.5;
  font-size: 16px;
  padding-left: 20px;
}
@media (min-width: 900px) {
  .base ol li {
    font-size: 18px;
  }
}
.base ol li .button {
  margin-top: 20px;
}
.base ol li ul {
  margin: 10px 0 0 10px;
}
.base ol li ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.5;
  font-size: 16px;
}
@media (min-width: 900px) {
  .base ol li ul li {
    font-size: 18px;
  }
}
.base ol li ul li::before {
  position: absolute;
  font-size: 16px;
  top: 2px;
  left: 8px;
  text-indent: -12px;
  content: "•";
  color: #fab83a;
}
.base ol li strong {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
.base ol li::before {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  position: absolute;
  text-indent: -35px;
  counter-increment: a;
  content: counter(a) ".";
  color: #2372bd;
  font-size: 18px;
  top: -2px;
}
@media (min-width: 900px) {
  .base ol li::before {
    font-size: 20px;
  }
}
.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%;
}

header .alertbar {
  color: #ffffff;
  background: #084c91;
}
@media (max-width: 1023px) {
  header .alertbar .wrap1400.full {
    width: 100% !important;
  }
}
header .alertbar .grid {
  padding: 0;
}
@media (min-width: 1024px) {
  header .alertbar .grid {
    padding: 4px 0;
  }
}
header .alertbar .grid-item:first-of-type {
  order: 1;
  width: 50%;
  background: #084c91;
  padding: 0 10px;
}
@media (min-width: 1024px) {
  header .alertbar .grid-item:first-of-type {
    order: 0;
    width: 235px;
  }
}
header .alertbar .grid-item:last-of-type {
  order: 2;
  width: 50%;
  background: #084c91;
  padding: 0 10px;
  position: relative;
}
@media (min-width: 1024px) {
  header .alertbar .grid-item:last-of-type {
    order: 2;
    width: 235px;
  }
}
header .alertbar .grid-item:last-of-type .container {
  display: flex;
  justify-content: flex-end;
}
header .alertbar .alert {
  font-size: 14px;
  line-height: 1.2;
  color: #084c91;
  order: 0;
  background: #fab83a;
  width: 100%;
  padding: 10px 30px 10px 10px;
  position: relative;
}
@media (min-width: 600px) {
  header .alertbar .alert {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  header .alertbar .alert {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  header .alertbar .alert {
    padding: 0;
    background: #084c91;
    width: calc(100% - 470px);
    text-align: center;
    color: #ffffff;
  }
}
header .alertbar .alert #closealert {
  position: absolute;
  right: 10px;
  font-size: 20px;
  margin-top: -2px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
}
@media (min-width: 1024px) {
  header .alertbar .alert #closealert {
    display: none;
  }
}
header .alertbar .alert #closealert:hover {
  color: #084c91;
}
header .alertbar .alert a {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
header .alertbar .alert a:hover {
  color: #ffffff;
}
@media (min-width: 1024px) {
  header .alertbar .alert a:hover {
    color: #fab83a;
  }
}
header .custom-select {
  display: block;
  position: relative;
  background: #084c91;
  border: 1px solid transparent;
  max-width: 155px;
  margin: 0 auto 0 0;
}
@media (min-width: 600px) {
  header .custom-select {
    max-width: 180px;
  }
}
header .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 16px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #62a2d4;
}
@media (min-width: 600px) {
  header .custom-select:after {
    font-size: 20px;
    top: 8px;
  }
}
header select {
  font-size: 12px;
  color: #ffffff;
  border: none;
  background: #084c91;
  height: 40px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-appearance: none !important;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 600px) {
  header select {
    font-size: 14px;
  }
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  header {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
header:after {
  display: block;
}
header .social {
  display: flex;
  justify-content: flex-end;
}
header .social li {
  margin-left: 20px;
}
header .social a {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
header .social a:hover {
  color: #fab83a;
}
header .icon-search {
  margin-left: 20px;
  font-size: 16px;
  display: inline-block;
  margin-top: 2px;
  cursor: pointer;
}
header .icon-search:hover {
  color: #fab83a;
}
header .search-form {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
@media (min-width: 1024px) {
  header .search-form {
    right: 0;
  }
}
header .search-form.open {
  display: flex;
}
header .search-form .search-field {
  font-size: 14px;
  padding: 4px 8px;
  height: 34px;
  border: none;
  color: #000000;
}
@media (min-width: 1024px) {
  header .search-form .search-field {
    font-size: 16px;
    height: 38px;
  }
}
header .search-form button {
  background: #fab83a;
  color: #084c91;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .search-form button:hover {
  background: #62a2d4;
}
header .search-form button:hover .icon-search {
  color: #ffffff;
}
header .search-form button .icon-search {
  padding: 4px;
  margin: 0 auto;
}
header .main-navigation {
  width: 100%;
}
@media (min-width: 1025px) {
  header .main-navigation {
    width: 94%;
  }
}
header .grid {
  padding: 10px 0;
  align-items: center;
}
@media (min-width: 1025px) {
  header .grid {
    padding: 38px 0;
  }
}
header .grid .site-logo {
  display: none;
}
@media (min-width: 1025px) {
  header .grid .site-logo {
    display: block;
    width: 250px;
  }
}
@media (min-width: 1200px) {
  header .grid .site-logo {
    width: 300px;
  }
}
@media (min-width: 1400px) {
  header .grid .site-logo {
    width: 400px;
  }
}
header .grid .site-logo img {
  width: 100%;
}
@media (min-width: 1025px) {
  header .grid .mega-menu-wrap {
    width: calc(100% - 250px) !important;
  }
}
@media (min-width: 1200px) {
  header .grid .mega-menu-wrap {
    width: calc(100% - 300px) !important;
  }
}
@media (min-width: 1400px) {
  header .grid .mega-menu-wrap {
    width: calc(100% - 400px) !important;
  }
}

footer .footer-menu {
  background: #2372bd;
  padding: 35px 0 15px;
}
@media (min-width: 1024px) {
  footer .footer-menu {
    padding: 35px 0 5px;
  }
}
footer .footer-menu .menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-menu .menu li {
  margin: 0 15px 20px;
}
@media (min-width: 600px) {
  footer .footer-menu .menu li {
    margin: 0 20px 20px;
  }
}
@media (min-width: 1024px) {
  footer .footer-menu .menu li {
    margin: 0 30px 30px;
  }
}
footer .footer-menu .menu li:last-of-type a::after {
  display: none;
}
footer .footer-menu a {
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 600px) {
  footer .footer-menu a {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  footer .footer-menu a {
    font-size: 18px;
  }
}
footer .footer-menu a:hover {
  color: #fab83a;
}
footer .footer-menu a::after {
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 1px;
  content: "•";
  color: #fab83a;
}
@media (min-width: 600px) {
  footer .footer-menu a::after {
    right: -25px;
  }
}
@media (min-width: 1024px) {
  footer .footer-menu a::after {
    right: -36px;
  }
}
footer .schools {
  background: #084c91;
  padding: 60px 0;
}
footer .schools .school-menu {
  text-align: center;
  margin: 0 -20px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #2372bd;
}
@media (min-width: 1024px) {
  footer .schools .school-menu {
    text-align: left;
  }
}
footer .schools .grid-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  footer .schools .grid-item {
    width: 20%;
  }
}
footer .schools .grid-item > div {
  margin: 0 auto;
  position: relative;
}
footer .schools .grid-item > div::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fab83a;
}
@media (min-width: 1024px) {
  footer .schools .grid-item > div::after {
    display: none;
  }
}
footer .schools .grid-item > div.menu-kipp-gaston-container .menu {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
footer .schools .grid-item > div.menu-kipp-gaston-container::after {
  display: none;
}
footer .schools .grid-item .site-logo {
  display: block;
  width: 100%;
  padding: 0 20px;
  max-width: 200px;
  margin: 0 auto 40px;
}
@media (min-width: 1024px) {
  footer .schools .grid-item .site-logo {
    margin: 0;
    max-width: none;
  }
}
footer .schools .grid-item .menu {
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  footer .schools .grid-item .menu {
    padding: 0 20px;
    height: 100%;
    border-left: 2px solid #2372bd;
  }
}
footer .schools .grid-item .menu li {
  margin-bottom: 10px;
}
footer .schools .grid-item .menu li:first-of-type a {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  color: #fab83a;
  pointer-events: none;
}
footer .schools .grid-item .menu li:first-of-type a:hover {
  color: #62a2d4;
}
footer .schools .grid-item .menu a {
  color: #ffffff;
  font-size: 16px;
}
@media (min-width: 480px) {
  footer .schools .grid-item .menu a {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  footer .schools .grid-item .menu a {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  footer .schools .grid-item .menu a {
    font-size: 17px;
  }
}
footer .schools .grid-item .menu a:hover {
  color: #fab83a;
}
footer .contact-info {
  text-align: center;
  color: #ffffff;
}
footer .contact-info .address {
  margin-bottom: 20px;
  line-height: 1.4;
}
@media (min-width: 480px) {
  footer .contact-info .address {
    margin-bottom: 12px;
  }
}
footer .contact-info a {
  display: block;
  width: 100%;
  margin: 0 auto 10px;
}
@media (min-width: 480px) {
  footer .contact-info a {
    width: auto;
    margin: 0;
    display: inline-block;
  }
}
footer .contact-info a:hover {
  color: #fab83a;
}
footer .contact-info .bull {
  color: #fab83a;
  display: none;
  padding: 0 5px;
}
@media (min-width: 480px) {
  footer .contact-info .bull {
    display: inline-block;
  }
}
footer .contact-info .grid {
  justify-content: center;
}
footer .social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
footer .social li {
  margin: 0 10px;
}
footer .social a {
  font-size: 30px;
  color: #fab83a;
}
footer .social a:hover {
  color: #62a2d4;
}
footer .bottom {
  background: #dbdbdb;
  padding: 30px 0;
}
footer .bottom .copy {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #084c91;
  line-height: 1.4;
}
@media (min-width: 600px) {
  footer .bottom .copy {
    font-size: 14px;
  }
}
footer .bottom .copy a {
  border-bottom: 1px solid #084c91;
  display: inline-block;
}
footer .bottom .copy a:hover {
  border-bottom: 1px solid transparent;
}
footer .bottom .disclaimer p {
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
  color: #084c91;
}

.home-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.home-hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 900px) {
  .home-hero .overlay {
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.5) 100%);
  }
}
.home-hero video {
  position: absolute;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.home-hero .wrap1400 {
  position: relative;
  z-index: 3;
}
.home-hero .hero {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}
@media (min-width: 600px) {
  .home-hero .hero {
    padding: 80px 0;
  }
}
@media (min-width: 900px) {
  .home-hero .hero {
    padding: 100px 0;
    max-width: 600px;
    margin: 0;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .home-hero .hero {
    padding: 150px 0;
    max-width: 700px;
  }
}
.home-hero h1 {
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .home-hero h1 {
    font-size: 43px;
  }
}
@media (min-width: 900px) {
  .home-hero h1 {
    font-size: 55px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .home-hero h1 {
    font-size: 65px;
  }
}
.home-hero p {
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .home-hero p {
    font-size: 23px;
  }
}

.home-about {
  background: #084c91;
}
.home-about .base {
  padding: 60px 0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .home-about .base {
    padding: 70px 20px 40px 0;
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .home-about .base {
    padding: 70px 40px 40px 0;
  }
}
.home-about .base p {
  font-size: 18px;
}
@media (min-width: 900px) {
  .home-about .base p {
    font-size: 20px;
  }
}
.home-about .base .custom-select {
  display: block;
  position: relative;
  background: #f4f4f4;
  border: 1px solid transparent;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .home-about .base .custom-select {
    display: none;
  }
}
.home-about .base .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 9px;
  right: 10px;
  color: #fab83a;
}
.home-about .base select {
  font-size: 16px;
  color: #2372bd;
  border: none;
  background: transparent;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 600px) {
  .home-about .base select {
    font-size: 18px;
  }
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .home-about .base {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.home-about .base:after {
  display: block;
}
.home-about .grid-item:first-of-type {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .home-about .grid-item:first-of-type {
    width: calc(100% - 730px);
  }
}
@media (min-width: 1400px) {
  .home-about .grid-item:first-of-type {
    width: calc(100% - 930px);
  }
}
.home-about .grid-item:last-of-type {
  display: none;
}
@media (min-width: 1024px) {
  .home-about .grid-item:last-of-type {
    width: 730px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .home-about .grid-item:last-of-type {
    width: 930px;
  }
}
.home-about .grid-item .map {
  width: 100%;
  position: relative;
}

.home-callout2 {
  margin: 80px auto;
}
.home-callout2 .grid {
  background: #084c91;
}
.home-callout2 .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .home-callout2 .grid-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
  }
}
.home-callout2 .base {
  padding: 40px 20px 10px;
}
@media (min-width: 600px) {
  .home-callout2 .base {
    padding: 60px 30px 40px;
  }
}
@media (min-width: 1200px) {
  .home-callout2 .base {
    padding: 60px 40px 40px;
  }
}
.home-callout2 .base h2 {
  color: #ffffff;
}
.home-callout2 .photo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 900px) {
  .home-callout2 .photo img {
    display: none;
  }
}

.home-facts .inner {
  background: #f4f4f4;
  padding: 60px 0 90px;
}
@media (min-width: 900px) {
  .home-facts .inner {
    padding: 90px 0;
  }
}
.home-facts .base p {
  font-size: 18px;
}
@media (min-width: 900px) {
  .home-facts .base p {
    font-size: 20px;
  }
}

.facts .facts-slider {
  margin-top: -65px;
}
.facts .facts-slider .slick-list {
  max-width: 1400px;
  margin: 0 auto;
  width: 94%;
}
.facts .facts-slider .slick-next {
  right: 10px;
  top: 64px;
}
.facts .facts-slider .slick-prev {
  left: 10px;
  top: 64px;
}
.facts .inner {
  text-align: center;
  padding: 0 30px;
}
.facts img {
  width: 120px;
  margin: 0 auto 10px;
}
@media (min-width: 900px) {
  .facts img {
    width: 130px;
  }
}
.facts .number {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 10px;
  color: #084c91;
  display: block;
}
@media (min-width: 600px) {
  .facts .number {
    font-size: 43px;
  }
}
@media (min-width: 1200px) {
  .facts .number {
    font-size: 48px;
  }
}
.facts .label {
  display: block;
  color: #62a2d4;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .facts .label {
    font-size: 20px;
  }
}

.home-impact {
  margin: 60px auto 0;
  background: #084c91;
}
@media (min-width: 900px) {
  .home-impact {
    margin: 110px auto;
  }
}
.home-impact .intro {
  padding: 60px 20px 30px;
  text-align: center;
}
@media (min-width: 900px) {
  .home-impact .intro {
    text-align: left;
    padding: 90px 100px 60px 0;
  }
}
.home-impact .grid-item:last-of-type {
  display: flex;
  align-items: center;
  background: #2372bd;
}
@media (min-width: 900px) {
  .home-impact .grid-item:last-of-type {
    margin-bottom: -40px;
    margin-top: -40px;
  }
}
.home-impact .results-slider {
  background: #2372bd;
}
.home-impact .results-slider .inner {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 60px 20px 30px;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .home-impact .results-slider .inner {
    padding: 40px 20px 10px;
  }
}
.home-impact .results-slider h2 {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 20px;
  color: #fab83a;
}
@media (min-width: 600px) {
  .home-impact .results-slider h2 {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .home-impact .results-slider h2 {
    font-size: 48px;
  }
}
.home-impact .results-slider .icon {
  display: inline-block;
  width: 120px;
  margin: 0 auto 20px;
}
@media (min-width: 900px) {
  .home-impact .results-slider .icon {
    width: 130px;
  }
}
.home-impact .results-slider h4 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
  color: #fab83a;
}
@media (min-width: 600px) {
  .home-impact .results-slider h4 {
    font-size: 18px;
  }
}
.home-impact .results-slider p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px;
}
@media (min-width: 600px) {
  .home-impact .results-slider p {
    font-size: 20px;
  }
}

.twoColumn {
  margin: 0px auto;
}
@media (min-width: 900px) {
  .twoColumn {
    margin: 90px auto;
  }
}
.twoColumn .grid {
  flex-wrap: wrap-reverse;
}
.twoColumn .grid.reversed {
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .twoColumn .grid.reversed .content .base {
    margin-right: 0px;
    margin-left: -90px;
  }
}
.twoColumn .grid.reversed .content .base.dblue {
  background: #084c91;
}
.twoColumn .grid.reversed .content .base.gray {
  background: #f4f4f4;
}
@media (min-width: 900px) {
  .twoColumn .grid-item.content {
    width: calc(50% - 90px);
  }
}
.twoColumn .grid-item.content .base {
  margin: 0 auto;
  padding: 40px 20px 30px;
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}
@media (min-width: 600px) {
  .twoColumn .grid-item.content .base {
    padding: 70px 60px 50px;
  }
}
@media (min-width: 900px) {
  .twoColumn .grid-item.content .base {
    max-width: 700px;
    text-align: left;
    padding: 90px 40px 60px;
    margin: 60px 0 60px auto;
    margin-right: -90px;
  }
}
@media (min-width: 1200px) {
  .twoColumn .grid-item.content .base {
    padding: 90px 90px 60px;
  }
}
.twoColumn .grid-item.content .base.dblue {
  background: #084c91;
}
.twoColumn .grid-item.content .base.gray {
  background: #f4f4f4;
}
.twoColumn .grid-item.content .base h2 {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
}
@media (min-width: 600px) {
  .twoColumn .grid-item.content .base h2 {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .twoColumn .grid-item.content .base h2 {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .twoColumn .grid-item.content .base h2 {
    font-size: 48px;
  }
}
.twoColumn .grid-item.photo {
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}
@media (min-width: 480px) {
  .twoColumn .grid-item.photo {
    min-height: 350px;
  }
}
@media (min-width: 600px) {
  .twoColumn .grid-item.photo {
    min-height: 450px;
  }
}
@media (min-width: 900px) {
  .twoColumn .grid-item.photo {
    width: calc(50% + 90px);
  }
}

.home-events {
  margin: 60px auto 70px;
}
@media (min-width: 600px) {
  .home-events {
    margin: 60px auto 80px;
  }
}
.home-events .events-slider {
  margin-top: 60px;
}
.home-events .events-slider .slick-list {
  margin: 0 50px;
  overflow: hidden;
}
@media (min-width: 600px) {
  .home-events .events-slider .slick-list {
    border-right: 2px solid #dbdbdb;
  }
}
.home-events .events-slider .slick-next {
  right: 0px;
}
.home-events .events-slider .slick-prev {
  left: 0px;
}
.home-events .events-slider .slide {
  text-align: center;
}
@media (min-width: 600px) {
  .home-events .events-slider .slide {
    padding: 0 30px;
    border-left: 2px solid #dbdbdb;
    text-align: left;
  }
}
.home-events .events-slider .date {
  font-size: 30px;
  margin-bottom: 5px;
  line-height: 1.2;
  color: #62a2d4;
  text-transform: uppercase;
}
.home-events .events-slider .link h3 {
  display: block;
  margin-bottom: 10px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #084c91;
}
.home-events .events-slider .link h3:hover {
  color: #fab83a;
}
.home-events .events-slider p.exercpt {
  line-height: 1.4;
  font-size: 16px;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .home-events .events-slider p.exercpt {
    max-width: none;
    margin: 0;
  }
}
.home-events .more {
  display: block;
  margin-top: 30px;
}
@media (min-width: 600px) {
  .home-events .more {
    display: none;
  }
}
.home-events .more a {
  display: inline-block;
  margin: 0 auto;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 auto;
  font-size: 16px;
  color: #084c91;
}
.home-events .more a:hover {
  color: #fab83a;
}

.home-news .grid-item:first-of-type {
  background: #f4f4f4;
  padding: 60px 0;
}
@media (min-width: 900px) {
  .home-news .grid-item:first-of-type {
    padding: 90px 0;
  }
}
.home-news .grid-item:last-of-type {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 250px;
}
@media (min-width: 600px) {
  .home-news .grid-item:last-of-type {
    min-height: 450px;
  }
}
.home-news .news-list {
  max-width: 700px;
  margin: 0 auto;
  width: 94%;
  text-align: center;
}
@media (min-width: 900px) {
  .home-news .news-list {
    text-align: left;
    padding-right: 60px;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1200px) {
  .home-news .news-list {
    padding-right: 120px;
  }
}
.home-news .news-list h2 {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 20px;
  color: #084c91;
}
@media (min-width: 600px) {
  .home-news .news-list h2 {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .home-news .news-list h2 {
    font-size: 48px;
  }
}
.home-news .news-list li {
  padding: 30px 0;
  border-bottom: 2px solid #dbdbdb;
}
.home-news .news-list li:last-of-type {
  border-bottom: none;
  margin-bottom: 5px;
}
.home-news .news-list .date {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #62a2d4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-size: 16px;
}
@media (min-width: 600px) {
  .home-news .news-list .date {
    font-size: 18px;
  }
}
.home-news .news-list h3 a {
  display: inline-block;
  font-size: 18px;
  line-height: 1.3;
  color: #084c91;
}
@media (min-width: 600px) {
  .home-news .news-list h3 a {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .home-news .news-list h3 a {
    font-size: 24px;
  }
}
.home-news .news-list h3 a:hover {
  color: #fab83a;
}
.home-news .temp {
  margin-top: 40px;
}
.home-news .temp a {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  color: #084c91;
}
@media (min-width: 600px) {
  .home-news .temp a {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .home-news .temp a {
    font-size: 24px;
  }
}
.home-news .temp a:hover {
  color: #fab83a;
}
.home-news hr {
  border: none;
  height: 2px;
  width: 100%;
  background: #dbdbdb;
  margin: 30px 0;
}

#tribe-events #tribe-events-bar {
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}
#tribe-events #tribe-bar-form {
  background: #f4f4f4;
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#tribe-events #tribe-bar-form::before {
  display: none;
}
#tribe-events #tribe-bar-form.tribe-bar-collapse {
  display: block;
  padding: 15px 0px;
}
#tribe-events #tribe-bar-form.tribe-bar-collapse .tribe-bar-views-inner.tribe-clearfix {
  padding-top: 0px;
}
#tribe-events #tribe-bar-form.tribe-bar-collapse #tribe-bar-collapse-toggle {
  background: #084c91;
  color: #ffffff;
}
#tribe-events #tribe-bar-form.tribe-bar-collapse #tribe-bar-filters-wrap,
#tribe-events #tribe-bar-form.tribe-bar-collapse #tribe-bar-views {
  width: 100%;
}
#tribe-events #tribe-bar-form.tribe-bar-collapse .tribe-bar-filters-inner {
  padding: 15px;
}
#tribe-events #tribe-bar-form.tribe-bar-collapse .tribe-bar-submit, #tribe-events #tribe-bar-form.tribe-bar-collapse div {
  padding-right: 0;
  width: 100% !important;
}
#tribe-events #tribe-bar-form .tribe-bar-geoloc-filter {
  display: none;
}
#tribe-events #tribe-bar-form #tribe-bar-filters-wrap {
  width: calc(100% - 200px);
}
#tribe-events #tribe-bar-form #tribe-bar-views {
  width: 200px;
}
#tribe-events #tribe-bar-form .tribe-bar-filters-inner .tribe-bar-date-filter {
  margin-bottom: 0;
  padding: 15px 10px 15px 0;
  width: calc(50% - 75px);
}
@media (min-width: 900px) {
  #tribe-events #tribe-bar-form .tribe-bar-filters-inner .tribe-bar-date-filter {
    width: calc(50% - 100px);
  }
}
#tribe-events #tribe-bar-form .tribe-bar-filters-inner .tribe-bar-search-filter {
  margin-bottom: 0;
  padding: 15px 10px 15px 0;
  width: calc(50% - 75px);
}
@media (min-width: 900px) {
  #tribe-events #tribe-bar-form .tribe-bar-filters-inner .tribe-bar-search-filter {
    width: calc(50% - 100px);
  }
}
#tribe-events #tribe-bar-form .tribe-bar-filters-inner .tribe-bar-submit {
  margin: 0 0 0 auto;
  padding: 15px 0;
  width: 150px;
  float: none;
}
@media (min-width: 900px) {
  #tribe-events #tribe-bar-form .tribe-bar-filters-inner .tribe-bar-submit {
    width: 200px;
  }
}
#tribe-events #tribe-bar-form label {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #084c91;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
}
#tribe-events #tribe-bar-form .tribe-events-button {
  text-align: center;
  display: inline-block;
  text-transform: none;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #084c91;
  line-height: normal;
  background: #fab83a;
  margin: 0;
  height: 50px;
  min-width: 0px !important;
  font-size: 16px;
}
@media (min-width: 600px) {
  #tribe-events #tribe-bar-form .tribe-events-button {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  #tribe-events #tribe-bar-form .tribe-events-button {
    font-size: 20px;
  }
}
#tribe-events #tribe-bar-form .tribe-events-button:hover {
  background: #2372bd;
  color: #ffffff;
}
#tribe-events .tribe-bar-views-inner {
  background: #f4f4f4;
  padding: 0;
  height: 50px;
}
#tribe-events .tribe-bar-views-inner #tribe-bar-views-label {
  display: none !important;
}
#tribe-events .tribe-events-notices {
  padding: 10px 10px 12px;
  border-radius: 0px;
  background: #fab83a;
  border-color: #fab83a;
  color: #fab83a;
  color: #ffffff;
  text-align: center;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  margin: 30px auto;
  text-align: center;
  text-shadow: none;
}
#tribe-events #tribe-events-content:not(.tribe-events-single),
#tribe-events .the-events-calendar-category-list {
  width: 94% !important;
  max-width: 1400px;
  margin: 0 auto !important;
}
#tribe-events .the-events-calendar-category-list h4 {
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}
#tribe-events .the-events-calendar-category-list .custom-select {
  max-width: 300px;
}
#tribe-events .tribe-events-sub-nav {
  display: flex;
  justify-content: space-between;
}
#tribe-events .tribe-events-sub-nav .tribe-events-nav-right {
  margin-left: auto;
}
#tribe-events .tribe-events-sub-nav .tribe-events-nav-right a {
  font-size: 14px;
  color: #084c91;
}
#tribe-events .tribe-events-sub-nav .tribe-events-nav-right a:hover {
  color: #fab83a;
}
@media (min-width: 900px) {
  #tribe-events .tribe-events-sub-nav .tribe-events-nav-right a {
    font-size: 16px;
  }
}
#tribe-events .tribe-events-sub-nav .tribe-events-nav-right span {
  right: 5px;
  top: 7px;
}
#tribe-events .tribe-events-sub-nav .tribe-events-nav-left {
  margin-right: auto;
}
#tribe-events .tribe-events-sub-nav .tribe-events-nav-left a {
  font-size: 14px;
  color: #084c91;
}
#tribe-events .tribe-events-sub-nav .tribe-events-nav-left a:hover {
  color: #fab83a;
}
@media (min-width: 900px) {
  #tribe-events .tribe-events-sub-nav .tribe-events-nav-left a {
    font-size: 16px;
  }
}
#tribe-events .tribe-events-sub-nav .tribe-events-nav-left span {
  left: 5px;
  top: 7px;
}
#tribe-events .tribe-events-sub-nav li {
  width: 50%;
  margin: 0;
  padding: 0;
}
#tribe-events .tribe-events-sub-nav a {
  text-transform: uppercase;
  background: none;
  letter-spacing: 0.1em;
  font-size: 14px;
  padding: 0px;
  color: #fab83a;
}
#tribe-events .tribe-events-sub-nav a:hover {
  color: #084c91;
}
@media (min-width: 900px) {
  #tribe-events .tribe-events-sub-nav a {
    font-size: 20px;
  }
}
#tribe-events .tribe-events-sub-nav a span {
  font-size: 20px;
  line-height: 1;
}
@media (min-width: 900px) {
  #tribe-events .tribe-events-sub-nav a span {
    font-size: 26px;
  }
}
#tribe-events #tribe-events-header {
  margin: 30px auto 10px;
}
#tribe-events .tribe-events-calendar thead th {
  background: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
#tribe-events .tribe-events-calendar td {
  background: #ffffff;
}
#tribe-events .tribe-events-calendar td.mobile-active {
  background: #ffffff;
}
#tribe-events .tribe-events-calendar td.mobile-active:hover {
  background: #ffffff;
}
#tribe-events .tribe-events-calendar td.mobile-active::after {
  background-color: #dbdbdb;
}
#tribe-events #tribe-mobile-container .tribe-mobile-day-heading {
  display: none;
}
#tribe-events #tribe-mobile-container .url {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #fab83a;
  letter-spacing: normal;
  text-transform: none;
  background: transparent !important;
  font-size: 27px;
  line-height: 1.2;
}
#tribe-events #tribe-mobile-container .url:hover {
  color: #dbdbdb;
}
#tribe-events #tribe-mobile-container .tribe-events-event-schedule-details {
  display: block;
  width: 100%;
  margin: 10px auto;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #084c91;
}
@media (min-width: 600px) {
  #tribe-events #tribe-mobile-container .tribe-events-event-schedule-details {
    font-size: 15px;
  }
}
#tribe-events #tribe-mobile-container .tribe-events-event-image {
  margin: 20px auto;
  float: none;
  width: 100%;
}
#tribe-events #tribe-mobile-container .tribe-events-event-image a {
  background: transparent !important;
}
#tribe-events #tribe-mobile-container .tribe-event-description p {
  font-size: 16px;
  margin: 20px auto;
}
#tribe-events .tribe-events-calendar div[id*=tribe-events-daynum-] {
  background: #f4f4f4;
}
#tribe-events .tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-] {
  background: #2372bd;
  color: #ffffff;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
}
#tribe-events table .type-tribe_events {
  padding: 0px !important;
  margin: 0 5px !important;
}
#tribe-events .url {
  color: #084c91;
  background-image: none;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  opacity: 1;
}
#tribe-events #tribe-events-content .tribe-events-calendar td {
  border-color: #dbdbdb;
}
#tribe-events .tribe-events-calendar td.tribe-events-past div[id*=tribe-events-daynum-], #tribe-events .tribe-events-calendar td.tribe-events-past div[id*=tribe-events-daynum-] > a,
#tribe-events .tribe-events-calendar div[id*=tribe-events-daynum-], #tribe-events .tribe-events-calendar div[id*=tribe-events-daynum-] a {
  color: #084c91;
  font-size: 20px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
#tribe-events #tribe-events-content .tribe-events-calendar td.tribe-events-othermonth {
  background: #ffffff;
}
#tribe-events #tribe-events-content .tribe-events-calendar td:hover {
  box-shadow: none;
  background: #ffffff;
}
#tribe-events #tribe-events .tribe-events-button, #tribe-events #tribe-events .tribe-events-button:hover, #tribe-events #tribe_events_filters_wrapper input[type=submit], #tribe-events .tribe-events-button {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #fab83a;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 20px;
  overflow: hidden;
  font-size: 16px;
  min-width: 180px;
  border-radius: 0px;
}
@media (min-width: 600px) {
  #tribe-events #tribe-events .tribe-events-button, #tribe-events #tribe-events .tribe-events-button:hover, #tribe-events #tribe_events_filters_wrapper input[type=submit], #tribe-events .tribe-events-button {
    font-size: 18px;
    padding: 12px 20px;
    min-width: 220px;
  }
}
#tribe-events #tribe-events .tribe-events-button:hover, #tribe-events #tribe-events .tribe-events-button:hover:hover, #tribe-events #tribe_events_filters_wrapper input[type=submit]:hover, #tribe-events .tribe-events-button:hover {
  color: #ffffff;
  background: #2372bd;
}
#tribe-events .tribe-events-button:hover {
  background: #2372bd;
  color: #ffffff;
}
#tribe-events .tribe-bar-views-list {
  border-radius: 0 !important;
  background: #fab83a;
  padding: 0px;
}
#tribe-events .tribe-bar-views-list span {
  display: none;
}
#tribe-events #tribe-bar-views-toggle {
  color: #fab83a;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  background: #ffffff;
  padding-left: 30px;
  height: 100%;
  font-size: 16px !important;
}
#tribe-events #tribe-bar-views-toggle:hover {
  cursor: pointer;
}
#tribe-events #tribe-bar-views-toggle[aria-expanded=true]:after {
  margin-top: 0px;
  right: 15px;
  bottom: 0;
  position: absolute;
}
#tribe-events #tribe-bar-views-toggle span {
  position: absolute;
  left: 10px;
}
#tribe-events #tribe-bar-views-toggle:after {
  display: none;
}
#tribe-events #tribe-bar-views .tribe-bar-views-option {
  background: #fab83a;
  color: #ffffff;
  padding: 10px 15px;
  font-size: 13px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#tribe-events #tribe-bar-views .tribe-bar-views-option:hover {
  background: #2372bd;
  color: #ffffff;
}
#tribe-events #tribe-bar-views .tribe-bar-views-option.tribe-bar-active {
  color: #ffffff;
  background: #fab83a;
}
#tribe-events #tribe-bar-views .tribe-bar-views-option.tribe-bar-active:hover {
  background: #2372bd;
  color: #ffffff;
}
#tribe-events #tribe-bar-views .tribe-bar-views-option:last-of-type {
  border-radius: 0px !important;
}
#tribe-events .tribe-events-page-title {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #000000;
}
@media (min-width: 1024px) {
  #tribe-events .tribe-events-page-title {
    font-size: 32px;
  }
}
#tribe-events .tribe-events-page-title a {
  font-size: 15px;
  background: none;
  vertical-align: middle;
  color: #084c91;
  text-decoration: none !important;
}
@media (min-width: 1024px) {
  #tribe-events .tribe-events-page-title a {
    font-size: 20px;
  }
}
#tribe-events .tribe-events-page-title a:hover {
  text-decoration: none !important;
  color: #fab83a;
}
#tribe-events .recurring-info-tooltip, #tribe-events .tribe-events-calendar .tribe-events-tooltip, #tribe-events .tribe-events-shortcode.view-week .tribe-events-tooltip, #tribe-events .tribe-events-week .tribe-events-tooltip {
  padding: 20px;
}
#tribe-events .tribe-event-description p {
  font-size: 14px;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  #tribe-events .tribe-event-description p {
    font-size: 16px;
  }
}
#tribe-events h3 {
  color: #084c91;
  font-size: 16px;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 600px) {
  #tribe-events h3 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  #tribe-events h3 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  #tribe-events h3 {
    font-size: 28px;
  }
}
#tribe-events .tribe-events-tooltip .tribe-events-event-thumb {
  float: none;
  width: 100%;
}
#tribe-events .tribe-events-tooltip .tribe-events-event-thumb img {
  width: 100%;
  max-height: none;
  max-width: none;
  padding: 0;
}
#tribe-events #tribe-events-content .tribe-events-abbr {
  display: block;
  padding: 10px 0 0;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #fab83a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tribe-events-list .tribe-events-list-separator-month + .type-tribe_events.tribe-events-first {
  padding-top: 30px;
}
.tribe-events-list .tribe-events-list-separator-month + .type-tribe_events {
  border-top: none;
  padding-top: 30px;
}
.tribe-events-list .type-tribe_events {
  padding: 40px 0 20px;
  border-top: 2px solid #f4f4f4;
}
@media (min-width: 600px) {
  .tribe-events-list .type-tribe_events {
    padding: 60px 0 20px;
  }
}
.tribe-events-list .list-view-grid .grid-item:first-of-type {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .tribe-events-list .list-view-grid .grid-item:first-of-type {
    margin: 0;
    width: 285px;
  }
}
@media (min-width: 900px) {
  .tribe-events-list .list-view-grid .grid-item:first-of-type {
    width: 330px;
  }
}
.tribe-events-list .list-view-grid .grid-item:first-of-type .tribe-events-event-image {
  width: 100%;
  float: none;
  margin: 0;
  padding-top: 8px;
}
.tribe-events-list .list-view-grid .grid-item:first-of-type .tribe-events-event-image:hover img {
  border-color: #fab83a !important;
}
.tribe-events-list .list-view-grid .grid-item:first-of-type img {
  width: 100%;
  max-height: none;
  border-bottom: 7px solid #dbdbdb;
}
.tribe-events-list .list-view-grid .grid-item:last-of-type {
  width: 100%;
}
@media (min-width: 600px) {
  .tribe-events-list .list-view-grid .grid-item:last-of-type {
    width: calc(100% - 285px);
    padding-left: 20px;
  }
}
@media (min-width: 900px) {
  .tribe-events-list .list-view-grid .grid-item:last-of-type {
    width: calc(100% - 330px);
    padding-left: 30px;
  }
}
.tribe-events-list .tribe-events-loop {
  margin: 0 auto;
  max-width: 1100px !important;
}
.tribe-events-list .type-tribe_events {
  margin: 0 0 30px !important;
}
@media (min-width: 600px) {
  .tribe-events-list .type-tribe_events {
    margin: 0 0 60px !important;
  }
}
.tribe-events-list .tribe-events-list-separator-month::after {
  border-color: #f4f4f4;
  border-width: 2px;
}
.tribe-events-list .tribe-events-list-separator-month span {
  padding: 0 10px;
  color: #084c91;
  font-size: 24px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 600px) {
  .tribe-events-list .tribe-events-list-separator-month span {
    font-size: 27px;
  }
}
@media (min-width: 900px) {
  .tribe-events-list .tribe-events-list-separator-month span {
    font-size: 32px;
  }
}
.tribe-events-list .tribe-events-list-event-title {
  display: block;
  margin-bottom: 5px;
}
.tribe-events-list .tribe-events-list-event-title .tribe-event-url {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  background: none;
  color: #2372bd;
  display: inline-block;
  line-height: 1.2;
  font-size: 27px;
}
@media (min-width: 600px) {
  .tribe-events-list .tribe-events-list-event-title .tribe-event-url {
    font-size: 32px;
  }
}
@media (min-width: 900px) {
  .tribe-events-list .tribe-events-list-event-title .tribe-event-url {
    font-size: 36px;
  }
}
.tribe-events-list .tribe-events-list-event-title .tribe-event-url:hover {
  background: none;
  color: #fab83a;
}
.tribe-events-list .tribe-events-event-image:hover img {
  border-color: #fab83a;
}
.tribe-events-list .tribe-events-event-image a {
  background: none;
}
.tribe-events-list .tribe-events-event-image a:hover {
  background: none;
}
.tribe-events-list .tribe-events-event-meta {
  padding: 0px;
  border: none;
  background: transparent;
}
.tribe-events-list .tribe-event-schedule-details {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #084c91;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0px;
}
.tribe-events-list .tribe-events-venue-details {
  display: none;
}
.tribe-events-list .tribe-events-event-cost {
  display: none;
}
.tribe-events-list #tribe-events-footer {
  position: relative;
  margin-top: 90px;
  padding: 30px 0 20px !important;
  border-top: 2px solid #f4f4f4;
}
.tribe-events-list #tribe-events-footer .tribe-events-ical.tribe-events-button {
  z-index: 4;
  margin: 0 auto;
  float: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 200px;
  top: -22px;
  padding: 10px 20px;
  text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  background: #fab83a;
  color: #ffffff;
}
@media (min-width: 600px) {
  .tribe-events-list #tribe-events-footer .tribe-events-ical.tribe-events-button {
    font-size: 18px;
    padding: 12px 20px;
    min-width: 240px;
  }
}
.tribe-events-list #tribe-events-footer .tribe-events-ical.tribe-events-button:hover {
  background: #2372bd;
}
.tribe-events-list .tribe-events-read-more {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #084c91;
}
.tribe-events-list .tribe-events-read-more:hover {
  color: #fab83a;
}

.datepicker .table-condensed thead,
.datepicker .table-condensed tbody,
.datepicker .table-condensed tbody tr {
  width: 100%;
  display: table;
}
.datepicker.dropdown-menu {
  border-radius: 0 !important;
}
.datepicker .datepicker-switch, .datepicker .prev, .datepicker .next {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
.datepicker .datepicker-switch {
  font-size: 18px;
  color: #084c91;
}
.datepicker .datepicker-switch:hover {
  background: #f4f4f4;
}
.datepicker thead {
  display: block;
  margin-bottom: 10px;
}
.datepicker th {
  border-radius: 0;
}
.datepicker .prev, .datepicker .next {
  font-size: 27px;
  color: #fab83a;
  line-height: 0;
}
.datepicker .prev:hover, .datepicker .next:hover {
  background: #f4f4f4;
}
.datepicker table tr td span {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  border-radius: 0;
}
.datepicker .dow {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
.datepicker .day, .datepicker .month, .datepicker .year {
  border-radius: 0;
  box-shadow: none;
}
.datepicker .day:hover, .datepicker .month:hover, .datepicker .year:hover {
  background: #f4f4f4 !important;
  color: #fab83a !important;
}
.datepicker .day.focused, .datepicker .day.active, .datepicker .month.focused, .datepicker .month.active, .datepicker .year.focused, .datepicker .year.active {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #fab83a !important;
  background: #f4f4f4 !important;
}

#tribe-events {
  padding: 0px;
}
#tribe-events .noimage {
  max-width: 1000px;
  margin: 0 auto;
}
#tribe-events .tribe-events-single-event-description p {
  margin-bottom: 30px !important;
}
#tribe-events .single-post-title hr {
  margin: 0px auto 30px;
  width: 90px;
  height: 2px;
  background: #084c91;
  border: none;
}
#tribe-events .single-post-title .datetime {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fab83a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}
@media (min-width: 600px) {
  #tribe-events .single-post-title .datetime {
    font-size: 20px;
    letter-spacing: 0.15em;
  }
}
#tribe-events .tribe-events-single {
  margin: 60px auto;
}
#tribe-events .tribe-events-single .grid-item:first-of-type img {
  width: 100%;
}
#tribe-events .tribe-events-single .tribe-events-event-meta {
  border: none !important;
  background: transparent !important;
}
#tribe-events .tribe-events-single .tribe-events-event-meta .tribe-events-meta-group-venue, #tribe-events .tribe-events-single .tribe-events-event-meta .tribe-events-venue-map {
  display: block;
  width: 100%;
  margin: 0 auto !important;
  padding: 0px;
}
#tribe-events .tribe-events-single .tribe-events-single-section.tribe-events-event-meta.primary {
  display: none !important;
}
#tribe-events .tribe-events-single .grid {
  align-items: center;
}
#tribe-events .tribe-events-single .tribe-events-meta-group-other {
  display: none !important;
}
#tribe-events .tribe-events-single .tribe-events-venue-map {
  border: none !important;
}
#tribe-events .tribe-events-single .tribe-events-meta-group-venue {
  line-height: 1.2 !important;
  background: #f4f4f4;
  padding: 30px 20px !important;
  text-align: center;
  outline: 1px solid #dbdbdb;
  outline-offset: -10px;
}
#tribe-events .tribe-events-single .tribe-events-meta-group-venue h4 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #084c91;
  margin-bottom: 5px;
  margin-top: 20px;
  font-size: 16px;
}
#tribe-events .tribe-events-single .tribe-events-meta-group-venue h4:first-of-type {
  margin-top: 0px;
}
#tribe-events .tribe-events-single .tribe-events-meta-group-venue address.tribe-events-address {
  font-size: 16px;
}
#tribe-events .tribe-events-single .tribe-events-meta-group-venue dd {
  display: block;
  font-size: 16px;
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  #tribe-events .tribe-events-single .tribe-events-meta-group-venue dd {
    font-size: 18px;
  }
}
#tribe-events .tribe-events-single .tribe-events-meta-group-venue dd:last-of-type {
  margin-bottom: 0px !important;
}
#tribe-events .tribe-events-single .tribe-events-meta-group-venue a {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fab83a;
}
@media (min-width: 900px) {
  #tribe-events .tribe-events-single .tribe-events-meta-group-venue a {
    font-size: 18px;
  }
}
#tribe-events .tribe-events-single .tribe-events-meta-group-venue a:hover {
  color: #084c91;
}
@media (min-width: 900px) {
  #tribe-events .tribe-events-single .grid-item:last-of-type {
    padding-left: 60px;
  }
}
#tribe-events .tribe-events-back .button {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #fab83a;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 20px;
  overflow: hidden;
  font-size: 16px;
  min-width: 180px;
}
@media (min-width: 600px) {
  #tribe-events .tribe-events-back .button {
    font-size: 18px;
    padding: 12px 20px;
    min-width: 200px;
  }
}
@media (min-width: 900px) {
  #tribe-events .tribe-events-back .button {
    font-size: 20px;
    min-width: 220px;
  }
}
#tribe-events .tribe-events-back .button:hover {
  background: #2372bd;
  color: #ffffff;
}
#tribe-events .social-share {
  margin: 60px auto !important;
  position: relative;
}
#tribe-events .social-share .line {
  z-index: 1;
  left: 0;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #f4f4f4;
  top: 50px;
}
#tribe-events .social-share .ssba-classic-2 {
  width: max-content;
  margin: 0 auto;
}
#tribe-events .social-share .share {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #fab83a;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
#tribe-events .social-share .share-buttons {
  margin: 0 auto;
  width: max-content;
  background: #ffffff;
  position: relative;
  z-index: 2;
}
#tribe-events .social-share a:hover {
  opacity: 0.8;
}

#tribe_events_filters_wrapper {
  position: relative !important;
  float: none !important;
  margin-bottom: 0px !important;
}

.tribe_events_filter_control {
  display: none;
}

#tribe_events_filters_wrapper.tribe-events-filters-vertical {
  width: 100% !important;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical .tribe-events-filters-content {
  max-width: 1000px;
  margin: 40px auto 0;
  width: 94%;
  border: none;
  padding: 0px !important;
  float: none !important;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical .tribe-events-filters-label {
  display: none;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical .tribe-events-filters-legend {
  margin: 0 0 5px;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #ffffff;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form fieldset {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  #tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form fieldset {
    margin: 0;
    width: 50%;
    padding: 0 10px;
  }
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form .tribe-events-filters-group-heading {
  background: #ffffff;
  border: none;
  pointer-events: none;
  padding: 0px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #084c91;
  margin-bottom: 5px;
  font-size: 16px;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form .tribe-events-filters-group-heading::after {
  display: none;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form button.tribe-js-filters-reset {
  display: none !important;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form .tribe-events-filter-select {
  background: #ffffff;
  padding: 0px;
  border: none;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form .select2-container--default .select2-selection--single {
  border-radius: 0px;
  border: 1px solid #f4f4f4;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form .tribe-dropdown .select2-selection--single .select2-selection__rendered, #tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form .tribe-ea-dropdown .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
  height: 45px;
  background: #f4f4f4;
  color: #000000;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form span.select2-selection__arrow {
  height: 42px;
  right: 4px;
}
#tribe_events_filters_wrapper.tribe-events-filters-vertical #tribe_events_filters_form .tribe-dropdown .select2-selection--single .select2-selection__clear {
  line-height: 40px;
}

.tribe-dropdown.select2-container--open .select2-dropdown--below, .tribe-ea-dropdown.select2-container--open .select2-dropdown--below {
  border-radius: 0px !important;
  border: 1px solid #f4f4f4 !important;
}

.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #ffffff !important;
  background: #084c91 !important;
}

.tribe_events_filters_reset--desktop {
  display: none !important;
}

.tribe-filters-open .tribe-events-filters-vertical + #tribe-events-content, .tribe-filters-open .tribe-events-filters-vertical + .tribe-bar-disabled + #tribe-events-content {
  padding: 0px !important;
  float: none !important;
  clear: both;
}

.events-headline {
  margin: 60px auto;
}
.events-headline h1 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #2372bd;
  letter-spacing: -0.03em;
}
@media (min-width: 600px) {
  .events-headline h1 {
    font-size: 35px;
  }
}
@media (min-width: 900px) {
  .events-headline h1 {
    font-size: 55px;
  }
}
@media (min-width: 1024px) {
  .events-headline h1 {
    font-size: 72px;
  }
}

.events-calendar .single-post-title {
  margin: 0px auto 30px;
  position: relative;
}
@media (min-width: 600px) {
  .events-calendar .single-post-title {
    margin: 90px auto 30px;
  }
}
.events-calendar .single-post-title .wrap1200 {
  position: relative;
  z-index: 3;
}
.events-calendar .single-post-title .title {
  margin-bottom: 30px;
  position: relative;
}
.events-calendar .single-post-title .title .line {
  position: absolute;
  z-index: 1;
  background: #f4f4f4;
  top: 50%;
  height: 2px;
  width: 100%;
  left: 0;
}
.events-calendar .single-post-title .title span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 auto;
  display: inline-block;
  padding: 0 12px;
  background: #ffffff;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 2;
  color: #62a2d4;
  font-size: 15px;
}
@media (min-width: 600px) {
  .events-calendar .single-post-title .title span {
    padding: 0 20px;
    font-size: 18px;
  }
}
.events-calendar .single-post-title h1 {
  font-size: 27px;
  line-height: 1.2;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #084c91;
}
@media (min-width: 600px) {
  .events-calendar .single-post-title h1 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .events-calendar .single-post-title h1 {
    font-size: 43px;
  }
}
@media (min-width: 1400px) {
  .events-calendar .single-post-title h1 {
    font-size: 48px;
  }
}
.events-calendar .social-share {
  margin: 60px auto;
}
.events-calendar .social-share .share-buttons .text {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #fab83a;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}

.page-template-search .hero h1 span {
  font-size: 16px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
@media (min-width: 600px) {
  .page-template-search .hero h1 span {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .page-template-search .hero h1 span {
    font-size: 24px;
  }
}
.page-template-search .post-list {
  margin: 60px auto 0;
}
.page-template-search .post-list .grid {
  justify-content: flex-start;
  margin: 0 -10px;
}
.page-template-search .post-list .grid-item {
  margin-bottom: 60px;
  width: 100%;
}
@media (min-width: 600px) {
  .page-template-search .post-list .grid-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .page-template-search .post-list .grid-item {
    width: 33.3333333%;
  }
}
.page-template-search .post-list .container {
  height: 100%;
  position: relative;
  border: 1px solid #f4f4f4;
  border-bottom: 10px solid #f4f4f4;
  padding: 40px 20px 80px;
  margin: 0 10px;
}
@media (min-width: 600px) {
  .page-template-search .post-list .container {
    padding: 40px 30px 80px;
  }
}
.page-template-search .post-list .post-label {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  padding: 4px 4px 4px 30px;
  position: relative;
  left: -20px;
  background: #2372bd;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 10px;
  display: inline-block;
  width: 200px;
}
@media (min-width: 600px) {
  .page-template-search .post-list .post-label {
    left: -30px;
  }
}
.page-template-search .post-list p {
  line-height: 1.6;
}
.page-template-search .post-list p .readmore {
  display: none !important;
}
.page-template-search .post-list hr {
  margin: 10px 0 20px;
  width: 90px;
  height: 2px;
  border: none;
  background: #fab83a;
}
.page-template-search .post-list a h3 {
  font-size: 24px;
  color: #084c91;
  margin: 20px auto;
  line-height: 1.2;
  color: #084c91;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .page-template-search .post-list a h3 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .page-template-search .post-list a h3 {
    font-size: 32px;
  }
}
.page-template-search .post-list a h3:hover {
  color: #fab83a;
}
.page-template-search .post-list .link {
  position: absolute;
  bottom: 30px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  display: block;
  width: max-content;
  color: #2372bd;
  line-height: 1.2;
}
.page-template-search .post-list .link:hover {
  color: #fab83a;
}
.page-template-search .nav-link-container .nav-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-template-search .nav-link-container .page-numbers:not(.next):not(.prev) {
  display: none !important;
}
.page-template-search .nav-link-container .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;
  content: "\e90a";
  line-height: normal;
  color: #fab83a;
}
.page-template-search .nav-link-container .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;
  content: "\e909";
  line-height: normal;
  color: #fab83a;
}

.page-id-35 .below {
  background: #084c91;
  padding: 80px 0 50px;
  margin-bottom: 60px;
}

.graphs-intro {
  margin: 60px auto;
}
@media (min-width: 1024px) {
  .graphs-intro {
    margin: 80px auto 60px;
  }
}

.chart {
  margin: 0 auto 80px;
}
@media (min-width: 480px) {
  .chart {
    margin: 0 auto 120px;
  }
}
.chart h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .chart h2 {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .chart h2 {
    font-size: 28px;
  }
}
.chart .inner {
  padding: 30px 10px 0px;
  background: #f4f4f4;
  position: relative;
}
@media (min-width: 768px) {
  .chart .inner {
    padding: 30px 30px 0px;
  }
}
.chart .inner .legend-container {
  padding: 0 0 10px;
  position: relative;
  display: block;
}
@media (min-width: 1024px) {
  .chart .inner .legend-container {
    display: none;
  }
}
.chart .inner .legend {
  text-align: left;
}
.chart .inner .legend .inside {
  border: 2px solid #dbdbdb;
  position: relative;
  z-index: 1;
  padding: 20px 10px 15px;
  font-size: 12px;
  color: #084c91;
  text-align: left;
  width: max-content;
}
@media (min-width: 480px) {
  .chart .inner .legend .inside {
    font-size: 14px;
    padding: 20px 20px 10px;
  }
}
@media (min-width: 768px) {
  .chart .inner .legend .inside {
    font-size: 16px;
  }
}
.chart .inner .legend .inside li {
  margin-bottom: 5px;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .chart .inner .legend .inside li {
    margin-bottom: 10px;
  }
}
.chart .inner .legend .inside .color {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 5px;
}
@media (min-width: 480px) {
  .chart .inner .legend .inside .color {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 768px) {
  .chart .inner .legend .inside .color {
    width: 14px;
    height: 14px;
  }
}
.chart .inner .legend .inside strong {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
.chart .inner .legend .inside em {
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
}
.chart .inner .legend h4 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  position: relative;
  color: #084c91;
  text-transform: uppercase;
  background: #f4f4f4;
  display: inline-block;
  width: max-content;
  padding: 0 4px;
  font-size: 12px;
  z-index: 2;
  top: 8px;
  left: 10px;
  letter-spacing: 0.1em;
}
.chart .grid {
  justify-content: center;
  flex-wrap: nowrap;
}
.chart .grid-item {
  width: 40px;
  margin: 0 5px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 480px) {
  .chart .grid-item {
    width: 60px;
    margin: 0 10px;
  }
}
@media (min-width: 768px) {
  .chart .grid-item {
    width: 90px;
  }
}
@media (min-width: 1024px) {
  .chart .grid-item {
    width: 140px;
  }
}
@media (min-width: 1200px) {
  .chart .grid-item {
    width: 152px;
  }
}
@media (min-width: 1400px) {
  .chart .grid-item {
    margin: 0 30px;
  }
}
.chart .graph {
  height: 385px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.chart .graph .bar {
  width: 100%;
  padding: 10px 0;
  transition: all 1.2s cubic-bezier(0.68, -0.3, 0.265, 1.3);
  transform-origin: bottom;
}
@media (min-width: 768px) {
  .chart .graph .bar {
    padding: 20px 0;
  }
}
.chart .graph .scroll {
  opacity: 0;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
}
.chart .graph .scroll.is-visible {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.chart .graph .percent {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: -0.03em;
}
@media (min-width: 480px) {
  .chart .graph .percent {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .chart .graph .percent {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .chart .graph .percent {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .chart .graph .percent {
    font-size: 36px;
  }
}
.chart .info {
  margin: 20px auto;
  display: none;
}
@media (min-width: 1024px) {
  .chart .info {
    display: block;
  }
}
.chart .info .label {
  display: block;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: #084c91;
  font-size: 16px;
}
@media (min-width: 1400px) {
  .chart .info .label {
    font-size: 18px;
  }
}
.chart .info .grade {
  display: block;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #084c91;
}
.chart .icon {
  width: 40px;
  margin: 0 auto;
  margin-bottom: -20px;
  margin-top: auto;
}
@media (min-width: 480px) {
  .chart .icon {
    width: 60px;
    margin-bottom: -30px;
  }
}
.chart .mobile-grade {
  display: block;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #084c91;
  margin: 10px auto;
  font-size: 14px;
}
@media (min-width: 480px) {
  .chart .mobile-grade {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .chart .mobile-grade {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .chart .mobile-grade {
    display: none;
  }
}

.non-critical-metrics {
  margin: 60px auto 30px;
}
@media (min-width: 600px) {
  .non-critical-metrics {
    margin: 60px auto;
  }
}
.non-critical-metrics .base {
  margin-bottom: 40px;
}
.non-critical-metrics .grid {
  margin: 0 -20px;
  justify-content: center;
}
.non-critical-metrics .grid-item {
  margin: 0 0 60px;
  max-width: 450px;
  width: 100%;
  text-align: center;
}
@media (min-width: 600px) {
  .non-critical-metrics .grid-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .non-critical-metrics .grid-item {
    width: 25%;
  }
}
.non-critical-metrics .grid-item .inner {
  padding: 0 20px;
}
.non-critical-metrics .grid-item .number {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #084c91;
  letter-spacing: -0.03em;
  font-size: 30px;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .non-critical-metrics .grid-item .number {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .non-critical-metrics .grid-item .number {
    font-size: 48px;
  }
}
.non-critical-metrics .grid-item .label {
  text-transform: uppercase;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #62a2d4;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .non-critical-metrics .grid-item .label {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .non-critical-metrics .grid-item .label {
    font-size: 20px;
  }
}
.non-critical-metrics .grid-item p {
  line-height: 1.4;
}
.non-critical-metrics .icon {
  width: 90px;
  margin: 0 auto 5px;
}
@media (min-width: 600px) {
  .non-critical-metrics .icon {
    width: 110px;
  }
}

.below.dblue {
  background: #084c91;
  padding: 60px 0 40px;
  margin-bottom: 60px;
  position: relative;
}
@media (min-width: 900px) {
  .below.dblue {
    padding: 80px 0 50px;
  }
}

.process {
  margin: 60px auto 20px;
}
@media (min-width: 900px) {
  .process {
    margin: 60px auto;
  }
}
.process .wrap1100 {
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .process .wrap1100 {
    margin-bottom: 70px;
  }
}
.process .blocks {
  position: relative;
}
.process .blocks .wrap1400 {
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .process .blocks .grid {
    margin: 0 -30px;
  }
}
.process .blocks .grid-item {
  margin-bottom: 60px;
}
.process .blocks .grid-item .inner {
  background: #f4f4f4;
  height: 100%;
}
@media (min-width: 900px) {
  .process .blocks .grid-item .inner {
    margin: 0 30px;
  }
}
.process .blocks .grid-item .container {
  padding: 30px 10px 10px;
  background: #f4f4f4;
}
.process .blocks .grid-item .img {
  position: relative;
  margin-bottom: -3px;
}
.process .blocks .grid-item .img .label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  background: rgba(8, 76, 145, 0.8);
  color: #ffffff;
  z-index: 2;
  display: block;
  padding: 10px 5px;
}
@media (min-width: 600px) {
  .process .blocks .grid-item .img .label {
    padding: 15px 5px;
  }
}
.process .blocks .grid-item img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.lottery {
  background: #084c91;
  padding: 60px 0 10px;
}
@media (min-width: 900px) {
  .lottery {
    padding: 80px 0 70px;
  }
}
@media (min-width: 900px) {
  .lottery .grid {
    margin: 0 -30px;
  }
}
@media (min-width: 1400px) {
  .lottery .grid {
    margin: 0 -50px;
  }
}
.lottery .grid-item {
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .lottery .grid-item {
    margin-bottom: 0;
    padding: 0 30px;
  }
  .lottery .grid-item:first-of-type {
    border-right: 2px solid #f4f4f4;
  }
}
@media (min-width: 1400px) {
  .lottery .grid-item {
    padding: 0 50px;
  }
}

.page-id-41 .twoColumn, .page-id-1598 .twoColumn {
  background: #f4f4f4;
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
  margin: 0 auto 90px;
}
@media (min-width: 900px) {
  .page-id-41 .twoColumn, .page-id-1598 .twoColumn {
    padding: 90px 0 30px;
    margin: 0px auto 120px;
  }
}
.page-id-41 .twoColumn .grid, .page-id-1598 .twoColumn .grid {
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .page-id-41 .twoColumn .grid .grid-item:first-of-type, .page-id-1598 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 500px);
  }
}
@media (min-width: 1200px) {
  .page-id-41 .twoColumn .grid .grid-item:first-of-type, .page-id-1598 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 645px);
  }
}
.page-id-41 .twoColumn .grid .grid-item:last-of-type, .page-id-1598 .twoColumn .grid .grid-item:last-of-type {
  margin: 0 auto;
}
@media (min-width: 900px) {
  .page-id-41 .twoColumn .grid .grid-item:last-of-type, .page-id-1598 .twoColumn .grid .grid-item:last-of-type {
    width: 500px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .page-id-41 .twoColumn .grid .grid-item:last-of-type, .page-id-1598 .twoColumn .grid .grid-item:last-of-type {
    width: 645px;
  }
}
.page-id-41 .twoColumn .grid .grid-item:last-of-type img, .page-id-1598 .twoColumn .grid .grid-item:last-of-type img {
  width: 100%;
  height: auto;
}
.page-id-41 .twoColumn .grid .base, .page-id-1598 .twoColumn .grid .base {
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .page-id-41 .twoColumn .grid .base, .page-id-1598 .twoColumn .grid .base {
    padding: 0;
    padding-right: 60px;
  }
}

.page-id-1824 .twoColumn .grid, .page-id-1882 .twoColumn .grid {
  margin: 60px auto 0;
  flex-wrap: wrap;
}
.page-id-1824 .twoColumn .grid .grid-item, .page-id-1882 .twoColumn .grid .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .page-id-1824 .twoColumn .grid .grid-item, .page-id-1882 .twoColumn .grid .grid-item {
    width: 50%;
  }
}
.page-id-1824 .twoColumn .grid .grid-item:last-of-type .base, .page-id-1882 .twoColumn .grid .grid-item:last-of-type .base {
  margin-top: 30px;
}
@media (min-width: 900px) {
  .page-id-1824 .twoColumn .grid .grid-item:last-of-type .base, .page-id-1882 .twoColumn .grid .grid-item:last-of-type .base {
    margin: 0;
    padding-left: 40px;
  }
}
.page-id-1824 .twoColumn .grid .grid-item:first-of-type img, .page-id-1882 .twoColumn .grid .grid-item:first-of-type img {
  width: 100%;
  height: auto;
}
.page-id-1824 .below, .page-id-1882 .below {
  margin: 30px auto 60px;
}

.page-contact {
  margin: 60px auto;
}
.page-contact .sidebar {
  width: 100%;
  text-align: center;
}
@media (min-width: 900px) {
  .page-contact .sidebar {
    width: 400px;
    padding-right: 30px;
    border-right: 2px solid #f4f4f4;
  }
}
@media (min-width: 1200px) {
  .page-contact .sidebar {
    padding-right: 60px;
    width: 500px;
  }
}
.page-contact .sidebar .region {
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.page-contact .sidebar .region .line {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
  height: 2px;
  background: #f4f4f4;
}
.page-contact .sidebar .region h4 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #084c91;
  display: inline-block;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  background: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media (min-width: 600px) {
  .page-contact .sidebar .region h4 {
    font-size: 18px;
  }
}
.page-contact .sidebar .inner {
  margin-bottom: 40px;
}
.page-contact .sidebar .headquarters {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #62a2d4;
}
@media (min-width: 600px) {
  .page-contact .sidebar .headquarters {
    font-size: 24px;
  }
}
.page-contact .sidebar .bull {
  display: inline-block;
  color: #62a2d4;
  margin: 0 5px;
}
.page-contact .sidebar .school {
  margin-top: 20px;
}
.page-contact .sidebar .school a {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #62a2d4;
}
@media (min-width: 600px) {
  .page-contact .sidebar .school a {
    font-size: 24px;
  }
}
.page-contact .sidebar .school a:hover {
  color: #2372bd;
  text-decoration: none;
}
.page-contact .sidebar p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.page-contact .sidebar p a {
  color: #084c91;
}
.page-contact .sidebar p a:hover {
  color: #2372bd;
  text-decoration: underline;
}
.page-contact .contact {
  width: 100%;
}
@media (min-width: 900px) {
  .page-contact .contact {
    padding-left: 30px;
    width: calc(100% - 400px);
  }
}
@media (min-width: 1200px) {
  .page-contact .contact {
    padding-left: 60px;
    width: calc(100% - 500px);
  }
}
.page-contact .acf-map {
  height: 400px;
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 600px) {
  .page-contact .acf-map {
    height: 600px;
  }
}
@media (min-width: 900px) {
  .page-contact .acf-map {
    margin-bottom: 80px;
  }
}
.page-contact .acf-map .acf-container {
  padding: 10px;
}
.page-contact .acf-map .acf-container h4 a {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #2372bd;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 10px;
  font-size: 18px;
}
@media (min-width: 600px) {
  .page-contact .acf-map .acf-container h4 a {
    font-size: 20px;
  }
}
.page-contact .acf-map .acf-container h4 a:hover {
  color: #fab83a;
}
.page-contact .acf-map .acf-container .address {
  line-height: 1.4;
  font-size: 16px;
  margin-bottom: 10px;
}
.page-contact .acf-map .acf-container .directions {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #084c91;
  font-size: 12px;
}
@media (min-width: 600px) {
  .page-contact .acf-map .acf-container .directions {
    font-size: 14px;
  }
}
.page-contact .acf-map .acf-container .directions:hover {
  color: #fab83a;
}

.post-index .post-list {
  margin: 0 -10px;
}
@media (min-width: 1400px) {
  .post-index .post-list {
    margin: 0 -25px;
  }
}
.post-index .post-list .grid-item.w-33 {
  margin-bottom: 80px;
  width: 100%;
}
@media (min-width: 600px) {
  .post-index .post-list .grid-item.w-33 {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .post-index .post-list .grid-item.w-33 {
    width: 33.3333333%;
  }
}
.post-index .post-list .post {
  padding: 0 10px;
}
@media (min-width: 1400px) {
  .post-index .post-list .post {
    padding: 0 25px;
  }
}
.post-index #firstPost {
  margin-bottom: 80px;
}
@media (min-width: 900px) {
  .post-index #firstPost {
    margin-bottom: 120px;
  }
}
.post-index #firstPost .inner {
  background: #f4f4f4;
  padding: 60px 20px;
  margin: 0 auto;
  margin-top: -20px;
  position: relative;
  z-index: 4;
}
@media (min-width: 480px) {
  .post-index #firstPost .inner {
    padding: 60px 30px;
  }
}
@media (min-width: 600px) {
  .post-index #firstPost .inner {
    padding: 60px;
    margin: 0 20px;
    margin-top: -60px;
  }
}
@media (min-width: 900px) {
  .post-index #firstPost .inner {
    margin: 0 60px;
    margin-top: -90px;
  }
}
.post-index #firstPost .inner .button {
  position: absolute;
  width: 220px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -23px;
}
.post-index #firstPost .inner .excerpt {
  margin-bottom: 0px;
  font-size: 16px;
}
@media (min-width: 600px) {
  .post-index #firstPost .inner .excerpt {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .post-index #firstPost .inner .excerpt {
    font-size: 20px;
  }
}
.post-index #firstPost h2 {
  margin: 0 auto 20px;
  font-size: 27px;
  line-height: 1.2;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #084c91;
}
@media (min-width: 600px) {
  .post-index #firstPost h2 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .post-index #firstPost h2 {
    font-size: 43px;
  }
}
@media (min-width: 1400px) {
  .post-index #firstPost h2 {
    font-size: 48px;
  }
}
.post-index #firstPost h2:hover {
  color: #fab83a;
}
.post-index #firstPost .date {
  position: relative;
  margin: 20px auto 40px;
  border-bottom: none;
  padding-bottom: 0;
}
.post-index #firstPost .date span {
  background: #ffffff;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 10px;
  margin: 0 auto;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #62a2d4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
}
@media (min-width: 600px) {
  .post-index #firstPost .date span {
    font-size: 18px;
  }
}
.post-index #firstPost .date .line {
  position: absolute;
  display: block;
  height: 2px;
  background: #f4f4f4;
  width: 100%;
  top: 50%;
}
.post-index .excerpt {
  max-width: 950px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.post-index .blog-thumbnail {
  display: block;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.post-index .blog-thumbnail:hover .overlay {
  opacity: 1;
}
.post-index .blog-thumbnail:hover img {
  transform: scale(1.1);
}
.post-index .blog-thumbnail .overlay {
  transition: ease-in-out 0.2s;
  opacity: 0;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #2372bd;
  font-size: 14px;
  background: rgba(8, 76, 145, 0.9);
  color: #ffffff;
}
@media (min-width: 600px) {
  .post-index .blog-thumbnail .overlay {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .post-index .blog-thumbnail .overlay {
    font-size: 24px;
  }
}
.post-index .blog-thumbnail img {
  margin-bottom: -3px;
  transition: ease-in 0.4s;
  width: 100%;
}
.post-index .date {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #62a2d4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #f4f4f4;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}
.post-index .post-title:hover h2 {
  color: #fab83a;
}
.post-index .post-title h2 {
  font-size: 22px;
  line-height: 1.2;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #084c91;
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  .post-index .post-title h2 {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .post-index .post-title h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }
}
.post-index .post-title h2:hover {
  color: #fab83a;
}

.nav-link-container {
  padding: 30px 0 35px;
  position: relative;
  border-top: 2px solid #2372bd;
}
.nav-link-container a {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #084c91;
  font-size: 18px;
  display: flex;
  letter-spacing: -0.03em;
}
@media (min-width: 600px) {
  .nav-link-container a {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .nav-link-container a {
    font-size: 28px;
  }
}
.nav-link-container a:hover {
  color: #fab83a;
}
.nav-link-container a .icon {
  line-height: normal;
  color: #fab83a;
}

.single-post-title {
  margin: 0px auto 30px;
  position: relative;
}
.single-post-title .category {
  margin-bottom: 20px;
}
.single-post-title .category strong {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: italic;
  color: #2372bd;
}
.single-post-title .category a {
  color: #2372bd;
}
.single-post-title .category a:hover {
  text-decoration: underline;
}
.single-post-title .featured-image img {
  width: 100%;
  border: 1px solid #dbdbdb;
}
.single-post-title .wrap1200 {
  position: relative;
  z-index: 3;
}
.single-post-title .date {
  position: relative;
  margin: 20px auto 40px;
  border-bottom: none;
  padding-bottom: 0;
}
.single-post-title .date span {
  background: #ffffff;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 10px;
  margin: 0 auto;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #62a2d4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
}
@media (min-width: 600px) {
  .single-post-title .date span {
    font-size: 18px;
  }
}
.single-post-title .date .line {
  position: absolute;
  display: block;
  height: 2px;
  background: #f4f4f4;
  width: 100%;
  top: 50%;
}
.single-post-title h1 {
  margin: 0 auto 20px;
  font-size: 27px;
  line-height: 1.2;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #084c91;
}
@media (min-width: 600px) {
  .single-post-title h1 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .single-post-title h1 {
    font-size: 43px;
  }
}
@media (min-width: 1400px) {
  .single-post-title h1 {
    font-size: 48px;
  }
}

.single-post .base {
  max-width: 900px;
  margin: 0 auto;
}
.single-post .base img {
  width: 100%;
  margin: 30px auto;
}
.single-post .base table {
  width: 100%;
  text-align: center;
}
.single-post .base table img {
  width: auto;
}
.single-post .social-share {
  margin: 60px auto;
}
.single-post .social-share .share-buttons .text {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #fab83a;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}

.blog-sidebar {
  margin-bottom: 60px;
}
.blog-sidebar .wrap1400 {
  border-bottom: 2px solid #2372bd;
}
.blog-sidebar .grid {
  padding: 60px 0;
}
.blog-sidebar .grid-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog-sidebar .grid-item:first-of-type {
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 1024px) {
  .blog-sidebar .grid-item:first-of-type {
    width: 50%;
    margin: 0;
    padding: 0 10px;
    text-align: left;
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .blog-sidebar .grid-item:first-of-type {
    padding: 0 20px;
  }
}
.blog-sidebar .grid-item:last-of-type {
  justify-content: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .blog-sidebar .grid-item:last-of-type {
    width: 50%;
    padding: 0 10px;
    text-align: left;
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .blog-sidebar .grid-item:last-of-type {
    padding: 0 20px;
  }
}
.blog-sidebar h3 {
  font-size: 18px;
  line-height: 1.1;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  color: #084c91;
  width: 100%;
  margin: 0 auto 12px;
}
@media (min-width: 600px) {
  .blog-sidebar h3 {
    width: auto;
    margin: 0;
    margin-right: 10px;
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .blog-sidebar h3 {
    font-size: 24px;
  }
}
.blog-sidebar .custom-select {
  position: relative;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  width: 285px;
}
@media (min-width: 1400px) {
  .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: #2372bd;
}
.blog-sidebar select {
  font-size: 16px;
  border: none;
  background: transparent;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .blog-sidebar {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.blog-sidebar:after {
  display: block;
}

.archive .taxonomy {
  margin: 40px auto 60px;
  text-align: center;
}
.archive .taxonomy .label span {
  background: #ffffff;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 auto;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #fab83a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
}
@media (min-width: 600px) {
  .archive .taxonomy .label span {
    font-size: 18px;
  }
}
.archive .taxonomy h1 {
  font-size: 27px;
  line-height: 1.2;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #084c91;
}
@media (min-width: 600px) {
  .archive .taxonomy h1 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .archive .taxonomy h1 {
    font-size: 43px;
  }
}
@media (min-width: 1400px) {
  .archive .taxonomy h1 {
    font-size: 48px;
  }
}

.newstitle {
  padding: 40px 0 45px;
  background: #084c91;
}
@media (min-width: 900px) {
  .newstitle {
    padding: 50px 0 60px;
  }
}
.newstitle h1 {
  color: #ffffff;
  font-size: 36px;
  line-height: 1.2;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.04em;
}
@media (min-width: 600px) {
  .newstitle h1 {
    font-size: 43px;
  }
}
@media (min-width: 900px) {
  .newstitle h1 {
    font-size: 55px;
  }
}
@media (min-width: 1024px) {
  .newstitle h1 {
    font-size: 65px;
  }
}
@media (min-width: 1400px) {
  .newstitle h1 {
    font-size: 70px;
  }
}

.give-stories {
  background: #f4f4f4;
  padding: 50px 0 60px;
}
.give-stories .headline h2 {
  margin-bottom: 10px;
}
.give-stories .give-testimonials {
  border-top: 2px solid #fab83a;
  padding-top: 40px;
  overflow: unset !important;
}
.give-stories .give-testimonials .slick-list {
  overflow: hidden;
}
.give-stories .give-testimonials .slick-prev, .give-stories .give-testimonials .slick-next {
  top: -30px;
  right: 0;
}
.give-stories .give-testimonials .slick-prev {
  left: auto;
  right: 40px;
}
.give-stories .give-testimonials .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .give-stories .give-testimonials .grid-item {
    width: 50%;
  }
}
.give-stories .give-testimonials .grid-item.content {
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .give-stories .give-testimonials .grid-item.content {
    margin: 0;
    padding-right: 60px;
  }
}
.give-stories .give-testimonials .grid-item.photo img {
  width: 100%;
}
.give-stories .give-testimonials .quote {
  background: #084c91;
  padding: 30px 30px 10px;
  position: relative;
  margin-top: 45px;
}
.give-stories .give-testimonials .quote .angle {
  position: absolute;
  top: -22px;
  left: 20px;
  width: 90px;
}
.give-stories .give-testimonials .quote p {
  color: white;
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  font-size: 18px;
}
@media (min-width: 768px) {
  .give-stories .give-testimonials .quote p {
    font-size: 20px;
  }
}

.give-icons {
  margin: 60px auto 1px;
}
@media (min-width: 900px) {
  .give-icons {
    margin: 80px 0 1px;
  }
}
.give-icons .grid-item {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .give-icons .grid-item {
    width: 33.333333%;
  }
}
@media (min-width: 768px) {
  .give-icons .grid-item .inner {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .give-icons .grid-item .inner {
    padding: 0 30px;
  }
}
.give-icons .grid-item .icon {
  height: 100px;
  width: auto;
  margin: 0 auto 15px;
}
@media (min-width: 1024px) {
  .give-icons .grid-item .icon {
    height: 120px;
  }
}

.give-faqs {
  margin: 60px auto 80px;
}
.give-faqs .accordion {
  margin: 30px 0 30px 15px;
  border: 2px solid #f4f4f4;
}
@media (min-width: 768px) {
  .give-faqs .accordion {
    margin-left: 20px;
  }
}
@media (min-width: 1024px) {
  .give-faqs .accordion {
    margin-left: 25px;
  }
}
.give-faqs h3.accordion__heading {
  border: none;
  font-size: inherit;
  margin: -1px 0 0;
  padding: 0;
}
.give-faqs button.accordion__trigger {
  -webkit-appearance: none;
  background-color: #f4f4f4;
  color: #084c91;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: block;
  font-size: inherit;
  margin: 0;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  padding: 11px 23px 15px 30px;
}
@media (min-width: 768px) {
  .give-faqs button.accordion__trigger {
    font-size: 28px;
    padding: 21px 23px 23px 42px;
  }
}
.give-faqs button.accordion__trigger: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: "\e90b";
  margin: auto;
  background: #fab83a;
  color: #084c91;
  position: absolute;
  left: -15px;
  top: 11px;
  width: 30px;
  height: 30px;
  font-size: 30px;
}
@media (min-width: 600px) {
  .give-faqs button.accordion__trigger:after {
    top: 12px;
  }
}
@media (min-width: 768px) {
  .give-faqs button.accordion__trigger:after {
    left: -20px;
    top: 20px;
    width: 38px;
    height: 38px;
    font-size: 38px;
  }
}
.give-faqs button.accordion__trigger:hover:after, .give-faqs button.accordion__trigger:focus:after, .give-faqs button.accordion__trigger[aria-expanded=true]:after {
  background: #62a2d4;
  color: white;
}
.give-faqs button.accordion__trigger[aria-expanded=true]:after {
  content: "\e90c";
}
.give-faqs button.accordion__trigger > * {
  pointer-events: none;
}
.give-faqs button.accordion__trigger:hover, .give-faqs button.accordion__trigger:focus {
  outline: none;
}
.give-faqs .accordion__panel {
  background: white;
  max-height: 0vh;
  overflow: hidden;
  padding: 0.001em 50px;
  position: relative;
  visibility: hidden;
  z-index: 1;
}
.give-faqs .accordion__panel > :last-child {
  margin-bottom: 0;
}
.give-faqs .accordion__panel[aria-hidden=false] {
  max-height: 100vh;
  overflow: auto;
  padding: 25px 28px 35px 28px;
  visibility: visible;
}
@media (min-width: 768px) {
  .give-faqs .accordion__panel[aria-hidden=false] {
    padding: 30px 45px 35px;
  }
}
@media (min-width: 1024px) {
  .give-faqs .accordion__panel[aria-hidden=false] {
    padding: 40px 50px 55px;
  }
}
.give-faqs .accordion__panel--transition {
  transition: max-height 0.2s ease-in-out, padding-top 0.2s ease-in-out, padding-bottom 0.2s ease-in-out;
}

.page-id-37 .below {
  margin-bottom: 0px;
}
.page-id-37 .contact-blocks {
  margin-top: 60px;
}
.page-id-37 .contact-blocks .grid {
  margin: 0 auto;
  justify-content: center;
}
@media (min-width: 600px) {
  .page-id-37 .contact-blocks .grid {
    margin: 0 -20px;
  }
}
.page-id-37 .contact-blocks .grid-item {
  width: 100%;
  margin-bottom: 60px;
  border: none;
}
.page-id-37 .contact-blocks .grid-item:last-of-type {
  margin-bottom: 0px;
}
@media (min-width: 600px) {
  .page-id-37 .contact-blocks .grid-item {
    width: 50%;
  }
  .page-id-37 .contact-blocks .grid-item:last-of-type {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .page-id-37 .contact-blocks .grid-item {
    width: 25%;
    border-left: 2px solid #f4f4f4;
  }
  .page-id-37 .contact-blocks .grid-item:first-of-type {
    border: none;
  }
}
.page-id-37 .contact-blocks .inner {
  max-width: 450px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .page-id-37 .contact-blocks .inner {
    padding: 0 20px;
  }
}
.page-id-37 .contact-blocks .inner p {
  margin-bottom: 0;
}
.page-id-37 .contact-blocks .inner h4 {
  color: #62a2d4;
  font-size: 16px;
  margin-bottom: 10px;
}

.report-cards {
  margin: 60px auto;
}
.report-cards .base {
  margin-bottom: 60px;
}
.report-cards .table-container {
  padding: 20px 5px;
  background: #f4f4f4;
}
@media (min-width: 600px) {
  .report-cards .table-container {
    padding: 20px;
  }
}

.pagetitle {
  margin: 60px auto;
  text-align: center;
}
.pagetitle .wrap1400 {
  position: relative;
}
.pagetitle .line {
  position: absolute;
  z-index: 1;
  background: #f4f4f4;
  top: calc(50% + 12px);
  height: 2px;
  width: 100%;
  left: 0;
}
.pagetitle span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 auto 10px;
  display: block;
  background: #ffffff;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 2;
  color: #fab83a;
  font-size: 15px;
}
@media (min-width: 600px) {
  .pagetitle span {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .pagetitle span {
    font-size: 24px;
  }
}
.pagetitle h1 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #2372bd;
  letter-spacing: -0.03em;
  display: inline-block;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  z-index: 3;
  padding: 0 20px;
}
@media (min-width: 480px) {
  .pagetitle h1 {
    font-size: 36px;
  }
}
@media (min-width: 600px) {
  .pagetitle h1 {
    font-size: 45px;
  }
}
@media (min-width: 900px) {
  .pagetitle h1 {
    font-size: 55px;
  }
}
@media (min-width: 1024px) {
  .pagetitle h1 {
    font-size: 72px;
  }
}

.staff-search {
  background: #f4f4f4;
  padding: 40px 0 10px;
  margin: 60px auto;
}
@media (min-width: 600px) {
  .staff-search {
    padding: 40px 0;
  }
}
.staff-search .grid-item {
  padding: 0 30px;
  margin: 0px auto 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 600px) {
  .staff-search .grid-item {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin: 10px auto;
  }
}
.staff-search .search-form {
  display: flex;
  align-items: center;
}
.staff-search .search-form input {
  width: 250px;
  height: 45px;
  font-size: 16px;
  padding: 8px;
  color: #000000;
  border: 1px solid transparent;
  appearance: none;
  -webkit-appearance: none;
}
@media (min-width: 480px) {
  .staff-search .search-form input {
    width: 300px;
  }
}
.staff-search .search-form .search-submit {
  font-size: 30px;
  height: 45px;
  width: 50px;
  background: #ffffff;
  color: #fab83a;
  border: none;
  cursor: pointer;
}
.staff-search .search-form .search-submit:hover {
  color: #084c91;
}
.staff-search .custom-select {
  position: relative;
  background: #ffffff;
  border: 1px solid transparent;
  width: 300px;
}
@media (min-width: 480px) {
  .staff-search .custom-select {
    min-width: 350px;
  }
}
.staff-search .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #fab83a;
}
.staff-search select {
  font-size: 16px;
  border: none;
  background: transparent;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .staff-search {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.staff-search:after {
  display: block;
}
.staff-search h3 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #084c91;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 600px) {
  .staff-search h3 {
    text-align: left;
    margin-bottom: 0;
    width: auto;
    margin-right: 10px;
  }
}

.staff {
  margin: 60px auto;
}
.staff .headers {
  border-bottom: 2px solid #2372bd;
  padding-bottom: 15px;
  padding-top: 12px;
  position: sticky;
  z-index: 3;
  top: 0;
  background: #2372bd;
}
.staff .headers .grid-item {
  padding: 0 10px;
}
@media (min-width: 1400px) {
  .staff .headers .grid-item {
    padding: 0 20px;
  }
}
.staff .headers .grid-item:nth-of-type(1) {
  width: 20%;
}
@media (min-width: 900px) {
  .staff .headers .grid-item:nth-of-type(1) {
    width: 15%;
  }
}
.staff .headers .grid-item:nth-of-type(2) {
  width: 21%;
}
@media (min-width: 900px) {
  .staff .headers .grid-item:nth-of-type(2) {
    width: 22%;
  }
}
.staff .headers .grid-item:nth-of-type(3) {
  width: 14%;
}
@media (min-width: 600px) {
  .staff .headers .grid-item:nth-of-type(3) {
    width: 20%;
  }
}
@media (min-width: 900px) {
  .staff .headers .grid-item:nth-of-type(3) {
    width: 15%;
  }
}
.staff .headers .grid-item:nth-of-type(4) {
  width: 15%;
}
@media (min-width: 600px) {
  .staff .headers .grid-item:nth-of-type(4) {
    width: 12%;
  }
}
@media (min-width: 900px) {
  .staff .headers .grid-item:nth-of-type(4) {
    width: 17%;
  }
}
.staff .headers .grid-item:nth-of-type(5) {
  width: 30%;
}
@media (min-width: 600px) {
  .staff .headers .grid-item:nth-of-type(5) {
    width: 27%;
  }
}
@media (min-width: 900px) {
  .staff .headers .grid-item:nth-of-type(5) {
    width: 30%;
  }
}
.staff .headers span {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
}
@media (min-width: 600px) {
  .staff .headers span {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  .staff .headers span {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .staff .headers span {
    font-size: 24px;
  }
}
.staff .row {
  padding: 15px 0px 18px;
  line-height: 1.2;
  border-left: 2px solid #f4f4f4;
  border-right: 2px solid #f4f4f4;
  border-bottom: 2px solid #f4f4f4;
  font-size: 12px;
}
@media (min-width: 600px) {
  .staff .row {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .staff .row {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .staff .row {
    font-size: 18px;
  }
}
.staff .row:last-of-type {
  border-bottom: 4px solid #f4f4f4;
}
.staff .row:hover {
  background: #f4f4f4;
}
.staff .row .grid-item {
  padding: 0 10px;
}
@media (min-width: 1400px) {
  .staff .row .grid-item {
    padding: 0 20px;
  }
}
.staff .row .grid-item:nth-of-type(1) {
  width: 20%;
}
@media (min-width: 900px) {
  .staff .row .grid-item:nth-of-type(1) {
    width: 15%;
  }
}
.staff .row .grid-item:nth-of-type(2) {
  width: 21%;
}
@media (min-width: 900px) {
  .staff .row .grid-item:nth-of-type(2) {
    width: 22%;
  }
}
.staff .row .grid-item:nth-of-type(3) {
  width: 14%;
}
@media (min-width: 600px) {
  .staff .row .grid-item:nth-of-type(3) {
    width: 20%;
  }
}
@media (min-width: 900px) {
  .staff .row .grid-item:nth-of-type(3) {
    width: 15%;
  }
}
.staff .row .grid-item:nth-of-type(4) {
  width: 15%;
}
@media (min-width: 600px) {
  .staff .row .grid-item:nth-of-type(4) {
    width: 12%;
  }
}
@media (min-width: 900px) {
  .staff .row .grid-item:nth-of-type(4) {
    width: 17%;
  }
}
.staff .row .grid-item:nth-of-type(5) {
  width: 30%;
}
@media (min-width: 600px) {
  .staff .row .grid-item:nth-of-type(5) {
    width: 27%;
  }
}
@media (min-width: 900px) {
  .staff .row .grid-item:nth-of-type(5) {
    width: 30%;
  }
}
.staff .row a {
  color: #2372bd;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
.staff .row a:hover {
  color: #fab83a;
}
.staff .row a .text {
  display: none;
}
@media (min-width: 900px) {
  .staff .row a .text {
    display: inline-block;
  }
}
.staff .row a .icon-phone {
  display: inline-block;
  position: relative;
  line-height: 0;
  font-size: 22px;
  top: 3.5px;
  color: #fab83a;
}
@media (min-width: 600px) {
  .staff .row a .icon-phone {
    display: none;
  }
}
.staff .row a .number {
  display: none;
}
@media (min-width: 600px) {
  .staff .row a .number {
    display: inline-block;
  }
}
.staff .row a .icon {
  position: relative;
  line-height: 0;
  font-size: 22px;
  margin-right: 4px;
  top: 3.5px;
  color: #fab83a;
}

.backto {
  margin: 60px auto;
}
.backto .button:hover {
  background: #2372bd;
}

.weatherWidgets {
  background: #084c91;
  padding: 30px 0 50px;
}
@media (min-width: 1024px) {
  .weatherWidgets {
    padding: 50px 0 70px;
  }
}
.weatherWidgets .base h2 {
  color: white;
}
.weatherWidgets .base ul {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
  flex-flow: row wrap;
}
.weatherWidgets .base ul li {
  width: 100%;
  padding: 5px 10px;
}
@media (min-width: 480px) {
  .weatherWidgets .base ul li {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .weatherWidgets .base ul li {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .weatherWidgets .base ul li {
    padding: 5px 17px;
  }
}
.weatherWidgets .base ul li:before {
  display: none;
}

.lgrayBg {
  background: #f4f4f4;
}

.resourcesAcc {
  padding: 30px 0 50px;
}
@media (min-width: 1024px) {
  .resourcesAcc {
    padding: 50px 0 70px;
  }
}
.resourcesAcc .accordion {
  margin: 30px 0 30px 15px;
}
@media (min-width: 768px) {
  .resourcesAcc .accordion {
    margin-left: 20px;
  }
}
@media (min-width: 1024px) {
  .resourcesAcc .accordion {
    margin-left: 25px;
  }
}
.resourcesAcc h3.accordion__heading {
  border: none;
  font-size: inherit;
  margin: -1px 0 0;
  padding: 0;
}
.resourcesAcc button.accordion__trigger {
  -webkit-appearance: none;
  background-color: #084c91;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: white;
  cursor: pointer;
  display: block;
  font-size: inherit;
  margin: 0;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25em;
  padding: 11px 23px 15px 30px;
}
@media (min-width: 768px) {
  .resourcesAcc button.accordion__trigger {
    font-size: 1.75em;
    padding: 21px 23px 23px 42px;
  }
}
.resourcesAcc button.accordion__trigger: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: "\e90b";
  margin: auto;
  background: #fab83a;
  color: #084c91;
  position: absolute;
  left: -15px;
  top: 11px;
  width: 30px;
  height: 30px;
  font-size: 30px;
}
@media (min-width: 600px) {
  .resourcesAcc button.accordion__trigger:after {
    top: 13px;
  }
}
@media (min-width: 768px) {
  .resourcesAcc button.accordion__trigger:after {
    left: -20px;
    top: 23px;
    width: 38px;
    height: 38px;
    font-size: 38px;
  }
}
.resourcesAcc button.accordion__trigger[aria-expanded=true]:after {
  content: "\e90c";
}
.resourcesAcc button.accordion__trigger > * {
  pointer-events: none;
}
.resourcesAcc button.accordion__trigger:hover, .resourcesAcc button.accordion__trigger:focus {
  background-color: #2372bd;
  outline: none;
}
.resourcesAcc .accordion__panel {
  background: white;
  max-height: 0vh;
  overflow: hidden;
  padding: 0.001em 50px;
  position: relative;
  visibility: hidden;
  z-index: 1;
}
.resourcesAcc .accordion__panel > :last-child {
  margin-bottom: 0;
}
.resourcesAcc .accordion__panel[aria-hidden=false] {
  max-height: 100vh;
  overflow: auto;
  padding: 25px 28px 35px 28px;
  visibility: visible;
}
@media (min-width: 768px) {
  .resourcesAcc .accordion__panel[aria-hidden=false] {
    padding: 30px 45px 35px;
  }
}
@media (min-width: 1024px) {
  .resourcesAcc .accordion__panel[aria-hidden=false] {
    padding: 40px 50px 55px;
  }
}
.resourcesAcc .accordion__panel--transition {
  transition: max-height 0.2s ease-in-out, padding-top 0.2s ease-in-out, padding-bottom 0.2s ease-in-out;
}

.resourcesAcc .with-dropdown {
  margin-bottom: 60px;
}
.resourcesAcc .with-dropdown strong {
  color: #084c91;
}
.resourcesAcc .custom-select {
  position: relative;
  background: #084c91;
  border: 1px solid transparent;
  max-width: 300px;
  margin: 20px auto 30px;
}
.resourcesAcc .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #fab83a;
}
.resourcesAcc select {
  font-size: 0.9em;
  border: none;
  background-color: #084c91;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  color: #ffffff;
  -webkit-appearance: none !important;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .resourcesAcc {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.resourcesAcc:after {
  display: block;
}

.lgrayBg.icons {
  padding: 50px 0 10px;
}
@media (min-width: 1400px) {
  .lgrayBg.icons {
    border-bottom: 90px solid #ffffff;
    margin-bottom: 100px;
    padding: 50px 0 0px;
  }
}
.lgrayBg.icons .grid {
  justify-content: center;
  margin: 60px auto 0;
}
@media (min-width: 1400px) {
  .lgrayBg.icons .grid {
    margin: 60px auto -118px;
  }
}
.lgrayBg.icons .grid-item {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}
@media (min-width: 600px) {
  .lgrayBg.icons .grid-item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .lgrayBg.icons .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 1400px) {
  .lgrayBg.icons .grid-item {
    margin-bottom: 0px;
    width: 16.6666667%;
  }
}
.lgrayBg.icons .link {
  display: block;
  margin: 0 20px;
}
.lgrayBg.icons .link:hover span {
  color: #62a2d4;
}
.lgrayBg.icons .link span {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  display: block;
  line-height: 1.2;
  color: #084c91;
  font-size: 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lgrayBg.icons .link span {
    font-size: 22px;
  }
}
.lgrayBg.icons .icon {
  width: 100px;
  display: block;
  margin: 0 auto 10px;
}
@media (min-width: 768px) {
  .lgrayBg.icons .icon {
    width: 110px;
  }
}

.twoColumn.mission .base h2 {
  color: white;
}

.columns.mission .base.gray ul {
  margin-left: 8px;
}
.columns.mission .base.gray ul li {
  margin-bottom: 5px;
}
.columns.mission .base.gray ul li:before {
  color: #2372bd;
}

.rfps-container {
  margin: 110px auto 80px;
}
.rfps-container .wrap1400 {
  background: #f4f4f4;
  position: relative;
  padding: 60px 30px 30px;
}
.rfps-container .icon {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
}
.rfps-container .rfps {
  max-width: 1100px;
  width: 100%;
  margin: 40px auto;
  border-top: 2px solid #dbdbdb;
}
.rfps-container .row {
  padding: 10px 0 12px;
  border-bottom: 1px solid #dbdbdb;
  line-height: 1.4;
}
.rfps-container .row .title {
  width: 100%;
}
@media (min-width: 600px) {
  .rfps-container .row .title {
    width: 70%;
  }
}
.rfps-container .row .link {
  width: 100%;
  text-align: left;
}
@media (min-width: 600px) {
  .rfps-container .row .link {
    text-align: right;
    width: 30%;
  }
}
.rfps-container .row a {
  color: #2372bd;
  text-decoration: underline;
}
.rfps-container .row a:hover {
  text-decoration: none;
}

.videos {
  margin: 60px auto 0;
}
@media (min-width: 600px) {
  .videos .grid {
    margin: 0 -20px;
  }
}
.videos .grid-item {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 600px) {
  .videos .grid-item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .videos .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 600px) {
  .videos .inner.base {
    padding: 0 20px;
  }
}
.videos .inner.base .embed-container {
  margin: 0 0 15px;
}
.videos .inner.base h3 {
  line-height: 1.1;
  margin: 15px auto 10px;
}
.videos .inner.base .date {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  margin: 10px auto 0;
  color: #62a2d4;
}

.page-id-34 .twoColumn {
  background: #084c91;
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
  margin: 0 auto 90px;
}
@media (min-width: 900px) {
  .page-id-34 .twoColumn {
    padding: 90px 0 30px;
    margin: 0px auto 120px;
  }
}
.page-id-34 .twoColumn .grid {
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .page-id-34 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 500px);
  }
}
@media (min-width: 1200px) {
  .page-id-34 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 645px);
  }
}
.page-id-34 .twoColumn .grid .grid-item:last-of-type {
  margin: 0 auto;
  margin-bottom: 0px;
}
@media (min-width: 900px) {
  .page-id-34 .twoColumn .grid .grid-item:last-of-type {
    width: 500px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .page-id-34 .twoColumn .grid .grid-item:last-of-type {
    width: 645px;
  }
}
.page-id-34 .twoColumn .grid .grid-item:last-of-type img {
  width: 100%;
  height: auto;
}
.page-id-34 .twoColumn .grid .base {
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .page-id-34 .twoColumn .grid .base {
    padding: 0;
    padding-right: 60px;
  }
}
.page-id-34 .belowTCB {
  margin: 60px auto 30px;
}
@media (min-width: 900px) {
  .page-id-34 .belowTCB {
    margin: 60px auto 80px;
  }
}
.page-id-34 .below {
  z-index: 1;
  background: #f4f4f4;
  padding: 80px 0 50px;
  margin-bottom: 90px;
  position: relative;
}
@media (min-width: 900px) {
  .page-id-34 .below {
    margin-top: -120px;
    padding: 120px 0 50px;
  }
}
.page-id-34 .below::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;
  position: absolute;
  content: "\e908";
  color: #f4f4f4;
  bottom: -43px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  font-size: 45px;
}

.kipp-difference .grid {
  margin: 90px auto 0;
  justify-content: center;
}
@media (min-width: 1024px) {
  .kipp-difference .grid {
    margin: 90px -20px 0;
  }
}
.kipp-difference .grid-item {
  display: flex;
  margin: 0 auto 100px;
  max-width: 600px;
  width: 100%;
}
.kipp-difference .grid-item:last-of-type {
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .kipp-difference .grid-item {
    width: 33.3333333%;
    margin: 0;
    margin-bottom: 120px;
  }
  .kipp-difference .grid-item:last-of-type {
    margin-bottom: 120px;
  }
}
.kipp-difference .inner {
  height: 100%;
  background: #f4f4f4;
  position: relative;
  padding: 80px 30px 30px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .kipp-difference .inner {
    margin: 0 20px;
  }
}
.kipp-difference .icon {
  position: absolute;
  top: -55px;
  left: 0;
  right: 0;
  width: 110px;
  margin: 0 auto;
}
.kipp-difference.valueBoxes .icon {
  width: auto;
  height: 100px;
}
@media (min-width: 600px) {
  .kipp-difference.valueBoxes .icon {
    height: 115px;
  }
}

.page-id-123 .below {
  margin: 60px auto;
}
.page-id-123 .twoColumn {
  background: #084c91;
  padding: 60px 0;
  position: relative;
  z-index: 2;
  margin: 0 auto 60px;
}
@media (min-width: 900px) {
  .page-id-123 .twoColumn {
    padding: 80px 0 60px;
    margin: 0px auto 80px;
  }
}
.page-id-123 .twoColumn .grid {
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .page-id-123 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 500px);
  }
}
@media (min-width: 1200px) {
  .page-id-123 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 645px);
  }
}
.page-id-123 .twoColumn .grid .grid-item:last-of-type {
  margin: 0 auto;
  margin-bottom: 0px;
}
@media (min-width: 900px) {
  .page-id-123 .twoColumn .grid .grid-item:last-of-type {
    width: 500px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .page-id-123 .twoColumn .grid .grid-item:last-of-type {
    width: 645px;
  }
}
.page-id-123 .twoColumn .grid .grid-item:last-of-type img {
  width: 100%;
  height: auto;
}
.page-id-123 .twoColumn .grid .base {
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .page-id-123 .twoColumn .grid .base {
    padding: 0;
    padding-right: 60px;
  }
}
.page-id-123 .columns {
  margin: 60px auto 50px;
}
@media (min-width: 900px) {
  .page-id-123 .columns {
    margin: 60px auto 80px;
  }
}
.page-id-123 .columns .grid {
  align-items: center;
}
.page-id-123 .columns .grid .grid-item {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .page-id-123 .columns .grid .grid-item {
    margin-bottom: 0px;
  }
}
.page-id-123 .columns .grid .grid-item img {
  width: 100%;
}
@media (min-width: 900px) {
  .page-id-123 .columns .base {
    padding-left: 30px;
  }
}
@media (min-width: 1024px) {
  .page-id-123 .columns .base {
    padding-left: 60px;
  }
}
.page-id-123 .columns .base p:last-of-type {
  margin-bottom: 0px;
}

.leader .grid {
  justify-content: center;
  align-items: center;
}
.leader .grid img {
  margin: 0 auto 20px;
  max-width: 400px;
}
@media (min-width: 900px) {
  .leader .grid img {
    margin: 0;
    width: 350px;
  }
}
.leader .grid .text {
  width: 100%;
}
@media (min-width: 900px) {
  .leader .grid .text {
    padding-left: 60px;
    width: calc(100% - 350px);
  }
}
.leader .grid h3 {
  font-size: 20px;
  color: #2372bd;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .leader .grid h3 {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .leader .grid h3 {
    font-size: 28px;
  }
}
.leader .grid .boardposition {
  color: #fab83a;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.1em;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .leader .grid .boardposition {
    font-size: 16px;
  }
}
.leader .grid .business {
  display: block;
  padding: 0 0 15px;
  line-height: 1.2;
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
  color: #2372bd;
  font-size: 16px;
}
@media (min-width: 900px) {
  .leader .grid .business {
    font-size: 18px;
  }
}
.leader .videos {
  margin-top: 20px;
}
.leader .videos .grid {
  margin: 0 -30px;
}
.leader .videos .grid-item {
  padding: 0 30px;
  margin-top: 40px;
}
.leader .videos .base h4 {
  color: #fab83a;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  font-size: 16px;
}

.board-of-directors,
.leadership-team {
  margin: 60px auto 0;
}
.board-of-directors .grid,
.leadership-team .grid {
  justify-content: center;
}
.board-of-directors .grid-item,
.leadership-team .grid-item {
  width: 100%;
  padding: 30px 0 0px;
  border-top: 2px solid #f4f4f4;
}
@media (min-width: 480px) {
  .board-of-directors .grid-item,
.leadership-team .grid-item {
    width: 50%;
  }
  .board-of-directors .grid-item .inner,
.leadership-team .grid-item .inner {
    border-left: 2px solid #f4f4f4;
  }
  .board-of-directors .grid-item:nth-of-type(2n + 1) .inner, .board-of-directors .grid-item:nth-of-type(1) .inner,
.leadership-team .grid-item:nth-of-type(2n + 1) .inner,
.leadership-team .grid-item:nth-of-type(1) .inner {
    border-left: none;
  }
}
@media (min-width: 768px) {
  .board-of-directors .grid-item,
.leadership-team .grid-item {
    width: 33.3333333%;
  }
  .board-of-directors .grid-item .inner,
.leadership-team .grid-item .inner {
    border-left: 2px solid #f4f4f4;
  }
  .board-of-directors .grid-item:nth-of-type(2n + 1) .inner,
.leadership-team .grid-item:nth-of-type(2n + 1) .inner {
    border-left: 2px solid #f4f4f4;
  }
  .board-of-directors .grid-item:nth-of-type(3n + 1) .inner, .board-of-directors .grid-item:nth-of-type(1) .inner,
.leadership-team .grid-item:nth-of-type(3n + 1) .inner,
.leadership-team .grid-item:nth-of-type(1) .inner {
    border-left: none;
  }
}
@media (min-width: 1200px) {
  .board-of-directors .grid-item,
.leadership-team .grid-item {
    width: 25%;
  }
  .board-of-directors .grid-item .inner,
.leadership-team .grid-item .inner {
    border-left: 2px solid #f4f4f4;
  }
  .board-of-directors .grid-item:nth-of-type(3n + 1) .inner,
.leadership-team .grid-item:nth-of-type(3n + 1) .inner {
    border-left: 2px solid #f4f4f4;
  }
  .board-of-directors .grid-item:nth-of-type(4n + 1) .inner, .board-of-directors .grid-item:nth-of-type(1) .inner,
.leadership-team .grid-item:nth-of-type(4n + 1) .inner,
.leadership-team .grid-item:nth-of-type(1) .inner {
    border-left: none;
  }
}
.board-of-directors .container,
.leadership-team .container {
  padding-bottom: 40px;
  height: 100%;
}
.board-of-directors .inner,
.leadership-team .inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 600px) {
  .board-of-directors .inner,
.leadership-team .inner {
    padding: 40px 20px;
    border-left: 2px solid #f4f4f4;
  }
}
@media (min-width: 1200px) {
  .board-of-directors .inner,
.leadership-team .inner {
    padding: 40px;
  }
}
.board-of-directors .inner img,
.leadership-team .inner img {
  border-radius: 50%;
  margin: 0 auto 20px;
  width: 100%;
  height: auto;
  max-width: 200px;
}
@media (min-width: 1200px) {
  .board-of-directors .inner img,
.leadership-team .inner img {
    max-width: 250px;
  }
}
.board-of-directors .inner .bio,
.leadership-team .inner .bio {
  display: none;
}
.board-of-directors .inner .bio.open,
.leadership-team .inner .bio.open {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board-of-directors .inner .bio.open .overlay,
.leadership-team .inner .bio.open .overlay {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.board-of-directors .inner .bio.open .popup,
.leadership-team .inner .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: 10;
  display: block;
  max-width: 1000px;
  padding: 40px;
  background: #f4f4f4;
  padding: 60px 20px 40px;
  border-bottom: 10px solid #fab83a;
  height: 100%;
}
@media (min-width: 600px) {
  .board-of-directors .inner .bio.open .popup,
.leadership-team .inner .bio.open .popup {
    padding: 60px 40px;
  }
}
@media (min-width: 900px) {
  .board-of-directors .inner .bio.open .popup,
.leadership-team .inner .bio.open .popup {
    padding: 100px 90px;
    height: auto;
  }
}
.board-of-directors .inner .bio.open .popup p,
.leadership-team .inner .bio.open .popup p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.board-of-directors .inner .bio.open .popup p:last-of-type,
.leadership-team .inner .bio.open .popup p:last-of-type {
  margin-bottom: 0px;
}
.board-of-directors .inner .bio.open .popup .container,
.leadership-team .inner .bio.open .popup .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.board-of-directors .inner .bio.open .popup .container img,
.leadership-team .inner .bio.open .popup .container img {
  margin: 0 auto 20px;
  max-width: 400px;
}
@media (min-width: 900px) {
  .board-of-directors .inner .bio.open .popup .container img,
.leadership-team .inner .bio.open .popup .container img {
    margin: 0;
    width: 350px;
  }
}
.board-of-directors .inner .bio.open .popup .container .text,
.leadership-team .inner .bio.open .popup .container .text {
  width: 100%;
}
@media (min-width: 900px) {
  .board-of-directors .inner .bio.open .popup .container .text,
.leadership-team .inner .bio.open .popup .container .text {
    padding-left: 30px;
    width: calc(100% - 350px);
  }
}
.board-of-directors .inner .bio.open .popup .closeModal,
.leadership-team .inner .bio.open .popup .closeModal {
  position: absolute;
  right: 12px;
  top: 12px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #fab83a;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.board-of-directors .inner .bio.open .popup .closeModal:hover,
.leadership-team .inner .bio.open .popup .closeModal:hover {
  color: #2372bd;
}
.board-of-directors .inner .bio.open .popup .closeModal:hover .icon-close,
.leadership-team .inner .bio.open .popup .closeModal:hover .icon-close {
  background: #2372bd;
}
.board-of-directors .inner .bio.open .popup .closeModal .icon-close,
.leadership-team .inner .bio.open .popup .closeModal .icon-close {
  background: #fab83a;
  font-size: 16px;
  width: 25px;
  height: 25px;
  border-radius: 999em;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0px;
  color: #ffffff;
  margin-left: 4px;
  position: relative;
  top: -1px;
}
.board-of-directors .inner h3,
.leadership-team .inner h3 {
  font-size: 20px;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .board-of-directors .inner h3,
.leadership-team .inner h3 {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .board-of-directors .inner h3,
.leadership-team .inner h3 {
    font-size: 28px;
  }
}
.board-of-directors .inner .boardposition,
.leadership-team .inner .boardposition {
  color: #62a2d4;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.1em;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .board-of-directors .inner .boardposition,
.leadership-team .inner .boardposition {
    font-size: 16px;
  }
}
.board-of-directors .inner .business,
.leadership-team .inner .business {
  display: block;
  padding: 0 0 15px;
  line-height: 1.2;
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
  color: #084c91;
  font-size: 16px;
}
@media (min-width: 900px) {
  .board-of-directors .inner .business,
.leadership-team .inner .business {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .board-of-directors .inner .business,
.leadership-team .inner .business {
    font-size: 20px;
  }
}
.board-of-directors .inner .contact,
.leadership-team .inner .contact {
  line-height: 1.5;
  color: #2372bd;
  font-size: 14px;
}
@media (min-width: 900px) {
  .board-of-directors .inner .contact,
.leadership-team .inner .contact {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .board-of-directors .inner .contact,
.leadership-team .inner .contact {
    font-size: 17px;
  }
}
.board-of-directors .inner .contact a,
.leadership-team .inner .contact a {
  display: block;
}
.board-of-directors .inner .contact a:hover,
.leadership-team .inner .contact a:hover {
  color: #fab83a;
}
.board-of-directors .inner .readbio,
.leadership-team .inner .readbio {
  width: 120px;
  display: block;
  border: 2px solid #f4f4f4;
  background: #ffffff;
  text-transform: uppercase;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #fab83a;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  margin: auto auto 0;
  text-align: center;
}
.board-of-directors .inner .readbio:hover,
.leadership-team .inner .readbio:hover {
  border-color: #2372bd;
  background: #2372bd;
  color: #ffffff;
}
.board-of-directors .inner .readbio.team,
.leadership-team .inner .readbio.team {
  border: 1px solid #084c91;
  color: #2372bd;
  padding: 10px 30px;
  width: auto;
  margin-top: 15px;
}
@media (min-width: 900px) {
  .board-of-directors .inner .readbio.team,
.leadership-team .inner .readbio.team {
    margin-top: 25px;
  }
}
.board-of-directors .inner .readbio.team:hover,
.leadership-team .inner .readbio.team:hover {
  background: none;
  color: #fab83a;
  border-color: #2372bd;
}

@media (max-width: 599px) {
  .leadership-team .grid-item .inner {
    padding: 0 15px;
  }
}
.leadership-team .grid-item .inner img {
  max-width: 290px;
}
.leadership-team .popup {
  max-width: 1200px !important;
}
@media (min-width: 900px) {
  .leadership-team .popup .wrap {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
}
@media (min-width: 900px) {
  .leadership-team .popup .wrap .headshot, .leadership-team .popup .wrap .content {
    display: table-cell;
    vertical-align: middle;
  }
}
.leadership-team .popup .wrap .headshot {
  width: 290px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .leadership-team .popup .wrap .headshot {
    width: 310px;
    margin: 0;
    padding-right: 40px;
  }
}
@media (max-width: 899px) {
  .leadership-team .popup .wrap .content {
    text-align: center;
  }
}

.meeting-minutes-callout {
  margin: 60px auto 80px;
}
.meeting-minutes-callout .wrap1400 {
  padding: 60px 0 30px;
  background: #f4f4f4;
  position: relative;
}
.meeting-minutes-callout .base {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.meeting-minutes-callout .icon {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -50px;
  width: 100px;
}
.meeting-minutes-callout .button {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -17px;
  width: 280px;
}
@media (min-width: 600px) {
  .meeting-minutes-callout .button {
    bottom: -22px;
    width: 320px;
  }
}

.meetings {
  margin: 60px auto;
}
.meetings .grid {
  justify-content: flex-start;
}
@media (min-width: 480px) {
  .meetings .grid {
    margin: 0 -15px;
  }
}
.meetings .grid-item {
  width: 100%;
  padding: 30px 0 15px;
  border-top: 2px solid #f4f4f4;
}
@media (min-width: 480px) {
  .meetings .grid-item {
    width: 50%;
    padding: 60px 0 45px;
  }
  .meetings .grid-item .inner {
    border-left: 2px solid #f4f4f4;
  }
  .meetings .grid-item:nth-of-type(2n + 1) .inner, .meetings .grid-item:nth-of-type(1) .inner {
    border-left: none;
  }
}
@media (min-width: 768px) {
  .meetings .grid-item {
    width: 33.3333333%;
  }
  .meetings .grid-item .inner {
    border-left: 2px solid #f4f4f4;
  }
  .meetings .grid-item:nth-of-type(2n + 1) .inner {
    border-left: 2px solid #f4f4f4;
  }
  .meetings .grid-item:nth-of-type(3n + 1) .inner, .meetings .grid-item:nth-of-type(1) .inner {
    border-left: none;
  }
}
@media (min-width: 1200px) {
  .meetings .grid-item {
    width: 25%;
  }
  .meetings .grid-item .inner {
    border-left: 2px solid #f4f4f4;
  }
  .meetings .grid-item:nth-of-type(3n + 1) .inner {
    border-left: 2px solid #f4f4f4;
  }
  .meetings .grid-item:nth-of-type(4n + 1) .inner, .meetings .grid-item:nth-of-type(1) .inner {
    border-left: none;
  }
}
@media (min-width: 480px) {
  .meetings .inner {
    padding: 0 30px;
    height: 100%;
  }
}
.meetings h3 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #2372bd;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
@media (min-width: 600px) {
  .meetings h3 {
    font-size: 25px;
  }
}
@media (min-width: 900px) {
  .meetings h3 {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
.meetings .row {
  margin-bottom: 20px;
}
.meetings .row a {
  color: #2372bd;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.meetings .row a:hover {
  color: #fab83a;
}
.meetings .row a span {
  width: calc(100% - 24px);
}
.meetings .row a img {
  width: 18px;
  margin-right: 6px;
}

.page-id-731 .twoColumn, .page-id-1347 .twoColumn {
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
  margin: 0 auto 90px;
  background: #084c91;
}
@media (min-width: 900px) {
  .page-id-731 .twoColumn, .page-id-1347 .twoColumn {
    padding: 90px 0 30px;
    margin: 0px auto 120px;
  }
}
.page-id-731 .twoColumn .grid, .page-id-1347 .twoColumn .grid {
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .page-id-731 .twoColumn .grid .grid-item:first-of-type, .page-id-1347 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 500px);
  }
}
@media (min-width: 1200px) {
  .page-id-731 .twoColumn .grid .grid-item:first-of-type, .page-id-1347 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 645px);
  }
}
.page-id-731 .twoColumn .grid .grid-item:last-of-type, .page-id-1347 .twoColumn .grid .grid-item:last-of-type {
  margin: 0 auto;
  margin-bottom: -60px;
}
@media (min-width: 900px) {
  .page-id-731 .twoColumn .grid .grid-item:last-of-type, .page-id-1347 .twoColumn .grid .grid-item:last-of-type {
    width: 500px;
    margin: 0;
    margin-bottom: -90px;
  }
}
@media (min-width: 1200px) {
  .page-id-731 .twoColumn .grid .grid-item:last-of-type, .page-id-1347 .twoColumn .grid .grid-item:last-of-type {
    width: 645px;
  }
}
.page-id-731 .twoColumn .grid .grid-item:last-of-type img, .page-id-1347 .twoColumn .grid .grid-item:last-of-type img {
  width: 100%;
  height: auto;
}
.page-id-731 .twoColumn .grid .base, .page-id-1347 .twoColumn .grid .base {
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .page-id-731 .twoColumn .grid .base, .page-id-1347 .twoColumn .grid .base {
    padding: 0;
    padding-right: 60px;
  }
}
.page-id-731 .below.gray, .page-id-1347 .below.gray {
  z-index: 1;
  background: #f4f4f4;
  padding: 80px 0 50px;
  margin-bottom: 90px;
  position: relative;
}
@media (min-width: 900px) {
  .page-id-731 .below.gray, .page-id-1347 .below.gray {
    margin-top: -120px;
    padding: 120px 0 50px;
  }
}
.page-id-731 .columns, .page-id-1347 .columns {
  margin: 0px auto;
}
@media (min-width: 900px) {
  .page-id-731 .columns, .page-id-1347 .columns {
    margin: 90px auto;
  }
}
.page-id-731 .columns .grid, .page-id-1347 .columns .grid {
  flex-wrap: wrap-reverse;
}
.page-id-731 .columns .grid.reversed, .page-id-1347 .columns .grid.reversed {
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .page-id-731 .columns .grid.reversed .content .base, .page-id-1347 .columns .grid.reversed .content .base {
    margin-right: 0px;
    margin-left: -90px;
  }
}
.page-id-731 .columns .grid.reversed .content .base.dblue, .page-id-1347 .columns .grid.reversed .content .base.dblue {
  background: #084c91;
}
.page-id-731 .columns .grid.reversed .content .base.gray, .page-id-1347 .columns .grid.reversed .content .base.gray {
  background: #f4f4f4;
}
@media (min-width: 900px) {
  .page-id-731 .columns .grid-item.content, .page-id-1347 .columns .grid-item.content {
    width: calc(50% - 90px);
  }
}
.page-id-731 .columns .grid-item.content .base, .page-id-1347 .columns .grid-item.content .base {
  margin: 0 auto;
  padding: 40px 20px 30px;
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}
@media (min-width: 600px) {
  .page-id-731 .columns .grid-item.content .base, .page-id-1347 .columns .grid-item.content .base {
    padding: 70px 60px 50px;
  }
}
@media (min-width: 900px) {
  .page-id-731 .columns .grid-item.content .base, .page-id-1347 .columns .grid-item.content .base {
    max-width: 700px;
    text-align: left;
    padding: 90px 40px 60px;
    margin: 60px 0 60px auto;
    margin-right: -90px;
  }
}
@media (min-width: 1200px) {
  .page-id-731 .columns .grid-item.content .base, .page-id-1347 .columns .grid-item.content .base {
    padding: 90px 90px 60px;
  }
}
.page-id-731 .columns .grid-item.content .base.dblue, .page-id-1347 .columns .grid-item.content .base.dblue {
  background: #084c91;
}
.page-id-731 .columns .grid-item.content .base.gray, .page-id-1347 .columns .grid-item.content .base.gray {
  background: #f4f4f4;
}
.page-id-731 .columns .grid-item.content .base h2, .page-id-1347 .columns .grid-item.content .base h2 {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
}
@media (min-width: 600px) {
  .page-id-731 .columns .grid-item.content .base h2, .page-id-1347 .columns .grid-item.content .base h2 {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .page-id-731 .columns .grid-item.content .base h2, .page-id-1347 .columns .grid-item.content .base h2 {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .page-id-731 .columns .grid-item.content .base h2, .page-id-1347 .columns .grid-item.content .base h2 {
    font-size: 48px;
  }
}
.page-id-731 .columns .grid-item.photo, .page-id-1347 .columns .grid-item.photo {
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
}
@media (min-width: 480px) {
  .page-id-731 .columns .grid-item.photo, .page-id-1347 .columns .grid-item.photo {
    min-height: 350px;
  }
}
@media (min-width: 600px) {
  .page-id-731 .columns .grid-item.photo, .page-id-1347 .columns .grid-item.photo {
    min-height: 450px;
  }
}
@media (min-width: 900px) {
  .page-id-731 .columns .grid-item.photo, .page-id-1347 .columns .grid-item.photo {
    width: calc(50% + 90px);
  }
}
.page-id-731 .columns.last, .page-id-1347 .columns.last {
  margin-bottom: 0px;
}
.page-id-731 .columns.last .img, .page-id-1347 .columns.last .img {
  width: 100%;
}
.page-id-731 .columns.last .below_photo, .page-id-1347 .columns.last .below_photo {
  max-width: 700px;
  width: 94%;
  margin: 40px auto;
  text-align: center;
  padding: 30px 0 1px;
}
@media (min-width: 900px) {
  .page-id-731 .columns.last .below_photo, .page-id-1347 .columns.last .below_photo {
    padding: 0;
    text-align: left;
    padding-left: 160px;
    margin: 60px auto 0 0;
  }
}
.page-id-731 .columns.last .below_photo h4, .page-id-1347 .columns.last .below_photo h4 {
  letter-spacing: 0.15em;
  color: #62a2d4;
}
.page-id-731 .columns.last .below_photo .large, .page-id-1347 .columns.last .below_photo .large {
  font-size: 20px;
}
@media (min-width: 900px) {
  .page-id-731 .columns.last .below_photo .large, .page-id-1347 .columns.last .below_photo .large {
    font-size: 24px;
  }
}

.page-id-36 .below {
  background: #084c91;
  padding: 80px 0 60px;
  margin-bottom: 60px;
}

.region {
  margin: 60px auto 0;
}
.region .headline {
  position: relative;
  margin-bottom: 40px;
}
.region .headline .line {
  height: 2px;
  width: 100%;
  background: #f4f4f4;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.region .headline h2 {
  display: inline-block;
  width: max-content;
  background: #ffffff;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.region .grid {
  justify-content: center;
  margin: 0 -30px 30px;
}
@media (min-width: 1200px) {
  .region .grid {
    margin: 0 -60px 30px;
  }
}
.region .grid .grid-item {
  margin-bottom: 60px;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 900px) {
  .region .grid .grid-item {
    max-width: none;
    width: 33.3333333%;
  }
}
.region .grid .grid-item a {
  display: block;
}
.region .grid .inner {
  padding: 0 30px;
}
@media (min-width: 1200px) {
  .region .grid .inner {
    padding: 0 60px;
  }
}
.region .grid img {
  margin: 0 auto 20px;
}
.region .grid .grades {
  border-top: 2px solid #dbdbdb;
  margin: 0 auto;
  padding: 10px 0 0;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #62a2d4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.school-intro {
  background: #f4f4f4;
  padding: 60px 0 70px;
}
.school-intro .grid {
  align-items: center;
}
.school-intro .general {
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .school-intro .general {
    margin: 0;
  }
}
.school-intro .general .logo {
  max-width: 250px;
  margin: 0 auto 30px;
  max-height: 185px;
}
@media (min-width: 600px) {
  .school-intro .general .logo {
    max-width: 300px;
  }
}
@media (min-width: 1024px) {
  .school-intro .general .logo {
    max-height: 220px;
    max-width: 385px;
  }
}
@media (min-width: 1200px) {
  .school-intro .general .logo {
    max-width: 450px;
  }
}
.school-intro .general p {
  line-height: 1.4;
  margin-bottom: 8px;
}
.school-intro .general .phonefax {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.school-intro .general .phonefax span {
  margin: 0 8px 8px;
  display: inline-block;
}
.school-intro .general strong {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #084c91;
}
.school-intro a:not(.button):hover {
  color: #2372bd;
  text-decoration: underline;
}
.school-intro .button {
  margin-top: 30px;
}
@media (min-width: 900px) {
  .school-intro .photo {
    padding-left: 60px;
  }
}
.school-intro .photo img {
  width: 100%;
  height: auto;
}
.school-intro .social {
  margin-top: 10px;
}
.school-intro .social li {
  margin: 0 7px;
}
.school-intro .social li a {
  font-size: 36px;
  text-decoration: none;
  color: #2372bd;
}
.school-intro .social li a:hover {
  text-decoration: none;
  color: #fab83a;
}

.admin-bar .school-nav {
  top: 46px;
}
@media (min-width: 783px) {
  .admin-bar .school-nav {
    top: 32px;
  }
}

.school-nav {
  background: #62a2d4;
  padding: 24px 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
}
.school-nav ul.grid {
  display: none;
  justify-content: center;
}
@media (min-width: 900px) {
  .school-nav ul.grid {
    display: flex;
  }
}
.school-nav li {
  padding: 0 15px;
  border-left: 2px solid #084c91;
}
@media (min-width: 1024px) {
  .school-nav li {
    padding: 0 25px;
  }
}
@media (min-width: 1200px) {
  .school-nav li {
    padding: 0 40px;
  }
}
.school-nav li:first-of-type {
  border: none;
}
.school-nav a {
  color: #ffffff;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
.school-nav a:hover {
  color: #084c91;
}
.school-nav .custom-select {
  position: relative;
  background: #ffffff;
  border: 1px solid transparent;
  max-width: 350px;
  margin: 0 auto;
}
.school-nav .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #084c91;
}
.school-nav select {
  font-size: 16px;
  border: none;
  background: transparent;
  height: 45px;
  padding-left: 10px;
  color: #000000;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .school-nav {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.school-nav:after {
  display: block;
}

.about-school {
  background: #084c91;
  padding: 60px 0 70px;
}
@media (min-width: 900px) {
  .about-school {
    padding: 100px 0;
  }
}
.about-school .grid {
  flex-wrap: wrap-reverse;
}
.about-school .leader {
  width: 350px;
  margin: 50px auto 0px;
}
@media (min-width: 900px) {
  .about-school .leader {
    margin: 0;
    padding-right: 30px;
  }
}
@media (min-width: 1024px) {
  .about-school .leader {
    padding-right: 60px;
  }
}
.about-school .leader img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.about-school .leader .info {
  background: #62a2d4;
  color: #ffffff;
  padding: 30px 20px;
  margin-top: -3px;
  position: relative;
  z-index: 2;
}
.about-school .leader .info h4 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
.about-school .leader .info .name {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.about-school .leader .info .openbio {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}
.about-school .leader .info .openbio:hover {
  color: #fab83a;
}
.about-school .about {
  width: 100%;
}
@media (min-width: 900px) {
  .about-school .about {
    width: calc(100% - 350px);
    padding-left: 30px;
    border-left: 2px solid #2372bd;
  }
}
@media (min-width: 1024px) {
  .about-school .about {
    padding-left: 60px;
  }
}
.about-school .about:first-child {
  margin: 0 auto;
  border: none;
  padding: 0;
}
.about-school .about .base .large {
  font-size: 20px;
}
@media (min-width: 900px) {
  .about-school .about .base .large {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .about-school .about .base .large {
    font-size: 28px;
  }
}
.about-school .about .base *:last-child {
  margin-bottom: 0px;
}

.bio {
  display: none;
}
.bio.open {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bio.open .overlay {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.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: 10;
  display: block;
  max-width: 1000px;
  padding: 40px;
  background: #f4f4f4;
  padding: 60px 20px 40px;
  border-bottom: 10px solid #fab83a;
  height: 100%;
}
@media (min-width: 600px) {
  .bio.open .popup {
    padding: 60px 40px;
  }
}
@media (min-width: 900px) {
  .bio.open .popup {
    padding: 100px 90px;
    height: auto;
  }
}
.bio.open .popup p {
  line-height: 1.6;
  margin-bottom: 30px;
  color: #000000;
  font-size: 14px;
}
@media (min-width: 900px) {
  .bio.open .popup p {
    font-size: 17px;
  }
}
.bio.open .popup p:last-of-type {
  margin-bottom: 0px;
}
.bio.open .popup h3 {
  font-size: 20px;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .bio.open .popup h3 {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .bio.open .popup h3 {
    font-size: 28px;
  }
}
.bio.open .popup .closeModal {
  position: absolute;
  right: 12px;
  top: 12px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #fab83a;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.bio.open .popup .closeModal:hover {
  color: #2372bd;
}
.bio.open .popup .closeModal:hover .icon-close {
  background: #2372bd;
}
.bio.open .popup .closeModal .icon-close {
  background: #fab83a;
  font-size: 16px;
  width: 25px;
  height: 25px;
  border-radius: 999em;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0px;
  color: #ffffff;
  margin-left: 4px;
  position: relative;
  top: -1px;
}

.columns.our-vision, .columns.additional {
  margin: 70px auto 50px;
}
@media (min-width: 900px) {
  .columns.our-vision, .columns.additional {
    margin: 80px auto 100px;
  }
}
.columns.our-vision .wrap1200, .columns.additional .wrap1200 {
  margin-bottom: 60px;
}
.columns.our-vision .grid, .columns.additional .grid {
  align-items: flex-start;
}
.columns.our-vision .grid .grid-item, .columns.additional .grid .grid-item {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .columns.our-vision .grid .grid-item, .columns.additional .grid .grid-item {
    margin-bottom: 0px;
  }
}
.columns.our-vision .grid .grid-item img, .columns.additional .grid .grid-item img {
  width: 100%;
}
@media (min-width: 900px) {
  .columns.our-vision .grid .grid-item .base, .columns.additional .grid .grid-item .base {
    padding-left: 30px;
  }
}
@media (min-width: 1024px) {
  .columns.our-vision .grid .grid-item .base, .columns.additional .grid .grid-item .base {
    padding-left: 60px;
  }
}
.columns.our-vision .base hr, .columns.additional .base hr {
  margin-bottom: 40px;
}
.columns.our-vision .base h3, .columns.additional .base h3 {
  text-transform: uppercase;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #62a2d4;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .columns.our-vision .base h3, .columns.additional .base h3 {
    font-size: 22px;
  }
}
@media (min-width: 900px) {
  .columns.our-vision .base h3, .columns.additional .base h3 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .columns.our-vision .base h3, .columns.additional .base h3 {
    font-size: 26px;
  }
}
.columns.our-vision .base *:last-child, .columns.additional .base *:last-child {
  margin-bottom: 0px;
}

.values {
  background: #f4f4f4;
  padding: 60px 0 1px;
  position: relative;
}
@media (min-width: 900px) {
  .values {
    padding: 80px 0 1px;
  }
}
.values .wrap1200 {
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .values .grid {
    margin: 0 -20px;
  }
}
.values .grid .grid-item {
  width: 100%;
  margin-bottom: 40px;
  border-bottom: 2px solid #dbdbdb;
}
@media (min-width: 900px) {
  .values .grid .grid-item {
    border-bottom: none;
    width: 33.3333333%;
  }
}
.values .grid .grid-item:last-of-type {
  border-bottom: none;
}
.values .grid .grid-item:first-of-type .inner {
  border: 0px;
}
@media (min-width: 900px) {
  .values .grid .grid-item:nth-of-type(4n) .inner {
    border: 0px;
  }
}
@media (min-width: 900px) {
  .values .grid .inner {
    height: 100%;
    padding: 0 20px;
    border-left: 2px solid #dbdbdb;
  }
}
.values .grid .inner h3 {
  margin-bottom: 5px;
}
.values .grid .inner .large {
  line-height: 1.2;
  margin-bottom: 10px;
}
.values .values-background {
  border-bottom: 70px solid #ffffff;
  margin-bottom: -2px;
}
.values .values-background .base.alt {
  background: #62a2d4;
  padding: 60px 30px 30px;
  margin-bottom: -70px;
}
@media (min-width: 600px) {
  .values .values-background .base.alt {
    padding: 60px 40px 30px;
  }
}
@media (min-width: 900px) {
  .values .values-background .base.alt {
    padding: 70px 90px 60px;
  }
}
.values .values-background .base.alt h3 {
  color: #ffffff;
  font-size: 24px;
}
@media (min-width: 900px) {
  .values .values-background .base.alt h3 {
    font-size: 28px;
  }
}

.accountability {
  background: #f4f4f4;
  padding: 60px 0;
  position: relative;
}
@media (min-width: 900px) {
  .accountability {
    padding: 80px 0;
  }
}
.accountability .tablepress td, .accountability .tablepress th {
  text-align: center;
}
.accountability .tablepress td {
  border-left: 1px solid #ddd;
}

.page-id-38 .twoColumn {
  background: #084c91;
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
  margin: 0 auto 90px;
}
@media (min-width: 900px) {
  .page-id-38 .twoColumn {
    padding: 90px 0 30px;
    margin: 0px auto 120px;
  }
}
.page-id-38 .twoColumn .grid {
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .page-id-38 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 500px);
  }
}
@media (min-width: 1200px) {
  .page-id-38 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 645px);
  }
}
.page-id-38 .twoColumn .grid .grid-item:last-of-type {
  margin: 0 auto;
  margin-bottom: -60px;
}
@media (min-width: 900px) {
  .page-id-38 .twoColumn .grid .grid-item:last-of-type {
    width: 500px;
    margin: 0;
    margin-bottom: -90px;
  }
}
@media (min-width: 1200px) {
  .page-id-38 .twoColumn .grid .grid-item:last-of-type {
    width: 645px;
  }
}
.page-id-38 .twoColumn .grid .grid-item:last-of-type img {
  width: 100%;
  height: auto;
}
.page-id-38 .twoColumn .grid .base {
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .page-id-38 .twoColumn .grid .base {
    padding: 0;
    padding-right: 60px;
  }
}
.page-id-38 .kipps-commitment {
  margin: 60px auto;
}
.page-id-38 .kipps-commitment .grid {
  align-items: center;
}
.page-id-38 .kipps-commitment img {
  width: 100%;
}
.page-id-38 .kipps-commitment .grid-item {
  margin-bottom: 30px;
}
.page-id-38 .kipps-commitment .grid-item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .page-id-38 .kipps-commitment .grid-item:last-of-type {
    padding-left: 30px;
  }
}
@media (min-width: 1400px) {
  .page-id-38 .kipps-commitment .grid-item:last-of-type {
    padding-left: 50px;
  }
}
.page-id-38 .callout {
  margin: 90px auto;
  background: #f4f4f4;
  padding: 80px 0 50px;
  position: relative;
}
.page-id-38 .callout .icon {
  position: absolute;
  top: -55px;
  width: 110px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
}
.page-id-38 .callout .button {
  left: 0px;
  right: 0px;
  margin: 0 auto;
  bottom: -19px;
  position: absolute;
  width: max-content;
}
@media (min-width: 900px) {
  .page-id-38 .callout .button {
    bottom: -22px;
  }
}

.page-id-849 .below.dblue, .page-id-1930 .below.dblue {
  margin-bottom: 0px;
}
@media (min-width: 900px) {
  .page-id-849 .twoColumn .reversed .content .base, .page-id-1930 .twoColumn .reversed .content .base {
    margin-left: 0 !important;
  }
  .page-id-849 .twoColumn .reversed .content .base::after, .page-id-1930 .twoColumn .reversed .content .base::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 100%;
    left: -88px;
    right: auto;
    top: 0;
    background: #f4f4f4;
  }
}
.page-id-849 .twoColumn .content, .page-id-1930 .twoColumn .content {
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .page-id-849 .twoColumn .content, .page-id-1930 .twoColumn .content {
    width: calc(60% - 90px);
  }
}
.page-id-849 .twoColumn .content .base, .page-id-1930 .twoColumn .content .base {
  text-align: left;
}
@media (min-width: 900px) {
  .page-id-849 .twoColumn .content .base, .page-id-1930 .twoColumn .content .base {
    max-width: 930px;
    padding: 60px 60px 40px;
    margin: 0px 0px 0px auto;
    width: 94%;
    position: relative;
  }
  .page-id-849 .twoColumn .content .base::after, .page-id-1930 .twoColumn .content .base::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 100%;
    right: -88px;
    top: 0;
    background: #f4f4f4;
  }
}
.page-id-849 .twoColumn .photo, .page-id-1930 .twoColumn .photo {
  position: relative;
  z-index: 3;
}
@media (min-width: 900px) {
  .page-id-849 .twoColumn .photo, .page-id-1930 .twoColumn .photo {
    width: calc(40% + 90px);
    margin-top: 60px;
  }
}
.page-id-849 .twoColumn .photo img, .page-id-1930 .twoColumn .photo img {
  width: 100%;
}
.page-id-849 .application-process, .page-id-1930 .application-process {
  margin: 60px auto;
}
.page-id-849 .application-process .grid, .page-id-1930 .application-process .grid {
  margin-top: 60px;
}
.page-id-849 .application-process .grid .grid-item, .page-id-1930 .application-process .grid .grid-item {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .page-id-849 .application-process .grid .grid-item, .page-id-1930 .application-process .grid .grid-item {
    width: 25%;
  }
}
.page-id-849 .application-process .grid .grid-item:nth-of-type(1) .label, .page-id-1930 .application-process .grid .grid-item:nth-of-type(1) .label {
  background: #084c91;
  position: relative;
}
.page-id-849 .application-process .grid .grid-item:nth-of-type(1) .label::after, .page-id-1930 .application-process .grid .grid-item:nth-of-type(1) .label::after {
  display: none;
}
.page-id-849 .application-process .grid .grid-item:nth-of-type(2) .label, .page-id-1930 .application-process .grid .grid-item:nth-of-type(2) .label {
  background: #2372bd;
}
.page-id-849 .application-process .grid .grid-item:nth-of-type(2) .label::after, .page-id-1930 .application-process .grid .grid-item:nth-of-type(2) .label::after {
  color: #084c91;
}
.page-id-849 .application-process .grid .grid-item:nth-of-type(3) .label, .page-id-1930 .application-process .grid .grid-item:nth-of-type(3) .label {
  background: #62a2d4;
}
.page-id-849 .application-process .grid .grid-item:nth-of-type(3) .label::after, .page-id-1930 .application-process .grid .grid-item:nth-of-type(3) .label::after {
  color: #2372bd;
}
.page-id-849 .application-process .grid .grid-item:nth-of-type(4) .label, .page-id-1930 .application-process .grid .grid-item:nth-of-type(4) .label {
  background: #fab83a;
}
.page-id-849 .application-process .grid .grid-item:nth-of-type(4) .label::after, .page-id-1930 .application-process .grid .grid-item:nth-of-type(4) .label::after {
  color: #62a2d4;
}
.page-id-849 .application-process .grid .label, .page-id-1930 .application-process .grid .label {
  padding: 20px 10px;
  text-align: center;
  color: #ffffff;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  position: relative;
}
@media (min-width: 600px) {
  .page-id-849 .application-process .grid .label, .page-id-1930 .application-process .grid .label {
    padding: 30px 10px;
    font-size: 22px;
  }
}
@media (min-width: 900px) {
  .page-id-849 .application-process .grid .label, .page-id-1930 .application-process .grid .label {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .page-id-849 .application-process .grid .label, .page-id-1930 .application-process .grid .label {
    font-size: 24px;
  }
}
.page-id-849 .application-process .grid .label::after, .page-id-1930 .application-process .grid .label::after {
  content: "\e908";
  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;
  position: absolute;
  right: auto;
  width: 10px;
  font-size: 18px;
  top: 50%;
  width: auto;
  left: -35px;
  transform: translateY(-50%) rotate(-90deg);
  display: none;
}
@media (min-width: 900px) {
  .page-id-849 .application-process .grid .label::after, .page-id-1930 .application-process .grid .label::after {
    display: block;
  }
}
@media (min-width: 1200px) {
  .page-id-849 .application-process .grid .label::after, .page-id-1930 .application-process .grid .label::after {
    font-size: 20px;
  }
}
.page-id-849 .application-process .grid .base, .page-id-1930 .application-process .grid .base {
  padding: 20px 0 0;
}
@media (min-width: 900px) {
  .page-id-849 .application-process .grid .base, .page-id-1930 .application-process .grid .base {
    padding: 20px 20px 0;
  }
}
.page-id-849 .application-process .below.base hr, .page-id-1930 .application-process .below.base hr {
  background: #f4f4f4;
  width: 100%;
  margin: 20px auto;
}
.page-id-849 .application-process .links, .page-id-1930 .application-process .links {
  justify-content: center;
}
.page-id-849 .application-process .links .link, .page-id-1930 .application-process .links .link {
  padding: 0 8px 16px;
  width: 100%;
}
@media (min-width: 480px) {
  .page-id-849 .application-process .links .link, .page-id-1930 .application-process .links .link {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .page-id-849 .application-process .links .link, .page-id-1930 .application-process .links .link {
    width: 25%;
  }
}
.page-id-849 .application-process .links .link .button, .page-id-1930 .application-process .links .link .button {
  width: 100%;
  padding: 12px 5px;
  font-size: 18px;
}
@media (min-width: 1200px) {
  .page-id-849 .application-process .links .link .button, .page-id-1930 .application-process .links .link .button {
    font-size: 20px;
  }
}

.page-id-933 .table-container {
  background: #f4f4f4;
  padding: 30px 5px 20px;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .page-id-933 .table-container {
    padding: 30px 20px 20px;
  }
}
.page-id-933 .table-container #tablepress-5 thead th {
  text-align: center;
}
.page-id-933 .table-container #tablepress-5 td {
  text-align: center;
  width: 33%;
  border-left: 1px solid #ddd;
}
.page-id-933 .table-container #tablepress-5 td.column-1 {
  text-align: left;
  border-left: none;
}
.page-id-933 .benefits {
  margin: 60px auto 1px;
}
.page-id-933 .benefits .grid {
  justify-content: center;
  margin-top: 60px;
}
.page-id-933 .benefits .grid-item {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 480px) {
  .page-id-933 .benefits .grid-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .page-id-933 .benefits .grid-item {
    width: 33.333333%;
  }
}
@media (min-width: 480px) {
  .page-id-933 .benefits .grid-item .inner {
    padding: 0 20px;
  }
}
.page-id-933 .benefits .grid-item .icon {
  width: 90px;
  margin: 0 auto 10px;
}
@media (min-width: 600px) {
  .page-id-933 .benefits .grid-item .icon {
    width: 100px;
  }
}
.page-id-933 .benefits .grid-item .label {
  display: block;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #62a2d4;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (min-width: 900px) {
  .page-id-933 .benefits .grid-item .label {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .page-id-933 .benefits .grid-item .label {
    font-size: 28px;
  }
}

.page-id-1215 .page-hero img {
  width: 280px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .page-id-1215 .page-hero img {
    width: 500px;
  }
}
@media (min-width: 900px) {
  .page-id-1215 .page-hero img {
    width: 700px;
  }
}
.page-id-1215 .page-hero .hero p {
  font-size: 24px;
}
@media (min-width: 600px) {
  .page-id-1215 .page-hero .hero p {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .page-id-1215 .page-hero .hero p {
    font-size: 48px;
  }
}
.page-id-1215 .twoColumn {
  background: #084c91;
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
  margin: 0 auto 90px;
}
@media (min-width: 900px) {
  .page-id-1215 .twoColumn {
    padding: 90px 0 30px;
    margin: 0px auto 120px;
  }
}
.page-id-1215 .twoColumn .grid {
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .page-id-1215 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 500px);
  }
}
@media (min-width: 1200px) {
  .page-id-1215 .twoColumn .grid .grid-item:first-of-type {
    width: calc(100% - 645px);
  }
}
.page-id-1215 .twoColumn .grid .grid-item:last-of-type {
  margin: 0 auto;
  margin-bottom: -60px;
}
@media (min-width: 900px) {
  .page-id-1215 .twoColumn .grid .grid-item:last-of-type {
    width: 500px;
    margin: 0;
    margin-bottom: -90px;
  }
}
@media (min-width: 1200px) {
  .page-id-1215 .twoColumn .grid .grid-item:last-of-type {
    width: 645px;
  }
}
.page-id-1215 .twoColumn .grid .grid-item:last-of-type img {
  width: 100%;
  height: auto;
}
.page-id-1215 .twoColumn .grid .base {
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .page-id-1215 .twoColumn .grid .base {
    padding: 0;
    padding-right: 60px;
  }
}

/*==============================================================*/
/*==============================================================*/
.base .gform_wrapper .gform_description {
  margin: 0 0 40px;
  color: #2372bd;
  display: block;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
}
@media (min-width: 900px) {
  .base .gform_wrapper .gform_description {
    font-size: 24px;
  }
}
.base .gform_wrapper ul.gform_fields {
  margin: 0;
  display: table;
  width: 100%;
  clear: both;
}
.base .gform_wrapper li, .base .gform_wrapper .gfield {
  width: 100%;
  float: left;
  padding-left: 0;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1;
}
.base .gform_wrapper li:before, .base .gform_wrapper .gfield:before {
  display: none;
}
.base .gform_wrapper li label, .base .gform_wrapper li legend, .base .gform_wrapper .gfield label, .base .gform_wrapper .gfield legend {
  display: block;
  font-size: 14px;
  color: #084c91;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 7px 0 0 0 !important;
}
.base .gform_wrapper li label.gfield_label, .base .gform_wrapper li legend.gfield_label, .base .gform_wrapper .gfield label.gfield_label, .base .gform_wrapper .gfield legend.gfield_label {
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  margin: 0 0 7px 0;
  font-size: 18px;
  letter-spacing: normal;
  text-transform: none;
}
.base .gform_wrapper .gfield_required {
  color: #fab83a;
  margin-left: 3px;
}
.base .gform_wrapper input, .base .gform_wrapper textarea {
  width: 100% !important;
  box-shadow: none;
  border: 1px solid #dbdbdb;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  padding: 8px;
  height: 45px;
  background: #f4f4f4;
  font-size: 18px;
}
@media (min-width: 768px) {
  .base .gform_wrapper input, .base .gform_wrapper textarea {
    font-size: 20px;
  }
}
.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 !important;
  }
}
.base .gform_wrapper .ginput_container_select {
  position: relative;
  background: #f4f4f4;
  border: 1px solid #dbdbdb;
}
.base .gform_wrapper .ginput_container_select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #2372bd;
}
.base .gform_wrapper .ginput_container_select .custom-select {
  position: relative;
  background: #f4f4f4;
  border: 1px solid #dbdbdb;
}
.base .gform_wrapper .ginput_container_select .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 7px;
  right: 10px;
  color: #2372bd;
}
.base .gform_wrapper .ginput_container_select select {
  font-size: 0.9em;
  border: none;
  background: transparent;
  height: 40px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .base .gform_wrapper .ginput_container_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.base .gform_wrapper .ginput_container_select:after {
  display: block;
}
.base .gform_wrapper ul.gfield_checkbox, .base .gform_wrapper ul.gfield_radio {
  margin: 0;
}
.base .gform_wrapper ul.gfield_checkbox li, .base .gform_wrapper ul.gfield_radio li {
  display: inline-block;
  margin: 5px 20px 10px 0;
  padding: 0;
}
.base .gform_wrapper ul.gfield_checkbox li input, .base .gform_wrapper ul.gfield_checkbox li label, .base .gform_wrapper ul.gfield_radio li input, .base .gform_wrapper ul.gfield_radio li label {
  display: inline-block;
  margin: 0;
  height: auto;
  width: auto;
  text-transform: none;
  letter-spacing: normal;
  vertical-align: middle;
  padding: 0;
}
.base .gform_wrapper ul.gfield_checkbox li input, .base .gform_wrapper ul.gfield_radio li input {
  position: relative;
  width: auto !important;
  top: 3px !important;
}
.base .gform_wrapper ul.gfield_checkbox li label, .base .gform_wrapper ul.gfield_radio li label {
  color: #2372bd;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
.base .gform_wrapper .form-nolabel label.gfield_label {
  display: none !important;
}
.base .gform_wrapper .gform_footer {
  text-align: left;
}
.base .gform_wrapper .gform_button {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #fab83a;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 20px;
  overflow: hidden;
  height: auto;
  font-size: 16px;
  width: 200px;
  min-width: 180px;
  cursor: pointer;
  border: none;
  width: 200px !important;
}
@media (min-width: 600px) {
  .base .gform_wrapper .gform_button {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .base .gform_wrapper .gform_button {
    font-size: 20px;
  }
}
.base .gform_wrapper .gform_button:hover {
  background: #2372bd;
  color: #ffffff;
}
.base .gform_wrapper .validation_error {
  display: none;
}
.base .gform_wrapper li.gfield_error input, .base .gform_wrapper li.gfield_error textarea, .base .gform_wrapper li.gfield_error .custom-select select {
  border: 1px solid #2372bd;
}
.base .gform_wrapper li.gfield_error .validation_message {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: italic;
  color: #2372bd;
  font-size: 14px;
  display: block;
  clear: both;
  margin-top: 5px;
  padding-top: 4px;
}

.gform_confirmation_message {
  color: #2372bd;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  line-height: 1.4em;
  padding: 30px 0;
  text-align: center;
  font-size: 22px;
}
@media (min-width: 900px) {
  .gform_confirmation_message {
    font-size: 27px;
  }
}

.page-id-256 header .row1 .grid:first-of-type {
  justify-content: flex-end;
}
.page-id-256 header .grid-item.show-1400 {
  display: none !important;
}
.page-id-256 header .hide-1400 {
  display: none !important;
}

.gform_wrapper#gform_wrapper_5.gform_validation_error .gform_validation_errors {
  box-shadow: none;
  padding: 0;
  margin: 0 0 30px;
  border: none;
  background: none;
}
.gform_wrapper#gform_wrapper_5.gform_validation_error .gform_validation_errors h2 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.3em;
  text-align: center;
  color: #62a2d4;
}
.gform_wrapper#gform_wrapper_5.gform_validation_error .gform_validation_errors h2 span {
  display: none;
}
.gform_wrapper#gform_wrapper_5 .gform_required_legend {
  display: none;
}
.gform_wrapper#gform_wrapper_5 form .gform_body .gform_fields {
  grid-row-gap: 25px;
}
.gform_wrapper#gform_wrapper_5 .gfield.gfield_error .gfield_description.validation_message {
  padding: 0;
  border: none;
  margin: 5px 0 0;
  background: none;
  font-size: 12px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #62a2d4;
}
.gform_wrapper#gform_wrapper_5 .gfield.gfield_error .gfield_label, .gform_wrapper#gform_wrapper_5 .gfield.gfield_error .gform-field-label {
  color: #2372bd;
}
.gform_wrapper#gform_wrapper_5 .gfield.gfield_error input, .gform_wrapper#gform_wrapper_5 .gfield.gfield_error textarea, .gform_wrapper#gform_wrapper_5 .gfield.gfield_error select {
  border: 1px solid #fab83a;
}

.gform_wrapper#gform_wrapper_5 form .gform_body .gform_fields .gfield--type-choice .gchoice {
  display: inline-block;
  margin: 0 30px 10px 0;
}
.gform_wrapper#gform_wrapper_5 form .gform_body .gform_fields .gfield--type-choice .gchoice input {
  width: auto !important;
  height: auto !important;
}
.gform_wrapper#gform_wrapper_5 form .gform_body .gform_fields .gfield--type-choice .gchoice label {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.gform_wrapper#gform_wrapper_5 form .gform_body .gform_fields .gfield--type-address .address_line_1 {
  margin-bottom: 15px;
}
.gform_wrapper#gform_wrapper_5 form .gform_body .gform_fields .gfield--type-address .address_state {
  flex: 0 0 25%;
}
.gform_wrapper#gform_wrapper_5 form .gform_body .gform_fields .gfield--type-address .address_zip {
  flex: 0 0 25%;
}
.gform_wrapper#gform_wrapper_5 .gform_ajax_spinner {
  display: none;
}

.gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_2 span {
  width: 48% !important;
}
@media (max-width: 768px) {
  .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_2 span {
    width: 100% !important;
  }
}

.faqs {
  margin: 60px auto;
}
.faqs .expanded {
  display: none;
}
.faqs .content {
  padding: 0px 0px 10px 50px;
}
@media (min-width: 600px) {
  .faqs .content {
    padding: 0px 0px 10px 60px;
  }
}
.faqs .content P:last-of-type {
  margin-bottom: 30px;
}
.faqs .expand {
  display: block;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #f4f4f4;
  padding: 20px 0px 20px 50px;
  border-top: 2px solid #f4f4f4;
  cursor: pointer;
  position: relative;
}
@media (min-width: 600px) {
  .faqs .expand {
    padding: 30px 0px 30px 60px;
  }
}
.faqs .expand:first-of-type {
  border: none;
}
.faqs .expand:hover::before {
  background: #62a2d4;
  color: #ffffff;
}
.faqs .expand::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: "\e90b";
  position: absolute;
  padding: 4px;
  left: 0px;
  color: #ffffff;
  background: #fab83a;
  border-radius: 999em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}
@media (min-width: 600px) {
  .faqs .expand::before {
    font-size: 30px;
    padding: 6px;
  }
}
.faqs .expand.open::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: #ffffff;
  background: #62a2d4;
  content: "\e90c";
}
.faqs .expand h3 {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  color: #084c91;
  margin-bottom: 0px;
  font-size: 22px;
}
@media (min-width: 600px) {
  .faqs .expand h3 {
    font-size: 30px;
  }
}
@media (min-width: 900px) {
  .faqs .expand h3 {
    font-size: 36px;
  }
}

.tablepress {
  line-height: 1.4;
  font-size: 12px;
  background: #ffffff;
  position: relative;
}
@media (min-width: 600px) {
  .tablepress {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .tablepress {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .tablepress {
    font-size: 18px;
  }
}
.tablepress thead th {
  background: #2372bd !important;
  color: #fff !important;
  font-size: 12px;
}
@media (min-width: 600px) {
  .tablepress thead th {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .tablepress thead th {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .tablepress thead th {
    font-size: 18px;
  }
}
.tablepress .odd td {
  background: #f4f4f4 !important;
}
.tablepress .row-hover tr:hover td {
  background: #f4f4f4 !important;
}

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

h2.tablepress-table-name {
  text-align: center;
  font-size: 20px;
  margin-bottom: 0px;
  color: #2372bd;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.2;
  background: #f4f4f4;
  padding: 10px;
}
@media (min-width: 600px) {
  h2.tablepress-table-name {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  h2.tablepress-table-name {
    font-size: 28px;
  }
}

#modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
#modal .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
#modal video {
  width: 100%;
  max-height: 100%;
}
#modal .wrap1000 {
  position: relative;
}
#modal #closeModal {
  position: absolute;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  z-index: 2;
  justify-content: center;
  align-items: center;
  top: -35px;
  right: 0px;
  text-transform: uppercase;
}
#modal #closeModal .text {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  padding-right: 7px;
}
#modal #closeModal .icon-close {
  font-size: 24px;
  margin-top: -1px;
}
#modal #closeModal:hover {
  color: #fab83a;
}

#modal.on {
  display: block;
}
#modal.on video {
  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;
}

#popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: scroll;
  background: #084c91;
}
@media (min-width: 900px) {
  #popup {
    background: transparent;
  }
}
#popup .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  #popup .container {
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
}
#popup .container .popup-container {
  text-align: center;
  background: #084c91;
  position: relative;
  max-width: 800px;
  padding: 60px 20px 10px;
  text-align: center;
  margin: 20px auto;
}
@media (min-width: 900px) {
  #popup .container .popup-container {
    margin: 0 auto;
    padding: 60px 60px 10px;
  }
}
#popup .container .popup-container.two-col {
  max-width: 900px;
}
#popup .container .logo {
  margin: 0 auto 40px;
  width: 250px;
}
@media (min-width: 600px) {
  #popup .container .logo {
    width: 350px;
  }
}
@media (min-width: 900px) {
  #popup .container .logo {
    width: 450px;
  }
}
#popup .container .base {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  #popup .container .base {
    padding: 0 30px;
  }
}
#popup .container .base.last {
  border-top: 2px solid #2372bd;
  padding-top: 50px;
}
@media (min-width: 900px) {
  #popup .container .base.last {
    padding-top: 0px;
    border: none;
    border-left: 2px solid #2372bd;
  }
}
@media (min-width: 900px) {
  #popup .container .base h3 {
    font-size: 40px;
  }
}
#popup .container .base h4 {
  margin-bottom: 15px;
  line-height: 1.1;
  font-size: 20px;
}
@media (min-width: 900px) {
  #popup .container .base h4 {
    font-size: 24px;
  }
}
#popup .container .base p {
  margin-bottom: 20px;
}
#popup .container #closePopup {
  display: flex;
  align-items: center;
  z-index: 999;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #ffffff;
  cursor: pointer;
  padding: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}
#popup .container #closePopup:hover {
  color: #fab83a;
}
#popup .container #closePopup .text {
  margin-right: 5px;
  display: inline-block;
}

#popup.on {
  display: block;
}

#videoPopup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: scroll;
  background: transparent;
}
#videoPopup .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
#videoPopup .popup-container {
  text-align: center;
  position: relative;
  max-width: 800px;
  width: 94%;
  text-align: center;
  margin: 20px auto;
}
#videoPopup #closePopup {
  display: flex;
  align-items: center;
  z-index: 999;
  position: absolute;
  top: 0px;
  right: 0px;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}
#videoPopup #closePopup:hover {
  color: #fab83a;
}
#videoPopup #closePopup .text {
  margin-right: 5px;
  display: inline-block;
}

#videoPopup.on {
  display: block;
}

.pum-theme-kipp .pum-content {
  padding: 40px 30px 30px;
}
.pum-theme-kipp .pum-content p, .pum-theme-kipp .pum-content li, .pum-theme-kipp .pum-content h2, .pum-theme-kipp .pum-content h3, .pum-theme-kipp .pum-content h4 {
  color: #ffffff;
}
.pum-theme-kipp .pum-content p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.pum-theme-kipp .pum-content p.large {
  font-size: 20px;
  color: #084c91;
}
@media (min-width: 600px) {
  .pum-theme-kipp .pum-content p.large {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content p.large {
    font-size: 28px;
  }
}
.pum-theme-kipp .pum-content .orange {
  color: #fab83a;
}
.pum-theme-kipp .pum-content .blue {
  color: #084c91;
}
.pum-theme-kipp .pum-content em {
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
}
.pum-theme-kipp .pum-content strong {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
.pum-theme-kipp .pum-content em strong,
.pum-theme-kipp .pum-content strong em {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: italic;
}
.pum-theme-kipp .pum-content hr {
  width: 90px;
  margin: 20px 0;
  border: none;
  height: 2px;
  background: #fab83a;
}
.pum-theme-kipp .pum-content h2 {
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 20px;
  color: #084c91;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .pum-theme-kipp .pum-content h2 {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content h2 {
    font-size: 48px;
  }
}
.pum-theme-kipp .pum-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #084c91;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .pum-theme-kipp .pum-content h3 {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content h3 {
    font-size: 28px;
  }
}
.pum-theme-kipp .pum-content h4 {
  font-size: 16px;
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-transform: uppercase;
  color: #084c91;
}
@media (min-width: 600px) {
  .pum-theme-kipp .pum-content h4 {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content h4 {
    font-size: 20px;
  }
}
.pum-theme-kipp .pum-content blockquote {
  margin: 40px auto;
  border-left: 2px solid #fab83a;
  padding-left: 20px;
}
@media (min-width: 600px) {
  .pum-theme-kipp .pum-content blockquote {
    padding-left: 30px;
  }
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content blockquote {
    margin-left: 40px;
  }
}
.pum-theme-kipp .pum-content blockquote p {
  font-family: "Whitney A", "Whitney B";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: #2372bd;
  line-height: 1.6;
}
@media (min-width: 600px) {
  .pum-theme-kipp .pum-content blockquote p {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content blockquote p {
    font-size: 28px;
  }
}
.pum-theme-kipp .pum-content blockquote p:last-of-type {
  margin-bottom: 0px;
}
.pum-theme-kipp .pum-content a:not(.button) {
  color: #2372bd;
  text-decoration: underline;
}
.pum-theme-kipp .pum-content a:not(.button):hover {
  text-decoration: none;
}
.pum-theme-kipp .pum-content ul {
  margin: 0 0 30px 0px;
  list-style: none;
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content ul {
    margin: 0 0 40px 30px;
  }
}
.pum-theme-kipp .pum-content ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.5;
  font-size: 16px;
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content ul li {
    font-size: 18px;
  }
}
.pum-theme-kipp .pum-content ul li::before {
  position: absolute;
  top: 1px;
  left: 8px;
  text-indent: -8px;
  content: "•";
  color: #fab83a;
}
.pum-theme-kipp .pum-content ul li .button {
  margin-top: 20px;
}
.pum-theme-kipp .pum-content ul li ul {
  margin-top: 7px;
  margin-bottom: 0px;
}
.pum-theme-kipp .pum-content h4 + ol,
.pum-theme-kipp .pum-content h4 + ul {
  margin-top: 20px;
}
.pum-theme-kipp .pum-content ol {
  list-style: none;
  counter-reset: a;
  margin: 0 0 30px 20px;
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content ol {
    margin: 0 0 30px 30px;
  }
}
.pum-theme-kipp .pum-content ol li {
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 16px;
  padding-left: 20px;
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content ol li {
    font-size: 18px;
  }
}
.pum-theme-kipp .pum-content ol li .button {
  margin-top: 20px;
}
.pum-theme-kipp .pum-content ol li ul {
  margin: 10px 0 0 10px;
}
.pum-theme-kipp .pum-content ol li ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.5;
  font-size: 16px;
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content ol li ul li {
    font-size: 18px;
  }
}
.pum-theme-kipp .pum-content ol li ul li::before {
  position: absolute;
  font-size: 16px;
  top: 2px;
  left: 8px;
  text-indent: -12px;
  content: "•";
  color: #fab83a;
}
.pum-theme-kipp .pum-content ol li strong {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
}
.pum-theme-kipp .pum-content ol li::before {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  position: absolute;
  text-indent: -35px;
  counter-increment: a;
  content: counter(a) ".";
  color: #2372bd;
  font-size: 18px;
  top: -2px;
}
@media (min-width: 900px) {
  .pum-theme-kipp .pum-content ol li::before {
    font-size: 20px;
  }
}
.pum-theme-kipp .pum-close:hover {
  color: #fab83a !important;
}

.pum-theme-content-only .pum-content .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.pum-theme-content-only .pum-content .embed-container iframe, .pum-theme-content-only .pum-content .embed-container object, .pum-theme-content-only .pum-content .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pum-overlay.pum-active,
.pum-overlay.pum-active .popmake.active {
  display: block !important;
}

.pum-theme-content-only .pum-container .pum-content + .pum-close {
  top: -5px !important;
  right: 0 !important;
  color: #ffffff !important;
  width: 80px !important;
}
.pum-theme-content-only .pum-container .pum-content + .pum-close:hover {
  color: #fab83a !important;
}

#mega-menu-wrap-primary {
  width: 100%;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary {
    padding: 0;
  }
}
#mega-menu-wrap-primary .mega-menu-logo {
  margin-left: 7px;
  width: 220px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
  margin-left: 0px;
}
#mega-menu-wrap-primary .mega-toggle-blocks-right {
  margin-right: 5px;
}
#mega-menu-wrap-primary .mega-toggle-blocks-right .button {
  line-height: 19px;
  padding: 10px;
  font-size: 14px;
  min-width: 80px;
}
@media (min-width: 480px) {
  #mega-menu-wrap-primary .mega-toggle-blocks-right .button {
    min-width: 95px;
    font-size: 16px;
  }
}
@media (min-width: 600px) {
  #mega-menu-wrap-primary .mega-toggle-blocks-right .button {
    margin-right: 10px;
    font-size: 18px;
    padding: 10px 20px;
    min-width: 150px;
  }
}
#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
  top: 50px;
  padding: 20px 0;
  border-bottom: 6px solid #084c91;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    top: auto;
    padding: 0;
    border-bottom: none;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
  border-top: 1px solid #084c91;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    border: none;
    margin-left: 10px;
  }
}
@media (min-width: 1400px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    margin-left: 15px;
  }
}
@media (min-width: 1500px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    margin-left: 25px;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-disable-link a.mega-menu-link:hover {
  cursor: default;
}
@media (min-width: 900px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor a.mega-menu-link {
    color: #084c91;
    border-bottom: 1px solid #084c91;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-btn a.mega-menu-link {
  background: #fab83a;
  color: #084c91;
  text-transform: uppercase;
  padding: 0 20px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-btn a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-btn a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-btn a.mega-menu-link:active {
  color: #ffffff;
  background: #2372bd;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator::after {
  margin: 0px 0px 0px -1px;
  color: #fab83a;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #084c91;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-size: 20px;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:active {
  color: #fab83a;
}
@media (min-width: 900px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:active {
    border-bottom: 1px solid #084c91;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
  padding: 10px 0;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    padding: 10px 0 20px;
    border-bottom: 6px solid #fab83a;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  font-size: 16px;
  line-height: 1.2 !important;
  margin: 16px auto !important;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:first-of-type {
  border: none !important;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
  padding: 20px 10px;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
    top: 78px;
    border-bottom: 6px solid #fab83a;
  }
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
  display: flex;
  flex-wrap: wrap;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
  display: block;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    padding: 60px 20px 40px !important;
    width: calc(100% + 120px);
    left: -120px;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu::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;
    position: absolute;
    content: "\e908";
    color: #ffffff;
    top: -2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    padding: 60px 20px 40px !important;
    width: calc(100% + 150px);
    left: -150px;
  }
}
@media (min-width: 1400px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    width: calc(100% + 200px);
    left: -200px;
  }
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
  margin-bottom: 20px;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
    margin: 0;
    padding: 0 20px;
    float: none;
    border-right: 2px solid #2372bd;
  }
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column:last-of-type {
    border: none;
  }
}
@media (min-width: 1400px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
    padding: 0 30px;
  }
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0px;
  line-height: 1.2;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column li.mega-menu-item:first-of-type a.mega-menu-link {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fab83a;
  pointer-events: none;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column li.mega-menu-item:first-of-type a.mega-menu-link:hover {
  color: #62a2d4;
  font-weight: 700 !important;
  font-size: 16px !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0px;
  line-height: 1.2;
  margin-bottom: 10px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  font-weight: 400;
  text-transform: none;
  color: #ffffff;
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-size: 16px;
  }
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
  font-weight: 400;
  color: #fab83a;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
  width: 100%;
}
@media (min-width: 600px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
    width: 25%;
  }
}

#mega-menu-wrap-primary .mega-toggle-blocks-right .button {
  color: #084c91;
}
#mega-menu-wrap-primary .mega-toggle-blocks-right .button:hover {
  color: #ffffff;
}

.page-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.page-hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 900px) {
  .page-hero .overlay {
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.5) 100%);
  }
}
.page-hero .wrap1400 {
  position: relative;
  z-index: 3;
}
.page-hero .hero {
  max-width: 750px;
  text-align: center;
  padding: 60px 0;
  color: #ffffff;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .page-hero .hero {
    padding: 90px 0 120px;
  }
}
@media (min-width: 900px) {
  .page-hero .hero {
    margin: 0;
    padding: 150px 0 170px;
    text-align: left;
  }
}
.page-hero .hero h1 {
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  font-family: "Whitney A", "Whitney B";
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .page-hero .hero h1 {
    font-size: 43px;
  }
}
@media (min-width: 900px) {
  .page-hero .hero h1 {
    font-size: 55px;
  }
}
@media (min-width: 1024px) {
  .page-hero .hero h1 {
    font-size: 65px;
  }
}
@media (min-width: 1400px) {
  .page-hero .hero h1 {
    font-size: 70px;
  }
}
.page-hero .hero h4 {
  font-family: "Whitney A", "Whitney B";
  font-weight: 700;
  font-style: normal;
  color: #fab83a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  font-size: 16px;
}
@media (min-width: 600px) {
  .page-hero .hero h4 {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .page-hero .hero h4 {
    font-size: 20px;
  }
}
.page-hero .hero p {
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .page-hero .hero p {
    font-size: 23px;
  }
}
.page-hero .hero .button {
  margin: 0 4px 10px;
}

/* 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;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  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: block;
}
.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: 35px;
  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;
  width: 35px;
  height: 35px;
  padding-bottom: 3px;
  border-radius: 999em;
  color: #fff;
  background: #fab83a;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in 222ms;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  top: 50%;
  left: 20px;
}
.slick-prev:hover:before, .slick-prev:focus:before {
  color: #fff;
  background: #084c91;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -35px;
}
.slick-prev:before {
  content: "\e905";
}
[dir=rtl] .slick-prev:before {
  content: "\e904";
}

.slick-next {
  top: 50%;
  right: 20px;
}
.slick-next:hover:before, .slick-next:focus:before {
  color: #fff;
  background: #084c91;
}
[dir=rtl] .slick-next {
  left: -35px;
  right: auto;
}
.slick-next:before {
  content: "\e904";
}
[dir=rtl] .slick-next:before {
  content: "\e905";
}

/* 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;
}
