/**
 * 
 * NAME:          Custom Stylesheet
 * DESCRIPTION:   Where all less files get compiled.
 * -----------------------------------------------------------------------------
*/
@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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 {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    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 {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -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 {
  0%,
  100% {
    -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 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);
  }
  100% {
    -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);
  }
  100% {
    -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 {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -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);
  }
  100% {
    -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 {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -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);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -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);
  }
  100% {
    -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);
  }
  100% {
    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);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -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;
  }
  100% {
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -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 {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -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;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -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;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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;
  }
  100% {
    -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;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    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 {
  0% {
    opacity: 1;
  }
  100% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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 {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-loading .slick-list {
  background: #ffffff url('../images/ajax-loader.gif') center center no-repeat;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* *** SIZE
============================================================================ */
/* *** TRANSITION
============================================================================ */
/* *** TRANSFORM
============================================================================ */
/* *** BOX SHADOW
============================================================================ */
/* *** SOCICONS 
============================================================================ */
@font-face {
  font-family: 'Socicon';
  src: url('../fonts/Socicon.eot?6abp0d');
  src: url('../fonts/Socicon.eot?6abp0d#iefix') format('embedded-opentype'), url('../fonts/Socicon.woff2?6abp0d') format('woff2'), url('../fonts/Socicon.ttf?6abp0d') format('truetype'), url('../fonts/Socicon.woff?6abp0d') format('woff'), url('../fonts/Socicon.svg?6abp0d#Socicon') format('svg');
  font-weight: normal;
  font-style: normal;
}
.socicon-moddb:before {
  content: "\e94b";
}
.socicon-indiedb:before {
  content: "\e94c";
}
.socicon-traxsource:before {
  content: "\e94d";
}
.socicon-gamefor:before {
  content: "\e94e";
}
.socicon-pixiv:before {
  content: "\e94f";
}
.socicon-myanimelist:before {
  content: "\e950";
}
.socicon-blackberry:before {
  content: "\e951";
}
.socicon-wickr:before {
  content: "\e952";
}
.socicon-spip:before {
  content: "\e953";
}
.socicon-napster:before {
  content: "\e954";
}
.socicon-beatport:before {
  content: "\e955";
}
.socicon-hackerone:before {
  content: "\e956";
}
.socicon-hackernews:before {
  content: "\e946";
}
.socicon-smashwords:before {
  content: "\e947";
}
.socicon-kobo:before {
  content: "\e948";
}
.socicon-bookbub:before {
  content: "\e949";
}
.socicon-mailru:before {
  content: "\e94a";
}
.socicon-gitlab:before {
  content: "\e945";
}
.socicon-instructables:before {
  content: "\e944";
}
.socicon-portfolio:before {
  content: "\e943";
}
.socicon-codered:before {
  content: "\e940";
}
.socicon-origin:before {
  content: "\e941";
}
.socicon-nextdoor:before {
  content: "\e942";
}
.socicon-udemy:before {
  content: "\e93f";
}
.socicon-livemaster:before {
  content: "\e93e";
}
.socicon-crunchbase:before {
  content: "\e93b";
}
.socicon-homefy:before {
  content: "\e93c";
}
.socicon-calendly:before {
  content: "\e93d";
}
.socicon-realtor:before {
  content: "\e90f";
}
.socicon-tidal:before {
  content: "\e910";
}
.socicon-qobuz:before {
  content: "\e911";
}
.socicon-natgeo:before {
  content: "\e912";
}
.socicon-mastodon:before {
  content: "\e913";
}
.socicon-unsplash:before {
  content: "\e914";
}
.socicon-homeadvisor:before {
  content: "\e915";
}
.socicon-angieslist:before {
  content: "\e916";
}
.socicon-codepen:before {
  content: "\e917";
}
.socicon-slack:before {
  content: "\e918";
}
.socicon-openaigym:before {
  content: "\e919";
}
.socicon-logmein:before {
  content: "\e91a";
}
.socicon-fiverr:before {
  content: "\e91b";
}
.socicon-gotomeeting:before {
  content: "\e91c";
}
.socicon-aliexpress:before {
  content: "\e91d";
}
.socicon-guru:before {
  content: "\e91e";
}
.socicon-appstore:before {
  content: "\e91f";
}
.socicon-homes:before {
  content: "\e920";
}
.socicon-zoom:before {
  content: "\e921";
}
.socicon-alibaba:before {
  content: "\e922";
}
.socicon-craigslist:before {
  content: "\e923";
}
.socicon-wix:before {
  content: "\e924";
}
.socicon-redfin:before {
  content: "\e925";
}
.socicon-googlecalendar:before {
  content: "\e926";
}
.socicon-shopify:before {
  content: "\e927";
}
.socicon-freelancer:before {
  content: "\e928";
}
.socicon-seedrs:before {
  content: "\e929";
}
.socicon-bing:before {
  content: "\e92a";
}
.socicon-doodle:before {
  content: "\e92b";
}
.socicon-bonanza:before {
  content: "\e92c";
}
.socicon-squarespace:before {
  content: "\e92d";
}
.socicon-toptal:before {
  content: "\e92e";
}
.socicon-gust:before {
  content: "\e92f";
}
.socicon-ask:before {
  content: "\e930";
}
.socicon-trulia:before {
  content: "\e931";
}
.socicon-loomly:before {
  content: "\e932";
}
.socicon-ghost:before {
  content: "\e933";
}
.socicon-upwork:before {
  content: "\e934";
}
.socicon-fundable:before {
  content: "\e935";
}
.socicon-booking:before {
  content: "\e936";
}
.socicon-googlemaps:before {
  content: "\e937";
}
.socicon-zillow:before {
  content: "\e938";
}
.socicon-niconico:before {
  content: "\e939";
}
.socicon-toneden:before {
  content: "\e93a";
}
.socicon-augment:before {
  content: "\e908";
}
.socicon-bitbucket:before {
  content: "\e909";
}
.socicon-fyuse:before {
  content: "\e90a";
}
.socicon-yt-gaming:before {
  content: "\e90b";
}
.socicon-sketchfab:before {
  content: "\e90c";
}
.socicon-mobcrush:before {
  content: "\e90d";
}
.socicon-microsoft:before {
  content: "\e90e";
}
.socicon-pandora:before {
  content: "\e907";
}
.socicon-messenger:before {
  content: "\e906";
}
.socicon-gamewisp:before {
  content: "\e905";
}
.socicon-bloglovin:before {
  content: "\e904";
}
.socicon-tunein:before {
  content: "\e903";
}
.socicon-gamejolt:before {
  content: "\e901";
}
.socicon-trello:before {
  content: "\e902";
}
.socicon-spreadshirt:before {
  content: "\e900";
}
.socicon-500px:before {
  content: "\e000";
}
.socicon-8tracks:before {
  content: "\e001";
}
.socicon-airbnb:before {
  content: "\e002";
}
.socicon-alliance:before {
  content: "\e003";
}
.socicon-amazon:before {
  content: "\e004";
}
.socicon-amplement:before {
  content: "\e005";
}
.socicon-android:before {
  content: "\e006";
}
.socicon-angellist:before {
  content: "\e007";
}
.socicon-apple:before {
  content: "\e008";
}
.socicon-appnet:before {
  content: "\e009";
}
.socicon-baidu:before {
  content: "\e00a";
}
.socicon-bandcamp:before {
  content: "\e00b";
}
.socicon-battlenet:before {
  content: "\e00c";
}
.socicon-mixer:before {
  content: "\e00d";
}
.socicon-bebee:before {
  content: "\e00e";
}
.socicon-bebo:before {
  content: "\e00f";
}
.socicon-behance:before {
  content: "\e010";
}
.socicon-blizzard:before {
  content: "\e011";
}
.socicon-blogger:before {
  content: "\e012";
}
.socicon-buffer:before {
  content: "\e013";
}
.socicon-chrome:before {
  content: "\e014";
}
.socicon-coderwall:before {
  content: "\e015";
}
.socicon-curse:before {
  content: "\e016";
}
.socicon-dailymotion:before {
  content: "\e017";
}
.socicon-deezer:before {
  content: "\e018";
}
.socicon-delicious:before {
  content: "\e019";
}
.socicon-deviantart:before {
  content: "\e01a";
}
.socicon-diablo:before {
  content: "\e01b";
}
.socicon-digg:before {
  content: "\e01c";
}
.socicon-discord:before {
  content: "\e01d";
}
.socicon-disqus:before {
  content: "\e01e";
}
.socicon-douban:before {
  content: "\e01f";
}
.socicon-draugiem:before {
  content: "\e020";
}
.socicon-dribbble:before {
  content: "\e021";
}
.socicon-drupal:before {
  content: "\e022";
}
.socicon-ebay:before {
  content: "\e023";
}
.socicon-ello:before {
  content: "\e024";
}
.socicon-endomodo:before {
  content: "\e025";
}
.socicon-envato:before {
  content: "\e026";
}
.socicon-etsy:before {
  content: "\e027";
}
.socicon-facebook:before {
  content: "\e028";
}
.socicon-feedburner:before {
  content: "\e029";
}
.socicon-filmweb:before {
  content: "\e02a";
}
.socicon-firefox:before {
  content: "\e02b";
}
.socicon-flattr:before {
  content: "\e02c";
}
.socicon-flickr:before {
  content: "\e02d";
}
.socicon-formulr:before {
  content: "\e02e";
}
.socicon-forrst:before {
  content: "\e02f";
}
.socicon-foursquare:before {
  content: "\e030";
}
.socicon-friendfeed:before {
  content: "\e031";
}
.socicon-github:before {
  content: "\e032";
}
.socicon-goodreads:before {
  content: "\e033";
}
.socicon-google:before {
  content: "\e034";
}
.socicon-googlescholar:before {
  content: "\e035";
}
.socicon-googlegroups:before {
  content: "\e036";
}
.socicon-googlephotos:before {
  content: "\e037";
}
.socicon-googleplus:before {
  content: "\e038";
}
.socicon-grooveshark:before {
  content: "\e039";
}
.socicon-hackerrank:before {
  content: "\e03a";
}
.socicon-hearthstone:before {
  content: "\e03b";
}
.socicon-hellocoton:before {
  content: "\e03c";
}
.socicon-heroes:before {
  content: "\e03d";
}
.socicon-smashcast:before {
  content: "\e03e";
}
.socicon-horde:before {
  content: "\e03f";
}
.socicon-houzz:before {
  content: "\e040";
}
.socicon-icq:before {
  content: "\e041";
}
.socicon-identica:before {
  content: "\e042";
}
.socicon-imdb:before {
  content: "\e043";
}
.socicon-instagram:before {
  content: "\e044";
}
.socicon-issuu:before {
  content: "\e045";
}
.socicon-istock:before {
  content: "\e046";
}
.socicon-itunes:before {
  content: "\e047";
}
.socicon-keybase:before {
  content: "\e048";
}
.socicon-lanyrd:before {
  content: "\e049";
}
.socicon-lastfm:before {
  content: "\e04a";
}
.socicon-line:before {
  content: "\e04b";
}
.socicon-linkedin:before {
  content: "\e04c";
}
.socicon-livejournal:before {
  content: "\e04d";
}
.socicon-lyft:before {
  content: "\e04e";
}
.socicon-macos:before {
  content: "\e04f";
}
.socicon-mail:before {
  content: "\e050";
}
.socicon-medium:before {
  content: "\e051";
}
.socicon-meetup:before {
  content: "\e052";
}
.socicon-mixcloud:before {
  content: "\e053";
}
.socicon-modelmayhem:before {
  content: "\e054";
}
.socicon-mumble:before {
  content: "\e055";
}
.socicon-myspace:before {
  content: "\e056";
}
.socicon-newsvine:before {
  content: "\e057";
}
.socicon-nintendo:before {
  content: "\e058";
}
.socicon-npm:before {
  content: "\e059";
}
.socicon-odnoklassniki:before {
  content: "\e05a";
}
.socicon-openid:before {
  content: "\e05b";
}
.socicon-opera:before {
  content: "\e05c";
}
.socicon-outlook:before {
  content: "\e05d";
}
.socicon-overwatch:before {
  content: "\e05e";
}
.socicon-patreon:before {
  content: "\e05f";
}
.socicon-paypal:before {
  content: "\e060";
}
.socicon-periscope:before {
  content: "\e061";
}
.socicon-persona:before {
  content: "\e062";
}
.socicon-pinterest:before {
  content: "\e063";
}
.socicon-play:before {
  content: "\e064";
}
.socicon-player:before {
  content: "\e065";
}
.socicon-playstation:before {
  content: "\e066";
}
.socicon-pocket:before {
  content: "\e067";
}
.socicon-qq:before {
  content: "\e068";
}
.socicon-quora:before {
  content: "\e069";
}
.socicon-raidcall:before {
  content: "\e06a";
}
.socicon-ravelry:before {
  content: "\e06b";
}
.socicon-reddit:before {
  content: "\e06c";
}
.socicon-renren:before {
  content: "\e06d";
}
.socicon-researchgate:before {
  content: "\e06e";
}
.socicon-residentadvisor:before {
  content: "\e06f";
}
.socicon-reverbnation:before {
  content: "\e070";
}
.socicon-rss:before {
  content: "\e071";
}
.socicon-sharethis:before {
  content: "\e072";
}
.socicon-skype:before {
  content: "\e073";
}
.socicon-slideshare:before {
  content: "\e074";
}
.socicon-smugmug:before {
  content: "\e075";
}
.socicon-snapchat:before {
  content: "\e076";
}
.socicon-songkick:before {
  content: "\e077";
}
.socicon-soundcloud:before {
  content: "\e078";
}
.socicon-spotify:before {
  content: "\e079";
}
.socicon-stackexchange:before {
  content: "\e07a";
}
.socicon-stackoverflow:before {
  content: "\e07b";
}
.socicon-starcraft:before {
  content: "\e07c";
}
.socicon-stayfriends:before {
  content: "\e07d";
}
.socicon-steam:before {
  content: "\e07e";
}
.socicon-storehouse:before {
  content: "\e07f";
}
.socicon-strava:before {
  content: "\e080";
}
.socicon-streamjar:before {
  content: "\e081";
}
.socicon-stumbleupon:before {
  content: "\e082";
}
.socicon-swarm:before {
  content: "\e083";
}
.socicon-teamspeak:before {
  content: "\e084";
}
.socicon-teamviewer:before {
  content: "\e085";
}
.socicon-technorati:before {
  content: "\e086";
}
.socicon-telegram:before {
  content: "\e087";
}
.socicon-tripadvisor:before {
  content: "\e088";
}
.socicon-tripit:before {
  content: "\e089";
}
.socicon-triplej:before {
  content: "\e08a";
}
.socicon-tumblr:before {
  content: "\e08b";
}
.socicon-twitch:before {
  content: "\e08c";
}
.socicon-twitter:before {
  content: "\e08d";
}
.socicon-uber:before {
  content: "\e08e";
}
.socicon-ventrilo:before {
  content: "\e08f";
}
.socicon-viadeo:before {
  content: "\e090";
}
.socicon-viber:before {
  content: "\e091";
}
.socicon-viewbug:before {
  content: "\e092";
}
.socicon-vimeo:before {
  content: "\e093";
}
.socicon-vine:before {
  content: "\e094";
}
.socicon-vkontakte:before {
  content: "\e095";
}
.socicon-warcraft:before {
  content: "\e096";
}
.socicon-wechat:before {
  content: "\e097";
}
.socicon-weibo:before {
  content: "\e098";
}
.socicon-whatsapp:before {
  content: "\e099";
}
.socicon-wikipedia:before {
  content: "\e09a";
}
.socicon-windows:before {
  content: "\e09b";
}
.socicon-wordpress:before {
  content: "\e09c";
}
.socicon-wykop:before {
  content: "\e09d";
}
.socicon-xbox:before {
  content: "\e09e";
}
.socicon-xing:before {
  content: "\e09f";
}
.socicon-yahoo:before {
  content: "\e0a0";
}
.socicon-yammer:before {
  content: "\e0a1";
}
.socicon-yandex:before {
  content: "\e0a2";
}
.socicon-yelp:before {
  content: "\e0a3";
}
.socicon-younow:before {
  content: "\e0a4";
}
.socicon-youtube:before {
  content: "\e0a5";
}
.socicon-zapier:before {
  content: "\e0a6";
}
.socicon-zerply:before {
  content: "\e0a7";
}
.socicon-zomato:before {
  content: "\e0a8";
}
.socicon-zynga:before {
  content: "\e0a9";
}
/*
 *  Contains all variables that are provided from the designer's styleguide
 */
/* Grid widths */
/*
 *  Colors
 *  add custom color variables as needed in marked area
 */
.blue-50 {
  color: #f3faff;
}
.blue-400 {
  color: #0663af;
}
.blue-500 {
  color: #003d8e;
}
.blue-600 {
  color: #002e6b;
}
.blue-700 {
  color: #002659;
}
.blue-800 {
  color: #001e47;
}
.blue-900 {
  color: #001735;
}
.blue-lt-50 {
  color: #f3faff;
}
.blue-lt-500 {
  color: #0063af;
}
.blue-dk-500 {
  color: #003d8e;
}
.blue-dk-700 {
  color: #00295f;
}
.orange-50 {
  color: #fff5f0;
}
.orange-200 {
  color: #ffd386;
}
.orange-400 {
  color: #ffb025;
}
.orange-500 {
  color: #f49b00;
}
.orange-700 {
  color: #f0741c;
}
.orange-800 {
  color: #d8691a;
}
.cool-neutral-100 {
  color: #eef1f7;
}
.cool-neutral-200 {
  color: #e5eaf3;
}
.cool-neutral-300 {
  color: #dde3ef;
}
.cool-neutral-700 {
  color: #90a5cc;
}
.cool-neutral-800 {
  color: #728dbe;
}
.cool-neutral-900 {
  color: #5475b0;
}
.neutral-50 {
  color: #f6f6f6;
}
.neutral-100 {
  color: #ececec;
}
.neutral-500 {
  color: #475569;
}
.neutral-600 {
  color: #494949;
}
.neutral-700 {
  color: #393939;
}
.neutral-800 {
  color: #282828;
}
.neutral-900 {
  color: #181716;
}
.blue-50-bg {
  background-color: #f3faff;
}
.blue-400-bg {
  background-color: #0663af;
}
.blue-500-bg {
  background-color: #003d8e;
}
.blue-600-bg {
  background-color: #002e6b;
}
.blue-700-bg {
  background-color: #002659;
}
.blue-800-bg {
  background-color: #001e47;
}
.blue-900-bg {
  background-color: #001735;
}
.blue-lt-50-bg {
  background-color: #f3faff;
}
.blue-lt-500-bg {
  background-color: #0063af;
}
.blue-dk-500-bg {
  background-color: #003d8e;
}
.blue-dk-700-bg {
  background-color: #00295f;
}
.orange-50-bg {
  background-color: #fff5f0;
}
.orange-200-bg {
  background-color: #ffd386;
}
.orange-400-bg {
  background-color: #ffb025;
}
.orange-500-bg {
  background-color: #f49b00;
}
.orange-700-bg {
  background-color: #f0741c;
}
.orange-800-bg {
  background-color: #d8691a;
}
.cool-neutral-100-bg {
  background-color: #eef1f7;
}
.cool-neutral-200-bg {
  background-color: #e5eaf3;
}
.cool-neutral-300-bg {
  background-color: #dde3ef;
}
.cool-neutral-700-bg {
  background-color: #90a5cc;
}
.cool-neutral-800-bg {
  background-color: #728dbe;
}
.cool-neutral-900-bg {
  background-color: #5475b0;
}
.neutral-50-bg {
  background-color: #f6f6f6;
}
.neutral-100-bg {
  background-color: #ececec;
}
.neutral-500-bg {
  background-color: #475569;
}
.neutral-600-bg {
  background-color: #494949;
}
.neutral-700-bg {
  background-color: #393939;
}
.neutral-800-bg {
  background-color: #282828;
}
.neutral-900-bg {
  background-color: #181716;
}
.gradient-a-bg {
  background: linear-gradient(to right, #f49b00 0%, #f47601 23%, #08a3ff 55%, #003d8e 100%);
}
.gradient-a-reverse-bg {
  background: linear-gradient(to left, #f49b00 0%, #f47601 23%, #08a3ff 55%, #003d8e 100%);
}
.orange-gradient-a-bg {
  background: linear-gradient(to right, #f46600 0%, #f49b00 100%);
}
.blue-gradient-a-bg {
  background: linear-gradient(105deg, #0880dd 0%, #00367d 100%);
}
.blue-gradient-b-bg {
  background: linear-gradient(to right, #0360aa 0%, #000e38 100%);
}
.blue-gradient-b-reverse-bg {
  background: linear-gradient(to left, #0360aa 0%, #000e38 100%);
}
.lt-blue-bg {
  background-color: #f3faff;
}
/*
 * Fonts
 */
.open-sans {
  font-family: 'Open Sans', sans-serif;
}
.lora {
  font-family: 'Lora', serif;
}
/* Font Weights */
/*
 *  Widths
 *  add custom widths in marked area below
 */
/* Site Width Padding */
/* Global elements Styles */
body,
button,
input,
select,
textarea {
  color: #181716;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
}
body {
  background-color: #ffffff;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  max-width: 2600px;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  body,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.product-table .pr-table-table tr:first-of-type th,
.product-table .pr-table-table tr:first-of-type td,
.page-template-template-b .two-column-image-text h2.title,
.page-template-template-i .two-column-image-text h2.title,
.page-template-template-l .two-column-image-text h2.title,
.page-template-template-m .two-column-image-text h2.title,
.single-application .two-column-image-text h2.title,
.tax-product_category .site-main.cat-template-b .two-column-image-text h2.title,
.page-template-template-d .two-column-image-text h2 {
  clear: both;
}
h1,
h2,
h3,
h4,
h5,
h6,
.product-table .pr-table-table tr:first-of-type th,
.product-table .pr-table-table tr:first-of-type td {
  margin: 0 0 24px 0;
  color: #00295f;
}
/* enter customer header styles for each media break point below */
h1,
.h1 {
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.2;
}
h2,
.h2 {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.2;
}
h3,
.h3,
.page-template-template-b .two-column-image-text h2.title,
.page-template-template-i .two-column-image-text h2.title,
.page-template-template-l .two-column-image-text h2.title,
.page-template-template-m .two-column-image-text h2.title,
.single-application .two-column-image-text h2.title,
.tax-product_category .site-main.cat-template-b .two-column-image-text h2.title,
.page-template-template-d .two-column-image-text h2 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.4;
}
h4,
.h4,
.product-table .pr-table-table tr:first-of-type th,
.product-table .pr-table-table tr:first-of-type td {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4;
}
h5,
.h5 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
}
h6,
.h6 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  h1,
  .h1 {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.4;
  }
  h2,
  .h2 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.2;
  }
  h3,
  .h3,
  .page-template-template-b .two-column-image-text h2.title,
  .page-template-template-i .two-column-image-text h2.title,
  .page-template-template-l .two-column-image-text h2.title,
  .page-template-template-m .two-column-image-text h2.title,
  .single-application .two-column-image-text h2.title,
  .tax-product_category .site-main.cat-template-b .two-column-image-text h2.title,
  .page-template-template-d .two-column-image-text h2 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  h4,
  .h4,
  .product-table .pr-table-table tr:first-of-type th,
  .product-table .pr-table-table tr:first-of-type td {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
  h5,
  .h5 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  h6,
  .h6 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.4;
  }
  h2,
  .h2 {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.2;
  }
  h3,
  .h3,
  .page-template-template-b .two-column-image-text h2.title,
  .page-template-template-i .two-column-image-text h2.title,
  .page-template-template-l .two-column-image-text h2.title,
  .page-template-template-m .two-column-image-text h2.title,
  .single-application .two-column-image-text h2.title,
  .tax-product_category .site-main.cat-template-b .two-column-image-text h2.title,
  .page-template-template-d .two-column-image-text h2 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
  h4,
  .h4,
  .product-table .pr-table-table tr:first-of-type th,
  .product-table .pr-table-table tr:first-of-type td {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  h5,
  .h5 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  h6,
  .h6 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  height: 40px;
  color: #707070;
  border: none;
  padding: 0;
  padding-left: 15px;
  background-color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #CCCCCC;
}
/* Use for custom select dropdowns styles */
select {
  background-image: url('../images/select-arrow.png');
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
select:not([disabled]):focus {
  box-shadow: none;
}
textarea {
  height: 200px;
  padding: 10px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus,
input[type="text"]:active,
input[type="tel"]:active,
input[type="email"]:active,
input[type="number"]:active,
input[type="password"]:active,
input[type="search"]:active,
select:active,
textarea:active {
  outline: none;
  box-shadow: none;
}
::-webkit-input-placeholder {
  color: #181716;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
:-moz-placeholder {
  color: #181716;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
::-moz-placeholder {
  color: #181716;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
:-ms-input-placeholder {
  color: #181716;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-input-placeholder {
  color: transparent;
}
input:focus::-moz-input-placeholder {
  color: transparent;
}
input:focus::-ms-input-placeholder {
  color: transparent;
}
a {
  color: #003d8e;
  text-decoration: none;
}
a:hover,
a:active {
  color: #181716;
  text-decoration: none;
}
a:focus {
  outline: none;
}
.link-color {
  color: #003d8e;
}
.link-color-hover {
  color: #181716;
}
p {
  margin-top: 0;
  margin-bottom: 20px;
}
hr {
  display: block;
  border: none;
  border-bottom: 3px solid #393939;
  padding-top: 25px;
  margin-bottom: 25px;
}
i {
  font-style: normal;
  display: inline-block;
}
b,
strong,
.bold {
  font-weight: 700;
}
cite,
dfn,
em {
  font-style: italic;
}
iframe {
  border: none;
  width: 100%;
  height: auto;
}
.wysiwyg ul li,
.wysiwyg ol li {
  padding-bottom: 25px;
}
blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-size: 3rem;
  color: #181716;
  font-weight: 700;
  font-style: italic;
  max-width: 840px;
  margin: 20px auto;
  line-height: 1.5;
}
/****************************************************************************************************/
/*************************************Color Helpers**************************************************/
/****************************************************************************************************/
/****************************************************************************************************/
/*************************************Social Icons**************************************************/
/****************************************************************************************************/
[class^="socicon-"],
[class*=" socicon-"] {
  font-family: 'Socicon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.social-icons li {
  margin-right: 8px;
}
.social-icons a {
  color: #181716;
  font-size: 20px;
  font-size: 2rem;
}
.social-icons a:hover {
  color: #000000;
}
/****************************************************************************************************/
/*******************************************Buttons**************************************************/
/****************************************************************************************************/
.btn,
input[type="submit"],
div.gform_wrapper.gravity-theme .gform_footer .button {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #f49b00;
  text-transform: none;
  color: #ffffff;
  padding: 14px 32px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  font-weight: 600;
}
.btn.white-border,
input[type="submit"].white-border,
div.gform_wrapper.gravity-theme .gform_footer .button.white-border {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn.white-border:hover,
input[type="submit"].white-border:hover,
div.gform_wrapper.gravity-theme .gform_footer .button.white-border:hover {
  background-color: #ffffff;
  color: #003d8e;
}
.btn.black-border,
input[type="submit"].black-border,
div.gform_wrapper.gravity-theme .gform_footer .button.black-border {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}
.btn.black-border:hover,
input[type="submit"].black-border:hover,
div.gform_wrapper.gravity-theme .gform_footer .button.black-border:hover {
  background-color: #000000;
  color: #ffffff;
}
.btn.yellow-border,
input[type="submit"].yellow-border,
div.gform_wrapper.gravity-theme .gform_footer .button.yellow-border {
  background-color: transparent;
  color: #F49B00;
  border: 2px solid #F49B00;
}
.btn.yellow-border:hover,
input[type="submit"].yellow-border:hover,
div.gform_wrapper.gravity-theme .gform_footer .button.yellow-border:hover {
  background-color: #F49B00;
  color: #ffffff;
}
.btn.orange-gradient,
input[type="submit"].orange-gradient,
div.gform_wrapper.gravity-theme .gform_footer .button.orange-gradient {
  background: linear-gradient(to right, #f46600 0%, #f49b00 100%);
}
.btn.white,
input[type="submit"].white,
div.gform_wrapper.gravity-theme .gform_footer .button.white {
  background-color: #fff5f0;
  color: #001e47;
}
.btn.blue,
input[type="submit"].blue,
div.gform_wrapper.gravity-theme .gform_footer .button.blue {
  background-color: #0063af;
}
.btn:hover,
input[type="submit"]:hover,
div.gform_wrapper.gravity-theme .gform_footer .button:hover {
  background-color: #003d8e;
  color: #ffffff;
}
.btn:focus .btn:active,
div.gform_wrapper.gravity-theme .gform_footer .button:focus div.gform_wrapper.gravity-theme .gform_footer .button:active {
  outline: none;
}
.btn-hover-full:hover,
.btn-hover-full:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #181716;
}
@media (max-width: 500px) {
  .btn,
  input[type="submit"],
  div.gform_wrapper.gravity-theme .gform_footer .button {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 14px;
  }
}
.link-arrow {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
}
.link-arrow .fa-angle-right {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin-left: 9px;
  -webkit-transition: margin-left 0.2s ease-out;
  -moz-transition: margin-left 0.2s ease-out;
  -o-transition: margin-left 0.2s ease-out;
  transition: margin-left 0.2s ease-out;
}
.link-arrow:hover .fa-angle-right {
  margin-left: 19px;
}
.pretitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0663af;
  position: relative;
  margin-bottom: 5px;
}
.pretitle span {
  position: relative;
}
.pretitle.two-lines span:before {
  content: '';
  width: 0;
  height: 3px;
  background-color: #181716;
  position: absolute;
  top: 50%;
  right: calc(100% + 13px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: width 0.6s ease-out;
  -moz-transition: width 0.6s ease-out;
  -o-transition: width 0.6s ease-out;
  transition: width 0.6s ease-out;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.pretitle.animated span:before,
.pretitle.animated span:after {
  width: 60px;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}
.slick-arrow {
  position: absolute;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 9999px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.2s box-shadow ease-out;
  -moz-transition: 0.2s box-shadow ease-out;
  -o-transition: 0.2s box-shadow ease-out;
  transition: 0.2s box-shadow ease-out;
}
.slick-arrow:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s box-shadow ease-out;
  -moz-transition: 0.2s box-shadow ease-out;
  -o-transition: 0.2s box-shadow ease-out;
  transition: 0.2s box-shadow ease-out;
}
.slick-arrow:before {
  color: #f0741c;
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
  font-size: 28px;
  font-size: 2.8rem;
}
.slick-arrow.prev-arrow {
  left: 0;
}
.slick-arrow.next-arrow {
  right: 0;
}
.slick-arrow.prev-arrow:before {
  content: '\f104';
}
.slick-arrow.next-arrow:before {
  content: '\f105';
}
@media (max-width: 767px) {
  .slick-arrow {
    width: 32px;
    height: 32px;
  }
  .slick-arrow:before {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}
.slick-dots button {
  background: #e5eaf3;
  color: transparent;
  border-radius: 9999px;
  border: none;
  height: 12px;
  width: 12px;
  padding: 0;
  overflow: hidden;
  font-size: 1px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: #f0741c;
}
ul.icon-list li,
ol.icon-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
}
ul.icon-list li:before,
ol.icon-list li:before {
  content: '\f06c';
  font-family: 'Font Awesome 5 Pro';
  color: #181716;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  font-weight: 700;
}
ul.icon-list > li:last-of-type,
ol.icon-list > li:last-of-type {
  margin-bottom: 10px;
}
.error404 .site-main .search-form,
.no-results .search-form {
  max-width: 500px;
  margin: auto;
}
.error404 .site-main .input-holder,
.no-results .input-holder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  position: relative;
}
.error404 .site-main .search-icon,
.no-results .search-icon {
  position: absolute;
  z-index: 1;
  top: 6px;
  border: none;
  background: transparent;
  right: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #181716;
}
.search .spacer {
  height: 10px;
}
@media (max-width: 1024px) {
  .search .spacer {
    height: 30px;
  }
}
/****************************************************************************************************/
/**************************************Gravity Forms*************************************************/
/****************************************************************************************************/
[type="checkbox"]:not(:checked),
[type="radio"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:checked {
  position: absolute;
  opacity: 0;
  z-index: 1;
  height: 20px;
  cursor: pointer;
}
[type="checkbox"]:not(:checked) + label,
[type="radio"]:not(:checked) + label,
[type="checkbox"]:checked + label,
[type="radio"]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="radio"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before,
[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border: 1px solid #494949;
  background: #fff;
  box-shadow: none;
}
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="radio"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after,
[type="radio"]:checked + label:after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  top: 5px;
  left: 4px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0.8;
  color: #181716;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
/* checked mark aspect changes */
[type="checkbox"]:checked + label:before,
[type="radio"]:checked + label:before {
  background-color: #E3E3E3;
}
/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
  content: '';
  top: 4px;
  left: 5px;
  width: 12px;
  height: 12px;
  background-color: #181716;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after,
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
}
[type="checkbox"]:checked + label:after,
[type="radion"]:checked + label:after {
  opacity: 1;
}
/* disabled checkbox */
div.gform_wrapper.gravity-theme {
  font-family: 'Montserrat', sans-serif;
}
div.gform_wrapper.gravity-theme .gfield {
  width: 100%;
}
div.gform_wrapper.gravity-theme .gfield_label {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #282828;
  margin-bottom: 4px;
  display: inline-block;
}
div.gform_wrapper.gravity-theme .shorter-width input,
div.gform_wrapper.gravity-theme .shorter-width select {
  max-width: 260px;
}
div.gform_wrapper.gravity-theme ul.gfield_checkbox li {
  margin-bottom: 10px;
}
div.gform_wrapper.gravity-theme ul.gfield_radio li {
  display: inline-block;
  padding-right: 50px;
  margin-bottom: 5px;
}
div.gform_wrapper.gravity-theme .gform_drop_instructions {
  display: none;
}
div.gform_wrapper.gravity-theme .gform_button_select_files {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #494949;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #E3E3E3;
  position: relative;
  padding: 8.5px 25.5px;
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 1;
  color: #181716;
  font-weight: 600;
  overflow: hidden;
}
div.gform_wrapper.gravity-theme div[id^="gform_preview_"] > div:first-of-type {
  margin-top: 20px;
}
div.gform_wrapper.gravity-theme .ginput_preview {
  position: relative;
  padding-left: 23px;
  color: #393939;
  font-weight: 400;
}
div.gform_wrapper.gravity-theme .ginput_preview .gform_delete {
  opacity: 0;
  margin-left: -23px;
  cursor: pointer;
}
div.gform_wrapper.gravity-theme .ginput_preview:before {
  content: '\f057';
  font-family: 'Font Awesome 5 Pro';
  color: red;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
div.gform_wrapper.gravity-theme .ginput_preview strong {
  margin-left: 5px;
  color: #393939;
  font-weight: 400;
}
div.gform_wrapper.gravity-theme input[type="text"],
div.gform_wrapper.gravity-theme input[type="email"],
div.gform_wrapper.gravity-theme input[type="tel"],
div.gform_wrapper.gravity-theme input[type="number"],
div.gform_wrapper.gravity-theme input[type="password"],
div.gform_wrapper.gravity-theme select,
div.gform_wrapper.gravity-theme textarea {
  width: 100%;
  background-color: #eef1f7;
  border: 1px solid #002e6b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 14px;
  font-size: 1.4rem;
}
div.gform_wrapper.gravity-theme textarea {
  resize: vertical;
  height: 80px;
}
div.gform_wrapper.gravity-theme .gfield_required {
  color: #9F1F63;
  margin-left: 1px;
}
div.gform_wrapper.gravity-theme .gform_heading,
div.gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}
div.gform_wrapper.gravity-theme .validation_error,
div.gform_wrapper.gravity-theme .validation_message {
  padding: 0;
  color: red;
  border: none;
  background: none;
  font-size: 12px;
  margin-top: 2px;
}
div.gform_wrapper.gravity-theme .gform_footer {
  margin-top: 32px;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
div.gform_wrapper.gravity-theme .gform_footer .button {
  margin-top: 0;
  width: auto;
  background-color: #0063af;
  outline: 0;
  border: 0;
}
@media (max-width: 767px) {
  p + div.gform_wrapper.gravity-theme,
  h2 + div.gform_wrapper.gravity-theme,
  h3 + div.gform_wrapper.gravity-theme,
  h4 + div.gform_wrapper.gravity-theme,
  h5 + div.gform_wrapper.gravity-theme,
  h6 + div.gform_wrapper.gravity-theme,
  .product-table .pr-table-table tr:first-of-type th + div.gform_wrapper.gravity-theme,
  .product-table .pr-table-table tr:first-of-type td + div.gform_wrapper.gravity-theme {
    padding-top: 1em;
  }
  div.gform_wrapper.gravity-theme .form-column,
  div.gform_wrapper.gravity-theme .half-left,
  div.gform_wrapper.gravity-theme .half-right,
  div.gform_wrapper.gravity-theme .third-left,
  div.gform_wrapper.gravity-theme .third-center,
  div.gform_wrapper.gravity-theme .third-right {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  div.gform_wrapper.gravity-theme ul li {
    margin-bottom: 10px;
  }
  div.gform_wrapper.gravity-theme .address_city,
  div.gform_wrapper.gravity-theme .address_state,
  div.gform_wrapper.gravity-theme .address_zip {
    float: left;
  }
  div.gform_wrapper.gravity-theme .address_line_2 {
    margin-bottom: 10px;
  }
  div.gform_wrapper.gravity-theme .address_city {
    width: 100%;
    padding-right: 0;
  }
  div.gform_wrapper.gravity-theme .address_state {
    width: 50%;
    padding-left: 0;
    padding-top: 10px;
  }
  div.gform_wrapper.gravity-theme .address_zip {
    width: 50%;
    padding-left: 20px;
    padding-top: 10px;
  }
}
@media (max-width: 500px) {
  div.gform_wrapper.gravity-theme {
    padding: 20px 20px 30px;
  }
  div.gform_wrapper.gravity-theme .address_state {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  div.gform_wrapper.gravity-theme .address_zip {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  div.gform_wrapper.gravity-theme .shorter-width input,
  div.gform_wrapper.gravity-theme .shorter-width select {
    max-width: 100%;
  }
  div.gform_wrapper.gravity-theme .two-column-lists .gfield_checkbox {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}
@media (max-width: 390px) {
  div.gform_wrapper.gravity-theme .ginput_recaptcha > div {
    width: 100% !important;
  }
}
/****************************************************************************************************/
/*******************************************Pager****************************************************/
/****************************************************************************************************/
nav.paging-navigation {
  margin: 45px auto;
}
nav.paging-navigation .pagination {
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
nav.paging-navigation .pagination .page-numbers {
  display: block;
  border-left: solid 1px #181716;
  border-top: solid 1px #181716;
  border-bottom: solid 1px #181716;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #181716;
}
nav.paging-navigation .pagination .page-numbers.current {
  background-color: #181716;
  color: #ffffff;
}
nav.paging-navigation .pagination .page-numbers:hover {
  background-color: #181716;
  color: #ffffff;
}
nav.paging-navigation .pagination .next,
nav.paging-navigation .pagination .prev {
  font-size: 18px;
  font-size: 1.8rem;
  color: #181716;
}
nav.paging-navigation .pagination .next:hover,
nav.paging-navigation .pagination .prev:hover {
  background-color: #181716;
}
nav.paging-navigation .pagination .next {
  border-right: solid 1px #181716;
}
nav.paging-navigation .pagination .prev {
  border-left: solid 1px #181716;
}
nav.paging-navigation .pagination .page-numbers.dots {
  border-top: none;
  border-bottom: none;
  line-height: 40px;
}
nav.paging-navigation .pagination .page-numbers.dots:hover {
  background-color: transparent;
  color: #181716;
}
nav.post-navigation {
  margin-top: 20px;
  margin-bottom: 70px;
  border-top: solid 4px #e6e8ec;
  padding-top: 20px;
}
nav.post-navigation h2.screen-reader-text {
  font-size: 0;
  line-height: 0;
  margin: 0;
}
nav.post-navigation .nav-links {
  clear: both;
}
nav.post-navigation .nav-links .nav-previous {
  float: left;
}
nav.post-navigation .nav-links .nav-next {
  float: right;
}
@media (max-width: 1024px) {
  nav.paging-navigation {
    margin: 20px auto 0;
  }
}
/****OOCSS****/
/*
* First Script Framework
* Version: 0.25
* 10/30/17
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size-adjust: 100%;
}
/* Display Properties */
.column-wrapper,
.columns-wrapper {
  overflow: hidden;
}
.pull-left,
.left,
.alignleft {
  float: left;
}
.pull-right,
.right,
.alignright {
  float: right;
}
.no-float,
.float-none {
  float: none;
}
.clear {
  clear: both;
}
.table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}
.table.height-auto {
  height: auto;
}
.table-row {
  display: table-row;
}
.table-cell {
  display: table-cell;
}
.static {
  position: static;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.absolute.full,
.fixed.full {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.relative.full {
  width: 100%;
  height: 100%;
}
.hidden,
.hide {
  display: none;
}
.display-block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.display-inherit {
  display: inherit;
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.vertical-mid,
.vert-mid {
  vertical-align: middle;
}
.vertical-top,
.vert-top {
  vertical-align: top;
}
.vertical-bottom,
.vert-bottom {
  vertical-align: bottom;
}
.text-two-column,
.text-two-columns {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}
.z-index-100 {
  z-index: 100;
}
.z-index-200 {
  z-index: 200;
}
.z-index-500 {
  z-index: 500;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* Flexbox Classes
 * review mixins.less for flexbox methods available
 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-column {
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-grow-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.flex-grow-2 {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.flex-grow-3 {
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
}
.flex-start {
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}
.flex-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.align-items-start {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.align-items-end {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.space-between {
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.space-around {
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}
.order--1 {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.full-height {
  height: 100%;
}
/* Percentage Widths */
.one {
  width: 1%;
}
.two {
  width: 2%;
}
.three {
  width: 3%;
}
.four {
  width: 4%;
}
.five {
  width: 5%;
}
.six {
  width: 6%;
}
.seven {
  width: 7%;
}
.eight {
  width: 8%;
}
.nine {
  width: 9%;
}
.ten {
  width: 10%;
}
.eleven {
  width: 11%;
}
.twelve {
  width: 12%;
}
.thirteen {
  width: 13%;
}
.fourteen {
  width: 14%;
}
.fifteen {
  width: 15%;
}
.sixteen,
.six-column {
  width: 16.66666%;
}
.twenty,
.five-column {
  width: 20%;
}
.twentyfive,
.twenty-five,
.four-column {
  width: 25%;
}
.thirty {
  width: 30%;
}
.thirtythree,
.thirty-three,
.three-column {
  width: 33.333%;
}
.fourty,
.forty {
  width: 40%;
}
.fortyfive,
.fourtyfive {
  width: 45%;
}
.fifty,
.two-column {
  width: 50%;
}
.fiftyfive {
  width: 55%;
}
.sixty {
  width: 60%;
}
.sixtyfive,
.sixty-five {
  width: 65%;
}
.sixtysix,
.sixty-six {
  width: 66.666%;
}
.seventy {
  width: 70%;
}
.seventyfive,
.seventy-five {
  width: 75%;
}
.eighty {
  width: 80%;
}
.eightyfive,
.eighty-five {
  width: 85%;
}
.ninety {
  width: 90%;
}
.ninetyfive,
.ninety-five {
  width: 95%;
}
.hundred,
.one-column {
  width: 100%;
}
/* Typography Properties
 * review mixins.less to see availible methods for altering font-sizes and other properties
 */
.italic {
  font-style: italic;
}
.weight-light {
  font-weight: 300;
}
.weight-normal {
  font-weight: 400;
}
.weight-medium {
  font-weight: 500;
}
.weight-semi-bold {
  font-weight: 600;
}
.weight-bold {
  font-weight: 700;
}
.weight-extra-bold {
  font-weight: 800;
}
.weight-black {
  font-weight: 900;
}
.textleft,
.text-left {
  text-align: left;
}
.textright,
.text-right {
  text-align: right;
}
.textcenter,
.text-center {
  text-align: center;
}
.line-height-0 {
  line-height: 0;
}
.line-height-1 {
  line-height: 1;
}
.line-height-1-1 {
  line-height: 1.1;
}
.line-height-1-2 {
  line-height: 1.2;
}
.line-height-1-3 {
  line-height: 1.3;
}
.line-height-1-4 {
  line-height: 1.4;
}
.line-height-1-5 {
  line-height: 1.5;
}
.line-height-1-6 {
  line-height: 1.6;
}
.line-height-1-7 {
  line-height: 1.7;
}
.line-height-1-8 {
  line-height: 1.8;
}
.line-height-1-9 {
  line-height: 1.9;
}
.line-height-2 {
  line-height: 2;
}
.underline {
  text-decoration: underline;
}
.no-txt-decor {
  text-decoration: none;
}
.uppercase,
.caps {
  text-transform: uppercase;
}
.lowercase,
.lower {
  text-transform: lowercase;
}
.no-list,
.no-list ul,
ul.no-list > li,
.slick-dots,
ul.icon-list,
ul.icon-list ul,
ulul.icon-list > li,
ol.icon-list,
ol.icon-list ul,
ulol.icon-list > li {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.inside-list,
.list-inside {
  list-style-position: inside;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-indent: -9999px;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.nowrap {
  white-space: nowrap;
}
/* Margin & Padding Properties */
.no-margin {
  margin: 0;
}
.no-top-margin {
  margin-top: 0;
}
.no-bottom-margin {
  margin-bottom: 0;
}
.margin-auto {
  margin: auto;
}
.margin-left-auto {
  margin-left: auto;
}
.margin-right-auto {
  margin-right: auto;
}
.margin-top-auto {
  margin-top: auto;
}
.margin-bottom-auto {
  margin-bottom: auto;
}
.no-padding {
  padding: 0;
}
body .no-lr-padding {
  padding-left: 0;
  padding-right: 0;
}
/* Color Helpers */
.white {
  color: #ffffff;
}
.black {
  color: #000000;
}
.charcoal {
  color: #393939;
}
/* Image Helpers */
.responsive {
  width: 100%;
  height: auto;
}
.max-image {
  max-width: 100%;
  height: auto;
}
.bg-no-repeat,
.background-no-repeat,
.backgroundnorepeat {
  background-repeat: no-repeat;
}
.bg-cover,
.background-cover,
.backgroundcover {
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-auto,
.background-auto,
.backgroundauto {
  background-size: auto;
  background-repeat: no-repeat;
}
.bg-contain,
.background-contain,
.backgroundcontain {
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-bc,
.background-bottom-center {
  background-position: center bottom;
}
.bg-bl,
.background-bottom-left {
  background-position: left bottom;
}
.bg-br,
.background-bottom-right {
  background-position: right bottom;
}
.bg-cl,
.background-center {
  background-position: center left;
}
.bg-cc,
.bg-center,
.background-center {
  background-position: center center;
}
.bg-cr,
.background-center {
  background-position: center right;
}
.bg-center,
.background-center {
  background-position: center center;
}
.bg-lc,
.background-left-center {
  background-position: left center;
}
.bg-rc,
.background-right-center {
  background-position: right center;
}
.bg-tc,
.background-top-center {
  background-position: center top;
}
.bg-tl,
.background-top-left {
  background-position: left top;
}
.bg-tr,
.background-top-right {
  background-position: right top;
}
/* Animation, Transitions, & Transforms
 * review mixins.less to view all methods for transitions and transforms
 */
.transition {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.pre-animated,
.no-visible,
.not-visible {
  visibility: hidden;
}
.animated {
  visibility: visible;
}
.delay-one,
.delay-1,
.delay1 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.delay-two,
.delay-2,
.delay2 {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.delay-two-five,
.delay-2-5,
.delay2-5 {
  animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
  -webkit-transition-delay: 2.5s;
  transition-delay: 2.5s;
}
.delay-three,
.delay-3,
.delay3 {
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
  -webkit-transition-delay: 3s;
  transition-delay: 3s;
}
.delay-four,
.delay-4,
.delay4 {
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
  -webkit-transition-delay: 4s;
  transition-delay: 4s;
}
.delay-five,
.delay-5,
.delay5 {
  animation-delay: 5s;
  -webkit-animation-delay: 5s;
  -webkit-transition-delay: 5s;
  transition-delay: 5s;
}
.parallax {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 565px) {
  .parallax {
    background-attachment: scroll;
  }
}
/* Other Helpers */
.pointer:hover {
  cursor: pointer;
}
/* WordPress Resets */
.comment-content img,
.entry-content img,
.entry-summary img,
#site-header img,
.widget img,
.wp-caption {
  max-width: 100%;
}
.comment-content img[height],
.entry-content img,
.entry-summary img,
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"],
#site-header img {
  height: auto;
}
img.size-full,
img.size-large,
.wp-post-image,
.post-thumbnail img {
  height: auto;
  max-width: 100%;
}
p > embed,
p > iframe,
p > object,
span > embed,
span > iframe,
span > object {
  margin-bottom: 0;
}
img.alignleft {
  margin: 10px 10px 10px 0;
}
img.alignright {
  margin: 10px 0 10px 10px;
}
img.aligncenter {
  margin: auto;
  display: block;
}
/* Grid Media Queries
 * review styleguide.less to see all available media queries widths.
 */
.col-12 {
  width: 100%;
}
.col-11 {
  width: 91.66667%;
}
.col-10 {
  width: 83.33333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.66667%;
}
.col-7 {
  width: 58.33333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.66667%;
}
.col-4 {
  width: 33.33333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.6666%;
}
.col-1 {
  width: 8.33333%;
}
@media (max-width: 1500px) {
  .col-xxl-12 {
    width: 100%;
  }
  .col-xxl-11 {
    width: 91.66667%;
  }
  .col-xxl-10 {
    width: 83.33333%;
  }
  .col-xxl-9 {
    width: 75%;
  }
  .col-xxl-8 {
    width: 66.66667%;
  }
  .col-xxl-7 {
    width: 58.33333%;
  }
  .col-xxl-6 {
    width: 50%;
  }
  .col-xxl-5 {
    width: 41.66667%;
  }
  .col-xxl-4 {
    width: 33.33333%;
  }
  .col-xxl-3 {
    width: 25%;
  }
  .col-xxl-2 {
    width: 16.6666%;
  }
  .col-xxl-1 {
    width: 8.33333%;
  }
  .xxl-one {
    width: 1%;
  }
  .xxl-two {
    width: 2%;
  }
  .xxl-three {
    width: 3%;
  }
  .xxl-four {
    width: 4%;
  }
  .xxl-five {
    width: 5%;
  }
  .xxl-six {
    width: 6%;
  }
  .xxl-seven {
    width: 7%;
  }
  .xxl-eight {
    width: 8%;
  }
  .xxl-nine {
    width: 9%;
  }
  .xxl-ten {
    width: 10%;
  }
  .xxl-eleven {
    width: 11%;
  }
  .xxl-twelve {
    width: 12%;
  }
  .xxl-thirteen {
    width: 13%;
  }
  .xxl-fourteen {
    width: 14%;
  }
  .xxl-fifteen {
    width: 15%;
  }
  .xxl-sixteen,
  .xxl-six-column {
    width: 16.66666%;
  }
  .xxl-twenty,
  .xxl-five-column {
    width: 20%;
  }
  .xxl-twentyfive,
  .xxl-twenty-five,
  .xxl-four-column {
    width: 25%;
  }
  .xxl-thirty {
    width: 30%;
  }
  .xxl-thirtythree,
  .xxl-thirty-three,
  .xxl-three-column {
    width: 33.333%;
  }
  .xxl-fourty,
  .xxl-forty {
    width: 40%;
  }
  .xxl-fortyfive {
    width: 45%;
  }
  .xxl-fifty,
  .xxl-two-column {
    width: 50%;
  }
  .xxl-fiftyfive {
    width: 55%;
  }
  .xxl-sixty {
    width: 60%;
  }
  .xxl-sixtysix,
  .xxl-sixty-six {
    width: 66.666%;
  }
  .xxl-seventy {
    width: 70%;
  }
  .xxl-seventyfive,
  .xxl-seventy-five {
    width: 75%;
  }
  .xxl-eighty {
    width: 80%;
  }
  .xxl-eightyfive,
  .xxl-eighty-five {
    width: 85%;
  }
  .xxl-ninety {
    width: 90%;
  }
  .xxl-ninetyfive,
  .xxl-ninety-five {
    width: 95%;
  }
  .xxl-hundred,
  .xxl-one-column {
    width: 100%;
  }
  .xxl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xxl-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .xxl-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .xxl-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .xxl-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .xxl-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .xxl-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .xxl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .xxl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .xxl-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .xxl-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .xxl-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xxl-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xxl-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xxl-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xxl-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xxl-no-padding {
    padding: 0;
  }
  body .xxl-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .xxl-hidden,
  .xxl-hide {
    display: none;
  }
  .xxl-block {
    display: block;
  }
  .xxl-inline {
    display: inline;
  }
  .xxl-inline-block {
    display: inline-block;
  }
  .xxl-static {
    position: static;
  }
  .xxl-relative {
    position: relative;
  }
  .xxl-absolute {
    position: absolute;
  }
  .xxl-fixed {
    position: fixed;
  }
  .xxl-clearfix:before,
  .xxl-clearfix:after {
    content: " ";
    display: table;
  }
  .xxl-clearfix:after {
    clear: both;
  }
  .xxl-column-wrapper,
  .xxl-columns-wrapper {
    overflow: hidden;
  }
  .xxl-vertical-top,
  .xxl-vert-top {
    vertical-align: top;
  }
  .xxl-vertical-bottom,
  .xxl-vert-btm {
    vertical-align: bottom;
  }
  .xxl-vertical-middle,
  .xxl-vert-mid {
    vertical-align: middle;
  }
  .xxl-left,
  .xxl-pull-left {
    float: left;
  }
  .xxl-right,
  .xxl-pull-right {
    float: right;
  }
  .xxl-no-float,
  .xxl-float-none {
    float: none;
  }
  .xxl-textleft,
  .xxl-text-left {
    text-align: left;
  }
  .xxl-textright,
  .xxl-text-right {
    text-align: right;
  }
  .xxl-textcenter,
  .xxl-text-center {
    text-align: center;
  }
  .xxl-margin-auto {
    margin: auto;
  }
  .xxl-margin-left-auto {
    margin-left: auto;
  }
  .xxl-margin-right-auto {
    margin-right: auto;
  }
  .xxl-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-xxl-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-xxl-12 {
    padding-left: 0px;
  }
}
@media (max-width: 1366px) {
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-11 {
    width: 91.66667%;
  }
  .col-xl-10 {
    width: 83.33333%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-8 {
    width: 66.66667%;
  }
  .col-xl-7 {
    width: 58.33333%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-5 {
    width: 41.66667%;
  }
  .col-xl-4 {
    width: 33.33333%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-2 {
    width: 16.6666%;
  }
  .col-xl-1 {
    width: 8.33333%;
  }
  .xl-one {
    width: 1%;
  }
  .xl-two {
    width: 2%;
  }
  .xl-three {
    width: 3%;
  }
  .xl-four {
    width: 4%;
  }
  .xl-five {
    width: 5%;
  }
  .xl-six {
    width: 6%;
  }
  .xl-seven {
    width: 7%;
  }
  .xl-eight {
    width: 8%;
  }
  .xl-nine {
    width: 9%;
  }
  .xl-ten {
    width: 10%;
  }
  .xl-eleven {
    width: 11%;
  }
  .xl-twelve {
    width: 12%;
  }
  .xl-thirteen {
    width: 13%;
  }
  .xl-fourteen {
    width: 14%;
  }
  .xl-fifteen {
    width: 15%;
  }
  .xl-sixteen,
  .xl-six-column {
    width: 16.66666%;
  }
  .xl-twenty,
  .xl-five-column {
    width: 20%;
  }
  .xl-twentyfive,
  .xl-twenty-five,
  .xl-four-column {
    width: 25%;
  }
  .xl-thirty {
    width: 30%;
  }
  .xl-thirtythree,
  .xl-thirty-three,
  .xl-three-column {
    width: 33.333%;
  }
  .xl-fourty,
  .xl-forty {
    width: 40%;
  }
  .xl-fortyfive {
    width: 45%;
  }
  .xl-fifty,
  .xl-two-column {
    width: 50%;
  }
  .xl-fiftyfive {
    width: 55%;
  }
  .xl-sixty {
    width: 60%;
  }
  .xl-sixtysix,
  .xl-sixty-six {
    width: 66.666%;
  }
  .xl-seventy {
    width: 70%;
  }
  .xl-seventyfive,
  .xl-seventy-five {
    width: 75%;
  }
  .xl-eighty {
    width: 80%;
  }
  .xl-eightyfive,
  .xl-eighty-five {
    width: 85%;
  }
  .xl-ninety {
    width: 90%;
  }
  .xl-ninetyfive,
  .xl-ninety-five {
    width: 95%;
  }
  .xl-hundred,
  .xl-one-column {
    width: 100%;
  }
  .xl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xl-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .xl-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .xl-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .xl-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .xl-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .xl-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .xl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .xl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .xl-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .xl-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .xl-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xl-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xl-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xl-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xl-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xl-no-padding {
    padding: 0;
  }
  body .xl-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .xl-hidden,
  .xl-hide {
    display: none;
  }
  .xl-block {
    display: block;
  }
  .xl-inline {
    display: inline;
  }
  .xl-inline-block {
    display: inline-block;
  }
  .xl-static {
    position: static;
  }
  .xl-relative {
    position: relative;
  }
  .xl-absolute {
    position: absolute;
  }
  .xl-fixed {
    position: fixed;
  }
  .xl-clearfix:before,
  .xl-clearfix:after {
    content: " ";
    display: table;
  }
  .xl-clearfix:after {
    clear: both;
  }
  .xl-column-wrapper,
  .xl-columns-wrapper {
    overflow: hidden;
  }
  .xl-vertical-top,
  .xl-vert-top {
    vertical-align: top;
  }
  .xl-vertical-bottom,
  .xl-vert-btm {
    vertical-align: bottom;
  }
  .xl-vertical-middle,
  .xl-vert-mid {
    vertical-align: middle;
  }
  .xl-left,
  .xl-pull-left {
    float: left;
  }
  .xl-right,
  .xl-pull-right {
    float: right;
  }
  .xl-no-float,
  .xl-float-none {
    float: none;
  }
  .xl-textleft,
  .xl-text-left {
    text-align: left;
  }
  .xl-textright,
  .xl-text-right {
    text-align: right;
  }
  .xl-textcenter,
  .xl-text-center {
    text-align: center;
  }
  .xl-margin-auto {
    margin: auto;
  }
  .xl-margin-left-auto {
    margin-left: auto;
  }
  .xl-margin-right-auto {
    margin-right: auto;
  }
  .xl-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-xl-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-xl-12 {
    padding-left: 0px;
  }
}
@media (max-width: 1200px) {
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.6666%;
  }
  .col-lg-1 {
    width: 8.33333%;
  }
  .lg-one {
    width: 1%;
  }
  .lg-two {
    width: 2%;
  }
  .lg-three {
    width: 3%;
  }
  .lg-four {
    width: 4%;
  }
  .lg-five {
    width: 5%;
  }
  .lg-six {
    width: 6%;
  }
  .lg-seven {
    width: 7%;
  }
  .lg-eight {
    width: 8%;
  }
  .lg-nine {
    width: 9%;
  }
  .lg-ten {
    width: 10%;
  }
  .lg-eleven {
    width: 11%;
  }
  .lg-twelve {
    width: 12%;
  }
  .lg-thirteen {
    width: 13%;
  }
  .lg-fourteen {
    width: 14%;
  }
  .lg-fifteen {
    width: 15%;
  }
  .lg-sixteen,
  .lg-six-column {
    width: 16.66666%;
  }
  .lg-twenty,
  .lg-five-column {
    width: 20%;
  }
  .lg-twentyfive,
  .lg-twenty-five,
  .lg-four-column {
    width: 25%;
  }
  .lg-thirty {
    width: 30%;
  }
  .lg-thirtythree,
  .lg-thirty-three,
  .lg-three-column {
    width: 33.333%;
  }
  .lg-fourty,
  .lg-forty {
    width: 40%;
  }
  .lg-fortyfive {
    width: 45%;
  }
  .lg-fifty,
  .lg-two-column {
    width: 50%;
  }
  .lg-fiftyfive {
    width: 55%;
  }
  .lg-sixty {
    width: 60%;
  }
  .lg-sixtysix,
  .lg-sixty-six {
    width: 66.666%;
  }
  .lg-seventy {
    width: 70%;
  }
  .lg-seventyfive,
  .lg-seventy-five {
    width: 75%;
  }
  .lg-eighty {
    width: 80%;
  }
  .lg-eightyfive,
  .lg-eighty-five {
    width: 85%;
  }
  .lg-ninety {
    width: 90%;
  }
  .lg-ninetyfive,
  .lg-ninety-five {
    width: 95%;
  }
  .lg-hundred,
  .lg-one-column {
    width: 100%;
  }
  .lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lg-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .lg-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .lg-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lg-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .lg-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .lg-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .lg-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .lg-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .lg-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .lg-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .lg-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .lg-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .lg-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .lg-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .lg-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .lg-no-padding {
    padding: 0;
  }
  body .lg-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .lg-hidden,
  .lg-hide {
    display: none;
  }
  .lg-block {
    display: block;
  }
  .lg-inline {
    display: inline;
  }
  .lg-inline-block {
    display: inline-block;
  }
  .lg-static {
    position: static;
  }
  .lg-relative {
    position: relative;
  }
  .lg-absolute {
    position: absolute;
  }
  .lg-fixed {
    position: fixed;
  }
  .lg-clearfix:before,
  .lg-clearfix:after {
    content: " ";
    display: table;
  }
  .lg-clearfix:after {
    clear: both;
  }
  .lg-column-wrapper,
  .lg-columns-wrapper {
    overflow: hidden;
  }
  .lg-vertical-top,
  .lg-vert-top {
    vertical-align: top;
  }
  .lg-vertical-bottom,
  .lg-vert-btm {
    vertical-align: bottom;
  }
  .lg-vertical-middle,
  .lg-vert-mid {
    vertical-align: middle;
  }
  .lg-left,
  .lg-pull-left {
    float: left;
  }
  .lg-right,
  .lg-pull-right {
    float: right;
  }
  .lg-no-float,
  .lg-float-none {
    float: none;
  }
  .lg-textleft,
  .lg-text-left {
    text-align: left;
  }
  .lg-textright,
  .lg-text-right {
    text-align: right;
  }
  .lg-textcenter,
  .lg-text-center {
    text-align: center;
  }
  .lg-margin-auto {
    margin: auto;
  }
  .lg-margin-left-auto {
    margin-left: auto;
  }
  .lg-margin-right-auto {
    margin-right: auto;
  }
  .lg-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-lg-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-lg-12 {
    padding-left: 0px;
  }
}
@media (max-width: 1024px) {
  .col-tbl-12 {
    width: 100%;
  }
  .col-tbl-11 {
    width: 91.66667%;
  }
  .col-tbl-10 {
    width: 83.33333%;
  }
  .col-tbl-9 {
    width: 75%;
  }
  .col-tbl-8 {
    width: 66.66667%;
  }
  .col-tbl-7 {
    width: 58.33333%;
  }
  .col-tbl-6 {
    width: 50%;
  }
  .col-tbl-5 {
    width: 41.66667%;
  }
  .col-tbl-4 {
    width: 33.33333%;
  }
  .col-tbl-3 {
    width: 25%;
  }
  .col-tbl-2 {
    width: 16.6666%;
  }
  .col-tbl-1 {
    width: 8.33333%;
  }
  .tbl-one {
    width: 1%;
  }
  .tbl-two {
    width: 2%;
  }
  .tbl-three {
    width: 3%;
  }
  .tbl-four {
    width: 4%;
  }
  .tbl-five {
    width: 5%;
  }
  .tbl-six {
    width: 6%;
  }
  .tbl-seven {
    width: 7%;
  }
  .tbl-eight {
    width: 8%;
  }
  .tbl-nine {
    width: 9%;
  }
  .tbl-ten {
    width: 10%;
  }
  .tbl-eleven {
    width: 11%;
  }
  .tbl-twelve {
    width: 12%;
  }
  .tbl-thirteen {
    width: 13%;
  }
  .tbl-fourteen {
    width: 14%;
  }
  .tbl-fifteen {
    width: 15%;
  }
  .tbl-sixteen,
  .tbl-six-column {
    width: 16.66666%;
  }
  .tbl-twenty,
  .tbl-five-column {
    width: 20%;
  }
  .tbl-twentyfive,
  .tbl-twenty-five,
  .tbl-four-column {
    width: 25%;
  }
  .tbl-thirty {
    width: 30%;
  }
  .tbl-thirtythree,
  .tbl-thirty-three,
  .tbl-three-column {
    width: 33.333%;
  }
  .tbl-fourty,
  .tbl-forty {
    width: 40%;
  }
  .tbl-fortyfive {
    width: 45%;
  }
  .tbl-fifty,
  .tbl-two-column {
    width: 50%;
  }
  .tbl-fiftyfive {
    width: 55%;
  }
  .tbl-sixty {
    width: 60%;
  }
  .tbl-sixtysix,
  .tbl-sixty-six {
    width: 66.666%;
  }
  .tbl-seventy {
    width: 70%;
  }
  .tbl-seventyfive,
  .tbl-seventy-five {
    width: 75%;
  }
  .tbl-eighty {
    width: 80%;
  }
  .tbl-eightyfive,
  .tbl-eighty-five {
    width: 85%;
  }
  .tbl-ninety {
    width: 90%;
  }
  .tbl-ninetyfive,
  .tbl-ninety-five {
    width: 95%;
  }
  .tbl-hundred,
  .tbl-one-column {
    width: 100%;
  }
  .tbl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tbl-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tbl-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .tbl-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tbl-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .tbl-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .tbl-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .tbl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tbl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .tbl-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .tbl-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .tbl-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .tbl-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .tbl-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .tbl-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .tbl-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .tbl-no-padding {
    padding: 0;
  }
  body .tbl-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .tbl-hidden,
  .tbl-hide {
    display: none;
  }
  .tbl-block {
    display: block;
  }
  .tbl-inline {
    display: inline;
  }
  .tbl-inline-block {
    display: inline-block;
  }
  .tbl-static {
    position: static;
  }
  .tbl-relative {
    position: relative;
  }
  .tbl-absolute {
    position: absolute;
  }
  .tbl-fixed {
    position: fixed;
  }
  .tbl-clearfix:before,
  .tbl-clearfix:after {
    content: " ";
    display: table;
  }
  .tbl-clearfix:after {
    clear: both;
  }
  .tbl-column-wrapper,
  .tbl-columns-wrapper {
    overflow: hidden;
  }
  .tbl-vertical-top,
  .tbl-vert-top {
    vertical-align: top;
  }
  .tbl-vertical-bottom,
  .tbl-vert-btm {
    vertical-align: bottom;
  }
  .tbl-vertical-middle,
  .tbl-vert-mid {
    vertical-align: middle;
  }
  .tbl-left,
  .tbl-pull-left {
    float: left;
  }
  .tbl-right,
  .tbl-pull-right {
    float: right;
  }
  .tbl-no-float,
  .tbl-float-none {
    float: none;
  }
  .tbl-textleft,
  .tbl-text-left {
    text-align: left;
  }
  .tbl-textright,
  .tbl-text-right {
    text-align: right;
  }
  .tbl-textcenter,
  .tbl-text-center {
    text-align: center;
  }
  .tbl-margin-auto {
    margin: auto;
  }
  .tbl-margin-left-auto {
    margin-left: auto;
  }
  .tbl-margin-right-auto {
    margin-right: auto;
  }
  .tbl-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-tbl-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-tbl-12 {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.6666%;
  }
  .col-sm-1 {
    width: 8.33333%;
  }
  .sm-one {
    width: 1%;
  }
  .sm-two {
    width: 2%;
  }
  .sm-three {
    width: 3%;
  }
  .sm-four {
    width: 4%;
  }
  .sm-five {
    width: 5%;
  }
  .sm-six {
    width: 6%;
  }
  .sm-seven {
    width: 7%;
  }
  .sm-eight {
    width: 8%;
  }
  .sm-nine {
    width: 9%;
  }
  .sm-ten {
    width: 10%;
  }
  .sm-eleven {
    width: 11%;
  }
  .sm-twelve {
    width: 12%;
  }
  .sm-thirteen {
    width: 13%;
  }
  .sm-fourteen {
    width: 14%;
  }
  .sm-fifteen {
    width: 15%;
  }
  .sm-sixteen,
  .sm-six-column {
    width: 16.66666%;
  }
  .sm-twenty,
  .sm-five-column {
    width: 20%;
  }
  .sm-twentyfive,
  .sm-twenty-five,
  .sm-four-column {
    width: 25%;
  }
  .sm-thirty {
    width: 30%;
  }
  .sm-thirtythree,
  .sm-thirty-three,
  .sm-three-column {
    width: 33.333%;
  }
  .sm-fourty,
  .sm-forty {
    width: 40%;
  }
  .sm-fortyfive {
    width: 45%;
  }
  .sm-fifty,
  .sm-two-column {
    width: 50%;
  }
  .sm-fiftyfive {
    width: 55%;
  }
  .sm-sixty {
    width: 60%;
  }
  .sm-sixtysix,
  .sm-sixty-six {
    width: 66.666%;
  }
  .sm-seventy {
    width: 70%;
  }
  .sm-seventyfive,
  .sm-seventy-five {
    width: 75%;
  }
  .sm-eighty {
    width: 80%;
  }
  .sm-eightyfive,
  .sm-eighty-five {
    width: 85%;
  }
  .sm-ninety {
    width: 90%;
  }
  .sm-ninetyfive,
  .sm-ninety-five {
    width: 95%;
  }
  .sm-hundred,
  .sm-one-column {
    width: 100%;
  }
  .sm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sm-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sm-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .sm-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sm-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .sm-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .sm-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .sm-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .sm-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sm-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .sm-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .sm-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .sm-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .sm-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .sm-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .sm-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .sm-no-padding {
    padding: 0;
  }
  body .sm-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .sm-hidden,
  .sm-hide {
    display: none;
  }
  .sm-block {
    display: block;
  }
  .sm-inline {
    display: inline;
  }
  .sm-inline-block {
    display: inline-block;
  }
  .sm-static {
    position: static;
  }
  .sm-relative {
    position: relative;
  }
  .sm-absolute {
    position: absolute;
  }
  .sm-fixed {
    position: fixed;
  }
  .sm-clearfix:before,
  .sm-clearfix:after {
    content: " ";
    display: table;
  }
  .sm-clearfix:after {
    clear: both;
  }
  .sm-column-wrapper,
  .sm-columns-wrapper {
    overflow: hidden;
  }
  .sm-vertical-top,
  .sm-vert-top {
    vertical-align: top;
  }
  .sm-vertical-bottom,
  .sm-vert-btm {
    vertical-align: bottom;
  }
  .sm-vertical-middle,
  .sm-vert-mid {
    vertical-align: middle;
  }
  .sm-left,
  .sm-pull-left {
    float: left;
  }
  .sm-right,
  .sm-pull-right {
    float: right;
  }
  .sm-no-float,
  .sm-float-none {
    float: none;
  }
  .sm-textleft,
  .sm-text-left {
    text-align: left;
  }
  .sm-textright,
  .sm-text-right {
    text-align: right;
  }
  .sm-textcenter,
  .sm-text-center {
    text-align: center;
  }
  .sm-margin-auto {
    margin: auto;
  }
  .sm-margin-left-auto {
    margin-left: auto;
  }
  .sm-margin-right-auto {
    margin-right: auto;
  }
  .sm-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-sm-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-sm-12 {
    padding-left: 0px;
  }
}
@media (max-width: 643px) {
  .col-xsm-12 {
    width: 100%;
  }
  .col-xsm-11 {
    width: 91.66667%;
  }
  .col-xsm-10 {
    width: 83.33333%;
  }
  .col-xsm-9 {
    width: 75%;
  }
  .col-xsm-8 {
    width: 66.66667%;
  }
  .col-xsm-7 {
    width: 58.33333%;
  }
  .col-xsm-6 {
    width: 50%;
  }
  .col-xsm-5 {
    width: 41.66667%;
  }
  .col-xsm-4 {
    width: 33.33333%;
  }
  .col-xsm-3 {
    width: 25%;
  }
  .col-xsm-2 {
    width: 16.6666%;
  }
  .col-xsm-1 {
    width: 8.33333%;
  }
  .xsm-one {
    width: 1%;
  }
  .xsm-two {
    width: 2%;
  }
  .xsm-three {
    width: 3%;
  }
  .xsm-four {
    width: 4%;
  }
  .xsm-five {
    width: 5%;
  }
  .xsm-six {
    width: 6%;
  }
  .xsm-seven {
    width: 7%;
  }
  .xsm-eight {
    width: 8%;
  }
  .xsm-nine {
    width: 9%;
  }
  .xsm-ten {
    width: 10%;
  }
  .xsm-eleven {
    width: 11%;
  }
  .xsm-twelve {
    width: 12%;
  }
  .xsm-thirteen {
    width: 13%;
  }
  .xsm-fourteen {
    width: 14%;
  }
  .xsm-fifteen {
    width: 15%;
  }
  .xsm-sixteen,
  .xsm-six-column {
    width: 16.66666%;
  }
  .xsm-twenty,
  .xsm-five-column {
    width: 20%;
  }
  .xsm-twentyfive,
  .xsm-twenty-five,
  .xsm-four-column {
    width: 25%;
  }
  .xsm-thirty {
    width: 30%;
  }
  .xsm-thirtythree,
  .xsm-thirty-three,
  .xsm-three-column {
    width: 33.333%;
  }
  .xsm-fourty,
  .xsm-forty {
    width: 40%;
  }
  .xsm-fortyfive {
    width: 45%;
  }
  .xsm-fifty,
  .xsm-two-column {
    width: 50%;
  }
  .xsm-fiftyfive {
    width: 55%;
  }
  .xsm-sixty {
    width: 60%;
  }
  .xsm-sixtysix,
  .xsm-sixty-six {
    width: 66.666%;
  }
  .xsm-seventy {
    width: 70%;
  }
  .xsm-seventyfive,
  .xsm-seventy-five {
    width: 75%;
  }
  .xsm-eighty {
    width: 80%;
  }
  .xsm-eightyfive,
  .xsm-eighty-five {
    width: 85%;
  }
  .xsm-ninety {
    width: 90%;
  }
  .xsm-ninetyfive,
  .xsm-ninety-five {
    width: 95%;
  }
  .xsm-hundred,
  .xsm-one-column {
    width: 100%;
  }
  .xsm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xsm-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .xsm-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .xsm-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .xsm-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .xsm-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .xsm-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .xsm-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .xsm-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .xsm-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .xsm-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .xsm-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xsm-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xsm-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xsm-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xsm-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xsm-no-padding {
    padding: 0;
  }
  body .xsm-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .xsm-hidden,
  .xsm-hide {
    display: none;
  }
  .xsm-block {
    display: block;
  }
  .xsm-inline {
    display: inline;
  }
  .xsm-inline-block {
    display: inline-block;
  }
  .xsm-static {
    position: static;
  }
  .xsm-relative {
    position: relative;
  }
  .xsm-absolute {
    position: absolute;
  }
  .xsm-fixed {
    position: fixed;
  }
  .xsm-clearfix:before,
  .xsm-clearfix:after {
    content: " ";
    display: table;
  }
  .xsm-clearfix:after {
    clear: both;
  }
  .xsm-column-wrapper,
  .xsm-columns-wrapper {
    overflow: hidden;
  }
  .xsm-vertical-top,
  .xsm-vert-top {
    vertical-align: top;
  }
  .xsm-vertical-bottom,
  .xsm-vert-btm {
    vertical-align: bottom;
  }
  .xsm-vertical-middle,
  .xsm-vert-mid {
    vertical-align: middle;
  }
  .xsm-left,
  .xsm-pull-left {
    float: left;
  }
  .xsm-right,
  .xsm-pull-right {
    float: right;
  }
  .xsm-no-float,
  .xsm-float-none {
    float: none;
  }
  .xsm-textleft,
  .xsm-text-left {
    text-align: left;
  }
  .xsm-textright,
  .xsm-text-right {
    text-align: right;
  }
  .xsm-textcenter,
  .xsm-text-center {
    text-align: center;
  }
  .xsm-margin-auto {
    margin: auto;
  }
  .xsm-margin-left-auto {
    margin-left: auto;
  }
  .xsm-margin-right-auto {
    margin-right: auto;
  }
  .xsm-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-xsm-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-xsm-12 {
    padding-left: 0px;
  }
}
@media (max-width: 500px) {
  .col-mbl-12 {
    width: 100%;
  }
  .col-mbl-11 {
    width: 91.66667%;
  }
  .col-mbl-10 {
    width: 83.33333%;
  }
  .col-mbl-9 {
    width: 75%;
  }
  .col-mbl-8 {
    width: 66.66667%;
  }
  .col-mbl-7 {
    width: 58.33333%;
  }
  .col-mbl-6 {
    width: 50%;
  }
  .col-mbl-5 {
    width: 41.66667%;
  }
  .col-mbl-4 {
    width: 33.33333%;
  }
  .col-mbl-3 {
    width: 25%;
  }
  .col-mbl-2 {
    width: 16.6666%;
  }
  .col-mbl-1 {
    width: 8.33333%;
  }
  .mbl-one {
    width: 1%;
  }
  .mbl-two {
    width: 2%;
  }
  .mbl-three {
    width: 3%;
  }
  .mbl-four {
    width: 4%;
  }
  .mbl-five {
    width: 5%;
  }
  .mbl-six {
    width: 6%;
  }
  .mbl-seven {
    width: 7%;
  }
  .mbl-eight {
    width: 8%;
  }
  .mbl-nine {
    width: 9%;
  }
  .mbl-ten {
    width: 10%;
  }
  .mbl-eleven {
    width: 11%;
  }
  .mbl-twelve {
    width: 12%;
  }
  .mbl-thirteen {
    width: 13%;
  }
  .mbl-fourteen {
    width: 14%;
  }
  .mbl-fifteen {
    width: 15%;
  }
  .mbl-sixteen,
  .mbl-six-column {
    width: 16.66666%;
  }
  .mbl-twenty,
  .mbl-five-column {
    width: 20%;
  }
  .mbl-twentyfive,
  .mbl-twenty-five,
  .mbl-four-column {
    width: 25%;
  }
  .mbl-thirty {
    width: 30%;
  }
  .mbl-thirtythree,
  .mbl-thirty-three,
  .mbl-three-column {
    width: 33.333%;
  }
  .mbl-fourty,
  .mbl-forty {
    width: 40%;
  }
  .mbl-fortyfive {
    width: 45%;
  }
  .mbl-fifty,
  .mbl-two-column {
    width: 50%;
  }
  .mbl-fiftyfive {
    width: 55%;
  }
  .mbl-sixty {
    width: 60%;
  }
  .mbl-sixtysix,
  .mbl-sixty-six {
    width: 66.666%;
  }
  .mbl-seventy {
    width: 70%;
  }
  .mbl-seventyfive,
  .mbl-seventy-five {
    width: 75%;
  }
  .mbl-eighty {
    width: 80%;
  }
  .mbl-eightyfive,
  .mbl-eighty-five {
    width: 85%;
  }
  .mbl-ninety {
    width: 90%;
  }
  .mbl-ninetyfive,
  .mbl-ninety-five {
    width: 95%;
  }
  .mbl-hundred,
  .mbl-one-column {
    width: 100%;
  }
  .mbl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mbl-flex-column {
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mbl-flex-row {
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .mbl-flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mbl-flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .mbl-flex-grow-2 {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .mbl-flex-grow-3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
  .mbl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .mbl-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mbl-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .mbl-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .mbl-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .mbl-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .mbl-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .mbl-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .mbl-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .mbl-no-padding {
    padding: 0;
  }
  body .mbl-no-lr-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .mbl-hidden,
  .mbl-hide {
    display: none;
  }
  .mbl-block {
    display: block;
  }
  .mbl-inline {
    display: inline;
  }
  .mbl-inline-block {
    display: inline-block;
  }
  .mbl-static {
    position: static;
  }
  .mbl-relative {
    position: relative;
  }
  .mbl-absolute {
    position: absolute;
  }
  .mbl-fixed {
    position: fixed;
  }
  .mbl-clearfix:before,
  .mbl-clearfix:after {
    content: " ";
    display: table;
  }
  .mbl-clearfix:after {
    clear: both;
  }
  .mbl-column-wrapper,
  .mbl-columns-wrapper {
    overflow: hidden;
  }
  .mbl-vertical-top,
  .mbl-vert-top {
    vertical-align: top;
  }
  .mbl-vertical-bottom,
  .mbl-vert-btm {
    vertical-align: bottom;
  }
  .mbl-vertical-middle,
  .mbl-vert-mid {
    vertical-align: middle;
  }
  .mbl-left,
  .mbl-pull-left {
    float: left;
  }
  .mbl-right,
  .mbl-pull-right {
    float: right;
  }
  .mbl-no-float,
  .mbl-float-none {
    float: none;
  }
  .mbl-textleft,
  .mbl-text-left {
    text-align: left;
  }
  .mbl-textright,
  .mbl-text-right {
    text-align: right;
  }
  .mbl-textcenter,
  .mbl-text-center {
    text-align: center;
  }
  .mbl-margin-auto {
    margin: auto;
  }
  .mbl-margin-left-auto {
    margin-left: auto;
  }
  .mbl-margin-right-auto {
    margin-right: auto;
  }
  .mbl-no-bg-img {
    background-image: none !important;
  }
  .gform_wrapper .left-column.col-mbl-12 {
    padding-right: 0px;
  }
  .gform_wrapper .right-column.col-mbl-12 {
    padding-left: 0px;
  }
}
/* Site Widths
* review styleguide.less to review current variables. 
* Sets padding to site width at it's breakpoint plus the desired padding. 
* If different padding is needed per site width, add variables as needed.
*/
.panel-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.panel-padding-2x {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .panel-padding-2x {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.full-width {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 140%) {
  .full-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-width,
.mfp-gallery .mfp-inline-holder .mfp-content {
  width: 100%;
  max-width: 1540px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1580px) {
  .site-width,
  .mfp-gallery .mfp-inline-holder .mfp-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.med-site-width {
  width: 100%;
  max-width: 1296px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1336px) {
  .med-site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sm-site-width {
  width: 100%;
  max-width: 1148px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1188px) {
  .sm-site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.xsm-site-width {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 800px) {
  .xsm-site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sidebar-width {
  width: 100%;
  max-width: 420px;
  margin: auto;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 460px) {
  .sidebar-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lg-site-width {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1460px) {
  .lg-site-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sidebar-width {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.accent-title,
.left-accent-title {
  position: relative;
}
.accent-title .left-accent-line,
.left-accent-title .left-accent-line,
.accent-title .right-accent-line,
.left-accent-title .right-accent-line {
  background-color: #ffb025;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
.accent-title .left-accent-line:before,
.left-accent-title .left-accent-line:before,
.accent-title .right-accent-line:before,
.left-accent-title .right-accent-line:before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #ffb025;
  border-radius: 999px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
.accent-title .left-accent-line,
.left-accent-title .left-accent-line {
  left: 0;
}
.accent-title .left-accent-line:before,
.left-accent-title .left-accent-line:before {
  left: 0;
}
.accent-title .right-accent-line,
.left-accent-title .right-accent-line {
  right: 0;
}
.accent-title .right-accent-line:before,
.left-accent-title .right-accent-line:before {
  right: 0;
}
@media (max-width: 500px) {
  .accent-title :before,
  .left-accent-title :before,
  .accent-title :after,
  .left-accent-title :after {
    display: none;
  }
}
.fs-tta:not(.location-accordions) .tab-bar {
  list-style: none;
  list-style-type: none;
  padding: 0;
  position: relative;
  margin: 0;
}
.fs-tta:not(.location-accordions) .tab-bar > li {
  position: relative;
}
.fs-tta:not(.location-accordions) .tab-bar > li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background-color: #ffffff;
  width: 2px;
  height: 100%;
}
.fs-tta:not(.location-accordions) .tab-bar > li:first-of-type > .tab {
  border-radius: 20px 0 0 0;
}
.fs-tta:not(.location-accordions) .tab-bar > li:last-of-type > .tab {
  border-radius: 0 20px 0 0;
}
.fs-tta:not(.location-accordions) .tab-bar > li:last-of-type:after {
  content: none;
}
.fs-tta:not(.location-accordions) .tab-bar .tab {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0;
  color: #728dbe;
  font-weight: 600;
  width: 100%;
  height: 76px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: #e5eaf3;
  border-top: 4px solid #5475b0;
}
.fs-tta:not(.location-accordions) .tab-bar .tab.active,
.fs-tta:not(.location-accordions) .tab-bar .tab:hover {
  background-color: #003d8e;
  color: #ffffff;
  border-top: 4px solid #f49b00;
}
.fs-tta:not(.location-accordions) .tab-bar .tab.active:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 14px solid #003d8e;
  display: block;
}
.fs-tta:not(.location-accordions) .mobile-tab-title {
  margin: 0 0 16px;
  color: #728dbe;
  font-weight: 600;
  width: 100%;
  height: 76px;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: #e5eaf3;
  border-top: 4px solid #5475b0;
  position: relative;
}
.fs-tta:not(.location-accordions) .mobile-tab-title.active {
  background-color: #003d8e;
  color: #ffffff;
  border-top: 4px solid #f49b00;
}
.fs-tta:not(.location-accordions) .mobile-tab-title.active:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 14px solid #003d8e;
  display: block;
}
.fs-tta:not(.location-accordions) .mobile-tab-title:before {
  content: '\f067';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 32px;
  top: 50%;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fs-tta:not(.location-accordions) .mobile-tab-title.active:before {
  content: '\f068';
}
.fs-tta:not(.location-accordions) .tab-body {
  padding-top: 48px;
}
@media (max-width: 1200px) {
  .fs-tta:not(.location-accordions) .tab-bar .tab {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  .fs-tta:not(.location-accordions) .tab-body {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .fs-tta:not(.location-accordions) .mobile-tab-title {
    height: 64px;
  }
  .fs-tta:not(.location-accordions) .mobile-tab-title:before {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .fs-tta:not(.location-accordions) .tab-body {
    padding-top: 24px;
  }
}
.search .page-header:not(.no-results-header) {
  margin-bottom: 40px;
}
.search .section__body {
  margin-bottom: 40px;
}
.search .section__body .page-title {
  margin-bottom: 10px;
}
/*
*  Header Styles
*/
.admin-bar .site-header {
  top: 32px;
}
.admin-bar .mobile-navigation {
  top: 167px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .admin-bar .mobile-navigation {
    top: 118px;
  }
}
@media (max-width: 767px) {
  .admin-bar .mobile-navigation {
    top: 120px;
  }
}
.site-header {
  z-index: 10;
  top: 0;
  left: 0;
  height: 135px;
  z-index: 100;
}
.site-header .site-logo {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.site-header .site-logo a {
  position: relative;
  display: block;
  width: 320px;
  height: 51px;
  background-size: cover;
}
@media (max-width: 500px) {
  .site-header .site-logo a {
    width: 258px;
    height: 30px;
  }
}
.header-aux {
  height: 40px;
  background-color: #003d8e;
}
.header-aux .aux-navigation li {
  margin-left: 32px;
}
.header-aux .aux-navigation a {
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
}
@media (max-width: 420px) {
  .header-aux .aux-navigation li {
    margin-left: 20px;
  }
}
/*
*  Primary Navigation Styles
*/
.header-main {
  height: 95px;
  background-color: #ffffff;
}
.header-main .primary-navigation > ul > li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.header-main .primary-navigation > ul > li > a {
  padding-left: 12px;
  padding-right: 12px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #393939;
  font-weight: 600;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.header-main .primary-navigation > ul > li > a:hover {
  color: #181716;
}
.header-main .primary-navigation > ul > li.menu-item-has-children:hover .sub-menu,
.header-main .primary-navigation > ul > li.menu-item-has-children:focus .sub-menu {
  display: block;
}
.header-main .primary-navigation > ul > li.nav-button {
  margin-left: 16px;
  margin-right: 16px;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.header-main .primary-navigation > ul > li.nav-button > a {
  color: #ffffff;
  background-color: #f49b00;
  padding: 16px;
  display: inline-block;
  border-radius: 8px;
  line-height: 1;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.header-main .primary-navigation > ul > li.nav-button > a:hover {
  background-color: #003d8e;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.header-main .primary-navigation > ul > li:not(.nav-button) > a {
  height: 95px;
}
.header-main .header-search-button {
  color: #393939;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.header-main .header-search-button:hover {
  color: #181716;
}
@media (max-width: 1500px) {
  .header-main .header-search-button,
  .header-main .primary-navigation > ul > li > a {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1400px) {
  .header-main .header-search-button,
  .header-main .primary-navigation > ul > li > a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 1350px) {
  .header-main .header-search-button,
  .header-main .primary-navigation > ul > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1250px) {
  .header-main .header-search-button,
  .header-main .primary-navigation > ul > li > a {
    font-size: 15px;
    font-size: 1.5rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1200px) {
  .header-main .right-col {
    -webkit-align-self: center;
    -ms-align-self: center;
    align-self: center;
    padding-bottom: 0;
  }
  .header-main .header-search-button {
    font-size: 18px;
    font-size: 1.8rem;
    margin-right: 10px;
  }
}
body:not(.page-template-proven-framework) .site-main {
  padding-top: 135px;
  display: block;
}
@media (max-width: 767px) {
  body:not(.page-template-proven-framework) .site-main {
    padding-bottom: 40px;
  }
}
/*
*  Primary Navigation Submenu Styles
*/
.header-main .primary-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: auto;
  border-top: 1px solid #CCCCCC;
  min-width: 240px;
  max-width: 400px;
  display: none;
  overflow-y: auto;
  height: calc(100vh - 130px);
  z-index: 101;
}
.header-main .primary-navigation .sub-menu a {
  display: block;
  padding: 15px 36px;
  font-weight: 600;
  background-color: #ffffff;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-size: 1.6rem;
  color: #181716;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  text-transform: capitalize;
}
.header-main .primary-navigation .sub-menu .overview-link {
  display: none;
}
.header-main .primary-navigation .sub-menu a:hover,
.header-main .primary-navigation .sub-menu a:focus {
  background-color: #f7f7f7;
  color: #003d8e;
}
@media (max-width: 1400px) {
  .header-main .primary-navigation .sub-menu a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/* SEARCH BOX */
.search-wrapper {
  width: 160px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.search-wrapper .input-holder {
  position: relative;
}
.search-wrapper button.search-icon.search-submit {
  position: absolute;
  z-index: 1;
  top: 11px;
  border: none;
  background: transparent;
  left: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #475569;
}
.search-wrapper .search-input {
  border: 1px solid #282828;
  background-color: transparent;
  border-radius: 9999px;
  height: 50px;
  padding-left: 40px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .search-wrapper {
    display: none;
  }
}
.menu-toggle {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  top: 0;
  right: 0;
  padding: 9px 10px 10px;
}
.menu-toggle .inner {
  width: 32px;
  height: 20px;
  position: relative;
}
.menu-toggle .inner span {
  -webkit-transition: transform 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}
.menu-toggle .inner span:first-child {
  top: 0px;
  height: 3px;
  width: 100%;
  background-color: #181716;
  position: absolute;
}
.menu-toggle .inner span:nth-child(2) {
  top: 9px;
  height: 3px;
  width: 100%;
  background-color: #181716;
  position: absolute;
}
.menu-toggle .inner span:nth-child(3) {
  top: 18px;
  height: 3px;
  width: 100%;
  background-color: #181716;
  position: absolute;
}
.menu-toggle:hover .inner span:first-child,
.menu-toggle:hover .inner span:nth-child(2),
.menu-toggle:hover .inner span:nth-child(3) {
  background-color: #181716;
}
body.mobile-menu-open .menu-toggle .inner span:first-child {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}
body.mobile-menu-open .menu-toggle .inner span:nth-child(2) {
  opacity: 0;
}
body.mobile-menu-open .menu-toggle .inner span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
}
.mobile-navigation {
  position: fixed;
  top: 135px;
  width: 100%;
  z-index: 102;
  background-color: white;
  overflow-y: auto;
  bottom: 0;
  padding-bottom: 20px;
  border-top: 1px solid #d9d9d9;
}
.mobile-navigation .nav-menu > li > a {
  color: #181716;
  font-weight: 600;
  padding: 16px 25px;
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.mobile-navigation .nav-menu > li > a:hover {
  color: #ffffff;
  background-color: #181716;
}
.mobile-navigation .nav-menu > li.menu-item-has-children > a:after {
  content: '\f0d7';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 25px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
}
.mobile-navigation .nav-menu > li.menu-item-has-children.opened > a:after {
  content: '\f0d8';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 25px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
}
.mobile-navigation .nav-menu > li {
  position: relative;
  border-bottom: 1px solid #d9d9d9;
}
.mobile-navigation .sub-menu {
  background-color: #f7f7f7;
  display: none;
}
.mobile-navigation .sub-menu > li > a {
  color: #181716;
  font-weight: 600;
  padding: 12px 45px;
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
}
.mobile-navigation .sub-menu > li {
  border-bottom: 1px solid #d9d9d9;
}
.mobile-navigation .sub-menu > li:first-of-type {
  border-top: 1px solid #d9d9d9;
}
.mobile-navigation .sub-menu > li:last-of-type {
  border-bottom: none;
}
.mobile-navigation span.toggle-submenu {
  top: 2px;
  right: 25px;
}
.mobile-navigation span.toggle-submenu > i {
  font-size: 24px;
  font-size: 2.4rem;
}
.mobile-navigation .bottom-menu {
  padding: 25px;
}
.mobile-navigation .search-wrapper input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/*
*  Footer Styles
*/
.footer-cta {
  background-color: #cecece;
}
.site-footer {
  background-color: #ffffff;
  position: relative;
}
.site-footer:before {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #f49b00 0%, #f47601 23%, #08a3ff 55%, #003d8e 100%);
}
.site-footer .column-2 {
  font-size: 16px;
  font-size: 1.6rem;
}
.site-footer .column-2 a {
  color: #393939;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-block;
  line-height: 1.5;
}
.site-footer .column-2 a:hover,
.site-footer .column-2 a:focus {
  color: #003d8e;
}
.site-footer .footer-logo {
  line-height: 0;
}
.site-footer .footer-logo img {
  width: 300px;
  max-width: 300px;
  height: 52px;
}
.site-footer .footer-inner {
  padding-top: 26px;
  padding-bottom: 8px;
}
.site-footer .footer-navigation ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-left: -20px;
  margin-right: -20px;
}
.site-footer .footer-navigation li {
  padding-left: 20px;
  padding-right: 20px;
}
.site-footer .footer-navigation a {
  font-weight: 500;
  padding: 6px 0;
  display: inline-block;
}
.site-footer .copyright {
  position: relative;
  text-align: center;
  padding-bottom: 36px;
  color: #282828;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0;
}
.site-footer .social-media li {
  margin-right: 16px;
}
.site-footer .social-media li:last-of-type {
  margin-right: 0;
}
.site-footer .social-media a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #000000;
  width: 48px;
  height: 48px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 999px;
  border: 2px solid #ececec;
  background-color: #ffffff;
}
@media (max-width: 1680px) {
  .site-footer .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  .site-footer .column-1 {
    padding-bottom: 30px;
    padding-right: 0;
  }
  .site-footer .column-1 .social-media {
    padding-top: 0;
  }
  .site-footer .footer-inner {
    padding-bottom: 20px;
  }
  .site-footer .footer-logo img {
    max-width: 260px;
  }
}
@media (max-width: 1024px) {
  .site-footer .footer-navigation ul {
    margin-left: -10px;
    margin-right: -10px;
  }
  .site-footer .footer-navigation li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .site-footer .social-media {
    padding: 16px 0;
  }
}
/**
 * 
 * NAME:          Template Builder Stylesheets
 * -----------------------------------------------------------------------------
*/
.banner-with-background-image {
  padding-top: 110px;
  padding-bottom: 110px;
}
.banner-with-background-image .overlay {
  background: rgba(0, 0, 0, 0.6);
}
.banner-with-background-image.has-video-bg .wrapper-video {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}
.banner-with-background-image.has-video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
  pointer-events: none;
}
.home .banner-with-background-image {
  padding-top: 270px;
  padding-bottom: 260px;
}
.banner-with-background-image .title {
  margin-bottom: 10px;
  color: #ffffff;
}
.banner-with-background-image .inner.text-center {
  margin: auto;
}
.banner-with-background-image .inner {
  max-width: 610px;
}
.banner-with-background-image .left-col {
  max-width: 550px;
}
.banner-with-background-image .content {
  padding-bottom: 15px;
}
.banner-with-background-image .content p {
  color: #ffffff;
  font-size: 28px;
  font-size: 2.8rem;
}
.banner-with-background-image .btn.orange-gradient,
.banner-with-background-image div.gform_wrapper.gravity-theme .gform_footer .button.orange-gradient {
  padding: 19px 35px;
}
@media (max-width: 1024px) {
  .home .banner-with-background-image {
    padding-top: 205px;
    padding-bottom: 110px;
  }
  .banner-with-background-image .content p {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .banner-with-background-image {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 500px) {
  .home .banner-with-background-image {
    padding-top: 165px;
    padding-bottom: 75px;
  }
  .banner-with-background-image .title {
    margin-bottom: 10px;
  }
  .banner-with-background-image .content p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.button-panel {
  font-family: 'Open Sans', sans-serif;
}
.button-panel .inner {
  padding-top: 15px;
  padding-bottom: 35px;
}
.button-panel .inner .fa-file-download {
  font-weight: 300;
  margin-left: 5px;
}
.button-panel .inner .button-container {
  padding: 5px;
}
@media (max-width: 1024px) {
  .button-panel .inner .button-container {
    padding: 10px;
  }
}
@media (max-width: 500px) {
  .button-panel .inner {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.cta-with-background-image {
  padding-left: 0;
  padding-right: 0;
}
.cta-with-background-image .banner-container {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 20px;
  padding-right: 20px;
  background: transparent;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.cta-with-background-image .inner.text-center {
  margin: auto;
}
.cta-with-background-image .left-col {
  max-width: 550px;
}
.cta-with-background-image .content {
  padding-bottom: 15px;
  max-width: 1000px;
}
.cta-with-background-image.side-by-side .banner-container .inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  padding-left: 6%;
  padding-right: 6%;
}
.cta-with-background-image.side-by-side .banner-container .text-content {
  padding-right: 40px;
}
.cta-with-background-image.side-by-side .banner-container .btn,
.cta-with-background-image.side-by-side .banner-container div.gform_wrapper.gravity-theme .gform_footer .button {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .cta-with-background-image .banner-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cta-with-background-image.side-by-side .banner-container .inner {
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
  .cta-with-background-image.side-by-side .banner-container .text-content {
    padding-right: 0;
    padding-bottom: 05px;
  }
}
@media (max-width: 500px) {
  .cta-with-background-image .banner-container {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
.cta-with-image-and-gradient {
  padding-top: 175px;
  padding-bottom: 175px;
}
.cta-with-image-and-gradient .inner.text-center {
  margin: auto;
}
.cta-with-image-and-gradient .left-col {
  max-width: 550px;
}
.cta-with-image-and-gradient .content {
  padding-bottom: 15px;
}
@media (max-width: 1024px) {
  .cta-with-image-and-gradient {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .cta-with-image-and-gradient {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.cta-with-panels .panel {
  padding: 150px 180px 150px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  text-align: left;
}
.cta-with-panels .panel:hover {
  background-color: #ffffff !important;
  color: #181716;
  -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  z-index: 1;
}
.cta-with-panels .panel:hover .title,
.cta-with-panels .panel:hover .content {
  color: #181716;
}
.cta-with-panels .panel:hover .btn-transparent-reverse-main-color {
  background-color: #181716;
  color: #ffffff;
  border-color: #181716;
}
.cta-with-panels .content {
  padding-bottom: 30px;
}
@media (max-width: 1366px) {
  .cta-with-panels .panel {
    padding: 100px 120px 100px;
  }
}
@media (max-width: 1200px) {
  .cta-with-panels .panel {
    padding: 50px 80px 50px;
  }
}
@media (max-width: 1024px) {
  .cta-with-panels .panel {
    padding: 40px 60px 40px;
  }
}
@media (max-width: 500px) {
  .cta-with-panels .panel {
    padding: 40px 20px 50px;
  }
}
.card-repeater-panel {
  padding-top: 40px;
  padding-bottom: 12px;
}
.card-repeater-panel.applicants-panel .title {
  color: #000000;
  text-transform: capitalize;
}
.card-repeater-panel.applicants-panel .content {
  color: #000000;
  font-size: 16px;
  font-size: 1.6rem;
}
.card-repeater-panel.no-padding-bottom {
  padding-bottom: 0px;
}
.card-repeater-panel .inner {
  margin-left: -12px;
  margin-right: -12px;
}
.card-repeater-panel .intro-content p {
  margin-bottom: 40px;
}
.card-repeater-panel .card-wrapper {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 40px;
}
.card-repeater-panel .card-image {
  aspect-ratio: 2.03921569;
  display: block;
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.card-repeater-panel .card-content {
  border-radius: 0 0 20px 20px;
  background: linear-gradient(to right, #0360aa 0%, #000e38 100%);
  padding: 24px 16px;
  margin-top: -1px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.card-repeater-panel .inner-card:hover .card-content {
  background: linear-gradient(to right, #0663af 0%, #0663af 100%);
}
.card-repeater-panel .card.w-color {
  padding: 0 15px;
  margin-bottom: 100px;
}
.card-repeater-panel .w-color .inner-card {
  padding: 0;
  height: 435px;
}
.card-repeater-panel .w-color .title {
  color: #ffffff;
  border-radius: 0px;
  padding: 0;
  font-size: 28px;
  font-size: 2.8rem;
  margin-top: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.card-repeater-panel .title {
  margin: 0 0 4px;
  line-height: 1.1;
}
.card-repeater-panel .subtitle {
  font-size: 19px;
  font-size: 1.9rem;
  color: #494949;
  font-weight: 600;
  line-height: 1.6;
}
.card-repeater-panel .content {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0px;
  margin-top: 32px;
}
.card-repeater-panel .title-text {
  padding-left: 36px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100px;
}
.card-repeater-panel .title-text .title {
  font-size: 25px;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.card-repeater-panel .inner-card:hover .title-text-overlay {
  background: transparent;
}
.card-repeater-panel .inner-card:hover:after {
  display: none;
}
.card-repeater-panel .title-text-overlay {
  left: 0;
  bottom: 0;
  width: 100%;
  max-height: 100px;
  height: 100%;
  background: #981e1e;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.card-repeater-panel .content-container-hover {
  padding: 20px;
}
.card-repeater-panel .content-container-hover.absolute.full {
  top: 110%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  padding-top: 42px;
  color: #ffffff;
}
.card-repeater-panel .content-container-hover {
  font-weight: 400;
  padding: 40px 40px 0 40px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.card-repeater-panel .content-container-hover .title {
  font-size: 25px;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.card-repeater-panel .content-container-hover .learn-more {
  color: #ffffff;
  bottom: 0;
  width: 100%;
  padding-bottom: 32px;
  text-align: right;
  padding-right: 80px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
}
.card-repeater-panel .content-container-hover .learn-more:hover .fa-arrow-right {
  margin-left: 32px;
}
.card-repeater-panel .full-card-overlay.absolute.full {
  top: 110%;
  background: #982020;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.card-repeater-panel .inner-card:hover .content-container-hover.absolute.full,
.card-repeater-panel .inner-card:hover .full-card-overlay.absolute.full {
  top: 0;
}
.card-repeater-panel .inner-card:hover .title-text .title {
  display: none;
}
.card-repeater-panel .inner-card:hover .title-text-overlay {
  background: transparent;
}
.card-repeater-panel .inner-card:hover:after {
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.2s;
}
.employee-bios {
  padding-top: 60px;
  padding-bottom: 70px;
}
.employee-bios .employee {
  padding: 25px;
}
.employee-bios .employee-inner {
  height: 440px;
  -webkit-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.16);
}
.employee-bios .employee .content {
  left: 0;
  bottom: 0;
  background-color: #181716;
  color: #ffffff;
  padding: 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.employee-bios .employee:hover .content {
  background-color: #ffffff;
  color: #003d8e;
}
.employee-bios .employee .content .name {
  padding-bottom: 10px;
}
@media (max-width: 1366px) {
  .employee-bios .employees {
    margin-left: -5px;
    margin-right: -5px;
  }
  .employee-bios .employee {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .employee-bios {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}
.mfp-employee-bios .mfp-container {
  padding-left: 50px;
  padding-right: 50px;
}
.mfp-employee-bios .bio-details {
  background-color: #ffffff;
  margin-top: 50px;
  margin-bottom: 50px;
}
.mfp-employee-bios .bio-details .bio-inner {
  padding: 80px 20px 80px 40px;
  max-width: 1120px;
  margin: auto;
}
.mfp-employee-bios .bio-details .bio-photo {
  max-width: 500px;
  margin: auto;
}
.mfp-employee-bios .bio-details .bio-email {
  margin-top: 60px;
}
.mfp-employee-bios .bio-details .employee-name {
  margin-top: 10px;
}
.mfp-employee-bios .bio-details .middle-col {
  padding: 40px;
}
.mfp-employee-bios .slick-dots {
  bottom: -42px;
}
@media (max-width: 1366px) {
  .mfp-employee-bios .mfp-arrow {
    width: 55px;
  }
  .mfp-employee-bios .mfp-arrow-left:before,
  .mfp-employee-bios .mfp-arrow-right:before {
    display: none;
  }
  .mfp-employee-bios .mfp-arrow-left:after {
    margin-left: 15px;
  }
  .mfp-employee-bios .mfp-arrow-right:after {
    margin-left: 24px;
  }
}
@media (max-width: 1024px) {
  .mfp-employee-bios .bio-details .bio-inner {
    padding: 40px 10px;
  }
  .mfp-employee-bios .bio-details .bio-content {
    padding-top: 20px;
    padding-right: 0;
  }
  .mfp-employee-bios .bio-details .contact-info .btn,
  .mfp-employee-bios .bio-details .contact-info div.gform_wrapper.gravity-theme .gform_footer .button {
    margin-top: 30px;
  }
  .mfp-employee-bios .bio-details .middle-col {
    padding: 20px;
  }
}
@media (max-width: 900px) {
  .mfp-employee-bios .mfp-arrow-left:after {
    margin-left: 20px;
  }
  .mfp-employee-bios .mfp-arrow-right:after {
    margin-left: 14px;
  }
}
@media (max-width: 767px) {
  .mfp-employee-bios .bio-details {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .mfp-employee-bios .bio-details .bio-inner {
    padding: 40px 0 0;
  }
  .mfp-employee-bios .bio-details .bio-content {
    padding: 20px 30px 40px;
  }
  .single-team_member .mfp-employee-bios .bio-details {
    margin-bottom: 0;
  }
  .mfp-employee-bios .bio-details .bio-photo .prev-arrow,
  .mfp-employee-bios .bio-details .bio-photo .next-arrow {
    display: none !important;
  }
}
@media (max-width: 500px) {
  .mfp-employee-bios .mfp-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mfp-employee-bios .mfp-container .mfp-arrow {
    display: none;
  }
}
.featured-post-grid {
  padding-top: 120px;
  padding-bottom: 120px;
}
.featured-post-grid .fpost-inner-container {
  padding: 0 20px;
}
.featured-post-grid .fpost-container {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.featured-post-grid .text-box {
  padding: 0 20px;
  margin-top: 20px;
}
.featured-post-grid .fpost-inner .title {
  text-transform: uppercase;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .featured-post-grid .fpost-container {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
  }
  .featured-post-grid .fpost-inner-container {
    margin-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .featured-post-grid .fpost-inner-container {
    margin-bottom: 80px;
  }
}
.tmp-form {
  padding-top: 105px;
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .tmp-form {
    padding-top: 75px;
    padding-bottom: 100px;
  }
}
@media (max-width: 500px) {
  .tmp-form {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
.gallery-masonry {
  padding-top: 60px;
  padding-bottom: 70px;
}
.gallery-masonry.pf-custom-class .gallery-masonry-grid .grid-item-inner:hover .overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 100%);
  background: radial-gradient(100% 100% at bottom left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.03) 100%);
  border-color: #076927;
}
.gallery-masonry .gallery-masonry-grid,
.gallery-masonry-with-filters .gallery-masonry-grid {
  margin-left: -20px;
  margin-right: -20px;
}
.gallery-masonry .gallery-masonry-grid .grid-item,
.gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
  padding: 20px;
  min-height: 380px;
}
.gallery-masonry .gallery-masonry-grid .grid-item.text-box .top-inner,
.gallery-masonry-with-filters .gallery-masonry-grid .grid-item.text-box .top-inner {
  padding: 55px;
}
.gallery-masonry .gallery-masonry-grid .grid-item .overlay,
.gallery-masonry-with-filters .gallery-masonry-grid .grid-item .overlay {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  border: 5px solid transparent;
}
.gallery-masonry .gallery-masonry-grid .grid-item-inner:hover .overlay,
.gallery-masonry-with-filters .gallery-masonry-grid .grid-item-inner:hover .overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 100%);
  background: radial-gradient(100% 100% at bottom left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.03) 100%);
  border-color: #003d8e;
}
.gallery-masonry .gallery-masonry-grid .categories,
.gallery-masonry-with-filters .gallery-masonry-grid .categories {
  left: 0;
  bottom: 0;
  padding: 10px;
}
.gallery-masonry .gallery-masonry-grid .categories .icon,
.gallery-masonry-with-filters .gallery-masonry-grid .categories .icon {
  padding: 7px;
}
.gallery-masonry .gallery-masonry-grid .categories .icon img,
.gallery-masonry-with-filters .gallery-masonry-grid .categories .icon img {
  height: 35px;
  width: auto;
  max-width: 50px;
}
.gallery-masonry .gallery-masonry-grid .categories .icon:hover .icon-white,
.gallery-masonry-with-filters .gallery-masonry-grid .categories .icon:hover .icon-white {
  display: none;
}
.gallery-masonry .gallery-masonry-grid .categories .icon:hover .icon-color,
.gallery-masonry-with-filters .gallery-masonry-grid .categories .icon:hover .icon-color {
  display: inline;
}
@media (max-width: 1200px) {
  .gallery-masonry {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .gallery-masonry .gallery-masonry-grid,
  .gallery-masonry-with-filters .gallery-masonry-grid {
    margin-left: -10px;
    margin-right: -10px;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
    padding: 10px;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item.four-column,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item.four-column {
    width: 50%;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
    min-height: 275px;
  }
}
@media (max-width: 767px) {
  .gallery-masonry .gallery-masonry-grid .grid-item.text-box,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item.text-box {
    width: 100%;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item.text-box .top-inner,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item.text-box .top-inner {
    padding: 20px;
  }
}
@media (max-width: 500px) {
  .gallery-masonry {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .gallery-masonry .gallery-masonry-grid .title,
  .gallery-masonry-with-filters .gallery-masonry-grid .title {
    margin-bottom: 10px;
  }
  .gallery-masonry .gallery-masonry-grid .grid-item,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
    min-height: 240px;
  }
  .gallery-masonry .gallery-masonry-grid .categories .icon,
  .gallery-masonry-with-filters .gallery-masonry-grid .categories .icon {
    padding: 3px;
  }
  .gallery-masonry .gallery-masonry-grid .categories .icon img,
  .gallery-masonry-with-filters .gallery-masonry-grid .categories .icon img {
    height: 25px;
    max-width: 40px;
  }
}
@media (max-width: 400px) {
  .gallery-masonry .gallery-masonry-grid .grid-item,
  .gallery-masonry-with-filters .gallery-masonry-grid .grid-item {
    min-height: 180px;
  }
}
.mfp-zoom-out-cur .mfp-gallery .mfp-image-holder .mfp-close {
  cursor: pointer;
}
.gallery-masonry-with-filters {
  padding-top: 80px;
  padding-bottom: 80px;
}
.gallery-masonry-with-filters .gallery-masonry-filters {
  padding: 30px 0 25px;
}
.gallery-masonry-with-filters .gallery-masonry-filters .filter-links {
  padding-top: 10px;
}
.gallery-masonry-with-filters .gallery-masonry-filters a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #181716;
  border: 1px solid #181716;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  padding: 3px 20px;
}
.gallery-masonry-with-filters .gallery-masonry-filters a:hover {
  color: #ffffff;
  background-color: #181716;
}
.gallery-masonry-with-filters .gallery-masonry-filters a.selected {
  color: #ffffff;
  background-color: #181716;
}
@media (max-width: 1300px) {
  .gallery-masonry-with-filters .filter-links {
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  .gallery-masonry-with-filters .gallery-masonry-filters a {
    padding: 3px 10px;
  }
}
@media (max-width: 1100px) {
  .gallery-masonry-with-filters .gallery-masonry-filters a {
    padding: 3px 6px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .gallery-masonry-with-filters {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .gallery-masonry-with-filters .gallery-masonry-filters a {
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (max-width: 767px) {
  .gallery-masonry-with-filters {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .gallery-masonry-with-filters .gallery-masonry-filters {
    padding: 15px 0 25px;
  }
}
.google-map-full-width .google-map-full-width-map-canvas {
  padding: 16%;
}
@media (max-width: 1366px) {
  .google-map-full-width .google-map-full-width-map-canvas {
    padding: 20%;
  }
}
@media (max-width: 1024px) {
  .google-map-full-width .google-map-full-width-map-canvas {
    padding: 24%;
  }
}
@media (max-width: 500px) {
  .google-map-full-width .google-map-full-width-map-canvas {
    padding: 50%;
  }
}
.icon-repeater {
  padding-top: 100px;
  padding-bottom: 100px;
}
.icon-repeater .icon-list {
  margin-left: -45px;
  margin-right: -45px;
}
.icon-repeater .icon-inner {
  margin: 50px 0;
  padding-left: 45px;
  padding-right: 45px;
}
.icon-repeater .content {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 20px;
  color: #000000;
  font-weight: 300;
}
@media (max-width: 1200px) {
  .icon-repeater .icon-list {
    margin-left: 0;
    margin-right: 0;
  }
  .icon-repeater .icon-inner {
    margin: 30px 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1024px) {
  .icon-repeater .icon-inner {
    margin: 25px 0;
  }
}
.job-posting-panel {
  padding-top: 80px;
}
.job-posting-panel .top-section {
  padding-bottom: 50px;
}
.job-posting-panel .postings {
  margin-left: -20px;
  margin-right: -20px;
}
.job-posting-panel .job-posting {
  padding: 20px;
  max-width: 580px;
}
.job-posting-panel .job-location {
  padding-bottom: 70px;
}
.job-posting-panel .job-posting .title {
  padding-bottom: 10px;
}
.job-posting-panel .job-posting .content {
  margin-bottom: 20px;
}
.job-posting-panel .job-posting .content .read-more {
  color: #181716;
}
.job-posting-panel .job-posting .content .read-more:hover {
  color: #003d8e;
}
.job-posting-panel .job-posting.open .content {
  display: none;
}
.job-posting-panel .job-posting.open .content-full {
  display: block;
}
.job-posting-panel .job-posting .btn,
.job-posting-panel .job-posting div.gform_wrapper.gravity-theme .gform_footer .button {
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .job-posting-panel {
    padding-top: 65px;
  }
  .job-posting-panel .job-posting {
    max-width: 768px;
  }
}
@media (max-width: 500px) {
  .job-posting-panel {
    padding-top: 35px;
  }
  .job-posting-panel .job-location {
    padding-bottom: 25px;
  }
}
.mfp-job-posting-form .mfp-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 800px) {
  .mfp-job-posting-form .mfp-content button.mfp-close {
    right: 20px;
  }
}
.logo-slider {
  padding-top: 100px;
  padding-bottom: 85px;
}
.logo-slider .logo-slider-slider {
  padding-left: 60px;
  padding-right: 60px;
}
.logo-slider .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.logo-slider .logo.slick-slide {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 1024px) {
  .logo-slider {
    padding-top: 65px;
    padding-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .logo-slider {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .logo-slider .content {
    padding-bottom: 20px;
  }
}
.post-type-slider {
  padding-top: 100px;
  padding-bottom: 100px;
}
.post-type-slider .slide-wrap {
  position: relative;
}
.post-type-slider .slide-inner {
  padding: 25px 40px;
}
.post-type-slider .content-wrap {
  margin-bottom: 75px;
  padding: 0 20px;
}
.post-type-slider .slide-body {
  margin-top: 25px;
}
.post-type-slider .slide-link {
  display: inline-block;
  margin-top: 25px;
}
.post-type-slider .slick-slide .slide-inner {
  -webkit-transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}
.post-type-slider .slick-slide.opaque .slide-inner {
  opacity: 0.5;
}
.post-type-slider .slider-wrap {
  position: relative;
  padding: 0 40px;
}
.post-type-slider .slider-wrap .pts-prev-arrow {
  position: absolute;
  left: 0px;
  top: 50%;
  color: black;
}
.post-type-slider .slider-wrap .pts-next-arrow {
  position: absolute;
  right: 0px;
  top: 50%;
  color: black;
}
.post-type-slider .slider-wrap .pts-prev-arrow:after {
  content: '\f053';
  font-family: 'Font Awesome 5 Pro';
  color: #494949;
  position: absolute;
  right: 0;
  font-size: 40px;
  font-size: 4rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.post-type-slider .slider-wrap .pts-prev-arrow:hover:after {
  color: #000000;
}
.post-type-slider .slider-wrap .pts-next-arrow:hover:after {
  color: #000000;
}
.post-type-slider .slider-wrap .pts-next-arrow:after {
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  color: #494949;
  position: absolute;
  right: 0;
  font-size: 40px;
  font-size: 4rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.post-type-slider .slider-wrap .position {
  color: #8c8c8c;
  font-size: 18px;
  font-size: 1.8rem;
}
.post-type-slider .slider-wrap .company {
  font-size: 14px;
  font-size: 1.4rem;
}
.stats-panel {
  padding-top: 52px;
  padding-bottom: 52px;
  position: relative;
}
.stats-panel:before {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to left, #f49b00 0%, #f47601 23%, #08a3ff 55%, #003d8e 100%);
}
.stats-panel:after {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #f49b00 0%, #f47601 23%, #08a3ff 55%, #003d8e 100%);
}
.stats-panel .top-inner {
  text-align: center;
}
.stats-panel .inner.has-only-two {
  max-width: 700px;
  margin: auto;
}
.stats-panel .stat-card {
  padding: 0px;
  color: #181716;
  border-right: 1px solid #393939;
}
.stats-panel .stat-card .stats-number {
  font-size: 54px;
  font-size: 5.4rem;
  color: #0063af;
}
.stats-panel .stat-card .content {
  font-size: 16px;
  font-size: 1.6rem;
}
.stats-panel .stat-card .stat-spec {
  font-size: 54px;
  font-size: 5.4rem;
  color: #0063af;
  margin-left: 6px;
}
.stats-panel .stat-card:last-of-type {
  border-right: none;
}
.stats-panel .content {
  color: #181716;
}
@media (max-width: 1280px) {
  .stats-panel .stat-card .stats-number {
    font-size: 48px;
    font-size: 4.8rem;
  }
  .stats-panel .stat-card .content {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .stats-panel .stat-card {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .stats-panel .stat-card .stats-number {
    font-size: 42px;
    font-size: 4.2rem;
  }
}
.service-pull-panel {
  padding-top: 65px;
  padding-bottom: 70px;
}
.service-pull-panel .pulls {
  padding-bottom: 75px;
}
.service-pull-panel .pulls .service-pull {
  padding: 20px;
}
.service-pull-panel .pulls .service-pull-inner {
  padding-top: 73%;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-transition: box-shadow 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
}
.service-pull-panel .pulls .image-inner {
  padding: 0 20px;
  background-color: #181716;
  margin-bottom: -40px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  width: 220px;
  height: 220px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.service-pull-panel .pulls .name {
  margin-top: 12px;
  color: #ffffff;
  line-height: 1.2;
  width: 100%;
}
.service-pull-panel .pulls .icon,
.service-pull-panel .pulls .icon-hover {
  max-height: 115px;
  width: auto;
}
.service-pull-panel .pulls .service-pull-inner:hover {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.16);
}
.service-pull-panel .pulls .service-pull-inner:hover .image-inner {
  background-color: #ffffff;
}
.service-pull-panel .pulls .service-pull-inner:hover .name {
  color: #181716;
}
.service-pull-panel .pulls .service-pull-inner:hover .icon {
  display: none;
}
.service-pull-panel .pulls .service-pull-inner:hover .icon-hover {
  display: block;
}
@media (max-width: 1366px) {
  .service-pull-panel .pulls .image-inner {
    width: 195px;
    height: 195px;
  }
  .service-pull-panel .pulls .icon,
  .service-pull-panel .pulls .icon-hover {
    max-height: 100px;
  }
}
@media (max-width: 1024px) {
  .service-pull-panel .pulls {
    padding-bottom: 50px;
  }
  .service-pull-panel .pulls .service-pull {
    padding: 30px 20px 50px;
  }
  .service-pull-panel .pulls .image-inner {
    width: 220px;
    height: 220px;
  }
  .service-pull-panel .pulls .icon,
  .service-pull-panel .pulls .icon-hover {
    max-height: 115px;
  }
}
@media (max-width: 767px) {
  .service-pull-panel .pulls .image-inner {
    width: 195px;
    height: 195px;
  }
  .service-pull-panel .pulls .icon,
  .service-pull-panel .pulls .icon-hover {
    max-height: 100px;
  }
}
@media (max-width: 500px) {
  .service-pull-panel {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .service-pull-panel .title {
    margin-bottom: 10px;
  }
  .service-pull-panel .pulls .service-pull {
    padding: 30px 10px;
    max-width: 340px;
    margin: auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .service-pull-panel .pulls {
    margin-left: -10px;
    margin-right: -10px;
  }
  .service-pull-panel .pulls .image-inner {
    width: 140px;
    height: 165px;
  }
  .service-pull-panel .pulls .icon,
  .service-pull-panel .pulls .icon-hover {
    max-height: 70px;
  }
}
@media (max-width: 400px) {
  .service-pull-panel .pulls .service-pull-inner {
    padding-top: 0;
    height: 300px;
  }
  .service-pull-panel .pulls .image-inner {
    width: calc(100% - 20px);
    height: auto;
    padding: 20px;
  }
}
@media (max-width: 350px) {
  .service-pull-panel .pulls .image-inner {
    width: calc(100% - 10px);
    padding: 10px;
  }
}
.text-panel {
  padding-top: 70px;
  padding-bottom: 65px;
}
@media (max-width: 1024px) {
  .text-panel {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}
@media (max-width: 500px) {
  .text-panel {
    padding-top: 50px;
    padding-bottom: 45px;
  }
}
.tabs .tab-bar {
  list-style: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  padding-left: 0;
  margin-bottom: 65px;
  margin-top: 0;
}
.tabs .tab-bar li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  background-color: #494949;
  width: 100%;
  border-right: 1px solid #ffffff;
}
.tabs .tab-bar li:last-of-type {
  border-right: none;
}
.tabs .tab-bar li:hover {
  background-color: #181716;
}
.tabs .tab-bar li:hover a {
  color: #494949;
}
.tabs .tab-bar li > a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 40px 20px;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  width: 100%;
  position: relative;
}
.tabs .tab-bar li > a.active {
  background-color: #181716;
  color: #494949;
}
.tabs .tab-bar li > a.active:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #181716 transparent transparent transparent;
}
.tabs .tab-bodies {
  padding-bottom: 80px;
}
.tabs .tab-bodies .check-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.tabs .tab-bodies h2 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-bottom: 2px solid #494949;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.tabs .tab-bodies h2 img {
  margin-right: 25px;
}
.tabs .tab-bodies .tab-body {
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .tabs .tab-bodies {
    padding-top: 80px;
  }
  .tabs .tab-bodies h2 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tabs {
    background-color: #f49b00;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tabs .tab-bar {
    display: none;
  }
  .tabs .mobile-tab-title {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #292b28;
    background-color: #ffffff;
    padding: 20px 20px 15px;
    margin-top: 15px;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    position: relative;
  }
  .tabs .mobile-tab-title:before {
    content: '\f055';
    color: #f49b00;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    margin-right: 8px;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .tabs .mobile-tab-title:hover,
  .tabs .mobile-tab-title.active {
    color: #f49b00;
  }
  .tabs .mobile-tab-title:hover:before,
  .tabs .mobile-tab-title.active:before {
    color: #f49b00;
  }
  .tabs .mobile-tab-title.active:after {
    display: none;
  }
  .tabs .mobile-tab-title.active:before {
    content: '\f056';
  }
}
.text-panel {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .text-panel {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}
@media (max-width: 500px) {
  .text-panel {
    padding-top: 50px;
    padding-bottom: 45px;
  }
}
.timeline-panel {
  padding-top: 52px;
  padding-bottom: 0;
}
.timeline-panel h2 {
  margin-bottom: 32px;
}
.timeline-panel .img-wrap {
  line-height: 0;
  margin-bottom: 24px;
}
.timeline-panel .img-wrap img {
  border-radius: 20px;
}
.timeline-panel .slide-content {
  padding-left: 20px;
  padding-right: 20px;
}
.timeline-panel .header-year {
  color: #d8691a;
  font-weight: 700;
  margin-bottom: 12px;
}
.timeline-panel .header-year span {
  color: #5475b0;
  font-weight: 400;
}
.timeline-panel .content p {
  font-weight: 500;
}
.timeline-panel .slick-list {
  padding-bottom: 80px;
}
.timeline-panel .slick-slider {
  padding-left: 50px;
  padding-right: 50px;
}
.timeline-panel .slick-arrow {
  background: #f1f1f1;
}
.timeline-panel .slick-dots {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: relative;
}
.timeline-panel .slick-dots:before {
  content: '';
  background-color: #e1e7ed;
  width: 100%;
  height: 3px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
.timeline-panel .slick-dots li {
  list-style-type: none;
  text-align: center;
  width: 120px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.timeline-panel .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 25px;
  height: 25px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #f7f7f7;
  position: relative;
  border: 4px solid #dedede;
  border-radius: 9999px;
}
.timeline-panel .slick-dots li button:hover,
.timeline-panel .slick-dots li button:focus {
  border-color: #fbbd45;
}
.timeline-panel .slick-dots li button::before {
  display: none;
}
.timeline-panel .slick-dots li.slick-active {
  padding-bottom: 0;
}
.timeline-panel .slick-dots li.slick-active button {
  -webkit-box-shadow: 0 0 8px 6px rgba(5, 184, 255, 0.1);
  -moz-box-shadow: 0 0 8px 6px rgba(5, 184, 255, 0.1);
  box-shadow: 0 0 8px 6px rgba(5, 184, 255, 0.1);
  width: 40px;
  height: 40px;
  border: 7px solid #cecece;
}
.timeline-panel .inner-slider-inner {
  padding: 0 8px;
}
@media (max-width: 767px) {
  .timeline-panel {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .timeline-panel .slick-dots {
    display: none !important;
  }
  .timeline-panel .slick-list {
    padding-bottom: 0;
  }
}
.top-banner-slider .slick-slide {
  height: 830px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.top-banner-slider .text-box {
  max-width: 700px;
  padding: 10% 0px 0px 0px;
  width: 100%;
}
.top-banner-slider .inner-slide {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: auto;
  margin-bottom: auto;
}
.top-banner-slider .sub-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  background-color: transparent;
  line-height: 1.8;
  letter-spacing: 0.36px;
  display: inline-block;
  font-size: 17px;
  font-size: 1.7rem;
}
.top-banner-slider .title {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
}
.top-banner-slider .content {
  max-width: 700px;
  line-height: 1.33;
  font-size: 18px;
  font-size: 1.8rem;
}
.top-banner-slider .slick-dots li.slick-active button {
  background: #ffffff;
  border-color: #ffffff;
}
.top-banner-slider .slick-dots button {
  margin-bottom: 20px;
  width: 15px;
  height: 15px;
  border: 2px solid #ffffff;
  background-color: transparent;
}
.top-banner-slider .slick-dots button:focus {
  outline: none;
}
@media (max-width: 1024px) {
  .top-banner-slider {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .top-banner-slider .text-box {
    max-width: 415px;
    padding: 20px 25px;
  }
  .top-banner-slider .title {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .top-banner-slider .text-box {
    max-width: 75%;
  }
  .top-banner-slider .slick-slide {
    height: 485px;
  }
}
.two-column-double-image-text {
  padding-top: 80px;
  padding-bottom: 70px;
}
.two-column-double-image-text.pf-custom-class .image-col {
  order: 3;
  text-align: right;
}
.two-column-double-image-text.pf-custom-class .image-col .image-inner {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 40px;
  padding-left: 40px;
}
.two-column-double-image-text.pf-custom-class .image-col .image-in-front {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 0;
}
.two-column-double-image-text.pf-custom-class .middle-col {
  order: 2;
}
.two-column-double-image-text.pf-custom-class .text-col {
  order: 1;
}
.two-column-double-image-text.pf-custom-class .pretitle {
  color: #076927;
}
.two-column-double-image-text.pf-custom-class .one-line span:after {
  background-color: #076927;
}
.two-column-double-image-text.pf-custom-class .btn,
.two-column-double-image-text.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button {
  background-color: #076927;
  border: 2px solid #076927;
  color: #ffffff;
}
.two-column-double-image-text.pf-custom-class .btn:hover,
.two-column-double-image-text.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button:hover {
  color: #076927;
  border: 2px solid #076927;
  background-color: #ffffff;
}
.two-column-double-image-text .image-col .image-inner {
  padding-top: 40px;
  padding-right: 40px;
  width: 100%;
}
.two-column-double-image-text .image-col .image-in-front {
  top: 0;
  right: 0;
  background-color: #FFF;
  padding-left: 20px;
  padding-bottom: 20px;
  width: 68%;
}
.two-column-double-image-text .middle-col {
  padding: 40px;
}
.two-column-double-image-text .text-col .content {
  padding-bottom: 15px;
}
.two-column-double-image-text .text-col .content p:last-of-type {
  margin-bottom: 0;
}
.two-column-double-image-text .text-col .btn,
.two-column-double-image-text .text-col div.gform_wrapper.gravity-theme .gform_footer .button {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .two-column-double-image-text {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .two-column-double-image-text {
    padding-top: 40px;
  }
  .two-column-double-image-text .middle-col {
    padding: 25px;
  }
  .two-column-double-image-text .image-col {
    padding-left: 20px;
    padding-right: 20px;
  }
  .two-column-double-image-text .image-col .image-inner {
    max-width: 500px;
  }
  .two-column-double-image-text .image-col,
  .two-column-double-image-text.image-right .image-col {
    order: 3;
    text-align: center;
  }
  .two-column-double-image-text .middle-col,
  .two-column-double-image-text.image-right .middle-col {
    order: 2;
    padding: 25px;
  }
  .two-column-double-image-text .text-col,
  .two-column-double-image-text.image-right .text-col {
    order: 1;
  }
  .two-column-double-image-text .text-col .content {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .two-column-double-image-text {
    padding-bottom: 50px;
  }
  .two-column-double-image-text .title {
    margin-bottom: 10px;
  }
}
.two-column-floating-text {
  padding-top: 105px;
  padding-bottom: 50px;
}
.two-column-floating-text.pf-custom-class .text-col {
  background-color: #00a8f5;
}
.two-column-floating-text.pf-custom-class .text-content {
  padding-top: 80px;
  padding-left: 15px;
  padding-bottom: 40px;
  color: #ffffff;
}
.two-column-floating-text.pf-custom-class .text-content h3 {
  font-size: 60px;
  font-size: 6rem;
  text-transform: uppercase;
}
.two-column-floating-text .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 80px;
}
.two-column-floating-text .image-col {
  max-width: 890px;
}
.two-column-floating-text .text-col {
  background-color: #ffffff;
  padding: 40px 80px 50px 50px;
  -webkit-box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.1);
  max-width: 890px;
}
.two-column-floating-text .number-or-letter {
  font-size: 200px;
  font-size: 20rem;
  line-height: 1;
}
.two-column-floating-text .text-content {
  padding-top: 80px;
  padding-left: 15px;
}
.two-column-floating-text .inner.image-left {
  padding-left: 150px;
}
.two-column-floating-text .inner.image-left .image-col {
  left: 0;
  top: 0;
}
.two-column-floating-text .inner.image-left .text-col {
  margin-left: auto;
}
.two-column-floating-text .inner.image-right {
  padding-right: 150px;
}
.two-column-floating-text .inner.image-right .image-col {
  right: 0;
  top: 0;
}
@media (max-width: 1200px) {
  .two-column-floating-text .inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .two-column-floating-text {
    padding-top: 65px;
  }
  .two-column-floating-text .inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .two-column-floating-text .text-col {
    padding: 30px 60px 40px 40px;
  }
  .two-column-floating-text .number-or-letter {
    font-size: 100px;
    font-size: 10rem;
  }
  .two-column-floating-text .text-content {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .two-column-floating-text {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .two-column-floating-text > div {
    padding-left: 0;
    padding-right: 0;
  }
  .two-column-floating-text .inner {
    padding-top: 360px;
    padding-bottom: 50px;
    margin-bottom: 0;
  }
  .two-column-floating-text .image-col {
    max-width: 100%;
    width: 100%;
    height: 400px;
  }
  .two-column-floating-text .text-col {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: auto;
    padding: 30px 40px 40px;
  }
  .two-column-floating-text .text-content {
    padding-top: 20px;
    padding-left: 0;
  }
  .two-column-floating-text .title {
    margin-bottom: 5px;
    padding-left: 20px;
  }
  .two-column-floating-text .inner.image-left {
    padding-left: 0;
  }
  .two-column-floating-text .inner.image-left .image-col {
    left: 0;
    top: 0;
  }
  .two-column-floating-text .inner.image-left .text-col {
    margin-left: auto;
  }
  .two-column-floating-text .inner.image-right {
    padding-right: 0;
  }
  .two-column-floating-text .inner.image-right .image-col {
    right: 0;
    top: 0;
  }
}
.two-column-image-text {
  padding-top: 64px;
  padding-bottom: 40px;
}
.two-column-image-text .middle-col {
  padding: 40px;
}
.two-column-image-text .text-col .content {
  padding-bottom: 15px;
}
.two-column-image-text .text-col.full-padding {
  padding: 140px 7% 100px;
}
.two-column-image-text .image-col {
  padding-right: 40px;
}
.two-column-image-text .image-col .image-inner {
  width: 100%;
}
.two-column-image-text .image-col.bg-img-panel {
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}
.two-column-image-text.bg-img .text-col.full-padding {
  padding: 0;
}
.two-column-image-text.bg-img .text-col .inner {
  padding: 150px 7% 110px;
  width: 50%;
}
.two-column-image-text.bg-img.image-left .text-col {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.two-column-image-text.image-right .image-col {
  order: 3;
  text-align: right;
  padding-left: 40px;
  padding-right: 0;
}
.two-column-image-text.image-right .middle-col {
  order: 2;
}
.two-column-image-text.image-right .text-col {
  order: 1;
}
@media (max-width: 1200px) {
  .two-column-image-text .text-col.full-padding {
    padding: 90px 7% 30px;
  }
}
@media (max-width: 1024px) {
  .two-column-image-text {
    padding-top: 40px;
  }
  .two-column-image-text.bg-img .text-col .inner {
    padding: 60px 7% 50px;
    width: 100%;
  }
  .two-column-image-text .text-col {
    order: 1;
  }
  .two-column-image-text .text-col.full-padding {
    padding: 30px 20px 0;
  }
  .two-column-image-text .middle-col {
    padding: 10px;
    order: 2;
  }
  .two-column-image-text .image-col {
    padding-left: 0;
    padding-right: 0;
    order: 0;
    margin-bottom: 16px;
    text-align: center;
  }
  .two-column-image-text .image-col .image-inner {
    max-width: 500px;
  }
  .two-column-image-text.image-right .image-col {
    order: 0;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .two-column-image-text.image-right .middle-col {
    order: 2;
    padding: 10px;
  }
  .two-column-image-text.image-right .text-col {
    order: 1;
  }
  .two-column-image-text .text-col .content {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .two-column-image-text .title {
    margin-bottom: 10px;
  }
}
.two-column-service-list {
  padding-top: 155px;
  padding-bottom: 125px;
}
.two-column-service-list .top-inner {
  padding-bottom: 65px;
}
.two-column-service-list .service-list {
  padding-bottom: 40px;
}
.two-column-service-list .service-list:nth-of-type(even) {
  padding-left: 45px;
}
.two-column-service-list .service-list:nth-of-type(odd) {
  padding-right: 45px;
}
.two-column-service-list .service-list .icon-col {
  min-width: 130px;
  max-width: 130px;
  width: 100%;
  padding-right: 30px;
}
.two-column-service-list .service-list .icon-col img {
  min-width: 60px;
}
@media (max-width: 1024px) {
  .two-column-service-list .top-inner {
    padding-bottom: 30px;
  }
  .two-column-service-list .service-list .title {
    margin-bottom: 10px;
  }
  .two-column-service-list .service-list:nth-of-type(even) {
    padding-left: 0;
  }
  .two-column-service-list .service-list:nth-of-type(odd) {
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .two-column-service-list {
    padding-top: 40px;
    padding-bottom: 5px;
  }
  .two-column-service-list .top-inner {
    padding-bottom: 20px;
  }
  .two-column-service-list .service-list {
    padding-bottom: 80px;
  }
  .two-column-service-list .service-list .inner {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .two-column-service-list .service-list .icon-col {
    min-width: 90px;
    max-width: 90px;
    width: 100%;
    padding-right: 15px;
    margin: 0 auto;
  }
}
.two-column-text-text {
  padding-top: 105px;
  padding-bottom: 50px;
}
.two-column-text-text .top-section {
  padding-bottom: 25px;
}
.two-column-text-text .middle-col {
  padding: 40px;
}
.two-column-text-text .content {
  padding-right: 20px;
}
@media (max-width: 1024px) {
  .two-column-text-text {
    padding-top: 65px;
  }
  .two-column-text-text .middle-col {
    padding: 10px;
  }
}
@media (max-width: 500px) {
  .two-column-text-text {
    padding-top: 35px;
    padding-bottom: 20px;
  }
}
.two-column-with-form {
  padding-top: 105px;
  padding-bottom: 50px;
}
.two-column-with-form .middle-col {
  padding: 40px;
}
@media (max-width: 1024px) {
  .two-column-with-form {
    padding-top: 75px;
  }
  .two-column-with-form .middle-col {
    padding: 20px;
  }
}
@media (max-width: 500px) {
  .two-column-with-form {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.two-column-cta {
  padding-top: 100px;
  padding-bottom: 100px;
}
.two-column-cta .inner {
  margin-left: -20px;
  margin-right: -20px;
}
.two-column-cta .panel-wrap {
  padding: 0 20px;
}
.two-column-cta .panel {
  padding: 55px 20px 60px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.two-column-cta .panel:hover {
  -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
  z-index: 1;
}
.two-column-cta .panel:hover .overlay {
  opacity: 1 !important;
}
.two-column-cta .content {
  padding-bottom: 30px;
}
@media (max-width: 1024px) {
  .two-column-cta .panel-wrap {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .two-column-cta .panel {
    padding: 40px 20px 50px;
  }
}
.two-column-video-text {
  padding-top: 80px;
  padding-bottom: 80px;
}
.two-column-video-text .middle-col {
  padding: 40px;
}
.two-column-video-text .text-col .content {
  padding-bottom: 15px;
}
.two-column-video-text .text-col.full-padding {
  padding: 140px 7% 100px;
}
.two-column-video-text .video-col .image-inner {
  width: 100%;
}
.two-column-video-text .video-col.bg-img-panel {
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}
.two-column-video-text .video-wrap {
  line-height: 0;
}
.two-column-video-text .video-wrap .overlay {
  background-color: #000000;
  opacity: 0.45;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.two-column-video-text .video-wrap:hover .overlay {
  opacity: 0.65;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.two-column-video-text .video-wrap .play-icon {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.two-column-video-text .play-icon:after {
  content: '';
  background-image: url(../images/play-icon.png);
  width: 116px;
  height: 116px;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.two-column-video-text .video-wrap:hover .play-icon:after {
  transform: scale(1.1);
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.two-column-video-text.image-right .video-col {
  order: 3;
  text-align: right;
}
.two-column-video-text.image-right .middle-col {
  order: 2;
}
.two-column-video-text.image-right .text-col {
  order: 1;
}
@media (max-width: 1200px) {
  .two-column-video-text .text-col.full-padding {
    padding: 90px 7% 30px;
  }
}
@media (max-width: 1024px) {
  .two-column-video-text {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .two-column-video-text {
    padding-top: 30px;
  }
  .two-column-video-text .text-col {
    order: 1;
  }
  .two-column-video-text .text-col.full-padding {
    padding: 30px 20px 0;
  }
  .two-column-video-text .middle-col {
    padding: 10px;
    order: 2;
  }
  .two-column-video-text .video-col {
    order: 3;
  }
  .two-column-video-text .video-col .image-inner {
    max-width: 500px;
  }
  .two-column-video-text.image-right .video-col {
    order: 3;
    text-align: center;
  }
  .two-column-video-text.image-right .middle-col {
    order: 2;
    padding: 10px;
  }
  .two-column-video-text.image-right .text-col {
    order: 1;
  }
  .two-column-video-text .text-col .content {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .two-column-video-text {
    padding-bottom: 50px;
  }
  .two-column-video-text .title {
    margin-bottom: 10px;
  }
}
.video-panel {
  padding-top: 80px;
  padding-bottom: 80px;
}
.video-panel video {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}
.video-panel .video-container {
  pointer-events: none;
}
.location-accordions-panel {
  padding: 64px 0;
}
.location-accordions-panel .mobile-tab-title {
  background-color: #ffffff;
  padding: 24px 16px;
  border-top: 1px solid #393939;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}
.location-accordions-panel .mobile-tab-title:first-of-type {
  border-top: none;
}
.location-accordions-panel .mobile-tab-title h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #494949;
  margin-bottom: 0;
}
.location-accordions-panel .mobile-tab-title:before {
  content: '\2b';
  color: #003d8e;
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 80px;
  width: 24px;
  height: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
}
.location-accordions-panel .mobile-tab-title.active h3 {
  color: #0663af;
}
.location-accordions-panel .mobile-tab-title.active:before {
  content: '\f068';
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}
.location-accordions-panel .tab-bodies {
  border-bottom: 1px solid #393939;
}
.location-accordions-panel .tab-bodies .tab-body {
  padding: 0 16px;
}
.location-accordions-panel .tab-bodies h4,
.location-accordions-panel .tab-bodies .product-table .pr-table-table tr:first-of-type th,
.location-accordions-panel .tab-bodies .product-table .pr-table-table tr:first-of-type td {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #282828;
  margin-bottom: 4px;
}
.location-accordions-panel .tab-bodies p,
.location-accordions-panel .tab-bodies .address {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #393939;
  margin-bottom: 4px;
}
.location-accordions-panel .tab-bodies .address {
  max-width: 350px;
  font-size: 16px;
  font-size: 1.6rem;
}
.location-accordions-panel .tab-bodies a,
.location-accordions-panel .tab-bodies .fax {
  font-weight: 500;
  color: #003d8e;
  line-height: 1.667;
  display: inline-block;
}
.location-accordions-panel .two-col-img-text {
  margin-bottom: 32px;
}
.location-accordions-panel .img-wrap {
  line-height: 0;
}
.location-accordions-panel .img-wrap img {
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .location-accordions-panel {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .location-accordions-panel {
    padding: 40px 0;
  }
  .location-accordions-panel .img-wrap {
    margin-top: 24px;
  }
  .location-accordions-panel .mobile-tab-title {
    padding: 24px 0;
  }
  .location-accordions-panel .mobile-tab-title:before {
    right: 16px;
  }
  .location-accordions-panel .tab-bodies .tab-body {
    padding: 0;
  }
  .location-accordions-panel .location-details {
    padding-left: 0;
    margin-top: 24px;
  }
}
.top-banner {
  padding: 60px 0;
}
.top-banner:after {
  content: '';
  background: linear-gradient(to right, #f49b00 0%, #f47601 23%, #08a3ff 55%, #003d8e 100%);
  height: 6px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.top-banner h1 {
  color: #ffffff;
  margin: 0;
  text-align: center;
  z-index: 3;
  position: relative;
  padding: 0;
}
.top-banner .overlay {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .top-banner {
    padding: 80px 0;
  }
}
.product-categories-carousel {
  padding: 32px 0;
}
.product-categories-carousel h2 {
  margin-bottom: 16px;
}
.product-categories-carousel .product-categories {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-categories-carousel .site-width,
.product-categories-carousel .mfp-gallery .mfp-inline-holder .mfp-content {
  position: relative;
  overflow: hidden;
}
.product-categories-carousel .categories-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.product-categories-carousel .frozen-category {
  position: relative;
  z-index: 10;
  padding: 20px 20px 20px 0;
  background-color: #f3faff;
  min-width: 220px;
  width: 220px;
}
.product-categories-carousel .scrolling-categories {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: scrollCategories 20s linear infinite;
}
.product-categories-carousel .category {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 40px;
}
.product-categories-carousel .category img,
.product-categories-carousel .frozen-category img {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 16px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.product-categories-carousel .cat-name {
  color: #0663af;
  font-weight: 600;
  position: relative;
  display: inline-block;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0;
}
.product-categories-carousel .cat-name:after {
  content: '';
  background-image: url('../images/line-end.svg');
  width: 33px;
  height: 7px;
  display: inline-block;
  margin-left: 8px;
}
.product-categories-carousel .action {
  margin-top: 30px;
}
.product-categories-carousel .frozen-category img:hover,
.product-categories-carousel .category img:hover {
  filter: opacity(0.9);
}
.product-categories-carousel .frozen-category .cat-name:hover,
.product-categories-carousel .category .cat-name:hover {
  text-decoration: underline;
}
@keyframes scrollCategories {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .product-categories-carousel .category {
    min-width: 150px;
    margin-right: 24px;
  }
  .product-categories-carousel .frozen-category {
    width: 170px;
    min-width: 170px;
  }
  .product-categories-carousel .category img,
  .product-categories-carousel .frozen-category img {
    width: 150px;
  }
}
.featured-post-grid {
  background: linear-gradient(105deg, #0880dd 0%, #00367d 100%);
  padding: 40px 0 48px;
}
.featured-post-grid h5 {
  margin-bottom: 8px;
}
.featured-post-grid h2.title {
  margin-bottom: 40px;
  color: #ffffff;
  position: relative;
}
.featured-post-grid .fpost-container {
  margin-left: -16px;
  margin-right: -16px;
}
.featured-post-grid .fpost-inner-container {
  padding: 0 16px;
}
.featured-post-grid .img-container {
  aspect-ratio: 3.296875;
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}
.featured-post-grid .text-box {
  margin: 0;
  padding: 24px 32px;
  border-radius: 0 0 20px 20px;
  background-color: #ffffff;
}
.featured-post-grid .text-box .title {
  margin-bottom: 20px;
  display: inline-block;
  color: #181716;
}
.featured-post-grid .text-box .title:hover {
  color: #0663af;
}
.featured-post-grid .text-box .info {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .featured-post-grid .fpost-inner-container {
    margin-bottom: 40px;
  }
  .featured-post-grid .img-container {
    aspect-ratio: 2.60416667;
  }
}
.two-column-image-text.lt-blue-bg .image-col {
  width: 40%;
}
.two-column-image-text.lt-blue-bg .text-col {
  width: 60%;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .two-column-image-text.lt-blue-bg .image-col {
    width: 100%;
    order: 0;
    padding-bottom: 24px;
    text-align: center;
  }
  .two-column-image-text.lt-blue-bg .text-col {
    width: 100%;
    padding-right: 0;
    order: 1;
  }
}
.testimonials-panel {
  padding: 52px 0;
}
.testimonials-panel .testimonial {
  padding-bottom: 44px;
}
.testimonials-panel .stars {
  line-height: 0;
  margin-bottom: 16px;
}
.testimonials-panel .content {
  margin-bottom: 16px;
  padding-left: 78px;
  padding-right: 78px;
}
.testimonials-panel p {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: normal;
}
.testimonials-panel p:last-of-type {
  margin-bottom: 0;
}
.testimonials-panel h5 {
  color: #002e6b;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonials-panel .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .testimonials-panel p {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .testimonials-panel {
    padding: 40px 0;
  }
  .testimonials-panel .content {
    padding-left: 44px;
    padding-right: 44px;
  }
  .testimonials-panel p {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .testimonials-panel p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.product-cards {
  padding: 52px 0 20px;
}
.product-cards .site-width > .inner,
.product-cards .mfp-gallery .mfp-inline-holder .mfp-content > .inner {
  margin-left: -16px;
  margin-right: -16px;
}
.product-cards h2 {
  margin-bottom: 40px;
}
.product-cards .product {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 32px;
}
.product-cards .product .inner {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.product-cards .product .image {
  aspect-ratio: 2.13541667;
  width: 100%;
  border-radius: 20px 20px 0 0;
  background-color: #c4c4c4;
}
.product-cards .product .image:hover {
  opacity: .9;
}
.product-cards .product h4,
.product-cards .product .product-table .pr-table-table tr:first-of-type th,
.product-cards .product .product-table .pr-table-table tr:first-of-type td {
  padding: 24px 32px 0;
}
.product-cards .product .content {
  margin-bottom: 24px;
  padding: 0 32px 0;
}
.product-cards .product .btn-wrap {
  margin-top: auto;
  padding: 0 32px 40px;
}
@media (max-width: 1024px) {
  .product-cards .site-width > .inner,
  .product-cards .mfp-gallery .mfp-inline-holder .mfp-content > .inner {
    margin-left: -8px;
    margin-right: -8px;
  }
  .product-cards .product {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }
  .product-cards .product .content {
    margin-bottom: 16px;
  }
  .product-cards .product .card-content {
    padding: 24px 16px 32px;
  }
}
@media (max-width: 767px) {
  .product-cards .product:last-of-type {
    margin-bottom: 0;
  }
}
.three-column-cards {
  padding: 52px 0;
}
.three-column-cards .med-site-width > .inner {
  margin-left: -16px;
  margin-right: -16px;
}
.three-column-cards h2 {
  margin-bottom: 84px;
}
.three-column-cards .card {
  padding-left: 8px;
  padding-right: 8px;
}
.three-column-cards .card .inner {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 72px 32px 42px;
  text-align: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.three-column-cards .card .card-number {
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #90a5cc;
  border-radius: 9999px;
  width: 92px;
  height: 92px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 37px;
  font-size: 3.7rem;
  font-weight: 300;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .three-column-cards {
    padding: 40px 0;
  }
  .three-column-cards .card .inner {
    padding: 72px 16px 32px;
  }
}
@media (max-width: 767px) {
  .three-column-cards h2 {
    margin-bottom: 58px;
  }
  .three-column-cards .card {
    margin-bottom: 62px;
  }
  .three-column-cards .card:last-of-type {
    margin-bottom: 0;
  }
  .three-column-cards .card .inner {
    padding: 56px 16px 24px;
  }
  .three-column-cards .card .card-number {
    width: 80px;
    height: 80px;
    font-size: 30px;
    font-size: 3rem;
  }
}
.two-column-ctas .cta {
  position: relative;
  padding: 208px 32px;
}
.two-column-ctas .cta .inner {
  width: 575px;
  max-width: 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.two-column-ctas .cta .content {
  max-width: 444px;
  padding-right: 56px;
}
.two-column-ctas .cta .content h3 {
  margin-bottom: 30px;
}
.two-column-ctas .cta .content .cta-content {
  margin-bottom: 30px;
  font-weight: 500;
}
.two-column-ctas .cta:first-of-type .inner {
  margin-left: auto;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .two-column-ctas .cta {
    width: 100%;
    padding: 64px 32px;
  }
  .two-column-ctas .cta .inner {
    width: 100%;
    max-width: 100%;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
  }
  .two-column-ctas .cta .content {
    max-width: 100%;
    padding-right: 0;
  }
  .two-column-ctas .cta:first-of-type .inner {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .two-column-ctas .cta {
    padding: 32px 24px;
  }
}
.two-col-img-text-rep {
  padding: 32px 0;
}
.two-col-img-text-rep .row.even .image-col {
  order: 0;
}
.two-col-img-text-rep .row.even .text-col {
  order: 1;
}
.two-col-img-text-rep .row {
  margin-bottom: 32px;
  margin-left: -8px;
  margin-right: -8px;
}
.two-col-img-text-rep .row:last-of-type {
  margin-bottom: 0;
}
.two-col-img-text-rep .row .fifty {
  padding-left: 8px;
  padding-right: 8px;
}
.two-col-img-text-rep .row .img-wrap {
  line-height: 0;
}
.two-col-img-text-rep .row .text-col > .inner {
  padding-left: 24px;
  padding-right: 24px;
}
.two-col-img-text-rep .row .text-col > .inner h2:not(.title),
.two-col-img-text-rep .row .text-col > .inner h3,
.two-col-img-text-rep .row .text-col > .inner h4,
.two-col-img-text-rep .row .text-col > .inner h5,
.two-col-img-text-rep .row .text-col > .inner h6,
.two-col-img-text-rep .row .text-col > .inner .product-table .pr-table-table tr:first-of-type th,
.two-col-img-text-rep .row .text-col > .inner .product-table .pr-table-table tr:first-of-type td {
  color: #5475b0;
}
.two-col-img-text-rep .row .text-col > .inner h5,
.two-col-img-text-rep .row .text-col > .inner h6 {
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .two-col-img-text-rep .row.even .image-col,
  .two-col-img-text-rep .row.odd .image-col {
    order: 0;
    margin-bottom: 24px;
  }
  .two-col-img-text-rep .row.even .text-col,
  .two-col-img-text-rep .row.odd .text-col {
    order: 1;
  }
  .two-col-img-text-rep .row .text-col > .inner {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.interative-dot-map-container {
  position: relative;
}
.interative-dot-map-container .dot-map {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 64px;
}
.interative-dot-map-container .dot-map > div:not(.button-bar) {
  width: 100%;
  order: 1;
}
.interative-dot-map-container .dot-map .button-bar {
  order: 0;
  margin: 52px auto;
}
.interative-dot-map-container .dot-map svg {
  max-height: 700px;
}
.interative-dot-map-container .dot-map .button-bar {
  padding: 0;
  width: 100%;
  background-color: transparent;
}
.interative-dot-map-container .dot-map .button-bar .button-bar-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  width: 100%;
  gap: 0;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.interative-dot-map-container .dot-map .button-bar button {
  background-color: #393939;
  width: 28.333%;
  border-top: 4px solid #003d8e;
  position: relative;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
  padding: 14px 4px;
  text-transform: capitalize;
}
.interative-dot-map-container .dot-map .button-bar button:first-of-type {
  border-radius: 20px 0 0 0;
}
.interative-dot-map-container .dot-map .button-bar button:last-of-type {
  width: 15%;
  border-radius: 0 20px 0 0;
}
.interative-dot-map-container .dot-map .button-bar button:last-of-type:before {
  content: none;
}
.interative-dot-map-container .dot-map .button-bar button:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #001735;
  width: 2px;
  height: calc(100% + 4px);
  z-index: 2;
}
.interative-dot-map-container .dot-map .button-bar button.active {
  background-color: #f0741c;
  border-top: 4px solid #f0741c;
}
.interative-dot-map-container .dot-map .button-bar button.active:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 14px solid #f0741c;
  display: block;
  background-color: transparent;
}
@media (max-width: 1024px) {
  .interative-dot-map-container .dot-map .button-bar button {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 8px 4px;
  }
}
@media (max-width: 786px) {
  .interative-dot-map-container .dot-map .button-bar {
    display: block;
  }
  .interative-dot-map-container .dot-map .button-bar button {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media (max-width: 500px) {
  .interative-dot-map-container {
    padding-top: 80px;
  }
  .interative-dot-map-container .dot-map {
    padding-bottom: 8px;
  }
  .interative-dot-map-container .dot-map .button-bar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    margin: 0;
  }
  .interative-dot-map-container .dot-map .button-bar button {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 4px;
  }
  .interative-dot-map-container .dot-map .button-bar button.active:after {
    bottom: -10px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #f0741c;
  }
}
.footer-cta {
  background: linear-gradient(to right, #0360aa 0%, #000e38 100%);
  padding: 48px 0;
}
.footer-cta .top-inner {
  margin: 0 auto;
  max-width: 600px;
}
.footer-cta.larger-width .top-inner {
  max-width: 800px;
}
.footer-cta h5 {
  margin-bottom: 16px;
}
.footer-cta .title {
  margin-bottom: 24px;
  text-wrap: balance;
}
.footer-cta p {
  margin-bottom: 28px;
}
.footer-cta div.gform_wrapper.gravity-theme {
  background: none;
  border: none;
  padding: 0;
}
.footer-cta div.gform_wrapper.gravity-theme form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.footer-cta div.gform_wrapper.gravity-theme .gform_heading {
  display: none;
}
.footer-cta div.gform_wrapper.gravity-theme .gfield input[type="email"] {
  height: 56px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 240px;
  padding: 0 16px 0 24px;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
}
.footer-cta div.gform_wrapper.gravity-theme .gform_footer {
  padding: 0;
  margin: 0;
}
.footer-cta div.gform_wrapper.gravity-theme .gform_footer button {
  margin: 0;
  min-width: 0;
  width: auto;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
  border: none;
  outline: none;
  background: #0063af;
  color: #ffffff;
  height: 56px;
}
.pr-breadcrumbs {
  padding-top: 32px;
  padding-bottom: 24px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}
.pr-breadcrumbs span {
  font-weight: 400;
}
.pr-breadcrumbs a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .pr-breadcrumbs {
    display: none;
  }
}
.product-hero {
  padding-bottom: 65px;
}
.product-hero .inner {
  gap: 40px;
}
.product-hero .pr-main-category,
.product-hero .pr-main-title,
.product-hero .pr-sku {
  margin-bottom: 8px;
}
.product-hero .pr-sku {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #393939;
}
.product-hero .pr-main-content {
  border-top: 1px solid #393939;
  padding-top: 8px;
  margin-top: 20px;
}
.product-hero .pr-action {
  margin-top: 24px;
  gap: 24px;
}
.product-hero .pr-main-gallery {
  margin-bottom: 20px;
}
.product-hero .pr-main-gallery .slide-col {
  padding: 0 5px;
}
.product-hero .pr-main-gallery .slide-col.is-video {
  position: relative;
}
.product-hero .pr-main-gallery .slide-col.is-video:before {
  content: '\f144';
  font-family: 'Font Awesome 5 Pro';
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 60px;
  font-size: 6rem;
  font-weight: 400;
  pointer-events: none;
}
.product-hero .pr-nav-gallery .slide-col {
  padding: 0 5px;
}
.product-hero .pr-nav-gallery .slide-col.is-video {
  position: relative;
}
.product-hero .pr-nav-gallery .slide-col.is-video:before {
  content: '\f144';
  font-family: 'Font Awesome 5 Pro';
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  pointer-events: none;
}
.product-hero .mobile-meta {
  padding-top: 32px;
}
@media (max-width: 1024px) {
  .product-hero .inner {
    gap: 20px;
  }
}
.product-table .pr-table-headline {
  background-color: #003d8e;
  padding-top: 20px;
  padding-bottom: 20px;
}
.product-table .pr-table-main {
  background-color: #f3faff;
  padding-top: 32px;
  padding-bottom: 32px;
}
.product-table .pr-table-description {
  margin-bottom: 32px;
}
.product-table .pr-table-table-inner {
  overflow-x: auto;
}
.product-table .pr-table-table table {
  width: 100%;
  border-collapse: collapse;
}
.product-table .pr-table-table td {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #475569;
  padding: 16px;
  border: 1px solid #475569;
}
.product-table .pr-table-table td p {
  margin-bottom: 4px;
}
.product-table .pr-table-table td p:last-of-type {
  margin-bottom: 0;
}
.product-table .pr-table-table tr:first-of-type th,
.product-table .pr-table-table tr:first-of-type td {
  color: #0663af;
  font-weight: 600;
}
@media (max-width: 767px) {
  .product-table .pr-table-table td {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
  }
}
.product-attachments {
  background-color: #001e47;
  padding-top: 52px;
  padding-bottom: 52px;
}
.product-attachments .inner {
  gap: 40px;
}
.product-attachments .btn i,
.product-attachments div.gform_wrapper.gravity-theme .gform_footer .button i {
  margin-right: 8px;
}
@media (max-width: 767px) {
  .product-attachments .inner {
    gap: 20px;
  }
}
.product-additional-details {
  padding-top: 64px;
}
.product-additional-details .mobile-tab-title {
  background-color: #ffffff;
  padding: 24px 16px;
  border-top: 1px solid #393939;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}
.product-additional-details .mobile-tab-title:first-of-type {
  border-top: none;
}
.product-additional-details .mobile-tab-title h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #494949;
  margin-bottom: 0;
}
.product-additional-details .mobile-tab-title:before {
  content: '\2b';
  color: #003d8e;
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 80px;
  width: 24px;
  height: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
}
.product-additional-details .mobile-tab-title.active h3 {
  color: #0663af;
}
.product-additional-details .mobile-tab-title.active:before {
  content: '\f068';
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}
.product-additional-details .tab-bodies {
  border-bottom: 1px solid #393939;
}
.product-additional-details .tab-bodies .tab-body {
  padding: 0 16px 24px;
}
.product-additional-details .tab-bodies p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #393939;
  margin-bottom: 4px;
}
.product-additional-details .tab-bodies a {
  font-weight: 500;
  color: #003d8e;
  line-height: 1.667;
  display: inline-block;
}
@media (max-width: 767px) {
  .product-additional-details .mobile-tab-title {
    padding: 24px 50px 24px 0;
  }
  .product-additional-details .mobile-tab-title:before {
    right: 16px;
  }
  .product-additional-details .tab-bodies .tab-body {
    padding: 0 0 24px;
  }
}
.product-video-popup {
  text-align: center;
  display: inline-block;
}
.product-video-popup video {
  max-height: 80vh;
}
.mfp-gallery .mfp-inline-holder .mfp-content {
  text-align: center;
}
.footer-cta.product-cta {
  background: #ffffff;
}
.other-resources-grid {
  padding: 84px 0;
}
.other-resources-grid .top-inner {
  margin-bottom: 40px;
}
.other-resources-grid .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.other-resources-grid .inner-card {
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.other-resources-grid .card-image {
  height: 200px;
  -webkit-border-radius: 24px 24px 0 0;
  -moz-border-radius: 24px 24px 0 0;
  border-radius: 24px 24px 0 0;
}
.other-resources-grid .card-content {
  -webkit-border-radius: 0 0 24px 24px;
  -moz-border-radius: 0 0 24px 24px;
  border-radius: 0 0 24px 24px;
  padding: 24px 32px 45px;
  height: calc(100% - 200px);
}
.other-resources-grid .inner .title {
  color: #002659;
}
.other-resources-grid .inner .title:hover {
  color: #0663af;
}
.other-resources-grid .inner .content {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .other-resources-grid .inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .other-resources-grid {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .other-resources-grid .inner {
    grid-template-columns: 1fr;
  }
}
.post-type-tab-grid {
  background-color: #f3faff;
  padding: 56px 0;
}
.post-type-tab-grid .top-inner {
  margin-bottom: 64px;
}
.post-type-tab-grid .pttg-inner-col {
  padding: 8px;
}
.post-type-tab-grid .pttg-inner-col .img-container {
  aspect-ratio: 1;
  width: 100%;
  display: block;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}
.post-type-tab-grid .pttg-inner-col .text-box {
  padding: 24px 20px 16px;
}
.post-type-tab-grid .pttg-inner-col .text-box .title {
  color: #d8691a;
  display: inline-block;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-type-tab-grid .pttg-inner-col .text-box .title:hover {
  color: #0663af;
}
.post-type-tab-grid .pttg-inner-col .text-box .info {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-type-tab-grid .pttg-inner-col .text-box .btn-wrap {
  margin-top: 8px;
}
.post-type-tab-grid .pttg-inner-col .text-box .btn-wrap a {
  font-weight: 600;
  color: #0663af;
  font-size: 20px;
  font-size: 2rem;
  padding-right: 45px;
}
.post-type-tab-grid .pttg-inner-col .text-box .btn-wrap a:hover {
  text-decoration: underline;
}
.post-type-grid {
  margin: 100px 0 50px;
}
.post-type-grid .top-section {
  margin-bottom: 40px;
}
.post-type-grid .ptg-filter {
  margin-bottom: 40px;
}
.post-type-grid .ptg-filter .search-col {
  border: 1px solid #003d8e;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}
.post-type-grid .ptg-filter .search-col input {
  color: #494949;
  height: 56px;
  border: none;
}
.post-type-grid .ptg-filter .search-col button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 56px;
  width: 56px;
  background-color: #003d8e;
  color: #ffffff;
  aspect-ratio: 1;
  outline: 0;
  border: none;
  cursor: pointer;
}
.post-type-grid .ptg-filter .filter-dropdown select {
  height: 50px;
  padding: 0 50px 0 16px;
  border: 1px solid #475569;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  color: #282828;
  font-weight: 500;
}
.post-type-grid .ptg-filter .ptg-filter-remove a {
  color: red;
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 12px;
  display: inline-block;
}
.post-type-grid .ptg-filter .ptg-filter-remove a:hover {
  text-decoration: underline;
}
.post-type-grid .ptg-grid .ptg-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.post-type-grid .ptg-grid .ptg-grid-inner .pttg-inner-col {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}
.post-type-grid .ptg-grid .ptg-grid-inner .img-container {
  height: 200px;
  width: 100%;
  display: block;
  -webkit-border-radius: 24px 24px 0 0;
  -moz-border-radius: 24px 24px 0 0;
  border-radius: 24px 24px 0 0;
}
.post-type-grid .ptg-grid .ptg-grid-inner .text-box {
  padding: 24px 32px 44px;
  height: calc(100% - 200px);
}
.post-type-grid .ptg-grid .ptg-grid-inner .text-box .title {
  color: #002659;
  display: inline-block;
  margin-bottom: 24px;
}
.post-type-grid .ptg-grid .ptg-grid-inner .text-box .title:hover {
  color: #0663af;
}
.post-type-grid .ptg-grid .ptg-grid-inner .text-box .info {
  margin-bottom: 24px;
}
.post-type-grid .load-more-container {
  margin-top: 50px;
}
.post-type-grid .load-more-container .btn,
.post-type-grid .load-more-container div.gform_wrapper.gravity-theme .gform_footer .button {
  background: #0063af;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}
.post-type-grid .load-more-container .btn:hover,
.post-type-grid .load-more-container div.gform_wrapper.gravity-theme .gform_footer .button:hover {
  background: #003d8e;
}
@media (max-width: 1024px) {
  .post-type-grid .ptg-grid .ptg-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .post-type-grid .ptg-grid .ptg-grid-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .post-type-grid .ptg-filter .ptg-filter-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}
.accordion-group-wrapper {
  padding: 64px 0;
  background-color: #f3faff;
}
.accordion-group-wrapper .agw-filter {
  margin-bottom: 40px;
}
.accordion-group-wrapper .agw-filter .search-col {
  border: 1px solid #003d8e;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}
.accordion-group-wrapper .agw-filter .search-col input {
  color: #494949;
  height: 56px;
  border: none;
}
.accordion-group-wrapper .agw-filter .search-col button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 56px;
  width: 56px;
  background-color: #003d8e;
  color: #ffffff;
  aspect-ratio: 1;
  outline: 0;
  border: none;
  cursor: pointer;
}
.accordion-group-wrapper .agw-filter .filter-dropdown select {
  height: 50px;
  padding: 0 50px 0 16px;
  border: 1px solid #475569;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  color: #282828;
  font-weight: 500;
}
.accordion-group-wrapper .agw-filter .agw-filter-remove .agw-filter-remove-trigger {
  color: red;
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 12px;
  display: inline-block;
  cursor: pointer;
}
.accordion-group-wrapper .agw-filter .agw-filter-remove .agw-filter-remove-trigger:hover {
  text-decoration: underline;
}
.accordion-group-wrapper .accordion-group {
  margin-top: 64px;
}
.accordion-group-wrapper .mobile-tab-title {
  padding: 24px 16px;
  border-top: 1px solid #393939;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}
.accordion-group-wrapper .mobile-tab-title:first-of-type {
  border-top: none;
}
.accordion-group-wrapper .mobile-tab-title h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #494949;
  margin-bottom: 0;
}
.accordion-group-wrapper .mobile-tab-title:before {
  content: '\2b';
  color: #003d8e;
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 80px;
  width: 24px;
  height: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
}
.accordion-group-wrapper .mobile-tab-title.active h3 {
  color: #0663af;
}
.accordion-group-wrapper .mobile-tab-title.active:before {
  content: '\f068';
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}
.accordion-group-wrapper .tab-bodies {
  border-bottom: 1px solid #393939;
}
.accordion-group-wrapper .tab-bodies .tab-body {
  padding: 0 16px 24px;
}
.accordion-group-wrapper .tab-bodies p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #393939;
  margin-bottom: 4px;
}
.accordion-group-wrapper .tab-bodies a {
  font-weight: 500;
  color: #003d8e;
  line-height: 1.667;
  display: inline-block;
}
@media (max-width: 767px) {
  .accordion-group-wrapper {
    padding: 40px 0;
  }
  .accordion-group-wrapper .mobile-tab-title {
    padding: 24px 50px 24px 0;
  }
  .accordion-group-wrapper .mobile-tab-title:before {
    right: 16px;
  }
  .accordion-group-wrapper .tab-bodies .tab-body {
    padding: 0 0 24px;
  }
}
@media (max-width: 600px) {
  .accordion-group-wrapper .tab-bodies .tab-body ul[style="column-count: 4; gap: 20px;"] {
    column-count: 1 !important;
  }
}
@media (max-width: 500px) {
  .accordion-group-wrapper .agw-filter .agw-filter-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}
.accordion-group-wrapper .acc-loc-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.accordion-group-wrapper .acc-loc-col {
  background-color: #f3faff;
  padding: 24px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.accordion-group-wrapper .acc-loc-col h4,
.accordion-group-wrapper .acc-loc-col .product-table .pr-table-table tr:first-of-type th,
.accordion-group-wrapper .acc-loc-col .product-table .pr-table-table tr:first-of-type td {
  margin-bottom: 0;
}
.accordion-group-wrapper .tab-bodies .acc-loc-col p {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.accordion-group-wrapper .tab-bodies .acc-loc-col p span {
  display: block;
}
.accordion-group-wrapper .tab-bodies .acc-loc-col a {
  color: #282828;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .accordion-group-wrapper .acc-loc-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .accordion-group-wrapper .acc-loc-container {
    grid-template-columns: 1fr;
  }
}
.form-template-wrapper {
  padding-top: 30px;
  padding-bottom: 50px;
}
.form-template-wrapper.blue-bg {
  background-color: #f3faff;
}
.form-template-wrapper .inner-inner {
  max-width: 906px;
  margin: 0 auto;
}
.two-column-social-media-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}
.two-column-social-media-wrapper .text-col {
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -o-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
  background-color: #0663af;
  padding: 90px 55px;
  z-index: 1;
}
.two-column-social-media-wrapper .text-col .inner {
  background-color: #ffffff;
  padding: 30px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.two-column-social-media-wrapper .social-media li {
  padding: 10px;
}
.two-column-social-media-wrapper .social-media a {
  width: 48px;
  height: 48px;
  color: #ffffff;
  text-align: center;
  align-content: center;
  background-color: #002659;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .two-column-social-media-wrapper .text-col {
    padding: 55px;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
    max-width: 600px;
    margin: auto;
    width: 90%;
  }
}
@media (max-width: 500px) {
  .two-column-social-media-wrapper .text-col {
    padding: 20px;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  .two-column-social-media-wrapper .text-col .inner {
    padding: 20px;
  }
  .two-column-social-media-wrapper .social-media li {
    padding: 5px;
  }
  .two-column-social-media-wrapper .social-media a {
    width: 36px;
    height: 36px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.page-template-template-b .text-panel:not(.footer-cta),
.page-template-template-i .text-panel:not(.footer-cta),
.page-template-template-l .text-panel:not(.footer-cta),
.page-template-template-m .text-panel:not(.footer-cta),
.single-application .text-panel:not(.footer-cta),
.tax-product_category .site-main.cat-template-b .text-panel:not(.footer-cta) {
  background-color: #f3faff;
  padding: 52px 0;
}
.page-template-template-b .text-panel:not(.footer-cta) .top-inner,
.page-template-template-i .text-panel:not(.footer-cta) .top-inner,
.page-template-template-l .text-panel:not(.footer-cta) .top-inner,
.page-template-template-m .text-panel:not(.footer-cta) .top-inner,
.single-application .text-panel:not(.footer-cta) .top-inner,
.tax-product_category .site-main.cat-template-b .text-panel:not(.footer-cta) .top-inner {
  max-width: 906px;
  margin: 0 auto;
}
.page-template-template-b .text-panel:not(.footer-cta) h2,
.page-template-template-i .text-panel:not(.footer-cta) h2,
.page-template-template-l .text-panel:not(.footer-cta) h2,
.page-template-template-m .text-panel:not(.footer-cta) h2,
.single-application .text-panel:not(.footer-cta) h2,
.tax-product_category .site-main.cat-template-b .text-panel:not(.footer-cta) h2 {
  text-align: center;
  max-width: 675px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-template-b .text-panel:not(.footer-cta) p,
.page-template-template-i .text-panel:not(.footer-cta) p,
.page-template-template-l .text-panel:not(.footer-cta) p,
.page-template-template-m .text-panel:not(.footer-cta) p,
.single-application .text-panel:not(.footer-cta) p,
.tax-product_category .site-main.cat-template-b .text-panel:not(.footer-cta) p {
  font-weight: 500;
}
.page-template-template-b .text-panel:not(.footer-cta) p:last-of-type,
.page-template-template-i .text-panel:not(.footer-cta) p:last-of-type,
.page-template-template-l .text-panel:not(.footer-cta) p:last-of-type,
.page-template-template-m .text-panel:not(.footer-cta) p:last-of-type,
.single-application .text-panel:not(.footer-cta) p:last-of-type,
.tax-product_category .site-main.cat-template-b .text-panel:not(.footer-cta) p:last-of-type {
  margin-bottom: 0;
}
.page-template-template-b .two-column-image-text .content h2,
.page-template-template-i .two-column-image-text .content h2,
.page-template-template-l .two-column-image-text .content h2,
.page-template-template-m .two-column-image-text .content h2,
.single-application .two-column-image-text .content h2,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content h2,
.page-template-template-b .two-column-image-text .content h3,
.page-template-template-i .two-column-image-text .content h3,
.page-template-template-l .two-column-image-text .content h3,
.page-template-template-m .two-column-image-text .content h3,
.single-application .two-column-image-text .content h3,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content h3,
.page-template-template-b .two-column-image-text .content h4,
.page-template-template-i .two-column-image-text .content h4,
.page-template-template-l .two-column-image-text .content h4,
.page-template-template-m .two-column-image-text .content h4,
.single-application .two-column-image-text .content h4,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content h4,
.page-template-template-b .two-column-image-text .content h5,
.page-template-template-i .two-column-image-text .content h5,
.page-template-template-l .two-column-image-text .content h5,
.page-template-template-m .two-column-image-text .content h5,
.single-application .two-column-image-text .content h5,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content h5,
.page-template-template-b .two-column-image-text .content h6,
.page-template-template-i .two-column-image-text .content h6,
.page-template-template-l .two-column-image-text .content h6,
.page-template-template-m .two-column-image-text .content h6,
.single-application .two-column-image-text .content h6,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content h6,
.page-template-template-b .two-column-image-text .content .product-table .pr-table-table tr:first-of-type th,
.page-template-template-i .two-column-image-text .content .product-table .pr-table-table tr:first-of-type th,
.page-template-template-l .two-column-image-text .content .product-table .pr-table-table tr:first-of-type th,
.page-template-template-m .two-column-image-text .content .product-table .pr-table-table tr:first-of-type th,
.single-application .two-column-image-text .content .product-table .pr-table-table tr:first-of-type th,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content .product-table .pr-table-table tr:first-of-type th,
.page-template-template-b .two-column-image-text .content .product-table .pr-table-table tr:first-of-type td,
.page-template-template-i .two-column-image-text .content .product-table .pr-table-table tr:first-of-type td,
.page-template-template-l .two-column-image-text .content .product-table .pr-table-table tr:first-of-type td,
.page-template-template-m .two-column-image-text .content .product-table .pr-table-table tr:first-of-type td,
.single-application .two-column-image-text .content .product-table .pr-table-table tr:first-of-type td,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content .product-table .pr-table-table tr:first-of-type td {
  color: #5475b0;
}
.page-template-template-b .two-column-image-text .content h5,
.page-template-template-i .two-column-image-text .content h5,
.page-template-template-l .two-column-image-text .content h5,
.page-template-template-m .two-column-image-text .content h5,
.single-application .two-column-image-text .content h5,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content h5,
.page-template-template-b .two-column-image-text .content h6,
.page-template-template-i .two-column-image-text .content h6,
.page-template-template-l .two-column-image-text .content h6,
.page-template-template-m .two-column-image-text .content h6,
.single-application .two-column-image-text .content h6,
.tax-product_category .site-main.cat-template-b .two-column-image-text .content h6 {
  margin-bottom: 4px;
}
.page-template-template-b .two-column-text-text,
.page-template-template-i .two-column-text-text,
.page-template-template-l .two-column-text-text,
.page-template-template-m .two-column-text-text,
.single-application .two-column-text-text,
.tax-product_category .site-main.cat-template-b .two-column-text-text {
  padding: 64px 0;
}
.page-template-template-b .two-column-text-text .fifty,
.page-template-template-i .two-column-text-text .fifty,
.page-template-template-l .two-column-text-text .fifty,
.page-template-template-m .two-column-text-text .fifty,
.single-application .two-column-text-text .fifty,
.tax-product_category .site-main.cat-template-b .two-column-text-text .fifty {
  padding-left: 16px;
  padding-right: 16px;
}
.page-template-template-b .two-column-text-text h5,
.page-template-template-i .two-column-text-text h5,
.page-template-template-l .two-column-text-text h5,
.page-template-template-m .two-column-text-text h5,
.single-application .two-column-text-text h5,
.tax-product_category .site-main.cat-template-b .two-column-text-text h5 {
  color: #5475b0;
  font-weight: 600;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .page-template-template-b .two-column-text-text,
  .page-template-template-i .two-column-text-text,
  .page-template-template-l .two-column-text-text,
  .page-template-template-m .two-column-text-text,
  .single-application .two-column-text-text,
  .tax-product_category .site-main.cat-template-b .two-column-text-text {
    padding: 40px 0;
  }
  .page-template-template-b .two-column-text-text .fifty,
  .page-template-template-i .two-column-text-text .fifty,
  .page-template-template-l .two-column-text-text .fifty,
  .page-template-template-m .two-column-text-text .fifty,
  .single-application .two-column-text-text .fifty,
  .tax-product_category .site-main.cat-template-b .two-column-text-text .fifty {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-template-template-b .product-categories-carousel,
.page-template-template-i .product-categories-carousel,
.page-template-template-l .product-categories-carousel,
.page-template-template-m .product-categories-carousel,
.single-application .product-categories-carousel,
.tax-product_category .site-main.cat-template-b .product-categories-carousel {
  background-color: #ffffff;
}
.page-template-template-b .product-categories-carousel .frozen-category,
.page-template-template-i .product-categories-carousel .frozen-category,
.page-template-template-l .product-categories-carousel .frozen-category,
.page-template-template-m .product-categories-carousel .frozen-category,
.single-application .product-categories-carousel .frozen-category,
.tax-product_category .site-main.cat-template-b .product-categories-carousel .frozen-category {
  background-color: #ffffff;
}
.page-template-template-d .text-panel:not(.footer-cta) {
  background-color: #f3faff;
  padding: 52px 0;
}
.page-template-template-d .text-panel:not(.footer-cta) .top-inner {
  max-width: 906px;
  margin: 0 auto;
}
.page-template-template-d .text-panel:not(.footer-cta) h2 {
  text-align: center;
  max-width: 675px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-template-d .text-panel:not(.footer-cta) p {
  font-weight: 500;
}
.page-template-template-d .text-panel:not(.footer-cta) p:last-of-type {
  margin-bottom: 0;
}
.page-template-template-d .two-column-image-text {
  background-color: #f3faff;
}
.page-template-template-d .two-column-image-text.panel3_ {
  background-color: #ffffff;
}
.page-template-template-d .two-column-image-text .buttons .btn-wrap:first-of-type {
  margin-right: 30px;
}
.page-template-template-e .text-panel:not(.footer-cta) {
  background-color: #f3faff;
  padding: 52px 0;
}
.page-template-template-e .text-panel:not(.footer-cta) .top-inner {
  max-width: 906px;
  margin: 0 auto;
}
.page-template-template-e .text-panel:not(.footer-cta) h2 {
  text-align: center;
  max-width: 675px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-template-e .text-panel:not(.footer-cta) p {
  font-weight: 500;
}
.page-template-template-e .text-panel:not(.footer-cta) p:last-of-type {
  margin-bottom: 0;
}
.page-template-template-f {
  background-color: #f3faff;
}
.page-template-template-f .text-panel:not(.footer-cta) {
  background-color: #f3faff;
  padding: 52px 0;
}
.page-template-template-f .text-panel:not(.footer-cta) .top-inner {
  max-width: 906px;
  margin: 0 auto;
}
.page-template-template-f .text-panel:not(.footer-cta) h2 {
  text-align: center;
  max-width: 805px;
  margin-left: auto;
  margin-right: auto;
  color: #002659;
}
.page-template-template-f .text-panel:not(.footer-cta) p {
  font-weight: 500;
}
.page-template-template-f .text-panel:not(.footer-cta) p:last-of-type {
  margin-bottom: 0;
}
.page-template-template-f .employees .employee-section {
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 24px;
}
.page-template-template-f .employees .employee {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 24px;
}
.page-template-template-f .employees .employee-image {
  aspect-ratio: 1.01960784;
  border-radius: 20px;
  margin-bottom: 24px;
}
.page-template-template-f .employees .employee-info {
  padding-left: 20px;
  padding-right: 20px;
}
.page-template-template-f .employees h4,
.page-template-template-f .employees .product-table .pr-table-table tr:first-of-type th,
.page-template-template-f .employees .product-table .pr-table-table tr:first-of-type td {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .page-template-template-f .employees .employee {
    margin-bottom: 16px;
  }
  .page-template-template-f .employees .employee-image {
    margin-bottom: 16px;
  }
  .page-template-template-f .employees .employee-info {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.page-template-template-g .text-panel:not(.footer-cta) {
  background-color: #f3faff;
  padding: 52px 0;
}
.page-template-template-g .text-panel:not(.footer-cta) .top-inner {
  max-width: 906px;
  margin: 0 auto;
}
.page-template-template-g .text-panel:not(.footer-cta) h2,
.page-template-template-g .text-panel:not(.footer-cta) .pretitle {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-template-g .text-panel:not(.footer-cta) p {
  font-weight: 500;
}
.page-template-template-g .text-panel:not(.footer-cta) p:last-of-type {
  margin-bottom: 0;
}
.page-template-template-m .text-panel:not(.footer-cta) {
  padding-bottom: 0;
}
.page-template-template-m .text-panel:not(.footer-cta) .content *:last-of-type {
  margin-bottom: 0;
}
.page-template-template-l .accordion-group-wrapper {
  background-color: #ffffff;
}
.page-template-template-l .accordion-group-wrapper .agw-filter {
  display: none;
}
.page-template-template-l .accordion-group-wrapper + .text-panel:not(.footer-cta) {
  background-color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}
/************************************************************
 *                      Top Padding                      *
************************************************************/
body .top-padding-0 {
  padding-top: 0px !important;
}
body .top-padding-5 {
  padding-top: 5px !important;
}
body .top-padding-10 {
  padding-top: 10px !important;
}
body .top-padding-15 {
  padding-top: 15px !important;
}
body .top-padding-20 {
  padding-top: 20px !important;
}
body .top-padding-25 {
  padding-top: 25px !important;
}
body .top-padding-30 {
  padding-top: 30px !important;
}
body .top-padding-35 {
  padding-top: 35px !important;
}
body .top-padding-40 {
  padding-top: 40px !important;
}
body .top-padding-45 {
  padding-top: 45px !important;
}
body .top-padding-50 {
  padding-top: 50px !important;
}
body .top-padding-55 {
  padding-top: 55px !important;
}
body .top-padding-60 {
  padding-top: 60px !important;
}
body .top-padding-65 {
  padding-top: 65px !important;
}
body .top-padding-70 {
  padding-top: 70px !important;
}
body .top-padding-75 {
  padding-top: 75px !important;
}
body .top-padding-80 {
  padding-top: 80px !important;
}
body .top-padding-85 {
  padding-top: 85px !important;
}
body .top-padding-90 {
  padding-top: 90px !important;
}
body .top-padding-95 {
  padding-top: 95px !important;
}
body .top-padding-100 {
  padding-top: 100px !important;
}
body .top-padding-120 {
  padding-top: 120px !important;
}
body .top-padding-140 {
  padding-top: 140px !important;
}
body .top-padding-160 {
  padding-top: 160px !important;
}
body .top-padding-180 {
  padding-top: 180px !important;
}
body .top-padding-200 {
  padding-top: 200px !important;
}
@media (max-width: 1200px) {
  body .lg-top-padding-0 {
    padding-top: 0px !important;
  }
  body .lg-top-padding-5 {
    padding-top: 5px !important;
  }
  body .lg-top-padding-10 {
    padding-top: 10px !important;
  }
  body .lg-top-padding-15 {
    padding-top: 15px !important;
  }
  body .lg-top-padding-20 {
    padding-top: 20px !important;
  }
  body .lg-top-padding-25 {
    padding-top: 25px !important;
  }
  body .lg-top-padding-30 {
    padding-top: 30px !important;
  }
  body .lg-top-padding-35 {
    padding-top: 35px !important;
  }
  body .lg-top-padding-40 {
    padding-top: 40px !important;
  }
  body .lg-top-padding-45 {
    padding-top: 45px !important;
  }
  body .lg-top-padding-50 {
    padding-top: 50px !important;
  }
  body .lg-top-padding-55 {
    padding-top: 55px !important;
  }
  body .lg-top-padding-60 {
    padding-top: 60px !important;
  }
  body .lg-top-padding-65 {
    padding-top: 65px !important;
  }
  body .lg-top-padding-70 {
    padding-top: 70px !important;
  }
  body .lg-top-padding-75 {
    padding-top: 75px !important;
  }
  body .lg-top-padding-80 {
    padding-top: 80px !important;
  }
  body .lg-top-padding-85 {
    padding-top: 85px !important;
  }
  body .lg-top-padding-90 {
    padding-top: 90px !important;
  }
  body .lg-top-padding-95 {
    padding-top: 95px !important;
  }
  body .lg-top-padding-100 {
    padding-top: 100px !important;
  }
  body .lg-top-padding-120 {
    padding-top: 120px !important;
  }
  body .lg-top-padding-140 {
    padding-top: 140px !important;
  }
  body .lg-top-padding-160 {
    padding-top: 160px !important;
  }
  body .lg-top-padding-180 {
    padding-top: 180px !important;
  }
  body .lg-top-padding-200 {
    padding-top: 200px !important;
  }
}
@media (max-width: 1024px) {
  body .tbl-top-padding-0 {
    padding-top: 0px !important;
  }
  body .tbl-top-padding-5 {
    padding-top: 5px !important;
  }
  body .tbl-top-padding-10 {
    padding-top: 10px !important;
  }
  body .tbl-top-padding-15 {
    padding-top: 15px !important;
  }
  body .tbl-top-padding-20 {
    padding-top: 20px !important;
  }
  body .tbl-top-padding-25 {
    padding-top: 25px !important;
  }
  body .tbl-top-padding-30 {
    padding-top: 30px !important;
  }
  body .tbl-top-padding-35 {
    padding-top: 35px !important;
  }
  body .tbl-top-padding-40 {
    padding-top: 40px !important;
  }
  body .tbl-top-padding-45 {
    padding-top: 45px !important;
  }
  body .tbl-top-padding-50 {
    padding-top: 50px !important;
  }
  body .tbl-top-padding-55 {
    padding-top: 55px !important;
  }
  body .tbl-top-padding-60 {
    padding-top: 60px !important;
  }
  body .tbl-top-padding-65 {
    padding-top: 65px !important;
  }
  body .tbl-top-padding-70 {
    padding-top: 70px !important;
  }
  body .tbl-top-padding-75 {
    padding-top: 75px !important;
  }
  body .tbl-top-padding-80 {
    padding-top: 80px !important;
  }
  body .tbl-top-padding-85 {
    padding-top: 85px !important;
  }
  body .tbl-top-padding-90 {
    padding-top: 90px !important;
  }
  body .tbl-top-padding-95 {
    padding-top: 95px !important;
  }
  body .tbl-top-padding-100 {
    padding-top: 100px !important;
  }
  body .tbl-top-padding-120 {
    padding-top: 120px !important;
  }
  body .tbl-top-padding-140 {
    padding-top: 140px !important;
  }
  body .tbl-top-padding-160 {
    padding-top: 160px !important;
  }
  body .tbl-top-padding-180 {
    padding-top: 180px !important;
  }
  body .tbl-top-padding-200 {
    padding-top: 200px !important;
  }
}
@media (max-width: 767px) {
  body .sm-top-padding-0 {
    padding-top: 0px !important;
  }
  body .sm-top-padding-5 {
    padding-top: 5px !important;
  }
  body .sm-top-padding-10 {
    padding-top: 10px !important;
  }
  body .sm-top-padding-15 {
    padding-top: 15px !important;
  }
  body .sm-top-padding-20 {
    padding-top: 20px !important;
  }
  body .sm-top-padding-25 {
    padding-top: 25px !important;
  }
  body .sm-top-padding-30 {
    padding-top: 30px !important;
  }
  body .sm-top-padding-35 {
    padding-top: 35px !important;
  }
  body .sm-top-padding-40 {
    padding-top: 40px !important;
  }
  body .sm-top-padding-45 {
    padding-top: 45px !important;
  }
  body .sm-top-padding-50 {
    padding-top: 50px !important;
  }
  body .sm-top-padding-55 {
    padding-top: 55px !important;
  }
  body .sm-top-padding-60 {
    padding-top: 60px !important;
  }
  body .sm-top-padding-65 {
    padding-top: 65px !important;
  }
  body .sm-top-padding-70 {
    padding-top: 70px !important;
  }
  body .sm-top-padding-75 {
    padding-top: 75px !important;
  }
  body .sm-top-padding-80 {
    padding-top: 80px !important;
  }
  body .sm-top-padding-85 {
    padding-top: 85px !important;
  }
  body .sm-top-padding-90 {
    padding-top: 90px !important;
  }
  body .sm-top-padding-95 {
    padding-top: 95px !important;
  }
  body .sm-top-padding-100 {
    padding-top: 100px !important;
  }
  body .sm-top-padding-120 {
    padding-top: 120px !important;
  }
  body .sm-top-padding-140 {
    padding-top: 140px !important;
  }
  body .sm-top-padding-160 {
    padding-top: 160px !important;
  }
  body .sm-top-padding-180 {
    padding-top: 180px !important;
  }
  body .sm-top-padding-200 {
    padding-top: 200px !important;
  }
}
@media (max-width: 500px) {
  body .mbl-top-padding-0 {
    padding-top: 0px !important;
  }
  body .mbl-top-padding-5 {
    padding-top: 5px !important;
  }
  body .mbl-top-padding-10 {
    padding-top: 10px !important;
  }
  body .mbl-top-padding-15 {
    padding-top: 15px !important;
  }
  body .mbl-top-padding-20 {
    padding-top: 20px !important;
  }
  body .mbl-top-padding-25 {
    padding-top: 25px !important;
  }
  body .mbl-top-padding-30 {
    padding-top: 30px !important;
  }
  body .mbl-top-padding-35 {
    padding-top: 35px !important;
  }
  body .mbl-top-padding-40 {
    padding-top: 40px !important;
  }
  body .mbl-top-padding-45 {
    padding-top: 45px !important;
  }
  body .mbl-top-padding-50 {
    padding-top: 50px !important;
  }
  body .mbl-top-padding-55 {
    padding-top: 55px !important;
  }
  body .mbl-top-padding-60 {
    padding-top: 60px !important;
  }
  body .mbl-top-padding-65 {
    padding-top: 65px !important;
  }
  body .mbl-top-padding-70 {
    padding-top: 70px !important;
  }
  body .mbl-top-padding-75 {
    padding-top: 75px !important;
  }
  body .mbl-top-padding-80 {
    padding-top: 80px !important;
  }
  body .mbl-top-padding-85 {
    padding-top: 85px !important;
  }
  body .mbl-top-padding-90 {
    padding-top: 90px !important;
  }
  body .mbl-top-padding-95 {
    padding-top: 95px !important;
  }
  body .mbl-top-padding-100 {
    padding-top: 100px !important;
  }
  body .mbl-top-padding-120 {
    padding-top: 120px !important;
  }
  body .mbl-top-padding-140 {
    padding-top: 140px !important;
  }
  body .mbl-top-padding-160 {
    padding-top: 160px !important;
  }
  body .mbl-top-padding-180 {
    padding-top: 180px !important;
  }
  body .mbl-top-padding-200 {
    padding-top: 200px !important;
  }
}
/************************************************************
 *                      Bottom Padding                      *
************************************************************/
body .bottom-padding-0 {
  padding-bottom: 0px !important;
}
body .bottom-padding-5 {
  padding-bottom: 5px !important;
}
body .bottom-padding-10 {
  padding-bottom: 10px !important;
}
body .bottom-padding-15 {
  padding-bottom: 15px !important;
}
body .bottom-padding-20 {
  padding-bottom: 20px !important;
}
body .bottom-padding-25 {
  padding-bottom: 25px !important;
}
body .bottom-padding-30 {
  padding-bottom: 30px !important;
}
body .bottom-padding-35 {
  padding-bottom: 35px !important;
}
body .bottom-padding-40 {
  padding-bottom: 40px !important;
}
body .bottom-padding-45 {
  padding-bottom: 45px !important;
}
body .bottom-padding-50 {
  padding-bottom: 50px !important;
}
body .bottom-padding-55 {
  padding-bottom: 55px !important;
}
body .bottom-padding-60 {
  padding-bottom: 60px !important;
}
body .bottom-padding-65 {
  padding-bottom: 65px !important;
}
body .bottom-padding-70 {
  padding-bottom: 70px !important;
}
body .bottom-padding-75 {
  padding-bottom: 75px !important;
}
body .bottom-padding-80 {
  padding-bottom: 80px !important;
}
body .bottom-padding-85 {
  padding-bottom: 85px !important;
}
body .bottom-padding-90 {
  padding-bottom: 90px !important;
}
body .bottom-padding-95 {
  padding-bottom: 95px !important;
}
body .bottom-padding-100 {
  padding-bottom: 100px !important;
}
body .bottom-padding-120 {
  padding-bottom: 120px !important;
}
body .bottom-padding-140 {
  padding-bottom: 140px !important;
}
body .bottom-padding-160 {
  padding-bottom: 160px !important;
}
body .bottom-padding-180 {
  padding-bottom: 180px !important;
}
body .bottom-padding-200 {
  padding-bottom: 200px !important;
}
@media (max-width: 1200px) {
  body .lg-bottom-padding-0 {
    padding-bottom: 0px !important;
  }
  body .lg-bottom-padding-5 {
    padding-bottom: 5px !important;
  }
  body .lg-bottom-padding-10 {
    padding-bottom: 10px !important;
  }
  body .lg-bottom-padding-15 {
    padding-bottom: 15px !important;
  }
  body .lg-bottom-padding-20 {
    padding-bottom: 20px !important;
  }
  body .lg-bottom-padding-25 {
    padding-bottom: 25px !important;
  }
  body .lg-bottom-padding-30 {
    padding-bottom: 30px !important;
  }
  body .lg-bottom-padding-35 {
    padding-bottom: 35px !important;
  }
  body .lg-bottom-padding-40 {
    padding-bottom: 40px !important;
  }
  body .lg-bottom-padding-45 {
    padding-bottom: 45px !important;
  }
  body .lg-bottom-padding-50 {
    padding-bottom: 50px !important;
  }
  body .lg-bottom-padding-55 {
    padding-bottom: 55px !important;
  }
  body .lg-bottom-padding-60 {
    padding-bottom: 60px !important;
  }
  body .lg-bottom-padding-65 {
    padding-bottom: 65px !important;
  }
  body .lg-bottom-padding-70 {
    padding-bottom: 70px !important;
  }
  body .lg-bottom-padding-75 {
    padding-bottom: 75px !important;
  }
  body .lg-bottom-padding-80 {
    padding-bottom: 80px !important;
  }
  body .lg-bottom-padding-85 {
    padding-bottom: 85px !important;
  }
  body .lg-bottom-padding-90 {
    padding-bottom: 90px !important;
  }
  body .lg-bottom-padding-95 {
    padding-bottom: 95px !important;
  }
  body .lg-bottom-padding-100 {
    padding-bottom: 100px !important;
  }
  body .lg-bottom-padding-120 {
    padding-bottom: 120px !important;
  }
  body .lg-bottom-padding-140 {
    padding-bottom: 140px !important;
  }
  body .lg-bottom-padding-160 {
    padding-bottom: 160px !important;
  }
  body .lg-bottom-padding-180 {
    padding-bottom: 180px !important;
  }
  body .lg-bottom-padding-200 {
    padding-bottom: 200px !important;
  }
}
@media (max-width: 1024px) {
  body .tbl-bottom-padding-0 {
    padding-bottom: 0px !important;
  }
  body .tbl-bottom-padding-5 {
    padding-bottom: 5px !important;
  }
  body .tbl-bottom-padding-10 {
    padding-bottom: 10px !important;
  }
  body .tbl-bottom-padding-15 {
    padding-bottom: 15px !important;
  }
  body .tbl-bottom-padding-20 {
    padding-bottom: 20px !important;
  }
  body .tbl-bottom-padding-25 {
    padding-bottom: 25px !important;
  }
  body .tbl-bottom-padding-30 {
    padding-bottom: 30px !important;
  }
  body .tbl-bottom-padding-35 {
    padding-bottom: 35px !important;
  }
  body .tbl-bottom-padding-40 {
    padding-bottom: 40px !important;
  }
  body .tbl-bottom-padding-45 {
    padding-bottom: 45px !important;
  }
  body .tbl-bottom-padding-50 {
    padding-bottom: 50px !important;
  }
  body .tbl-bottom-padding-55 {
    padding-bottom: 55px !important;
  }
  body .tbl-bottom-padding-60 {
    padding-bottom: 60px !important;
  }
  body .tbl-bottom-padding-65 {
    padding-bottom: 65px !important;
  }
  body .tbl-bottom-padding-70 {
    padding-bottom: 70px !important;
  }
  body .tbl-bottom-padding-75 {
    padding-bottom: 75px !important;
  }
  body .tbl-bottom-padding-80 {
    padding-bottom: 80px !important;
  }
  body .tbl-bottom-padding-85 {
    padding-bottom: 85px !important;
  }
  body .tbl-bottom-padding-90 {
    padding-bottom: 90px !important;
  }
  body .tbl-bottom-padding-95 {
    padding-bottom: 95px !important;
  }
  body .tbl-bottom-padding-100 {
    padding-bottom: 100px !important;
  }
  body .tbl-bottom-padding-120 {
    padding-bottom: 120px !important;
  }
  body .tbl-bottom-padding-140 {
    padding-bottom: 140px !important;
  }
  body .tbl-bottom-padding-160 {
    padding-bottom: 160px !important;
  }
  body .tbl-bottom-padding-180 {
    padding-bottom: 180px !important;
  }
  body .tbl-bottom-padding-200 {
    padding-bottom: 200px !important;
  }
}
@media (max-width: 767px) {
  body .sm-bottom-padding-0 {
    padding-bottom: 0px !important;
  }
  body .sm-bottom-padding-5 {
    padding-bottom: 5px !important;
  }
  body .sm-bottom-padding-10 {
    padding-bottom: 10px !important;
  }
  body .sm-bottom-padding-15 {
    padding-bottom: 15px !important;
  }
  body .sm-bottom-padding-20 {
    padding-bottom: 20px !important;
  }
  body .sm-bottom-padding-25 {
    padding-bottom: 25px !important;
  }
  body .sm-bottom-padding-30 {
    padding-bottom: 30px !important;
  }
  body .sm-bottom-padding-35 {
    padding-bottom: 35px !important;
  }
  body .sm-bottom-padding-40 {
    padding-bottom: 40px !important;
  }
  body .sm-bottom-padding-45 {
    padding-bottom: 45px !important;
  }
  body .sm-bottom-padding-50 {
    padding-bottom: 50px !important;
  }
  body .sm-bottom-padding-55 {
    padding-bottom: 55px !important;
  }
  body .sm-bottom-padding-60 {
    padding-bottom: 60px !important;
  }
  body .sm-bottom-padding-65 {
    padding-bottom: 65px !important;
  }
  body .sm-bottom-padding-70 {
    padding-bottom: 70px !important;
  }
  body .sm-bottom-padding-75 {
    padding-bottom: 75px !important;
  }
  body .sm-bottom-padding-80 {
    padding-bottom: 80px !important;
  }
  body .sm-bottom-padding-85 {
    padding-bottom: 85px !important;
  }
  body .sm-bottom-padding-90 {
    padding-bottom: 90px !important;
  }
  body .sm-bottom-padding-95 {
    padding-bottom: 95px !important;
  }
  body .sm-bottom-padding-100 {
    padding-bottom: 100px !important;
  }
  body .sm-bottom-padding-120 {
    padding-bottom: 120px !important;
  }
  body .sm-bottom-padding-140 {
    padding-bottom: 140px !important;
  }
  body .sm-bottom-padding-160 {
    padding-bottom: 160px !important;
  }
  body .sm-bottom-padding-180 {
    padding-bottom: 180px !important;
  }
  body .sm-bottom-padding-200 {
    padding-bottom: 200px !important;
  }
}
@media (max-width: 500px) {
  body .mbl-bottom-padding-0 {
    padding-bottom: 0px !important;
  }
  body .mbl-bottom-padding-5 {
    padding-bottom: 5px !important;
  }
  body .mbl-bottom-padding-10 {
    padding-bottom: 10px !important;
  }
  body .mbl-bottom-padding-15 {
    padding-bottom: 15px !important;
  }
  body .mbl-bottom-padding-20 {
    padding-bottom: 20px !important;
  }
  body .mbl-bottom-padding-25 {
    padding-bottom: 25px !important;
  }
  body .mbl-bottom-padding-30 {
    padding-bottom: 30px !important;
  }
  body .mbl-bottom-padding-35 {
    padding-bottom: 35px !important;
  }
  body .mbl-bottom-padding-40 {
    padding-bottom: 40px !important;
  }
  body .mbl-bottom-padding-45 {
    padding-bottom: 45px !important;
  }
  body .mbl-bottom-padding-50 {
    padding-bottom: 50px !important;
  }
  body .mbl-bottom-padding-55 {
    padding-bottom: 55px !important;
  }
  body .mbl-bottom-padding-60 {
    padding-bottom: 60px !important;
  }
  body .mbl-bottom-padding-65 {
    padding-bottom: 65px !important;
  }
  body .mbl-bottom-padding-70 {
    padding-bottom: 70px !important;
  }
  body .mbl-bottom-padding-75 {
    padding-bottom: 75px !important;
  }
  body .mbl-bottom-padding-80 {
    padding-bottom: 80px !important;
  }
  body .mbl-bottom-padding-85 {
    padding-bottom: 85px !important;
  }
  body .mbl-bottom-padding-90 {
    padding-bottom: 90px !important;
  }
  body .mbl-bottom-padding-95 {
    padding-bottom: 95px !important;
  }
  body .mbl-bottom-padding-100 {
    padding-bottom: 100px !important;
  }
  body .mbl-bottom-padding-120 {
    padding-bottom: 120px !important;
  }
  body .mbl-bottom-padding-140 {
    padding-bottom: 140px !important;
  }
  body .mbl-bottom-padding-160 {
    padding-bottom: 160px !important;
  }
  body .mbl-bottom-padding-180 {
    padding-bottom: 180px !important;
  }
  body .mbl-bottom-padding-200 {
    padding-bottom: 200px !important;
  }
}
.blog-container .col-posts {
  padding-right: 40px;
}
.blog-container .blog-post-single {
  padding: 20px 50px 20px 20px;
  -webkit-box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}
.blog-container .blog-post-single .post-thumbnail {
  padding-right: 40px;
  min-width: 420px;
  max-width: 420px;
}
.blog-container .blog-post-single .entry-date {
  padding-bottom: 5px;
}
.blog-container .blog-post-single .entry-title {
  font-size: 36px;
  font-size: 3.6rem;
}
.blog-container .blog-post-single .entry-title a {
  color: #181716;
}
.blog-container .blog-post-single .entry-title a:hover {
  color: #003d8e;
}
.blog-container .blog-post-single .more-link {
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 360px;
    max-width: 360px;
  }
}
@media (max-width: 1200px) {
  .blog-container .col-posts {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .blog-container .blog-post-single {
    margin-bottom: 20px;
  }
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 420px;
    max-width: 420px;
  }
}
@media (max-width: 1024px) {
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 360px;
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .blog-container .blog-post-single {
    padding: 20px;
  }
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 420px;
    max-width: 420px;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .blog-container .blog-post-single .post-thumbnail {
    min-width: 0;
    max-width: 100%;
  }
  .blog-container .blog-post-single .post-thumbnail img {
    width: 100%;
  }
}
.blog-single-container {
  padding: 62px 0;
}
.blog-single-container .col-posts {
  padding-right: 40px;
}
.blog-single-container .detail-section {
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 30px;
}
.blog-single-container .detail-section .title {
  margin-bottom: 10px;
}
.blog-single-container .detail-section .separator {
  display: inline-block;
  height: 30px;
  overflow: hidden;
}
.blog-single-container .detail-section .share-post {
  margin-left: 50px;
}
.blog-single-container .detail-section .a2a_svg,
.blog-single-container .detail-section .a2a_kit > div {
  display: none;
}
.blog-single-container .detail-section .a2a_kit > a {
  display: block;
  float: none;
  line-height: 1;
  margin-left: 12px;
}
.blog-single-container .detail-section .a2a_kit > a:after {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}
.blog-single-container .detail-section .a2a_button_facebook:after {
  content: '\f39e';
}
.blog-single-container .detail-section .a2a_button_twitter:after {
  content: '\f099';
}
.blog-single-container .detail-section .a2a_button_linkedin:after {
  content: '\f0e1';
}
.blog-single-container .image-container {
  padding-bottom: 30px;
}
.blog-single-container .content img {
  max-width: 100%;
}
@media (max-width: 1200px) {
  .blog-single-container .col-posts {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .blog-single-container .detail-section .post-info {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .blog-single-container .detail-section .separator {
    height: 22px;
  }
  .blog-single-container .detail-section .a2a_kit > a {
    margin-left: 10px;
  }
  .blog-single-container .detail-section .a2a_kit > a:after {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media (max-width: 400px) {
  .blog-single-container .detail-section .post-info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .blog-single-container .detail-section .author-date {
    width: 100%;
  }
  .blog-single-container .detail-section .share-post {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.sidebar {
  width: 420px;
  min-width: 420px;
}
.sidebar .top-section {
  background-color: #F4F4F4;
  padding: 40px;
  border: 1px solid #CCC;
}
.sidebar #title-sidebar {
  padding-bottom: 20px;
}
.sidebar #search-sidebar {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #CCC;
}
.sidebar #search-sidebar .search-wrapper {
  width: 100%;
  display: block;
}
.sidebar #search-sidebar .search-wrapper .search-input {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.sidebar .widget_categories,
.sidebar .widget_topics {
  padding-top: 30px;
  padding-bottom: 10px;
  border-top: 1px solid #CCC;
}
.sidebar .widget_categories .widget-title,
.sidebar .widget_topics .widget-title {
  margin-bottom: 20px;
  position: relative;
  font-size: 20px;
  font-size: 2rem;
}
.sidebar .widget_categories .widget-title:after,
.sidebar .widget_topics .widget-title:after {
  content: '\f107';
  position: absolute;
  font-family: 'Font Awesome 5 Pro';
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.sidebar .widget_categories .widget-title.opened:after,
.sidebar .widget_topics .widget-title.opened:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.sidebar .widget_categories ul,
.sidebar .widget_topics ul {
  padding-bottom: 20px;
}
.sidebar .link {
  color: #181716;
  padding: 5px 0;
}
.sidebar .link:hover {
  color: #003d8e;
}
.sidebar .topic-btn {
  padding: 5px 2px 5px 0;
}
.sidebar .topic-btn a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #003d8e;
  border: 1px solid #003d8e;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  border-radius: 9999px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  padding: 3px 20px;
  white-space: nowrap;
}
.sidebar .topic-btn a:hover {
  color: #ffffff;
  background-color: #003d8e;
}
@media (max-width: 500px) {
  .sidebar {
    width: 100%;
    min-width: 0;
  }
}
.share-section {
  padding: 30px 50px 40px;
}
.share-section .pretitle {
  margin-bottom: 20px;
}
.share-section .a2a_svg,
.share-section .a2a_kit > div {
  display: none;
}
.share-section .a2a_kit > a {
  display: block;
  float: none;
  line-height: 1;
}
.share-section .a2a_kit > a:after {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 700;
  font-size: 42px;
  font-size: 4.2rem;
}
.share-section .a2a_button_facebook:after {
  content: '\f39e';
}
.share-section .a2a_button_twitter:after {
  content: '\f099';
}
.share-section .a2a_button_linkedin:after {
  content: '\f0e1';
}
.single-pagination {
  border-top: 1px solid #CCC;
  padding: 40px 0;
  margin-top: 20px;
}
.single-pagination .next,
.single-pagination .prev {
  display: inline-block;
}
.single-pagination .next {
  text-align: right;
}
.single-pagination .fa-angle-right {
  margin-left: 10px;
}
.single-pagination .fa-angle-left {
  margin-right: 10px;
}
.featured-categories {
  margin-left: -25px;
  margin-right: -25px;
}
.blog .featured-categories {
  padding-bottom: 25px;
}
.featured-categories .featured-category {
  padding: 25px;
}
.featured-categories .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.featured-categories .title {
  padding: 10px;
}
.featured-categories a:hover .overlay {
  background-color: #003d8e;
}
@media (max-width: 1024px) {
  .featured-categories {
    margin-left: -10px;
    margin-right: -10px;
  }
  .blog .featured-categories {
    padding-bottom: 15px;
  }
  .featured-categories .featured-category {
    padding: 10px;
  }
}
.accordions .pf-custom-class .accordions .mobile-tab-title:hover {
  color: #292b28 !important;
}
.top-banner-slider.pf-custom-class .text-box {
  padding: 2% 0px 0px 0px;
}
.top-banner-slider.pf-custom-class .title {
  line-height: 1.3;
}
.top-banner-slider.pf-custom-class .sub-title {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  background: #f49b00;
  padding: 4px 20px;
  margin-bottom: 20px;
}
.top-banner-slider.pf-custom-class .btn,
.top-banner-slider.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button {
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
}
.top-banner-slider.pf-custom-class .btn:hover,
.top-banner-slider.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button:hover {
  color: #f49b00;
  background: #ffffff;
  border: 2px solid #ffffff;
}
.cta-with-image-and-gradient.pf-custom-class .btn,
.cta-with-image-and-gradient.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button {
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
}
.cta-with-image-and-gradient.pf-custom-class .btn:hover,
.cta-with-image-and-gradient.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button:hover {
  color: #076927;
  background: #ffffff;
  border: 2px solid #ffffff;
}
.logo-slider.pf-custom-class {
  padding-top: 140px;
  padding-bottom: 200px;
}
.logo-slider.pf-custom-class .title {
  color: #ffffff;
}
.logo-slider.pf-custom-class .pretitle {
  color: #ffffff;
}
.logo-slider.pf-custom-class .pretitle.two-lines span::before {
  background-color: #ffffff;
}
.logo-slider.pf-custom-class .pretitle.two-lines span::after {
  background-color: #ffffff;
}
.logo-slider.pf-custom-class .slick-dots {
  bottom: -60px;
}
.text-panel.index-panel h2 {
  text-transform: uppercase;
  margin-bottom: 50px;
  margin-top: 50px;
}
.text-panel.index-panel a {
  text-decoration: underline;
  color: #343434;
}
.text-panel.index-panel a:hover {
  color: #f49b00;
}
.text-panel.title-panel-banner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.text-panel.title-panel-banner .top-inner h2.title {
  font-size: 28px;
  font-size: 2.8rem;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.text-panel.title-panel-banner .content {
  padding-bottom: 0px;
  margin: 0 auto;
}
.text-panel.title-panel-banner .back-to-top {
  font-weight: 700;
  color: #f49b00;
  position: relative;
  text-decoration: underline;
}
.text-panel.title-panel-banner .back-to-top:after {
  content: '\f062';
  font-family: 'Font Awesome 5 Pro';
  font-size: 20px;
  font-size: 2rem;
  position: absolute;
  margin-left: 10px;
}
.text-panel.stats-counter-top {
  padding-bottom: 0;
}
.text-panel.stats-counter-top .title {
  font-size: 96px;
  font-size: 9.6rem;
}
.text-panel.stats-counter-bottom {
  padding-top: 0;
}
.text-panel.stats-counter-bottom .title {
  font-size: 96px;
  font-size: 9.6rem;
}
.text-panel.pf-custom-class {
  background: #FF0000;
  background: -webkit-linear-gradient(to left, #ff0000 0%, #000000 100%);
  background: -moz-linear-gradient(to left, #ff0000 0%, #000000 100%);
  background: linear-gradient(to left, #ff0000 0%, #000000 100%);
  padding-top: 150px;
  padding-bottom: 130px;
}
.text-panel.pf-custom-class .top-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-with-background-image.pf-custom-class .title {
  text-transform: capitalize;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.cta-with-background-image.pf-custom-class .content {
  max-width: 800px;
  margin: 0 auto;
}
.timeline-panel.pf-custom-class {
  color: white;
  background: #00416c;
  background: -moz-linear-gradient(90deg, #00416c 20%, #006bab 100%);
  background: -webkit-linear-gradient(90deg, #00416c 20%, #006bab 100%);
  background: linear-gradient(90deg, #00416c 20%, #006bab 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00416c", endColorstr="#006bab", GradientType=1);
}
.timeline-panel.pf-custom-class .title {
  font-weight: 500;
  color: white;
}
.timeline-panel.pf-custom-class .year {
  color: #97c63d;
}
.timeline-panel.pf-custom-class .header {
  font-weight: 700;
}
.timeline-panel.pf-custom-class .slick-dots li.slick-active button {
  border: 7px solid #516a7a;
}
.banner-with-background-image.pf-custom-class {
  padding-top: 300px;
  padding-bottom: 280px;
}
.banner-with-background-image.pf-custom-class .inner {
  width: 100%;
  max-width: 50%;
}
.banner-with-background-image.pf-custom-class .title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 85px;
  font-size: 8.5rem;
  line-height: 1.1;
}
.banner-with-background-image.pf-custom-class .btn,
.banner-with-background-image.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button {
  background-color: #E4B525;
  color: black;
  padding: 20px 50px;
  text-transform: capitalize;
  font-weight: 400;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.banner-with-background-image.pf-custom-class .btn:hover,
.banner-with-background-image.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button:hover {
  background-color: #f7cb46;
}
.button-panel.pf-custom-class {
  padding-top: 100px;
  padding-bottom: 100px;
}
.two-column-text-text.pf-custom-css {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: linear-gradient(#595959, #949494);
}
.two-column-text-text.pf-custom-css ul.white-list {
  margin-left: -26px;
}
.two-column-with-form.pf-custom-class h2.title {
  text-transform: capitalize;
}
.two-column-cta.pf-custom-class a {
  padding: 115px 60px 75px;
}
.two-column-cta.pf-custom-class .btn,
.two-column-cta.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button {
  color: #c76400;
  background: #ffffff;
  border: 2px solid #ffffff;
}
.two-column-cta.pf-custom-class .btn:hover,
.two-column-cta.pf-custom-class div.gform_wrapper.gravity-theme .gform_footer .button:hover {
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
}
.two-column-video-text.pf-custom-class .pretitle {
  color: #ffffff;
}
.two-column-video-text.pf-custom-class .pretitle span::after {
  background-color: #ffffff;
}
.two-column-floating-text {
  padding-top: 105px;
  padding-bottom: 50px;
}
.two-column-floating-text.pf-custom-class .text-col {
  background-color: #00a8f5;
}
.two-column-floating-text.pf-custom-class .text-content {
  padding-top: 80px;
  padding-left: 15px;
  padding-bottom: 40px;
  color: #ffffff;
}
.two-column-floating-text.pf-custom-class .text-content h3 {
  font-size: 60px;
  font-size: 6rem;
  text-transform: uppercase;
}
.employee-bios.pf-custom-class .pretitle {
  color: #076927;
}
.employee-bios.pf-custom-class .pretitle span:before {
  background-color: #076927;
}
.employee-bios.pf-custom-class .pretitle span:after {
  background-color: #076927;
}
.employee-bios.pf-custom-class .employee .content {
  background-color: #076927;
}
.employee-bios.pf-custom-class .employee a:hover .content {
  color: #076927;
  background-color: #ffffff;
}
.mfp-employee-bios .bio-details .bio-email a {
  color: #076927;
}
.mfp-employee-bios .bio-details .pretitle {
  color: #076927;
}
.mfp-employee-bios .bio-details .pretitle span::after {
  background-color: #076927;
}
.featured-post-grid.pf-custom-class .title {
  font-family: 'Lora', serif;
  font-weight: 600;
}
.post-type-grid.pf-custom-class .pt-title {
  color: #076927;
}
.post-type-grid.pf-custom-class .pt-body {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 400;
  color: #343434;
}
.tmp-form.pf-custom-class {
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.tmp-form.pf-custom-class .inner-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.tmp-form.pf-custom-class .gform_wrapper {
  background-color: transparent;
  border: 1px solid #ffffff;
  padding: 40px 40px 50px;
  font-family: 'Lora', serif;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.tmp-form.pf-custom-class .gform_wrapper .gfield_label {
  color: #ffffff;
}
.tmp-form.pf-custom-class .gform_wrapper button {
  background-color: transparent;
  max-width: 200px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #ffffff;
}
.tmp-form.pf-custom-class .gform_wrapper button:hover {
  background-color: #ffffff;
  color: #0a3b6c;
}
.gallery-masonry.pf-custom-class .gallery-masonry-grid .grid-item.text-box .top-inner {
  padding: 50px 50px 50px 0px;
}
.gallery-masonry.pf-custom-class .pretitle {
  color: #076927;
}
.gallery-masonry.pf-custom-class .pretitle span::after {
  background-color: #076927;
}
.gallery-masonry.pf-custom-class a.link-arrow {
  color: #076927;
}
.gallery-masonry-with-filters.pf-custom-class .pretitle {
  color: #076927;
}
.gallery-masonry-with-filters.pf-custom-class .pretitle span::after {
  background-color: #076927;
}
.gallery-masonry-with-filters.pf-custom-class .pretitle span::before {
  background-color: #076927;
}
.gallery-masonry-with-filters.pf-custom-class .gallery-masonry-filters a {
  border: 1px solid #076927;
  color: #076927;
}
.gallery-masonry-with-filters.pf-custom-class .gallery-masonry-filters a.selected,
.gallery-masonry-with-filters.pf-custom-class .gallery-masonry-filters a:hover {
  background-color: #076927;
  color: #ffffff;
}
.gallery-masonry-with-filters.pf-custom-class .gallery-masonry-grid .grid-item-inner:hover .overlay {
  border: 5px solid #076927;
}
.job-posting-panel.pf-custom-class .title {
  color: #076927;
}
.job-posting-panel.pf-custom-class a.btn,
.job-posting-panel.pf-custom-class adiv.gform_wrapper.gravity-theme .gform_footer .button {
  background-color: #076927;
  color: #ffffff;
  border: 2px solid #076927;
}
.job-posting-panel.pf-custom-class a.btn:hover,
.job-posting-panel.pf-custom-class adiv.gform_wrapper.gravity-theme .gform_footer .button:hover {
  background-color: transparent;
  color: #076927;
}
.icon-repeater.pf-custom-class {
  background-color: #fafaeb;
}
.cta-with-panels.pf-custom-class a {
  color: #ffffff;
}
.service-pull-panel.pf-custom-class .pretitle {
  color: #076927;
}
.service-pull-panel.pf-custom-class .pretitle span::after {
  background-color: #076927;
}
.service-pull-panel.pf-custom-class .pretitle span::before {
  background-color: #076927;
}
.service-pull-panel.pf-custom-class a.btn,
.service-pull-panel.pf-custom-class adiv.gform_wrapper.gravity-theme .gform_footer .button {
  background-color: #076927;
  color: #ffffff;
  border: 2px solid #076927;
}
.service-pull-panel.pf-custom-class a.btn:hover,
.service-pull-panel.pf-custom-class adiv.gform_wrapper.gravity-theme .gform_footer .button:hover {
  background-color: transparent;
  color: #076927;
}
.service-pull-panel.pf-custom-class .pulls .name {
  color: #ffffff;
}
.service-pull-panel.pf-custom-class .pulls .service-pull-inner .image-inner {
  background-color: #076927;
}
.service-pull-panel.pf-custom-class .pulls .service-pull-inner .image-inner img {
  filter: brightness(0) invert(1);
}
.service-pull-panel.pf-custom-class .pulls .service-pull-inner:hover .image-inner {
  background-color: #ffffff;
}
.service-pull-panel.pf-custom-class .pulls .service-pull-inner:hover .image-inner img {
  filter: none;
}
.service-pull-panel.pf-custom-class .pulls .service-pull-inner:hover .image-inner .name {
  color: #076927;
}
.service-pull-panel.pf-custom-class .pulls:hover .name {
  color: #ffffff;
}
.tabs.pf-custom-class .tab-body p {
  text-align: center;
}
.tabs.pf-custom-class .tab-body p a {
  margin-top: 40px;
}
.tabs.pf-custom-class .tab-body .inner {
  margin: 14px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.53) 0px 2px 8px 0px;
}
.tabs.pf-custom-class .tab-body .inner .btn,
.tabs.pf-custom-class .tab-body .inner div.gform_wrapper.gravity-theme .gform_footer .button {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.tabs.pf-custom-class .tab-body .price {
  color: #e55204;
  font-size: 30px;
  font-weight: 700;
}
.tabs.pf-custom-class .tab-bar li > a.active {
  background-color: #f49b00;
  color: white;
}
.tabs.pf-custom-class .tab-bar li:hover {
  background-color: #f49b00;
  color: white;
}
.tabs.pf-custom-class .tab-bar li > a.active:after {
  border-color: #f49b00 transparent transparent transparent;
}
.tabs.pf-custom-class .tab-bar li {
  background-color: #343434;
  border-right: 1px solid #ffffff;
}
.tabs.pf-custom-class .tab-bar li:hover a {
  color: white;
}
