/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*!
 * Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.2.0
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Hover.css Copyright Ian Lunn 2017. Generated with Sass.
 */
/* 2D TRANSITIONS */
/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Pop */
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  -o-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */
.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  -o-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  -webkit-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  transform: rotate(4deg);
}

/* Grow Rotate */
.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
  -webkit-transform: scale(1.1) rotate(4deg);
  -ms-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}

/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
}

/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Skew */
.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
  -webkit-transform: skew(-10deg);
  -ms-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Forward */
.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
  -webkit-transform: skew(-10deg);
  -ms-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Backward */
.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
  -webkit-transform: skew(10deg);
  -ms-transform: skew(10deg);
  transform: skew(10deg);
}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    -ms-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    -ms-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    -ms-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    -ms-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@-webkit-keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    -ms-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    -ms-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    -ms-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    -ms-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    -ms-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    -ms-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    -ms-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    -ms-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    -ms-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    -ms-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
  -webkit-animation-name: hvr-wobble-to-bottom-right;
  animation-name: hvr-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Top Right */
@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    -ms-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    -ms-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    -ms-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    -ms-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    -ms-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    -ms-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    -ms-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    -ms-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    -ms-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    -ms-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    -ms-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    -ms-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    -ms-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    -ms-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    -ms-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    -ms-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    -ms-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    -ms-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    -ms-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    -ms-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    -ms-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    -ms-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Bottom */
@-webkit-keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    -ms-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    -ms-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    -ms-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    -ms-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    -ms-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    -ms-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    -ms-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    -ms-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    -ms-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    -ms-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    -ms-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    -ms-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.hvr-wobble-bottom:hover, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:active {
  -webkit-animation-name: hvr-wobble-bottom;
  animation-name: hvr-wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Skew */
@-webkit-keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    -ms-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    -ms-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    -ms-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    -ms-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    -ms-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    -ms-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    -ms-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    -ms-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    -ms-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    -ms-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    -ms-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    -ms-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-skew:hover, .hvr-wobble-skew:focus, .hvr-wobble-skew:active {
  -webkit-animation-name: hvr-wobble-skew;
  animation-name: hvr-wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Buzz */
@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    -ms-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    -ms-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    -ms-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    -ms-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    -ms-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    -ms-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    -ms-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    -ms-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    -ms-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    -ms-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    -ms-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    -ms-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    -ms-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    -ms-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    -ms-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    -ms-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    -ms-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    -ms-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    -ms-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    -ms-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    -ms-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    -ms-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    -ms-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    -ms-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Forward */
.hvr-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-forward:hover, .hvr-forward:focus, .hvr-forward:active {
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
}

/* Backward */
.hvr-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-backward:hover, .hvr-backward:focus, .hvr-backward:active {
  -webkit-transform: translateX(-8px);
  -ms-transform: translateX(-8px);
  transform: translateX(-8px);
}

/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  -o-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  background-color: #93a4bc;
  color: white;
}

/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  -o-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #93a4bc;
  background-color: rgb(32, 152, 209);
  color: white;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sweep To Left */
.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
  color: white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  color: white;
}
.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  color: white;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  color: white;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
  color: white;
}
.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
  color: white;
}
.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
  color: white;
}
.hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  border-radius: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}

/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #93a4bc;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  border-radius: 100%;
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  color: white;
}
.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* Rectangle In */
.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #93a4bc;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0E213B;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
  color: white;
}
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* Rectangle Out */
.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #93a4bc;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
  color: white;
}
.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #93a4bc;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
  color: white;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/* Shutter In Vertical */
.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #93a4bc;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
  color: white;
}
.hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}

/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #93a4bc;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
  color: white;
}
.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

/* BORDER TRANSITIONS */
/* Border Fade */
.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  -o-transition-property: box-shadow;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  -webkit-box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0); /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
  -webkit-box-shadow: inset 0 0 0 4px #93a4bc, 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0 0 4px #93a4bc, 0 0 1px rgba(0, 0, 0, 0); /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */
.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background;
  -o-transition-property: background;
  transition-property: background;
  -webkit-box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0); /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
  background: none;
}

/* Trim */
.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-trim:before {
  content: "";
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
  opacity: 1;
}

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-ripple-out:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

/* Ripple In */
@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-ripple-in:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in;
}

/* Outline Out */
.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-outline-out:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  -o-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/* Outline In */
.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-outline-in:before {
  pointer-events: none;
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  -o-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

/* Round Corners */
.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  -o-transition-property: border-radius;
  transition-property: border-radius;
}
.hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
  border-radius: 1em;
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #93a4bc;
  height: 4px;
  -webkit-transition-property: right;
  -o-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #93a4bc;
  height: 4px;
  -webkit-transition-property: left, right;
  -o-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */
.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  height: 4px;
  -webkit-transition-property: left;
  -o-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
  left: 0;
}

/* Overline From Left */
.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #93a4bc;
  height: 4px;
  -webkit-transition-property: right;
  -o-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
  right: 0;
}

/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  top: 0;
  background: #93a4bc;
  height: 4px;
  -webkit-transition-property: left, right;
  -o-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Overline From Right */
.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #93a4bc;
  height: 4px;
  -webkit-transition-property: left;
  -o-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
  left: 0;
}

/* Reveal */
.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #93a4bc;
  border-style: solid;
  border-width: 0;
  -webkit-transition-property: border-width;
  -o-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  border-width: 4px;
}

/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #93a4bc;
  height: 4px;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Overline Reveal */
