@charset "UTF-8";
.animate-rotate {
  -webkit-animation: rotation .7s infinite linear;
  -moz-animation: rotation .7s infinite linear;
  -o-animation: rotation .7s infinite linear;
  -ms-animation: rotation .7s infinite linear;
  animation: rotation .7s infinite linear;
  display: inline-block;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -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;
}
@-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;
  -ms-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;
  -ms-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-animation-duration: .75s;
  animation-duration: .75s;
}
@-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-animation-duration: .75s;
  animation-duration: .75s;
}
@-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-animation-duration: .75s;
  animation-duration: .75s;
  -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-animation-duration: .75s;
  animation-duration: .75s;
}
@-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;
}
/*
   Animation example, for spinners
*/
.animate-spin {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@font-face {
  font-family: 'fontello';
  src: url('../fonts/fontello.eot?31266964');
  src: url('../fonts/fontello.eot?31266964#iefix') format('embedded-opentype'), url('../fonts/fontello.woff?31266964') format('woff'), url('../fonts/fontello.ttf?31266964') format('truetype'), url('../fonts/fontello.svg?31266964#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'fira_sansbold';
  src: url('../fonts/fira/firasans-bold-webfont.woff2') format('woff2'), url('../fonts/fira/firasans-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'fira_sansbold_italic';
  src: url('../fonts/fira/firasans-bolditalic-webfont.woff2') format('woff2'), url('../fonts/fira/firasans-bolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'fira_sanslight';
  src: url('../fonts/fira/firasans-light-webfont.woff2') format('woff2'), url('../fonts/fira/firasans-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'fira_sanslight_italic';
  src: url('../fonts/fira/firasans-lightitalic-webfont.woff2') format('woff2'), url('../fonts/fira/firasans-lightitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
}
.icon-plus:before {
  content: '\e800';
}
.icon-minus:before {
  content: '\e801';
}
.icon-check:before {
  content: '\e802';
}
.icon-left-open-mini:before {
  content: '\e803';
}
.icon-right-open-mini:before {
  content: '\e804';
}
.icon-phone:before {
  content: '\e805';
}
.icon-fb:before {
  content: '\e806';
}
.icon-forum:before {
  content: '\e807';
}
.icon-ig:before {
  content: '\e808';
}
.icon-location:before {
  content: '\e80a';
}
.icon-speech:before {
  content: '\e80b';
}
.icon-left-open-big:before {
  content: '\e80c';
}
.icon-right-open-big:before {
  content: '\e80d';
}
.icon-down-open-big:before {
  content: '\e80e';
}
.icon-up-open-big:before {
  content: '\e80f';
}
.icon-cancel:before {
  content: '\e811';
}
.icon-down-dir:before {
  content: '\e812';
}
.icon-up-dir:before {
  content: '\e813';
}
.icon-left-dir:before {
  content: '\e814';
}
.icon-right-dir:before {
  content: '\e815';
}
.icon-tw:before {
  content: '\e816';
}
.icon-search:before {
  content: '\e817';
}
.teal h1,
.teal h2,
.teal h3,
.teal h4,
.teal a,
.teal .field--name-field-quote {
  color: #85cad5;
}
.teal .field--type-link a {
  background-color: #85cad5;
}
.teal.paragraph--type--testimonial .field--name-field-author,
.teal.paragraph--type--quote .field--name-field-author {
  color: #85cad5;
}
.blue h1,
.blue h2,
.blue h3,
.blue h4,
.blue a,
.blue .field--name-field-quote {
  color: #3f92cf;
}
.blue .field--type-link a {
  background-color: #3f92cf;
}
.blue.paragraph--type--testimonial .field--name-field-author,
.blue.paragraph--type--quote .field--name-field-author {
  color: #3f92cf;
}
.light-blue h1,
.light-blue h2,
.light-blue h3,
.light-blue h4,
.light-blue a,
.light-blue .field--name-field-quote {
  color: #82bce6;
}
.light-blue .field--type-link a {
  background-color: #82bce6;
}
.light-blue.paragraph--type--testimonial .field--name-field-author,
.light-blue.paragraph--type--quote .field--name-field-author {
  color: #82bce6;
}
.green h1,
.green h2,
.green h3,
.green h4,
.green a,
.green .field--name-field-quote {
  color: #67c4aa;
}
.green .field--type-link a {
  background-color: #67c4aa;
}
.green.paragraph--type--testimonial .field--name-field-author,
.green.paragraph--type--quote .field--name-field-author {
  color: #67c4aa;
}
.light-green h1,
.light-green h2,
.light-green h3,
.light-green h4,
.light-green a,
.light-green .field--name-field-quote {
  color: #c0dc91;
}
.light-green .field--type-link a {
  background-color: #c0dc91;
}
.light-green.paragraph--type--testimonial .field--name-field-author,
.light-green.paragraph--type--quote .field--name-field-author {
  color: #c0dc91;
}
.purple h1,
.purple h2,
.purple h3,
.purple h4,
.purple a,
.purple .field--name-field-quote {
  color: #855096;
}
.purple .field--type-link a {
  background-color: #855096;
}
.purple.paragraph--type--testimonial .field--name-field-author,
.purple.paragraph--type--quote .field--name-field-author {
  color: #855096;
}
.light-purple h1,
.light-purple h2,
.light-purple h3,
.light-purple h4,
.light-purple a,
.light-purple .field--name-field-quote {
  color: #cba1cb;
}
.light-purple.paragraph--type--testimonial .field--name-field-author,
.light-purple.paragraph--type--quote .field--name-field-author {
  color: #cba1cb;
}
.pink h1,
.pink h2,
.pink h3,
.pink h4,
.pink a,
.pink .field--name-field-quote {
  color: #f46f94;
}
.pink .field--type-link a {
  background-color: #f46f94;
}
.pink.paragraph--type--testimonial .field--name-field-author,
.pink.paragraph--type--quote .field--name-field-author {
  color: #f46f94;
}
.orange h1,
.orange h2,
.orange h3,
.orange h4,
.orange a,
.orange .field--name-field-quote {
  color: #fbb475;
}
.orange .field--type-link a {
  background-color: #fbb475;
}
.orange.paragraph--type--testimonial .field--name-field-author,
.orange.paragraph--type--quote .field--name-field-author {
  color: #fbb475;
}
html {
  margin-top: 0 !important;
}
body {
  font-family: 'fira_sanslight', sans-serif;
  font-weight: normal;
  -moz-transition: padding 300ms linear;
  -webkit-transition: padding 300ms linear;
  -o-transition: padding 300ms linear;
  transition: padding 300ms linear;
  font-size: 16px;
  line-height: 25px;
  color: #4d536e;
  padding: 0;
  margin: 0;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}
body {
  -webkit-animation-delay: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-duration: 0.1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
}
@-webkit-keyframes fontfix {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
::-moz-selection {
  background: #85cad5;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #85cad5;
  color: #fff;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #4d536e;
}
:-moz-placeholder {
  color: #4d536e;
}
::-moz-placeholder {
  color: #4d536e;
}
:-ms-input-placeholder {
  color: #4d536e;
}
h1,
h2,
h3 {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  color: #855096;
}
h1 em,
h2 em,
h3 em,
h1 i,
h2 i,
h3 i {
  color: #4bc8f5;
  font-style: normal;
}
h1 strong,
h2 strong,
h3 strong {
  font-weight: normal;
  color: #4bc8f5;
  font-style: normal;
}
h1 {
  font-size: 60px;
  line-height: 66px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
h1 u {
  display: inline-block;
  text-decoration: none;
  border-bottom: 14px solid #2d46a0;
}
h2 {
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 40px;
}
h2 + h6 {
  margin-top: -15px;
}
h3 {
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 40px;
}
h3 + h6 {
  margin-top: -15px;
}
h4 {
  font-size: 30px;
  line-height: 40px;
  color: #6d7482;
  font-weight: 200;
  margin-bottom: 30px;
}
h4 strong {
  color: #4d536e;
}
h5 {
  font-family: 'fira_sanslight', sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
}
h6 {
  font-size: 24px;
  line-height: 30px;
  font-family: 'fira_sanslight', sans-serif;
  font-weight: normal;
}
h6 + h4 {
  margin-top: -10px;
}
p {
  margin: 0 0 20px;
}
ul {
  padding-left: 19px;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  height: auto;
}
blockquote {
  padding: 20px 20px 20px 30px;
}
blockquote h4 {
  color: #4d536e;
  font-weight: 200;
}
.btn {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
}
.btn,
.btn:visited {
  color: #FFFFFF;
}
.btn,
.btn:active,
.btn:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.btn:hover {
  text-decoration: none;
  background-color: #685381;
}
.alt-btn {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
  background-color: #eff0f2;
}
.alt-btn,
.alt-btn:visited {
  color: #FFFFFF;
}
.alt-btn,
.alt-btn:active,
.alt-btn:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.alt-btn:hover {
  text-decoration: none;
  background-color: #685381;
}
.alt-btn,
.alt-btn:visited {
  color: #4d536e;
}
.alt-btn,
.alt-btn:active,
.alt-btn:hover {
  text-decoration: none;
  color: #4d536e;
}
.alt-btn:hover {
  background-color: #dee0e5;
}
.lge-btn {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
  line-height: 46px;
  font-size: 36px;
  height: 60px;
  padding: 10px 30px;
  min-width: 240px;
}
.lge-btn,
.lge-btn:visited {
  color: #FFFFFF;
}
.lge-btn,
.lge-btn:active,
.lge-btn:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.lge-btn:hover {
  text-decoration: none;
  background-color: #685381;
}
.page-container > .section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.standard-section {
  position: relative;
  background-repeat: no-repeat;
}
.standard-section .container {
  padding-top: 60px;
  padding-bottom: 50px;
}
.standard-section .container.no-icon {
  padding-top: 60px;
}
.standard-section .img {
  margin-bottom: 40px;
}
.standard-section .cta {
  margin: 20px auto;
}
.body-content-section .container {
  padding-top: 40px;
}
.body-content-section.no-header {
  margin-top: -60px;
}
.body-content-section.no-header .container {
  padding-top: 0;
}
.content-column h3,
.content-column h4,
.content-column h5,
.content-column h6 {
  margin-top: 35px;
  margin-bottom: 20px;
}
.content-column h4 {
  color: #3c87cb;
  font-weight: 600;
}
.content-column ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.content-column li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  position: relative;
}
.content-column li:before {
  content: '•';
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 40px;
  color: #3c87cb;
}
.content-column img {
  display: block;
  max-width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
}
.content-column img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.content-column blockquote {
  padding: 20px 0 20px;
  border: 0;
}
.content-column blockquote img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 0 30px 30px 0;
}
.content-column blockquote h4 {
  color: #4d536e;
  font-weight: 200;
  margin-top: 0;
}
.sub-nav-block {
  background-color: #eff0f2;
  margin-top: 19px;
}
.sub-nav-block .sub-nav-title h3 {
  margin: 0;
  padding: 20px 20px 12px;
  font-size: 36px;
  line-height: 40px;
}
.sub-nav-block > ul > li > a {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  color: #85cad5;
  margin: 0;
  padding: 20px 20px 12px;
  font-size: 36px;
  line-height: 40px;
}
.sub-nav-block ul.sub-menu > li {
  border-top: 1px solid #FFFFFF;
}
.sub-nav-block ul.sub-menu > li.current-menu-item,
.sub-nav-block ul.sub-menu > li.active {
  background-color: #d9dbdc;
}
.sub-nav-block ul.sub-menu > li ul.sub-menu li {
  border-top: 0;
}
.sub-nav-block ul.sub-menu > li ul.sub-menu li:last-child a {
  padding-bottom: 20px;
}
.sub-nav-block ul.sub-menu > li ul.sub-menu li a {
  font-size: 18px;
  line-height: 30px;
  position: relative;
  padding-left: 40px;
}
.sub-nav-block ul.sub-menu > li ul.sub-menu li a:before {
  content: "";
  position: absolute;
  top: 23px;
  left: 22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #adb1b3;
}
.sub-nav-block ul.sub-menu > li ul.sub-menu li a:hover {
  text-decoration: none;
}
.sub-nav-block ul.sub-menu > li ul.sub-menu li.current-menu-item a,
.sub-nav-block ul.sub-menu > li ul.sub-menu li.active a {
  background-color: #c9cccd;
}
.sub-nav-block a {
  display: block;
  font-weight: 300;
  padding: 12px 20px 12px;
  font-size: 24px;
  line-height: 40px;
  color: #0087c8;
}
input {
  font-family: 'fira_sanslight', sans-serif;
  font-weight: normal;
}
input:focus,
input:active {
  -webkit-tap-highlight-color: inherit;
  outline: none;
  outline-width: 0;
}
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus,
input[type='file']:active,
input[type='radio']:active,
input[type='checkbox']:active {
  -webkit-tap-highlight-color: inherit;
  outline: none;
  outline-width: 0;
}
input[type="radio"] {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  appearance: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  transform: scale(1.02);
  cursor: pointer;
  display: inline-block;
  background-color: #cfd0d2;
  border: 0 solid #cfd0d2;
  width: 30px;
  height: 30px;
}
input[type="radio"]:checked {
  border: 7px solid #4bc8f5;
  background-color: #3c87cb;
}
.form-embed form > p > label,
.form-embed form > label {
  float: left;
  text-align: right;
  clear: left;
  width: 200px;
  line-height: 34px;
  margin: 10px 20px 10px 5px;
}
.form-embed form > p > textarea,
.form-embed form > p > select,
.form-embed form > p > input[type="text"],
.form-embed form > textarea,
.form-embed form > select,
.form-embed form > input[type="text"] {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #9fa1a5;
  width: 300px;
  height: 34px;
  margin: 10px;
  clear: right;
  padding: 1px 10px;
}
.form-embed form > p > input[type="radio"],
.form-embed form > input[type="radio"],
.form-embed form > p > input[type="checkbox"],
.form-embed form > input[type="checkbox"] {
  float: none;
  clear: none;
  margin-left: 236px;
}
.form-embed form > p > input[type="radio"] + label,
.form-embed form > input[type="radio"] + label,
.form-embed form > p > input[type="checkbox"] + label,
.form-embed form > input[type="checkbox"] + label {
  width: auto;
  float: none;
  display: inline-block;
}
.form-embed form > p > select,
.form-embed form > select {
  appearance: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #9fa1a5;
  background-image: url('../img/icon/dd-arrow.gif');
  background-repeat: no-repeat;
  background-position: right center;
  background-color: #FFFFFF;
  height: 34px;
  line-height: 20px;
  padding: 1px 10px;
}
.form-embed form > p > input[type="submit"],
.form-embed form > input[type="submit"] {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
  float: none;
  clear: both;
  display: block;
  width: 150px;
  margin: 20px 20px 20px 240px;
}
.form-embed form > p > input[type="submit"],
.form-embed form > input[type="submit"],
.form-embed form > p > input[type="submit"]:visited,
.form-embed form > input[type="submit"]:visited {
  color: #FFFFFF;
}
.form-embed form > p > input[type="submit"],
.form-embed form > input[type="submit"],
.form-embed form > p > input[type="submit"]:active,
.form-embed form > input[type="submit"]:active,
.form-embed form > p > input[type="submit"]:hover,
.form-embed form > input[type="submit"]:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.form-embed form > p > input[type="submit"]:hover,
.form-embed form > input[type="submit"]:hover {
  text-decoration: none;
  background-color: #685381;
}
.section-dd {
  position: relative;
  overflow: hidden;
  height: auto;
}
.section-dd .container {
  position: relative;
}
.section-dd table td {
  vertical-align: top;
  line-height: 18px;
  padding-bottom: 20px;
}
.section-dd table tr td:first-child {
  font-weight: 700;
}
.section-dd table tr:last-child td {
  padding-bottom: 0;
}
.region-numbers,
.region-emergency {
  color: #FFFFFF;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background-color: #444b63;
  font-size: 14px;
  line-height: 30px;
}
.region-numbers h1,
.region-emergency h1,
.region-numbers h2,
.region-emergency h2,
.region-numbers h3,
.region-emergency h3,
.region-numbers h5,
.region-emergency h5,
.region-numbers h6,
.region-emergency h6,
.region-numbers ol,
.region-emergency ol,
.region-numbers ul,
.region-emergency ul,
.region-numbers li,
.region-emergency li,
.region-numbers i,
.region-emergency i,
.region-numbers td,
.region-emergency td {
  color: #FFFFFF;
}
.region-numbers h4,
.region-emergency h4,
.region-numbers p,
.region-emergency p {
  color: #ffffff;
}
.region-numbers h3 a,
.region-emergency h3 a,
.region-numbers h4 a,
.region-emergency h4 a,
.region-numbers h3 a:visited,
.region-emergency h3 a:visited,
.region-numbers h4 a:visited,
.region-emergency h4 a:visited {
  font-weight: 400;
  color: #85cad5;
}
.region-numbers h3 strong,
.region-emergency h3 strong,
.region-numbers h4 strong,
.region-emergency h4 strong,
.region-numbers h3 b,
.region-emergency h3 b,
.region-numbers h4 b,
.region-emergency h4 b {
  color: #FFFFFF;
}
.region-numbers h1,
.region-emergency h1,
.region-numbers h2,
.region-emergency h2,
.region-numbers h3,
.region-emergency h3 {
  color: #FFFFFF;
}
.region-numbers h1 em,
.region-emergency h1 em,
.region-numbers h2 em,
.region-emergency h2 em,
.region-numbers h3 em,
.region-emergency h3 em,
.region-numbers h1 i,
.region-emergency h1 i,
.region-numbers h2 i,
.region-emergency h2 i,
.region-numbers h3 i,
.region-emergency h3 i {
  color: #4bc8f5;
}
.region-numbers h1 strong,
.region-emergency h1 strong,
.region-numbers h2 strong,
.region-emergency h2 strong,
.region-numbers h3 strong,
.region-emergency h3 strong {
  color: #4bc8f5;
}
.region-numbers a,
.region-emergency a,
.region-numbers a:visited,
.region-emergency a:visited {
  color: #FFFFFF;
}
.region-numbers a:hover,
.region-emergency a:hover {
  color: #FFFFFF;
}
.region-numbers #block-emergencytable,
.region-emergency #block-emergencytable {
  padding: 20px;
}
.region-numbers #block-phonenumbers,
.region-emergency #block-phonenumbers {
  padding: 20px;
}
.region-numbers a.dd-close,
.region-emergency a.dd-close {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  line-height: 22px;
  font-size: 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: #2c3248;
}
.region-numbers a.dd-close i:before,
.region-emergency a.dd-close i:before {
  margin: 0;
}
.region-numbers h4,
.region-emergency h4 {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 16px;
}
.region-numbers table tr td:first-child,
.region-emergency table tr td:first-child {
  text-align: left;
}
.region-numbers table tr td:last-child,
.region-emergency table tr td:last-child {
  text-align: right;
}
.preheader-links nav ul,
.preheader-links nav li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  display: inline;
}
.preheader-links nav,
.preheader-links nav div {
  display: inline;
}
.region-preheader {
  font-size: 16px;
  line-height: 16px;
  padding: 17px 0;
  letter-spacing: 0.1px;
  width: 100%;
  overflow-x: hidden;
}
.region-preheader i {
  color: #a6a9b6;
}
.region-preheader i:before {
  color: #a6a9b6;
  margin: 0 0 0 4px;
  width: auto;
}
.region-preheader i.icon-phone {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 9px;
}
.region-preheader a {
  margin-left: 20px;
  line-height: 20px;
  display: inline-block;
  height: 20px;
}
.region-preheader a,
.region-preheader a:hover,
.region-preheader a:visited,
.region-preheader a:active {
  color: #4d536e;
}
.region-preheader a.phone {
  position: relative;
  padding-left: 35px;
}
.region-preheader > a {
  display: inline-block;
}
.header-main {
  padding-top: 11px;
}
.header-main .region-header a img {
  max-width: 383px;
  height: 49px;
}
.header-main nav {
  padding: 32px 0 31px;
}
.header-main nav ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.header-main nav ul ul {
  display: none;
}
.header-main nav li {
  -moz-transition: margin linear 200ms;
  -webkit-transition: margin linear 200ms;
  -o-transition: margin linear 200ms;
  transition: margin linear 200ms;
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  margin: 0 35px 0 0 ;
  display: inline-block;
  font-size: 24px;
  line-height: 16px;
  color: #6c728c;
}
.header-main nav li:last-child {
  margin-right: 0;
}
.header-main nav li.active-trail > a {
  color: #4d536e;
  border-color: #4d536e;
}
.header-main nav a {
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.header-main nav a,
.header-main nav a:visited {
  color: #6c728c;
  text-decoration: none;
}
.header-main nav a:hover {
  opacity: .7;
}
.header-main nav a:active,
.header-main nav a:focus,
.header-main nav a.is-active {
  color: #4d536e;
  border-color: #4d536e;
}
.header-right form {
  display: block;
  padding-top: 7px;
  height: 65px;
}
.header-right form button {
  margin-right: 10px;
}
.header-right form button[type="submit"]:before {
  font-family: "fontello";
  content: '\e817';
  text-decoration: none !important;
}
.header-right input,
.header-right button {
  appearance: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: none;
  border: 0;
  padding: 0;
}
.header-right input {
  -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: right;
  font-size: 20px;
  width: 67px;
}
.header-right input:focus,
.header-right input:active {
  width: 222px;
}
.header-right button {
  background: none;
  border: 0;
  padding: 0;
  font-size: 20px;
}
.header-right a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
}
.header-right a,
.header-right a:visited {
  color: #FFFFFF;
}
.header-right a,
.header-right a:active,
.header-right a:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.header-right a:hover {
  text-decoration: none;
  background-color: #685381;
}
.header-right a.sign-in {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
  background-color: #eff0f2;
  margin-left: 10px;
}
.header-right a.sign-in,
.header-right a.sign-in:visited {
  color: #FFFFFF;
}
.header-right a.sign-in,
.header-right a.sign-in:active,
.header-right a.sign-in:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.header-right a.sign-in:hover {
  text-decoration: none;
  background-color: #685381;
}
.header-right a.sign-in,
.header-right a.sign-in:visited {
  color: #4d536e;
}
.header-right a.sign-in,
.header-right a.sign-in:active,
.header-right a.sign-in:hover {
  text-decoration: none;
  color: #4d536e;
}
.header-right a.sign-in:hover {
  background-color: #dee0e5;
}
#block-headerbuttons {
  width: 110%;
  float: right;
  clear: both;
}
.d-btt {
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  -moz-transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  transform: translate(0, 100px);
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 56px;
  padding-top: 40px;
  opacity: 0;
  cursor: pointer;
  z-index: 30;
}
.d-btt.active {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.d-btt i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 40px;
  color: #855096;
  width: 100%;
  text-align: center;
}
.d-btt i:before {
  margin: 0;
}
.d-btt span {
  -webkit-border-radius: 56px;
  -moz-border-radius: 56px;
  border-radius: 56px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 15px 5px;
  text-align: center;
  width: 56px;
  height: 56px;
  display: block;
  background-color: #855096;
  color: #FFFFFF;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 200;
  line-height: 14px;
}
.breif-chat-iframe,
.breif-chat-trigger {
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  position: fixed;
  z-index: 2000;
}
.breif-chat-trigger {
  -moz-transform: translate(0, 400px);
  -webkit-transform: translate(0, 400px);
  -o-transform: translate(0, 400px);
  -ms-transform: translate(0, 400px);
  transform: translate(0, 400px);
  bottom: 30px;
  right: 40px;
  width: 166px;
  cursor: pointer;
}
.breif-chat-trigger.active {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.breif-chat-trigger span {
  display: block;
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
}
.breif-chat-trigger span.bubble {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #444b63;
  font-size: 12px;
  text-align: center;
  padding: 4px 0;
  margin-bottom: 20px;
  position: relative;
  color: #FFFFFF;
}
.breif-chat-trigger span.bubble:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -7.5px;
  top: 100%;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 7.5px solid #444b63;
}
.breif-chat-trigger span.icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  background-color: #85cad5;
  width: 75px;
  height: 75px;
  text-align: center;
  line-height: 75px;
  margin: 0 auto;
}
.breif-chat-trigger span.icon:before {
  content: '\e80b';
  font-family: "fontello";
  color: #FFFFFF;
  font-size: 40px;
}
.breif-chat-iframe {
  -moz-transform: translate(350px, 0);
  -webkit-transform: translate(350px, 0);
  -o-transform: translate(350px, 0);
  -ms-transform: translate(350px, 0);
  transform: translate(350px, 0);
  -webkit-box-shadow: 0 0 95px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 95px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 95px 0 rgba(0, 0, 0, 0);
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background-color: #FFFFFF;
}
.breif-chat-iframe iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}
.breif-chat-iframe.active {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-box-shadow: 0 0 95px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 95px 0 rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 95px 0 rgba(0, 0, 0, 0.75);
}
.breif-chat-iframe .chat-frame-header {
  padding: 10px 15px;
  font-weight: 700;
  position: relative;
  z-index: 11;
  background-color: #FFFFFF;
}
.breif-chat-iframe .chat-frame-header i {
  float: right;
  font-size: 20px;
  cursor: pointer;
  width: auto;
}
.breif-chat-iframe .chat-frame-header i:before {
  margin: 0;
}
.breif-chat-iframe .chat-frame-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-section {
  background-color: #eff0f2;
  padding: 70px 0 40px;
}
.row.footer-links {
  padding-bottom: 90px;
  font-size: 24px;
  line-height: 28px;
}
.row.footer-links a {
  color: #4d536e;
}
.row.footer-links a.forum,
.row.footer-links a.location,
.row.footer-links a.tel,
.row.footer-links a.ig,
.row.footer-links a.fb,
.row.footer-links a.tw {
  display: inline-block;
  margin-bottom: 14px;
  padding-left: 40px;
  position: relative;
}
.row.footer-links a.forum:before,
.row.footer-links a.location:before,
.row.footer-links a.tel:before,
.row.footer-links a.ig:before,
.row.footer-links a.fb:before,
.row.footer-links a.tw:before {
  font-family: "fontello";
  text-decoration: none !important;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 28px;
  width: 24px;
  text-align: center;
}
.row.footer-links a.forum i,
.row.footer-links a.location i,
.row.footer-links a.tel i,
.row.footer-links a.ig i,
.row.footer-links a.fb i,
.row.footer-links a.tw i {
  display: none;
}
.row.footer-links a.tw:before {
  color: #00bff3;
  content: '\e816';
}
.row.footer-links a.fb:before {
  color: #0087c8;
  content: '\e806';
}
.row.footer-links a.ig:before {
  color: #a7afba;
  content: '\e808';
}
.row.footer-links a.tel:before {
  color: #70c0cc;
  content: '\e805';
}
.row.footer-links a.forum:before {
  color: #cba1cb;
  content: '\e807';
}
.row.footer-links a.location:before {
  color: #67c4aa;
  content: '\e80a';
}
.row.footer-links a i {
  margin-right: 13px;
  display: none;
}
.row.footer-links a i.icon-speech {
  color: #cba1cb;
}
.row.footer-links a i.icon-forum {
  color: #cba1cb;
}
.row.footer-links a i.icon-location {
  color: #67c4aa;
}
.row.footer-links a i.icon-phone {
  color: #70c0cc;
}
.row.footer-links a i.icon-tw {
  color: #00bff3;
}
.row.footer-links a i.icon-fb {
  color: #0087c8;
}
.row.footer-links a i.icon-ig {
  color: #a7afba;
}
.row.footer-links ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.row.footer-links li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
}
#block-footersociallinks a {
  font-weight: 700;
}
#block-footersociallinks a:active,
#block-footersociallinks a:focus,
#block-footersociallinks a:visited {
  text-decoration: none;
}
#block-footersociallinks a span {
  text-decoration: none;
}
#block-footersociallinks a:hover {
  text-decoration: none;
}
#block-footersociallinks a:hover span {
  text-decoration: underline;
}
.region-footer-branding img {
  max-width: 195px;
}
.branding-copyright {
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
}
.paragraph {
  padding: 60px 0;
}
.paragraph.teal {
  color: #FFFFFF;
  background-color: #85cad5;
}
.paragraph.teal h1,
.paragraph.teal h2,
.paragraph.teal h3,
.paragraph.teal h5,
.paragraph.teal h6,
.paragraph.teal ol,
.paragraph.teal ul,
.paragraph.teal li,
.paragraph.teal i,
.paragraph.teal td {
  color: #FFFFFF;
}
.paragraph.teal h4,
.paragraph.teal p {
  color: #ffffff;
}
.paragraph.teal h3 a,
.paragraph.teal h4 a,
.paragraph.teal h3 a:visited,
.paragraph.teal h4 a:visited {
  font-weight: 400;
  color: #85cad5;
}
.paragraph.teal h3 strong,
.paragraph.teal h4 strong,
.paragraph.teal h3 b,
.paragraph.teal h4 b {
  color: #FFFFFF;
}
.paragraph.teal h1,
.paragraph.teal h2,
.paragraph.teal h3 {
  color: #FFFFFF;
}
.paragraph.teal h1 em,
.paragraph.teal h2 em,
.paragraph.teal h3 em,
.paragraph.teal h1 i,
.paragraph.teal h2 i,
.paragraph.teal h3 i {
  color: #4bc8f5;
}
.paragraph.teal h1 strong,
.paragraph.teal h2 strong,
.paragraph.teal h3 strong {
  color: #4bc8f5;
}
.paragraph.teal a,
.paragraph.teal a:visited {
  color: #FFFFFF;
}
.paragraph.teal a:hover {
  color: #FFFFFF;
}
.paragraph.light-grey {
  background-color: #e7e9ec;
}
.paragraph.default {
  background-color: #eff0f2;
}
.paragraph .field--name-field-heading h1:first-child,
.paragraph .field--name-field-heading h2:first-child,
.paragraph .field--name-field-heading h3:first-child,
.paragraph .field--name-field-heading h4:first-child {
  margin-top: 0;
}
.paragraph--type--home-page-header {
  color: #FFFFFF;
  padding: 0;
  background-color: #85cad5;
}
.paragraph--type--home-page-header h1,
.paragraph--type--home-page-header h2,
.paragraph--type--home-page-header h3,
.paragraph--type--home-page-header h5,
.paragraph--type--home-page-header h6,
.paragraph--type--home-page-header ol,
.paragraph--type--home-page-header ul,
.paragraph--type--home-page-header li,
.paragraph--type--home-page-header i,
.paragraph--type--home-page-header td {
  color: #FFFFFF;
}
.paragraph--type--home-page-header h4,
.paragraph--type--home-page-header p {
  color: #ffffff;
}
.paragraph--type--home-page-header h3 a,
.paragraph--type--home-page-header h4 a,
.paragraph--type--home-page-header h3 a:visited,
.paragraph--type--home-page-header h4 a:visited {
  font-weight: 400;
  color: #85cad5;
}
.paragraph--type--home-page-header h3 strong,
.paragraph--type--home-page-header h4 strong,
.paragraph--type--home-page-header h3 b,
.paragraph--type--home-page-header h4 b {
  color: #FFFFFF;
}
.paragraph--type--home-page-header h1,
.paragraph--type--home-page-header h2,
.paragraph--type--home-page-header h3 {
  color: #FFFFFF;
}
.paragraph--type--home-page-header h1 em,
.paragraph--type--home-page-header h2 em,
.paragraph--type--home-page-header h3 em,
.paragraph--type--home-page-header h1 i,
.paragraph--type--home-page-header h2 i,
.paragraph--type--home-page-header h3 i {
  color: #4bc8f5;
}
.paragraph--type--home-page-header h1 strong,
.paragraph--type--home-page-header h2 strong,
.paragraph--type--home-page-header h3 strong {
  color: #4bc8f5;
}
.paragraph--type--home-page-header a,
.paragraph--type--home-page-header a:visited {
  color: #FFFFFF;
}
.paragraph--type--home-page-header a:hover {
  color: #FFFFFF;
}
.paragraph--type--home-page-header .row {
  display: table;
}
.paragraph--type--home-page-header .row .home-header-main {
  display: table-row;
}
.paragraph--type--home-page-header .row .home-header-main > div {
  display: table-cell;
  padding: 45px 180px 45px 0;
  vertical-align: middle;
}
.paragraph--type--home-page-header .row .home-header-main > div.paragraph-image {
  width: 278px;
  padding: 45px 0;
}
.paragraph--type--home-page-header .field--name-field-heading h2:first-child {
  margin-top: 52px;
  font-size: 36px;
  line-height: 48px;
}
.paragraph--type--home-page-header .links {
  background-color: #91cfd9;
  padding: 25px 0 20px;
}
.paragraph--type--home-page-header .links ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  padding: 0 20px;
}
.paragraph--type--home-page-header .links li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin: 0 30px;
  letter-spacing: -0.5px;
}
.paragraph--type--home-page-header .links li:first-child {
  margin-left: 0;
}
.paragraph--type--home-page-header .links li:last-child {
  margin-right: 0;
}
.paragraph--type--home-page-header .links a {
  padding-left: 20px;
  position: relative;
  font-size: 24px;
  cursor: default;
}
.paragraph--type--home-page-header .links a:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  height: 10px;
  width: 10px;
  background-color: #855096;
}
.paragraph--type--home-page-header .links a:hover,
.paragraph--type--home-page-header .links a:active,
.paragraph--type--home-page-header .links a:focus {
  cursor: default;
  text-decoration: none;
}
.paragraph--type--home-page-header .links a,
.paragraph--type--home-page-header .links a:visited {
  text-decoration: none;
  color: #4d536e;
}
.paragraph--type--coloured-cards {
  zoom: 1;
  clear: both;
}
.paragraph--type--coloured-cards:before {
  content: '';
  display: block;
}
.paragraph--type--coloured-cards:after {
  content: '';
  display: table;
  clear: both;
}
.paragraph--type--coloured-cards .card-navigation,
.paragraph--type--coloured-cards .cards {
  position: relative;
}
.paragraph--type--coloured-cards .card-navigation {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  float: left;
  border-right: 10px solid transparent;
  width: 46.8%;
}
.paragraph--type--coloured-cards .card-navigation.intro {
  border-right: 0 solid transparent;
}
.paragraph--type--coloured-cards .cards {
  float: right;
  width: 53.2%;
}
.paragraph--type--coloured-cards .cards .back-to-cards {
  color: #4d536e;
  position: absolute;
  left: 20px;
  bottom: 10px;
  z-index: 20;
}
.paragraph--type--coloured-cards .testimonials {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.paragraph--type--coloured-cards .testimonials .dots {
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  height: auto;
  text-align: center;
  z-index: 2;
}
.paragraph--type--coloured-cards .testimonials .dots .dot {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #6c728c;
  opacity: .5;
  margin: 0 10px;
  cursor: pointer;
}
.paragraph--type--coloured-cards .testimonials .dots .dot.active {
  opacity: 1;
}
.paragraph--type--coloured-cards .testimonials-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.paragraph--type--coloured-cards .paragraph--type--testimonial {
  -moz-transition: all linear 400ms;
  -webkit-transition: all linear 400ms;
  -o-transition: all linear 400ms;
  transition: all linear 400ms;
  -moz-transform: translate(20px, 0);
  -webkit-transform: translate(20px, 0);
  -o-transform: translate(20px, 0);
  -ms-transform: translate(20px, 0);
  transform: translate(20px, 0);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: table;
  background-color: #FFFFFF;
}
.paragraph--type--coloured-cards .paragraph--type--testimonial.active {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.paragraph--type--coloured-cards .paragraph--type--testimonial .t-row {
  display: table-row;
}
.paragraph--type--coloured-cards .paragraph--type--testimonial .t-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 40px 20px 20px;
}
.paragraph--type--testimonial .field--name-field-read-more a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
  background-color: #eff0f2;
}
.paragraph--type--testimonial .field--name-field-read-more a,
.paragraph--type--testimonial .field--name-field-read-more a:visited {
  color: #FFFFFF;
}
.paragraph--type--testimonial .field--name-field-read-more a,
.paragraph--type--testimonial .field--name-field-read-more a:active,
.paragraph--type--testimonial .field--name-field-read-more a:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.paragraph--type--testimonial .field--name-field-read-more a:hover {
  text-decoration: none;
  background-color: #685381;
}
.paragraph--type--testimonial .field--name-field-read-more a,
.paragraph--type--testimonial .field--name-field-read-more a:visited {
  color: #4d536e;
}
.paragraph--type--testimonial .field--name-field-read-more a,
.paragraph--type--testimonial .field--name-field-read-more a:active,
.paragraph--type--testimonial .field--name-field-read-more a:hover {
  text-decoration: none;
  color: #4d536e;
}
.paragraph--type--testimonial .field--name-field-read-more a:hover {
  background-color: #dee0e5;
}
.paragraph--type--testimonial .field--name-field-author {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  font-size: 28px;
  margin-bottom: 40px;
  margin-top: -10px;
}
.paragraph--type--testimonial .field--name-field-author:before {
  font-family: "fontello";
  text-decoration: none !important;
  content: '\e80b';
  margin-right: 10px;
}
.paragraph--type--testimonial.teal {
  background-color: #FFFFFF;
}
.paragraph--type--testimonial.teal,
.paragraph--type--testimonial.teal p {
  color: #4d536e;
}
.paragraph--type--testimonial.teal h1,
.paragraph--type--testimonial.teal h2,
.paragraph--type--testimonial.teal h3,
.paragraph--type--testimonial.teal h4 {
  color: #85cad5;
}
.cards-row {
  zoom: 1;
  clear: both;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: #FFFFFF;
}
.cards-row:before {
  content: '';
  display: block;
}
.cards-row:after {
  content: '';
  display: table;
  clear: both;
}
.cards-row .cards-row-inner {
  zoom: 1;
  clear: both;
  position: relative;
}
.cards-row .cards-row-inner:before {
  content: '';
  display: block;
}
.cards-row .cards-row-inner:after {
  content: '';
  display: table;
  clear: both;
}
.paragraph--type--card {
  -moz-transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  padding: 0;
}
.paragraph--type--card .card-inner {
  padding: 40px 40px 80px;
}
.paragraph--type--card .card-links {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.paragraph--type--card.ready {
  -moz-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
  -webkit-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
  -o-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
  transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
}
.paragraph--type--card.active {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.paragraph--type--card:first-child {
  display: block;
}
.paragraph--type--card .paragraph-image {
  float: right;
  margin: 20px 10px 10px 30px;
  max-width: 150px;
}
.paragraph--type--card .field--name-field-body {
  padding-right: 160px;
}
.paragraph--type--card .field--type-link {
  display: inline-block;
  margin-right: 10px;
}
.paragraph--type--card .field--type-link a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
}
.paragraph--type--card .field--type-link a,
.paragraph--type--card .field--type-link a:visited {
  color: #FFFFFF;
}
.paragraph--type--card .field--type-link a,
.paragraph--type--card .field--type-link a:active,
.paragraph--type--card .field--type-link a:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.paragraph--type--card .field--type-link a:hover {
  text-decoration: none;
  background-color: #685381;
}
.paragraph--type--card .field--name-field-learn-more a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
  background-color: #eff0f2;
}
.paragraph--type--card .field--name-field-learn-more a,
.paragraph--type--card .field--name-field-learn-more a:visited {
  color: #FFFFFF;
}
.paragraph--type--card .field--name-field-learn-more a,
.paragraph--type--card .field--name-field-learn-more a:active,
.paragraph--type--card .field--name-field-learn-more a:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.paragraph--type--card .field--name-field-learn-more a:hover {
  text-decoration: none;
  background-color: #685381;
}
.paragraph--type--card .field--name-field-learn-more a,
.paragraph--type--card .field--name-field-learn-more a:visited {
  color: #4d536e;
}
.paragraph--type--card .field--name-field-learn-more a,
.paragraph--type--card .field--name-field-learn-more a:active,
.paragraph--type--card .field--name-field-learn-more a:hover {
  text-decoration: none;
  color: #4d536e;
}
.paragraph--type--card .field--name-field-learn-more a:hover {
  background-color: #dee0e5;
}
.paragraph--type--card.teal h1,
.paragraph--type--card.teal h2,
.paragraph--type--card.teal h3,
.paragraph--type--card.teal h4 {
  color: #85cad5;
}
.paragraph--type--card.teal .field--name-field-get-started-button a {
  background-color: #85cad5;
}
.paragraph--type--card.blue h1,
.paragraph--type--card.blue h2,
.paragraph--type--card.blue h3,
.paragraph--type--card.blue h4 {
  color: #3f92cf;
}
.paragraph--type--card.blue .field--name-field-get-started-button a {
  background-color: #3f92cf;
}
.paragraph--type--card.light-blue h1,
.paragraph--type--card.light-blue h2,
.paragraph--type--card.light-blue h3,
.paragraph--type--card.light-blue h4 {
  color: #82bce6;
}
.paragraph--type--card.light-blue .field--name-field-get-started-button a {
  background-color: #82bce6;
}
.paragraph--type--card.green h1,
.paragraph--type--card.green h2,
.paragraph--type--card.green h3,
.paragraph--type--card.green h4 {
  color: #67c4aa;
}
.paragraph--type--card.green .field--name-field-get-started-button a {
  background-color: #67c4aa;
}
.paragraph--type--card.light-green h1,
.paragraph--type--card.light-green h2,
.paragraph--type--card.light-green h3,
.paragraph--type--card.light-green h4 {
  color: #c0dc91;
}
.paragraph--type--card.light-green .field--name-field-get-started-button a {
  background-color: #c0dc91;
}
.paragraph--type--card.purple h1,
.paragraph--type--card.purple h2,
.paragraph--type--card.purple h3,
.paragraph--type--card.purple h4 {
  color: #855096;
}
.paragraph--type--card.purple .field--name-field-get-started-button a {
  background-color: #855096;
}
.paragraph--type--card.light-purple h1,
.paragraph--type--card.light-purple h2,
.paragraph--type--card.light-purple h3,
.paragraph--type--card.light-purple h4 {
  color: #cba1cb;
}
.paragraph--type--card.light-purple .field--name-field-get-started-button a {
  background-color: #cba1cb;
}
.paragraph--type--card.pink h1,
.paragraph--type--card.pink h2,
.paragraph--type--card.pink h3,
.paragraph--type--card.pink h4 {
  color: #f46f94;
}
.paragraph--type--card.pink .field--name-field-get-started-button a {
  background-color: #f46f94;
}
.paragraph--type--card.orange h1,
.paragraph--type--card.orange h2,
.paragraph--type--card.orange h3,
.paragraph--type--card.orange h4 {
  color: #fbb475;
}
.paragraph--type--card.orange .field--name-field-get-started-button a {
  background-color: #fbb475;
}
.paragraph--type--card.teal {
  background-color: #FFFFFF;
}
.paragraph--type--card.teal,
.paragraph--type--card.teal p {
  color: #4d536e;
}
.paragraph--type--card.teal h1,
.paragraph--type--card.teal h2,
.paragraph--type--card.teal h3,
.paragraph--type--card.teal h4 {
  color: #85cad5;
}
.paragraph--type--card.teal .field--name-field-get-started-button a,
.paragraph--type--card.teal .field--name-field-get-started-button a:visited {
  background-color: #85cad5;
  color: #FFFFFF;
}
.paragraph--type--card.teal .field--name-field-learn-more a,
.paragraph--type--card.teal .field--name-field-learn-more a:visited {
  color: #4d536e;
}
.field--name-field-body table.call-us {
  width: 100%;
  max-width: 570px;
}
.field--name-field-body table td {
  padding: 5px 0;
}
.card-navigation {
  -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  z-index: 4;
  background-color: #FFFFFF;
}
.card-navigation.teal {
  border-color: #85cad5;
}
.card-navigation.blue {
  border-color: #3f92cf;
}
.card-navigation.light-blue {
  border-color: #82bce6;
}
.card-navigation.green {
  border-color: #67c4aa;
}
.card-navigation.light-green {
  border-color: #c0dc91;
}
.card-navigation.purple {
  border-color: #855096;
}
.card-navigation.light-purple {
  border-color: #cba1cb;
}
.card-navigation.pink {
  border-color: #f46f94;
}
.card-navigation.orange {
  border-color: #fbb475;
}
.card-navigation .title {
  position: relative;
  padding-right: 40px;
  display: block;
}
.card-navigation .title.with-new {
  padding-right: 100px;
}
.card-navigation .new {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 33px;
  height: 33px;
  font-size: 11px;
  line-height: 37px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #855096;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -19.5px;
  right: 40px;
}
.card-handle {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  line-height: 30px;
  font-size: 24px;
  padding: 19px 21px 10px;
  border-bottom: 1px solid #c2c2c2;
  cursor: pointer;
}
.card-handle:last-child {
  border-bottom: 0;
}
.card-handle .arrow {
  float: right;
}
.card-handle .arrow i {
  -moz-transition: color linear 300ms;
  -webkit-transition: color linear 300ms;
  -o-transition: color linear 300ms;
  transition: color linear 300ms;
}
.card-handle.teal i {
  color: #85cad5;
}
.card-handle.blue i {
  color: #3f92cf;
}
.card-handle.light-blue i {
  color: #82bce6;
}
.card-handle.green i {
  color: #67c4aa;
}
.card-handle.light-green i {
  color: #c0dc91;
}
.card-handle.purple i {
  color: #855096;
}
.card-handle.light-purple i {
  color: #cba1cb;
}
.card-handle.pink i {
  color: #f46f94;
}
.card-handle.orange i {
  color: #fbb475;
}
.paragraph--type--stories .paragraph-image {
  float: right;
  margin-left: 30px;
}
.articles-list,
.stories-list {
  zoom: 1;
  clear: both;
  margin-top: 40px;
}
.articles-list:before,
.stories-list:before {
  content: '';
  display: block;
}
.articles-list:after,
.stories-list:after {
  content: '';
  display: table;
  clear: both;
}
.articles-list .story,
.stories-list .story {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  padding: 30px 20px 30px 24px;
  background-color: #FFFFFF;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 30px;
}
.articles-list .story:hover,
.stories-list .story:hover {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}
.articles-list .views-field-title a:hover,
.stories-list .views-field-title a:hover,
.articles-list .views-field-field-author a:hover,
.stories-list .views-field-field-author a:hover {
  text-decoration: none;
}
.articles-list .views-field-title,
.stories-list .views-field-title {
  margin-bottom: 20px;
}
.articles-list .views-field-field-author,
.stories-list .views-field-field-author {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  font-size: 18px;
  display: inline-block;
  margin-right: 6px;
}
.articles-list .views-field-field-author a:before,
.stories-list .views-field-field-author a:before {
  font-family: "fontello";
  text-decoration: none !important;
  content: '\e80b';
  margin-right: 10px;
}
.articles-list .views-field-created,
.stories-list .views-field-created {
  display: inline-block;
  font-size: 18px;
}
.articles-list .views-field-created:before,
.stories-list .views-field-created:before {
  content: "| ";
}
.articles-list .views-field-field-tags,
.stories-list .views-field-field-tags {
  font-size: 12px;
  font-weight: 700;
}
.articles-list .views-field-field-tags,
.stories-list .views-field-field-tags,
.articles-list .views-field-field-tags a,
.stories-list .views-field-field-tags a {
  color: #4d536e;
}
.stories-more {
  margin: 60px auto 0;
  text-align: center;
  clear: both;
}
.stories-more a.btn {
  font-size: 22px;
  line-height: 42px;
}
.paragraph--type--three-column-text .paragraph-image {
  float: right;
}
.paragraph--type--three-column-text .field--name-field-heading {
  margin-bottom: 20px;
}
.paragraph--type--three-column-text .text-columns .field--item h3 {
  font-size: 28px;
  margin-bottom: 30px;
}
.paragraph--type--get-involved .field--name-field-heading {
  margin: 17px 0 48px;
}
.paragraph--type--get-involved .social-icons-block {
  text-align: center;
}
.paragraph--type--get-involved .social-icons-block a {
  -webkit-border-radius: 56px;
  -moz-border-radius: 56px;
  border-radius: 56px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 32px;
  background-color: #855096;
  color: #e7e9ec;
  margin: 7px;
}
.paragraph--type--get-involved .social-icons-block a:last-child {
  margin-right: 0;
}
.paragraph--type--get-involved .social-icons-block a:hover,
.paragraph--type--get-involved .social-icons-block a:active,
.paragraph--type--get-involved .social-icons-block a:focus {
  background-color: #685381;
  text-decoration: none;
}
.paragraph--type--get-involved .social-icons-block a:before {
  font-family: "fontello";
  text-decoration: none !important;
}
.paragraph--type--get-involved .social-icons-block a.forum:before {
  content: '\e807';
}
.paragraph--type--get-involved .social-icons-block a.tw:before {
  content: '\e816';
}
.paragraph--type--get-involved .social-icons-block a.ig:before {
  content: '\e808';
}
.paragraph--type--get-involved .social-icons-block a.fb:before {
  content: '\e806';
}
.paragraph--type--get-involved .social-icons-block a span {
  text-indent: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  display: block;
}
.paragraph--type--social-excerpt {
  zoom: 1;
  clear: both;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #FFFFFF;
  margin-bottom: 30px;
  padding: 40px 40px 28px 0;
}
.paragraph--type--social-excerpt:before {
  content: '';
  display: block;
}
.paragraph--type--social-excerpt:after {
  content: '';
  display: table;
  clear: both;
}
.paragraph--type--social-excerpt .icon {
  text-align: center;
  margin-top: 10px;
}
.paragraph--type--social-excerpt .icon img {
  width: auto;
  max-height: 60px;
}
.paragraph--type--social-excerpt .icon h3 {
  font-size: 16px;
  margin: 7px 0;
}
.paragraph--type--social-excerpt h4 {
  font-size: 24px;
  line-height: 30px;
  margin: 5px 0 14px;
}
.paragraph--type--social-excerpt.teal {
  background-color: #FFFFFF;
}
.paragraph--type--social-excerpt.teal,
.paragraph--type--social-excerpt.teal p {
  color: #4d536e;
}
.paragraph--type--social-excerpt.teal h1,
.paragraph--type--social-excerpt.teal h2,
.paragraph--type--social-excerpt.teal h3,
.paragraph--type--social-excerpt.teal h4,
.paragraph--type--social-excerpt.teal a {
  color: #85cad5;
}
.paragraph--type--social-excerpt.teal a,
.paragraph--type--social-excerpt.teal a:active,
.paragraph--type--social-excerpt.teal a:focus,
.paragraph--type--social-excerpt.teal a:visited {
  color: #85cad5;
}
.paragraph--type--social-excerpt.teal a:hover {
  color: #91cfd9;
}
.paragraph--type--social-excerpt.teal .field--type-link a {
  background-color: #85cad5;
}
.header-mobile {
  -moz-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header-mobile.active {
  -webkit-box-shadow: 0 -5px 13px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 -5px 13px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 -5px 13px 10px rgba(0, 0, 0, 0.25);
}
.region-mobile-branding {
  background-color: #FFFFFF;
}
.region-mobile-branding > a {
  height: 48px;
  width: 40px;
  padding: 14px 10px;
  text-align: center;
}
.region-mobile-branding > a:hover,
.region-mobile-branding > a:active,
.region-mobile-branding > a:visited {
  text-decoration: none;
}
.region-mobile-branding > a.menu {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  float: left;
}
.region-mobile-branding > a.menu span {
  -moz-transition: background-color linear 300ms;
  -webkit-transition: background-color linear 300ms;
  -o-transition: background-color linear 300ms;
  transition: background-color linear 300ms;
  background-color: #9195a8;
  height: 5px;
  display: block;
  margin-bottom: 2.5px;
}
.region-mobile-branding > a.menu:hover span,
.region-mobile-branding > a.menu:active span {
  background-color: #4d536e;
}
.region-mobile-branding > a.search {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-transition: color linear 300ms;
  -webkit-transition: color linear 300ms;
  -o-transition: color linear 300ms;
  transition: color linear 300ms;
  float: right;
  color: #9195a8;
  font-size: 21px;
}
.region-mobile-branding > a.search:hover,
.region-mobile-branding > a.search:active {
  color: #4d536e;
}
.region-mobile-branding > a.search .icon-search:before {
  margin: 0;
}
.region-mobile-branding #block-sitebranding-2 {
  max-width: 200px;
  margin: 0 auto 0;
  padding: 14px 0 8.5px;
}
.region-mobile-header {
  -moz-transition: height 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: height 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: height 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-box-shadow: 0 18px 6.5px -13px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 18px 6.5px -13px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 18px 6.5px -13px rgba(0, 0, 0, 0.1) inset;
  background-color: #FFFFFF;
  height: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.region-mobile-header nav,
.region-mobile-header #block-googlesearchform-2 {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.region-mobile-header nav {
  -moz-transition: opacity 300ms linear;
  -webkit-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
  opacity: 0;
  max-width: 100%;
  display: block;
  z-index: 1;
}
.region-mobile-header nav.active {
  opacity: 1;
  z-index: 3;
}
.region-mobile-header nav ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.region-mobile-header nav li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  color: #6c728c;
  font-size: 18px;
  line-height: 40px;
}
.region-mobile-header nav li.active-trail > a {
  color: #4d536e;
  border-color: #4d536e;
}
.region-mobile-header nav a {
  color: #6c728c;
  border-bottom: 1px solid transparent;
}
.region-mobile-header nav a.phone {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  line-height: 20px;
}
.region-mobile-header nav a.phone i.icon-down-dir {
  display: none;
}
.region-mobile-header nav a.phone,
.region-mobile-header nav a.phone:active,
.region-mobile-header nav a.phone:hover,
.region-mobile-header nav a.phone:focus,
.region-mobile-header nav a.phone:visited {
  color: #FFFFFF;
}
.region-mobile-header nav a:hover,
.region-mobile-header nav a:active,
.region-mobile-header nav a:visited {
  text-decoration: none;
}
.region-mobile-header nav a:active,
.region-mobile-header nav a:focus,
.region-mobile-header nav a.is-active,
.region-mobile-header nav a.active {
  color: #4d536e;
  border-color: #4d536e;
}
.region-mobile-header #block-googlesearchform-2 {
  -moz-transition: opacity 300ms linear;
  -webkit-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
  padding-top: 23px;
  padding-bottom: 23px;
  opacity: 0;
  z-index: 1;
}
.region-mobile-header #block-googlesearchform-2.active {
  opacity: 1;
  z-index: 3;
}
.region-mobile-header .search-block-form input {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 7px 14px 4px;
  line-height: 12px;
  border: 1px solid #c8cad4;
  width: 100%;
}
.region-mobile-header .search-block-form button {
  display: none;
}
.region-mobile-header .search-block-form button[type="submit"]:before {
  font-family: "fontello";
  text-decoration: none !important;
  content: '\e817';
}
.mobile-post-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 40;
}
.page-content {
  background-color: #e7e9ec;
}
.column-content .main-content-node > .paragraph {
  padding: 20px 0;
}
.column-content .main-content-node > .paragraph:first-child {
  padding-top: 60px;
}
.column-content .main-content-node > .paragraph:last-child {
  padding-bottom: 60px;
}
.column-content .main-content-node .paragraph--type--quote-blocks {
  padding: 10px 0 0;
}
.column-content .main-content-node .paragraph--type--stories-list,
.column-content .main-content-node .paragraph--type--stories-list:first-child {
  padding: 20px 0 60px;
}
.column-content .main-content-node .paragraph--type--body-text {
  max-width: 790px;
  margin: 0 auto;
}
.column-content .story-content {
  max-width: 790px;
  margin: 0 auto 40px;
}
.column-content .story-content .field--type-image {
  text-align: center;
}
.column-content .story-content img {
  max-width: 100%;
  height: auto;
  margin: 30px auto;
}
.column-content .story-intro,
.column-content .page-intro {
  max-width: 970px;
  margin: 0 auto 0;
  padding: 40px 0 20px;
}
.column-content .story-intro.teal h1,
.column-content .page-intro.teal h1,
.column-content .story-intro.teal h2,
.column-content .page-intro.teal h2,
.column-content .story-intro.teal h3,
.column-content .page-intro.teal h3,
.column-content .story-intro.teal h4,
.column-content .page-intro.teal h4 {
  color: #85cad5;
}
.column-content .story-intro.teal .field--name-field-get-started-button a,
.column-content .page-intro.teal .field--name-field-get-started-button a {
  background-color: #85cad5;
}
.column-content .story-intro.blue h1,
.column-content .page-intro.blue h1,
.column-content .story-intro.blue h2,
.column-content .page-intro.blue h2,
.column-content .story-intro.blue h3,
.column-content .page-intro.blue h3,
.column-content .story-intro.blue h4,
.column-content .page-intro.blue h4 {
  color: #3f92cf;
}
.column-content .story-intro.blue .field--name-field-get-started-button a,
.column-content .page-intro.blue .field--name-field-get-started-button a {
  background-color: #3f92cf;
}
.column-content .story-intro.light-blue h1,
.column-content .page-intro.light-blue h1,
.column-content .story-intro.light-blue h2,
.column-content .page-intro.light-blue h2,
.column-content .story-intro.light-blue h3,
.column-content .page-intro.light-blue h3,
.column-content .story-intro.light-blue h4,
.column-content .page-intro.light-blue h4 {
  color: #82bce6;
}
.column-content .story-intro.light-blue .field--name-field-get-started-button a,
.column-content .page-intro.light-blue .field--name-field-get-started-button a {
  background-color: #82bce6;
}
.column-content .story-intro.green h1,
.column-content .page-intro.green h1,
.column-content .story-intro.green h2,
.column-content .page-intro.green h2,
.column-content .story-intro.green h3,
.column-content .page-intro.green h3,
.column-content .story-intro.green h4,
.column-content .page-intro.green h4 {
  color: #67c4aa;
}
.column-content .story-intro.green .field--name-field-get-started-button a,
.column-content .page-intro.green .field--name-field-get-started-button a {
  background-color: #67c4aa;
}
.column-content .story-intro.light-green h1,
.column-content .page-intro.light-green h1,
.column-content .story-intro.light-green h2,
.column-content .page-intro.light-green h2,
.column-content .story-intro.light-green h3,
.column-content .page-intro.light-green h3,
.column-content .story-intro.light-green h4,
.column-content .page-intro.light-green h4 {
  color: #c0dc91;
}
.column-content .story-intro.light-green .field--name-field-get-started-button a,
.column-content .page-intro.light-green .field--name-field-get-started-button a {
  background-color: #c0dc91;
}
.column-content .story-intro.purple h1,
.column-content .page-intro.purple h1,
.column-content .story-intro.purple h2,
.column-content .page-intro.purple h2,
.column-content .story-intro.purple h3,
.column-content .page-intro.purple h3,
.column-content .story-intro.purple h4,
.column-content .page-intro.purple h4 {
  color: #855096;
}
.column-content .story-intro.purple .field--name-field-get-started-button a,
.column-content .page-intro.purple .field--name-field-get-started-button a {
  background-color: #855096;
}
.column-content .story-intro.light-purple h1,
.column-content .page-intro.light-purple h1,
.column-content .story-intro.light-purple h2,
.column-content .page-intro.light-purple h2,
.column-content .story-intro.light-purple h3,
.column-content .page-intro.light-purple h3,
.column-content .story-intro.light-purple h4,
.column-content .page-intro.light-purple h4 {
  color: #cba1cb;
}
.column-content .story-intro.light-purple .field--name-field-get-started-button a,
.column-content .page-intro.light-purple .field--name-field-get-started-button a {
  background-color: #cba1cb;
}
.column-content .story-intro.pink h1,
.column-content .page-intro.pink h1,
.column-content .story-intro.pink h2,
.column-content .page-intro.pink h2,
.column-content .story-intro.pink h3,
.column-content .page-intro.pink h3,
.column-content .story-intro.pink h4,
.column-content .page-intro.pink h4 {
  color: #f46f94;
}
.column-content .story-intro.pink .field--name-field-get-started-button a,
.column-content .page-intro.pink .field--name-field-get-started-button a {
  background-color: #f46f94;
}
.column-content .story-intro.orange h1,
.column-content .page-intro.orange h1,
.column-content .story-intro.orange h2,
.column-content .page-intro.orange h2,
.column-content .story-intro.orange h3,
.column-content .page-intro.orange h3,
.column-content .story-intro.orange h4,
.column-content .page-intro.orange h4 {
  color: #fbb475;
}
.column-content .story-intro.orange .field--name-field-get-started-button a,
.column-content .page-intro.orange .field--name-field-get-started-button a {
  background-color: #fbb475;
}
.column-content .page-intro {
  margin-bottom: -60px;
}
.column-content.form-column .page-intro {
  margin-bottom: 0;
}
.column-content .story-intro h1 {
  font-size: 44px;
  line-height: 54px;
}
.column-content .paragraph--type--get-involved .container {
  width: 100%;
  padding: 0;
  margin: 0;
}
.column-content img.align-right {
  margin-left: 20px !important;
  margin-bottom: 20px !important;
}
.column-content img.align-left {
  margin-right: 20px !important;
  margin-bottom: 20px !important;
}
.content-header {
  padding: 50px 0 20px;
}
.content-header.landing-header {
  padding-bottom: 50px;
}
.content-header.article-header {
  padding-bottom: 50px;
}
.content-header.article-header .back-link {
  display: block;
  margin-top: -20px;
  margin-bottom: 20px;
}
.content-header.teal {
  background-color: #85cad5;
  color: #FFFFFF;
}
.content-header.teal h1,
.content-header.teal h2,
.content-header.teal h3,
.content-header.teal h5,
.content-header.teal h6,
.content-header.teal ol,
.content-header.teal ul,
.content-header.teal li,
.content-header.teal i,
.content-header.teal td {
  color: #FFFFFF;
}
.content-header.teal h4,
.content-header.teal p {
  color: #ffffff;
}
.content-header.teal h3 a,
.content-header.teal h4 a,
.content-header.teal h3 a:visited,
.content-header.teal h4 a:visited {
  font-weight: 400;
  color: #85cad5;
}
.content-header.teal h3 strong,
.content-header.teal h4 strong,
.content-header.teal h3 b,
.content-header.teal h4 b {
  color: #FFFFFF;
}
.content-header.teal h1,
.content-header.teal h2,
.content-header.teal h3 {
  color: #FFFFFF;
}
.content-header.teal h1 em,
.content-header.teal h2 em,
.content-header.teal h3 em,
.content-header.teal h1 i,
.content-header.teal h2 i,
.content-header.teal h3 i {
  color: #4bc8f5;
}
.content-header.teal h1 strong,
.content-header.teal h2 strong,
.content-header.teal h3 strong {
  color: #4bc8f5;
}
.content-header.teal a,
.content-header.teal a:visited {
  color: #FFFFFF;
}
.content-header.teal a:hover {
  color: #FFFFFF;
}
.content-header.teal .breadcrumbs li,
.content-header.teal .breadcrumbs ol,
.content-header.teal .breadcrumbs a {
  color: white;
}
.content-header .breadcrumbs {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  margin-top: -30px;
}
.content-header .breadcrumbs li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  display: inline;
  color: white;
  font-size: 14px;
  line-height: 15px;
}
.content-header .breadcrumbs li:after {
  content: "/";
  margin: 0 5px;
}
.content-header .breadcrumbs li:last-child:after {
  content: "";
  margin: 0;
}
.content-header h1 {
  margin: 0 0 30px;
  font-size: 42px;
  line-height: 50px;
}
.content-header .title-only h1,
.content-header .title-only h2 {
  margin: 0 0 0;
}
.content-header h5 {
  padding-right: 20%;
}
.content-header #block-co-breadcrumbs + #block-pagetitle {
  margin-top: 0;
}
.content-header #block-pagetitle {
  margin-top: 20px;
}
.content-header .container {
  display: table;
  padding: 0;
}
.content-header .row {
  display: table-row;
}
.content-header .col-sm-3,
.content-header .col-sm-9 {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.region-sidebar-first {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
  background-color: #FFFFFF;
  padding: 20px;
  position: relative;
  margin-top: -100px;
}
.region-sidebar-first h1,
.region-sidebar-first h2 {
  font-size: 24px;
  line-height: 30px;
  margin: 15px 0 10px;
}
.region-sidebar-first:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 100%;
  background-color: #8c5b9c;
}
.region-sidebar-first li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.region-sidebar-first li a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  zoom: 1;
  clear: both;
  display: block;
  line-height: 30px;
  font-size: 22px;
  padding: 12px 0 7px;
  border-bottom: 1px solid #c2c2c2;
  cursor: pointer;
  color: #4d536e;
}
.region-sidebar-first li a:before {
  content: '';
  display: block;
}
.region-sidebar-first li a:after {
  content: '';
  display: table;
  clear: both;
}
.region-sidebar-first li a:hover {
  text-decoration: none !important;
  color: #855096;
}
.region-sidebar-first li a:hover i {
  color: #855096;
}
.region-sidebar-first li a:after {
  content: '\e80d';
  font-family: "fontello";
  text-decoration: none !important;
  float: right;
  margin: -1px 0 0 12px;
  font-size: 16px;
}
.region-sidebar-first li:last-child a {
  border-bottom: 0;
}
.region-sidebar-first ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.region-sidebar-first ul ul {
  padding: 10px 0;
  border-bottom: 1px solid #c2c2c2;
}
.region-sidebar-first ul ul ul {
  padding-left: 15px;
}
.region-sidebar-first ul ul ul li a {
  line-height: 18px;
  font-size: 14px;
  padding: 4px 0 5px;
}
.region-sidebar-first ul ul ul li a:after {
  content: '';
}
.region-sidebar-first ul ul li a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  zoom: 1;
  clear: both;
  display: block;
  line-height: 20px;
  font-size: 16px;
  padding: 6px 0 7px;
  border-bottom: 0;
  cursor: pointer;
  color: #4d536e;
}
.region-sidebar-first ul ul li a:before {
  content: '';
  display: block;
}
.region-sidebar-first ul ul li a:after {
  content: '';
  display: table;
  clear: both;
}
.region-sidebar-first ul ul li a:hover {
  text-decoration: underline;
  color: #855096;
}
.region-sidebar-first ul ul li a:hover i {
  color: #855096;
}
.region-sidebar-first ul ul li a:after {
  content: '\e80d';
  font-family: "fontello";
  text-decoration: none !important;
  float: right;
  margin: -1px 0 0 12px;
  font-size: 16px;
}
.region-sidebar-first ul ul li:last-child a {
  border-bottom: 0;
}
.paragraph--type--faqs-block {
  padding: 20px 0;
}
.paragraph--type--faqs-block .paragraph--type--faq {
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  padding: 0;
  border-bottom: 1px solid #c2c2c2;
}
.paragraph--type--faqs-block .paragraph--type--faq:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.faqs-wrapper {
  zoom: 1;
  clear: both;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: #FFFFFF;
}
.faqs-wrapper:before {
  content: '';
  display: block;
}
.faqs-wrapper:after {
  content: '';
  display: table;
  clear: both;
}
.faqs-wrapper .answer {
  -moz-transition: height 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: height 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: height 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 0;
  overflow: hidden;
}
.faqs-wrapper .answer .answer-inner {
  padding: 7px 100px 25px 30px;
}
.faqs-wrapper .question {
  cursor: pointer;
  padding: 20px 30px 15px;
}
.faqs-wrapper .question h3 {
  font-family: 'fira_sanslight', sans-serif;
  font-weight: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  margin: 0;
  display: block;
  color: #4d536e;
}
.faqs-wrapper .question i {
  -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  float: right;
  color: #4d536e;
}
.faqs-wrapper .active .question i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #8b8b8b;
}
.paragraph--type--quote-blocks .paragraph--type--quote {
  width: auto;
  display: block;
}
.paragraph--type--quote-blocks.columns-1 .paragraph--type--quote {
  float: none;
  clear: both;
}
.paragraph--type--quote-blocks.columns-2 .paragraph--type--quote,
.paragraph--type--quote-blocks.columns-3 .paragraph--type--quote,
.paragraph--type--quote-blocks.columns-4 .paragraph--type--quote {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0 20px;
  float: left;
}
.paragraph--type--quote-blocks.columns-2 .paragraph--type--quote {
  width: 50%;
}
.paragraph--type--quote-blocks.columns-2 .paragraph--type--quote:nth-child(odd) {
  clear: left;
}
.paragraph--type--quote-blocks.columns-2 .paragraph--type--quote:nth-child(even) {
  clear: right;
}
.paragraph--type--quote-blocks.columns-3 .paragraph--type--quote {
  width: 33.333333%;
}
.paragraph--type--quote-blocks.columns-3 .paragraph--type--quote:nth-child(3n) {
  clear: right;
}
.paragraph--type--quote-blocks.columns-3 .paragraph--type--quote:nth-child(3n+1) {
  clear: left;
}
.paragraph--type--quote-blocks.columns-4 .paragraph--type--quote {
  width: 25%;
}
.paragraph--type--quote-blocks.columns-4 .paragraph--type--quote:nth-child(4n) {
  clear: right;
}
.paragraph--type--quote-blocks.columns-4 .paragraph--type--quote:nth-child(4n+1) {
  clear: left;
}
.paragraph--type--quote.teal h1,
.paragraph--type--quote.teal h2,
.paragraph--type--quote.teal h3,
.paragraph--type--quote.teal h4 {
  color: #85cad5;
}
.paragraph--type--quote.teal .field--name-field-get-started-button a {
  background-color: #85cad5;
}
.paragraph--type--quote.blue h1,
.paragraph--type--quote.blue h2,
.paragraph--type--quote.blue h3,
.paragraph--type--quote.blue h4 {
  color: #3f92cf;
}
.paragraph--type--quote.blue .field--name-field-get-started-button a {
  background-color: #3f92cf;
}
.paragraph--type--quote.light-blue h1,
.paragraph--type--quote.light-blue h2,
.paragraph--type--quote.light-blue h3,
.paragraph--type--quote.light-blue h4 {
  color: #82bce6;
}
.paragraph--type--quote.light-blue .field--name-field-get-started-button a {
  background-color: #82bce6;
}
.paragraph--type--quote.green h1,
.paragraph--type--quote.green h2,
.paragraph--type--quote.green h3,
.paragraph--type--quote.green h4 {
  color: #67c4aa;
}
.paragraph--type--quote.green .field--name-field-get-started-button a {
  background-color: #67c4aa;
}
.paragraph--type--quote.light-green h1,
.paragraph--type--quote.light-green h2,
.paragraph--type--quote.light-green h3,
.paragraph--type--quote.light-green h4 {
  color: #c0dc91;
}
.paragraph--type--quote.light-green .field--name-field-get-started-button a {
  background-color: #c0dc91;
}
.paragraph--type--quote.purple h1,
.paragraph--type--quote.purple h2,
.paragraph--type--quote.purple h3,
.paragraph--type--quote.purple h4 {
  color: #855096;
}
.paragraph--type--quote.purple .field--name-field-get-started-button a {
  background-color: #855096;
}
.paragraph--type--quote.light-purple h1,
.paragraph--type--quote.light-purple h2,
.paragraph--type--quote.light-purple h3,
.paragraph--type--quote.light-purple h4 {
  color: #cba1cb;
}
.paragraph--type--quote.light-purple .field--name-field-get-started-button a {
  background-color: #cba1cb;
}
.paragraph--type--quote.pink h1,
.paragraph--type--quote.pink h2,
.paragraph--type--quote.pink h3,
.paragraph--type--quote.pink h4 {
  color: #f46f94;
}
.paragraph--type--quote.pink .field--name-field-get-started-button a {
  background-color: #f46f94;
}
.paragraph--type--quote.orange h1,
.paragraph--type--quote.orange h2,
.paragraph--type--quote.orange h3,
.paragraph--type--quote.orange h4 {
  color: #fbb475;
}
.paragraph--type--quote.orange .field--name-field-get-started-button a {
  background-color: #fbb475;
}
.paragraph--type--quote .field--name-field-quote {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
}
.paragraph--type--quote .field--name-field-author {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 40px;
  margin-bottom: 0;
  margin-top: 0;
}
.paragraph--type--quote .field--name-field-author:before {
  position: relative;
  top: 4px;
  font-family: "fontello";
  text-decoration: none !important;
  content: '\e80b';
  margin-right: 10px;
  font-size: 28px;
}
.paragraph--type--quote.teal,
.paragraph--type--quote.teal p {
  color: #4d536e;
}
.paragraph--type--quote.teal h1,
.paragraph--type--quote.teal h2,
.paragraph--type--quote.teal h3,
.paragraph--type--quote.teal h4,
.paragraph--type--quote.teal .field--name-field-quote {
  color: #85cad5;
}
.quote-inner,
.block-inner {
  zoom: 1;
  clear: both;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: #FFFFFF;
  padding: 30px;
  margin-bottom: 30px;
}
.quote-inner:before,
.block-inner:before {
  content: '';
  display: block;
}
.quote-inner:after,
.block-inner:after {
  content: '';
  display: table;
  clear: both;
}
.paragraph--type--coloured-blocks .paragraph--type--coloured-block {
  display: block;
  float: none;
}
.paragraph--type--coloured-blocks.columns-1 .paragraph--type--coloured-block {
  width: auto;
  clear: both;
}
.paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block,
.paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block,
.paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0 20px;
  float: left;
}
.paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block {
  width: 50%;
}
.paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block:nth-child(odd) {
  clear: left;
}
.paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block:nth-child(even) {
  clear: right;
}
.paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block {
  width: 33.333333%;
}
.paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block:nth-child(3n) {
  clear: right;
}
.paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block:nth-child(3n+1) {
  clear: left;
}
.paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block {
  width: 25%;
}
.paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block:nth-child(4n) {
  clear: right;
}
.paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block:nth-child(4n+1) {
  clear: left;
}
.paragraph--type--coloured-block.teal h1,
.paragraph--type--coloured-block.teal h2,
.paragraph--type--coloured-block.teal h3,
.paragraph--type--coloured-block.teal h4 {
  color: #85cad5;
}
.paragraph--type--coloured-block.teal .field--name-field-get-started-button a {
  background-color: #85cad5;
}
.paragraph--type--coloured-block.blue h1,
.paragraph--type--coloured-block.blue h2,
.paragraph--type--coloured-block.blue h3,
.paragraph--type--coloured-block.blue h4 {
  color: #3f92cf;
}
.paragraph--type--coloured-block.blue .field--name-field-get-started-button a {
  background-color: #3f92cf;
}
.paragraph--type--coloured-block.light-blue h1,
.paragraph--type--coloured-block.light-blue h2,
.paragraph--type--coloured-block.light-blue h3,
.paragraph--type--coloured-block.light-blue h4 {
  color: #82bce6;
}
.paragraph--type--coloured-block.light-blue .field--name-field-get-started-button a {
  background-color: #82bce6;
}
.paragraph--type--coloured-block.green h1,
.paragraph--type--coloured-block.green h2,
.paragraph--type--coloured-block.green h3,
.paragraph--type--coloured-block.green h4 {
  color: #67c4aa;
}
.paragraph--type--coloured-block.green .field--name-field-get-started-button a {
  background-color: #67c4aa;
}
.paragraph--type--coloured-block.light-green h1,
.paragraph--type--coloured-block.light-green h2,
.paragraph--type--coloured-block.light-green h3,
.paragraph--type--coloured-block.light-green h4 {
  color: #c0dc91;
}
.paragraph--type--coloured-block.light-green .field--name-field-get-started-button a {
  background-color: #c0dc91;
}
.paragraph--type--coloured-block.purple h1,
.paragraph--type--coloured-block.purple h2,
.paragraph--type--coloured-block.purple h3,
.paragraph--type--coloured-block.purple h4 {
  color: #855096;
}
.paragraph--type--coloured-block.purple .field--name-field-get-started-button a {
  background-color: #855096;
}
.paragraph--type--coloured-block.light-purple h1,
.paragraph--type--coloured-block.light-purple h2,
.paragraph--type--coloured-block.light-purple h3,
.paragraph--type--coloured-block.light-purple h4 {
  color: #cba1cb;
}
.paragraph--type--coloured-block.light-purple .field--name-field-get-started-button a {
  background-color: #cba1cb;
}
.paragraph--type--coloured-block.pink h1,
.paragraph--type--coloured-block.pink h2,
.paragraph--type--coloured-block.pink h3,
.paragraph--type--coloured-block.pink h4 {
  color: #f46f94;
}
.paragraph--type--coloured-block.pink .field--name-field-get-started-button a {
  background-color: #f46f94;
}
.paragraph--type--coloured-block.orange h1,
.paragraph--type--coloured-block.orange h2,
.paragraph--type--coloured-block.orange h3,
.paragraph--type--coloured-block.orange h4 {
  color: #fbb475;
}
.paragraph--type--coloured-block.orange .field--name-field-get-started-button a {
  background-color: #fbb475;
}
.paragraph--type--coloured-block .block-inner {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
  height: 300px;
  padding-bottom: 80px;
}
.paragraph--type--coloured-block .block-links {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.paragraph--type--coloured-block .field--name-field-body h1:first-child,
.paragraph--type--coloured-block .field--name-field-body h2:first-child,
.paragraph--type--coloured-block .field--name-field-body h3:first-child,
.paragraph--type--coloured-block .field--name-field-body h4:first-child,
.paragraph--type--coloured-block .field--name-field-body h5:first-child {
  margin-top: 0;
}
.paragraph--type--coloured-block .field--name-field-body h3,
.paragraph--type--coloured-block .field--name-field-body h4,
.paragraph--type--coloured-block .field--name-field-body h5 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}
.paragraph--type--coloured-block .field--name-field-learn-more a,
.paragraph--type--coloured-block .field--name-field-learn-more a:visited {
  color: #4d536e;
}
.paragraph--type--coloured-block .field--type-link {
  display: inline-block;
  margin-right: 3px;
}
.paragraph--type--coloured-block .field--type-link a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
}
.paragraph--type--coloured-block .field--type-link a,
.paragraph--type--coloured-block .field--type-link a:visited {
  color: #FFFFFF;
}
.paragraph--type--coloured-block .field--type-link a,
.paragraph--type--coloured-block .field--type-link a:active,
.paragraph--type--coloured-block .field--type-link a:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.paragraph--type--coloured-block .field--type-link a:hover {
  text-decoration: none;
  background-color: #685381;
}
.paragraph--type--coloured-block .field--name-field-learn-more a {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
  background-color: #eff0f2;
}
.paragraph--type--coloured-block .field--name-field-learn-more a,
.paragraph--type--coloured-block .field--name-field-learn-more a:visited {
  color: #FFFFFF;
}
.paragraph--type--coloured-block .field--name-field-learn-more a,
.paragraph--type--coloured-block .field--name-field-learn-more a:active,
.paragraph--type--coloured-block .field--name-field-learn-more a:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.paragraph--type--coloured-block .field--name-field-learn-more a:hover {
  text-decoration: none;
  background-color: #685381;
}
.paragraph--type--coloured-block .field--name-field-learn-more a,
.paragraph--type--coloured-block .field--name-field-learn-more a:visited {
  color: #4d536e;
}
.paragraph--type--coloured-block .field--name-field-learn-more a,
.paragraph--type--coloured-block .field--name-field-learn-more a:active,
.paragraph--type--coloured-block .field--name-field-learn-more a:hover {
  text-decoration: none;
  color: #4d536e;
}
.paragraph--type--coloured-block .field--name-field-learn-more a:hover {
  background-color: #dee0e5;
}
.paragraph--type--coloured-block .field--name-field-learn-more a,
.paragraph--type--coloured-block .field--type-link a {
  font-size: 18px;
  padding: 5px 12px;
  height: 40px;
}
.paragraph--type--coloured-block.teal,
.paragraph--type--coloured-block.teal p {
  color: #4d536e;
}
.paragraph--type--coloured-block.teal h1,
.paragraph--type--coloured-block.teal h2,
.paragraph--type--coloured-block.teal h3,
.paragraph--type--coloured-block.teal h4 {
  color: #85cad5;
}
.paragraph--type--coloured-block.teal .field--name-field-get-started-button a,
.paragraph--type--coloured-block.teal .field--name-field-get-started-button a:visited {
  background-color: #85cad5;
  color: #FFFFFF;
}
.paragraph--type--body-text .field--name-field-body div > div {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  margin-bottom: 30px;
}
.paragraph--type--body-text .field--name-field-body div > div > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article-author {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  font-size: 18px;
}
.article-author:before {
  font-family: "fontello";
  text-decoration: none !important;
  content: '\e80b';
  margin-right: 5px;
}
.authored {
  clerar: both;
}
.authored .article-author {
  display: inline-block;
}
.authored .authored-on {
  display: inline-block;
  font-size: 18px;
  color: #4d536e;
}
.authored .authored-on:before {
  content: " on ";
  color: rgba(0, 0, 0, 0.5);
}
.field--name-field-tags {
  margin: 5px 0 20px;
}
.field--name-field-tags div {
  display: inline;
  font-weight: 400;
}
.field--name-field-tags .field__items .field--item:after {
  content: ",";
}
.field--name-field-tags .field__items .field--item:last-child:after {
  content: "";
}
.field--name-field-tags a {
  font-weight: 700;
}
.button-filter {
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.button-filter li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin: 0 30px;
}
.button-filter li:first-child {
  margin-left: 0;
}
.button-filter li:last-child {
  margin-right: 0;
}
.button-filter a {
  padding-left: 20px;
  position: relative;
  font-size: 24px;
}
.button-filter a:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  height: 10px;
  width: 10px;
  background-color: #855096;
}
.button-filter a,
.button-filter a:visited {
  color: #4d536e;
}
.button-filter a.active {
  font-weight: 700;
}
.page-articles-list {
  padding-top: 85px;
  position: relative;
}
.page-articles-list .views-exposed-form {
  background-color: #91cfd9;
  padding: 25px 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.page-articles-list #block-co-content .contextual-region {
  position: static;
}
.page-content .user-container {
  padding: 40px 0;
}
.page-content .user-container .js-form-type-item h4 {
  display: block;
  clear: both;
  color: #4d536e;
  margin: 0;
  text-align: left;
  padding: 0;
  font-size: 20px;
}
.page-content form input[type="submit"] {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  -moz-transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  height: 50px;
  padding: 10px 20px;
  background-color: #855096;
  display: inline-block;
  border: 0;
}
.page-content form input[type="submit"],
.page-content form input[type="submit"]:visited {
  color: #FFFFFF;
}
.page-content form input[type="submit"],
.page-content form input[type="submit"]:active,
.page-content form input[type="submit"]:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.page-content form input[type="submit"]:hover {
  text-decoration: none;
  background-color: #685381;
}
.search-page-form {
  zoom: 1;
  clear: both;
  display: block;
  padding: 40px 0 30px;
  border-bottom: 1px solid #a8aeb2;
  margin-bottom: 40px;
}
.search-page-form:before {
  content: '';
  display: block;
}
.search-page-form:after {
  content: '';
  display: table;
  clear: both;
}
.search-page-form label {
  display: block;
  margin-bottom: 5px;
}
.search-page-form input {
  border: 2px solid #E0E0E0;
  height: 51px;
  float: left;
  font-size: 20px;
  padding: 10px 5px;
  margin-bottom: 10px;
}
.search-page-form input[type="submit"] {
  margin-left: 10px;
  clear: right;
}
.search-page-form a.search-help-link {
  margin-top: 10px;
  display: block;
  clear: both;
  font-weight: 700;
}
.item-list-search ol,
.item-list-search ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.item-list-search li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}
.item-list-search h3 {
  margin: 0 0 5px;
  color: #855096;
  font-size: 20px;
  line-height: 24px;
}
.item-list-search h3 a {
  color: #855096;
}
.sign-in-section {
  padding: 50px 0 110px;
  background-color: #85cad5;
}
.sign-in-section .sign-in-intro {
  margin-bottom: 40px;
}
.sign-in-section .sign-in-intro h2:first-child {
  margin-bottom: 20px;
}
.sign-in-section .sign-in-intro,
.sign-in-section .sign-in-intro p,
.sign-in-section .sign-in-intro a {
  font-size: 24px;
  line-height: 24px;
}
.sign-in-section .sign-in-intro a {
  font-weight: 700;
  display: inline-block;
}
.sign-in-section .sign-in-intro.teal {
  color: #FFFFFF;
}
.sign-in-section .sign-in-intro.teal h1,
.sign-in-section .sign-in-intro.teal h2,
.sign-in-section .sign-in-intro.teal h3,
.sign-in-section .sign-in-intro.teal h5,
.sign-in-section .sign-in-intro.teal h6,
.sign-in-section .sign-in-intro.teal ol,
.sign-in-section .sign-in-intro.teal ul,
.sign-in-section .sign-in-intro.teal li,
.sign-in-section .sign-in-intro.teal i,
.sign-in-section .sign-in-intro.teal td {
  color: #FFFFFF;
}
.sign-in-section .sign-in-intro.teal h4,
.sign-in-section .sign-in-intro.teal p {
  color: #ffffff;
}
.sign-in-section .sign-in-intro.teal h3 a,
.sign-in-section .sign-in-intro.teal h4 a,
.sign-in-section .sign-in-intro.teal h3 a:visited,
.sign-in-section .sign-in-intro.teal h4 a:visited {
  font-weight: 400;
  color: #85cad5;
}
.sign-in-section .sign-in-intro.teal h3 strong,
.sign-in-section .sign-in-intro.teal h4 strong,
.sign-in-section .sign-in-intro.teal h3 b,
.sign-in-section .sign-in-intro.teal h4 b {
  color: #FFFFFF;
}
.sign-in-section .sign-in-intro.teal h1,
.sign-in-section .sign-in-intro.teal h2,
.sign-in-section .sign-in-intro.teal h3 {
  color: #FFFFFF;
}
.sign-in-section .sign-in-intro.teal h1 em,
.sign-in-section .sign-in-intro.teal h2 em,
.sign-in-section .sign-in-intro.teal h3 em,
.sign-in-section .sign-in-intro.teal h1 i,
.sign-in-section .sign-in-intro.teal h2 i,
.sign-in-section .sign-in-intro.teal h3 i {
  color: #4bc8f5;
}
.sign-in-section .sign-in-intro.teal h1 strong,
.sign-in-section .sign-in-intro.teal h2 strong,
.sign-in-section .sign-in-intro.teal h3 strong {
  color: #4bc8f5;
}
.sign-in-section .sign-in-intro.teal a,
.sign-in-section .sign-in-intro.teal a:visited {
  color: #FFFFFF;
}
.sign-in-section .sign-in-intro.teal a:hover {
  color: #FFFFFF;
}
.sign-in-section .sign-in-intro.teal a {
  border-bottom: 1px solid #FFFFFF;
}
.sign-in-section .sign-in-intro.teal a,
.sign-in-section .sign-in-intro.teal a:hover,
.sign-in-section .sign-in-intro.teal a:active,
.sign-in-section .sign-in-intro.teal a:focus {
  text-decoration: none;
}
.sign-in-section .get-started-form,
.sign-in-section .sign-in-form {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: #FFFFFF;
}
.sign-in-section .get-started-form {
  position: relative;
  top: 0;
}
.sign-in-section .form-sidebar {
  background-color: #fafbfb;
}
.sign-in-section .form-col-inner,
.sign-in-section .form-sidebar-inner {
  padding: 20px;
}
.sign-in-section .sign-in-form {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  background-color: #FFFFFF;
  margin: 0 auto;
  text-align: left;
  color: #4d536e;
  padding: 8% 10% 7%;
  max-width: 70%;
}
.sign-in-section a.forgot-password {
  float: right;
  color: #4d536e;
  font-weight: 700;
  line-height: 14px;
  margin-top: 20px;
}
.sign-in-section a.forgot-password,
.sign-in-section a.forgot-password:hover,
.sign-in-section a.forgot-password:active,
.sign-in-section a.forgot-password:focus {
  text-decoration: none;
  border-bottom: 1px solid #4d536e;
}
.sign-in-section .form-col,
.sign-in-section .form-sidebar {
  font-size: 16px;
  line-height: 20px;
}
.sign-in-section .form-col h2:first-child {
  margin-bottom: 30px;
}
.sign-in-section .form-col ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.sign-in-section .form-col ul li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  padding-left: 25px;
  position: relative;
  padding-bottom: 10px;
}
.sign-in-section .form-col ul li:before {
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  content: "";
  background-color: #855096;
  position: absolute;
  top: 5px;
  left: 2px;
  width: 10px;
  height: 10px;
}
.sign-in-section .form-sidebar h1,
.sign-in-section .form-sidebar h2,
.sign-in-section .form-sidebar h3 {
  color: #85cad5;
}
.sign-in-section .form-sidebar h3 {
  font-size: 24px;
}
.sign-in-section .form-sidebar .btn,
.sign-in-section .form-sidebar input[type="submit"] {
  background-color: #85cad5;
  padding-top: 8px;
}
.sign-in-section .form-sidebar .btn:hover,
.sign-in-section .form-sidebar input[type="submit"]:hover {
  background-color: #91cfd9;
}
.sign-in-section .form-sidebar input[type="submit"] {
  margin-top: 15px;
}
.sign-in-section .form-sidebar .chat {
  padding: 12px 0 60px;
  border-bottom: 1px solid #dbdde2;
  margin-bottom: 60px;
}
form textarea,
form select,
form input[type="email"],
form input[type="password"],
form input[type="text"] {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border: 1px solid #9195a9;
  display: block;
  width: 100%;
  padding: 10px 10px;
  margin: 10px 0;
}
form textarea.touched:invalid,
form select.touched:invalid,
form input[type="email"].touched:invalid,
form input[type="password"].touched:invalid,
form input[type="text"].touched:invalid {
  border-color: #f26c4f;
  color: #f26c4f;
}
form textarea.invalid,
form select.invalid,
form input[type="email"].invalid,
form input[type="password"].invalid,
form input[type="text"].invalid {
  border-color: #f26c4f;
  color: #f26c4f;
}
form select {
  height: 47px;
}
form label {
  font-weight: 300;
  line-height: 20px;
}
form label.invalid {
  border-color: #f26c4f;
  color: #f26c4f;
}
form label a {
  color: #4d536e;
  font-weight: 700;
}
form label.tc {
  position: relative;
  display: block;
  clear: both;
  padding-left: 23px;
  margin: 20px 0;
}
form label.tc a {
  display: inline-block;
  line-height: 16px;
  border-bottom: 1px solid #4d536e;
}
form label.tc input {
  position: absolute;
  top: -2px;
  left: 0;
}
form .success,
form .error {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 15px;
  text-align: center;
  background-color: #fce2dc;
  color: #f26c4f;
  margin-bottom: 30px;
}
form .error {
  background-color: #fce2dc;
  color: #f26c4f;
}
form .success {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  font-size: 20px;
  padding: 20px;
  background-color: #85cad5;
  color: #FFFFFF;
}
form .msg,
form .description {
  font-size: 11px;
  line-height: 10px;
  margin: 11px 0 15px;
}
form.sms-form .form-group > label {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  margin-bottom: 20px;
}
form.sms-form select,
form.sms-form input[type="email"],
form.sms-form input[type="password"],
form.sms-form input[type="search"],
form.sms-form input[type="number"],
form.sms-form input[type="text"] {
  margin: 0 0 10px;
}
form.sms-form .checkbox-row input {
  margin-right: 15px;
}
form.sms-form .phone-submit {
  zoom: 1;
  clear: both;
  margin-top: 30px;
  margin-bottom: 20px;
}
form.sms-form .phone-submit:before {
  content: '';
  display: block;
}
form.sms-form .phone-submit:after {
  content: '';
  display: table;
  clear: both;
}
form.sms-form .phone-submit label {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  display: block;
  clear: both;
  margin-bottom: 25px;
}
form.sms-form .phone-submit input {
  display: inline-block;
  margin: 0 10px 0 0;
  float: left;
}
form.sms-form .phone-submit input[type="text"] {
  width: 50%;
  height: 50px;
}
form.sms-form .phone-submit input[type="submit"] {
  margin: 0;
}
.paragraph--type--sms-form .content-block {
  zoom: 1;
  clear: both;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: #FFFFFF;
  padding: 40px;
}
.paragraph--type--sms-form .content-block:before {
  content: '';
  display: block;
}
.paragraph--type--sms-form .content-block:after {
  content: '';
  display: table;
  clear: both;
}
.paragraph--type--sms-form .field--name-field-title {
  font-family: 'fira_sansbold', sans-serif;
  font-weight: normal;
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 30px;
  color: #855096;
}
.paragraph--type--sms-form .field--name-field-unsubscribe-link {
  margin-bottom: 20px;
  font-weight: 900;
}
.form-column form {
  zoom: 1;
  clear: both;
  padding-bottom: 40px;
}
.form-column form:before {
  content: '';
  display: block;
}
.form-column form:after {
  content: '';
  display: table;
  clear: both;
}
.form-column form textarea,
.form-column form select,
.form-column form input[type="email"],
.form-column form input[type="password"],
.form-column form input[type="text"] {
  margin: 0 0 20px;
}
.region-fixed-footer {
  zoom: 1;
  clear: both;
  -moz-transition: all linear 300ms;
  -webkit-transition: all linear 300ms;
  -o-transition: all linear 300ms;
  transition: all linear 300ms;
  -moz-transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  transform: translate(0, 100px);
  opacity: 0;
  width: 100%;
  z-index: 20;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #85cad5;
  color: #FFFFFF;
}
.region-fixed-footer:before {
  content: '';
  display: block;
}
.region-fixed-footer:after {
  content: '';
  display: table;
  clear: both;
}
.region-fixed-footer.active {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.region-fixed-footer a.footer-close {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}
.region-fixed-footer a.footer-close i:before {
  margin: 0;
}
.region-fixed-footer div {
  padding: 10px;
  text-align: center;
  font-weight: 300;
  font-size: 22px;
  line-height: 30px;
}
.region-fixed-footer div p {
  position: relative;
  margin: 0;
  display: inline-block;
  top: 3px;
}
.region-fixed-footer div p a.btn {
  position: relative;
  top: -3px;
}
.region-fixed-footer div a.btn {
  margin-left: 20px;
}
.field--type-text-long h1,
.field--type-text-long h2,
.field--type-text-long h3 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.field--type-text-long h1:first-child,
.field--type-text-long h2:first-child,
.field--type-text-long h3:first-child {
  margin-top: 0;
}
@media (min-width: 767px) {
  .mobile-only {
    display: none;
  }
  .card-handle.teal.active,
  .card-handle.teal:hover {
    background-color: #85cad5;
  }
  .card-handle.blue.active,
  .card-handle.blue:hover {
    background-color: #3f92cf;
  }
  .card-handle.light-blue.active,
  .card-handle.light-blue:hover {
    background-color: #82bce6;
  }
  .card-handle.green.active,
  .card-handle.green:hover {
    background-color: #67c4aa;
  }
  .card-handle.light-green.active,
  .card-handle.light-green:hover {
    background-color: #c0dc91;
  }
  .card-handle.purple.active,
  .card-handle.purple:hover {
    background-color: #855096;
  }
  .card-handle.light-purple.active,
  .card-handle.light-purple:hover {
    background-color: #cba1cb;
  }
  .card-handle.pink.active,
  .card-handle.pink:hover {
    background-color: #f46f94;
  }
  .card-handle.orange.active,
  .card-handle.orange:hover {
    background-color: #fbb475;
  }
  .card-handle.active,
  .card-handle:hover,
  .card-handle.active i,
  .card-handle:hover i {
    color: #FFFFFF;
  }
  .section-dd {
    overflow: visible;
    height: 0;
  }
  .region-numbers {
    width: 420px;
  }
  .region-emergency {
    width: 320px;
  }
  .region-emergency,
  .region-numbers {
    -moz-transition: opacity linear 0;
    -webkit-transition: opacity linear 0;
    -o-transition: opacity linear 0;
    transition: opacity linear 0;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
    margin-right: 15px;
  }
  .region-emergency.active,
  .region-numbers.active {
    -moz-transition: opacity linear 400ms;
    -webkit-transition: opacity linear 400ms;
    -o-transition: opacity linear 400ms;
    transition: opacity linear 400ms;
    opacity: 1;
    z-index: 3;
  }
  .region-emergency:before,
  .region-numbers:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: 85px;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #444b63 transparent;
  }
  .region-numbers:before {
    margin-left: 85px;
  }
  .content-header .col-sm-3 img {
    max-width: 278px;
  }
  .sign-in-section .form-sidebar {
    position: absolute;
    top: 0;
    right: -15px;
    height: 100%;
    border-left: 1px solid #dbdde2;
  }
  .sign-in-section .form-col-inner,
  .sign-in-section .form-sidebar-inner {
    padding: 60px 95px 95px;
  }
  .sign-in-section .form-col-inner {
    padding-right: 75px;
  }
  .sign-in-section .form-sidebar-inner {
    padding-left: 75px;
  }
  .paragraph--type--get-involved .social-icons-block {
    float: right;
  }
}
@media (max-width: 767px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-xs-1,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-hidden {
    display: none;
  }
  body {
    padding-top: 48px;
    padding-bottom: 48px;
    font-size: 14px;
    line-height: 20px;
  }
  .container {
    max-width: 100%;
    width: auto;
  }
  h1 {
    font-size: 30px;
    line-height: 30px;
  }
  h1 u {
    display: inline-block;
    text-decoration: none;
    border-bottom: 8px solid #2d46a0;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  h2 + h6 {
    margin-top: -15px;
  }
  h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  h3 + h6 {
    margin-top: -15px;
  }
  h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 12px;
  }
  h5 {
    font-size: 14px;
    line-height: 20px;
  }
  h6 {
    font-size: 24px;
    line-height: 30px;
    font-family: 'fira_sanslight', sans-serif;
    font-weight: normal;
  }
  h6 + h4 {
    margin-top: -10px;
  }
  p {
    margin: 0 0 10px;
  }
  img {
    height: auto;
  }
  blockquote {
    padding: 20px 20px 20px 30px;
  }
  embed,
  iframe,
  object {
    max-width: 100%;
    height: auto;
  }
  .btn {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-family: 'fira_sansbold', sans-serif;
    font-weight: normal;
    -moz-transition: all linear 200ms;
    -webkit-transition: all linear 200ms;
    -o-transition: all linear 200ms;
    transition: all linear 200ms;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    text-align: center;
    line-height: 30px;
    font-size: 24px;
    height: 50px;
    padding: 10px 20px;
    background-color: #855096;
    display: inline-block;
    border: 0;
    line-height: 12px;
    font-size: 13px;
    height: auto;
    padding: 10px 20px 7px;
  }
  .btn,
  .btn:visited {
    color: #FFFFFF;
  }
  .btn,
  .btn:active,
  .btn:hover {
    text-decoration: none;
    color: #FFFFFF;
  }
  .btn:hover {
    text-decoration: none;
    background-color: #685381;
  }
  .lge-btn {
    line-height: 24px;
    font-size: 19px;
    height: 40px;
    padding: 10px 30px;
    min-width: 240px;
  }
  .paragraph {
    padding: 37.5px 0;
  }
  .header-mobile {
    background: #FFFFFF;
    z-index: 20;
  }
  .paragraph--type--home-page-header {
    zoom: 1;
    clear: both;
    padding: 0;
  }
  .paragraph--type--home-page-header:before {
    content: '';
    display: block;
  }
  .paragraph--type--home-page-header:after {
    content: '';
    display: table;
    clear: both;
  }
  .paragraph--type--home-page-header .home-header-main {
    position: relative;
  }
  .paragraph--type--home-page-header .container {
    display: block;
  }
  .paragraph--type--home-page-header .row {
    display: block;
  }
  .paragraph--type--home-page-header .row .home-header-main {
    display: block;
    position: relative;
    padding-top: 140px;
  }
  .paragraph--type--home-page-header .row .home-header-main > div {
    display: block;
    padding: 0;
  }
  .paragraph--type--home-page-header .row .home-header-main > div.paragraph-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    text-align: left;
  }
  .paragraph--type--home-page-header .row .home-header-main > div.paragraph-image img {
    max-width: 128px;
    margin: 0 auto 23px;
    display: block;
    clear: both;
  }
  .paragraph--type--home-page-header .row .home-header-main > div.paragraph-image:after {
    content: "Free drug & alcohol counselling 24/7";
    font-size: 16px;
    line-height: 16px;
    color: #4d536e;
  }
  .paragraph--type--home-page-header .field--name-field-heading h2:first-child {
    margin-top: 32px;
    font-size: 20px;
    line-height: 25px;
  }
  .paragraph--type--home-page-header .links {
    padding: 25px 20px 20px;
  }
  .paragraph--type--home-page-header .links li {
    display: inline-block;
  }
  .paragraph--type--home-page-header .links li.field--link {
    width: 50%;
    float: left;
    margin: 0 0 8px;
  }
  .paragraph--type--home-page-header .links li:first-child {
    margin-left: 0;
  }
  .paragraph--type--home-page-header .links li:last-child {
    margin-right: 0;
  }
  .paragraph--type--home-page-header .links a {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 15px;
    display: block;
    max-width: 100%;
  }
  .paragraph--type--home-page-header .links a:before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    margin-top: -5px;
    height: 10px;
    width: 10px;
    background-color: #855096;
  }
  .paragraph--type--home-page-header .links a,
  .paragraph--type--home-page-header .links a:visited {
    color: #4d536e;
  }
  .footer-section {
    padding: 30px 0;
  }
  .footer-section .btt .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .footer-section .social-links {
    margin-bottom: 20px;
  }
  .row.footer-links {
    font-size: 14px;
    line-height: 30px;
    padding-bottom: 37.5px;
  }
  .row.footer-links a.fb:before,
  .row.footer-links a.forum:before,
  .row.footer-links a.ig:before,
  .row.footer-links a.location:before,
  .row.footer-links a.tel:before,
  .row.footer-links a.tw:before {
    line-height: 24px;
  }
  .region-footer-branding img {
    max-width: 50%;
  }
  .copyright {
    text-align: left;
    font-size: 10px;
    margin-top: 15px;
  }
  #block-footersociallinks {
    font-size: 18px;
    line-height: 30px;
  }
  #block-footersociallinks a {
    letter-spacing: -0.5px;
  }
  .region-mobile-footer {
    zoom: 1;
    clear: both;
    position: relative;
    background-color: #4d536e;
    padding: 12px;
    z-index: 40;
  }
  .region-mobile-footer:before {
    content: '';
    display: block;
  }
  .region-mobile-footer:after {
    content: '';
    display: table;
    clear: both;
  }
  .region-mobile-footer #block-headerbuttons-2 {
    float: right;
    width: 60%;
    text-align: right;
  }
  .region-mobile-footer p {
    margin: 0;
  }
  .region-mobile-footer a.emergency-btn,
  .region-mobile-footer a.get-started {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-family: 'fira_sansbold', sans-serif;
    font-weight: normal;
    -moz-transition: all linear 200ms;
    -webkit-transition: all linear 200ms;
    -o-transition: all linear 200ms;
    transition: all linear 200ms;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    text-align: center;
    line-height: 30px;
    font-size: 24px;
    height: 50px;
    padding: 10px 20px;
    background-color: #855096;
    display: inline-block;
    border: 0;
    line-height: 12px;
    font-size: 13px;
    height: auto;
    padding: 10px 20px 7px;
  }
  .region-mobile-footer a.emergency-btn,
  .region-mobile-footer a.get-started,
  .region-mobile-footer a.emergency-btn:visited,
  .region-mobile-footer a.get-started:visited {
    color: #FFFFFF;
  }
  .region-mobile-footer a.emergency-btn,
  .region-mobile-footer a.get-started,
  .region-mobile-footer a.emergency-btn:active,
  .region-mobile-footer a.get-started:active,
  .region-mobile-footer a.emergency-btn:hover,
  .region-mobile-footer a.get-started:hover {
    text-decoration: none;
    color: #FFFFFF;
  }
  .region-mobile-footer a.emergency-btn:hover,
  .region-mobile-footer a.get-started:hover {
    text-decoration: none;
    background-color: #685381;
  }
  .region-mobile-footer a.sign-in {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-family: 'fira_sansbold', sans-serif;
    font-weight: normal;
    -moz-transition: all linear 200ms;
    -webkit-transition: all linear 200ms;
    -o-transition: all linear 200ms;
    transition: all linear 200ms;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    text-align: center;
    line-height: 30px;
    font-size: 24px;
    height: 50px;
    padding: 10px 20px;
    background-color: #855096;
    display: inline-block;
    border: 0;
    background-color: #eff0f2;
  }
  .region-mobile-footer a.sign-in,
  .region-mobile-footer a.sign-in:visited {
    color: #FFFFFF;
  }
  .region-mobile-footer a.sign-in,
  .region-mobile-footer a.sign-in:active,
  .region-mobile-footer a.sign-in:hover {
    text-decoration: none;
    color: #FFFFFF;
  }
  .region-mobile-footer a.sign-in:hover {
    text-decoration: none;
    background-color: #685381;
  }
  .region-mobile-footer a.sign-in,
  .region-mobile-footer a.sign-in:visited {
    color: #4d536e;
  }
  .region-mobile-footer a.sign-in,
  .region-mobile-footer a.sign-in:active,
  .region-mobile-footer a.sign-in:hover {
    text-decoration: none;
    color: #4d536e;
  }
  .region-mobile-footer a.sign-in:hover {
    background-color: #dee0e5;
  }
  .region-mobile-footer a.emergency-btn,
  .region-mobile-footer a.get-started,
  .region-mobile-footer a.sign-in {
    padding: 10px 9px 7px;
    font-size: 12px;
    height: 30px;
    line-height: 10px;
  }
  .region-mobile-footer a.emergency-btn {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding-left: 35px;
    position: relative;
    background-color: #444a64;
  }
  .region-mobile-footer a.emergency-btn i:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    left: 10px;
    top: 9px;
  }
  .form-embed form > label,
  .form-embed form > p > label {
    float: none;
    width: auto;
    text-align: left;
    display: block;
    line-height: 20px;
  }
  .form-embed form > input[type="text"],
  .form-embed form > p > input[type="text"],
  .form-embed form > p > select,
  .form-embed form > select,
  .form-embed form > textarea,
  .form-embed form > p > textarea {
    width: 100%;
    margin: 0 0 10px;
  }
  .form-embed form > input[type="checkbox"],
  .form-embed form > p > input[type="checkbox"],
  .form-embed form > input[type="radio"],
  .form-embed form > p > input[type="radio"] {
    float: none;
    clear: none;
    margin-left: 0;
  }
  .form-embed form > select,
  .form-embed form > p > select {
    appearance: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #9fa1a5;
    background-image: url('../img/icon/dd-arrow.gif');
    background-repeat: no-repeat;
    background-position: right center;
    background-color: #FFFFFF;
    height: 34px;
    line-height: 20px;
    padding: 1px 10px;
  }
  .form-embed form > input[type="submit"],
  .form-embed form > p > input[type="submit"] {
    margin: 30px auto 20px;
    height: 60px;
    font-size: 40px;
    line-height: 47px;
  }
  .paragraph--type--coloured-cards {
    zoom: 1;
    clear: both;
  }
  .paragraph--type--coloured-cards:before {
    content: '';
    display: block;
  }
  .paragraph--type--coloured-cards:after {
    content: '';
    display: table;
    clear: both;
  }
  .paragraph--type--coloured-cards .card-navigation,
  .paragraph--type--coloured-cards .cards {
    position: relative;
  }
  .paragraph--type--coloured-cards .card-navigation {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -moz-transition: border-color linear 300ms;
    -webkit-transition: border-color linear 300ms;
    -o-transition: border-color linear 300ms;
    transition: border-color linear 300ms;
    float: left;
    border-right: 0;
    width: 50%;
  }
  .paragraph--type--coloured-cards .cards {
    float: right;
    width: 50%;
  }
  .paragraph--type--coloured-cards .testimonials {
    display: none;
  }
  .cards-row-inner {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    zoom: 1;
    clear: both;
    -moz-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    -webkit-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    -o-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    width: 200%;
  }
  .cards-row-inner:before {
    content: '';
    display: block;
  }
  .cards-row-inner:after {
    content: '';
    display: table;
    clear: both;
  }
  .cards-row-inner.active {
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .cards-row {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    zoom: 1;
    clear: both;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    overflow-x: hidden;
    background-color: #FFFFFF;
  }
  .cards-row:before {
    content: '';
    display: block;
  }
  .cards-row:after {
    content: '';
    display: table;
    clear: both;
  }
  .paragraph--type--card {
    -moz-transform: translate(-100%, 0);
    -webkit-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    padding: 0;
  }
  .paragraph--type--card .card-inner {
    padding: 15px 20px 40px;
  }
  .paragraph--type--card .card-links {
    margin-top: 20px;
    position: static;
    bottom: auto;
    left: auto;
  }
  .paragraph--type--card.ready {
    -moz-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    -webkit-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    -o-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
  }
  .paragraph--type--card.active {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .paragraph--type--card:first-child {
    display: block;
  }
  .paragraph--type--card .paragraph-image {
    display: none;
  }
  .paragraph--type--card .field--name-field-body {
    padding-right: 0;
    font-size: 12px;
    line-height: 15px;
  }
  .paragraph--type--card .field--name-field-learn-more,
  .paragraph--type--card .field--type-link {
    display: inline-block;
    margin-right: 3px;
  }
  .paragraph--type--card .field--name-field-learn-more a,
  .paragraph--type--card .field--type-link a {
    font-size: 12px;
    height: 26px;
    padding: 5px 12px;
    line-height: 20px;
  }
  .paragraph--type--card .field--name-field-learn-more {
    margin-right: 0;
  }
  .paragraph--type--card.teal h1,
  .paragraph--type--card.teal h2,
  .paragraph--type--card.teal h3,
  .paragraph--type--card.teal h4 {
    color: #85cad5;
  }
  .paragraph--type--card.teal .field--name-field-get-started-button a {
    background-color: #85cad5;
  }
  .paragraph--type--card.blue h1,
  .paragraph--type--card.blue h2,
  .paragraph--type--card.blue h3,
  .paragraph--type--card.blue h4 {
    color: #3f92cf;
  }
  .paragraph--type--card.blue .field--name-field-get-started-button a {
    background-color: #3f92cf;
  }
  .paragraph--type--card.light-blue h1,
  .paragraph--type--card.light-blue h2,
  .paragraph--type--card.light-blue h3,
  .paragraph--type--card.light-blue h4 {
    color: #82bce6;
  }
  .paragraph--type--card.light-blue .field--name-field-get-started-button a {
    background-color: #82bce6;
  }
  .paragraph--type--card.green h1,
  .paragraph--type--card.green h2,
  .paragraph--type--card.green h3,
  .paragraph--type--card.green h4 {
    color: #67c4aa;
  }
  .paragraph--type--card.green .field--name-field-get-started-button a {
    background-color: #67c4aa;
  }
  .paragraph--type--card.light-green h1,
  .paragraph--type--card.light-green h2,
  .paragraph--type--card.light-green h3,
  .paragraph--type--card.light-green h4 {
    color: #c0dc91;
  }
  .paragraph--type--card.light-green .field--name-field-get-started-button a {
    background-color: #c0dc91;
  }
  .paragraph--type--card.purple h1,
  .paragraph--type--card.purple h2,
  .paragraph--type--card.purple h3,
  .paragraph--type--card.purple h4 {
    color: #855096;
  }
  .paragraph--type--card.purple .field--name-field-get-started-button a {
    background-color: #855096;
  }
  .paragraph--type--card.light-purple h1,
  .paragraph--type--card.light-purple h2,
  .paragraph--type--card.light-purple h3,
  .paragraph--type--card.light-purple h4 {
    color: #cba1cb;
  }
  .paragraph--type--card.light-purple .field--name-field-get-started-button a {
    background-color: #cba1cb;
  }
  .paragraph--type--card.pink h1,
  .paragraph--type--card.pink h2,
  .paragraph--type--card.pink h3,
  .paragraph--type--card.pink h4 {
    color: #f46f94;
  }
  .paragraph--type--card.pink .field--name-field-get-started-button a {
    background-color: #f46f94;
  }
  .paragraph--type--card.orange h1,
  .paragraph--type--card.orange h2,
  .paragraph--type--card.orange h3,
  .paragraph--type--card.orange h4 {
    color: #fbb475;
  }
  .paragraph--type--card.orange .field--name-field-get-started-button a {
    background-color: #fbb475;
  }
  .paragraph--type--card.teal {
    background-color: #FFFFFF;
  }
  .paragraph--type--card.teal,
  .paragraph--type--card.teal p {
    color: #4d536e;
  }
  .paragraph--type--card.teal h1,
  .paragraph--type--card.teal h2,
  .paragraph--type--card.teal h3,
  .paragraph--type--card.teal h4 {
    color: #85cad5;
  }
  .paragraph--type--card.teal .field--name-field-get-started-button a,
  .paragraph--type--card.teal .field--name-field-get-started-button a:visited {
    background-color: #85cad5;
    color: #FFFFFF;
  }
  .paragraph--type--card.teal .field--name-field-learn-more a,
  .paragraph--type--card.teal .field--name-field-learn-more a:visited {
    color: #4d536e;
  }
  .card-handle {
    font-size: 14px;
    line-height: 18px;
    padding: 13px 21px 10px;
  }
  .card-navigation .new {
    width: 16.5px;
    height: 16.5px;
    font-size: 5.5px;
    line-height: 19px;
    margin-top: -8.25px;
  }
  .card-navigation .title.with-new {
    padding-right: 70px;
  }
  .paragraph--type--stories .paragraph-image,
  .paragraph--type--three-column-text .paragraph-image {
    display: none;
  }
  .paragraph--type--stories .col-md-4 {
    display: none;
  }
  .paragraph--type--stories .col-md-4:nth-child(1) {
    display: block;
  }
  .paragraph--type--stories .col-md-4:nth-child(2) {
    display: block;
  }
  .field--name-field-heading h5 br {
    display: none;
  }
  .articles-list .col-md-4,
  .stories-list .col-md-4 {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
  }
  .articles-list .story,
  .stories-list .story {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6.5px;
  }
  .articles-list .story .views-field-field-author,
  .stories-list .story .views-field-field-author {
    font-size: 14px;
    line-height: 22px;
  }
  .articles-list .views-unformatted.row,
  .stories-list .views-unformatted.row {
    height: auto !important;
    padding-bottom: 20px;
  }
  .stories-more {
    margin-top: 30px;
  }
  .stories-more a.btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 19px;
    line-height: 24px;
  }
  .paragraph--type--three-column-text .field--item {
    position: relative;
  }
  .paragraph--type--three-column-text .field--item h3 {
    max-width: 60%;
  }
  .paragraph--type--three-column-text .field--item a.btn {
    position: absolute;
    top: -4px;
    right: 20px;
    max-width: 40%;
  }
  .paragraph--type--get-involved .field--name-field-heading {
    margin: 0 0 28px;
  }
  .paragraph--type--social-excerpt {
    padding: 16px 0;
  }
  .paragraph--type--social-excerpt .icon {
    float: right;
    margin: 10px 0;
    width: auto;
  }
  .paragraph--type--social-excerpt .icon h3 {
    display: none;
  }
  .paragraph--type--social-excerpt .icon img {
    max-height: 35px;
  }
  .paragraph--type--social-excerpt h4 {
    font-size: 14px;
    line-height: 20px;
  }
  .paragraph--type--social-excerpt p {
    font-size: 12px;
    line-height: 18px;
  }
  .section-dd .container,
  .section-dd .row {
    margin: 0;
    padding: 0;
  }
  .region-emergency,
  .region-numbers {
    -moz-transition: height cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    -webkit-transition: height cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    -o-transition: height cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    transition: height cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
    -webkit-box-shadow: 0 -18px 6.5px -13px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 -18px 6.5px -13px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 -18px 6.5px -13px rgba(0, 0, 0, 0.1) inset;
    height: 0;
    left: auto !important;
  }
  .region-emergency.active,
  .region-numbers.active {
    height: 230px;
  }
  .content-header {
    padding: 20px 0;
  }
  .content-header .breadcrumbs {
    margin-top: -5px;
  }
  .content-header .breadcrumbs li {
    font-size: 12px;
  }
  .content-header .breadcrumbs li:first-child {
    display: none;
  }
  .content-header h1 {
    margin: 5px 0 0;
    font-size: 21px;
    line-height: 25px;
  }
  .content-header h5 {
    padding: 0;
    margin-bottom: 0;
  }
  .content-header .container {
    display: block;
    padding: 0 20px;
  }
  .content-header .row {
    display: block;
  }
  .content-header .col-sm-3,
  .content-header .col-sm-9 {
    display: block;
    vertical-align: middle;
    float: none;
  }
  .content-header .col-sm-3 {
    display: none;
  }
  .content-header.landing-header {
    padding-bottom: 20px;
  }
  .content-header.article-header {
    padding-bottom: 30px;
  }
  .content-header.article-header .back-link {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .content-header #block-pagetitle {
    margin-top: 0;
  }
  .region-sidebar-first {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .region-sidebar-first h1,
  .region-sidebar-first h2 {
    font-size: 18px;
    line-height: 20px;
  }
  .region-sidebar-first li a {
    line-height: 20px;
    font-size: 18px;
  }
  .region-sidebar-first li a:after {
    font-size: 12px;
  }
  .paragraph--type--quote-blocks .paragraph--type--quote {
    display: block;
    float: none;
  }
  .paragraph--type--quote-blocks.columns-1 .paragraph--type--quote,
  .paragraph--type--quote-blocks.columns-2 .paragraph--type--quote,
  .paragraph--type--quote-blocks.columns-3 .paragraph--type--quote,
  .paragraph--type--quote-blocks.columns-4 .paragraph--type--quote {
    float: none;
    width: auto;
    clear: both;
  }
  .paragraph--type--quote-blocks.columns-1 .paragraph--type--quote:nth-child(3n),
  .paragraph--type--quote-blocks.columns-2 .paragraph--type--quote:nth-child(3n),
  .paragraph--type--quote-blocks.columns-3 .paragraph--type--quote:nth-child(3n),
  .paragraph--type--quote-blocks.columns-4 .paragraph--type--quote:nth-child(3n),
  .paragraph--type--quote-blocks.columns-1 .paragraph--type--quote:nth-child(3n+1),
  .paragraph--type--quote-blocks.columns-2 .paragraph--type--quote:nth-child(3n+1),
  .paragraph--type--quote-blocks.columns-3 .paragraph--type--quote:nth-child(3n+1),
  .paragraph--type--quote-blocks.columns-4 .paragraph--type--quote:nth-child(3n+1),
  .paragraph--type--quote-blocks.columns-1 .paragraph--type--quote:nth-child(4n),
  .paragraph--type--quote-blocks.columns-2 .paragraph--type--quote:nth-child(4n),
  .paragraph--type--quote-blocks.columns-3 .paragraph--type--quote:nth-child(4n),
  .paragraph--type--quote-blocks.columns-4 .paragraph--type--quote:nth-child(4n),
  .paragraph--type--quote-blocks.columns-1 .paragraph--type--quote:nth-child(4n+1),
  .paragraph--type--quote-blocks.columns-2 .paragraph--type--quote:nth-child(4n+1),
  .paragraph--type--quote-blocks.columns-3 .paragraph--type--quote:nth-child(4n+1),
  .paragraph--type--quote-blocks.columns-4 .paragraph--type--quote:nth-child(4n+1),
  .paragraph--type--quote-blocks.columns-1 .paragraph--type--quote:nth-child(even),
  .paragraph--type--quote-blocks.columns-2 .paragraph--type--quote:nth-child(even),
  .paragraph--type--quote-blocks.columns-3 .paragraph--type--quote:nth-child(even),
  .paragraph--type--quote-blocks.columns-4 .paragraph--type--quote:nth-child(even),
  .paragraph--type--quote-blocks.columns-1 .paragraph--type--quote:nth-child(odd),
  .paragraph--type--quote-blocks.columns-2 .paragraph--type--quote:nth-child(odd),
  .paragraph--type--quote-blocks.columns-3 .paragraph--type--quote:nth-child(odd),
  .paragraph--type--quote-blocks.columns-4 .paragraph--type--quote:nth-child(odd) {
    clear: both;
  }
  .block-inner,
  .quote-inner {
    padding: 20px;
    margin-bottom: 20px;
  }
  .paragraph--type--coloured-blocks .paragraph--type--coloured-block {
    display: block;
    float: none;
  }
  .paragraph--type--coloured-blocks.columns-1 .paragraph--type--coloured-block,
  .paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block,
  .paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block,
  .paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block {
    width: 100%;
    clear: both;
  }
  .paragraph--type--coloured-blocks.columns-1 .paragraph--type--coloured-block:nth-child(3n),
  .paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block:nth-child(3n),
  .paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block:nth-child(3n),
  .paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block:nth-child(3n),
  .paragraph--type--coloured-blocks.columns-1 .paragraph--type--coloured-block:nth-child(3n+1),
  .paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block:nth-child(3n+1),
  .paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block:nth-child(3n+1),
  .paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block:nth-child(3n+1),
  .paragraph--type--coloured-blocks.columns-1 .paragraph--type--coloured-block:nth-child(4n),
  .paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block:nth-child(4n),
  .paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block:nth-child(4n),
  .paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block:nth-child(4n),
  .paragraph--type--coloured-blocks.columns-1 .paragraph--type--coloured-block:nth-child(4n+1),
  .paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block:nth-child(4n+1),
  .paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block:nth-child(4n+1),
  .paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block:nth-child(4n+1),
  .paragraph--type--coloured-blocks.columns-1 .paragraph--type--coloured-block:nth-child(even),
  .paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block:nth-child(even),
  .paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block:nth-child(even),
  .paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block:nth-child(even),
  .paragraph--type--coloured-blocks.columns-1 .paragraph--type--coloured-block:nth-child(odd),
  .paragraph--type--coloured-blocks.columns-2 .paragraph--type--coloured-block:nth-child(odd),
  .paragraph--type--coloured-blocks.columns-3 .paragraph--type--coloured-block:nth-child(odd),
  .paragraph--type--coloured-blocks.columns-4 .paragraph--type--coloured-block:nth-child(odd) {
    clear: both;
  }
  .paragraph--type--coloured-block .block-links {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
  .paragraph--type--coloured-block .block-inner {
    height: auto;
    padding-bottom: 60px;
  }
  .paragraph--type--coloured-block .field--name-field-body h5 {
    font-size: 20px;
    line-height: 28px;
  }
  .paragraph--type--coloured-block .field--name-field-learn-more a,
  .paragraph--type--coloured-block .field--type-link a {
    font-size: 14px;
    padding: 5px 12px;
    height: 36px;
    line-height: 30px;
  }
  .column-content .main-content-node > .paragraph {
    padding: 10px 0;
  }
  .column-content .main-content-node > .paragraph:first-child {
    padding-top: 20px;
  }
  .column-content .main-content-node > .paragraph:first-child.paragraph--type--coloured-blocks {
    padding-top: 40px;
  }
  .column-content .main-content-node > .paragraph:last-child {
    padding-bottom: 20px;
  }
  .column-content .story-content {
    max-width: 790px;
    margin: 0 auto 40px;
  }
  .column-content .page-intro,
  .column-content .story-intro {
    max-width: 970px;
    margin: 0 auto;
    padding: 40px 0 20px;
  }
  .column-content .page-intro.teal h1,
  .column-content .story-intro.teal h1,
  .column-content .page-intro.teal h2,
  .column-content .story-intro.teal h2,
  .column-content .page-intro.teal h3,
  .column-content .story-intro.teal h3,
  .column-content .page-intro.teal h4,
  .column-content .story-intro.teal h4 {
    color: #85cad5;
  }
  .column-content .page-intro.teal .field--name-field-get-started-button a,
  .column-content .story-intro.teal .field--name-field-get-started-button a {
    background-color: #85cad5;
  }
  .column-content .page-intro.blue h1,
  .column-content .story-intro.blue h1,
  .column-content .page-intro.blue h2,
  .column-content .story-intro.blue h2,
  .column-content .page-intro.blue h3,
  .column-content .story-intro.blue h3,
  .column-content .page-intro.blue h4,
  .column-content .story-intro.blue h4 {
    color: #3f92cf;
  }
  .column-content .page-intro.blue .field--name-field-get-started-button a,
  .column-content .story-intro.blue .field--name-field-get-started-button a {
    background-color: #3f92cf;
  }
  .column-content .page-intro.light-blue h1,
  .column-content .story-intro.light-blue h1,
  .column-content .page-intro.light-blue h2,
  .column-content .story-intro.light-blue h2,
  .column-content .page-intro.light-blue h3,
  .column-content .story-intro.light-blue h3,
  .column-content .page-intro.light-blue h4,
  .column-content .story-intro.light-blue h4 {
    color: #82bce6;
  }
  .column-content .page-intro.light-blue .field--name-field-get-started-button a,
  .column-content .story-intro.light-blue .field--name-field-get-started-button a {
    background-color: #82bce6;
  }
  .column-content .page-intro.green h1,
  .column-content .story-intro.green h1,
  .column-content .page-intro.green h2,
  .column-content .story-intro.green h2,
  .column-content .page-intro.green h3,
  .column-content .story-intro.green h3,
  .column-content .page-intro.green h4,
  .column-content .story-intro.green h4 {
    color: #67c4aa;
  }
  .column-content .page-intro.green .field--name-field-get-started-button a,
  .column-content .story-intro.green .field--name-field-get-started-button a {
    background-color: #67c4aa;
  }
  .column-content .page-intro.light-green h1,
  .column-content .story-intro.light-green h1,
  .column-content .page-intro.light-green h2,
  .column-content .story-intro.light-green h2,
  .column-content .page-intro.light-green h3,
  .column-content .story-intro.light-green h3,
  .column-content .page-intro.light-green h4,
  .column-content .story-intro.light-green h4 {
    color: #c0dc91;
  }
  .column-content .page-intro.light-green .field--name-field-get-started-button a,
  .column-content .story-intro.light-green .field--name-field-get-started-button a {
    background-color: #c0dc91;
  }
  .column-content .page-intro.purple h1,
  .column-content .story-intro.purple h1,
  .column-content .page-intro.purple h2,
  .column-content .story-intro.purple h2,
  .column-content .page-intro.purple h3,
  .column-content .story-intro.purple h3,
  .column-content .page-intro.purple h4,
  .column-content .story-intro.purple h4 {
    color: #855096;
  }
  .column-content .page-intro.purple .field--name-field-get-started-button a,
  .column-content .story-intro.purple .field--name-field-get-started-button a {
    background-color: #855096;
  }
  .column-content .page-intro.light-purple h1,
  .column-content .story-intro.light-purple h1,
  .column-content .page-intro.light-purple h2,
  .column-content .story-intro.light-purple h2,
  .column-content .page-intro.light-purple h3,
  .column-content .story-intro.light-purple h3,
  .column-content .page-intro.light-purple h4,
  .column-content .story-intro.light-purple h4 {
    color: #cba1cb;
  }
  .column-content .page-intro.light-purple .field--name-field-get-started-button a,
  .column-content .story-intro.light-purple .field--name-field-get-started-button a {
    background-color: #cba1cb;
  }
  .column-content .page-intro.pink h1,
  .column-content .story-intro.pink h1,
  .column-content .page-intro.pink h2,
  .column-content .story-intro.pink h2,
  .column-content .page-intro.pink h3,
  .column-content .story-intro.pink h3,
  .column-content .page-intro.pink h4,
  .column-content .story-intro.pink h4 {
    color: #f46f94;
  }
  .column-content .page-intro.pink .field--name-field-get-started-button a,
  .column-content .story-intro.pink .field--name-field-get-started-button a {
    background-color: #f46f94;
  }
  .column-content .page-intro.orange h1,
  .column-content .story-intro.orange h1,
  .column-content .page-intro.orange h2,
  .column-content .story-intro.orange h2,
  .column-content .page-intro.orange h3,
  .column-content .story-intro.orange h3,
  .column-content .page-intro.orange h4,
  .column-content .story-intro.orange h4 {
    color: #fbb475;
  }
  .column-content .page-intro.orange .field--name-field-get-started-button a,
  .column-content .story-intro.orange .field--name-field-get-started-button a {
    background-color: #fbb475;
  }
  .column-content .page-intro {
    margin-bottom: -20px;
  }
  .stories-list {
    margin-top: 5px;
  }
  .faqs-wrapper {
    zoom: 1;
    clear: both;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    background-color: #FFFFFF;
  }
  .faqs-wrapper:before {
    content: '';
    display: block;
  }
  .faqs-wrapper:after {
    content: '';
    display: table;
    clear: both;
  }
  .faqs-wrapper .answer .answer-inner {
    padding: 7px 20px 25px;
  }
  .faqs-wrapper .question {
    cursor: pointer;
    padding: 20px 20px 15px;
  }
  .faqs-wrapper .question h3 {
    font-size: 16px;
    line-height: 16px;
  }
  .faqs-wrapper .question i {
    -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    float: right;
    color: #4d536e;
  }
  .faqs-wrapper .active .question i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #8b8b8b;
  }
  #views-exposed-form-articles-list-page-1 .form-type-select,
  #views-exposed-form-articles-list-page-1 .js-form-type-select {
    display: block;
    text-align: center;
    padding: 0 20px;
  }
  #views-exposed-form-articles-list-page-1 .form-type-select label,
  #views-exposed-form-articles-list-page-1 .js-form-type-select label {
    display: none;
  }
  #views-exposed-form-articles-list-page-1 .form-type-select select,
  #views-exposed-form-articles-list-page-1 .js-form-type-select select {
    padding: 5px;
    background-color: #FFFFFF;
    width: 100%;
    background-image: url("../img/icon/dd-arrow.gif");
    background-position: right -4px;
    background-repeat: no-repeat;
  }
  .button-filter {
    display: none;
  }
  .field--name-field-body table.call-us {
    max-width: 100%;
  }
  .field--name-field-body table.call-us,
  .field--name-field-body table.call-us td,
  .field--name-field-body table.call-us tr {
    display: block;
  }
  .field--name-field-body table.call-us td {
    padding: 0;
  }
  .field--name-field-body table.call-us td.text-align-right {
    text-align: left;
  }
  .field--name-field-body table.call-us tr {
    padding: 5px 0;
  }
  .field--name-field-body table td {
    padding: 5px 0;
  }
  .sign-in-section {
    padding: 10px 0 20px;
  }
  .sign-in-section.teal .sign-in-intro {
    color: #FFFFFF;
    margin-bottom: 30px;
  }
  .sign-in-section.teal .sign-in-intro h1,
  .sign-in-section.teal .sign-in-intro h2,
  .sign-in-section.teal .sign-in-intro h3,
  .sign-in-section.teal .sign-in-intro h5,
  .sign-in-section.teal .sign-in-intro h6,
  .sign-in-section.teal .sign-in-intro ol,
  .sign-in-section.teal .sign-in-intro ul,
  .sign-in-section.teal .sign-in-intro li,
  .sign-in-section.teal .sign-in-intro i,
  .sign-in-section.teal .sign-in-intro td {
    color: #FFFFFF;
  }
  .sign-in-section.teal .sign-in-intro h4,
  .sign-in-section.teal .sign-in-intro p {
    color: #ffffff;
  }
  .sign-in-section.teal .sign-in-intro h3 a,
  .sign-in-section.teal .sign-in-intro h4 a,
  .sign-in-section.teal .sign-in-intro h3 a:visited,
  .sign-in-section.teal .sign-in-intro h4 a:visited {
    font-weight: 400;
    color: #85cad5;
  }
  .sign-in-section.teal .sign-in-intro h3 strong,
  .sign-in-section.teal .sign-in-intro h4 strong,
  .sign-in-section.teal .sign-in-intro h3 b,
  .sign-in-section.teal .sign-in-intro h4 b {
    color: #FFFFFF;
  }
  .sign-in-section.teal .sign-in-intro h1,
  .sign-in-section.teal .sign-in-intro h2,
  .sign-in-section.teal .sign-in-intro h3 {
    color: #FFFFFF;
  }
  .sign-in-section.teal .sign-in-intro h1 em,
  .sign-in-section.teal .sign-in-intro h2 em,
  .sign-in-section.teal .sign-in-intro h3 em,
  .sign-in-section.teal .sign-in-intro h1 i,
  .sign-in-section.teal .sign-in-intro h2 i,
  .sign-in-section.teal .sign-in-intro h3 i {
    color: #4bc8f5;
  }
  .sign-in-section.teal .sign-in-intro h1 strong,
  .sign-in-section.teal .sign-in-intro h2 strong,
  .sign-in-section.teal .sign-in-intro h3 strong {
    color: #4bc8f5;
  }
  .sign-in-section.teal .sign-in-intro a,
  .sign-in-section.teal .sign-in-intro a:visited {
    color: #FFFFFF;
  }
  .sign-in-section.teal .sign-in-intro a:hover {
    color: #FFFFFF;
  }
  .sign-in-section.teal .sign-in-intro h2:first-child {
    margin-bottom: 10px;
  }
  .sign-in-section.teal .sign-in-intro,
  .sign-in-section.teal .sign-in-intro a,
  .sign-in-section.teal .sign-in-intro p {
    font-size: 20px;
    line-height: 20px;
  }
  .sign-in-section .sign-in-form {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    background-color: #FFFFFF;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
    color: #4d536e;
  }
  .sign-in-section a.forgot-password {
    float: none;
    display: inline-block;
    margin: 10px auto 20px;
  }
  .sign-in-section input[type="submit"] {
    margin: 0 auto;
  }
  .sign-in-section .error {
    margin-bottom: 10px;
  }
  .sign-in-section .form-sidebar {
    border-top: 1px solid #dbdde2;
  }
  .sign-in-section .form-sidebar .chat {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .d-btt {
    display: none;
  }
  .region-fixed-footer {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    bottom: 53px;
    padding: 0 30px;
  }
  .region-fixed-footer div {
    font-size: 18px;
    line-height: 22px;
  }
  .region-fixed-footer div a.btn {
    margin-top: 10px;
    font-size: 16px;
  }
  .paragraph--type--get-involved .social-icons-block {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .paragraph--type--get-involved .field--name-field-heading {
    text-align: center;
  }
  .paragraph--type--three-column-text .field--item h3 {
    max-width: 100%;
  }
  .paragraph--type--three-column-text .field--item a.btn {
    position: static;
    top: auto;
    left: auto;
    right: auto;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .container {
    width: 750px;
  }
  .region-preheader {
    font-size: 12px;
  }
  .section-emergency .region-emergency {
    letter-spacing: -0.5px;
    width: 320px;
    margin-left: -10px;
  }
  .section-numbers .region-numbers {
    width: 520px;
    letter-spacing: -0.5px;
  }
  .section-numbers .region-numbers:before {
    margin-left: 85px;
  }
  #block-sitebranding {
    line-height: 20px;
  }
  .header-main nav {
    padding: 10px 0;
  }
  .header-main nav li {
    margin: 0 15px 0 0;
    font-size: 14px;
  }
  .header-main .region-header a img {
    max-width: 280px;
  }
  .header-right a.sign-in,
  .header-right a.get-started,
  .header-right a.sign-in:visited,
  .header-right a.get-started:visited {
    line-height: 20px;
    font-size: 14px;
    height: 33px;
    padding: 6px 15px;
  }
  .header-right form {
    display: block;
    padding-top: 7px;
    height: 55px;
  }
  .header-right input {
    font-size: 14px;
  }
  .header-right input:focus,
  .header-right input:active {
    width: 127px;
    font-size: 13px;
    letter-spacing: -1px;
  }
  #block-headerbuttons {
    width: 140%;
  }
  h3 {
    font-size: 24px;
    line-height: 30px;
  }
  h4 {
    font-size: 22px;
    line-height: 26px;
  }
  h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .paragraph--type--home-page-header .field--name-field-heading h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .paragraph--type--home-page-header .field--name-field-heading h2:first-child {
    margin-top: 22px;
  }
  .content-header .title-only h1,
  .content-header .title-only h2 {
    margin-bottom: 10px;
  }
  .button-filter li {
    margin: 0 15px;
  }
  .button-filter a {
    font-size: 16px;
  }
  .articles-list .col-md-4,
  .stories-list .col-md-4 {
    width: 100%;
  }
  .row.footer-links {
    font-size: 16px;
    line-height: 20px;
  }
  .row.footer-links li {
    margin-bottom: 12px;
  }
  .row.footer-links a.forum,
  .row.footer-links a.location,
  .row.footer-links a.tel,
  .row.footer-links a.ig,
  .row.footer-links a.fb,
  .row.footer-links a.tw {
    display: inline-block;
    margin-bottom: 12px;
  }
  .row.footer-links a.forum:before,
  .row.footer-links a.location:before,
  .row.footer-links a.tel:before,
  .row.footer-links a.ig:before,
  .row.footer-links a.fb:before,
  .row.footer-links a.tw:before {
    line-height: 20px;
  }
  #block-footersociallinks a {
    letter-spacing: -0.5px;
  }
  .card-handle {
    line-height: 20px;
    font-size: 16px;
    padding: 14px 21px 14px;
  }
  .paragraph--type--card .field--name-field-body {
    padding-right: 0;
  }
  .paragraph--type--card .field--name-field-learn-more a,
  .paragraph--type--card .field--name-field-get-started-button a {
    font-size: 18px;
    padding: 7px 16px;
    height: 43px;
  }
  .paragraph--type--card .paragraph-image {
    margin: 10px 10px 10px 30px;
    max-width: 90px;
  }
  .paragraph--type--home-page-header .links li {
    margin: 0 10px;
  }
  .paragraph--type--home-page-header .links a {
    font-size: 15px;
  }
  .region-sidebar-first {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .paragraph--type--coloured-block .block-inner {
    padding: 20px;
    height: 240px;
  }
  .paragraph--type--coloured-block .block-links {
    left: 20px;
    bottom: 20px;
  }
  .paragraph--type--coloured-block .field--name-field-learn-more a,
  .paragraph--type--coloured-block .field--type-link a {
    font-size: 12px;
    padding: 5px 9px;
    height: 30px;
    line-height: 20px;
  }
  .paragraph--type--coloured-block .field--name-field-body h3 {
    font-size: 17px;
    line-height: 24px;
  }
  .paragraph--type--coloured-block .field--name-field-body h4 {
    font-size: 17px;
    line-height: 24px;
  }
  .paragraph--type--coloured-block .field--name-field-body h5 {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  body {
    font-size: 16px;
  }
  .container {
    width: 970px;
  }
  .section-emergency .region-emergency {
    letter-spacing: -0.5px;
    width: 320px;
    margin-left: -10px;
  }
  .section-numbers .region-numbers {
    width: 520px;
    letter-spacing: -0.5px;
  }
  .header-main {
    padding-top: 11px;
  }
  .header-main .region-header a img {
    max-width: 383px;
  }
  .header-main nav li {
    margin: 0 25px 0 0 ;
    font-size: 20px;
  }
  #block-headerbuttons {
    width: 120%;
  }
  .header-right a,
  .header-right a.sign-in {
    font-size: 18px;
    padding: 10px 20px;
  }
  .header-right a.sign-in {
    margin-left: 8px;
  }
  .header-right input {
    font-size: 16px;
  }
  .header-right input:focus {
    width: 180px;
  }
  .paragraph--type--home-page-header .links li {
    margin: 0 17px;
  }
  .paragraph--type--home-page-header .links a {
    font-size: 20px;
  }
  .paragraph--type--card .paragraph-image {
    max-width: 120px;
  }
  .paragraph--type--coloured-block .field--name-field-body h5 {
    font-size: 20px;
    line-height: 28px;
  }
  .paragraph--type--coloured-block .field--name-field-learn-more a,
  .paragraph--type--coloured-block .field--type-link a {
    font-size: 14px;
    padding: 5px 12px;
    height: 36px;
    line-height: 30px;
  }
  .row.footer-links {
    font-size: 20px;
    line-height: 24px;
  }
  .row.footer-links a.forum:before,
  .row.footer-links a.location:before,
  .row.footer-links a.tel:before,
  .row.footer-links a.ig:before,
  .row.footer-links a.fb:before,
  .row.footer-links a.tw:before {
    font-family: "fontello";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 24px;
    width: 24px;
    text-align: center;
  }
  h3 {
    font-size: 28px;
    line-height: 30px;
  }
  h4 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1340px) {
  .container {
    width: 1170px;
  }
  .header-main {
    padding-top: 11px;
  }
  .header-main .region-header a img {
    max-width: 383px;
  }
  .header-main nav {
    padding: 29px 0;
  }
  .header-main nav li {
    margin: 0 25px 0 0 ;
    display: inline-block;
    font-size: 24px;
    line-height: 16px;
  }
  #block-headerbuttons {
    width: 120%;
  }
  .paragraph--type--home-page-header .links li {
    margin: 0 25px;
  }
}
@media (min-width: 1340px) {
  .container {
    width: 1230px;
  }
}
.lt-ie9 [class^="icon-"]:before,
.ie9 [class^="icon-"]:before,
.lt-ie9 [class*=" icon-"]:before,
.ie9 [class*=" icon-"]:before,
.lt-ie9 [class^="icon-"]:before:hover,
.ie9 [class^="icon-"]:before:hover,
.lt-ie9 [class*=" icon-"]:before:hover,
.ie9 [class*=" icon-"]:before:hover {
  text-decoration: none !important;
}
.lt-ie9 a:hover i,
.ie9 a:hover i,
.lt-ie9 a:hover i:before,
.ie9 a:hover i:before {
  text-decoration: none !important;
}
.lt-ie9 #block-footersociallinks a:hover,
.ie9 #block-footersociallinks a:hover,
.lt-ie9 #block-footersociallinks a:focus,
.ie9 #block-footersociallinks a:focus,
.lt-ie9 #block-footersociallinks a:visited,
.ie9 #block-footersociallinks a:visited {
  text-decoration: none;
}
.ie8 .region-numbers,
.lt-ie9 .region-numbers,
.ie8 .region-emergency,
.lt-ie9 .region-emergency {
  display: none;
}
.ie8 .region-numbers.active,
.lt-ie9 .region-numbers.active,
.ie8 .region-emergency.active,
.lt-ie9 .region-emergency.active {
  display: block;
}
.ie8 .paragraph--type--coloured-cards .testimonials,
.lt-ie9 .paragraph--type--coloured-cards .testimonials {
  background-color: #FFFFFF;
}
.ie8 .paragraph--type--coloured-cards .testimonials .dots .dot,
.lt-ie9 .paragraph--type--coloured-cards .testimonials .dots .dot {
  filter: alpha(opacity=50);
}
.ie8 .paragraph--type--coloured-cards .testimonials .dots .dot.active,
.lt-ie9 .paragraph--type--coloured-cards .testimonials .dots .dot.active {
  filter: alpha(opacity=100);
}
.ie8 .paragraph--type--coloured-cards .paragraph--type--testimonial,
.lt-ie9 .paragraph--type--coloured-cards .paragraph--type--testimonial {
  filter: alpha(opacity=0);
}
.ie8 .paragraph--type--coloured-cards .paragraph--type--testimonial.active,
.lt-ie9 .paragraph--type--coloured-cards .paragraph--type--testimonial.active {
  filter: alpha(opacity=100);
}
.ie8 .paragraph--type--card,
.lt-ie9 .paragraph--type--card {
  left: -100%;
}
.ie8 .paragraph--type--card.active,
.lt-ie9 .paragraph--type--card.active {
  left: 0;
}
.ie8 .articles-list .col-md-4,
.lt-ie9 .articles-list .col-md-4,
.ie8 .stories-list .col-md-4,
.lt-ie9 .stories-list .col-md-4 {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 100% !important;
}
.ie8 .mobile-only,
.lt-ie9 .mobile-only {
  display: none;
}
.ie8 .card-handle.teal.active,
.lt-ie9 .card-handle.teal.active {
  background-color: #85cad5;
}
.ie8 .card-handle.blue.active,
.lt-ie9 .card-handle.blue.active {
  background-color: #3f92cf;
}
.ie8 .card-handle.light-blue.active,
.lt-ie9 .card-handle.light-blue.active {
  background-color: #82bce6;
}
.ie8 .card-handle.green.active,
.lt-ie9 .card-handle.green.active {
  background-color: #67c4aa;
}
.ie8 .card-handle.light-green.active,
.lt-ie9 .card-handle.light-green.active {
  background-color: #c0dc91;
}
.ie8 .card-handle.purple.active,
.lt-ie9 .card-handle.purple.active {
  background-color: #855096;
}
.ie8 .card-handle.light-purple.active,
.lt-ie9 .card-handle.light-purple.active {
  background-color: #cba1cb;
}
.ie8 .card-handle.pink.active,
.lt-ie9 .card-handle.pink.active {
  background-color: #f46f94;
}
.ie8 .card-handle.orange.active,
.lt-ie9 .card-handle.orange.active {
  background-color: #fbb475;
}
.ie8 .card-handle.active,
.lt-ie9 .card-handle.active,
.ie8 .card-handle.active i,
.lt-ie9 .card-handle.active i {
  color: #FFFFFF;
}
.ie8 .section-emergency,
.lt-ie9 .section-emergency {
  overflow: visible;
  height: 0;
}
.ie8 .region-numbers,
.lt-ie9 .region-numbers,
.ie8 .region-emergency,
.lt-ie9 .region-emergency {
  -moz-transition: opacity linear 0;
  -webkit-transition: opacity linear 0;
  -o-transition: opacity linear 0;
  transition: opacity linear 0;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  width: 320px;
  margin-right: 15px;
}
.ie8 .region-numbers.active,
.lt-ie9 .region-numbers.active,
.ie8 .region-emergency.active,
.lt-ie9 .region-emergency.active {
  -moz-transition: opacity linear 400ms;
  -webkit-transition: opacity linear 400ms;
  -o-transition: opacity linear 400ms;
  transition: opacity linear 400ms;
  opacity: 1;
  z-index: 3;
}
.ie8 .region-numbers:before,
.lt-ie9 .region-numbers:before,
.ie8 .region-emergency:before,
.lt-ie9 .region-emergency:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: 49px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #444b63 transparent;
}
.ie8 .content-header .col-sm-3 img,
.lt-ie9 .content-header .col-sm-3 img {
  max-width: 278px;
}
.ie8 .container,
.lt-ie9 .container {
  width: 1230px;
}
.ie8 .content-header,
.lt-ie9 .content-header {
  padding: 50px 0 20px;
  /* .col-sm-3 {
            width: 300px;
        }
        .col-sm-9 {
            width: 900px;
        } */
}
.ie8 .content-header.landing-header,
.lt-ie9 .content-header.landing-header {
  padding-bottom: 50px;
}
.ie8 .content-header.teal,
.lt-ie9 .content-header.teal {
  background-color: #85cad5;
  color: #FFFFFF;
}
.ie8 .content-header.teal h1,
.lt-ie9 .content-header.teal h1,
.ie8 .content-header.teal h2,
.lt-ie9 .content-header.teal h2,
.ie8 .content-header.teal h3,
.lt-ie9 .content-header.teal h3,
.ie8 .content-header.teal h5,
.lt-ie9 .content-header.teal h5,
.ie8 .content-header.teal h6,
.lt-ie9 .content-header.teal h6,
.ie8 .content-header.teal ol,
.lt-ie9 .content-header.teal ol,
.ie8 .content-header.teal ul,
.lt-ie9 .content-header.teal ul,
.ie8 .content-header.teal li,
.lt-ie9 .content-header.teal li,
.ie8 .content-header.teal i,
.lt-ie9 .content-header.teal i,
.ie8 .content-header.teal td,
.lt-ie9 .content-header.teal td {
  color: #FFFFFF;
}
.ie8 .content-header.teal h4,
.lt-ie9 .content-header.teal h4,
.ie8 .content-header.teal p,
.lt-ie9 .content-header.teal p {
  color: #ffffff;
}
.ie8 .content-header.teal h3 a,
.lt-ie9 .content-header.teal h3 a,
.ie8 .content-header.teal h4 a,
.lt-ie9 .content-header.teal h4 a,
.ie8 .content-header.teal h3 a:visited,
.lt-ie9 .content-header.teal h3 a:visited,
.ie8 .content-header.teal h4 a:visited,
.lt-ie9 .content-header.teal h4 a:visited {
  font-weight: 400;
  color: #85cad5;
}
.ie8 .content-header.teal h3 strong,
.lt-ie9 .content-header.teal h3 strong,
.ie8 .content-header.teal h4 strong,
.lt-ie9 .content-header.teal h4 strong,
.ie8 .content-header.teal h3 b,
.lt-ie9 .content-header.teal h3 b,
.ie8 .content-header.teal h4 b,
.lt-ie9 .content-header.teal h4 b {
  color: #FFFFFF;
}
.ie8 .content-header.teal h1,
.lt-ie9 .content-header.teal h1,
.ie8 .content-header.teal h2,
.lt-ie9 .content-header.teal h2,
.ie8 .content-header.teal h3,
.lt-ie9 .content-header.teal h3 {
  color: #FFFFFF;
}
.ie8 .content-header.teal h1 em,
.lt-ie9 .content-header.teal h1 em,
.ie8 .content-header.teal h2 em,
.lt-ie9 .content-header.teal h2 em,
.ie8 .content-header.teal h3 em,
.lt-ie9 .content-header.teal h3 em,
.ie8 .content-header.teal h1 i,
.lt-ie9 .content-header.teal h1 i,
.ie8 .content-header.teal h2 i,
.lt-ie9 .content-header.teal h2 i,
.ie8 .content-header.teal h3 i,
.lt-ie9 .content-header.teal h3 i {
  color: #4bc8f5;
}
.ie8 .content-header.teal h1 strong,
.lt-ie9 .content-header.teal h1 strong,
.ie8 .content-header.teal h2 strong,
.lt-ie9 .content-header.teal h2 strong,
.ie8 .content-header.teal h3 strong,
.lt-ie9 .content-header.teal h3 strong {
  color: #4bc8f5;
}
.ie8 .content-header.teal a,
.lt-ie9 .content-header.teal a,
.ie8 .content-header.teal a:visited,
.lt-ie9 .content-header.teal a:visited {
  color: #FFFFFF;
}
.ie8 .content-header.teal a:hover,
.lt-ie9 .content-header.teal a:hover {
  color: #FFFFFF;
}
.ie8 .content-header.teal .breadcrumbs li,
.lt-ie9 .content-header.teal .breadcrumbs li,
.ie8 .content-header.teal .breadcrumbs ol,
.lt-ie9 .content-header.teal .breadcrumbs ol,
.ie8 .content-header.teal .breadcrumbs a,
.lt-ie9 .content-header.teal .breadcrumbs a {
  color: #4d536e;
}
.ie8 .content-header .breadcrumbs,
.lt-ie9 .content-header .breadcrumbs {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.ie8 .content-header .breadcrumbs li,
.lt-ie9 .content-header .breadcrumbs li {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 16px;
  line-height: 15px;
}
.ie8 .content-header .breadcrumbs li:after,
.lt-ie9 .content-header .breadcrumbs li:after {
  content: "/";
  margin: 0 5px;
}
.ie8 .content-header .breadcrumbs li:last-child:after,
.lt-ie9 .content-header .breadcrumbs li:last-child:after {
  content: "";
  margin: 0;
}
.ie8 .content-header h1,
.lt-ie9 .content-header h1 {
  margin: 0 0 30px;
  font-size: 42px;
  line-height: 50px;
}
.ie8 .content-header .title-only h1,
.lt-ie9 .content-header .title-only h1,
.ie8 .content-header .title-only h2,
.lt-ie9 .content-header .title-only h2 {
  margin: 0 0 0;
}
.ie8 .content-header h5,
.lt-ie9 .content-header h5 {
  padding-right: 20%;
}
.ie8 .content-header #block-co-breadcrumbs + #block-pagetitle,
.lt-ie9 .content-header #block-co-breadcrumbs + #block-pagetitle {
  margin-top: 0;
}
.ie8 .content-header #block-pagetitle,
.lt-ie9 .content-header #block-pagetitle {
  margin-top: 20px;
}
.ie8 .content-header .container,
.lt-ie9 .content-header .container {
  display: block;
  padding: 0;
}
.ie8 .content-header .row,
.lt-ie9 .content-header .row {
  display: block;
}
.ie8 .content-header .col-sm-3,
.lt-ie9 .content-header .col-sm-3,
.ie8 .content-header .col-sm-9,
.lt-ie9 .content-header .col-sm-9 {
  display: block;
  float: left !important;
}
.ie8 .column-content,
.lt-ie9 .column-content {
  padding-left: 0;
}
.ie8 .header-right a,
.lt-ie9 .header-right a {
  font-size: 16px;
  padding-left: 12px;
  padding-right: 12px;
}
.ie8 .region-header #block-co-branding a,
.lt-ie9 .region-header #block-co-branding a {
  background-image: url(../img/icon/logo-ie.png);
  display: block;
  height: 49px;
  width: 383px;
}
.ie8 .region-header #block-co-branding a img,
.lt-ie9 .region-header #block-co-branding a img {
  visibility: hidden;
}
