@charset "UTF-8";
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, font, img, ins, kbd, q, s, samp, small, strike, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

body {
  line-height: 1;
  color: black;
  background: white;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
}

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

blockquote, q {
  quotes: "" "";
}

div, nav, header, footer, aside, section {
  display: block;
}

body {
  background: #FFF;
  text-align: center;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #002C3F;
  -webkit-font-smoothing: antialiased;
}

@media all and (min-width: 1024px) {
  body {
    font-size: 20px;
  }
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

#primary {
  overflow: hidden;
}

.container {
  width: auto;
  text-align: left;
  margin: 0 20px;
  position: relative;
}

@media all and (min-width: 1024px) {
  .container {
    width: auto;
    margin: 0 32px;
  }
}
@media all and (min-width: 1560px) {
  .container {
    width: 1490px;
    margin: auto;
  }
}
a {
  color: #FC8B27;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover, a:active, a:focus {
  color: #002C3F;
}

.clearfix {
  display: block;
  clear: both;
}

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

.page-block {
  position: relative;
}

.spacer {
  height: 48px;
}
.spacer.spacer-extra-small {
  height: 12px;
}
.spacer.spacer-small {
  height: 24px;
}
.spacer.spacer-large {
  height: 64px;
}
.spacer.spacer-extra-large {
  height: 96px;
}

.spacer-none {
  display: none;
}

@media all and (min-width: 1024px) {
  .spacer {
    height: 64px;
  }
  .spacer.spacer-extra-small {
    height: 24px;
  }
  .spacer.spacer-small {
    height: 32px;
  }
  .spacer.spacer-large {
    height: 96px;
  }
  .spacer.spacer-extra-large {
    height: 128px;
  }
}
/* Accessibility tweaks */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.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;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.next-page-loader,
.has-another-page {
  display: none !important;
}

/* Animate.css at top, added CSS at bottom */
/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* Added animation */
.animate {
  opacity: 0;
}

.animated-delay-100 {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
}

.animated-delay-200 {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

.animated-delay-300 {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

.animated-delay-400 {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

.animated-delay-500 {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}

.animated-delay-600 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

.animated-delay-700 {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}

.animated-delay-800 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}

.animated-delay-900 {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}

.animated-delay-1000 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

.animated-delay-1100 {
  animation-delay: 1s;
  -webkit-animation-delay: 1.1s;
}

.animated-delay-1200 {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}

.animated {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #002C3F;
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
  margin: 0 0 30px 0;
}

.highlight {
  position: relative;
  background: #7DC9D9;
  border-radius: 10px;
  padding: 2px 6px;
  margin: -2px -6px;
}

article h1 {
  font-size: 40px;
  line-height: 50px;
}

article h2 {
  font-size: 30px;
  line-height: 40px;
}

article h3 {
  font-size: 24px;
  line-height: 32px;
}

article h4 {
  font-size: 20px;
  line-height: 28px;
}

article h5 {
  font-size: 18px;
  line-height: 26px;
}

article h6 {
  font-size: 16px;
  line-height: 24px;
}

article p {
  line-height: 30px;
  margin: 0 0 30px 0;
}

article ul {
  margin: 0 0 11px 0;
}
article ul li {
  margin: 0 0 17px 0;
  padding: 0 0 0 30px;
  line-height: 28px;
  position: relative;
}
article ul li:before {
  position: absolute;
  line-height: 26px;
  content: "•";
  left: 5px;
  top: 0px;
  display: block;
}

article p + ul {
  margin-top: -11px;
}

article ol {
  margin: 0 0 11px 30px;
  list-style: decimal outside;
  line-height: 28px;
}
article ol li {
  margin: 0 0 17px 0;
  padding: 0px;
}

article p + ol {
  margin-top: -11px;
}

article small {
  display: block;
  margin: 0 0 28px 0;
  font-size: 16px;
  line-height: 26px;
}

strong {
  font-weight: 700;
}

blockquote p,
blockquote cite {
  -webkit-text-size-adjust: 100%;
}

article blockquote {
  margin: 0 0 60px 0;
  padding: 0 0 0 20px;
}
article blockquote p {
  font-weight: 700;
  font-size: 40px;
  line-height: 43px;
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  color: #FC8B27;
}

@media all and (min-width: 1024px) {
  article blockquote {
    padding: 0 0 0 105px;
  }
  article blockquote p {
    font-size: 50px;
    line-height: 53px;
  }
}
.button,
.nav-button a {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: none;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  background: #FC8B27;
  border-radius: 30px;
  padding: 16px 30px;
  line-height: 24px;
  height: 57px;
  font-size: 18px;
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #FFF;
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-align: center;
}
.button:hover,
.nav-button a:hover {
  background: #002C3F;
  color: #FFF;
}
.button:active, .button:focus,
.nav-button a:active,
.nav-button a:focus {
  background: #002C3F;
  color: #FFF;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.button.button-secondary,
.nav-button a.button-secondary {
  background: #002C3F;
}
.button.button-secondary:hover,
.nav-button a.button-secondary:hover {
  color: #FFF;
  background: #FC8B27;
}
.button.button-secondary:active, .button.button-secondary:focus,
.nav-button a.button-secondary:active,
.nav-button a.button-secondary:focus {
  background: #FC8B27;
  color: #FFF;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

@media all and (max-width: 1023px) and (min-width: 0px) {
  .button {
    font-size: 16px;
  }
}
textarea,
input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper.gravity-theme textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  color: #000;
  padding: 15px 30px;
  line-height: 18px;
  font-size: 13px;
  font-style: italic;
  color: #036075;
  position: relative;
  z-index: 1;
  box-shadow: none;
  background: #FFFFFF;
  border: 1px solid #036075;
  border-radius: 5px;
}

body .gform_wrapper.gravity-theme .gfield textarea.large,
textarea {
  height: 192px;
}

textarea:focus,
input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
body .gform_wrapper.gravity-theme textarea:focus {
  border-color: #002C3F;
  color: #002C3F;
}

body .gfield_error textarea,
body .gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gfield_error .gform_wrapper.gravity-theme textarea {
  border-color: #d81c1c;
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 16px;
  grid-column-gap: 22px;
}
body .gform_wrapper.gravity-theme .gfield {
  position: relative;
}
body .gform_wrapper.gravity-theme .gfield_label,
body .gform_wrapper.gravity-theme .ginput_container_name label {
  font-size: 16px;
  line-height: 18px;
  color: #036075;
  font-style: italic;
  font-weight: normal;
  display: block;
  margin: 0 0 15px 0;
  padding: 0px;
}
body .gform_wrapper.gravity-theme .gfield_label .gfield_required,
body .gform_wrapper.gravity-theme .ginput_container_name label .gfield_required {
  display: none;
}
body .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice {
  margin: 0 0 10px 0;
}
body .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice input {
  position: absolute;
  left: -9999px;
}
body .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice label {
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 0 48px;
  position: relative;
  cursor: pointer;
  color: #036075;
  font-style: italic;
}
body .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice label:before {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  border: 1px solid #036075;
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
}
body .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice label a {
  color: #002C3F;
  text-decoration: underline;
}
body .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice input:checked + label:before {
  background: #036075;
}
body .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice input:checked + label:after {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5706 4.82581L6.28488 11.1115L3.42773 8.25438" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
}
body .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice {
  margin: 0 0 10px 0;
}
body .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice input {
  position: absolute;
  left: -9999px;
}
body .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice label {
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 0 48px;
  position: relative;
  cursor: pointer;
  color: #036075;
  font-style: italic;
}
body .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice label:before {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  border: 1px solid #036075;
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
}
body .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice label a {
  color: #002C3F;
  text-decoration: underline;
}
body .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice input:checked + label:before {
  background: #036075;
}
body .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice input:checked + label:after {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5706 4.82581L6.28488 11.1115L3.42773 8.25438" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
}
body .gform_wrapper.gravity-theme .gfield_description {
  padding: 6px 0 0 0;
}
body .gform_wrapper.gravity-theme .gfield_validation_message,
body .gform_wrapper.gravity-theme .validation_message {
  background: #D24147;
  padding: 8px;
  color: #FFF;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  border: none;
  margin: 6px 0 0 0;
  border-radius: 4px;
}
body .gform_wrapper.gravity-theme .gform_validation_errors {
  padding: 0px;
  margin: 0 0 20px 0;
  border: none;
  box-shadow: none;
  background: transparent;
  background: #D24147;
  padding: 8px;
  color: #FFF;
  border: none;
  margin: 0 0 24px 0;
  border-radius: 4px;
}
body .gform_wrapper.gravity-theme .gform_validation_errors h2 {
  color: #FFF;
  font-size: 16px;
  line-height: 24px;
}
body .gform_wrapper.gravity-theme .gfield-choice-input + label {
  max-width: none !important;
}
body .gform_wrapper.gravity-theme .gform_footer {
  padding: 42px 0 0 0;
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  width: 100%;
  display: block;
  line-height: 24px !important;
}

.gform_wrapper .gform_validation_errors > h2 .gform-icon {
  display: none !important;
}

.slick-list {
  overflow: visible;
}

.slick-slider {
  position: relative;
}
.slick-slider .slick-arrow {
  position: absolute;
  z-index: 3;
}
.slick-slider .slick-arrow:not(.button) {
  bottom: 0px;
  width: 12px;
  height: 28px;
  color: #FC8B27;
}
.slick-slider .slick-arrow:not(.button) svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
}
.slick-slider .slick-arrow:not(.button).slick-prev {
  left: 0px;
}
.slick-slider .slick-arrow:not(.button).slick-next {
  right: 0px;
}
.slick-slider .slick-dots {
  bottom: 0px;
  left: 0px;
  width: 100%;
  position: absolute;
  text-align: center;
  z-index: 4;
}
.slick-slider .slick-dots li {
  display: inline-block;
  width: 26px;
  text-align: center;
  height: 28px;
  line-height: 28px;
}
.slick-slider .slick-dots li button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0px;
  border: none;
  margin: 0px;
  text-indent: -9999px;
  border-radius: 2px;
  font-size: 1px;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 2px;
  background: #FC8B27;
  opacity: 0.5;
  position: relative;
  border: none;
  top: -2px;
}
.slick-slider .slick-dots li.slick-active button {
  opacity: 1;
}

#site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  left: 0px;
  top: 20px;
}
#site-header .site-header-bar {
  background: #002C3F;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#site-header .site-header-bar .logo {
  padding: 20px 0px;
  position: relative;
}
#site-header .site-header-bar .logo .logo-spinner {
  position: absolute;
  top: 20px;
  left: 20px;
}
#site-header .site-header-bar nav ul li a {
  line-height: 45px;
  font-size: 20px;
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #FFF;
}
#site-header .site-header-bar nav ul li.nav-button a {
  height: 45px;
  padding: 0 30px;
  color: #FFF;
  display: block;
}
#site-header .site-header-bar nav ul li.nav-button a:hover, #site-header .site-header-bar nav ul li.nav-button a:active, #site-header .site-header-bar nav ul li.nav-button a:focus {
  color: #FC8B27;
  background: #FFF;
}
#site-header .site-header-bar .toggle-nav {
  display: none;
}