.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #93a4bc;
  height: 4px;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition-property: transform;
  -o-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#cookie-optout {
  background-color: #4895EA;
  color: #fff;
  width: 100vw;
  padding: 15px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
  position: fixed;
  bottom: 0;
  z-index: 110;
}
@media screen and (max-width: 1200px) {
  #cookie-optout {
    padding: 15px 10px;
  }
}
#cookie-optout .content {
  margin: 0 auto;
  display: table;
  width: 100%;
}
#cookie-optout p,
#cookie-optout p > a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #fff;
}
#cookie-optout p > a {
  text-decoration: underline;
}
#cookie-optout p {
  display: table-cell;
  vertical-align: middle;
}
#cookie-optout .btn {
  font-size: 30px;
  font-size: 3rem;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
  text-align: right;
}

#header {
  background-color: #fff;
  padding: 40px 0;
  z-index: 100;
  position: relative;
  max-width: calc(100% - 14px);
}
@media screen and (max-width: 991px) {
  #header {
    padding: 20px 0;
  }
}
#header .logo {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #header .logo img {
    width: 200px;
  }
}
@media screen and (max-width: 440px) {
  #header .logo img {
    width: 160px;
  }
}
#header .info {
  float: right;
  vertical-align: top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  #header .info {
    float: right;
    margin-top: 18px;
  }
}
@media screen and (max-width: 767px) {
  #header .info {
    margin-top: 7px;
  }
}
@media screen and (max-width: 440px) {
  #header .info {
    margin-top: 3px;
  }
}
#header .info p,
#header .info a {
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  display: inline-block;
  margin-right: 25px;
}
@media screen and (max-width: 991px) {
  #header .info p,
#header .info a {
    margin-right: 15px;
  }
}
@media screen and (max-width: 650px) {
  #header .info p,
#header .info a {
    margin-right: 10px;
  }
}
#header .info p img,
#header .info a img {
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 1184px) {
  #header .info > a span {
    display: none;
  }
}
@media screen and (max-width: 620px) {
  #header .info > a {
    display: none;
  }
  #header .info > a:last-child {
    display: inline-block;
  }
}
@media screen and (max-width: 991px) {
  #header .info p {
    display: none;
  }
}
#header .info .facebook {
  font-size: 25px;
  font-size: 2.5rem;
  margin-right: 0;
}
#header .info .mailto {
  margin-right: 0;
}
#header .info .soundtest {
  color: #93a4bc;
}
#header .info .soundtest i {
  font-size: 25px;
  font-size: 2.5rem;
  vertical-align: middle;
  margin-left: 25px;
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
  #header .info .soundtest i {
    vertical-align: baseline;
    display: none;
  }
}
#header .info .mobilemenu-button {
  font-size: 35px;
  font-size: 3.5rem;
  padding-left: 25px;
  vertical-align: -10%;
  color: #000;
  margin-right: 0;
  margin-top: 2px;
}
@media screen and (max-width: 991px) {
  #header .info .mobilemenu-button {
    margin-left: -10px;
  }
}
@media screen and (min-width: 992px) {
  #header .info .mobilemenu-button {
    display: none;
  }
}
#header .header__lang {
  border-left: 2px solid black;
  padding-left: 20px;
  margin-left: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media screen and (max-width: 991px) {
  #header .header__lang {
    display: none;
  }
}
#header .navbar-nav .active a {
  font-weight: 700 !important;
}
#header .menu .inner {
  position: relative;
}
#header .menu .inner ul {
  display: inline-block;
  background-color: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  padding-right: 240px;
  float: right;
}
@media screen and (max-width: 991px) {
  #header .menu .inner ul {
    display: none;
  }
}
#header .menu .inner ul li {
  display: inline-block;
  margin-right: 25px;
}
#header .menu .inner ul li:last-child {
  margin-right: 0;
}
#header .menu .inner ul li a {
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 500;
}
#header .menu .inner ul li a:hover {
  color: #b5d6fa;
}
#header .menu .inner ul li.active a {
  color: #b5d6fa;
}
#header .menu .inner ul::after {
  content: "";
  width: 50vw;
  height: 76px;
  background-color: #000;
  position: absolute;
  right: -50vw;
  top: 0;
  display: block;
}
#header .menu .inner .contact {
  float: right;
  position: absolute;
  right: 0;
  top: -12px;
}
@media screen and (max-width: 991px) {
  #header .menu .inner .contact {
    display: none;
  }
}
#header .menu .inner .contact .links {
  position: absolute;
  top: 42px;
  margin-left: -15px;
  width: 100%;
  text-align: center;
}
#header .menu .inner .contact .links a {
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 500;
}
#header .menu .inner .contact .links a + a {
  border-left: 1px solid #fff;
  margin-left: 5px;
  padding-left: 8px;
}

#mobilemenu .active span a {
  color: #b5d6fa;
}
#mobilemenu .icons {
  padding: 5px;
}
#mobilemenu .icons a {
  padding: 5px 8px;
}
#mobilemenu .icons a span {
  display: none;
}
@media only screen and (max-width: 350px) {
  #mobilemenu .icons {
    padding: 5px 10px;
  }
  #mobilemenu .icons a {
    padding: 5px;
  }
}

.popup-inspiratieboek {
  background: #ffffff;
  bottom: 30px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
  max-width: 350px;
  opacity: 1;
  padding: 25px;
  position: fixed;
  right: 20px;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(600px);
      -ms-transform: translateY(600px);
          transform: translateY(600px);
}
.popup-inspiratieboek p + p {
  margin-top: 20px;
}
.popup-inspiratieboek--active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.popup-inspiratieboek .close-icon {
  background-color: transparent;
  border: none;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 10px;
}
.popup-inspiratieboek .close-icon:hover {
  color: red;
}
.popup-inspiratieboek:after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ffffff;
  clear: both;
  content: "";
  height: 0;
  left: 24px;
  position: absolute;
  top: 100%;
  width: 0;
}

