@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);
  }
}
@media (min-width: 600px) {
  .animate-items .is-visible:nth-child(1) .item {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: 0.4s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .scroll {
    opacity: 0;
  }

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

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

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

  .is-visible.fadeLeft {
    animation: fadeLeft;
    -webkit-animation-name: fadeLeft;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
    animation-timing-function: 0.6s cubic-bezier(0.175, 0.885, 0.2, 1.5);
    animation-fill-mode: forwards;
  }
}
.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-size: 16px;
  color: #000000;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 900px) {
  body, html {
    font-size: 18px;
    scroll-behavior: smooth;
  }
}

::selection {
  background: #000000;
  color: #ffffff;
}

::-moz-selection {
  background: #000000;
  color: #ffffff;
}

.button {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #46759c;
  color: #ffffff;
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 10px;
  font-size: 14px !important;
  min-width: 200px;
  cursor: pointer;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
}
.button:hover {
  background: #214866;
  color: #ffffff;
}

.page-base {
  margin: 80px auto;
}

.base p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.base p.large {
  font-size: 20px;
}
@media (min-width: 900px) {
  .base p.large {
    font-size: 24px;
  }
}
.base p.large strong {
  color: #214866;
}
.base p.footnote {
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: #46759c;
}
.base strong {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.base em {
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.base strong em,
.base em strong {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.base hr {
  width: 120px;
  margin: 12px 0;
  height: 2px;
  background: #efefef;
  border: none;
}
.base h2 {
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #46759c;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .base h2 {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .base h2 {
    font-size: 22px;
  }
}
.base h3 {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #46759c;
  font-size: 18px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .base h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (min-width: 900px) {
  .base h3 {
    font-size: 28px;
  }
}
.base a:not(.button) {
  color: #46759c;
  text-decoration: underline;
}
.base a:not(.button):hover {
  text-decoration: none;
}
.base blockquote {
  margin: 40px auto;
  border-left: 4px solid #46759c;
  padding-left: 20px;
}
@media (min-width: 600px) {
  .base blockquote {
    padding-left: 30px;
  }
}
.base blockquote p {
  font-size: 18px;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #214866;
}
@media (min-width: 600px) {
  .base blockquote p {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .base blockquote p {
    font-size: 24px;
  }
}
.base ul {
  margin: 0 0 30px 20px;
  list-style: none;
}
@media (min-width: 900px) {
  .base ul {
    margin: 0 0 40px 20px;
  }
}
@media (min-width: 600px) {
  .base ul.twoColumn {
    column-count: 2;
    column-gap: 30px;
  }
}
.base ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.5;
}
.base ul li::before {
  position: absolute;
  top: -1px;
  left: 8px;
  text-indent: -15px;
  content: "•";
  color: #46759c;
}
.base ul li ul {
  margin: 12px 0 30px 0;
}
.base ol {
  list-style: none;
  counter-reset: a;
  margin: 0 0 30px 20px;
}
@media (min-width: 900px) {
  .base ol {
    margin: 0 0 30px 30px;
  }
}
.base ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  line-height: 1.5;
}
.base ol li::before {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  text-indent: -35px;
  counter-increment: a;
  content: counter(a) ".";
  color: #46759c;
  top: 0px;
}
.base .alignnone, .base .aligncenter {
  margin: 0 auto 30px;
}
.base .alignright {
  margin: 0 auto 30px;
}
@media (min-width: 900px) {
  .base .alignright {
    margin: 0 0 30px 30px;
    float: right;
  }
}
.base .alignleft {
  margin: 0 auto 30px;
}
@media (min-width: 900px) {
  .base .alignleft {
    float: left;
    margin: 0 30px 30px 0;
  }
}
.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%;
}

.site-header {
  position: relative;
  z-index: 999;
  background: #214866;
}
@media (min-width: 900px) {
  .site-header {
    padding: 20px 0;
    background: transparent;
    margin-bottom: -121px;
  }
}
.site-header .grid {
  align-items: center;
}
.site-header .site-logo {
  display: block;
  width: 135px;
  margin-left: 3%;
}
@media (min-width: 900px) {
  .site-header .site-logo {
    margin: 0;
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .site-header .site-logo {
    width: 230px;
  }
}
.site-header .menu-primary-container {
  display: none;
}
@media (min-width: 900px) {
  .site-header .menu-primary-container {
    display: block;
  }
}
.site-header .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 900px) {
  .site-header .menu li {
    margin-left: 25px;
  }
}
@media (min-width: 1024px) {
  .site-header .menu li {
    margin-left: 30px;
  }
}
@media (min-width: 1200px) {
  .site-header .menu li {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .site-header .menu li {
    margin-left: 60px;
  }
}
.site-header .menu li.menu-item-99 {
  display: none;
}
@media (min-width: 900px) {
  .site-header .menu li.current-menu-item a {
    box-shadow: inset 0 -4px 0 0 #ffffff;
  }
}
.site-header .menu a {
  font-family: "termina", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  color: #ffffff;
  padding: 5px 0;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .site-header .menu a {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .site-header .menu a {
    font-size: 16px;
  }
}
.site-header .menu a:hover {
  color: #eeebe4;
}

footer .container {
  padding: 30px 0 40px;
  background: #eeebe4;
}
@media (min-width: 1024px) {
  footer .container {
    padding: 60px 0;
  }
}
footer .container .grid-item {
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  footer .container .grid-item {
    text-align: left;
    width: 33.3333333%;
    border-left: 2px solid #dfd9cf;
  }
}
footer .container .grid-item:first-of-type {
  border: none;
}
footer .container .grid-item.with-logo {
  display: flex;
  align-items: center;
  margin: 20px auto;
  padding: 20px 0;
  border-top: 2px solid #dfd9cf;
  border-bottom: 2px solid #dfd9cf;
}
@media (min-width: 1024px) {
  footer .container .grid-item.with-logo {
    padding: 0;
    margin: 0 auto;
    border-top: none;
    border-bottom: none;
  }
}
footer .site-logo {
  display: block;
  width: 130px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  footer .site-logo {
    width: 200px;
  }
}
@media (min-width: 900px) {
  footer .site-logo {
    width: 235px;
  }
}
footer .menu li {
  margin: 20px 0;
}
footer .menu a {
  font-family: "termina", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  color: #214866;
}
footer .menu a:hover {
  color: #46759c;
}
@media (min-width: 1024px) {
  footer .contact {
    padding-left: 60px;
  }
}
footer .contact p {
  line-height: 1.4;
  margin: 12px auto;
  color: #214866;
}
footer .contact a {
  color: #000000;
}
footer .contact a:hover {
  color: #46759c;
}
footer .contact a.email {
  color: #214866;
  text-decoration: underline;
}
footer .contact a.email:hover {
  text-decoration: none;
}
footer .contact strong {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #214866;
}
footer .copyright {
  padding: 30px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (min-width: 600px) {
  footer .copyright {
    font-size: 12px;
  }
}
footer .copyright a {
  color: #214866;
  text-decoration: underline;
}
footer .copyright a:hover {
  text-decoration: none;
}

.home-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 900px) {
  .home-hero {
    padding-top: 200px;
  }
}
.home-hero .hero {
  background: rgba(33, 72, 102, 0.8);
  padding: 60px 20px 30px;
  color: #ffffff;
}
@media (min-width: 600px) {
  .home-hero .hero {
    padding: 80px 60px 60px;
  }
}
@media (min-width: 900px) {
  .home-hero .hero {
    color: #000000;
    max-width: 600px;
    border-top: 10px solid #eeebe4;
    background: #ffffff;
  }
}
@media (min-width: 1200px) {
  .home-hero .hero {
    max-width: 700px;
    padding: 80px 90px 60px;
  }
}
.home-hero .hero .large strong {
  color: #ffffff;
}
@media (min-width: 900px) {
  .home-hero .hero .large strong {
    color: #214866;
  }
}

.two-column {
  margin: 80px auto;
}
.two-column.border {
  margin: 80px auto 0;
  border-bottom: 60px solid #eeebe4;
}
@media (min-width: 900px) {
  .two-column.border {
    border-bottom: 80px solid #eeebe4;
  }
}
.two-column.border .photo {
  margin-bottom: -60px;
}
@media (min-width: 900px) {
  .two-column.border .photo {
    margin-bottom: -80px;
  }
}
.two-column.tan {
  background: #eeebe4;
  padding: 60px 0 40px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .two-column.tan {
    border-bottom: 80px solid #ffffff;
  }
}
.two-column.tan .photo {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .two-column.tan .photo {
    margin-bottom: -120px;
  }
}
.two-column:not(.reverse) .grid {
  align-items: center;
}
@media (min-width: 900px) {
  .two-column:not(.reverse) .grid .photo {
    padding-left: 90px;
  }
}
.two-column .photo img {
  width: 100%;
}
.two-column .base {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .two-column .base {
    margin-bottom: 0px;
    padding-left: 90px;
  }
}
.two-column .introduction {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .two-column .introduction {
    margin-bottom: 60px;
  }
}

.members {
  margin: 80px auto 20px;
}
.members .grid-item {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 600px) {
  .members .grid-item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .members .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 1200px) {
  .members .grid-item {
    width: 25%;
  }
}
.members .item {
  max-width: 235px;
  margin: 0 auto;
}
.members img {
  margin: 0 auto 15px;
  border: 1px solid #efefef;
}
.members h3 {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #46759c;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.members hr {
  width: 120px;
  margin: 12px auto;
  height: 2px;
  background: #efefef;
  border: none;
}
.members p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.members p.location {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0px;
}
.members p.website a {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #46759c;
  text-decoration: underline;
  text-transform: uppercase;
}
.members p.website a:hover {
  text-decoration: none;
  color: #214866;
}

.life-residents {
  margin: 60px auto 10px;
}
@media (min-width: 900px) {
  .life-residents .grid {
    margin: 0 -30px;
  }
}
@media (min-width: 1200px) {
  .life-residents .grid {
    margin: 0 -60px;
  }
}
.life-residents .grid-item {
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .life-residents .grid-item:last-of-type {
    border-left: 2px solid #efefef;
  }
}
.life-residents .inner {
  border-top: 2px solid #efefef;
}
@media (min-width: 900px) {
  .life-residents .inner {
    margin: 0 30px;
  }
}
@media (min-width: 1200px) {
  .life-residents .inner {
    margin: 0 60px;
  }
}
.life-residents .label {
  background: #ffffff;
  display: inline-block;
  position: relative;
  top: -12px;
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #46759c;
  font-size: 16px;
  text-transform: uppercase;
  padding-right: 10px;
}
@media (min-width: 600px) {
  .life-residents .label {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .life-residents .label {
    font-size: 22px;
  }
}
.life-residents .base {
  padding: 30px 0 0;
}

.officers {
  margin: 80px auto 40px;
}
.officers .label {
  position: relative;
  margin-bottom: 60px;
}
.officers .label .line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  height: 2px;
  background: #efefef;
  width: 100%;
}
.officers .label h2 {
  background: #ffffff;
  display: inline-block;
  position: relative;
  z-index: 2;
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #46759c;
  font-size: 16px;
  text-transform: uppercase;
  padding-right: 10px;
}
@media (min-width: 600px) {
  .officers .label h2 {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .officers .label h2 {
    font-size: 22px;
  }
}
.officers .grid-item {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 600px) {
  .officers .grid-item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .officers .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 1200px) {
  .officers .grid-item {
    width: 25%;
  }
}
.officers .item {
  max-width: 235px;
  margin: 0 auto;
}
.officers img {
  margin: 0 auto 15px;
  border: 1px solid #efefef;
}
.officers h3 {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #46759c;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.officers hr {
  width: 120px;
  margin: 12px auto;
  height: 2px;
  background: #efefef;
  border: none;
}
.officers p.title {
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
}

.post-index {
  margin: 60px auto 30px;
}
@media (min-width: 768px) {
  .post-index {
    margin: 60px auto;
  }
}

.blog-thumbnail {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-thumbnail:hover .overlay {
  opacity: 1;
}
.blog-thumbnail:hover img {
  transform: scale(1.1);
}
.blog-thumbnail img {
  width: 100%;
  transition: ease-in 0.4s;
  border: 1px solid #efefef;
}
.blog-thumbnail .overlay {
  transition: ease-in-out 0.2s;
  opacity: 0;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(33, 72, 102, 0.9);
  color: #ffffff;
  text-transform: uppercase;
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
}

.post-list {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .post-list {
    margin: 0px -20px;
  }
}
.post-list .grid-item {
  width: 100%;
  margin-bottom: 60px;
  opacity: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .post-list .grid-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .post-list .grid-item {
    width: 33.3333333%;
  }
}
.post-list .post {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .post-list .post {
    margin: 0 20px;
  }
}
.post-list .date {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}
@media (min-width: 600px) {
  .post-list .date {
    font-size: 14px;
  }
}
.post-list .post-title:hover h3 {
  color: #214866;
}
.post-list .post-title h3 {
  color: #46759c;
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
}
.post-list hr {
  width: 120px;
  margin: 12px auto;
  height: 2px;
  background: #efefef;
  border: none;
}
.post-list .excerpt {
  line-height: 1.6;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.post-list .readmore {
  margin-top: 10px;
}
.post-list .readmore a {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #46759c;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.post-list .readmore a:hover {
  text-decoration: none;
  color: #214866;
}

#firstPost {
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  #firstPost {
    margin-bottom: 80px;
  }
}
#firstPost .grid {
  align-items: center;
}
#firstPost .blog-thumbnail {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  #firstPost .blog-thumbnail {
    margin: 0;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  #firstPost .blog-thumbnail {
    width: 870px;
  }
}
#firstPost .inner {
  width: 100%;
  text-align: center;
}
@media (min-width: 900px) {
  #firstPost .inner {
    text-align: left;
    width: 50%;
    padding-left: 40px;
  }
}
@media (min-width: 1400px) {
  #firstPost .inner {
    width: calc(100% - 870px);
    padding-left: 60px;
  }
}
#firstPost .date {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}
@media (min-width: 600px) {
  #firstPost .date {
    font-size: 14px;
  }
}
#firstPost .post-title:hover h3 {
  color: #214866;
}
#firstPost .post-title h3 {
  color: #46759c;
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  #firstPost .post-title h3 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  #firstPost .post-title h3 {
    font-size: 28px;
  }
}
#firstPost hr {
  width: 120px;
  margin: 12px auto;
  height: 2px;
  background: #efefef;
  border: none;
}
@media (min-width: 900px) {
  #firstPost hr {
    margin: 12px 0;
  }
}
#firstPost .excerpt {
  line-height: 1.6;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 10px;
}
#firstPost .readmore {
  margin-top: 10px;
}
#firstPost .readmore a {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #46759c;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#firstPost .readmore a:hover {
  text-decoration: none;
  color: #214866;
}