body.home #site-header .site-header-bar {
  background: #FFF;
}
body.home #site-header .site-header-bar nav ul li a {
  color: #036075;
}
body.home #site-header .site-header-bar nav ul li a:hover, body.home #site-header .site-header-bar nav ul li a:active, body.home #site-header .site-header-bar nav ul li a:focus {
  color: #002C3F;
}
body.home #site-header .site-header-bar nav ul li.nav-button a {
  color: #FFF;
}
body.home #site-header .site-header-bar nav ul li.nav-button a:hover, body.home #site-header .site-header-bar nav ul li.nav-button a:active, body.home #site-header .site-header-bar nav ul li.nav-button a:focus {
  background: #002C3F;
}

@media all and (max-width: 1023px) and (min-width: 0px) {
  #site-header .site-header-bar {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  #site-header .site-header-bar .logo .logo-spinner {
    left: 0px;
  }
  #site-header .site-header-bar .logo img {
    height: 48px;
  }
  #site-header .site-header-bar .toggle-nav {
    display: block;
    height: 48px;
    padding: 12px 16px;
  }
  #site-header .site-header-bar .toggle-nav:hover, #site-header .site-header-bar .toggle-nav:active, #site-header .site-header-bar .toggle-nav:focus {
    background: #FFF;
    color: #FC8B27;
  }
  #site-header .site-header-bar nav {
    display: none;
    flex-direction: column;
    padding: 0 0 20px 0;
    flex-basis: 100%;
  }
  #site-header .site-header-bar nav li {
    display: block;
    border-top: 1px solid #EEE;
  }
  #site-header .site-header-bar nav li a {
    display: block;
  }
  #site-header .site-header-bar nav li.nav-button {
    padding-top: 16px;
  }

  body.home #site-header .site-header-bar .toggle-nav:hover, body.home #site-header .site-header-bar .toggle-nav:active, body.home #site-header .site-header-bar .toggle-nav:focus {
    background: #002C3F;
    color: #FFF;
  }
}
@media all and (min-width: 1024px) {
  #site-header .site-header-bar .logo {
    padding: 20px 20px;
  }
  #site-header .site-header-bar nav {
    padding: 0 32px 0 0;
  }
  #site-header .site-header-bar nav ul {
    display: flex;
    column-gap: 32px;
  }
  #site-header .site-header-bar nav ul li a:hover, #site-header .site-header-bar nav ul li a:active, #site-header .site-header-bar nav ul li a:focus {
    color: #FC8B27;
  }
}
@media all and (min-width: 1280px) {
  #site-header {
    top: 40px;
  }
  #site-header .site-header-bar .logo {
    padding: 20px 40px;
  }
  #site-header .site-header-bar .logo .logo-spinner {
    left: 40px;
  }
  #site-header .site-header-bar .logo:hover .logo-spinner, #site-header .site-header-bar .logo:active .logo-spinner, #site-header .site-header-bar .logo:focus .logo-spinner {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 1s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  #site-header .site-header-bar nav ul {
    column-gap: 66px;
  }
}
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media all and (min-width: 1560px) {
  #site-header .site-header-bar nav {
    padding: 0 106px 0 0;
  }
}
.page-block-home-banner {
  background: url(../images/home-banner-gradient.png) no-repeat center center;
  background-size: cover;
  position: relative;
}
.page-block-home-banner:before {
  width: 100%;
  height: 100%;
  background: url(../images/home-banner-curve.svg) no-repeat center top;
  background-size: auto auto;
  height: 110px;
  content: "";
  z-index: 1;
  position: absolute;
  display: block;
  left: 0px;
  bottom: 0px;
}