#banner {
  height: 600px;
}
@media screen and (max-width: 767px) {
  #banner {
    height: 45vw;
  }
}
#banner li {
  height: 600px;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  #banner li {
    height: 45vw;
  }
}

#home .intro {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #home .intro {
    padding: 50px 0;
  }
}
#home .intro h2 {
  font-size: 45px;
  font-size: 4.5rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #home .intro h2 {
    margin-bottom: 20px;
  }
}
#home .intro h3 {
  display: none;
}
#home .intro p.col-md-8 {
  font-size: 15px;
  font-size: 1.5rem;
  color: #a4a4a4;
  height: 50px;
  position: relative;
  overflow: hidden;
}
#home .intro p.col-md-8:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
}
#home .intro a {
  margin-left: 20px;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 991px) {
  #home .intro a {
    margin-left: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
#home .intro .black-block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 10px;
  padding-right: 15px;
  margin-top: -150px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1200px) {
  #home .intro .black-block {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #home .intro .black-block {
    padding-left: 0;
    margin-top: 0;
  }
}
#home .intro .black-block .inner {
  background-color: #3E3E3E;
  padding: 50px 0;
  padding-left: 50px;
}
@media screen and (max-width: 1200px) {
  #home .intro .black-block .inner {
    padding-left: 70px;
  }
}
@media screen and (max-width: 767px) {
  #home .intro .black-block .inner {
    padding: 30px;
    margin-top: 30px;
  }
}
#home .intro .black-block .inner ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media screen and (max-width: 991px) {
  #home .intro .black-block .inner ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
#home .intro .black-block .inner ul li {
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  font-style: italic;
  padding: 10px 0;
}
#home .intro .black-block .inner ul li::before {
  content: url("/assets/images/v.png");
  vertical-align: -50%;
  margin-right: 15px;
}
#home #spotlightblog {
  margin-top: 60px;
}
#home #spotlightblog header {
  text-align: left;
  position: relative;
  z-index: 10;
  margin-bottom: 0px;
}
#home #spotlightblog header h4, #home #spotlightblog header h2 {
  color: #000;
  font-size: 60px;
  font-size: 6rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
}
#home #spotlightblog .bloglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#home #spotlightblog .blog {
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
  width: 50%;
}
@media screen and (max-width: 991px) {
  #home #spotlightblog .blog {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  #home #spotlightblog .blog:nth-child(odd) .text {
    float: left;
  }
}
#home #spotlightblog .blog:last-child {
  margin-bottom: 0;
}
#home #spotlightblog .blog .inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px;
}
@media screen and (max-width: 991px) {
  #home #spotlightblog .blog .inner {
    margin: 0;
  }
}
#home #spotlightblog .blog .img {
  height: 350px;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  #home #spotlightblog .blog .img {
    height: 350px;
  }
}
#home #spotlightblog .blog .text {
  background-color: #fff;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -120px;
  margin-right: 20px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
  float: right;
}
@media screen and (max-width: 767px) {
  #home #spotlightblog .blog .text {
    margin-top: -100px;
    padding: 30px;
    margin-right: 0;
  }
}
#home #spotlightblog .blog .text h3 {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 15px;
}
#home #spotlightblog .blog .text p {
  height: 50px;
  position: relative;
  overflow: hidden;
}
#home #spotlightblog .blog .text p:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
}
#home #spotlightblog .blog .text a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 20px;
  display: block;
}
#home #spotlightblog .blog .text a::after {
  content: url("/assets/images/arrow.png");
  margin-left: 15px;
}
#home .partner {
  background-color: #292929;
  color: #fff;
  padding: 140px 0;
}
@media screen and (max-width: 1250px) {
  #home .partner {
    padding: 100px 0;
  }
}
@media screen and (max-width: 991px) {
  #home .partner {
    padding: 50px 0;
  }
}
#home .partner h2 {
  font-size: 50px;
  font-size: 5rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  #home .partner h2 {
    font-size: 40px;
    font-size: 4rem;
  }
}
#home .partner h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #home .partner h2::after {
    margin: 40px 0;
  }
}
#home .partner p {
  font-size: 15px;
  font-size: 1.5rem;
  color: #a4a4a4;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  text-align: justify;
}
@media screen and (max-width: 991px) {
  #home .partner p {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
#home .partner p strong {
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
}

#footer {
  padding: 40px 0;
  display: inline-block;
  width: 100%;
}
#footer .logo {
  display: inline-table;
}
@media screen and (max-width: 767px) {
  #footer .logo {
    display: block;
  }
}
#footer .logo img {
  width: 180px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #footer .logo img {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
#footer .text {
  display: inline-table;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  #footer .text {
    display: block;
  }
}
#footer .text div {
  display: table-cell;
  vertical-align: top;
  width: 2%;
  min-height: 200px;
}
@media screen and (max-width: 991px) {
  #footer .text div {
    display: inline-block;
    width: 50%;
    float: left;
    margin-bottom: 40px;
    vertical-align: top;
  }
  #footer .text div:last-child {
    margin-bottom: 0px;
  }
}
#footer .text div h4, #footer .text div .h4 {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 23px;
  font-size: 2.3rem;
  margin-bottom: 20px;
}
#footer .text div p,
#footer .text div a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #a4a4a4;
}
#footer .text div p strong,
#footer .text div a strong {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
}
#footer .text div li {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #footer .text {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #footer .text div {
    margin-bottom: 24px;
    min-height: 0;
    width: 100%;
  }
}
#footer .bottom {
  border-top: 1px solid #D8D8D8;
  display: inline-block;
  width: 100%;
  padding-top: 30px;
  margin-top: 50px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  #footer .bottom {
    margin-top: 30px;
  }
}
#footer .bottom p,
#footer .bottom a {
  border-right: 1px solid #D8D8D8;
  color: #a4a4a4;
  margin-right: 15px;
  padding-right: 15px;
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 12px;
}
#footer .bottom p:last-child,
#footer .bottom a:last-child {
  border-right: none;
}
#footer .bottom .facebook {
  font-size: 16px;
  font-size: 1.6rem;
}