.single-post .post-header .date {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}
@media (min-width: 600px) {
  .single-post .post-header .date {
    font-size: 14px;
  }
}
.single-post .post-header h1 {
  color: #46759c;
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .single-post .post-header h1 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .single-post .post-header h1 {
    font-size: 36px;
  }
}
.single-post .post-header hr {
  width: 120px;
  margin: 30px auto;
  height: 2px;
  background: #efefef;
  border: none;
}
.single-post .featured {
  margin: 30px auto 40px;
}
.single-post .featured img {
  width: 100%;
  max-width: none;
  border: 1px solid #efefef;
}
.single-post .base.addmargin {
  margin-top: 60px;
}
.single-post .share-buttons {
  margin: 60px auto;
}
.single-post .share-buttons .text {
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  color: #46759c;
  display: block;
  margin-bottom: 10px;
}
.single-post .share-buttons a:hover {
  opacity: 0.9;
}

.blog-sidebar {
  margin: 60px auto;
  width: 100%;
  border-bottom: 2px solid #eeebe4;
}
@media (min-width: 900px) {
  .blog-sidebar {
    border-top: 2px solid #eeebe4;
  }
}
.blog-sidebar .grid {
  align-items: center;
}
.blog-sidebar .nav-link {
  width: 50%;
  text-align: center;
  margin-bottom: 30px;
  border: 2px solid #eeebe4;
}
@media (min-width: 900px) {
  .blog-sidebar .nav-link {
    margin: 0;
    border: none;
    padding: 0;
    width: 170px;
  }
}
@media (min-width: 1200px) {
  .blog-sidebar .nav-link {
    width: 230px;
  }
}
@media (min-width: 900px) {
  .blog-sidebar .nav-link.nav-next {
    text-align: right;
  }
}
.blog-sidebar .nav-link a {
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  width: 100%;
  text-transform: uppercase;
  color: #46759c;
  padding: 10px;
  display: block;
}
@media (min-width: 600px) {
  .blog-sidebar .nav-link a {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .blog-sidebar .nav-link a {
    padding: 0;
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .blog-sidebar .nav-link a {
    font-size: 14px;
  }
}
.blog-sidebar .nav-link a:hover {
  color: #214866;
}
.blog-sidebar .dropdowns {
  width: 100%;
  order: 3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .blog-sidebar .dropdowns {
    order: inherit;
    border-left: 2px solid #eeebe4;
    border-right: 2px solid #eeebe4;
    width: calc(100% - 340px);
  }
}
@media (min-width: 1200px) {
  .blog-sidebar .dropdowns {
    width: calc(100% - 460px);
  }
}
.blog-sidebar .widget {
  margin: 0 auto 20px;
  width: 100%;
}
@media (min-width: 600px) {
  .blog-sidebar .widget {
    margin: 0 0 30px;
    width: 50%;
    padding: 0px 10px;
    max-width: 350px;
  }
}
@media (min-width: 900px) {
  .blog-sidebar .widget {
    margin: 0;
    padding: 15px 20px;
  }
}
.blog-sidebar h3 {
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 5px;
  font-size: 14px;
  width: 100%;
  text-transform: uppercase;
  color: #46759c;
}
@media (min-width: 900px) {
  .blog-sidebar h3 {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .blog-sidebar h3 {
    font-size: 14px;
  }
}
.blog-sidebar .custom-select {
  position: relative;
  background: #eeebe4;
  width: 100%;
}
.blog-sidebar .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 10px;
  color: #46759c;
}
@media (min-width: 600px) {
  .blog-sidebar .custom-select:after {
    top: 10px;
  }
}
.blog-sidebar select {
  font-size: 12px;
  border: 1px solid rgba(223, 217, 207, 0.2);
  background: #eeebe4;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  color: #000000;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-appearance: none !important;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media (min-width: 600px) {
  .blog-sidebar select {
    font-size: 16px;
    height: 45px;
  }
}
@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;
}

.base .gform_wrapper {
  margin: 30px auto 40px;
  max-width: 900px;
}
.base .gform_wrapper .gsection {
  border-bottom: 2px solid #eeebe4;
}
.base .gform_wrapper .gform_description {
  margin: 0 0 40px;
  color: #000000;
  display: block;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: italic;
}
@media (min-width: 900px) {
  .base .gform_wrapper .gform_description {
    font-size: 24px;
  }
}
.base .gform_wrapper .gform_fields {
  margin: 0;
  display: table;
  width: 100%;
  clear: both;
}
.base .gform_wrapper .gfield {
  width: 100%;
  float: left;
  padding-left: 0;
  margin-bottom: 30px;
  line-height: 1;
}
.base .gform_wrapper .gfield:before {
  display: none;
}
.base .gform_wrapper .gfield label {
  display: block;
  font-size: 16px;
  color: #000000;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: italic;
  margin: 5px 0 0 0;
}
.base .gform_wrapper .gfield .gfield_label {
  color: #000000;
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #46759c;
  letter-spacing: normal;
}
.base .gform_wrapper .gfield_required {
  color: #46759c;
  margin-left: 3px;
}
.base .gform_wrapper input, .base .gform_wrapper textarea {
  width: 100%;
  box-shadow: none;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding: 8px 10px;
  height: 50px;
  background: #eeebe4;
  border-color: transparent;
  font-size: 18px;
}
@media (min-width: 900px) {
  .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;
  }
}
.base .gform_wrapper .ginput_container_select {
  position: relative;
  height: 50px;
  border-color: transparent;
}
.base .gform_wrapper .ginput_container_select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #000000;
}
.base .gform_wrapper .ginput_container_select select {
  font-size: 0.9em;
  border: none;
  background: #eeebe4;
  height: 48px;
  padding-left: 10px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@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 .ginput_container_checkbox,
.base .gform_wrapper .ginput_container_radio {
  /* after */
  /* before */
}
.base .gform_wrapper .ginput_container_checkbox .gchoice,
.base .gform_wrapper .ginput_container_radio .gchoice {
  line-height: 1.6;
  margin: 5px 0;
}
.base .gform_wrapper .ginput_container_checkbox .gchoice label,
.base .gform_wrapper .ginput_container_radio .gchoice label {
  color: #000000;
  font-family: "libre-franklin", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
  line-height: normal;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  .base .gform_wrapper .ginput_container_checkbox .gchoice label,
.base .gform_wrapper .ginput_container_radio .gchoice label {
    font-size: 20px;
  }
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox],
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label:before,
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label:after,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label:before,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:not(:checked) + label:after,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:not(:checked) + label:after {
  width: 20px;
  height: 20px;
  background: #eeebe4;
  border: 2px solid #eeebe4;
  top: 2px;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:checked + label:after,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:checked + label:after {
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #46759c;
  background-color: #46759c;
  z-index: 0;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:not(:checked) + label:before,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.base .gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:checked + label:before,
.base .gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:checked + label:before {
  top: 2px;
  left: 2px;
  width: 7px;
  height: 13px;
  margin-top: 3px;
  border-top: 0px solid transparent;
  border-left: 0px solid transparent;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio],
.base .gform_wrapper .ginput_container_radio input[type=radio] {
  visibility: hidden;
  position: absolute;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio] + label:before,
.base .gform_wrapper .ginput_container_radio input[type=radio] + label:before {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  background: #ffffff;
  border: 2px solid #000000;
  top: 3px;
  position: relative;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio]:checked + label:before,
.base .gform_wrapper .ginput_container_radio input[type=radio]:checked + label:before {
  background: #ffffff;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio]:checked + label::after,
.base .gform_wrapper .ginput_container_radio input[type=radio]:checked + label::after {
  content: " ";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 999em;
  left: 2px;
  top: 5px;
  background: #000000;
}
.base .gform_wrapper .ginput_container_checkbox input[type=radio] + label:before,
.base .gform_wrapper .ginput_container_radio input[type=radio] + label:before {
  border-radius: 50%;
}
.base .gform_wrapper .form-nolabel .gfield_label, .base .gform_wrapper .form-nolabel .gsection_title {
  display: none !important;
}
.base .gform_wrapper .gform_footer .gform_button {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #46759c;
  color: #ffffff;
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 10px 10px;
  height: auto;
  overflow: hidden;
  font-size: 14px !important;
  width: 230px;
  cursor: pointer;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
}
.base .gform_wrapper .gform_footer .gform_button:hover {
  background: #214866;
  color: #ffffff;
}
.base .gform_wrapper .gform_validation_errors {
  display: none;
}
.base .gform_wrapper .gfield_error input, .base .gform_wrapper .gfield_error textarea {
  border: 1px solid #46759c !important;
}
.base .gform_wrapper .gfield_error .validation_message {
  font-family: "libre-franklin", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #214866;
  text-align: left;
  font-size: 13px;
  display: block;
  clear: both;
  padding-top: 7px;
}

.gform_confirmation_message {
  color: #46759c;
  font-family: "libre-franklin", sans-serif;
  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-hero {
  padding: 60px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 600px) {
  .page-hero {
    padding: 80px 0 60px;
  }
}
@media (min-width: 900px) {
  .page-hero {
    padding: 220px 0 120px;
  }
}
.page-hero h1, .page-hero .h1 {
  font-family: "termina", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  font-size: 32px;
  letter-spacing: -0.02em;
}
@media (min-width: 480px) {
  .page-hero h1, .page-hero .h1 {
    font-size: 36px;
  }
}
@media (min-width: 600px) {
  .page-hero h1, .page-hero .h1 {
    font-size: 48px;
  }
}
@media (min-width: 900px) {
  .page-hero h1, .page-hero .h1 {
    font-size: 55px;
  }
}
@media (min-width: 1200px) {
  .page-hero h1, .page-hero .h1 {
    font-size: 72px;
  }
}
.page-hero h1 span, .page-hero .h1 span {
  font-family: "termina", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: normal;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #eeebe4;
}
@media (min-width: 600px) {
  .page-hero h1 span, .page-hero .h1 span {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  .page-hero h1 span, .page-hero .h1 span {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .page-hero h1 span, .page-hero .h1 span {
    font-size: 22px;
  }
}

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

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

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

@media (max-width: 900px) {
  .menu-open .main-navigation {
    justify-content: space-between;
  }
  .menu-open .main-navigation .menu {
    padding: 20px 0;
    display: block;
    border-bottom: 10px solid #214866;
  }
  .menu-open .main-navigation .menu-primary-container {
    display: block;
    background: #46759c;
    z-index: 999;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 999;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    width: 100%;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu-open .main-navigation .menu-primary-container li {
    margin: 0 auto;
    text-align: left;
    width: 94%;
    max-width: 1400px;
    border-bottom: 1px solid #214866;
  }
  .menu-open .main-navigation .menu-primary-container li.menu-item-has-children {
    border: none;
  }
  .menu-open .main-navigation .menu-primary-container li:last-of-type {
    border: none;
  }
  .menu-open .main-navigation .menu-primary-container li a {
    font-size: 14px;
    line-height: 1.2;
    padding: 20px 0;
    line-height: 1.2;
    display: block;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "termina", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 900px) and (min-width: 600px) {
  .menu-open .main-navigation .menu-primary-container li a {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .menu-open .main-navigation .menu-primary-container li a:hover {
    color: #eeebe4;
  }
}
.menu-open .mobile-toggle:hover .menu-icon::after, .menu-open .mobile-toggle:hover .menu-icon::before {
  right: 0px !important;
}
.menu-open .mobile-toggle:hover .menu-icon span {
  left: 0px !important;
}
.menu-open .mobile-toggle .menu-icon::after, .menu-open .mobile-toggle .menu-icon::before {
  opacity: 0 !important;
  transition: all 0.6s ease;
}
.menu-open .mobile-toggle .menu-icon-left {
  transform: rotate(45deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-open .mobile-toggle .menu-icon-right {
  transform: rotate(-225deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.slick-list {
  position: relative;
  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: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 22;
  transition: ease-in 222ms;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "icomoon";
  font-size: 38px;
  line-height: 0.8;
  padding: 3px;
  width: 40px;
  height: 40px;
  border-radius: 999em;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  transition: ease-in 222ms;
  color: #b01a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0px;
}
.slick-prev:hover:before, .slick-prev:focus:before {
  color: #b01a1a;
  background: #fff;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -35px;
}
.slick-prev:before {
  content: "";
}
[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next {
  right: 0px;
}
.slick-next:hover:before, .slick-next:focus:before {
  color: #b01a1a;
  background: #fff;
}
[dir=rtl] .slick-next {
  left: -35px;
  right: auto;
}
.slick-next:before {
  content: "";
}
[dir=rtl] .slick-next:before {
  content: "";
}

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

/*# sourceMappingURL=base.css.map */