.home-banner {
  padding: 147px 0 160px 0;
  display: flex;
  flex-direction: column-reverse;
}
.home-banner article {
  padding: 0 0 32px 0;
}
.home-banner article h1 {
  font-size: 40px;
  line-height: 46px;
  color: #FFF;
  font-weight: 700;
  margin: 0 0 34px 0;
}
.home-banner article h1 .highlight {
  padding: 0 5px 5px 5px;
}
.home-banner article p {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 34px 0;
  max-width: 590px;
}

.home-banner-star {
  display: none;
}

.home-banner-bounce {
  position: absolute;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.home-banner-bounce svg {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounceDivider;
  animation-name: bounceDivider;
}

@keyframes bounceDivider {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
.bounceDivider {
  -webkit-animation-name: bounceDivider;
  animation-name: bounceDivider;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@media all and (min-width: 1400px) {
  .page-block-home-banner:before {
    background-size: 100% auto;
    height: 130px;
  }

  .home-banner-bounce {
    bottom: 110px;
  }
}
@media all and (min-width: 1580px) {
  .page-block-home-banner:before {
    height: 160px;
  }

  .home-banner-bounce {
    bottom: 110px;
  }
}
@media all and (min-width: 1024px) {
  .home-banner {
    padding: 187px 0 160px 0;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .home-banner .image-holder img {
    max-width: 365px;
  }
  .home-banner article {
    max-width: 680px;
    padding: 0px;
  }
  .home-banner article h1 {
    font-size: 60px;
    line-height: 70px;
    margin: 0 0 44px 0;
  }
  .home-banner article h1 .highlight {
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative;
    top: 10px;
  }
  .home-banner article h1 .highlight span {
    position: relative;
    top: -10px;
  }
  .home-banner article p {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 44px 0;
  }

  .home-banner-star {
    display: block;
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .home-banner-star svg {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: starpulse;
    animation-name: starpulse;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
}
@-webkit-keyframes starpulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes starpulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@media all and (max-width: 1023px) and (min-width: 0px) {
  .home-banner .image-holder {
    text-align: center;
  }
  .home-banner .image-holder img {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
  }
  .home-banner article {
    text-align: center;
  }
  .home-banner article p {
    max-width: none;
  }
}
@media all and (min-width: 1280px) {
  .home-banner {
    padding: 287px 0 260px 0;
  }
  .home-banner .image-holder img {
    max-width: 505px;
  }
  .home-banner article {
    max-width: 880px;
  }
  .home-banner article h1 {
    font-size: 70px;
    line-height: 80px;
  }
}
@media all and (min-width: 1560px) {
  .home-banner article h1 {
    font-size: 80px;
    line-height: 90px;
    margin: 0 0 74px 0;
  }
  .home-banner article p {
    font-size: 40px;
    line-height: 45px;
    margin: 0 0 70px 0;
  }
}
.page-block-quote-slider h2 {
  font-size: 32px;
  line-height: 48px;
  margin: 0 0 34px 0;
  text-align: center;
}

.quote-slider {
  margin: 0 -10px;
}
.quote-slider .slick-track {
  display: flex !important;
}
.quote-slider .quote-slide {
  border: 2px solid #002C3F;
  padding: 24px 20px 24px 20px;
  border-radius: 30px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.75);
  height: inherit !important;
  display: flex !important;
  flex-direction: column;
}
.quote-slider .quote-slide.quote-slide-1 {
  background: rgba(125, 201, 217, 0.75);
  border-color: transparent;
}
.quote-slider .quote-slide .quote-slide-logo {
  margin: 0 0 31px 0;
}
.quote-slider .quote-slide .quote-slide-logo img {
  height: 48px;
}
.quote-slider .quote-slide blockquote p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 24px 0;
}
.quote-slider .quote-slide blockquote cite {
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  display: block;
  padding: 13px 0 0 0;
  font-size: 14px;
  line-height: 24px;
}
.quote-slider .quote-slide blockquote cite img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 100%;
  display: block;
  margin: 0 24px 0 0;
  float: left;
}

@media all and (min-width: 1024px) {
  .page-block-quote-slider h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 64px 0;
  }

  .quote-slider .quote-slide {
    padding: 36px 70px 45px 70px;
  }
  .quote-slider .quote-slide blockquote p {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 30px 0;
  }
  .quote-slider .quote-slide blockquote cite {
    font-size: 18px;
    line-height: 30px;
  }
  .quote-slider .quote-slide blockquote cite img {
    width: 60px;
    height: 60px;
    margin: 0 48px 0 0;
  }
}
.page-block-home-intro {
  position: relative;
  padding: 120px 0;
}
.page-block-home-intro .home-intro-shape-left {
  position: absolute;
  bottom: -90px;
  left: 0px;
}
.page-block-home-intro .home-intro-shape-left svg {
  height: auto;
  width: 440px;
  margin: 0 0 0 -220px;
}
.page-block-home-intro .home-intro-shape-right {
  position: absolute;
  top: 0px;
  right: 0px;
}
.page-block-home-intro .home-intro-shape-right svg {
  height: auto;
  width: 300px;
  margin: 0 -150px 0 0;
}
.page-block-home-intro .container {
  text-align: center;
  z-index: 1;
}
.page-block-home-intro article {
  text-align: center;
  margin: 0 auto;
  max-width: 650px;
}
.page-block-home-intro article h2 {
  font-size: 32px;
  line-height: 48px;
  padding: 27px 0 0 0;
}
.page-block-home-intro article h3 {
  color: #FC8B27;
  padding: 10px 0;
  font-size: 24px;
  line-height: 34px;
}

@media all and (min-width: 1280px) {
  .page-block-home-intro {
    padding: 0px;
  }
  .page-block-home-intro .home-intro-shape-left {
    bottom: -320px;
    left: -200px;
    top: auto;
  }
  .page-block-home-intro .home-intro-shape-left svg {
    width: auto;
  }
  .page-block-home-intro .home-intro-shape-right {
    bottom: -220px;
    right: -200px;
    top: auto;
  }
  .page-block-home-intro .home-intro-shape-right svg {
    width: auto;
  }
  .page-block-home-intro article h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .page-block-home-intro article h3 {
    font-size: 30px;
    line-height: 40px;
    padding: 20px 0;
  }
}
@media all and (min-width: 1280px) {
  .page-block-home-intro .home-intro-shape-left {
    bottom: -180px;
    left: 0px;
  }
  .page-block-home-intro .home-intro-shape-left svg {
    width: 700px;
    margin: 0 0 0 -500px;
  }
  .page-block-home-intro .home-intro-shape-right {
    bottom: -120px;
    right: 0px;
  }
  .page-block-home-intro .home-intro-shape-right svg {
    width: 500px;
    margin: 0 -300px 0 0;
  }
}
@media all and (min-width: 1500px) {
  .page-block-home-intro .home-intro-shape-left {
    bottom: -280px;
    left: 0px;
  }
  .page-block-home-intro .home-intro-shape-left svg {
    width: 1000px;
    margin: 0 0 0 -500px;
  }
  .page-block-home-intro .home-intro-shape-right {
    bottom: -220px;
    right: 0px;
  }
  .page-block-home-intro .home-intro-shape-right svg {
    width: 600px;
    margin: 0 -300px 0 0;
  }
}
.image-and-content .image-holder img {
  max-width: 320px;
  width: 100%;
  margin: 0 0 32px 0;
}
.image-and-content article h2 .highlight {
  color: #FFF;
  margin-right: 5px;
}
.image-and-content article h4 {
  font-size: 22px;
  line-height: 28px;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0 0 34px 0;
}
.image-and-content article p {
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 28px 0;
}
.image-and-content article ul li {
  padding: 0 0 0 46px;
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 28px 0;
}
.image-and-content article ul li:before {
  content: "";
  background: url('data:image/svg+xml,<svg width="41" height="26" viewBox="0 0 41 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M39.0938 11.3928L13.5626 0.154469C12.9105 -0.132548 12.15 0.00660251 11.6424 0.505748L0.554212 11.4113C-0.130848 12.085 -0.139653 13.1874 0.53458 13.8736L11.4472 24.979C11.9467 25.4874 12.705 25.6403 13.3615 25.3652L39.0683 14.5925C40.478 14.0018 40.4938 12.0091 39.0938 11.3928Z" fill="%23FC8B27"/></svg>') no-repeat left top;
  width: 41px;
  height: 26px;
  background-size: 31px auto;
  display: block;
  position: absolute;
  top: 3px;
  left: 0px;
}
.image-and-content article ul li strong {
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

@media all and (min-width: 1024px) {
  .image-and-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .image-and-content .image-holder {
    width: 37%;
  }
  .image-and-content .image-holder img {
    margin: 0px;
    max-width: none;
  }
  .image-and-content article {
    width: 63%;
    padding: 0 0 0 32px;
    margin-bottom: -32px;
  }
  .image-and-content.image-on-right {
    flex-direction: row-reverse;
  }
  .image-and-content.image-on-right article {
    padding: 0 32px 0 0;
  }
}
@media all and (min-width: 1280px) {
  .image-and-content .image-holder {
    width: 47%;
  }
  .image-and-content article {
    width: 53%;
    padding: 0 0 0 148px;
  }
  .image-and-content article h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 23px 0;
  }
  .image-and-content article h4 {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 54px 0;
  }
  .image-and-content article ul li {
    padding: 0 0 0 106px;
    font-size: 20px;
    margin: 0 0 32px 0;
    line-height: 32px;
  }
  .image-and-content article ul li:before {
    background-size: auto auto;
    left: 16px;
  }
  .image-and-content article p {
    font-size: 20px;
    line-height: 35px;
    margin: 0 0 32px 0;
  }
  .image-and-content.image-on-right {
    flex-direction: row-reverse;
  }
  .image-and-content.image-on-right article {
    padding: 0 148px 0 0;
  }
}
.page-block-highlight-team {
  background: #002C3F;
  padding: 85px 0 64px 0;
  position: relative;
}
.page-block-highlight-team:before {
  position: absolute;
  height: 40px;
  width: 100%;
  background: #FFF;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -1px;
}
.page-block-highlight-team .highlight-team-heading {
  display: flex;
  margin: 0 0 64px 0;
}
.page-block-highlight-team .highlight-team-heading svg {
  margin: 0 18px 0 0;
}
.page-block-highlight-team .highlight-team-heading h2 {
  color: #FFF;
  font-size: 30px;
  line-height: 40px;
}
.page-block-highlight-team .highlight-team-heading h2 br {
  display: none;
}
.page-block-highlight-team .highlight-team article {
  border: 2px solid #FFF;
  border-radius: 30px;
  padding: 32px 32px 0 32px;
  margin: 0 0 32px 0;
}
.page-block-highlight-team .highlight-team article h3 {
  color: #FC8B27;
  font-size: 30px;
  line-height: 40px;
}
.page-block-highlight-team .highlight-team article p {
  font-size: 22px;
  line-height: 32px;
  color: #FFF;
}
.page-block-highlight-team .highlight-team article p .highlight {
  color: #002C3F;
}
.page-block-highlight-team .highlight-team .image-holder img {
  border-radius: 30px;
}
.page-block-highlight-team .buttons {
  text-align: center;
  padding: 36px 0 0 0;
}
.page-block-highlight-team .buttons .button:hover, .page-block-highlight-team .buttons .button:active, .page-block-highlight-team .buttons .button:focus {
  background: #FFF;
  color: #002C3F;
}
.page-block-highlight-team .highlight-star {
  display: none;
}

@media all and (min-width: 1024px) {
  .page-block-highlight-team .highlight-team {
    display: flex;
    align-items: flex-start;
  }
  .page-block-highlight-team .highlight-team article {
    width: calc(50% + 20px);
    margin: 0 -20px 0 0;
    position: relative;
    z-index: 2;
  }
  .page-block-highlight-team .highlight-team .image-holder {
    width: 50%;
    margin: 66px 0 0 0;
  }
}
@media all and (min-width: 1280px) {
  .page-block-highlight-team {
    padding: 185px 0 95px 0;
  }
  .page-block-highlight-team:before {
    height: 80px;
  }
  .page-block-highlight-team .highlight-team-heading {
    margin: 0 0 126px 0;
    align-items: center;
  }
  .page-block-highlight-team .highlight-team-heading svg {
    margin: 0 36px 0 0;
  }
  .page-block-highlight-team .highlight-team-heading h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .page-block-highlight-team .highlight-team-heading h2 br {
    display: inline;
  }
  .page-block-highlight-team .highlight-star {
    z-index: 0;
    display: block;
    position: absolute;
    top: 332px;
    left: 50%;
    margin: 0 0 0 -52px;
  }
  .page-block-highlight-team .highlight-team article {
    padding: 50px 64px;
    width: calc(50% + 40px);
    margin: 0 -40px 0 0;
  }
  .page-block-highlight-team .highlight-team article h3 {
    font-size: 40px;
    line-height: 50px;
  }
  .page-block-highlight-team .highlight-team article p {
    font-size: 30px;
    line-height: 40px;
  }
  .page-block-highlight-team .buttons {
    padding: 96px 0 0 0;
  }
}
.page-block-steps .steps-heading {
  text-align: center;
  margin: 0 0 67px 0;
}
.page-block-steps .steps-heading svg {
  margin: 0 auto 30px auto;
}
.page-block-steps .steps-heading h2 {
  font-size: 30px;
  line-height: 40px;
}
.page-block-steps .steps-heading h2 br {
  display: none;
}
.page-block-steps .buttons {
  padding: 64px 0 0 0;
  text-align: center;
}
.page-block-steps .steps {
  display: grid;
  row-gap: 20px;
}
.page-block-steps .steps .step {
  position: relative;
  border-radius: 30px;
  border: 2px solid #036075;
  padding: 48px 24px 24px 24px;
  margin: 53px 0 0 0;
}
.page-block-steps .steps .step .step-number {
  width: 80px;
  height: 80px;
  background: #7DC9D9;
  color: #036075;
  border-radius: 100%;
  display: block;
  position: absolute;
  top: -53px;
  left: 50%;
  margin: 0 0 0 -40px;
  font-size: 40px;
  text-align: center;
  line-height: 80px;
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.page-block-steps .steps .step article h3 {
  font-size: 24px;
  line-height: 30px;
  color: #FC8B27;
  text-align: center;
  margin: 0 0 28px 0;
}
.page-block-steps .steps .step article ul {
  margin: 0px;
}
.page-block-steps .steps .step article ul li {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}
.page-block-steps .steps .step article ul li:before {
  line-height: 30px;
  left: 10px;
}

@media all and (min-width: 1024px) {
  .page-block-steps .steps {
    column-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 1280px) {
  .page-block-steps .steps-heading h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .page-block-steps .steps-heading h2 br {
    display: inline;
  }
  .page-block-steps .steps .step {
    padding: 94px 35px 40px 35px;
  }
  .page-block-steps .steps .step .step-number {
    width: 120px;
    height: 120px;
    line-height: 120px;
    margin: 0 0 0 -60px;
    font-size: 60px;
  }
  .page-block-steps .steps .step article h3 {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 38px 0;
  }
  .page-block-steps .steps .step article ul li {
    font-size: 18px;
    line-height: 35px;
  }
  .page-block-steps .steps .step article ul li:before {
    line-height: 35px;
  }
  .page-block-steps .buttons {
    padding: 116px 0 0 0;
  }
}
.page-block-packages {
  background: url(../images/packages-graphic.svg) no-repeat right bottom #002C3F;
  background-size: 200px auto;
  padding: 92px 0 60px 0;
}
.page-block-packages .container {
  text-align: center;
}
.page-block-packages .packages-heading {
  margin: 0 0 92px 0;
}
.page-block-packages .packages-heading svg {
  margin: 0 auto 30px auto;
}
.page-block-packages .packages-heading h2 {
  font-size: 30px;
  line-height: 40px;
  color: #FFF;
}
.page-block-packages .packages-heading h2 br {
  display: none;
}
.page-block-packages .packages {
  display: grid;
  row-gap: 20px;
  height: 1336px;
}
.page-block-packages .packages .package .package-card {
  perspective: 1000px;
  position: relative;
}
.page-block-packages .packages .package .package-card .package-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.page-block-packages .packages .package .package-card.active .package-card-inner {
  transform: rotateY(180deg);
}
.page-block-packages .packages .package .package-card .package-card-front,
.page-block-packages .packages .package .package-card .package-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}
.page-block-packages .packages .package .package-card .package-card-front {
  transition: 0.3s ease-in-out;
  overflow: hidden;
  display: block;
  border: 2px solid #FFF;
  border-radius: 30px;
  height: 432px;
  text-align: center;
}
.page-block-packages .packages .package .package-card .package-card-front .package-card-front-gradient {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(55.13deg, #FC8B27 23.72%, #7DC9D9 61.05%, #036075 98.39%);
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 1;
}
.page-block-packages .packages .package .package-card .package-card-front .package-card-front-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: none no-repeat center bottom;
  background-size: 100% auto;
  z-index: 2;
}
.page-block-packages .packages .package .package-card .package-card-front h4 {
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 3;
  padding: 24px 0 0 0;
  color: #FC8B27;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  margin: 0 0 24px 0;
}
.page-block-packages .packages .package .package-card .package-card-front .package-see-more {
  position: relative;
  z-index: 3;
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #FFF;
  text-decoration: underline;
}
.page-block-packages .packages .package .package-card:hover .package-card-front .package-card-front-gradient, .page-block-packages .packages .package .package-card:active .package-card-front .package-card-front-gradient, .page-block-packages .packages .package .package-card:focus .package-card-front .package-card-front-gradient {
  opacity: 1;
}
.page-block-packages .packages .package .package-card:hover .package-card-front h4, .page-block-packages .packages .package .package-card:active .package-card-front h4, .page-block-packages .packages .package .package-card:focus .package-card-front h4 {
  color: #FFF;
}
.page-block-packages .packages .package .package-card .package-card-back {
  transform: rotateY(180deg);
  background: rgba(125, 201, 217, 0.7);
  border: 2px solid #FFF;
  border-radius: 30px;
  height: 432px;
  padding: 0 20px;
}
.page-block-packages .packages .package .package-card .package-card-back h4 {
  position: relative;
  z-index: 1;
  padding: 24px 0 0 0;
  color: #FFF;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  margin: 0 0 24px 0;
}
.page-block-packages .packages .package .package-card .package-card-back .package-sub-heading {
  font-size: 20px;
  line-height: 24px;
  color: #FFF;
  margin: 0 0 38px 0;
  display: block;
}
.page-block-packages .packages .package .package-card .package-card-back p {
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 26px 0;
  color: #002C3F;
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.page-block-packages .under-packages {
  padding: 80px 0 0 0;
  text-align: center;
}
.page-block-packages .under-packages svg {
  margin: 0 auto 47px 0;
}
.page-block-packages .under-packages h3 {
  color: #FFF;
  font-size: 30px;
  line-height: 40px;
  margin: 0 0 40px 0;
}
.page-block-packages .under-packages p {
  color: #FFF;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 26px 0;
}
.page-block-packages .under-packages h4 {
  padding: 20px 0 0 0;
  font-size: 30px;
  line-height: 40px;
  color: #FC8B27;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0px;
}

@media all and (min-width: 376px) {
  .page-block-packages .packages {
    column-gap: 20px;
    height: 884px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 1024px) {
  .page-block-packages .packages {
    column-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    height: 432px;
  }
  .page-block-packages .packages .package .package-card .package-card-back {
    padding: 0 30px;
  }
  .page-block-packages .packages .package .package-card .package-card-back p {
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 36px 0;
  }
  .page-block-packages .under-packages {
    margin: 0 auto;
    max-width: 986px;
  }
}
@media all and (min-width: 1280px) {
  .page-block-packages {
    background-size: auto auto;
  }
  .page-block-packages .packages-heading h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .page-block-packages .packages-heading h2 br {
    display: inline;
  }
  .page-block-packages .packages .package .package-card .package-card-back {
    padding: 0 70px;
  }
  .page-block-packages .under-packages h3 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 50px 0;
  }
  .page-block-packages .under-packages p {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 40px 0;
  }
}
.page-block-schedule-banner .schedule-banner-image {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin: 0 0 52px 0;
}
.page-block-schedule-banner .schedule-banner-image img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  opacity: 0.8;
  position: relative;
  z-index: 0;
}
.page-block-schedule-banner .schedule-banner-image:before {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 44, 63, 0.1);
  content: "";
  z-index: 1;
}
.page-block-schedule-banner .schedule-banner-image:after {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 44, 63, 0.3) 35.5%, rgba(0, 44, 63, 0.54) 66.5%);
  content: "";
  z-index: 2;
}
.page-block-schedule-banner .schedule-banner-image h2 {
  position: absolute;
  bottom: 34px;
  left: 34px;
  font-size: 30px;
  line-height: 40px;
  color: #FFF;
  z-index: 3;
}
.page-block-schedule-banner .schedule-banner-image h2 span {
  color: #FC8B27;
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-left {
  padding: 0 0 30px 0;
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-left h3 {
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 36px 0;
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-left p {
  font-size: 20px;
  line-height: 24px;
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right {
  background: #FC8B27;
  border-radius: 30px;
  margin: 0;
  padding: 24px;
  box-shadow: 0px 0px 39.8px 0px rgba(0, 0, 0, 0.25);
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right h3 {
  color: #FFF;
  font-size: 30px;
  line-height: 40px;
  margin: 0 0 34px 0;
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right p {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 30px 0;
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right .buttons {
  padding: 16px 0 0 0;
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right .buttons .button {
  background: #002C3F;
  padding-left: 16px;
  padding-right: 16px;
  display: block;
}
.page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right .buttons .button:hover, .page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right .buttons .button:active, .page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right .buttons .button:focus {
  background: #FFF;
  color: #002C3F;
}

@media all and (min-width: 1024px) {
  .page-block-schedule-banner .schedule-banner-image img {
    height: auto;
  }
  .page-block-schedule-banner .schedule-banner-image h2 {
    bottom: 32px;
    left: 32px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media all and (min-width: 1280px) {
  .page-block-schedule-banner .schedule-banner-image h2 {
    bottom: 64px;
    left: 64px;
  }
  .page-block-schedule-banner .schedule-banner-content {
    position: relative;
    display: flex;
    z-index: 5;
    padding: 0 64px;
  }
  .page-block-schedule-banner .schedule-banner-content .schedule-banner-content-left {
    padding: 0 106px 0 0;
  }
  .page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right {
    padding: 61px 48px;
    margin: 0px;
    margin-top: -287px;
    width: 548px;
    flex-shrink: 0;
  }
  .page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right .button {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (min-width: 1490px) {
  .page-block-schedule-banner .schedule-banner-image h2 {
    bottom: 95px;
    left: 106px;
  }
  .page-block-schedule-banner .schedule-banner-content {
    padding: 0 106px;
  }
  .page-block-schedule-banner .schedule-banner-content .schedule-banner-content-right {
    width: 648px;
  }
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  border: 1px solid #036075;
  padding: 30px;
}
.blog-card .blog-card-categories {
  display: block;
  margin: 0 0 20px 0;
}
.blog-card .blog-card-categories span {
  display: inline-block;
  margin: 0 10px 10px 0;
  font-size: 16px;
  line-height: 25px;
  padding: 10px;
  background: rgba(125, 201, 217, 0.5);
  color: #002C3F;
}
.blog-card h4 {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 30px 0;
}
.blog-card p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 34px 0;
}
.blog-card .button {
  display: block;
  margin-top: auto;
}

.blog-filters {
  padding: 45px 0 80px 0;
}
.blog-filters ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.blog-filters ul li {
  width: 100%;
}
.blog-filters ul li a {
  display: block;
  border: 1px solid #002C3F;
  color: #002C3F;
  font-size: 20px;
  line-height: 45px;
  padding: 12px 10px;
  text-align: center;
  margin: 0 0 0 -1px;
}
.blog-filters ul li a:hover, .blog-filters ul li a:active, .blog-filters ul li a:focus {
  background: #002C3F;
  color: #FFF;
}
.blog-filters ul li:first-child a {
  border-radius: 5px 0 0 5px;
}
.blog-filters ul li:last-child a {
  border-radius: 0 5px 5px 0;
}
.blog-filters ul li.active {
  position: relative;
}
.blog-filters ul li.active:before {
  background: url('data:image/svg+xml,<svg width="22" height="35" viewBox="0 0 22 35" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.2498 1.4557L0.860303 23.2483C0.620497 23.8049 0.734522 24.4569 1.14815 24.8943L10.185 34.4514C10.7433 35.0418 11.6591 35.0558 12.2305 34.4826L21.4792 25.2048C21.9025 24.7801 22.0311 24.1319 21.804 23.5681L12.9079 1.49629C12.4201 0.285918 10.7647 0.260635 10.2498 1.4557Z" fill="%23FC8B27"/></svg>') no-repeat left top;
  width: 22px;
  height: 35px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin: 0 0 0 -11px;
  display: block;
  content: "";
}

.load-more {
  padding: 32px 0 0 0;
  text-align: center;
}

.page-block-blog {
  padding: 0 0 70px 0;
}

@media all and (max-width: 1280px) and (min-width: 0px) {
  .blog-filters {
    padding: 45px 0 20px 0;
  }
  .blog-filters .container {
    margin: 0px;
  }
  .blog-filters .container ul {
    overflow: auto;
    padding: 0 20px 20px 20px;
  }
  .blog-filters .container ul li {
    flex-grow: 1;
    flex-shrink: 0;
    width: auto;
  }
  .blog-filters .container ul li a {
    line-height: 25px;
  }
}
.page-block-latest-blog-posts {
  background: #E5F4F7;
  padding: 90px 0;
}
.page-block-latest-blog-posts .latest-blog-posts-heading {
  text-align: center;
  margin: 0 0 64px 0;
}
.page-block-latest-blog-posts .latest-blog-posts-heading svg {
  margin: 0 auto 30px auto;
}
.page-block-latest-blog-posts .latest-blog-posts-heading h2 {
  font-size: 30px;
  line-height: 40px;
}
.page-block-latest-blog-posts .buttons {
  padding: 64px 0 0 0;
  text-align: center;
}
.page-block-latest-blog-posts .buttons .button {
  background: #FFF;
  color: #FC8B27;
  padding-left: 75px;
  padding-right: 75px;
}
.page-block-latest-blog-posts .buttons .button:hover, .page-block-latest-blog-posts .buttons .button:active, .page-block-latest-blog-posts .buttons .button:focus {
  background: #FC8B27;
  color: #FFF;
}
.page-block-latest-blog-posts .blog-card .blog-card-categories span {
  background: #FFF;
}

.blog-grid {
  display: grid;
  row-gap: 20px;
}

@media all and (min-width: 1024px) {
  .blog-card h4 {
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 30px 0;
  }
  .blog-card p {
    font-size: 20px;
    line-height: 35px;
    margin: 0 0 64px 0;
  }

  .blog-grid {
    display: grid;
    row-gap: 20px;
    column-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 1280px) {
  .page-block-latest-blog-posts .latest-blog-posts-heading h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-post-header {
  padding: 190px 0 60px 0;
}
.blog-post-header .blog-post-header-content {
  max-width: 860px;
  padding: 0 0 30px 0;
}
.blog-post-header .blog-post-header-content .blog-post-categories {
  font-size: 18px;
  line-height: 30px;
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  margin: 0 0 21px 0;
}
.blog-post-header .blog-post-header-content .blog-post-categories a {
  font-weight: bold;
}
.blog-post-header .blog-post-header-content h1 {
  font-size: 40px;
  line-height: 50px;
  margin: 0 0 33px 0;
}
.blog-post-header .blog-post-header-content p {
  font-size: 20px;
  line-height: 35px;
}
.blog-post-header .blog-post-header-image {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}
.blog-post-header .blog-post-header-image img {
  height: 40%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.blog-post {
  padding: 0 0 70px 0;
}
.blog-post .blog-post-meta aside {
  margin: 0 0 40px 0;
}
.blog-post .blog-post-meta aside h5 {
  font-size: 20px;
  line-height: 40px;
}
.blog-post .blog-post-meta aside p {
  font-size: 18px;
  line-height: 40px;
}
.blog-post .blog-post-meta aside p a {
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.blog-post article img {
  border-radius: 30px;
}
.blog-post article p a {
  font-style: italic;
  text-decoration: underline;
}

@media all and (max-width: 1023px) and (min-width: 0px) {
  .blog-post .container {
    display: flex;
    flex-direction: column-reverse;
  }
  .blog-post .container .blog-post-meta {
    padding: 32px 0 0 0;
  }
  .blog-post .container .blog-post-meta aside {
    margin: 0 0 20px 0;
  }
}
@media all and (min-width: 1024px) {
  .blog-post-header .blog-post-header-image img {
    height: 750px;
    width: 100%;
  }

  .blog-post .container {
    padding: 0 0 0 357px;
  }
  .blog-post .container .blog-post-meta {
    width: 357px;
    flex-shrink: 0;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  .blog-post .container .blog-post-meta .published-on {
    margin-bottom: 0px;
  }

  .fix-side-nav .blog-post .container .blog-post-meta {
    position: fixed;
    top: 0px;
    left: 32px;
  }

  .fix-side-nav-bottom .blog-post .container .blog-post-meta {
    top: auto;
    bottom: 0px;
    left: 0px;
  }
}
@media all and (min-width: 1400px) {
  .blog-post .container article {
    padding: 0 125px 0 148px;
  }
}
@media all and (min-width: 1560px) {
  .fix-side-nav .blog-post .container .blog-post-meta {
    position: fixed;
    top: 0px;
    left: calc(((100vw - 1490px)/2) - 7px);
  }
}
.page-header {
  background: url(../images/page-header-graphic.svg) no-repeat right top #FC8B27;
  background-size: 400px auto;
  padding: 210px 0 80px 0;
  position: relative;
}
.page-header:before {
  background: url(../images/page-header-curve.svg) no-repeat right bottom;
  background-size: auto 50px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  content: "";
  display: block;
}
.page-header .container {
  z-index: 1;
}
.page-header h1 {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 35px;
  margin: 0 0 20px 0;
  color: #FFF;
}
.page-header h2 {
  color: #002C3F;
  font-size: 40px;
  line-height: 50px;
}
.page-header.page-header-contact {
  background: url(../images/contact-page-header-back.jpg) no-repeat center center;
  background-size: cover;
}
.page-header.page-header-contact h1 {
  color: #002C3F;
}
.page-header.page-header-contact h2 {
  color: #036075;
}

@media all and (min-width: 1280px) {
  .page-header {
    background-position: right top;
    background-size: auto auto;
    padding: 210px 0 146px 0;
  }
  .page-header:before {
    background-size: auto 100px;
  }
  .page-header h2 {
    font-size: 80px;
    line-height: 90px;
    max-width: 985px;
  }
  .page-header.page-header-contact {
    background-position: center center;
    background-size: cover;
  }
  .page-header.page-header-contact h2 {
    font-size: 70px;
    line-height: 80px;
  }
}
.page-block-contact-form {
  background: url(../images/contact-form-graphic-right.svg) no-repeat right top;
  position: relative;
  margin-top: -100px;
  z-index: 6;
  padding: 100px 0 150px 0;
}
.page-block-contact-form:before {
  background: url(../images/contact-form-graphic-left.svg) no-repeat left bottom;
  width: 300px;
  height: 600px;
  display: block;
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.page-block-contact-form .container {
  z-index: 1;
}
.page-block-contact-form .contact-form-wrapper .contact-form {
  box-shadow: 0px 4px 14.9px 3px rgba(0, 0, 0, 0.15);
  background: #FFF;
  border-radius: 30px;
  padding: 32px;
}
.page-block-contact-form .contact-form-wrapper .contact-form h2 {
  font-size: 20px;
  line-height: 30px;
  font-family: "ABeeZee", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0 0 30px 0;
}

@media all and (max-width: 1023px) and (min-width: 0px) {
  .page-block-contact-form {
    background-position: right top;
    background-size: 120px auto;
  }
}
@media all and (min-width: 1024px) {
  .page-block-contact-form .contact-form-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .page-block-contact-form .contact-form-wrapper article {
    padding: 0 32px 0 0;
  }
  .page-block-contact-form .contact-form-wrapper article h2 {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 20px 0;
  }
  .page-block-contact-form .contact-form-wrapper article h3 {
    padding: 45px 0 0 0;
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 20px 0;
  }
  .page-block-contact-form .contact-form-wrapper article ul {
    padding: 40px 0 0 0;
    margin: 0 0 80px 0;
  }
  .page-block-contact-form .contact-form-wrapper article ul li {
    position: relative;
    padding: 0 0 0 88px;
    margin: 0 0 38px 0;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    font-family: "filson-pro", Helvetica, Arial, sans-serif;
    color: #002C3F;
  }
  .page-block-contact-form .contact-form-wrapper article ul li:before {
    position: absolute;
    top: 2px;
    left: 0px;
    content: "";
    width: 48px;
    height: 48px;
    background: url('data:image/svg+xml,<svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 48.0504C37.2548 48.0504 48 37.3052 48 24.0504C48 10.7956 37.2548 0.050415 24 0.050415C10.7452 0.050415 0 10.7956 0 24.0504C0 37.3052 10.7452 48.0504 24 48.0504Z" fill="%23FC8B27"/><path d="M33.1431 17.6013L20.5717 30.1727L14.8574 24.4585" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
    content: "";
    display: block;
  }
  .page-block-contact-form .contact-form-wrapper .contact-form {
    width: 50%;
    flex-shrink: 0;
  }
  .page-block-contact-form .contact-form-wrapper .contact-form h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}
@media all and (min-width: 1280px) {
  .page-block-contact-form .contact-form-wrapper article {
    padding: 45px 130px 0 100px;
  }
  .page-block-contact-form .contact-form-wrapper .contact-form {
    width: 730px;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 64px 70px 46px 70px;
  }

  body .page-block-contact-form .gform_wrapper.gravity-theme .ginput_container_radio {
    margin: 0 0 15px 0;
    padding: 6px 0 0 0;
  }
  body .page-block-contact-form .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio {
    display: flex;
    justify-content: space-between;
  }
}
.page-block-faqs {
  position: relative;
}
.page-block-faqs:before {
  background: url(../images/faqs-graphic.svg) no-repeat;
  width: 242px;
  height: 431px;
  bottom: -320px;
  right: 0px;
  right: -100px;
  content: "";
  display: block;
  position: absolute;
}
.page-block-faqs .faqs-heading {
  text-align: center;
  margin: 0 0 59px 0;
}
.page-block-faqs .faqs-heading svg {
  margin: 0 auto 30px auto;
}
.page-block-faqs .faqs-heading h2 {
  font-size: 40px;
  line-height: 50px;
  margin: 0 0 30px 0;
}
.page-block-faqs .faqs-heading p {
  font-size: 20px;
  line-height: 35px;
  max-width: 650px;
  margin: 0 auto;
}

.accordion .accordion-panel {
  position: relative;
  margin: 0 0 12px 0;
  border-radius: 5px;
  border: 1px solid #036075;
}
.accordion .accordion-panel .accordion-panel-heading {
  position: relative;
  margin: 0px;
  background: url('data:image/svg+xml,<svg width="28" height="29" viewBox="0 0 28 29" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 11.0503L14 17.0503L20 11.0503" stroke="%23002C3F" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 16px center;
}
.accordion .accordion-panel .accordion-panel-heading h2,
.accordion .accordion-panel .accordion-panel-heading h3,
.accordion .accordion-panel .accordion-panel-heading h4 {
  padding: 21px 72px 21px 26px;
  font-size: 18px;
  line-height: 26px;
  color: #002C3F;
  font-family: "filson-pro", Helvetica, Arial, sans-serif;
  display: block;
  cursor: pointer;
  z-index: 1;
  margin: 0px;
  transition: 0.3s ease-in-out;
}
.accordion .accordion-panel .accordion-panel-heading .open-accordion-panel {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
.accordion .accordion-panel.active {
  z-index: 1;
}
.accordion .accordion-panel.active .accordion-panel-heading {
  background-image: url('data:image/svg+xml,<svg width="28" height="29" viewBox="0 0 28 29" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 17.0503L14 11.0503L8 17.0503" stroke="%23002C3F" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.accordion .accordion-panel.active .accordion-panel-heading h2,
.accordion .accordion-panel.active .accordion-panel-heading h3,
.accordion .accordion-panel.active .accordion-panel-heading h4 {
  padding-top: 35px;
}
.accordion .accordion-panel article {
  display: none;
  width: auto;
  margin: 0px;
  padding: 0 26px 1px 26px;
}

@media all and (min-width: 1280px) {
  .accordion .accordion-panel .accordion-panel-heading h2,
.accordion .accordion-panel .accordion-panel-heading h3,
.accordion .accordion-panel .accordion-panel-heading h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .page-block-faqs:before {
    right: 0px;
  }
  .page-block-faqs .container {
    margin: 0 auto;
    max-width: 984px;
  }
}
#site-footer .footer-cta {
  background: url(../images/footer-cta-back.svg) no-repeat right -330px center #FC8B27;
  border-radius: 30px;
  padding: 24px;
  margin: 0 0 64px 0;
}
#site-footer .footer-cta h5 {
  font-size: 28px;
  line-height: 35px;
  color: #FFF;
  margin: 0 0 35px 0;
}
#site-footer .footer-cta p {
  font-size: 20px;
  line-height: 25px;
  margin: 0 0 30px 0;
  color: #FFF;
}
#site-footer .footer-cta .button {
  padding-left: 16px;
  padding-right: 16px;
}
#site-footer .footer-cta .button:hover, #site-footer .footer-cta .button:active, #site-footer .footer-cta .button:focus {
  background: #FFF;
  color: #002C3F;
}
#site-footer .footer-wrapper .footer-top {
  padding: 0 0 16px 0;
  border-bottom: 1px solid #002C3F;
}
#site-footer .footer-wrapper .footer-top img {
  height: 45px;
}
#site-footer .footer-wrapper .footer-top p {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  padding: 8px 0 0 0;
}
#site-footer .footer-wrapper .footer-top p a {
  color: #000;
}
#site-footer .footer-wrapper .footer-top p a:hover, #site-footer .footer-wrapper .footer-top p a:active, #site-footer .footer-wrapper .footer-top p a:focus {
  color: #FC8B27;
}
#site-footer .footer-wrapper .footer-bottom {
  padding: 16px 0;
}
#site-footer .footer-wrapper .footer-bottom p {
  padding: 9px 0 0 0;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  margin: 0 0 16px 0;
}
#site-footer .footer-wrapper .footer-bottom a {
  color: #036075;
}
#site-footer .footer-wrapper .footer-bottom a span {
  display: none;
}
#site-footer .footer-wrapper .footer-bottom a:hover, #site-footer .footer-wrapper .footer-bottom a:active, #site-footer .footer-wrapper .footer-bottom a:focus {
  color: #7DC9D9;
}

@media all and (min-width: 1024px) {
  #site-footer .footer-cta {
    margin: 0 0 112px 0;
    background-position: right center;
    padding: 80px 64px 88px 64px;
    display: flex;
    align-items: flex-end;
  }
  #site-footer .footer-cta h5 {
    font-size: 40px;
    line-height: 45px;
    margin: 0 0 45px 0;
  }
  #site-footer .footer-cta p {
    font-size: 30px;
    line-height: 45px;
    margin: 0px;
  }
  #site-footer .footer-cta .button {
    flex-shrink: 0;
    padding-left: 30px;
    padding-right: 30px;
  }
  #site-footer .footer-wrapper .footer-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  #site-footer .footer-wrapper .footer-top .footer-top-contacts {
    display: flex;
    column-gap: 45px;
  }
  #site-footer .footer-wrapper .footer-top .footer-top-contacts p {
    padding: 0px;
  }
  #site-footer .footer-wrapper .footer-bottom {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
  }
  #site-footer .footer-wrapper .footer-bottom p {
    margin: 0;
  }
}
@media all and (min-width: 1280px) {
  #site-footer .footer-cta {
    padding: 80px 106px 88px 106px;
  }
}

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