.d-none {
  display: none !important;
}

@media only screen and (min-width: 767px) {
  .d-sm-block {
    display: block !important;
  }
}
#solutions .main-header {
  background-color: #EFEFEF;
  padding: 40px 20px;
}
@media screen and (max-width: 1250px) {
  #solutions .main-header {
    padding: 30px 0;
  }
}
#solutions .main-header h2, #solutions .main-header h1 {
  font-size: 45px;
  font-size: 4.5rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #solutions .main-header h2, #solutions .main-header h1 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#solutions .main-header p {
  color: #a4a4a4;
  display: inline-block;
  max-width: 70%;
}
@media screen and (max-width: 767px) {
  #solutions .main-header p {
    max-width: 100%;
  }
}
#solutions .main-header .breadcrumb {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  float: right;
  margin-top: 5px;
}
@media screen and (max-width: 991px) {
  #solutions .main-header .breadcrumb {
    float: none;
    margin-top: 15px;
  }
}
#solutions .main-header .breadcrumb a {
  color: #a4a4a4;
}
#solutions .main-header .breadcrumb a:first-child::before {
  content: url("/assets/images/arrow.png");
  vertical-align: middle;
  margin-right: 5px;
}
#solutions .main-header .breadcrumb a:last-child {
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 700;
}
#solutions aside {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  #solutions aside {
    margin: 15px 0;
  }
}
#solutions aside .main > li {
  border-bottom: 1px solid #EFEFEF;
  padding: 15px 20px;
  text-transform: capitalize;
}
#solutions aside .main > li:first-child {
  border-top: 1px solid #EFEFEF;
}
#solutions aside .main > li a,
#solutions aside .main > li h4 {
  font-size: 20px;
  font-size: 2rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #solutions aside .main > li a,
#solutions aside .main > li h4 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#solutions aside .main > li a:hover,
#solutions aside .main > li h4:hover {
  cursor: pointer;
}
#solutions aside .main > li .sub {
  margin-left: 25px;
}
#solutions aside .main > li .sub li {
  list-style-image: url("/assets/images/arrow.png");
  padding-left: 5px;
  margin-top: 10px;
}
#solutions aside .main > li .sub li.active a {
  color: #b5d6fa !important;
}
#solutions aside .main > li .sub li a {
  color: #a4a4a4;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 24px;
}
#solutions aside .main > li .subsub {
  margin-left: 25px;
  margin-bottom: 15px;
}
#solutions .solutionlist {
  padding-top: 60px;
  padding-bottom: 30px;
}
#solutions .solutionlist .solution {
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
  width: 50%;
  float: left;
}
@media screen and (max-width: 991px) {
  #solutions .solutionlist .solution {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  #solutions .solutionlist .solution:nth-child(odd) .text {
    float: left;
  }
}
#solutions .solutionlist .solution:last-child {
  margin-bottom: 0;
}
#solutions .solutionlist .solution .inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px;
}
@media screen and (max-width: 991px) {
  #solutions .solutionlist .solution .inner {
    margin: 0;
  }
}
#solutions .solutionlist .solution .img {
  height: 350px;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  #solutions .solutionlist .solution .img {
    height: 350px;
  }
}
#solutions .solutionlist .solution .text {
  background-color: #fff;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -120px;
  margin-right: 20px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
  float: right;
}
@media screen and (max-width: 767px) {
  #solutions .solutionlist .solution .text {
    margin-top: -100px;
    padding: 30px;
    margin-right: 0;
  }
}
#solutions .solutionlist .solution .text h3, #solutions .solutionlist .solution .text h2 {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 15px;
}
#solutions .solutionlist .solution .text p {
  height: 50px;
  position: relative;
  overflow: hidden;
}
#solutions .solutionlist .solution .text p:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
}
#solutions .solutionlist .solution .text a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 20px;
  display: block;
}
#solutions .solutionlist .solution .text a::after {
  content: url("/assets/images/arrow.png");
  margin-left: 15px;
}
#solutions .headimg {
  width: 100%;
  margin-bottom: 40px;
}
#solutions .solutioncontent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
  padding-left: 50px;
}
@media screen and (max-width: 991px) {
  #solutions .solutioncontent {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  #solutions .solutioncontent {
    padding-left: 0;
  }
}
#solutions .solutioncontent header {
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#solutions .solutioncontent header h3, #solutions .solutioncontent header h2 {
  font-size: 40px;
  font-size: 4rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  #solutions .solutioncontent header h3, #solutions .solutioncontent header h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#solutions .solutioncontent header h3::before, #solutions .solutioncontent header h2::before {
  content: url("/assets/images/light-blue-solutions-icon.png");
  vertical-align: middle;
  margin-right: 15px;
}
#solutions .solutioncontent .intro ul li {
  list-style-type: circle;
  margin-left: 20px;
}
#solutions .solutioncontent .intro ol li {
  list-style-type: decimal;
  margin-left: 20px;
}
#solutions .solutioncontent .intro h3 {
  font-size: 20px;
  font-size: 2rem;
  margin-top: 20px;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
}
#solutions .solutioncontent .intro,
#solutions .solutioncontent .end,
#solutions .solutioncontent li {
  font-size: 15px;
  font-size: 1.5rem;
  color: #a4a4a4;
  line-height: 24px;
}
#solutions .solutioncontent .intro strong, #solutions .solutioncontent .intro h3,
#solutions .solutioncontent .end strong,
#solutions .solutioncontent .end h3,
#solutions .solutioncontent li strong,
#solutions .solutioncontent li h3 {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  display: inline-block;
}
#solutions .solutioncontent .intro a,
#solutions .solutioncontent .end a,
#solutions .solutioncontent li a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}
#solutions .solutioncontent .intro img,
#solutions .solutioncontent .end img {
  width: 100% !important;
  height: auto !important;
  margin: 10px 0;
}
#solutions .solutioncontent .end ul li,
#solutions .solutioncontent .end ol li {
  width: 50%;
  display: inline-block;
  float: left;
  vertical-align: top;
  margin-bottom: 30px;
  line-height: 24px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  #solutions .solutioncontent .end ul li,
#solutions .solutioncontent .end ol li {
    width: 100%;
    padding-right: 0;
    float: none;
    margin-bottom: 20px;
  }
}
#solutions .solutioncontent .end ul li::before,
#solutions .solutioncontent .end ol li::before {
  content: url("/assets/images/light-blue-v.png");
  vertical-align: -10%;
  margin-right: 5px;
}
#solutions .solutioncontent .options,
#solutions .solutioncontent .profiles,
#solutions .solutioncontent .cats {
  padding: 30px 0;
}
#solutions .solutioncontent .options ul li .inner,
#solutions .solutioncontent .profiles ul li .inner,
#solutions .solutioncontent .cats ul li .inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 15px;
  padding: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
  display: block;
  text-decoration: none !important;
}
#solutions .solutioncontent .options ul li .inner .img,
#solutions .solutioncontent .profiles ul li .inner .img,
#solutions .solutioncontent .cats ul li .inner .img {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
}
#solutions .solutioncontent .options ul li .inner p,
#solutions .solutioncontent .profiles ul li .inner p,
#solutions .solutioncontent .cats ul li .inner p {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #000;
  margin-top: 15px;
}
#solutions .solutioncontent .text {
  font-size: 15px;
  font-size: 1.5rem;
  color: #a4a4a4;
}
#solutions .solutioncontent .text strong {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
}
#solutions .solutioncontent .text h4 {
  font-size: 20px;
  font-size: 2rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
#solutions .solutioncontent .text ul,
#solutions .solutioncontent .text ol {
  margin-bottom: 20px;
}
#solutions .solutioncontent .text ul li,
#solutions .solutioncontent .text ol li {
  margin-bottom: 10px;
}
#solutions .solutioncontent .text ul li::before,
#solutions .solutioncontent .text ol li::before {
  content: url("/assets/images/light-blue-v.png");
  margin-right: 5px;
  vertical-align: -10%;
}
#solutions .solutioncontent .text a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}

#projectspage .main-header {
  background-color: #EFEFEF;
  padding: 40px 20px;
}
@media screen and (max-width: 1250px) {
  #projectspage .main-header {
    padding: 30px 0;
  }
}
#projectspage .main-header h2, #projectspage .main-header h1 {
  font-size: 45px;
  font-size: 4.5rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #projectspage .main-header h2, #projectspage .main-header h1 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#projectspage .main-header p {
  color: #a4a4a4;
  display: inline-block;
  max-width: 70%;
}
@media screen and (max-width: 767px) {
  #projectspage .main-header p {
    max-width: 100%;
  }
}

#projects {
  padding-top: 60px;
  padding-bottom: 30px;
  display: inline-block;
  width: 100%;
}
#projects header {
  text-align: right;
  position: relative;
  z-index: 10;
}
#projects header h4, #projects header h2 {
  color: #000;
  font-size: 60px;
  font-size: 6rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
}
#projects .detail {
  text-align: left;
  margin-bottom: 30px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  #projects .detail {
    margin-left: 10px;
  }
}
#projects .projectlist .project:nth-child(odd) .text {
  float: right;
  margin-right: 30px;
}
#projects .projectlist .project {
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}
#projects .projectlist .project:last-child {
  margin-bottom: 0;
}
#projects .projectlist .project .img {
  height: 550px;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  #projects .projectlist .project .img {
    height: 400px;
  }
}
#projects .projectlist .project .text {
  background-color: #fff;
  padding: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -150px;
  margin-left: 30px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  #projects .projectlist .project .text {
    margin-top: -90px;
    padding: 50px;
    margin-left: 0;
    margin-right: 0;
  }
}
#projects .projectlist .project .text h3, #projects .projectlist .project .text h2 {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 15px;
}
#projects .projectlist .project .text p {
  position: relative;
}
#projects .projectlist .project .text a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 30px;
  display: block;
}
#projects .projectlist .project .text a::after {
  content: url("/assets/images/arrow.png");
  margin-left: 15px;
}
#projects .projectmore {
  width: 100%;
  text-align: center;
  margin-top: 100px;
  border-top: 1px solid #EFEFEF;
}
#projects .projectmore a {
  background-color: #000;
  font-size: 20px;
  font-size: 2rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  padding: 15px 20px;
  display: inline-block;
  margin-top: -70px;
  vertical-align: 12%;
}
#projects .projectmore a:hover {
  background-color: #858585;
}

#blogspage .main-header {
  background-color: #EFEFEF;
  padding: 40px 20px;
}
@media screen and (max-width: 1250px) {
  #blogspage .main-header {
    padding: 30px 0;
  }
}
#blogspage .main-header h2, #blogspage .main-header h1 {
  font-size: 45px;
  font-size: 4.5rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #blogspage .main-header h2, #blogspage .main-header h1 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#blogspage .main-header p {
  color: #a4a4a4;
  display: inline-block;
  max-width: 70%;
}
@media screen and (max-width: 767px) {
  #blogspage .main-header p {
    max-width: 100%;
  }
}
#blogspage .main-header .breadcrumb {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  float: right;
  margin-top: 5px;
}
@media screen and (max-width: 991px) {
  #blogspage .main-header .breadcrumb {
    float: none;
    margin-top: 15px;
  }
}
#blogspage .main-header .breadcrumb a {
  color: #a4a4a4;
}
#blogspage .main-header .breadcrumb a:first-child::before {
  content: url("/assets/images/arrow.png");
  vertical-align: middle;
  margin-right: 5px;
}
#blogspage .main-header .breadcrumb a:last-child {
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 700;
}

#blogs {
  padding-top: 60px;
  padding-bottom: 30px;
  display: inline-block;
  width: 100%;
}
#blogs header {
  text-align: right;
  position: relative;
  z-index: 10;
}
#blogs header h4, #blogs header h2 {
  color: #000;
  font-size: 60px;
  font-size: 6rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
}
#blogs .detail {
  text-align: left;
  margin-bottom: 30px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  #blogs .detail {
    margin-left: 10px;
  }
}
#blogs .bloglist {
  margin-top: -11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#blogs .bloglist .blog {
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 991px) {
  #blogs .bloglist .blog {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  #blogs .bloglist .blog:nth-child(odd) .text {
    float: left;
  }
}
#blogs .bloglist .blog:last-child {
  margin-bottom: 0;
}
#blogs .bloglist .blog .inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px;
}
@media screen and (max-width: 991px) {
  #blogs .bloglist .blog .inner {
    margin: 0;
  }
}
#blogs .bloglist .blog .img {
  height: 350px;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  #blogs .bloglist .blog .img {
    height: 350px;
  }
}
#blogs .bloglist .blog .text {
  background-color: #fff;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -120px;
  margin-right: 20px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
  float: right;
}
@media screen and (max-width: 767px) {
  #blogs .bloglist .blog .text {
    margin-top: -100px;
    padding: 30px;
    margin-right: 0;
  }
}
#blogs .bloglist .blog .text h3, #blogs .bloglist .blog .text h2 {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 15px;
}
#blogs .bloglist .blog .text p {
  height: 50px;
  position: relative;
  overflow: hidden;
}
#blogs .bloglist .blog .text p:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
}
#blogs .bloglist .blog .text a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 20px;
  display: block;
}
#blogs .bloglist .blog .text a::after {
  content: url("/assets/images/arrow.png");
  margin-left: 15px;
}

#blogdetail img {
  width: 100%;
  margin: 40px 0;
}
#blogdetail .text {
  font-size: 15px;
  font-size: 1.5rem;
  color: #a4a4a4;
}
#blogdetail .text header {
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 20px;
  margin: 20px 0;
}
#blogdetail .text header h3, #blogdetail .text header h2 {
  font-size: 40px;
  font-size: 4rem;
  color: #000 !important;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  #blogdetail .text header h3, #blogdetail .text header h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#blogdetail .text header h3::before, #blogdetail .text header h2::before {
  content: url("/assets/images/light-blue-solutions-icon.png");
  vertical-align: middle;
  margin-right: 15px;
}
#blogdetail .text strong {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #858585;
}
#blogdetail .text h2 {
  font-size: 25px;
  font-size: 2.5rem;
  color: #000 !important;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
}
#blogdetail .text h3 {
  font-size: 22px;
  font-size: 2.2rem;
  color: #000 !important;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 15px;
}
#blogdetail .text h4 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #000 !important;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
#blogdetail .text ul,
#blogdetail .text ol {
  margin-bottom: 20px;
}
#blogdetail .text ul li,
#blogdetail .text ol li {
  margin-bottom: 10px;
}
#blogdetail .text ul li::before,
#blogdetail .text ol li::before {
  content: url("/assets/images/light-blue-v.png");
  margin-right: 5px;
  vertical-align: -10%;
}
#blogdetail .text a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #858585;
  text-decoration: underline;
}
#blogdetail .text img {
  height: auto !important;
  max-width: 100% !important;
}

#about .main-header {
  background-color: #EFEFEF;
  padding: 40px 20px;
}
@media screen and (max-width: 1250px) {
  #about .main-header {
    padding: 30px 0;
  }
}
#about .main-header h2, #about .main-header h1 {
  font-size: 45px;
  font-size: 4.5rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #about .main-header h2, #about .main-header h1 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#about .main-header p {
  color: #a4a4a4;
  display: inline-block;
  max-width: 70%;
}
@media screen and (max-width: 767px) {
  #about .main-header p {
    max-width: 100%;
  }
}
#about .main-header .breadcrumb {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  float: right;
  margin-top: 5px;
}
@media screen and (max-width: 991px) {
  #about .main-header .breadcrumb {
    float: none;
    margin-top: 15px;
  }
}
#about .main-header .breadcrumb a {
  color: #a4a4a4;
}
#about .main-header .breadcrumb a:first-child::before {
  content: url("/assets/images/arrow.png");
  vertical-align: middle;
  margin-right: 5px;
}
#about .main-header .breadcrumb a:last-child {
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 700;
}
#about aside {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  #about aside {
    margin: 15px 0;
  }
}
#about aside .main > li {
  border-bottom: 1px solid #EFEFEF;
  padding: 15px 20px;
  text-transform: capitalize;
}
#about aside .main > li:first-child {
  border-top: 1px solid #EFEFEF;
}
#about aside .main > li a {
  font-size: 20px;
  font-size: 2rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
@media screen and (max-width: 767px) {
  #about aside .main > li a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#about aside .main > li .sub {
  margin-left: 25px;
}
#about aside .main > li .sub li {
  list-style-image: url("/assets/images/arrow.png");
  padding-left: 5px;
  margin-top: 10px;
}
#about aside .main > li .sub li.active a {
  color: #b5d6fa !important;
}
#about aside .main > li .sub li a {
  color: #a4a4a4;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 24px;
}
#about aside .main > li .subsub {
  margin-left: 25px;
  margin-bottom: 15px;
}
#about .aboutcontent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
  padding-left: 50px;
}
@media screen and (max-width: 991px) {
  #about .aboutcontent {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  #about .aboutcontent {
    padding-left: 0;
  }
}
#about .aboutcontent header {
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#about .aboutcontent header h3, #about .aboutcontent header h2 {
  font-size: 40px;
  font-size: 4rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  #about .aboutcontent header h3, #about .aboutcontent header h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#about .aboutcontent header h3::before, #about .aboutcontent header h2::before {
  content: url("/assets/images/light-blue-solutions-icon.png");
  vertical-align: middle;
  margin-right: 15px;
}
#about .aboutcontent .text {
  font-size: 15px;
  font-size: 1.5rem;
  color: #a4a4a4;
}
#about .aboutcontent .text strong {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
}
#about .aboutcontent .text h4 {
  font-size: 20px;
  font-size: 2rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
#about .aboutcontent .text ul,
#about .aboutcontent .text ol {
  margin-bottom: 20px;
}
#about .aboutcontent .text ul li,
#about .aboutcontent .text ol li {
  margin-bottom: 10px;
}
#about .aboutcontent .text ul li::before,
#about .aboutcontent .text ol li::before {
  content: url("/assets/images/light-blue-v.png");
  margin-right: 5px;
  vertical-align: -10%;
}
#about .aboutcontent .text a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}
#about .aboutcontent .text video {
  width: 100%;
  margin-top: 30px;
}

#contact .main-header {
  background-color: #EFEFEF;
  padding: 40px 20px;
}
@media screen and (max-width: 1250px) {
  #contact .main-header {
    padding: 30px 0;
  }
}
#contact .main-header h2, #contact .main-header h1 {
  font-size: 45px;
  font-size: 4.5rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #contact .main-header h2, #contact .main-header h1 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#contact .main-header p {
  color: #a4a4a4;
  display: inline-block;
  max-width: 70%;
}
@media screen and (max-width: 767px) {
  #contact .main-header p {
    max-width: 100%;
  }
}
#contact .form {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-top: 20px;
}
#contact .form .text {
  margin-bottom: 60px;
}
#contact .form .form-group {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #contact .form .form-group {
    padding: 20px 10px;
  }
}
#contact .form .form-group label {
  display: block;
  margin-bottom: 15px;
  clear: left;
}
#contact .form .form-group input,
#contact .form .form-group textarea {
  padding: 10px;
  width: 100%;
  border: 1px solid #a4a4a4;
}
#contact .form .form-group input + label,
#contact .form .form-group textarea + label {
  margin-top: 20px;
}
#contact .form .form-group button {
  background-color: #000;
  border-radius: 15px;
  color: #fff;
  padding: 15px 20px;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
}
#contact .form .form-group .form-error {
  color: red;
  margin-top: 10px;
  display: inline-block;
}
#contact .form .form-group .form-error a {
  color: red;
  text-decoration: underline;
}
#contact .form .form-group .policy {
  margin-top: 10px;
  margin-bottom: 15px;
}
#contact .form .form-group .policy input {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}
#contact .form .form-group .policy label {
  display: inline-block;
  width: auto;
}
#contact .form .form-group .policy a {
  color: #b5d6fa;
}
#contact .form .form-group .policy + .form-error {
  display: block;
  margin-bottom: 20px;
}
#contact .form .form-group .info-policy {
  color: #a4a4a4;
  margin-top: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
#contact .form .form-group .form-inline input {
  width: 49%;
  float: left;
}
#contact .form .form-group .form-inline input + input {
  float: right;
}

#page .main-header {
  background-color: #EFEFEF;
  padding: 40px 20px;
}
@media screen and (max-width: 1250px) {
  #page .main-header {
    padding: 30px 0;
  }
}
#page .main-header h2, #page .main-header h1 {
  font-size: 45px;
  font-size: 4.5rem;
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #page .main-header h2, #page .main-header h1 {
    font-size: 30px;
    font-size: 3rem;
  }
}
#page .main-header p {
  color: #a4a4a4;
  display: inline-block;
  max-width: 70%;
}
#page .text {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
#page .text p {
  margin: 15px 0px;
}
#page .text h1,
#page .text h2,
#page .text h3,
#page .text h4 {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
}
#page .text strong {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
}
#page .text a {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-decoration: underline;
  color: #000;
}
#page .text ol, #page .text ul {
  list-style-type: disc;
  margin: 20px 0px;
}
#page .text ol li, #page .text ul li {
  margin-bottom: 10px;
  margin-left: 20px;
}
#page .text video {
  width: 100%;
  margin-top: 30px;
}

#splash {
  background-color: #fff;
  width: 100vw;
  height: 100vh;
}
#splash .splash__lang {
  position: absolute;
  top: 30px;
  right: 30px;
}
#splash .splash__lang a {
  color: black;
  font-size: 16px;
  margin: 0 8px;
}
#splash .splash__lang .active a {
  font-weight: 700;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash {
    height: auto;
  }
}
#splash .list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #d3dce5;
  background-image: url("/assets/images/lijnen.png");
  background-position: 0% 5%;
  background-repeat: no-repeat;
  -webkit-animation-name: wave;
          animation-name: wave;
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-image: none;
  }
}
@-webkit-keyframes wave {
  from {
    background-position: 0% 5%;
  }
  to {
    background-position: 100% 5%;
  }
}
@keyframes wave {
  from {
    background-position: 0% 5%;
  }
  to {
    background-position: 100% 5%;
  }
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article:nth-child(2) a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#splash .list article {
  height: 100%;
  text-align: center;
  width: 33.333%;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article {
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    background-image: url("/assets/images/lijnen.png");
    background-repeat: no-repeat;
  }
}
#splash .list article:hover {
  width: 80%;
  cursor: pointer;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article:hover {
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
#splash .list article:hover h2,
#splash .list article:hover p,
#splash .list article:hover button {
  opacity: 1;
  -webkit-transition-delay: 0.4s !important;
       -o-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
  -webkit-transition-duration: 0.3s !important;
       -o-transition-duration: 0.3s !important;
          transition-duration: 0.3s !important;
}
#splash .list article a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 767px) {
  #splash .list article a {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
#splash .list article a .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article a .img {
    border-bottom: 2px solid #fff;
  }
}
@media only screen and (max-width: 767px) {
  #splash .list article a .img {
    height: 50vw;
    border-bottom: none;
  }
}
#splash .list article a header {
  background-color: #fff;
  width: 100%;
  padding: 50px;
  height: 50%;
  border: 1px solid #d3dce5;
  border-top: none;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article a header {
    height: auto;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  #splash .list article a header {
    width: 100%;
    border: none;
  }
}
#splash .list article a header img {
  width: 60%;
  max-width: 300px;
}
@media only screen and (max-width: 767px) {
  #splash .list article a header img {
    width: 80%;
  }
}
#splash .list article a header h2 {
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  font-size: 2.5rem;
  margin-top: 30px;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article a header h2 {
    opacity: 1;
  }
}
#splash .list article a header p {
  color: #a4a4a4;
  margin-top: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article a header p {
    opacity: 1;
  }
}
#splash .list article a header button {
  border: none;
  background-color: #000;
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (max-width: 991px), (max-height: 799px) {
  #splash .list article a header button {
    opacity: 1;
  }
}
#splash .list__french article {
  width: 100%;
}
#splash .list__french article:hover {
  width: 100%;
}

html {
  font-size: 62.5%;
  width: 100vw;
  overflow-x: hidden;
  background-color: #b5d6fa;
}

body {
  background-color: #fff;
  font-size: 62.5%;
  max-width: 100vw;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
  opacity: 1;
  -webkit-transition: 1s opacity;
  -o-transition: 1s opacity;
  transition: 1s opacity;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  font-size: 1.5rem;
}
body.fade-out {
  opacity: 0;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

#wrapper {
  display: block;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  font-size: 13px;
  overflow: hidden;
}
@media print {
  #wrapper {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.content {
  max-width: 1200px;
  display: block;
  margin: 0px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1250px) {
  .content {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .content {
    margin: 0 10px;
  }
}

.button-bl {
  background-color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
  padding: 10px 15px;
  display: inline-block;
}
.button-bl:hover {
  color: #fff;
}

a:link,
a:visited,
a:focus,
a:hover,
a:active {
  text-decoration: none;
}

a[name=button] {
  display: inline-block !important;
  background-color: #000;
  color: white !important;
  padding: 10px 25px !important;
  text-align: center;
}
a[name=button]:after {
  content: none !important;
}
a[name=button]:hover {
  background-color: #858585 !important;
}

p {
  line-height: 24px;
  font-size: 15px;
  font-size: 1.5rem;
}

input:focus,
textarea:focus,
button {
  outline: none;
}

.hidden {
  display: none;
}

.error-message {
  color: #721c24 !important;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 15px;
  margin: 0 !important;
  margin-bottom: 15px !important;
  line-height: 26px;
}
.error-message a {
  color: #721c24 !important;
  text-decoration: underline;
}

.warning-message {
  color: #9B7D2E !important;
  background-color: #FFF3CD;
  border: 1px solid #FFEEBA;
  padding: 15px;
  margin: 0 !important;
  margin-bottom: 15px !important;
  line-height: 26px;
}
.warning-message a {
  color: #9B7D2E !important;
  text-decoration: underline;
}

.success-message {
  color: #155724 !important;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 15px;
  margin: 0 !important;
  margin-bottom: 15px !important;
  line-height: 26px;
}
.success-message a {
  color: #155724 !important;
  text-decoration: underline;
}

.g-recaptcha {
  margin-top: 20px;
}

#notfound > div {
  height: 100vh;
}
#notfound > div h2 {
  font-size: 100px;
  font-weight: bold;
}
#notfound > div h3 {
  font-size: 16px;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-center {
  text-align: center;
}

.text-black {
  color: #000 !important;
}

/*#popup {
	background-color: $activeColor;
	color: #fff;
	display: flex !important;
	padding-bottom: 20px;
	padding-top: 15px;
	padding-left: 35px;
	padding-right: 25px;
	position: fixed;
	top: 150px;
	right: -950px;
	z-index: 9999;
	transition: all 0.5s ease-out;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);


	&.show{
		right: 0;
	}
	a{
		color: #fff;
		display: flex;
		align-items: center;
	}

	i{
		display: inline-block;
		padding-right: 30px;
	}
	i:not(.close){
		font-size: 5rem;

	}

	i.close{
		font-size: 3rem;
	}
	h3{
		padding: 20px 0;
		font-size: 2.8rem;
		line-height: normal;
		display: inline-block;
		width: 270px;
		@include font-proxima-medium;
	}
	&.close{
		position: absolute;
		left: 10px;
		top: 7px;
		font-size: 25px;
	}
	@media screen and (max-width: $tablet-min) {
		padding: 10px;
		h3{
			font-size: 2.5rem;
			width: 50vw;
		}
		i:not(.close){
			font-size: 3rem;

		}
	}
}*/