@charset "UTF-8";
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

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

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

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

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

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

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  padding: 0;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.alignright {
  float: right;
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

.alignleft {
  float: left;
}

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

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

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

.bold, .content-row.google-map .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c h3, .content-row.icon-grid .feature-item h4, .icon-grid.the-blog .feature-item h4, strong, b {
  font-weight: bold;
}

.undo-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.undo-li {
  margin-bottom: 0;
  list-style: none;
  list-style-type: none;
}

.undo-p {
  margin: 0;
}

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

svg {
  max-height: 100%;
}

.clearfix:after, .content-row.half-image-half-content .content:after, .half-image-half-content.the-blog .content:after, .cf:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.flat-left {
  padding-left: 0;
}

.flat-right {
  padding-right: 0;
}

.flat-both {
  padding-left: 0;
  padding-right: 0;
}

.flat-top {
  padding-top: 0;
}

.flat-bottom {
  padding-bottom: 0;
}

.flat-vertical {
  padding-top: 0;
  padding-bottom: 0;
}

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.float-none {
  float: none !important;
}

@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.w-100 {
  width: 100% !important;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

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

.d-inline-block {
  display: inline-block !important;
}

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

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

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

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

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

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

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

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

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

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

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

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

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

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

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

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

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

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

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

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

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

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

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

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

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

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

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

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

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

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

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

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Fonts
 */
/*
 * Colors
 */
/*
 * Misc.
 */
/*
 * Font Awesome
 */
/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .open-submenu:after,
.bc-container .rank-math-breadcrumb p span.separator:after,
.checkmark-list li:before,
#mobile-nav > ul.wrapper .meta .site-phone > a:before,
#mobile-nav > ul.wrapper > li.menu-item-has-children > a:after,
#header #site-nav > ul > li.site-phone a:before,
#header #site-nav > ul > li.menu-item-has-children:after,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .open-submenu:after, .bc-container .rank-math-breadcrumb p span.separator:after, .checkmark-list li:before, #mobile-nav > ul.wrapper .meta .site-phone > a:before, #mobile-nav > ul.wrapper > li.menu-item-has-children > a:after, #header #site-nav > ul > li.site-phone a:before, #header #site-nav > ul > li.menu-item-has-children:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .fa-pull-left.open-submenu:after,
.bc-container .rank-math-breadcrumb p span.fa-pull-left.separator:after,
.checkmark-list li.fa-pull-left:before,
#mobile-nav > ul.wrapper .meta .site-phone > a.fa-pull-left:before,
#mobile-nav > ul.wrapper > li.menu-item-has-children > a.fa-pull-left:after,
#header #site-nav > ul > li.site-phone a.fa-pull-left:before,
#header #site-nav > ul > li.fa-pull-left.menu-item-has-children:after,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .fa-pull-right.open-submenu:after,
.bc-container .rank-math-breadcrumb p span.fa-pull-right.separator:after,
.checkmark-list li.fa-pull-right:before,
#mobile-nav > ul.wrapper .meta .site-phone > a.fa-pull-right:before,
#mobile-nav > ul.wrapper > li.menu-item-has-children > a.fa-pull-right:after,
#header #site-nav > ul > li.site-phone a.fa-pull-right:before,
#header #site-nav > ul > li.fa-pull-right.menu-item-has-children:after,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "";
}

.fa-accessible-icon:before {
  content: "";
}

.fa-accusoft:before {
  content: "";
}

.fa-acquisitions-incorporated:before {
  content: "";
}

.fa-ad:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-card:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-adversal:before {
  content: "";
}

.fa-affiliatetheme:before {
  content: "";
}

.fa-air-freshener:before {
  content: "";
}

.fa-airbnb:before {
  content: "";
}

.fa-algolia:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-alipay:before {
  content: "";
}

.fa-allergies:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-amazon-pay:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-amilia:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angry:before {
  content: "";
}

.fa-angrycreative:before {
  content: "";
}

.fa-angular:before {
  content: "";
}

.fa-ankh:before {
  content: "";
}

.fa-app-store:before {
  content: "";
}

.fa-app-store-ios:before {
  content: "";
}

.fa-apper:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-apple-alt:before {
  content: "";
}

.fa-apple-pay:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-archway:before {
  content: "";
}

.fa-arrow-alt-circle-down:before {
  content: "";
}

.fa-arrow-alt-circle-left:before {
  content: "";
}

.fa-arrow-alt-circle-right:before {
  content: "";
}

.fa-arrow-alt-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-arrows-alt-h:before {
  content: "";
}

.fa-arrows-alt-v:before {
  content: "";
}

.fa-artstation:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-asymmetrik:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-atlas:before {
  content: "";
}

.fa-atlassian:before {
  content: "";
}

.fa-atom:before {
  content: "";
}

.fa-audible:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-autoprefixer:before {
  content: "";
}

.fa-avianex:before {
  content: "";
}

.fa-aviato:before {
  content: "";
}

.fa-award:before {
  content: "";
}

.fa-aws:before {
  content: "";
}

.fa-baby:before {
  content: "";
}

.fa-baby-carriage:before {
  content: "";
}

.fa-backspace:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-bacon:before {
  content: "";
}

.fa-bacteria:before {
  content: "";
}

.fa-bacterium:before {
  content: "";
}

.fa-bahai:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-balance-scale-left:before {
  content: "";
}

.fa-balance-scale-right:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-band-aid:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-bars:before {
  content: "";
}

.fa-baseball-ball:before {
  content: "";
}

.fa-basketball-ball:before {
  content: "";
}

.fa-bath:before {
  content: "";
}

.fa-battery-empty:before {
  content: "";
}

.fa-battery-full:before {
  content: "";
}

.fa-battery-half:before {
  content: "";
}

.fa-battery-quarter:before {
  content: "";
}

.fa-battery-three-quarters:before {
  content: "";
}

.fa-battle-net:before {
  content: "";
}

.fa-bed:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bezier-curve:before {
  content: "";
}

.fa-bible:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-biking:before {
  content: "";
}

.fa-bimobject:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-biohazard:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitcoin:before {
  content: "";
}

.fa-bity:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-blackberry:before {
  content: "";
}

.fa-blender:before {
  content: "";
}

.fa-blender-phone:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-blog:before {
  content: "";
}

.fa-blogger:before {
  content: "";
}

.fa-blogger-b:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-bolt:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-bone:before {
  content: "";
}

.fa-bong:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-book-dead:before {
  content: "";
}

.fa-book-medical:before {
  content: "";
}

.fa-book-open:before {
  content: "";
}

.fa-book-reader:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-bootstrap:before {
  content: "";
}

.fa-border-all:before {
  content: "";
}

.fa-border-none:before {
  content: "";
}

.fa-border-style:before {
  content: "";
}

.fa-bowling-ball:before {
  content: "";
}

.fa-box:before {
  content: "";
}

.fa-box-open:before {
  content: "";
}

.fa-box-tissue:before {
  content: "";
}

.fa-boxes:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-brain:before {
  content: "";
}

.fa-bread-slice:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-briefcase-medical:before {
  content: "";
}

.fa-broadcast-tower:before {
  content: "";
}

.fa-broom:before {
  content: "";
}

.fa-brush:before {
  content: "";
}

.fa-btc:before {
  content: "";
}

.fa-buffer:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-burn:before {
  content: "";
}

.fa-buromobelexperte:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-bus-alt:before {
  content: "";
}

.fa-business-time:before {
  content: "";
}

.fa-buy-n-large:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-calendar-alt:before {
  content: "";
}

.fa-calendar-check:before {
  content: "";
}

.fa-calendar-day:before {
  content: "";
}

.fa-calendar-minus:before {
  content: "";
}

.fa-calendar-plus:before {
  content: "";
}

.fa-calendar-times:before {
  content: "";
}

.fa-calendar-week:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-campground:before {
  content: "";
}

.fa-canadian-maple-leaf:before {
  content: "";
}

.fa-candy-cane:before {
  content: "";
}

.fa-cannabis:before {
  content: "";
}

.fa-capsules:before {
  content: "";
}

.fa-car:before {
  content: "";
}

.fa-car-alt:before {
  content: "";
}

.fa-car-battery:before {
  content: "";
}

.fa-car-crash:before {
  content: "";
}

.fa-car-side:before {
  content: "";
}

.fa-caravan:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-caret-square-down:before {
  content: "";
}

.fa-caret-square-left:before {
  content: "";
}

.fa-caret-square-right:before {
  content: "";
}

.fa-caret-square-up:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-carrot:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cash-register:before {
  content: "";
}

.fa-cat:before {
  content: "";
}

.fa-cc-amazon-pay:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-apple-pay:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-centercode:before {
  content: "";
}

.fa-centos:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-chair:before {
  content: "";
}

.fa-chalkboard:before {
  content: "";
}

.fa-chalkboard-teacher:before {
  content: "";
}

.fa-charging-station:before {
  content: "";
}

.fa-chart-area:before {
  content: "";
}

.fa-chart-bar:before {
  content: "";
}

.fa-chart-line:before {
  content: "";
}

.fa-chart-pie:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-check-double:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-cheese:before {
  content: "";
}

.fa-chess:before {
  content: "";
}

.fa-chess-bishop:before {
  content: "";
}

.fa-chess-board:before {
  content: "";
}

.fa-chess-king:before {
  content: "";
}

.fa-chess-knight:before {
  content: "";
}

.fa-chess-pawn:before {
  content: "";
}

.fa-chess-queen:before {
  content: "";
}

.fa-chess-rook:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-chromecast:before {
  content: "";
}

.fa-church:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-circle-notch:before {
  content: "";
}

.fa-city:before {
  content: "";
}

.fa-clinic-medical:before {
  content: "";
}

.fa-clipboard:before {
  content: "";
}

.fa-clipboard-check:before {
  content: "";
}

.fa-clipboard-list:before {
  content: "";
}

.fa-clock:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-closed-captioning:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-cloud-download-alt:before {
  content: "";
}

.fa-cloud-meatball:before {
  content: "";
}

.fa-cloud-moon:before {
  content: "";
}

.fa-cloud-moon-rain:before {
  content: "";
}

.fa-cloud-rain:before {
  content: "";
}

.fa-cloud-showers-heavy:before {
  content: "";
}

.fa-cloud-sun:before {
  content: "";
}

.fa-cloud-sun-rain:before {
  content: "";
}

.fa-cloud-upload-alt:before {
  content: "";
}

.fa-cloudflare:before {
  content: "";
}

.fa-cloudscale:before {
  content: "";
}

.fa-cloudsmith:before {
  content: "";
}

.fa-cloudversify:before {
  content: "";
}

.fa-cocktail:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-code-branch:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cog:before {
  content: "";
}

.fa-cogs:before {
  content: "";
}

.fa-coins:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-comment-alt:before {
  content: "";
}

.fa-comment-dollar:before {
  content: "";
}

.fa-comment-dots:before {
  content: "";
}

.fa-comment-medical:before {
  content: "";
}

.fa-comment-slash:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-comments-dollar:before {
  content: "";
}

.fa-compact-disc:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-compress-alt:before {
  content: "";
}

.fa-compress-arrows-alt:before {
  content: "";
}

.fa-concierge-bell:before {
  content: "";
}

.fa-confluence:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-cookie:before {
  content: "";
}

.fa-cookie-bite:before {
  content: "";
}

.fa-copy:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-cotton-bureau:before {
  content: "";
}

.fa-couch:before {
  content: "";
}

.fa-cpanel:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-creative-commons-by:before {
  content: "";
}

.fa-creative-commons-nc:before {
  content: "";
}

.fa-creative-commons-nc-eu:before {
  content: "";
}

.fa-creative-commons-nc-jp:before {
  content: "";
}

.fa-creative-commons-nd:before {
  content: "";
}

.fa-creative-commons-pd:before {
  content: "";
}

.fa-creative-commons-pd-alt:before {
  content: "";
}

.fa-creative-commons-remix:before {
  content: "";
}

.fa-creative-commons-sa:before {
  content: "";
}

.fa-creative-commons-sampling:before {
  content: "";
}

.fa-creative-commons-sampling-plus:before {
  content: "";
}

.fa-creative-commons-share:before {
  content: "";
}

.fa-creative-commons-zero:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-critical-role:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-crop-alt:before {
  content: "";
}

.fa-cross:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-crow:before {
  content: "";
}

.fa-crown:before {
  content: "";
}

.fa-crutch:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-css3-alt:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-cut:before {
  content: "";
}

.fa-cuttlefish:before {
  content: "";
}

.fa-d-and-d:before {
  content: "";
}

.fa-d-and-d-beyond:before {
  content: "";
}

.fa-dailymotion:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-deaf:before {
  content: "";
}

.fa-deezer:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-democrat:before {
  content: "";
}

.fa-deploydog:before {
  content: "";
}

.fa-deskpro:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-dev:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-dharmachakra:before {
  content: "";
}

.fa-dhl:before {
  content: "";
}

.fa-diagnoses:before {
  content: "";
}

.fa-diaspora:before {
  content: "";
}

.fa-dice:before {
  content: "";
}

.fa-dice-d20:before {
  content: "";
}

.fa-dice-d6:before {
  content: "";
}

.fa-dice-five:before {
  content: "";
}

.fa-dice-four:before {
  content: "";
}

.fa-dice-one:before {
  content: "";
}

.fa-dice-six:before {
  content: "";
}

.fa-dice-three:before {
  content: "";
}

.fa-dice-two:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-digital-ocean:before {
  content: "";
}

.fa-digital-tachograph:before {
  content: "";
}

.fa-directions:before {
  content: "";
}

.fa-discord:before {
  content: "";
}

.fa-discourse:before {
  content: "";
}

.fa-disease:before {
  content: "";
}

.fa-divide:before {
  content: "";
}

.fa-dizzy:before {
  content: "";
}

.fa-dna:before {
  content: "";
}

.fa-dochub:before {
  content: "";
}

.fa-docker:before {
  content: "";
}

.fa-dog:before {
  content: "";
}

.fa-dollar-sign:before {
  content: "";
}

.fa-dolly:before {
  content: "";
}

.fa-dolly-flatbed:before {
  content: "";
}

.fa-donate:before {
  content: "";
}

.fa-door-closed:before {
  content: "";
}

.fa-door-open:before {
  content: "";
}

.fa-dot-circle:before {
  content: "";
}

.fa-dove:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-draft2digital:before {
  content: "";
}

.fa-drafting-compass:before {
  content: "";
}

.fa-dragon:before {
  content: "";
}

.fa-draw-polygon:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-dribbble-square:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-drum:before {
  content: "";
}

.fa-drum-steelpan:before {
  content: "";
}

.fa-drumstick-bite:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-dumbbell:before {
  content: "";
}

.fa-dumpster:before {
  content: "";
}

.fa-dumpster-fire:before {
  content: "";
}

.fa-dungeon:before {
  content: "";
}

.fa-dyalog:before {
  content: "";
}

.fa-earlybirds:before {
  content: "";
}

.fa-ebay:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-edge-legacy:before {
  content: "";
}

.fa-edit:before {
  content: "";
}

.fa-egg:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-elementor:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-ello:before {
  content: "";
}

.fa-ember:before {
  content: "";
}

.fa-empire:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-text:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-equals:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-erlang:before {
  content: "";
}

.fa-ethereum:before {
  content: "";
}

.fa-ethernet:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-euro-sign:before {
  content: "";
}

.fa-evernote:before {
  content: "";
}

.fa-exchange-alt:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-exclamation-triangle:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-expand-alt:before {
  content: "";
}

.fa-expand-arrows-alt:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-external-link-alt:before {
  content: "";
}

.fa-external-link-square-alt:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-dropper:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-facebook-f:before {
  content: "";
}

.fa-facebook-messenger:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-fan:before {
  content: "";
}

.fa-fantasy-flight-games:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-faucet:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-feather:before {
  content: "";
}

.fa-feather-alt:before {
  content: "";
}

.fa-fedex:before {
  content: "";
}

.fa-fedora:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-figma:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-alt:before {
  content: "";
}

.fa-file-archive:before {
  content: "";
}

.fa-file-audio:before {
  content: "";
}

.fa-file-code:before {
  content: "";
}

.fa-file-contract:before {
  content: "";
}

.fa-file-csv:before {
  content: "";
}

.fa-file-download:before {
  content: "";
}

.fa-file-excel:before {
  content: "";
}

.fa-file-export:before {
  content: "";
}

.fa-file-image:before {
  content: "";
}

.fa-file-import:before {
  content: "";
}

.fa-file-invoice:before {
  content: "";
}

.fa-file-invoice-dollar:before {
  content: "";
}

.fa-file-medical:before {
  content: "";
}

.fa-file-medical-alt:before {
  content: "";
}

.fa-file-pdf:before {
  content: "";
}

.fa-file-powerpoint:before {
  content: "";
}

.fa-file-prescription:before {
  content: "";
}

.fa-file-signature:before {
  content: "";
}

.fa-file-upload:before {
  content: "";
}

.fa-file-video:before {
  content: "";
}

.fa-file-word:before {
  content: "";
}

.fa-fill:before {
  content: "";
}

.fa-fill-drip:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-fingerprint:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-fire-alt:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-firefox-browser:before {
  content: "";
}

.fa-first-aid:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-first-order-alt:before {
  content: "";
}

.fa-firstdraft:before {
  content: "";
}

.fa-fish:before {
  content: "";
}

.fa-fist-raised:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-flag-usa:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-flipboard:before {
  content: "";
}

.fa-flushed:before {
  content: "";
}

.fa-fly:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-minus:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-folder-plus:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-font-awesome:before {
  content: "";
}

.fa-font-awesome-alt:before {
  content: "";
}

.fa-font-awesome-flag:before {
  content: "";
}

.fa-font-awesome-logo-full:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-fonticons-fi:before {
  content: "";
}

.fa-football-ball:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-fort-awesome-alt:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-freebsd:before {
  content: "";
}

.fa-frog:before {
  content: "";
}

.fa-frown:before {
  content: "";
}

.fa-frown-open:before {
  content: "";
}

.fa-fulcrum:before {
  content: "";
}

.fa-funnel-dollar:before {
  content: "";
}

.fa-futbol:before {
  content: "";
}

.fa-galactic-republic:before {
  content: "";
}

.fa-galactic-senate:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-gas-pump:before {
  content: "";
}

.fa-gavel:before {
  content: "";
}

.fa-gem:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-ghost:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-gifts:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-git-alt:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-gitkraken:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-gitter:before {
  content: "";
}

.fa-glass-cheers:before {
  content: "";
}

.fa-glass-martini:before {
  content: "";
}

.fa-glass-martini-alt:before {
  content: "";
}

.fa-glass-whiskey:before {
  content: "";
}

.fa-glasses:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-globe-africa:before {
  content: "";
}

.fa-globe-americas:before {
  content: "";
}

.fa-globe-asia:before {
  content: "";
}

.fa-globe-europe:before {
  content: "";
}

.fa-gofore:before {
  content: "";
}

.fa-golf-ball:before {
  content: "";
}

.fa-goodreads:before {
  content: "";
}

.fa-goodreads-g:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-google-drive:before {
  content: "";
}

.fa-google-pay:before {
  content: "";
}

.fa-google-play:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-google-plus-g:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-gopuram:before {
  content: "";
}

.fa-graduation-cap:before {
  content: "";
}

.fa-gratipay:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-greater-than:before {
  content: "";
}

.fa-greater-than-equal:before {
  content: "";
}

.fa-grimace:before {
  content: "";
}

.fa-grin:before {
  content: "";
}

.fa-grin-alt:before {
  content: "";
}

.fa-grin-beam:before {
  content: "";
}

.fa-grin-beam-sweat:before {
  content: "";
}

.fa-grin-hearts:before {
  content: "";
}

.fa-grin-squint:before {
  content: "";
}

.fa-grin-squint-tears:before {
  content: "";
}

.fa-grin-stars:before {
  content: "";
}

.fa-grin-tears:before {
  content: "";
}

.fa-grin-tongue:before {
  content: "";
}

.fa-grin-tongue-squint:before {
  content: "";
}

.fa-grin-tongue-wink:before {
  content: "";
}

.fa-grin-wink:before {
  content: "";
}

.fa-grip-horizontal:before {
  content: "";
}

.fa-grip-lines:before {
  content: "";
}

.fa-grip-lines-vertical:before {
  content: "";
}

.fa-grip-vertical:before {
  content: "";
}

.fa-gripfire:before {
  content: "";
}

.fa-grunt:before {
  content: "";
}

.fa-guilded:before {
  content: "";
}

.fa-guitar:before {
  content: "";
}

.fa-gulp:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-hacker-news-square:before {
  content: "";
}

.fa-hackerrank:before {
  content: "";
}

.fa-hamburger:before {
  content: "";
}

.fa-hammer:before {
  content: "";
}

.fa-hamsa:before {
  content: "";
}

.fa-hand-holding:before {
  content: "";
}

.fa-hand-holding-heart:before {
  content: "";
}

.fa-hand-holding-medical:before {
  content: "";
}

.fa-hand-holding-usd:before {
  content: "";
}

.fa-hand-holding-water:before {
  content: "";
}

.fa-hand-lizard:before {
  content: "";
}

.fa-hand-middle-finger:before {
  content: "";
}

.fa-hand-paper:before {
  content: "";
}

.fa-hand-peace:before {
  content: "";
}

.fa-hand-point-down:before {
  content: "";
}

.fa-hand-point-left:before {
  content: "";
}

.fa-hand-point-right:before {
  content: "";
}

.fa-hand-point-up:before {
  content: "";
}

.fa-hand-pointer:before {
  content: "";
}

.fa-hand-rock:before {
  content: "";
}

.fa-hand-scissors:before {
  content: "";
}

.fa-hand-sparkles:before {
  content: "";
}

.fa-hand-spock:before {
  content: "";
}

.fa-hands:before {
  content: "";
}

.fa-hands-helping:before {
  content: "";
}

.fa-hands-wash:before {
  content: "";
}

.fa-handshake:before {
  content: "";
}

.fa-handshake-alt-slash:before {
  content: "";
}

.fa-handshake-slash:before {
  content: "";
}

.fa-hanukiah:before {
  content: "";
}

.fa-hard-hat:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-hat-cowboy:before {
  content: "";
}

.fa-hat-cowboy-side:before {
  content: "";
}

.fa-hat-wizard:before {
  content: "";
}

.fa-hdd:before {
  content: "";
}

.fa-head-side-cough:before {
  content: "";
}

.fa-head-side-cough-slash:before {
  content: "";
}

.fa-head-side-mask:before {
  content: "";
}

.fa-head-side-virus:before {
  content: "";
}

.fa-heading:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-headphones-alt:before {
  content: "";
}

.fa-headset:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-heart-broken:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-helicopter:before {
  content: "";
}

.fa-highlighter:before {
  content: "";
}

.fa-hiking:before {
  content: "";
}

.fa-hippo:before {
  content: "";
}

.fa-hips:before {
  content: "";
}

.fa-hire-a-helper:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-hive:before {
  content: "";
}

.fa-hockey-puck:before {
  content: "";
}

.fa-holly-berry:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-hooli:before {
  content: "";
}

.fa-hornbill:before {
  content: "";
}

.fa-horse:before {
  content: "";
}

.fa-horse-head:before {
  content: "";
}

.fa-hospital:before {
  content: "";
}

.fa-hospital-alt:before {
  content: "";
}

.fa-hospital-symbol:before {
  content: "";
}

.fa-hospital-user:before {
  content: "";
}

.fa-hot-tub:before {
  content: "";
}

.fa-hotdog:before {
  content: "";
}

.fa-hotel:before {
  content: "";
}

.fa-hotjar:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-start:before {
  content: "";
}

.fa-house-damage:before {
  content: "";
}

.fa-house-user:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-hryvnia:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-hubspot:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-ice-cream:before {
  content: "";
}

.fa-icicles:before {
  content: "";
}

.fa-icons:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-id-card:before {
  content: "";
}

.fa-id-card-alt:before {
  content: "";
}

.fa-ideal:before {
  content: "";
}

.fa-igloo:before {
  content: "";
}

.fa-image:before {
  content: "";
}

.fa-images:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-infinity:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-innosoft:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-instagram-square:before {
  content: "";
}

.fa-instalod:before {
  content: "";
}

.fa-intercom:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-invision:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-itch-io:before {
  content: "";
}

.fa-itunes:before {
  content: "";
}

.fa-itunes-note:before {
  content: "";
}

.fa-java:before {
  content: "";
}

.fa-jedi:before {
  content: "";
}

.fa-jedi-order:before {
  content: "";
}

.fa-jenkins:before {
  content: "";
}

.fa-jira:before {
  content: "";
}

.fa-joget:before {
  content: "";
}

.fa-joint:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-journal-whills:before {
  content: "";
}

.fa-js:before {
  content: "";
}

.fa-js-square:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-kaaba:before {
  content: "";
}

.fa-kaggle:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-keybase:before {
  content: "";
}

.fa-keyboard:before {
  content: "";
}

.fa-keycdn:before {
  content: "";
}

.fa-khanda:before {
  content: "";
}

.fa-kickstarter:before {
  content: "";
}

.fa-kickstarter-k:before {
  content: "";
}

.fa-kiss:before {
  content: "";
}

.fa-kiss-beam:before {
  content: "";
}

.fa-kiss-wink-heart:before {
  content: "";
}

.fa-kiwi-bird:before {
  content: "";
}

.fa-korvue:before {
  content: "";
}

.fa-landmark:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-laptop-code:before {
  content: "";
}

.fa-laptop-house:before {
  content: "";
}

.fa-laptop-medical:before {
  content: "";
}

.fa-laravel:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-laugh:before {
  content: "";
}

.fa-laugh-beam:before {
  content: "";
}

.fa-laugh-squint:before {
  content: "";
}

.fa-laugh-wink:before {
  content: "";
}

.fa-layer-group:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-lemon:before {
  content: "";
}

.fa-less:before {
  content: "";
}

.fa-less-than:before {
  content: "";
}

.fa-less-than-equal:before {
  content: "";
}

.fa-level-down-alt:before {
  content: "";
}

.fa-level-up-alt:before {
  content: "";
}

.fa-life-ring:before {
  content: "";
}

.fa-lightbulb:before {
  content: "";
}

.fa-line:before {
  content: "";
}

.fa-link:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-linkedin-in:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-lira-sign:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-lock-open:before {
  content: "";
}

.fa-long-arrow-alt-down:before {
  content: "";
}

.fa-long-arrow-alt-left:before {
  content: "";
}

.fa-long-arrow-alt-right:before {
  content: "";
}

.fa-long-arrow-alt-up:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-luggage-cart:before {
  content: "";
}

.fa-lungs:before {
  content: "";
}

.fa-lungs-virus:before {
  content: "";
}

.fa-lyft:before {
  content: "";
}

.fa-magento:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-mail-bulk:before {
  content: "";
}

.fa-mailchimp:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-mandalorian:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-map-marked:before {
  content: "";
}

.fa-map-marked-alt:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-map-marker-alt:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-markdown:before {
  content: "";
}

.fa-marker:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mask:before {
  content: "";
}

.fa-mastodon:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-mdb:before {
  content: "";
}

.fa-medal:before {
  content: "";
}

.fa-medapps:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-medium-m:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-medrt:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.fa-megaport:before {
  content: "";
}

.fa-meh:before {
  content: "";
}

.fa-meh-blank:before {
  content: "";
}

.fa-meh-rolling-eyes:before {
  content: "";
}

.fa-memory:before {
  content: "";
}

.fa-mendeley:before {
  content: "";
}

.fa-menorah:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-meteor:before {
  content: "";
}

.fa-microblog:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-alt:before {
  content: "";
}

.fa-microphone-alt-slash:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-microscope:before {
  content: "";
}

.fa-microsoft:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-mitten:before {
  content: "";
}

.fa-mix:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-mixer:before {
  content: "";
}

.fa-mizuni:before {
  content: "";
}

.fa-mobile:before {
  content: "";
}

.fa-mobile-alt:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-monero:before {
  content: "";
}

.fa-money-bill:before {
  content: "";
}

.fa-money-bill-alt:before {
  content: "";
}

.fa-money-bill-wave:before {
  content: "";
}

.fa-money-bill-wave-alt:before {
  content: "";
}

.fa-money-check:before {
  content: "";
}

.fa-money-check-alt:before {
  content: "";
}

.fa-monument:before {
  content: "";
}

.fa-moon:before {
  content: "";
}

.fa-mortar-pestle:before {
  content: "";
}

.fa-mosque:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-mountain:before {
  content: "";
}

.fa-mouse:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-mug-hot:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-napster:before {
  content: "";
}

.fa-neos:before {
  content: "";
}

.fa-network-wired:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-newspaper:before {
  content: "";
}

.fa-nimblr:before {
  content: "";
}

.fa-node:before {
  content: "";
}

.fa-node-js:before {
  content: "";
}

.fa-not-equal:before {
  content: "";
}

.fa-notes-medical:before {
  content: "";
}

.fa-npm:before {
  content: "";
}

.fa-ns8:before {
  content: "";
}

.fa-nutritionix:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-octopus-deploy:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-oil-can:before {
  content: "";
}

.fa-old-republic:before {
  content: "";
}

.fa-om:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-orcid:before {
  content: "";
}

.fa-osi:before {
  content: "";
}

.fa-otter:before {
  content: "";
}

.fa-outdent:before {
  content: "";
}

.fa-page4:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-pager:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-paint-roller:before {
  content: "";
}

.fa-palette:before {
  content: "";
}

.fa-palfed:before {
  content: "";
}

.fa-pallet:before {
  content: "";
}

.fa-paper-plane:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-parachute-box:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-parking:before {
  content: "";
}

.fa-passport:before {
  content: "";
}

.fa-pastafarianism:before {
  content: "";
}

.fa-paste:before {
  content: "";
}

.fa-patreon:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-peace:before {
  content: "";
}

.fa-pen:before {
  content: "";
}

.fa-pen-alt:before {
  content: "";
}

.fa-pen-fancy:before {
  content: "";
}

.fa-pen-nib:before {
  content: "";
}

.fa-pen-square:before {
  content: "";
}

.fa-pencil-alt:before {
  content: "";
}

.fa-pencil-ruler:before {
  content: "";
}

.fa-penny-arcade:before {
  content: "";
}

.fa-people-arrows:before {
  content: "";
}

.fa-people-carry:before {
  content: "";
}

.fa-pepper-hot:before {
  content: "";
}

.fa-perbyte:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-percentage:before {
  content: "";
}

.fa-periscope:before {
  content: "";
}

.fa-person-booth:before {
  content: "";
}

.fa-phabricator:before {
  content: "";
}

.fa-phoenix-framework:before {
  content: "";
}

.fa-phoenix-squadron:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-phone-alt:before {
  content: "";
}

.fa-phone-slash:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-phone-square-alt:before {
  content: "";
}

.fa-phone-volume:before {
  content: "";
}

.fa-photo-video:before {
  content: "";
}

.fa-php:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-pied-piper-hat:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-square:before {
  content: "";
}

.fa-piggy-bank:before {
  content: "";
}

.fa-pills:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-pizza-slice:before {
  content: "";
}

.fa-place-of-worship:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-plane-arrival:before {
  content: "";
}

.fa-plane-departure:before {
  content: "";
}

.fa-plane-slash:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-playstation:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-poll:before {
  content: "";
}

.fa-poll-h:before {
  content: "";
}

.fa-poo:before {
  content: "";
}

.fa-poo-storm:before {
  content: "";
}

.fa-poop:before {
  content: "";
}

.fa-portrait:before {
  content: "";
}

.fa-pound-sign:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-pray:before {
  content: "";
}

.fa-praying-hands:before {
  content: "";
}

.fa-prescription:before {
  content: "";
}

.fa-prescription-bottle:before {
  content: "";
}

.fa-prescription-bottle-alt:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-procedures:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-project-diagram:before {
  content: "";
}

.fa-pump-medical:before {
  content: "";
}

.fa-pump-soap:before {
  content: "";
}

.fa-pushed:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-python:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-quidditch:before {
  content: "";
}

.fa-quinscape:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-quran:before {
  content: "";
}

.fa-r-project:before {
  content: "";
}

.fa-radiation:before {
  content: "";
}

.fa-radiation-alt:before {
  content: "";
}

.fa-rainbow:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-raspberry-pi:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-react:before {
  content: "";
}

.fa-reacteurope:before {
  content: "";
}

.fa-readme:before {
  content: "";
}

.fa-rebel:before {
  content: "";
}

.fa-receipt:before {
  content: "";
}

.fa-record-vinyl:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-red-river:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-redhat:before {
  content: "";
}

.fa-redo:before {
  content: "";
}

.fa-redo-alt:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-remove-format:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-reply:before {
  content: "";
}

.fa-reply-all:before {
  content: "";
}

.fa-replyd:before {
  content: "";
}

.fa-republican:before {
  content: "";
}

.fa-researchgate:before {
  content: "";
}

.fa-resolving:before {
  content: "";
}

.fa-restroom:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-rev:before {
  content: "";
}

.fa-ribbon:before {
  content: "";
}

.fa-ring:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-robot:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-rocketchat:before {
  content: "";
}

.fa-rockrms:before {
  content: "";
}

.fa-route:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-ruble-sign:before {
  content: "";
}

.fa-ruler:before {
  content: "";
}

.fa-ruler-combined:before {
  content: "";
}

.fa-ruler-horizontal:before {
  content: "";
}

.fa-ruler-vertical:before {
  content: "";
}

.fa-running:before {
  content: "";
}

.fa-rupee-sign:before {
  content: "";
}

.fa-rust:before {
  content: "";
}

.fa-sad-cry:before {
  content: "";
}

.fa-sad-tear:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-salesforce:before {
  content: "";
}

.fa-sass:before {
  content: "";
}

.fa-satellite:before {
  content: "";
}

.fa-satellite-dish:before {
  content: "";
}

.fa-save:before {
  content: "";
}

.fa-schlix:before {
  content: "";
}

.fa-school:before {
  content: "";
}

.fa-screwdriver:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-scroll:before {
  content: "";
}

.fa-sd-card:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-search-dollar:before {
  content: "";
}

.fa-search-location:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-searchengin:before {
  content: "";
}

.fa-seedling:before {
  content: "";
}

.fa-sellcast:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-servicestack:before {
  content: "";
}

.fa-shapes:before {
  content: "";
}

.fa-share:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-shekel-sign:before {
  content: "";
}

.fa-shield-alt:before {
  content: "";
}

.fa-shield-virus:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-shipping-fast:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-shoe-prints:before {
  content: "";
}

.fa-shopify:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-shopware:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-shuttle-van:before {
  content: "";
}

.fa-sign:before {
  content: "";
}

.fa-sign-in-alt:before {
  content: "";
}

.fa-sign-language:before {
  content: "";
}

.fa-sign-out-alt:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-signature:before {
  content: "";
}

.fa-sim-card:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-sink:before {
  content: "";
}

.fa-sistrix:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-sith:before {
  content: "";
}

.fa-skating:before {
  content: "";
}

.fa-sketch:before {
  content: "";
}

.fa-skiing:before {
  content: "";
}

.fa-skiing-nordic:before {
  content: "";
}

.fa-skull:before {
  content: "";
}

.fa-skull-crossbones:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-slack-hash:before {
  content: "";
}

.fa-slash:before {
  content: "";
}

.fa-sleigh:before {
  content: "";
}

.fa-sliders-h:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-smile:before {
  content: "";
}

.fa-smile-beam:before {
  content: "";
}

.fa-smile-wink:before {
  content: "";
}

.fa-smog:before {
  content: "";
}

.fa-smoking:before {
  content: "";
}

.fa-smoking-ban:before {
  content: "";
}

.fa-sms:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-snowboarding:before {
  content: "";
}

.fa-snowflake:before {
  content: "";
}

.fa-snowman:before {
  content: "";
}

.fa-snowplow:before {
  content: "";
}

.fa-soap:before {
  content: "";
}

.fa-socks:before {
  content: "";
}

.fa-solar-panel:before {
  content: "";
}

.fa-sort:before {
  content: "";
}

.fa-sort-alpha-down:before {
  content: "";
}

.fa-sort-alpha-down-alt:before {
  content: "";
}

.fa-sort-alpha-up:before {
  content: "";
}

.fa-sort-alpha-up-alt:before {
  content: "";
}

.fa-sort-amount-down:before {
  content: "";
}

.fa-sort-amount-down-alt:before {
  content: "";
}

.fa-sort-amount-up:before {
  content: "";
}

.fa-sort-amount-up-alt:before {
  content: "";
}

.fa-sort-down:before {
  content: "";
}

.fa-sort-numeric-down:before {
  content: "";
}

.fa-sort-numeric-down-alt:before {
  content: "";
}

.fa-sort-numeric-up:before {
  content: "";
}

.fa-sort-numeric-up-alt:before {
  content: "";
}

.fa-sort-up:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-sourcetree:before {
  content: "";
}

.fa-spa:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-speakap:before {
  content: "";
}

.fa-speaker-deck:before {
  content: "";
}

.fa-spell-check:before {
  content: "";
}

.fa-spider:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-splotch:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-spray-can:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-square-full:before {
  content: "";
}

.fa-square-root-alt:before {
  content: "";
}

.fa-squarespace:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-stackpath:before {
  content: "";
}

.fa-stamp:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-and-crescent:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-star-half-alt:before {
  content: "";
}

.fa-star-of-david:before {
  content: "";
}

.fa-star-of-life:before {
  content: "";
}

.fa-staylinked:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-steam-symbol:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-sticker-mule:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stopwatch:before {
  content: "";
}

.fa-stopwatch-20:before {
  content: "";
}

.fa-store:before {
  content: "";
}

.fa-store-alt:before {
  content: "";
}

.fa-store-alt-slash:before {
  content: "";
}

.fa-store-slash:before {
  content: "";
}

.fa-strava:before {
  content: "";
}

.fa-stream:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-stripe:before {
  content: "";
}

.fa-stripe-s:before {
  content: "";
}

.fa-stroopwafel:before {
  content: "";
}

.fa-studiovinari:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-suitcase-rolling:before {
  content: "";
}

.fa-sun:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-supple:before {
  content: "";
}

.fa-surprise:before {
  content: "";
}

.fa-suse:before {
  content: "";
}

.fa-swatchbook:before {
  content: "";
}

.fa-swift:before {
  content: "";
}

.fa-swimmer:before {
  content: "";
}

.fa-swimming-pool:before {
  content: "";
}

.fa-symfony:before {
  content: "";
}

.fa-synagogue:before {
  content: "";
}

.fa-sync:before {
  content: "";
}

.fa-sync-alt:before {
  content: "";
}

.fa-syringe:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-table-tennis:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-tablet-alt:before {
  content: "";
}

.fa-tablets:before {
  content: "";
}

.fa-tachometer-alt:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-tape:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-taxi:before {
  content: "";
}

.fa-teamspeak:before {
  content: "";
}

.fa-teeth:before {
  content: "";
}

.fa-teeth-open:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-telegram-plane:before {
  content: "";
}

.fa-temperature-high:before {
  content: "";
}

.fa-temperature-low:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-tenge:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-the-red-yeti:before {
  content: "";
}

.fa-theater-masks:before {
  content: "";
}

.fa-themeco:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-thermometer:before {
  content: "";
}

.fa-thermometer-empty:before {
  content: "";
}

.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-think-peaks:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbtack:before {
  content: "";
}

.fa-ticket-alt:before {
  content: "";
}

.fa-tiktok:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-tint-slash:before {
  content: "";
}

.fa-tired:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-toilet:before {
  content: "";
}

.fa-toilet-paper:before {
  content: "";
}

.fa-toilet-paper-slash:before {
  content: "";
}

.fa-toolbox:before {
  content: "";
}

.fa-tools:before {
  content: "";
}

.fa-tooth:before {
  content: "";
}

.fa-torah:before {
  content: "";
}

.fa-torii-gate:before {
  content: "";
}

.fa-tractor:before {
  content: "";
}

.fa-trade-federation:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-traffic-light:before {
  content: "";
}

.fa-trailer:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-tram:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-trash-alt:before {
  content: "";
}

.fa-trash-restore:before {
  content: "";
}

.fa-trash-restore-alt:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-truck-loading:before {
  content: "";
}

.fa-truck-monster:before {
  content: "";
}

.fa-truck-moving:before {
  content: "";
}

.fa-truck-pickup:before {
  content: "";
}

.fa-tshirt:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-tv:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-typo3:before {
  content: "";
}

.fa-uber:before {
  content: "";
}

.fa-ubuntu:before {
  content: "";
}

.fa-uikit:before {
  content: "";
}

.fa-umbraco:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-umbrella-beach:before {
  content: "";
}

.fa-uncharted:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-undo:before {
  content: "";
}

.fa-undo-alt:before {
  content: "";
}

.fa-uniregistry:before {
  content: "";
}

.fa-unity:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-university:before {
  content: "";
}

.fa-unlink:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-unsplash:before {
  content: "";
}

.fa-untappd:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-ups:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-user-alt:before {
  content: "";
}

.fa-user-alt-slash:before {
  content: "";
}

.fa-user-astronaut:before {
  content: "";
}

.fa-user-check:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-clock:before {
  content: "";
}

.fa-user-cog:before {
  content: "";
}

.fa-user-edit:before {
  content: "";
}

.fa-user-friends:before {
  content: "";
}

.fa-user-graduate:before {
  content: "";
}

.fa-user-injured:before {
  content: "";
}

.fa-user-lock:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-user-minus:before {
  content: "";
}

.fa-user-ninja:before {
  content: "";
}

.fa-user-nurse:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-user-shield:before {
  content: "";
}

.fa-user-slash:before {
  content: "";
}

.fa-user-tag:before {
  content: "";
}

.fa-user-tie:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-users:before {
  content: "";
}

.fa-users-cog:before {
  content: "";
}

.fa-users-slash:before {
  content: "";
}

.fa-usps:before {
  content: "";
}

.fa-ussunnah:before {
  content: "";
}

.fa-utensil-spoon:before {
  content: "";
}

.fa-utensils:before {
  content: "";
}

.fa-vaadin:before {
  content: "";
}

.fa-vector-square:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-vest:before {
  content: "";
}

.fa-vest-patches:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-vial:before {
  content: "";
}

.fa-vials:before {
  content: "";
}

.fa-viber:before {
  content: "";
}

.fa-video:before {
  content: "";
}

.fa-video-slash:before {
  content: "";
}

.fa-vihara:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-vimeo-v:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-virus:before {
  content: "";
}

.fa-virus-slash:before {
  content: "";
}

.fa-viruses:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-vnv:before {
  content: "";
}

.fa-voicemail:before {
  content: "";
}

.fa-volleyball-ball:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-mute:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-vote-yea:before {
  content: "";
}

.fa-vr-cardboard:before {
  content: "";
}

.fa-vuejs:before {
  content: "";
}

.fa-walking:before {
  content: "";
}

.fa-wallet:before {
  content: "";
}

.fa-warehouse:before {
  content: "";
}

.fa-watchman-monitoring:before {
  content: "";
}

.fa-water:before {
  content: "";
}

.fa-wave-square:before {
  content: "";
}

.fa-waze:before {
  content: "";
}

.fa-weebly:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-weight:before {
  content: "";
}

.fa-weight-hanging:before {
  content: "";
}

.fa-weixin:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-whatsapp-square:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-whmcs:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-wind:before {
  content: "";
}

.fa-window-close:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-wine-bottle:before {
  content: "";
}

.fa-wine-glass:before {
  content: "";
}

.fa-wine-glass-alt:before {
  content: "";
}

.fa-wix:before {
  content: "";
}

.fa-wizards-of-the-coast:before {
  content: "";
}

.fa-wodu:before {
  content: "";
}

.fa-wolf-pack-battalion:before {
  content: "";
}

.fa-won-sign:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-wordpress-simple:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-wpressr:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-x-ray:before {
  content: "";
}

.fa-xbox:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-y-combinator:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-yammer:before {
  content: "";
}

.fa-yandex:before {
  content: "";
}

.fa-yandex-international:before {
  content: "";
}

.fa-yarn:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-yen-sign:before {
  content: "";
}

.fa-yin-yang:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-zhihu:before {
  content: "";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("fontawesome/webfonts/fa-solid-900.eot");
  src: url("fontawesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("fontawesome/webfonts/fa-solid-900.woff") format("woff"), url("fontawesome/webfonts/fa-solid-900.ttf") format("truetype"), url("fontawesome/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas,
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .open-submenu:after,
.bc-container .rank-math-breadcrumb p span.separator:after,
.checkmark-list li:before,
#mobile-nav > ul.wrapper .meta .site-phone > a:before,
#mobile-nav > ul.wrapper > li.menu-item-has-children > a:after,
#header #site-nav > ul > li.site-phone a:before,
#header #site-nav > ul > li.menu-item-has-children:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fontawesome/webfonts/fa-brands-400.eot");
  src: url("fontawesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("fontawesome/webfonts/fa-brands-400.woff") format("woff"), url("fontawesome/webfonts/fa-brands-400.ttf") format("truetype"), url("fontawesome/webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

html, body {
  font: 18px/1.5em "Poppins", sans-serif;
  color: #3A3C3D;
  overflow-x: hidden;
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}

body.has-site-notification #header {
  margin-top: 55px;
}
body.has-site-notification #main {
  margin-top: 135px;
}
body.mobile-menu-active #header .mobile-menu-trigger .fa-times {
  display: block;
}
body.mobile-menu-active #header .mobile-menu-trigger .fa-bars {
  display: none;
}
body .gform_wrapper {
  /*.field_description_below .gfield_description{
  	padding-top: 0;
  }*/
}
body .gform_wrapper .validation_message {
  color: rgba(0, 0, 0, 0.6);
}
body .gform_wrapper .gfield_required {
  color: #E25325;
}
body .gform_wrapper .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
body .gform_wrapper .gfield_radio .gchoice {
  width: calc(50% - 10px);
}
body .gform_wrapper .col-choices .gfield_radio {
  flex-direction: column;
}
body .gform_wrapper ul.gform_fields li.gfield.gfield_error + li.gfield.gfield_error {
  margin-top: 0;
}
body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent;
  border-top: 0;
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
body .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper li.gfield_error textarea {
  border-color: rgba(0, 0, 0, 0.6);
}
body .gform_wrapper .gfield_error .gfield_label {
  color: rgba(0, 0, 0, 0.6);
}
body .gform_wrapper div.validation_error {
  color: rgba(0, 0, 0, 0.6);
  border-top-color: rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
body .gform_wrapper .gfield--type-html small {
  display: block;
  opacity: 0.5;
  font-size: 13px;
  line-height: 1.5em;
}
body .gform_wrapper .gfield--type-html small a {
  color: #3A3C3D;
  font-weight: bold;
}
body .gform_wrapper .gfield--type-html small a:hover {
  text-decoration: underline;
}

a {
  text-decoration: none;
  transition: all 250ms ease-in-out;
}
a a:link, a:focus, a:visited {
  color: inherit;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}
.wrapper.medium {
  max-width: 1200px;
}
.wrapper.large {
  max-width: 1480px;
}

.btn, .the-content .button.in-content, #footer .footer-menu li.is-btn a, #mobile-nav > ul.wrapper .meta li.is-btn, #header #site-nav > ul > li.is-btn > a, body .gform_wrapper .gform_footer input[type=button],
body .gform_wrapper .gform_footer input[type=submit] {
  display: inline-flex;
  font: bold 15px/1em "Poppins", sans-serif;
  justify-content: center;
  text-align: center;
  padding: 10px 10px;
  min-width: 175px;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
  border: 2px solid transparent;
  -webkit-appearance: none;
  cursor: pointer;
}
.btn.with-icon, .the-content .with-icon.button.in-content, #footer .footer-menu li.is-btn a.with-icon, #mobile-nav > ul.wrapper .meta li.with-icon.is-btn, #header #site-nav > ul > li.is-btn > a.with-icon, body .gform_wrapper .gform_footer input.with-icon[type=button],
body .gform_wrapper .gform_footer input.with-icon[type=submit] {
  padding: 5px 20px;
}
.btn.small, .the-content .small.button.in-content, #footer .footer-menu li.is-btn a.small, #mobile-nav > ul.wrapper .meta li.small.is-btn, #header #site-nav > ul > li.is-btn > a.small, body .gform_wrapper .gform_footer input.small[type=button],
body .gform_wrapper .gform_footer input.small[type=submit] {
  padding: 5px 10px;
  font-size: 13px;
}
.btn.solid-orange, .the-content .button.in-content, #footer .footer-menu li.is-btn a, #mobile-nav > ul.wrapper .meta li.btn.is-btn, #mobile-nav > ul.wrapper .meta .the-content li.is-btn.button.in-content, .the-content #mobile-nav > ul.wrapper .meta li.is-btn.button.in-content, #mobile-nav > ul.wrapper .meta li.solid-orange.is-btn, #mobile-nav > ul.wrapper .meta li.is-btn, #header #site-nav > ul > li.is-btn > a, body .gform_wrapper .gform_footer input[type=button],
body .gform_wrapper .gform_footer input[type=submit] {
  background: #FD990F;
  color: white !important;
}
.btn.solid-orange:hover, .the-content .button.in-content:hover, #footer .footer-menu li.is-btn a:hover, #mobile-nav > ul.wrapper .meta li.is-btn:hover, #header #site-nav > ul > li.is-btn > a:hover, body .gform_wrapper .gform_footer input[type=button]:hover,
body .gform_wrapper .gform_footer input[type=submit]:hover {
  background: #de8600;
}
.btn.solid-orange-with-icon, .the-content .solid-orange-with-icon.button.in-content, #footer .footer-menu li.is-btn a.solid-orange-with-icon, #mobile-nav > ul.wrapper .meta li.solid-orange-with-icon.is-btn, #header #site-nav > ul > li.is-btn > a.solid-orange-with-icon, body .gform_wrapper .gform_footer input.solid-orange-with-icon[type=button],
body .gform_wrapper .gform_footer input.solid-orange-with-icon[type=submit] {
  background: #FD990F;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn.solid-orange-with-icon:hover, .the-content .solid-orange-with-icon.button.in-content:hover, #footer .footer-menu li.is-btn a.solid-orange-with-icon:hover, #mobile-nav > ul.wrapper .meta li.solid-orange-with-icon.is-btn:hover, #header #site-nav > ul > li.is-btn > a.solid-orange-with-icon:hover, body .gform_wrapper .gform_footer input.solid-orange-with-icon[type=button]:hover,
body .gform_wrapper .gform_footer input.solid-orange-with-icon[type=submit]:hover {
  background: #de8600;
}
.btn.solid-white, .the-content .solid-white.button.in-content, #footer .footer-menu li.is-btn a.solid-white, #mobile-nav > ul.wrapper .meta li.solid-white.is-btn, #header #site-nav > ul > li.is-btn > a.solid-white, body .gform_wrapper .gform_footer input.solid-white[type=button],
body .gform_wrapper .gform_footer input.solid-white[type=submit] {
  background: white;
  color: #FD990F !important;
}
.btn.solid-white:hover, .the-content .solid-white.button.in-content:hover, #footer .footer-menu li.is-btn a.solid-white:hover, #mobile-nav > ul.wrapper .meta li.solid-white.is-btn:hover, #header #site-nav > ul > li.is-btn > a.solid-white:hover, body .gform_wrapper .gform_footer input.solid-white[type=button]:hover,
body .gform_wrapper .gform_footer input.solid-white[type=submit]:hover {
  background: #FD990F;
  color: white !important;
}
.btn.solid-green, .the-content .solid-green.button.in-content, #footer .footer-menu li.is-btn a.solid-green, #mobile-nav > ul.wrapper .meta li.solid-green.is-btn, #header #site-nav > ul > li.is-btn > a.solid-green, body .gform_wrapper .gform_footer input.solid-green[type=button],
body .gform_wrapper .gform_footer input.solid-green[type=submit] {
  background: #8cb21e;
  color: white !important;
}
.btn.solid-green:hover, .the-content .solid-green.button.in-content:hover, #footer .footer-menu li.is-btn a.solid-green:hover, #mobile-nav > ul.wrapper .meta li.solid-green.is-btn:hover, #header #site-nav > ul > li.is-btn > a.solid-green:hover, body .gform_wrapper .gform_footer input.solid-green[type=button]:hover,
body .gform_wrapper .gform_footer input.solid-green[type=submit]:hover {
  background: #3f8127;
}
.btn.solid-white-green-border, .the-content .solid-white-green-border.button.in-content, #footer .footer-menu li.is-btn a.solid-white-green-border, #mobile-nav > ul.wrapper .meta li.solid-white-green-border.is-btn, #header #site-nav > ul > li.is-btn > a.solid-white-green-border, body .gform_wrapper .gform_footer input.solid-white-green-border[type=button],
body .gform_wrapper .gform_footer input.solid-white-green-border[type=submit] {
  background: white;
  color: #3f8127 !important;
  border-color: #8cb21e !important;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.btn.solid-white-green-border:hover, .the-content .solid-white-green-border.button.in-content:hover, #footer .footer-menu li.is-btn a.solid-white-green-border:hover, #mobile-nav > ul.wrapper .meta li.solid-white-green-border.is-btn:hover, #header #site-nav > ul > li.is-btn > a.solid-white-green-border:hover, body .gform_wrapper .gform_footer input.solid-white-green-border[type=button]:hover,
body .gform_wrapper .gform_footer input.solid-white-green-border[type=submit]:hover {
  background: #8cb21e;
  color: white !important;
  border-color: white !important;
}
.btn.solid-white-orange-border, .content-row.form .gform_wrapper .gform_footer .btn.gform_button, .form.the-blog .gform_wrapper .gform_footer .btn.gform_button, .content-row.columned-webinar-block .gform_wrapper .gform_footer .btn.gform_button, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .btn.gform_button, .the-content .solid-white-orange-border.button.in-content, .the-content .content-row.form .gform_wrapper .gform_footer .button.in-content.gform_button, .content-row.form .gform_wrapper .gform_footer .the-content .button.in-content.gform_button, .the-content .form.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button, .form.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button, .the-content .content-row.columned-webinar-block .gform_wrapper .gform_footer .button.in-content.gform_button, .content-row.columned-webinar-block .gform_wrapper .gform_footer .the-content .button.in-content.gform_button, .the-content .columned-webinar-block.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button, #footer .footer-menu li.is-btn a.solid-white-orange-border, #footer .footer-menu li.is-btn .content-row.form .gform_wrapper .gform_footer a.gform_button, .content-row.form .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button, #footer .footer-menu li.is-btn .form.the-blog .gform_wrapper .gform_footer a.gform_button, .form.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button, #footer .footer-menu li.is-btn .content-row.columned-webinar-block .gform_wrapper .gform_footer a.gform_button, .content-row.columned-webinar-block .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button, #footer .footer-menu li.is-btn .columned-webinar-block.the-blog .gform_wrapper .gform_footer a.gform_button, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button, #mobile-nav > ul.wrapper .meta li.solid-white-orange-border.is-btn, #mobile-nav > ul.wrapper .meta .content-row.form .gform_wrapper .gform_footer li.is-btn.gform_button, .content-row.form .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button, #mobile-nav > ul.wrapper .meta .form.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button, .form.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button, #mobile-nav > ul.wrapper .meta .content-row.columned-webinar-block .gform_wrapper .gform_footer li.is-btn.gform_button, .content-row.columned-webinar-block .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button, #mobile-nav > ul.wrapper .meta .columned-webinar-block.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button, #header #site-nav > ul > li.is-btn > a.solid-white-orange-border, #header .content-row.form .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button, .content-row.form .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button, #header .form.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button, .form.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button, #header .content-row.columned-webinar-block .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button, .content-row.columned-webinar-block .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button, #header .columned-webinar-block.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button, body .gform_wrapper .gform_footer input.solid-white-orange-border[type=button], body .content-row.form .gform_wrapper .gform_footer input[type=button].gform_button, .content-row.form body .gform_wrapper .gform_footer input[type=button].gform_button, body .form.the-blog .gform_wrapper .gform_footer input[type=button].gform_button, .form.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button, body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=button].gform_button, .content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=button].gform_button, body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=button].gform_button, .columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=submit],
body .content-row.form .gform_wrapper .gform_footer input[type=submit].gform_button,
.content-row.form body .gform_wrapper .gform_footer input[type=submit].gform_button,
body .form.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button,
.form.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=submit].gform_button,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=submit].gform_button,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button {
  background: white;
  color: #FD990F !important;
  border-color: #FD990F !important;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.btn.solid-white-orange-border:hover, .content-row.form .gform_wrapper .gform_footer .btn.gform_button:hover, .form.the-blog .gform_wrapper .gform_footer .btn.gform_button:hover, .content-row.columned-webinar-block .gform_wrapper .gform_footer .btn.gform_button:hover, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .btn.gform_button:hover, .the-content .solid-white-orange-border.button.in-content:hover, .the-content .content-row.form .gform_wrapper .gform_footer .button.in-content.gform_button:hover, .content-row.form .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover, .the-content .form.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button:hover, .form.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover, .the-content .content-row.columned-webinar-block .gform_wrapper .gform_footer .button.in-content.gform_button:hover, .content-row.columned-webinar-block .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover, .the-content .columned-webinar-block.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button:hover, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover, #footer .footer-menu li.is-btn a.solid-white-orange-border:hover, #footer .footer-menu li.is-btn .content-row.form .gform_wrapper .gform_footer a.gform_button:hover, .content-row.form .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover, #footer .footer-menu li.is-btn .form.the-blog .gform_wrapper .gform_footer a.gform_button:hover, .form.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover, #footer .footer-menu li.is-btn .content-row.columned-webinar-block .gform_wrapper .gform_footer a.gform_button:hover, .content-row.columned-webinar-block .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover, #footer .footer-menu li.is-btn .columned-webinar-block.the-blog .gform_wrapper .gform_footer a.gform_button:hover, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover, #mobile-nav > ul.wrapper .meta li.solid-white-orange-border.is-btn:hover, #mobile-nav > ul.wrapper .meta .content-row.form .gform_wrapper .gform_footer li.is-btn.gform_button:hover, .content-row.form .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover, #mobile-nav > ul.wrapper .meta .form.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button:hover, .form.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover, #mobile-nav > ul.wrapper .meta .content-row.columned-webinar-block .gform_wrapper .gform_footer li.is-btn.gform_button:hover, .content-row.columned-webinar-block .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover, #mobile-nav > ul.wrapper .meta .columned-webinar-block.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button:hover, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover, #header #site-nav > ul > li.is-btn > a.solid-white-orange-border:hover, #header .content-row.form .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover, .content-row.form .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover, #header .form.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover, .form.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover, #header .content-row.columned-webinar-block .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover, .content-row.columned-webinar-block .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover, #header .columned-webinar-block.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover, body .gform_wrapper .gform_footer input.solid-white-orange-border[type=button]:hover, body .content-row.form .gform_wrapper .gform_footer input[type=button].gform_button:hover, .content-row.form body .gform_wrapper .gform_footer input[type=button].gform_button:hover, body .form.the-blog .gform_wrapper .gform_footer input[type=button].gform_button:hover, .form.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button:hover, body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=button].gform_button:hover, .content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=button].gform_button:hover, body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=button].gform_button:hover, .columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button:hover,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=submit]:hover,
body .content-row.form .gform_wrapper .gform_footer input[type=submit].gform_button:hover,
.content-row.form body .gform_wrapper .gform_footer input[type=submit].gform_button:hover,
body .form.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button:hover,
.form.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button:hover,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=submit].gform_button:hover,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=submit].gform_button:hover,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button:hover,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button:hover {
  background: #FD990F;
  color: white !important;
  border-color: white !important;
}
.btn.solid-white-orange-border:hover > svg, .content-row.form .gform_wrapper .gform_footer .btn.gform_button:hover > svg, .form.the-blog .gform_wrapper .gform_footer .btn.gform_button:hover > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer .btn.gform_button:hover > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .btn.gform_button:hover > svg, .the-content .solid-white-orange-border.button.in-content:hover > svg, .the-content .content-row.form .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg, .content-row.form .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg, .the-content .form.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg, .form.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg, .the-content .content-row.columned-webinar-block .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg, .the-content .columned-webinar-block.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg, #footer .footer-menu li.is-btn a.solid-white-orange-border:hover > svg, #footer .footer-menu li.is-btn .content-row.form .gform_wrapper .gform_footer a.gform_button:hover > svg, .content-row.form .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg, #footer .footer-menu li.is-btn .form.the-blog .gform_wrapper .gform_footer a.gform_button:hover > svg, .form.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg, #footer .footer-menu li.is-btn .content-row.columned-webinar-block .gform_wrapper .gform_footer a.gform_button:hover > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg, #footer .footer-menu li.is-btn .columned-webinar-block.the-blog .gform_wrapper .gform_footer a.gform_button:hover > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg, #mobile-nav > ul.wrapper .meta li.solid-white-orange-border.is-btn:hover > svg, #mobile-nav > ul.wrapper .meta .content-row.form .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg, .content-row.form .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg, #mobile-nav > ul.wrapper .meta .form.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg, .form.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg, #mobile-nav > ul.wrapper .meta .content-row.columned-webinar-block .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg, #mobile-nav > ul.wrapper .meta .columned-webinar-block.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg, #header #site-nav > ul > li.is-btn > a.solid-white-orange-border:hover > svg, #header .content-row.form .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg, .content-row.form .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg, #header .form.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg, .form.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg, #header .content-row.columned-webinar-block .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg, #header .columned-webinar-block.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg, body .gform_wrapper .gform_footer input.solid-white-orange-border[type=button]:hover > svg, body .content-row.form .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg, .content-row.form body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg, body .form.the-blog .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg, .form.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg, body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg, .content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg, body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg, .columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=submit]:hover > svg,
body .content-row.form .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg,
.content-row.form body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg,
body .form.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg,
.form.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg {
  max-height: 30px;
}
.btn.solid-white-orange-border:hover > svg path, .content-row.form .gform_wrapper .gform_footer .btn.gform_button:hover > svg path, .form.the-blog .gform_wrapper .gform_footer .btn.gform_button:hover > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer .btn.gform_button:hover > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .btn.gform_button:hover > svg path, .the-content .solid-white-orange-border.button.in-content:hover > svg path, .the-content .content-row.form .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg path, .content-row.form .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg path, .the-content .form.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg path, .form.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg path, .the-content .content-row.columned-webinar-block .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg path, .the-content .columned-webinar-block.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg path, #footer .footer-menu li.is-btn a.solid-white-orange-border:hover > svg path, #footer .footer-menu li.is-btn .content-row.form .gform_wrapper .gform_footer a.gform_button:hover > svg path, .content-row.form .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg path, #footer .footer-menu li.is-btn .form.the-blog .gform_wrapper .gform_footer a.gform_button:hover > svg path, .form.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg path, #footer .footer-menu li.is-btn .content-row.columned-webinar-block .gform_wrapper .gform_footer a.gform_button:hover > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg path, #footer .footer-menu li.is-btn .columned-webinar-block.the-blog .gform_wrapper .gform_footer a.gform_button:hover > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg path, #mobile-nav > ul.wrapper .meta li.solid-white-orange-border.is-btn:hover > svg path, #mobile-nav > ul.wrapper .meta .content-row.form .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg path, .content-row.form .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg path, #mobile-nav > ul.wrapper .meta .form.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg path, .form.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg path, #mobile-nav > ul.wrapper .meta .content-row.columned-webinar-block .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg path, #mobile-nav > ul.wrapper .meta .columned-webinar-block.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg path, #header #site-nav > ul > li.is-btn > a.solid-white-orange-border:hover > svg path, #header .content-row.form .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg path, .content-row.form .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg path, #header .form.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg path, .form.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg path, #header .content-row.columned-webinar-block .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg path, #header .columned-webinar-block.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg path, body .gform_wrapper .gform_footer input.solid-white-orange-border[type=button]:hover > svg path, body .content-row.form .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg path, .content-row.form body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg path, body .form.the-blog .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg path, .form.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg path, body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg path, .content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg path, body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg path, .columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg path,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=submit]:hover > svg path,
body .content-row.form .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg path,
.content-row.form body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg path,
body .form.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg path,
.form.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg path,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg path,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg path,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg path,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg path,
.btn.solid-white-orange-border:hover > svg circle,
.content-row.form .gform_wrapper .gform_footer .btn.gform_button:hover > svg circle,
.form.the-blog .gform_wrapper .gform_footer .btn.gform_button:hover > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer .btn.gform_button:hover > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer .btn.gform_button:hover > svg circle,
.the-content .solid-white-orange-border.button.in-content:hover > svg circle,
.the-content .content-row.form .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg circle,
.content-row.form .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg circle,
.the-content .form.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg circle,
.form.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg circle,
.the-content .content-row.columned-webinar-block .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg circle,
.the-content .columned-webinar-block.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button:hover > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button:hover > svg circle,
#footer .footer-menu li.is-btn a.solid-white-orange-border:hover > svg circle,
#footer .footer-menu li.is-btn .content-row.form .gform_wrapper .gform_footer a.gform_button:hover > svg circle,
.content-row.form .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg circle,
#footer .footer-menu li.is-btn .form.the-blog .gform_wrapper .gform_footer a.gform_button:hover > svg circle,
.form.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg circle,
#footer .footer-menu li.is-btn .content-row.columned-webinar-block .gform_wrapper .gform_footer a.gform_button:hover > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg circle,
#footer .footer-menu li.is-btn .columned-webinar-block.the-blog .gform_wrapper .gform_footer a.gform_button:hover > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button:hover > svg circle,
#mobile-nav > ul.wrapper .meta li.solid-white-orange-border.is-btn:hover > svg circle,
#mobile-nav > ul.wrapper .meta .content-row.form .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg circle,
.content-row.form .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg circle,
#mobile-nav > ul.wrapper .meta .form.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg circle,
.form.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg circle,
#mobile-nav > ul.wrapper .meta .content-row.columned-webinar-block .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg circle,
#mobile-nav > ul.wrapper .meta .columned-webinar-block.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button:hover > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button:hover > svg circle,
#header #site-nav > ul > li.is-btn > a.solid-white-orange-border:hover > svg circle,
#header .content-row.form .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg circle,
.content-row.form .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg circle,
#header .form.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg circle,
.form.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg circle,
#header .content-row.columned-webinar-block .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg circle,
#header .columned-webinar-block.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button:hover > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button:hover > svg circle,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=button]:hover > svg circle,
body .content-row.form .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg circle,
.content-row.form body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg circle,
body .form.the-blog .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg circle,
.form.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg circle,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg circle,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg circle,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg circle,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button:hover > svg circle,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=submit]:hover > svg circle,
body .content-row.form .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg circle,
.content-row.form body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg circle,
body .form.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg circle,
.form.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg circle,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg circle,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg circle,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg circle,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button:hover > svg circle {
  stroke: #fff;
}
.btn.solid-white-orange-border > svg, .content-row.form .gform_wrapper .gform_footer .btn.gform_button > svg, .form.the-blog .gform_wrapper .gform_footer .btn.gform_button > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer .btn.gform_button > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .btn.gform_button > svg, .the-content .solid-white-orange-border.button.in-content > svg, .the-content .content-row.form .gform_wrapper .gform_footer .button.in-content.gform_button > svg, .content-row.form .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg, .the-content .form.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button > svg, .form.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg, .the-content .content-row.columned-webinar-block .gform_wrapper .gform_footer .button.in-content.gform_button > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg, .the-content .columned-webinar-block.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg, #footer .footer-menu li.is-btn a.solid-white-orange-border > svg, #footer .footer-menu li.is-btn .content-row.form .gform_wrapper .gform_footer a.gform_button > svg, .content-row.form .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg, #footer .footer-menu li.is-btn .form.the-blog .gform_wrapper .gform_footer a.gform_button > svg, .form.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg, #footer .footer-menu li.is-btn .content-row.columned-webinar-block .gform_wrapper .gform_footer a.gform_button > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg, #footer .footer-menu li.is-btn .columned-webinar-block.the-blog .gform_wrapper .gform_footer a.gform_button > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg, #mobile-nav > ul.wrapper .meta li.solid-white-orange-border.is-btn > svg, #mobile-nav > ul.wrapper .meta .content-row.form .gform_wrapper .gform_footer li.is-btn.gform_button > svg, .content-row.form .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg, #mobile-nav > ul.wrapper .meta .form.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button > svg, .form.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg, #mobile-nav > ul.wrapper .meta .content-row.columned-webinar-block .gform_wrapper .gform_footer li.is-btn.gform_button > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg, #mobile-nav > ul.wrapper .meta .columned-webinar-block.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg, #header #site-nav > ul > li.is-btn > a.solid-white-orange-border > svg, #header .content-row.form .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg, .content-row.form .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg, #header .form.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg, .form.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg, #header .content-row.columned-webinar-block .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg, .content-row.columned-webinar-block .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg, #header .columned-webinar-block.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg, body .gform_wrapper .gform_footer input.solid-white-orange-border[type=button] > svg, body .content-row.form .gform_wrapper .gform_footer input[type=button].gform_button > svg, .content-row.form body .gform_wrapper .gform_footer input[type=button].gform_button > svg, body .form.the-blog .gform_wrapper .gform_footer input[type=button].gform_button > svg, .form.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button > svg, body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=button].gform_button > svg, .content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=button].gform_button > svg, body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=button].gform_button > svg, .columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button > svg,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=submit] > svg,
body .content-row.form .gform_wrapper .gform_footer input[type=submit].gform_button > svg,
.content-row.form body .gform_wrapper .gform_footer input[type=submit].gform_button > svg,
body .form.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button > svg,
.form.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button > svg,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=submit].gform_button > svg,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=submit].gform_button > svg,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button > svg,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button > svg {
  height: 30px;
  width: 30px;
}
.btn.solid-white-orange-border > svg path, .content-row.form .gform_wrapper .gform_footer .btn.gform_button > svg path, .form.the-blog .gform_wrapper .gform_footer .btn.gform_button > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer .btn.gform_button > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .btn.gform_button > svg path, .the-content .solid-white-orange-border.button.in-content > svg path, .the-content .content-row.form .gform_wrapper .gform_footer .button.in-content.gform_button > svg path, .content-row.form .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg path, .the-content .form.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button > svg path, .form.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg path, .the-content .content-row.columned-webinar-block .gform_wrapper .gform_footer .button.in-content.gform_button > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg path, .the-content .columned-webinar-block.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg path, #footer .footer-menu li.is-btn a.solid-white-orange-border > svg path, #footer .footer-menu li.is-btn .content-row.form .gform_wrapper .gform_footer a.gform_button > svg path, .content-row.form .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg path, #footer .footer-menu li.is-btn .form.the-blog .gform_wrapper .gform_footer a.gform_button > svg path, .form.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg path, #footer .footer-menu li.is-btn .content-row.columned-webinar-block .gform_wrapper .gform_footer a.gform_button > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg path, #footer .footer-menu li.is-btn .columned-webinar-block.the-blog .gform_wrapper .gform_footer a.gform_button > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg path, #mobile-nav > ul.wrapper .meta li.solid-white-orange-border.is-btn > svg path, #mobile-nav > ul.wrapper .meta .content-row.form .gform_wrapper .gform_footer li.is-btn.gform_button > svg path, .content-row.form .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg path, #mobile-nav > ul.wrapper .meta .form.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button > svg path, .form.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg path, #mobile-nav > ul.wrapper .meta .content-row.columned-webinar-block .gform_wrapper .gform_footer li.is-btn.gform_button > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg path, #mobile-nav > ul.wrapper .meta .columned-webinar-block.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg path, #header #site-nav > ul > li.is-btn > a.solid-white-orange-border > svg path, #header .content-row.form .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg path, .content-row.form .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg path, #header .form.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg path, .form.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg path, #header .content-row.columned-webinar-block .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg path, .content-row.columned-webinar-block .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg path, #header .columned-webinar-block.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg path, .columned-webinar-block.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg path, body .gform_wrapper .gform_footer input.solid-white-orange-border[type=button] > svg path, body .content-row.form .gform_wrapper .gform_footer input[type=button].gform_button > svg path, .content-row.form body .gform_wrapper .gform_footer input[type=button].gform_button > svg path, body .form.the-blog .gform_wrapper .gform_footer input[type=button].gform_button > svg path, .form.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button > svg path, body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=button].gform_button > svg path, .content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=button].gform_button > svg path, body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=button].gform_button > svg path, .columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button > svg path,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=submit] > svg path,
body .content-row.form .gform_wrapper .gform_footer input[type=submit].gform_button > svg path,
.content-row.form body .gform_wrapper .gform_footer input[type=submit].gform_button > svg path,
body .form.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button > svg path,
.form.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button > svg path,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=submit].gform_button > svg path,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=submit].gform_button > svg path,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button > svg path,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button > svg path,
.btn.solid-white-orange-border > svg circle,
.content-row.form .gform_wrapper .gform_footer .btn.gform_button > svg circle,
.form.the-blog .gform_wrapper .gform_footer .btn.gform_button > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer .btn.gform_button > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer .btn.gform_button > svg circle,
.the-content .solid-white-orange-border.button.in-content > svg circle,
.the-content .content-row.form .gform_wrapper .gform_footer .button.in-content.gform_button > svg circle,
.content-row.form .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg circle,
.the-content .form.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button > svg circle,
.form.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg circle,
.the-content .content-row.columned-webinar-block .gform_wrapper .gform_footer .button.in-content.gform_button > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg circle,
.the-content .columned-webinar-block.the-blog .gform_wrapper .gform_footer .button.in-content.gform_button > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer .the-content .button.in-content.gform_button > svg circle,
#footer .footer-menu li.is-btn a.solid-white-orange-border > svg circle,
#footer .footer-menu li.is-btn .content-row.form .gform_wrapper .gform_footer a.gform_button > svg circle,
.content-row.form .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg circle,
#footer .footer-menu li.is-btn .form.the-blog .gform_wrapper .gform_footer a.gform_button > svg circle,
.form.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg circle,
#footer .footer-menu li.is-btn .content-row.columned-webinar-block .gform_wrapper .gform_footer a.gform_button > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg circle,
#footer .footer-menu li.is-btn .columned-webinar-block.the-blog .gform_wrapper .gform_footer a.gform_button > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer #footer .footer-menu li.is-btn a.gform_button > svg circle,
#mobile-nav > ul.wrapper .meta li.solid-white-orange-border.is-btn > svg circle,
#mobile-nav > ul.wrapper .meta .content-row.form .gform_wrapper .gform_footer li.is-btn.gform_button > svg circle,
.content-row.form .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg circle,
#mobile-nav > ul.wrapper .meta .form.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button > svg circle,
.form.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg circle,
#mobile-nav > ul.wrapper .meta .content-row.columned-webinar-block .gform_wrapper .gform_footer li.is-btn.gform_button > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg circle,
#mobile-nav > ul.wrapper .meta .columned-webinar-block.the-blog .gform_wrapper .gform_footer li.is-btn.gform_button > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer #mobile-nav > ul.wrapper .meta li.is-btn.gform_button > svg circle,
#header #site-nav > ul > li.is-btn > a.solid-white-orange-border > svg circle,
#header .content-row.form .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg circle,
.content-row.form .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg circle,
#header .form.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg circle,
.form.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg circle,
#header .content-row.columned-webinar-block .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg circle,
.content-row.columned-webinar-block .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg circle,
#header .columned-webinar-block.the-blog .gform_wrapper .gform_footer #site-nav > ul > li.is-btn > a.gform_button > svg circle,
.columned-webinar-block.the-blog .gform_wrapper .gform_footer #header #site-nav > ul > li.is-btn > a.gform_button > svg circle,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=button] > svg circle,
body .content-row.form .gform_wrapper .gform_footer input[type=button].gform_button > svg circle,
.content-row.form body .gform_wrapper .gform_footer input[type=button].gform_button > svg circle,
body .form.the-blog .gform_wrapper .gform_footer input[type=button].gform_button > svg circle,
.form.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button > svg circle,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=button].gform_button > svg circle,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=button].gform_button > svg circle,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=button].gform_button > svg circle,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=button].gform_button > svg circle,
body .gform_wrapper .gform_footer input.solid-white-orange-border[type=submit] > svg circle,
body .content-row.form .gform_wrapper .gform_footer input[type=submit].gform_button > svg circle,
.content-row.form body .gform_wrapper .gform_footer input[type=submit].gform_button > svg circle,
body .form.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button > svg circle,
.form.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button > svg circle,
body .content-row.columned-webinar-block .gform_wrapper .gform_footer input[type=submit].gform_button > svg circle,
.content-row.columned-webinar-block body .gform_wrapper .gform_footer input[type=submit].gform_button > svg circle,
body .columned-webinar-block.the-blog .gform_wrapper .gform_footer input[type=submit].gform_button > svg circle,
.columned-webinar-block.the-blog body .gform_wrapper .gform_footer input[type=submit].gform_button > svg circle {
  transition: 250ms ease-in-out;
  stroke: #FD990F;
}
.btn.solid-orange-white-border, .the-content .solid-orange-white-border.button.in-content, #footer .footer-menu li.is-btn a.solid-orange-white-border, #mobile-nav > ul.wrapper .meta li.solid-orange-white-border.is-btn, #header #site-nav > ul > li.is-btn > a.solid-orange-white-border, body .gform_wrapper .gform_footer input.solid-orange-white-border[type=button],
body .gform_wrapper .gform_footer input.solid-orange-white-border[type=submit] {
  background: #FD990F;
  color: white !important;
  border-color: white !important;
}
.btn.solid-orange-white-border:hover, .the-content .solid-orange-white-border.button.in-content:hover, #footer .footer-menu li.is-btn a.solid-orange-white-border:hover, #mobile-nav > ul.wrapper .meta li.solid-orange-white-border.is-btn:hover, #header #site-nav > ul > li.is-btn > a.solid-orange-white-border:hover, body .gform_wrapper .gform_footer input.solid-orange-white-border[type=button]:hover,
body .gform_wrapper .gform_footer input.solid-orange-white-border[type=submit]:hover {
  background: white;
  color: #FD990F !important;
  border-color: white;
}
.btn.underlined-orange, .the-content .underlined-orange.button.in-content, #footer .footer-menu li.is-btn a.underlined-orange, #mobile-nav > ul.wrapper .meta li.underlined-orange.is-btn, #header #site-nav > ul > li.is-btn > a.underlined-orange, body .gform_wrapper .gform_footer input.underlined-orange[type=button],
body .gform_wrapper .gform_footer input.underlined-orange[type=submit] {
  background: transparent;
  text-decoration: underline;
  text-decoration-color: #FD990F;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  padding: 30px 10px;
  color: #FD990F;
  transition: 250ms ease-in-out;
}
.btn.underlined-orange:hover, .the-content .underlined-orange.button.in-content:hover, #footer .footer-menu li.is-btn a.underlined-orange:hover, #mobile-nav > ul.wrapper .meta li.underlined-orange.is-btn:hover, #header #site-nav > ul > li.is-btn > a.underlined-orange:hover, body .gform_wrapper .gform_footer input.underlined-orange[type=button]:hover,
body .gform_wrapper .gform_footer input.underlined-orange[type=submit]:hover {
  color: #de8600;
  text-decoration-color: #de8600;
}

.site-notification {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: #3A3C3D;
  font: 500 24px/1em "Poppins", sans-serif;
  text-align: center;
}
.site-notification a {
  color: white;
}
.site-notification a:after {
  content: " ›";
}
.site-notification a:hover {
  color: #de8600;
}

#header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 120px;
  background: white;
  transition: all 50ms ease-in-out;
}
#header.shrink {
  margin-top: 0 !important;
}
#header #site-logo {
  width: 270px;
  min-height: 56px;
  margin-bottom: 4px;
}
#header #site-logo img {
  display: block;
  width: 100%;
}
#header #site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 280px);
  padding-left: 0;
}
#header #site-nav > ul {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: end;
}
#header #site-nav > ul.primary.portal-only {
  display: none !important;
}
#header #site-nav > ul.primary > li {
  margin-left: 15px;
}
#header #site-nav > ul.primary > li.has-border-right:before {
  content: "";
  display: block;
  position: absolute;
  right: -7px;
  top: 9px;
  height: 20px;
  width: 1px;
  background-color: #3A3C3D;
}
#header #site-nav > ul.primary > li > a {
  padding-top: 10px;
  padding-bottom: 12px;
}
#header #site-nav > ul.primary > li:first-child {
  margin-left: 0;
}
#header #site-nav > ul.secondary {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
}
#header #site-nav > ul.secondary > li:not(.is-btn) {
  padding: 0 20px;
}
#header #site-nav > ul.secondary > li:not(.is-btn):before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: -1px;
  height: 20px;
  width: 1px;
  background-color: #3A3C3D;
}
#header #site-nav > ul.secondary > li:not(.is-btn) a {
  font: 300 16px/120% "Poppins", sans-serif;
}
#header #site-nav > ul.secondary > li:not(.is-btn) a:after {
  bottom: -6px !important;
}
#header #site-nav > ul.secondary > li:not(.is-btn):first-child {
  margin-left: 0;
}
#header #site-nav > ul.secondary > li:not(.is-btn):last-child {
  border-right: 0;
}
#header #site-nav > ul.secondary > li:not(.is-btn).current-menu-item > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background: #FD990F;
  transition: all 0.3s ease-in-out;
}
#header #site-nav > ul.secondary .menu-item-has-children {
  padding-bottom: 10px !important;
  margin-bottom: -10px !important;
}
#header #site-nav > ul.secondary .menu-item-has-children .sub-menu {
  opacity: 0;
  transition: 250ms ease-in-out;
  left: -35px;
  width: calc(100% + 70px);
  padding: 15px 15px;
  -webkit-box-shadow: 0 6px 15px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 15px -1px rgba(0, 0, 0, 0.3);
}
#header #site-nav > ul.secondary .menu-item-has-children .sub-menu li {
  margin-bottom: 7px;
}
#header #site-nav > ul.secondary .menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
#header #site-nav > ul.secondary .menu-item-has-children .sub-menu:before, #header #site-nav > ul.secondary .menu-item-has-children .sub-menu:after {
  display: none;
}
#header #site-nav > ul.secondary .menu-item-has-children:hover .sub-menu {
  opacity: 1;
}
#header #site-nav > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 0 5px 0 5px;
}
#header #site-nav > ul > li.menu-item-has-children {
  position: relative;
}
#header #site-nav > ul > li.menu-item-has-children:after {
  color: #3A3C3D;
  content: "";
  margin-left: 5px;
}
#header #site-nav > ul > li.menu-item-has-children:hover > ul {
  display: block;
}
#header #site-nav > ul > li.menu-item-has-children.submenu-2-col:hover ul.sub-menu {
  display: flex !important;
}
#header #site-nav > ul > li.menu-item-has-children.submenu-2-col ul.sub-menu {
  flex-wrap: wrap;
  width: 640px;
  justify-content: space-between;
}
#header #site-nav > ul > li.menu-item-has-children.submenu-2-col ul.sub-menu > li {
  width: calc(50% - 15px);
}
#header #site-nav > ul > li.menu-item-has-children > ul {
  display: none;
  position: absolute;
  z-index: 2;
  left: -25px;
  top: 100%;
  width: 360px;
  background: white;
  padding: 25px;
}
#header #site-nav > ul > li.menu-item-has-children > ul:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 1500px;
  background: white;
}
#header #site-nav > ul > li.menu-item-has-children > ul:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 1500px;
  background: white;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li {
  font: 300 14px/1em "Poppins", sans-serif;
  margin-bottom: 5px;
  padding: 0 5px;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li:last-child {
  margin-bottom: 0;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li.current_page_item > a {
  color: #3A3C3D;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li.is-icon-only a svg {
  height: 18px !important;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li.is-icon-only a span {
  display: none;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li.has-icon a {
  display: flex;
  gap: 25px;
  align-items: center;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li.has-icon svg {
  width: auto;
  height: 32px;
  display: inline-block;
  flex: 0 0 auto;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li a {
  font: normal 18px "Poppins", sans-serif;
  color: #3A3C3D;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li a:hover {
  color: #FD990F;
}
#header #site-nav > ul > li.menu-item-has-children > ul > li.current-menu-item > a {
  color: #FD990F;
}
#header #site-nav > ul > li.site-phone a {
  color: #3A3C3D;
}
#header #site-nav > ul > li.site-phone a:hover {
  color: #3A3C3D;
}
#header #site-nav > ul > li.site-phone a:before {
  content: "";
  margin-right: 5px;
}
#header #site-nav > ul > li.lang-item {
  text-transform: uppercase;
}
#header #site-nav > ul > li:not(.is-btn) > a {
  font: 500 18px/1em "Poppins", sans-serif;
  color: #3A3C3D;
  position: relative;
}
#header #site-nav > ul > li:not(.is-btn) > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
#header #site-nav > ul > li:hover a:after {
  background: #FD990F;
}
#header #site-nav > ul > li.current-menu-ancestor > a:after, #header #site-nav > ul > li.current-menu-item > a:after {
  background: #FD990F;
}
#header .search-form {
  display: flex;
}
#header .search-form .inner-search {
  display: flex;
  justify-content: space-between;
  width: 0px;
  overflow: hidden;
  padding: 5px 0px;
  border-radius: 5px;
  border: 0px solid #707070;
  transition: all 0.3s ease-in-out;
}
#header .search-form .inner-search.open {
  width: 195px;
  padding-right: 5px;
  padding-left: 5px;
  margin-right: 10px;
  border: 1px solid #000;
}
#header .search-form .inner-search input {
  border: 0px solid transparent;
  padding: 5px;
}
#header .search-form .inner-search button {
  cursor: pointer;
  border-radius: 5px;
  border: 0px solid transparent;
  background: #FD990F;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .search-form .inner-search button svg {
  width: 28px;
}
#header .search-form .inner-search button svg path,
#header .search-form .inner-search button svg line {
  stroke: #fff;
}
#header .search-form .search-icon {
  cursor: pointer;
  padding-top: 6px;
}
#header .search-form .search-icon .close {
  display: none;
}
#header .search-form .search-icon.open .close {
  display: inline-block;
}
#header .search-form .search-icon.open .open {
  display: none;
}
#header .mobile-menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: #FD990F;
  color: white;
}
#header .mobile-menu-trigger .fa-times {
  display: none;
}

#mobile-nav {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 90px;
  bottom: 0;
  width: 100%;
  background: white;
  overflow-x: hidden;
  overflow-y: scroll;
}
#mobile-nav > ul.wrapper a {
  font-size: 16px;
  color: #3A3C3D;
}
#mobile-nav > ul.wrapper a:hover {
  color: #de8600;
}
#mobile-nav > ul.wrapper > li {
  position: relative;
  padding: 10px 0;
}
#mobile-nav > ul.wrapper > li:after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 0;
  width: 120%;
  height: 1px;
  background: #B7B8B8;
}
#mobile-nav > ul.wrapper > li.menu-item-has-children > a:after {
  font-size: 14px;
  content: "";
  margin-left: 5px;
  transition: all 250ms ease-in-out;
}
#mobile-nav > ul.wrapper > li.menu-item-has-children.open > a:after {
  transform: rotate(-180deg);
}
#mobile-nav > ul.wrapper > li.menu-item-has-children.open > ul {
  display: flex;
}
#mobile-nav > ul.wrapper > li.current-menu-item > a {
  border-bottom: 2px solid #FD990F;
}
#mobile-nav > ul.wrapper > li > ul {
  display: none;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px 0;
}
#mobile-nav > ul.wrapper > li > ul > li {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}
#mobile-nav > ul.wrapper > li > ul > li:nth-child(1) {
  width: 100%;
}
#mobile-nav > ul.wrapper > li > ul > li.top-page {
  margin-bottom: 5px;
}
#mobile-nav > ul.wrapper > li > ul > li.top-page a {
  color: #3A3C3D;
}
#mobile-nav > ul.wrapper > li > ul > li.is-icon-only svg {
  width: auto;
  height: 20px;
}
#mobile-nav > ul.wrapper > li > ul > li.is-icon-only span {
  display: none;
}
#mobile-nav > ul.wrapper > li > ul > li > a {
  font: 600 16px/1em "Poppins", sans-serif;
  margin-bottom: 10px;
  color: #3A3C3D;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 20px;
}
#mobile-nav > ul.wrapper > li > ul > li > a svg {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
}
#mobile-nav > ul.wrapper > li > ul > li > ul > li > a {
  font: 500 14px/1em "Poppins", sans-serif;
}
#mobile-nav > ul.wrapper .meta {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#mobile-nav > ul.wrapper .meta .site-phone > a {
  font: bold 15px/1em "Poppins", sans-serif;
  color: #de8600;
}
#mobile-nav > ul.wrapper .meta .site-phone > a:before {
  content: "";
  margin-right: 10px;
}
#mobile-nav > ul.wrapper .meta li.is-btn {
  padding: 10px 15px;
}
#mobile-nav > ul.wrapper .meta li.is-btn a {
  font-size: 14px;
  color: white !important;
}

#main {
  position: relative;
  z-index: 1;
  min-height: 135px;
  margin-top: 120px;
}

#footer {
  background: #3A3C3D;
  color: white;
  padding: 45px 0;
}
#footer a {
  color: white;
}
#footer .footer-menu {
  width: 100%;
}
#footer .footer-menu > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
#footer .footer-menu > ul > li {
  width: calc(25% - 25px);
}
#footer .footer-menu > ul > li > a {
  font: bold 18px/1em "Poppins", sans-serif;
  color: white;
}
#footer .footer-menu > ul > li > a:hover {
  color: #FD990F;
}
#footer .footer-menu > ul > li > ul {
  margin-top: 10px;
}
#footer .footer-menu > ul > li > ul > li {
  margin-bottom: 10px;
}
#footer .footer-menu > ul > li > ul > li.is-bold {
  margin-top: 47px;
}
#footer .footer-menu > ul > li > ul > li.is-bold > a {
  font-weight: bold;
}
#footer .footer-menu > ul > li > ul > li > a {
  font: 300 18px/1em "Poppins", sans-serif;
  color: white;
}
#footer .footer-menu > ul > li > ul > li > a:hover {
  color: #FD990F;
}
#footer .footer-menu li {
  margin-bottom: 15px;
}
#footer .footer-menu li:last-child {
  margin-bottom: 0;
}
#footer .footer-menu li.is-spacer > a {
  opacity: 0;
  pointer-events: none;
}
#footer .footer-menu li.is-btn a {
  margin-top: 40px;
}
#footer .footer-menu a {
  transition: all 250ms ease-in-out;
}
#footer #footer-address {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
#footer #footer-address svg {
  width: 23px;
}
#footer #footer-phone,
#footer #footer-email {
  text-align: center;
  margin-bottom: 10px;
}
#footer #footer-phone a,
#footer #footer-email a {
  color: white;
  transition: all 250ms ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
}
#footer #footer-phone a:hover,
#footer #footer-email a:hover {
  color: #FD990F;
}
#footer #footer-phone a svg,
#footer #footer-email a svg {
  min-width: 22px;
}

#subfooter {
  background: #3A3C3D;
  color: white;
  padding: 15px 0 35px;
}
#subfooter .wrapper {
  padding-top: 25px;
}
#subfooter .col-socials {
  width: 15%;
}
#subfooter .col-copyright {
  width: 65%;
  padding-right: 20px;
}
#subfooter .col-copyright p {
  font: normal 14px/1.2em "Open Sans", sans-serif;
}
#subfooter .col-copyright p a {
  color: #fff;
  transition: 250ms ease-in-out;
}
#subfooter .col-copyright p a:hover {
  color: #FD990F;
}
#subfooter .col-logo {
  width: calc(25% - 5px);
}
#subfooter #site-copyright {
  color: white;
  margin-top: 10px;
}
#subfooter #site-copyright a {
  color: white;
  transition: all 250ms ease-in-out;
}
#subfooter #site-copyright a:hover {
  color: #de8600;
}

.social-networks ul {
  display: flex;
  justify-content: start;
}
.social-networks ul li {
  margin-right: 10px;
}
.social-networks ul li:last-child {
  margin-right: 0;
}
.social-networks ul li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: white;
  border-radius: 6px;
  transition: all 250ms ease-in-out;
}
.social-networks ul li > a:hover i {
  transform: scale(1.1);
}
.social-networks ul li > a i {
  font-size: 18px;
  transition: all 250ms ease-in-out;
}

.title.primary, .solution-slider .inner-banner h1.primary, .content-row.google-map .gm-style .gm-style-iw-c h3.primary, .google-map.the-blog .gm-style .gm-style-iw-c h3.primary, .content-row.icon-grid .feature-item h4.primary, .icon-grid.the-blog .feature-item h4.primary, .content-row.banner .inner-banner h1.primary, .banner.the-blog .inner-banner h1.primary, .content-row.home-slider .inner-banner h1.primary, .home-slider.the-blog .inner-banner h1.primary, .the-content h3.primary, .the-content h2.primary, .the-content h1 {
  font: normal 50px/1.1em "Poppins", sans-serif;
}
.title.secondary, .solution-slider .inner-banner h1, .content-row.google-map .gm-style .gm-style-iw-c h3.secondary, .google-map.the-blog .gm-style .gm-style-iw-c h3.secondary, .content-row.icon-grid .feature-item h4.secondary, .icon-grid.the-blog .feature-item h4.secondary, .content-row.banner .inner-banner h1, .banner.the-blog .inner-banner h1, .content-row.home-slider .inner-banner h1, .home-slider.the-blog .inner-banner h1, .the-content h3.secondary, .the-content h2.secondary, .the-content h1.secondary {
  font: 500 34px/1.3em "Poppins", sans-serif;
  margin-bottom: 25px;
}
.title.tertiary, .solution-slider .inner-banner h1.tertiary, .content-row.google-map .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c h3, .content-row.icon-grid .feature-item h4, .icon-grid.the-blog .feature-item h4, .content-row.banner .inner-banner h1.tertiary, .banner.the-blog .inner-banner h1.tertiary, .content-row.home-slider .inner-banner h1.tertiary, .home-slider.the-blog .inner-banner h1.tertiary, .the-content h3, .the-content h2.tertiary, .the-content h1.tertiary {
  font: normal 24px/1.3em "Poppins", sans-serif;
}
.title.secondary-content, .solution-slider .inner-banner h1.secondary-content, .content-row.google-map .gm-style .gm-style-iw-c h3.secondary-content, .google-map.the-blog .gm-style .gm-style-iw-c h3.secondary-content, .content-row.icon-grid .feature-item h4.secondary-content, .icon-grid.the-blog .feature-item h4.secondary-content, .content-row.banner .inner-banner h1.secondary-content, .banner.the-blog .inner-banner h1.secondary-content, .content-row.home-slider .inner-banner h1.secondary-content, .home-slider.the-blog .inner-banner h1.secondary-content, .the-content h3.secondary-content, .the-content h2, .the-content h1.secondary-content {
  font: normal 30px/1.3em "Poppins", sans-serif;
}
.title.no-margin, .solution-slider .inner-banner h1.no-margin, .content-row.google-map .gm-style .gm-style-iw-c h3.no-margin, .google-map.the-blog .gm-style .gm-style-iw-c h3.no-margin, .content-row.icon-grid .feature-item h4.no-margin, .icon-grid.the-blog .feature-item h4.no-margin, .content-row.banner .inner-banner h1.no-margin, .banner.the-blog .inner-banner h1.no-margin, .content-row.home-slider .inner-banner h1.no-margin, .home-slider.the-blog .inner-banner h1.no-margin, .the-content h3.no-margin, .the-content h2.no-margin, .the-content h1.no-margin {
  margin-bottom: 0;
}
.title.bold, .solution-slider .inner-banner h1.bold, .content-row.google-map .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c h3, .content-row.icon-grid .feature-item h4, .icon-grid.the-blog .feature-item h4, .content-row.banner .inner-banner h1.bold, .banner.the-blog .inner-banner h1.bold, .content-row.home-slider .inner-banner h1.bold, .home-slider.the-blog .inner-banner h1.bold, .the-content h3.bold, .the-content h2.bold, .the-content h1.bold {
  font-weight: bold;
}

.the-content *:last-child {
  margin-bottom: 0;
}
.the-content h1, .the-content h2, .the-content h3, .the-content h4, .the-content h5, .the-content h6, .the-content p {
  margin-bottom: 25px;
}
.the-content p {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}
.the-content ul {
  margin-bottom: 25px;
}
.the-content ul + p {
  margin-bottom: 10px;
}
.the-content ul > li {
  margin-left: 0 !important;
}
.the-content ul li {
  position: relative;
  padding-left: 15px;
  margin-left: 20px;
  margin-bottom: 5px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
.the-content ul li:before {
  position: absolute;
  top: 11px;
  left: 0;
  display: block;
  content: "";
  background: var(--text-color, #3A3C3D);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.the-content ol {
  counter-reset: li;
  margin-bottom: 30px;
}
.the-content ol > li {
  margin-left: 0 !important;
  margin-bottom: 10px;
}
.the-content ol li {
  counter-increment: li;
  margin-left: 20px;
  padding-left: 1em;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
.the-content ol li:before {
  content: counter(li) ". ";
  color: #de8600;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.the-content blockquote {
  position: relative;
  padding: 15px 0 15px 25px;
  margin: 25px 0;
  font: italic 14px/1.3em "Poppins", sans-serif;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 5px;
  overflow: hidden;
}
.the-content blockquote:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #de8600;
}
.the-content a {
  color: #FD990F;
  font-weight: bold;
}
.the-content a:hover {
  color: #3A3C3D;
}
.the-content hr {
  margin: 60px 0;
  border: none;
  border-top: 1px solid #CBCBCB;
}

.checkmark-list li {
  display: flex;
  margin-bottom: 30px;
}
.checkmark-list li:last-child {
  margin-bottom: 0;
}
.checkmark-list li:before {
  content: "";
  position: relative;
  top: 5px;
  margin-right: 10px;
  width: 30px;
}
.checkmark-list li span {
  width: calc(100% - 30px);
}

.buttons {
  margin-top: 50px;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  flex-direction: row;
  align-items: start;
  flex-wrap: wrap;
}
.buttons.no-margin {
  margin: 0;
}
.buttons .btn, .buttons body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .buttons input[type=button],
.buttons body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .buttons input[type=submit], .buttons #header #site-nav > ul > li.is-btn > a, #header .buttons #site-nav > ul > li.is-btn > a, .buttons #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .buttons li.is-btn, .buttons #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .buttons a, .buttons .the-content .button.in-content, .the-content .buttons .button.in-content {
  margin: 0 10px 25px 10px;
}
.buttons .btn:last-child, .buttons body .gform_wrapper .gform_footer input[type=button]:last-child, body .gform_wrapper .gform_footer .buttons input[type=button]:last-child,
.buttons body .gform_wrapper .gform_footer input[type=submit]:last-child,
body .gform_wrapper .gform_footer .buttons input[type=submit]:last-child, .buttons #header #site-nav > ul > li.is-btn > a:last-child, #header .buttons #site-nav > ul > li.is-btn > a:last-child, .buttons #mobile-nav > ul.wrapper .meta li.is-btn:last-child, #mobile-nav > ul.wrapper .meta .buttons li.is-btn:last-child, .buttons #footer .footer-menu li.is-btn a:last-child, #footer .footer-menu li.is-btn .buttons a:last-child, .buttons .the-content .button.in-content:last-child, .the-content .buttons .button.in-content:last-child {
  margin-bottom: 0;
}

.row.gutter-20 {
  margin-left: -10px;
  margin-right: -10px;
}
.row.gutter-20 > div[class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}
.row.gutter-100 {
  margin-left: -50px;
  margin-right: -50px;
}
.row.gutter-100 > div[class*=col-] {
  padding-left: 50px;
  padding-right: 50px;
}

.bc-container {
  position: relative;
  z-index: 11;
  padding-bottom: 15px;
  top: -50px;
}
.bc-container .rank-math-breadcrumb {
  color: inherit;
}
.bc-container .rank-math-breadcrumb p {
  display: flex;
  align-items: center;
  color: inherit;
}
.bc-container .rank-math-breadcrumb p a {
  margin-right: 10px;
  font: normal 16px/1em "Open Sans", sans-serif;
  color: #FD990F;
  transition: 250ms ease-in-out;
}
.bc-container .rank-math-breadcrumb p a:hover {
  color: #3A3C3D;
}
.bc-container .rank-math-breadcrumb p span {
  font: normal 16px/1em "Open Sans", sans-serif;
  color: #3A3C3D;
  margin-right: 10px;
}
.bc-container .rank-math-breadcrumb p span.separator {
  font-size: 0px;
}
.bc-container .rank-math-breadcrumb p span.separator:after {
  content: "";
  font-size: 20px;
  color: #3A3C3D;
}

.category .post-list .row .col-12, .blog .post-list .row .col-12 {
  margin-bottom: 25px;
}
.category .post-list .row .col-12:nth-child(n+7), .blog .post-list .row .col-12:nth-child(n+7) {
  display: none;
}
.category .post-list.show-all .row .col-12:nth-child(n+6), .blog .post-list.show-all .row .col-12:nth-child(n+6) {
  display: block;
}
.category .post-list.show-all .btn-show-all, .blog .post-list.show-all .btn-show-all {
  display: none;
}

.blog-block {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  margin-bottom: 35px;
  min-height: 400px;
  height: 100%;
  background-color: white;
}
.blog-block .featured-image {
  position: relative;
  position: relative;
  display: block;
  background: rgba(207, 207, 207, 0.23);
  border: 1px solid #B7B8B8;
  border-radius: 2px;
  margin-bottom: 15px;
}
.blog-block .featured-image:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.blog-block .featured-image > img,
.blog-block .featured-image > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-block .featured-image > img {
  z-index: 3;
}
.blog-block .image {
  position: relative;
  position: relative;
}
.blog-block .image:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.blog-block .image > img,
.blog-block .image > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-block .meta {
  text-align: center;
  position: relative;
  padding: 0 20px 40px 20px;
}
.blog-block .meta * {
  color: #3A3C3D;
}
.blog-block .meta time {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
}
.blog-block .meta h3 {
  font: 600 22px/120% "Poppins", sans-serif;
  margin-bottom: 35px;
}
.blog-block .meta h3 a {
  color: white;
}
.blog-block .meta h3 a:hover {
  color: #FD990F;
}
.blog-block .meta .cat-label {
  padding: 2px 10px;
  border-radius: 3px;
  background: white;
  border: 1px solid #1E95D3;
  display: inline-block;
  transform: translateY(-50%);
}
.blog-block .meta .the-content {
  margin-top: 20px;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}

.ressource-block {
  text-align: center;
  padding: 20px 10px;
  background: #FFE3F1;
  border-radius: 10px;
  width: calc(25% - 16px);
  margin: 0 8px 50px;
}
.ressource-block h3 {
  font: 500 20px/120% "Poppins", sans-serif;
  margin-bottom: 25px;
  color: #3A3C3D;
}
.ressource-block p {
  font: normal 16px "Open Sans", sans-serif;
  margin-bottom: 15px;
}
.ressource-block a {
  font: 600 16px/120% "Open Sans", sans-serif;
  color: #FD990F;
}
.ressource-block a:hover {
  color: #de8600;
}

.error404 .content-row, .error404 .the-blog {
  padding: 200px 0;
}
.error404 .the-content h1 {
  font: bold 100px/1em "Poppins", sans-serif;
}

.pagination {
  text-align: center;
}
.pagination a {
  color: #FD990F;
  font-weight: bold;
}
.pagination a:hover {
  color: #de8600;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  margin: 0 2px;
}

.sidebar .sidebar__inner {
  padding: 25px;
  background: rgba(207, 207, 207, 0.23);
}
.sidebar .widget {
  margin-bottom: 60px;
}
.sidebar .widget:last-child {
  margin-bottom: 0;
}
.sidebar .widget > h4 {
  margin-bottom: 15px;
}
.sidebar .widget nav ul li {
  font: bold 16px/1.3em "Poppins", sans-serif;
  margin-bottom: 5px;
}
.sidebar .widget nav ul li:last-child {
  margin-bottom: 0;
}
.sidebar .widget nav ul li.current-cat a {
  color: #de8600;
}
.sidebar .widget nav ul li a {
  color: #FD990F;
}
.sidebar .widget nav ul li a[aria-current=page] {
  color: #de8600;
}
.sidebar .widget nav ul li a:hover {
  color: #3A3C3D;
}

#searchform > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#searchform > div input[type=text] {
  width: 100%;
  padding: 10px;
  border: 0;
  font: normal 16px/1em "Poppins", sans-serif;
}
#searchform > div input[type=submit] {
  display: none;
}

.the-blog .blog-posts .blog-row {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(207, 207, 207, 0.23);
}
.the-blog .blog-posts .blog-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.the-blog .blog-posts .blog-row .meta h3 {
  margin-bottom: 10px;
}
.the-blog .blog-posts .blog-row .meta h3 a {
  color: #3A3C3D;
}
.the-blog .blog-posts .blog-row .meta h3 a:hover {
  color: #FD990F;
}
.the-blog .blog-posts .blog-row .meta time {
  display: block;
  margin-bottom: 25px;
}
.the-blog .blog-posts .blog-row .featured-image {
  position: relative;
  position: relative;
  display: block;
  background: rgba(207, 207, 207, 0.23);
  border: 1px solid #B7B8B8;
  border-radius: 2px;
  margin-bottom: 15px;
}
.the-blog .blog-posts .blog-row .featured-image:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.the-blog .blog-posts .blog-row .featured-image > img,
.the-blog .blog-posts .blog-row .featured-image > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.the-blog .blog-posts .blog-row .featured-image > img {
  z-index: 3;
}

.content-row, .the-blog {
  position: relative;
}
.content-row.padding-both, .the-blog {
  padding-top: 65px;
  padding-bottom: 65px;
}
.content-row.padding-none, .padding-none.the-blog {
  padding: 0;
}
.content-row.padding-top, .padding-top.the-blog {
  padding-top: 65px;
}
.content-row.padding-bottom, .padding-bottom.the-blog {
  padding-bottom: 65px;
}
.content-row.grey, .grey.the-blog {
  background: rgba(207, 207, 207, 0.23);
}
.content-row.has-rounded-top, .has-rounded-top.the-blog {
  padding-top: 100px;
}
.content-row.banner .rounded-top, .banner.the-blog .rounded-top {
  top: 50px;
}
.content-row .rounded-top, .the-blog .rounded-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.content-row .rounded-top svg, .the-blog .rounded-top svg {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: block;
  width: auto;
  max-height: initial;
}
.content-row .rounded-top svg path, .the-blog .rounded-top svg path {
  fill: var(--rounded-top-color) !important;
}
.content-row .intro, .the-blog .intro {
  text-align: center;
  margin-bottom: 30px;
}
.content-row .outro, .the-blog .outro {
  text-align: center;
  margin-top: 30px;
}
.content-row.home-slider, .home-slider.the-blog {
  min-height: 450px;
  margin-bottom: 50px;
}
.content-row.home-slider .slick-slide, .home-slider.the-blog .slick-slide {
  position: relative;
}
.content-row.home-slider > svg, .home-slider.the-blog > svg {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.content-row.home-slider .slick-list, .home-slider.the-blog .slick-list {
  overflow: visible;
}
.content-row.home-slider .wrapper, .home-slider.the-blog .wrapper {
  padding-top: 150px;
}
.content-row.home-slider .wrapper.d-flex .image, .home-slider.the-blog .wrapper.d-flex .image {
  position: relative;
  z-index: 12;
}
.content-row.home-slider .wrapper.d-flex .image img, .home-slider.the-blog .wrapper.d-flex .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 200px);
  max-width: 200%;
}
.content-row.home-slider .stage-banner, .home-slider.the-blog .stage-banner {
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 0px);
  position: relative;
  overflow: hidden;
  position: absolute;
}
.content-row.home-slider .stage-banner > img, .home-slider.the-blog .stage-banner > img,
.content-row.home-slider .stage-banner > iframe,
.home-slider.the-blog .stage-banner > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-row.home-slider .stage-banner video, .home-slider.the-blog .stage-banner video {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content-row.home-slider .stage-banner img, .home-slider.the-blog .stage-banner img {
  z-index: 1;
}
.content-row.home-slider .inner-banner, .home-slider.the-blog .inner-banner {
  position: relative;
  z-index: 2;
  padding: 0px 0 80px;
}
.content-row.home-slider .inner-banner h3, .home-slider.the-blog .inner-banner h3 {
  font-size: 35px;
}
.content-row.home-slider .slick-dots, .home-slider.the-blog .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.content-row.home-slider .slick-dots li button, .home-slider.the-blog .slick-dots li button {
  font-size: 0px;
  padding: 0px;
  margin: 0px;
  width: 10px;
  height: 10px;
  background-color: #728489;
  border: 0px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.content-row.home-slider .slick-dots li.slick-active button, .home-slider.the-blog .slick-dots li.slick-active button {
  background-color: white;
}
.content-row.banner, .banner.the-blog {
  min-height: 450px;
  /*&> svg {
  	position: absolute;
  	top: -120px;
  	left:50%;
  	transform:translateX(-50%);
  	z-index: 10;
  }*/
}
.content-row.banner.padding-both, .content-row.banner.the-blog, .banner.the-blog {
  padding-top: 65px;
  padding-bottom: 65px;
}
.content-row.banner .the-content p, .banner.the-blog .the-content p {
  font-size: 28px;
  line-height: 1.2em;
}
.content-row.banner .wrapper.d-flex .image, .banner.the-blog .wrapper.d-flex .image {
  position: relative;
  z-index: 12;
}
.content-row.banner .wrapper.d-flex .image img, .banner.the-blog .wrapper.d-flex .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 200px);
  max-width: 200%;
}
.content-row.banner .wrapper .col-12:first-child, .banner.the-blog .wrapper .col-12:first-child {
  padding-left: 0px;
  padding-right: 0px;
}
.content-row.banner .stage-banner, .banner.the-blog .stage-banner {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  position: absolute;
}
.content-row.banner .stage-banner > img, .banner.the-blog .stage-banner > img,
.content-row.banner .stage-banner > iframe,
.banner.the-blog .stage-banner > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-row.banner .stage-banner video, .banner.the-blog .stage-banner video {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content-row.banner .stage-banner .bg-img-filter, .banner.the-blog .stage-banner .bg-img-filter {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
}
.content-row.banner .stage-banner img, .banner.the-blog .stage-banner img, .content-row.banner .stage-banner .bg-img-filter, .banner.the-blog .stage-banner .bg-img-filter {
  z-index: 0;
  object-position: right;
}
.content-row.banner .stage-banner .mobile-img, .banner.the-blog .stage-banner .mobile-img {
  display: none;
  z-index: 1;
}
.content-row.banner .inner-banner, .banner.the-blog .inner-banner {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  min-height: 450px;
}
.content-row.banner .inner-banner .buttons, .banner.the-blog .inner-banner .buttons {
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
}
.content-row.banner-small, .banner-small.the-blog {
  padding: 60px 0;
  background: #3A3C3D;
}
.content-row.banner-small:not(:first-child) .bc-container, .banner-small.the-blog:not(:first-child) .bc-container {
  display: none;
}
.content-row.banner-small:first-child, .banner-small.the-blog:first-child {
  position: relative;
  top: 50px;
  margin-bottom: 50px;
}
.content-row.banner-small:first-child .bc-container, .banner-small.the-blog:first-child .bc-container {
  top: -100px;
}
.content-row.banner-small h1, .banner-small.the-blog h1 {
  color: white;
  font: 600 50px/120% "Poppins", sans-serif;
}
.content-row.banner-small .rounded-top, .banner-small.the-blog .rounded-top {
  top: -120px;
}
.content-row.banner-small .rounded-top svg, .banner-small.the-blog .rounded-top svg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: auto;
  max-height: initial;
}
.content-row.image-grid .image-item, .image-grid.the-blog .image-item {
  display: block;
}
.content-row.image-grid .image-item > img, .image-grid.the-blog .image-item > img {
  display: block;
}
.content-row.features-grid .feature-item, .features-grid.the-blog .feature-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 6px;
  padding: 5px;
  margin-bottom: 30px;
  transition: all 250ms ease-in-out;
}
.content-row.features-grid .feature-item:before, .features-grid.the-blog .feature-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.content-row.features-grid .feature-item:hover, .features-grid.the-blog .feature-item:hover {
  transform: scale(1.1);
}
.content-row.features-grid .feature-item .inner, .features-grid.the-blog .feature-item .inner {
  text-align: center;
  color: #FD990F;
}
.content-row.features-grid .feature-item .inner h4, .features-grid.the-blog .feature-item .inner h4 {
  font: bold 15px/1.3em "Poppins", sans-serif;
}
.content-row.features-grid .feature-item .image, .features-grid.the-blog .feature-item .image {
  position: relative;
  position: relative;
  width: 55px;
  height: 55px;
  margin: 0 auto 10px auto;
}
.content-row.features-grid .feature-item .image:before, .features-grid.the-blog .feature-item .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.content-row.features-grid .feature-item .image > img, .features-grid.the-blog .feature-item .image > img,
.content-row.features-grid .feature-item .image > iframe,
.features-grid.the-blog .feature-item .image > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.content-row.half-image-half-content .row.gutter-75, .half-image-half-content.the-blog .row.gutter-75 {
  margin-left: -37px;
  margin-right: -37px;
}
.content-row.half-image-half-content .row.gutter-75 > div[class*=col-], .half-image-half-content.the-blog .row.gutter-75 > div[class*=col-] {
  padding-left: 37px;
  padding-right: 37px;
}
.content-row.half-image-half-content .image, .half-image-half-content.the-blog .image {
  border-radius: 5px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  display: block;
  position: relative;
}
.content-row.half-image-half-content .image svg, .half-image-half-content.the-blog .image svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
}
.content-row.half-image-half-content .image.video-thumbnail, .half-image-half-content.the-blog .image.video-thumbnail {
  cursor: pointer;
}
.content-row.half-image-half-content .image.video-thumbnail:after, .half-image-half-content.the-blog .image.video-thumbnail:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #3A3C3D;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.content-row.half-image-half-content .image:first-child, .half-image-half-content.the-blog .image:first-child {
  margin-top: 0;
}
.content-row.half-image-half-content .image > img, .half-image-half-content.the-blog .image > img,
.content-row.half-image-half-content .image > iframe,
.half-image-half-content.the-blog .image > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-row.half-image-half-content .image .magnify, .half-image-half-content.the-blog .image .magnify {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #FD990F;
  color: white;
}
.content-row.half-image-half-content .image > img, .half-image-half-content.the-blog .image > img {
  position: relative;
  z-index: 1;
}
.content-row.half-image-half-content .content > .title, .content-row.half-image-half-content .solution-slider .inner-banner .content > h1, .solution-slider .inner-banner .content-row.half-image-half-content .content > h1, .content-row.half-image-half-content .content-row.google-map .gm-style .gm-style-iw-c .content > h3, .content-row.google-map .gm-style .gm-style-iw-c .content-row.half-image-half-content .content > h3, .content-row.half-image-half-content .google-map.the-blog .gm-style .gm-style-iw-c .content > h3, .google-map.the-blog .gm-style .gm-style-iw-c .content-row.half-image-half-content .content > h3, .content-row.half-image-half-content .content-row.icon-grid .feature-item .content > h4, .content-row.icon-grid .feature-item .content-row.half-image-half-content .content > h4, .content-row.half-image-half-content .icon-grid.the-blog .feature-item .content > h4, .icon-grid.the-blog .feature-item .content-row.half-image-half-content .content > h4, .half-image-half-content.the-blog .content > .title, .half-image-half-content.the-blog .solution-slider .inner-banner .content > h1, .solution-slider .inner-banner .half-image-half-content.the-blog .content > h1, .half-image-half-content.the-blog .content-row.google-map .gm-style .gm-style-iw-c .content > h3, .content-row.google-map .gm-style .gm-style-iw-c .half-image-half-content.the-blog .content > h3, .half-image-half-content.the-blog .google-map.the-blog .gm-style .gm-style-iw-c .content > h3, .google-map.the-blog .gm-style .gm-style-iw-c .half-image-half-content.the-blog .content > h3, .half-image-half-content.the-blog .content-row.icon-grid .feature-item .content > h4, .content-row.icon-grid .feature-item .half-image-half-content.the-blog .content > h4, .half-image-half-content.the-blog .icon-grid.the-blog .feature-item .content > h4, .icon-grid.the-blog .feature-item .half-image-half-content.the-blog .content > h4, .content-row.half-image-half-content .the-content .content > h1, .the-content .content-row.half-image-half-content .content > h1, .half-image-half-content.the-blog .the-content .content > h1, .the-content .half-image-half-content.the-blog .content > h1, .content-row.half-image-half-content .the-content .content > h2, .the-content .content-row.half-image-half-content .content > h2, .half-image-half-content.the-blog .the-content .content > h2, .the-content .half-image-half-content.the-blog .content > h2, .content-row.half-image-half-content .the-content .content > h3, .the-content .content-row.half-image-half-content .content > h3, .half-image-half-content.the-blog .the-content .content > h3, .the-content .half-image-half-content.the-blog .content > h3, .content-row.half-image-half-content .content-row.home-slider .inner-banner .content > h1, .content-row.home-slider .inner-banner .content-row.half-image-half-content .content > h1, .half-image-half-content.the-blog .content-row.home-slider .inner-banner .content > h1, .content-row.home-slider .inner-banner .half-image-half-content.the-blog .content > h1, .content-row.half-image-half-content .home-slider.the-blog .inner-banner .content > h1, .home-slider.the-blog .inner-banner .content-row.half-image-half-content .content > h1, .half-image-half-content.the-blog .home-slider.the-blog .inner-banner .content > h1, .home-slider.the-blog .inner-banner .half-image-half-content.the-blog .content > h1, .content-row.half-image-half-content .content-row.banner .inner-banner .content > h1, .content-row.banner .inner-banner .content-row.half-image-half-content .content > h1, .half-image-half-content.the-blog .content-row.banner .inner-banner .content > h1, .content-row.banner .inner-banner .half-image-half-content.the-blog .content > h1, .content-row.half-image-half-content .banner.the-blog .inner-banner .content > h1, .banner.the-blog .inner-banner .content-row.half-image-half-content .content > h1, .half-image-half-content.the-blog .banner.the-blog .inner-banner .content > h1, .banner.the-blog .inner-banner .half-image-half-content.the-blog .content > h1 {
  margin-bottom: 25px;
}
.content-row.half-image-half-content .content-block, .half-image-half-content.the-blog .content-block {
  margin-bottom: 30px;
  text-align: left;
}
.content-row.half-image-half-content .content-block .image, .half-image-half-content.the-blog .content-block .image {
  float: left;
  width: 30%;
  max-width: 120px;
  position: relative;
  position: relative;
  margin-right: 45px;
}
.content-row.half-image-half-content .content-block .image:before, .half-image-half-content.the-blog .content-block .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.content-row.half-image-half-content .content-block .image > img, .half-image-half-content.the-blog .content-block .image > img,
.content-row.half-image-half-content .content-block .image > iframe,
.half-image-half-content.the-blog .content-block .image > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.content-row.half-image-half-content .content-block .meta, .half-image-half-content.the-blog .content-block .meta {
  overflow: hidden;
}
.content-row.half-image-half-content .content-block .meta > h3, .half-image-half-content.the-blog .content-block .meta > h3 {
  font: 600 24px/1.3em "Poppins", sans-serif;
  margin-bottom: 10px;
}
.content-row.half-image-half-content .content-block .checklist-container, .half-image-half-content.the-blog .content-block .checklist-container {
  margin-top: 35px;
}
.content-row.half-image-half-content .content-block .checklist-container ul, .half-image-half-content.the-blog .content-block .checklist-container ul {
  display: flex;
  flex-wrap: wrap;
}
.content-row.half-image-half-content .content-block .checklist-container ul li, .half-image-half-content.the-blog .content-block .checklist-container ul li {
  width: 50%;
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 110%;
  font-weight: 500;
}
.content-row.half-image-half-content .content-block .checklist-container ul li:before, .half-image-half-content.the-blog .content-block .checklist-container ul li:before {
  content: "";
  background: url(../images/icon-check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 0px;
  width: 20px;
  height: 20px;
}
.content-row.half-image-half-content .round-block .content-block, .half-image-half-content.the-blog .round-block .content-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 100%;
  position: relative;
  background: var(--block-bg-color);
}
.content-row.half-image-half-content .round-block .content-block:before, .half-image-half-content.the-blog .round-block .content-block:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.content-row.half-image-half-content .round-block .content-block .meta > h3, .half-image-half-content.the-blog .round-block .content-block .meta > h3 {
  font-size: 18px;
  font-weight: normal;
  color: var(--text-color);
  margin: 0px;
  padding: 10px;
}
.content-row.half-image-half-content .round-block-with-border, .half-image-half-content.the-blog .round-block-with-border {
  margin-top: 50px;
}
.content-row.half-image-half-content .round-block-with-border .content-block, .half-image-half-content.the-blog .round-block-with-border .content-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 100%;
  position: relative;
  background: var(--block-bg-color);
  border: 4px solid #FD990F;
  -webkit-box-shadow: inset 0 0 0 7px #fff;
  box-shadow: inset 0 0 0 7px #fff;
}
.content-row.half-image-half-content .round-block-with-border .content-block:before, .half-image-half-content.the-blog .round-block-with-border .content-block:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.content-row.half-image-half-content .round-block-with-border .content-block .meta > h3, .half-image-half-content.the-blog .round-block-with-border .content-block .meta > h3 {
  font-size: 55px;
  font-weight: bold;
  color: var(--text-color);
  margin: 0px;
  padding: 0 10px 10px;
}
.content-row.half-image-half-content .round-block-with-border .content-block .meta .the-content, .half-image-half-content.the-blog .round-block-with-border .content-block .meta .the-content {
  padding: 0 10px;
  color: var(--text-color);
}
.content-row.half-image-half-content .round-block-with-border .content-block .meta p, .half-image-half-content.the-blog .round-block-with-border .content-block .meta p {
  font-size: 20px;
  font-weight: 500;
}
.content-row.half-image-half-content .tooltip-block, .half-image-half-content.the-blog .tooltip-block {
  overflow: visible;
}
.content-row.half-image-half-content .tooltip-block .meta, .half-image-half-content.the-blog .tooltip-block .meta {
  overflow: visible;
  text-align: center;
  position: relative;
}
.content-row.half-image-half-content .tooltip-block .meta svg, .half-image-half-content.the-blog .tooltip-block .meta svg {
  cursor: pointer;
}
.content-row.half-image-half-content .tooltip-block .meta .the-content, .half-image-half-content.the-blog .tooltip-block .meta .the-content {
  width: 270px;
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  padding: 25px 20px;
  border-radius: 10px;
  background: white;
  opacity: 0;
  z-index: 5;
  border: 1px solid #707070;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.content-row.half-image-half-content .tooltip-block .meta .the-content *, .half-image-half-content.the-blog .tooltip-block .meta .the-content * {
  color: #3A3C3D;
}
.content-row.half-image-half-content .tooltip-block .meta:hover .the-content, .half-image-half-content.the-blog .tooltip-block .meta:hover .the-content {
  top: 100%;
  opacity: 1;
}
.content-row.half-image-half-content .col-12:last-child > .content-block, .half-image-half-content.the-blog .col-12:last-child > .content-block {
  margin-bottom: 0px;
}
.content-row.events .event-block, .events.the-blog .event-block {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border: 1px solid #B7B8B8;
  margin-bottom: 30px;
}
.content-row.events .event-block .date, .events.the-blog .event-block .date {
  width: 200px;
}
.content-row.events .event-block .date .tag, .events.the-blog .event-block .date .tag {
  margin-bottom: 10px;
}
.content-row.events .event-block .date .event-date, .events.the-blog .event-block .date .event-date {
  font: bold 25px/1.2em "Poppins", sans-serif;
}
.content-row.events .event-block .meta, .events.the-blog .event-block .meta {
  width: calc(100% - 350px);
  padding: 0 50px;
}
.content-row.events .event-block .meta h3, .events.the-blog .event-block .meta h3 {
  font: bold 24px/1em "Poppins", sans-serif;
  margin-bottom: 10px;
}
.content-row.events .event-block .meta h3 a, .events.the-blog .event-block .meta h3 a {
  color: #FD990F;
}
.content-row.events .event-block .meta h3 a:hover, .events.the-blog .event-block .meta h3 a:hover {
  color: #de8600;
}
.content-row.events .event-block .actions, .events.the-blog .event-block .actions {
  width: 150px;
}
.content-row.events .event-block .actions .btn, .events.the-blog .event-block .actions .btn, .content-row.events .event-block .actions body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .content-row.events .event-block .actions input[type=button], .events.the-blog .event-block .actions body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .events.the-blog .event-block .actions input[type=button],
.content-row.events .event-block .actions body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .content-row.events .event-block .actions input[type=submit],
.events.the-blog .event-block .actions body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .events.the-blog .event-block .actions input[type=submit], .content-row.events .event-block .actions #header #site-nav > ul > li.is-btn > a, #header .content-row.events .event-block .actions #site-nav > ul > li.is-btn > a, .events.the-blog .event-block .actions #header #site-nav > ul > li.is-btn > a, #header .events.the-blog .event-block .actions #site-nav > ul > li.is-btn > a, .content-row.events .event-block .actions #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .content-row.events .event-block .actions li.is-btn, .events.the-blog .event-block .actions #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .events.the-blog .event-block .actions li.is-btn, .content-row.events .event-block .actions #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .content-row.events .event-block .actions a, .events.the-blog .event-block .actions #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .events.the-blog .event-block .actions a, .content-row.events .event-block .actions .the-content .button.in-content, .the-content .content-row.events .event-block .actions .button.in-content, .events.the-blog .event-block .actions .the-content .button.in-content, .the-content .events.the-blog .event-block .actions .button.in-content {
  width: 100%;
}
.content-row.full-width-content .wrapper > h2:last-child, .full-width-content.the-blog .wrapper > h2:last-child {
  margin-bottom: 0;
}
.content-row.full-width-content .inner, .full-width-content.the-blog .inner {
  max-width: 1110px;
  margin: 0 auto;
}
.content-row.full-width-content .inner .the-content, .full-width-content.the-blog .inner .the-content {
  padding: 0 !important;
  margin: 0 auto;
}
.content-row.full-width-content .title, .content-row.full-width-content .solution-slider .inner-banner h1, .solution-slider .inner-banner .content-row.full-width-content h1, .content-row.full-width-content .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .content-row.full-width-content h3, .content-row.full-width-content .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .content-row.full-width-content h3, .content-row.full-width-content .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .content-row.full-width-content h4, .content-row.full-width-content .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .content-row.full-width-content h4, .full-width-content.the-blog .title, .full-width-content.the-blog .solution-slider .inner-banner h1, .solution-slider .inner-banner .full-width-content.the-blog h1, .full-width-content.the-blog .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .full-width-content.the-blog h3, .full-width-content.the-blog .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .full-width-content.the-blog h3, .full-width-content.the-blog .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .full-width-content.the-blog h4, .full-width-content.the-blog .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .full-width-content.the-blog h4, .content-row.full-width-content .the-content h1, .the-content .content-row.full-width-content h1, .full-width-content.the-blog .the-content h1, .the-content .full-width-content.the-blog h1, .content-row.full-width-content .the-content h2, .the-content .content-row.full-width-content h2, .full-width-content.the-blog .the-content h2, .the-content .full-width-content.the-blog h2, .content-row.full-width-content .the-content h3, .the-content .content-row.full-width-content h3, .full-width-content.the-blog .the-content h3, .the-content .full-width-content.the-blog h3, .content-row.full-width-content .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .full-width-content.the-blog h1, .content-row.full-width-content .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .full-width-content.the-blog h1, .content-row.full-width-content .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .full-width-content.the-blog h1, .content-row.full-width-content .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .full-width-content.the-blog h1 {
  margin-bottom: 35px;
}
.content-row.full-width-content .text-center .inner .buttons, .full-width-content.the-blog .text-center .inner .buttons {
  justify-content: center;
}
.content-row.full-width-content .text-center .inner .buttons:first-child, .full-width-content.the-blog .text-center .inner .buttons:first-child {
  margin-top: 0;
}
.content-row.checklist .wrapper > h2:last-child, .checklist.the-blog .wrapper > h2:last-child {
  margin-bottom: 0;
}
.content-row.checklist .inner, .checklist.the-blog .inner {
  max-width: 1110px;
  margin: 0 auto;
}
.content-row.checklist .inner ul, .checklist.the-blog .inner ul {
  display: flex;
  flex-wrap: wrap;
}
.content-row.checklist .inner ul li, .checklist.the-blog .inner ul li {
  width: 50%;
  padding-right: 15px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
}
.content-row.checklist .inner ul li:before, .checklist.the-blog .inner ul li:before {
  content: "";
  background: url(../images/icon-check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 0px;
  width: 20px;
  height: 20px;
}
.content-row.checklist .title, .content-row.checklist .solution-slider .inner-banner h1, .solution-slider .inner-banner .content-row.checklist h1, .content-row.checklist .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .content-row.checklist h3, .content-row.checklist .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .content-row.checklist h3, .content-row.checklist .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .content-row.checklist h4, .content-row.checklist .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .content-row.checklist h4, .checklist.the-blog .title, .checklist.the-blog .solution-slider .inner-banner h1, .solution-slider .inner-banner .checklist.the-blog h1, .checklist.the-blog .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .checklist.the-blog h3, .checklist.the-blog .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .checklist.the-blog h3, .checklist.the-blog .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .checklist.the-blog h4, .checklist.the-blog .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .checklist.the-blog h4, .content-row.checklist .the-content h1, .the-content .content-row.checklist h1, .checklist.the-blog .the-content h1, .the-content .checklist.the-blog h1, .content-row.checklist .the-content h2, .the-content .content-row.checklist h2, .checklist.the-blog .the-content h2, .the-content .checklist.the-blog h2, .content-row.checklist .the-content h3, .the-content .content-row.checklist h3, .checklist.the-blog .the-content h3, .the-content .checklist.the-blog h3, .content-row.checklist .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .content-row.checklist h1, .checklist.the-blog .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .checklist.the-blog h1, .content-row.checklist .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .content-row.checklist h1, .checklist.the-blog .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .checklist.the-blog h1, .content-row.checklist .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .content-row.checklist h1, .checklist.the-blog .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .checklist.the-blog h1, .content-row.checklist .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .content-row.checklist h1, .checklist.the-blog .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .checklist.the-blog h1 {
  font-size: 34px;
  margin-bottom: 35px;
}
.content-row.form, .form.the-blog {
  position: relative;
  overflow: hidden;
}
.content-row.form.padding-both > .wrapper:before, .form.the-blog > .wrapper:before, .content-row.form.padding-both > .wrapper:after, .form.the-blog > .wrapper:after {
  top: -65px;
  bottom: -65px;
  height: calc(100% + 130px);
}
.content-row.form.padding-top > .wrapper:before, .form.padding-top.the-blog > .wrapper:before, .content-row.form.padding-top > .wrapper:after, .form.padding-top.the-blog > .wrapper:after {
  top: -65px;
  height: calc(100% + 65px);
}
.content-row.form.padding-bottom > .wrapper:before, .form.padding-bottom.the-blog > .wrapper:before, .content-row.form.padding-bottom > .wrapper:after, .form.padding-bottom.the-blog > .wrapper:after {
  top: -65px;
  height: calc(100% + 65px);
}
.content-row.form > .wrapper, .form.the-blog > .wrapper {
  max-width: 780px;
  padding-left: 25px;
  padding-right: 25px;
}
.content-row.form > .wrapper.medium, .form.the-blog > .wrapper.medium {
  max-width: 1140px;
}
.content-row.form > .wrapper .address-block, .form.the-blog > .wrapper .address-block {
  margin-bottom: 80px;
  display: flex;
  align-items: start;
}
.content-row.form > .wrapper .address-block .content, .form.the-blog > .wrapper .address-block .content {
  width: 50%;
}
.content-row.form > .wrapper .address-block .content h3, .form.the-blog > .wrapper .address-block .content h3 {
  margin-bottom: 20px;
  font: 600 22px/100% "Poppins", sans-serif;
}
.content-row.form > .wrapper .address-block .content h3 span, .form.the-blog > .wrapper .address-block .content h3 span {
  font: 400 18px/100% "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
}
.content-row.form > .wrapper .address-block .content:last-child, .form.the-blog > .wrapper .address-block .content:last-child {
  width: 100%;
}
.content-row.form > .wrapper .address-block .google-map-container, .form.the-blog > .wrapper .address-block .google-map-container {
  position: relative;
  width: 50%;
  position: relative;
}
.content-row.form > .wrapper .address-block .google-map-container:before, .form.the-blog > .wrapper .address-block .google-map-container:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.content-row.form > .wrapper .address-block .google-map-container .google-map, .form.the-blog > .wrapper .address-block .google-map-container .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-row.form > .wrapper .address-block:last-child, .form.the-blog > .wrapper .address-block:last-child {
  margin-bottom: 0;
}
.content-row.form .clickdform.mainDiv, .form.the-blog .clickdform.mainDiv {
  padding: 0 !important;
  float: none;
  margin: 0 auto;
  width: 100%;
}
.content-row.form .clickdform.mainDiv #clickdimensionsForm, .form.the-blog .clickdform.mainDiv #clickdimensionsForm {
  width: 100%;
  max-width: 730px;
}
.content-row.form .clickdform.mainDiv #clickdimensionsForm .minSize2, .form.the-blog .clickdform.mainDiv #clickdimensionsForm .minSize2,
.content-row.form .clickdform.mainDiv #clickdimensionsForm .responsiveCell,
.form.the-blog .clickdform.mainDiv #clickdimensionsForm .responsiveCell {
  width: 100% !important;
  min-width: 100% !important;
  text-align: left !important;
}
.content-row.form .clickdform.mainDiv #clickdimensionsForm .emptyCell, .form.the-blog .clickdform.mainDiv #clickdimensionsForm .emptyCell {
  display: none !important;
}
.content-row.form .clickdform.mainDiv #clickdimensionsForm span, .form.the-blog .clickdform.mainDiv #clickdimensionsForm span {
  margin-top: 0;
  font: 300 18px "Poppins", sans-serif !important;
  color: white !important;
}
.content-row.form .clickdform.mainDiv #clickdimensionsForm div.clear, .form.the-blog .clickdform.mainDiv #clickdimensionsForm div.clear {
  display: none;
}
.content-row.form .clickdform.mainDiv #clickdimensionsForm .buttonContainer, .form.the-blog .clickdform.mainDiv #clickdimensionsForm .buttonContainer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.content-row.form .clickdform.mainDiv #clickdimensionsForm .buttonContainer input, .form.the-blog .clickdform.mainDiv #clickdimensionsForm .buttonContainer input {
  display: inline-block !important;
  font: bold 15px/1em "Poppins", sans-serif !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 15px 20px !important;
  border-radius: 6px !important;
  transition: all 250ms ease-in-out;
  border: 2px solid white !important;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0 !important;
  background: #FD990F !important;
  height: auto;
  width: auto !important;
  float: none !important;
}
.content-row.form .clickdform.mainDiv #clickdimensionsForm .buttonContainer input:hover, .form.the-blog .clickdform.mainDiv #clickdimensionsForm .buttonContainer input:hover {
  background: white !important;
  color: #FD990F !important;
}
.content-row.form .clickdform input, .form.the-blog .clickdform input,
.content-row.form .clickdform textarea,
.form.the-blog .clickdform textarea {
  border: 0px;
  border-radius: 5px;
  outline: none;
  font: 300 18px "Poppins", sans-serif;
  padding: 15px 30px;
  width: 100% !important;
  max-width: 100% !important;
}
.content-row.form .gform_wrapper, .form.the-blog .gform_wrapper, .content-row.columned-webinar-block .gform_wrapper, .columned-webinar-block.the-blog .gform_wrapper {
  text-align: left;
}
.content-row.form .gform_wrapper .ginput_container input, .form.the-blog .gform_wrapper .ginput_container input,
.content-row.form .gform_wrapper .ginput_container textarea,
.form.the-blog .gform_wrapper .ginput_container textarea,
.content-row.form .gform_wrapper .ginput_container select,
.form.the-blog .gform_wrapper .ginput_container select, .content-row.columned-webinar-block .gform_wrapper .ginput_container input, .columned-webinar-block.the-blog .gform_wrapper .ginput_container input,
.content-row.columned-webinar-block .gform_wrapper .ginput_container textarea,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container textarea,
.content-row.columned-webinar-block .gform_wrapper .ginput_container select,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container select {
  border: 0px;
  border-radius: 5px;
  outline: none;
  font: 300 18px "Poppins", sans-serif;
  padding: 15px 30px;
  background: white;
}
.content-row.form .gform_wrapper .ginput_container input::-webkit-input-placeholder, .form.the-blog .gform_wrapper .ginput_container input::-webkit-input-placeholder,
.content-row.form .gform_wrapper .ginput_container textarea::-webkit-input-placeholder,
.form.the-blog .gform_wrapper .ginput_container textarea::-webkit-input-placeholder,
.content-row.form .gform_wrapper .ginput_container select::-webkit-input-placeholder,
.form.the-blog .gform_wrapper .ginput_container select::-webkit-input-placeholder, .content-row.columned-webinar-block .gform_wrapper .ginput_container input::-webkit-input-placeholder, .columned-webinar-block.the-blog .gform_wrapper .ginput_container input::-webkit-input-placeholder,
.content-row.columned-webinar-block .gform_wrapper .ginput_container textarea::-webkit-input-placeholder,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container textarea::-webkit-input-placeholder,
.content-row.columned-webinar-block .gform_wrapper .ginput_container select::-webkit-input-placeholder,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container select::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  opacity: 1;
}
.content-row.form .gform_wrapper .ginput_container input::-moz-placeholder, .form.the-blog .gform_wrapper .ginput_container input::-moz-placeholder,
.content-row.form .gform_wrapper .ginput_container textarea::-moz-placeholder,
.form.the-blog .gform_wrapper .ginput_container textarea::-moz-placeholder,
.content-row.form .gform_wrapper .ginput_container select::-moz-placeholder,
.form.the-blog .gform_wrapper .ginput_container select::-moz-placeholder, .content-row.columned-webinar-block .gform_wrapper .ginput_container input::-moz-placeholder, .columned-webinar-block.the-blog .gform_wrapper .ginput_container input::-moz-placeholder,
.content-row.columned-webinar-block .gform_wrapper .ginput_container textarea::-moz-placeholder,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container textarea::-moz-placeholder,
.content-row.columned-webinar-block .gform_wrapper .ginput_container select::-moz-placeholder,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container select::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  opacity: 1;
}
.content-row.form .gform_wrapper .ginput_container input:-ms-input-placeholder, .form.the-blog .gform_wrapper .ginput_container input:-ms-input-placeholder,
.content-row.form .gform_wrapper .ginput_container textarea:-ms-input-placeholder,
.form.the-blog .gform_wrapper .ginput_container textarea:-ms-input-placeholder,
.content-row.form .gform_wrapper .ginput_container select:-ms-input-placeholder,
.form.the-blog .gform_wrapper .ginput_container select:-ms-input-placeholder, .content-row.columned-webinar-block .gform_wrapper .ginput_container input:-ms-input-placeholder, .columned-webinar-block.the-blog .gform_wrapper .ginput_container input:-ms-input-placeholder,
.content-row.columned-webinar-block .gform_wrapper .ginput_container textarea:-ms-input-placeholder,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container textarea:-ms-input-placeholder,
.content-row.columned-webinar-block .gform_wrapper .ginput_container select:-ms-input-placeholder,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container select:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  opacity: 1;
}
.content-row.form .gform_wrapper .ginput_container input:-moz-placeholder, .form.the-blog .gform_wrapper .ginput_container input:-moz-placeholder,
.content-row.form .gform_wrapper .ginput_container textarea:-moz-placeholder,
.form.the-blog .gform_wrapper .ginput_container textarea:-moz-placeholder,
.content-row.form .gform_wrapper .ginput_container select:-moz-placeholder,
.form.the-blog .gform_wrapper .ginput_container select:-moz-placeholder, .content-row.columned-webinar-block .gform_wrapper .ginput_container input:-moz-placeholder, .columned-webinar-block.the-blog .gform_wrapper .ginput_container input:-moz-placeholder,
.content-row.columned-webinar-block .gform_wrapper .ginput_container textarea:-moz-placeholder,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container textarea:-moz-placeholder,
.content-row.columned-webinar-block .gform_wrapper .ginput_container select:-moz-placeholder,
.columned-webinar-block.the-blog .gform_wrapper .ginput_container select:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  opacity: 1;
}
.content-row.form .gform_wrapper .ginput_container .gfield-choice-input, .form.the-blog .gform_wrapper .ginput_container .gfield-choice-input, .content-row.columned-webinar-block .gform_wrapper .ginput_container .gfield-choice-input, .columned-webinar-block.the-blog .gform_wrapper .ginput_container .gfield-choice-input {
  margin-top: 7px;
  vertical-align: top;
}
.content-row.form .gform_wrapper .gfield_error .validation_message, .form.the-blog .gform_wrapper .gfield_error .validation_message, .content-row.columned-webinar-block .gform_wrapper .gfield_error .validation_message, .columned-webinar-block.the-blog .gform_wrapper .gfield_error .validation_message {
  display: none;
}
.content-row.form .gform_wrapper .gfield_error [aria-invalid=true], .form.the-blog .gform_wrapper .gfield_error [aria-invalid=true], .content-row.columned-webinar-block .gform_wrapper .gfield_error [aria-invalid=true], .columned-webinar-block.the-blog .gform_wrapper .gfield_error [aria-invalid=true] {
  border: 1px solid #c02b0a;
  background-color: #fff9f9;
}
.content-row.form .gform_wrapper .gform_footer, .form.the-blog .gform_wrapper .gform_footer, .content-row.columned-webinar-block .gform_wrapper .gform_footer, .columned-webinar-block.the-blog .gform_wrapper .gform_footer {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.content-row.columned-webinar-block .webinar-form-container, .columned-webinar-block.the-blog .webinar-form-container {
  max-width: 780px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 50px auto 20px;
}
.content-row.columned-webinar-block .webinar-form-container .title, .content-row.columned-webinar-block .webinar-form-container .solution-slider .inner-banner h1, .solution-slider .inner-banner .content-row.columned-webinar-block .webinar-form-container h1, .content-row.columned-webinar-block .webinar-form-container .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .content-row.columned-webinar-block .webinar-form-container h3, .content-row.columned-webinar-block .webinar-form-container .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .content-row.columned-webinar-block .webinar-form-container h3, .content-row.columned-webinar-block .webinar-form-container .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .content-row.columned-webinar-block .webinar-form-container h4, .content-row.columned-webinar-block .webinar-form-container .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .content-row.columned-webinar-block .webinar-form-container h4, .columned-webinar-block.the-blog .webinar-form-container .title, .columned-webinar-block.the-blog .webinar-form-container .solution-slider .inner-banner h1, .solution-slider .inner-banner .columned-webinar-block.the-blog .webinar-form-container h1, .columned-webinar-block.the-blog .webinar-form-container .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .columned-webinar-block.the-blog .webinar-form-container h3, .columned-webinar-block.the-blog .webinar-form-container .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .columned-webinar-block.the-blog .webinar-form-container h3, .columned-webinar-block.the-blog .webinar-form-container .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .columned-webinar-block.the-blog .webinar-form-container h4, .columned-webinar-block.the-blog .webinar-form-container .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .columned-webinar-block.the-blog .webinar-form-container h4, .content-row.columned-webinar-block .webinar-form-container .the-content h1, .the-content .content-row.columned-webinar-block .webinar-form-container h1, .columned-webinar-block.the-blog .webinar-form-container .the-content h1, .the-content .columned-webinar-block.the-blog .webinar-form-container h1, .content-row.columned-webinar-block .webinar-form-container .the-content h2, .the-content .content-row.columned-webinar-block .webinar-form-container h2, .columned-webinar-block.the-blog .webinar-form-container .the-content h2, .the-content .columned-webinar-block.the-blog .webinar-form-container h2, .content-row.columned-webinar-block .webinar-form-container .the-content h3, .the-content .content-row.columned-webinar-block .webinar-form-container h3, .columned-webinar-block.the-blog .webinar-form-container .the-content h3, .the-content .columned-webinar-block.the-blog .webinar-form-container h3, .content-row.columned-webinar-block .webinar-form-container .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .content-row.columned-webinar-block .webinar-form-container h1, .columned-webinar-block.the-blog .webinar-form-container .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .columned-webinar-block.the-blog .webinar-form-container h1, .content-row.columned-webinar-block .webinar-form-container .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .content-row.columned-webinar-block .webinar-form-container h1, .columned-webinar-block.the-blog .webinar-form-container .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .columned-webinar-block.the-blog .webinar-form-container h1, .content-row.columned-webinar-block .webinar-form-container .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .content-row.columned-webinar-block .webinar-form-container h1, .columned-webinar-block.the-blog .webinar-form-container .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .columned-webinar-block.the-blog .webinar-form-container h1, .content-row.columned-webinar-block .webinar-form-container .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .content-row.columned-webinar-block .webinar-form-container h1, .columned-webinar-block.the-blog .webinar-form-container .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .columned-webinar-block.the-blog .webinar-form-container h1 {
  margin-bottom: 25px;
}
.content-row.columned-webinar-block .webinar-form-container .gform_confirmation_wrapper, .columned-webinar-block.the-blog .webinar-form-container .gform_confirmation_wrapper {
  text-align: center;
}
.content-row.teasers .wrapper, .teasers.the-blog .wrapper {
  max-width: 1140px;
}
.content-row.teasers .wrapper.small, .teasers.the-blog .wrapper.small {
  max-width: 980px;
}
.content-row.teasers .teaser-block, .teasers.the-blog .teaser-block {
  margin-bottom: 40px;
}
.content-row.teasers .teaser-block.icon .image img, .teasers.the-blog .teaser-block.icon .image img {
  max-width: 200px;
}
.content-row.teasers .teaser-block.image, .teasers.the-blog .teaser-block.image {
  padding: 0 20px;
}
.content-row.teasers .teaser-block .image, .teasers.the-blog .teaser-block .image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}
.content-row.teasers .teaser-block .meta, .teasers.the-blog .teaser-block .meta {
  margin-top: 20px;
  text-align: center;
}
.content-row.teasers .teaser-block .meta > h4, .teasers.the-blog .teaser-block .meta > h4 {
  font: normal 18px/1em "Poppins", sans-serif;
  margin-bottom: 20px;
}
.content-row.teasers .teaser-block .meta > h3, .teasers.the-blog .teaser-block .meta > h3 {
  font: 600 24px/1.3em "Poppins", sans-serif;
  margin-bottom: 15px;
}
.content-row.teasers .teaser-block .meta ul li:before, .teasers.the-blog .teaser-block .meta ul li:before {
  background-color: var(--text-color);
}
.content-row.teasers .teaser-block .meta .buttons, .teasers.the-blog .teaser-block .meta .buttons {
  margin-top: 25px;
  justify-content: center;
}
.content-row.testimonials .slick-arrow, .testimonials.the-blog .slick-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  border: 0px;
  background: transparent url(../images/icon-arrow-slider.svg) no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 42px;
  font-size: 0px;
  cursor: pointer;
}
.content-row.testimonials .slick-arrow.slick-prev, .testimonials.the-blog .slick-arrow.slick-prev {
  left: -60px;
  transform: translateY(-50%) rotateZ(180deg);
}
.content-row.testimonials .slick-arrow.slick-next, .testimonials.the-blog .slick-arrow.slick-next {
  right: -60px;
}
.content-row.testimonials .testimonial-slide, .testimonials.the-blog .testimonial-slide {
  overflow: hidden;
}
.content-row.testimonials .inner-testimonials h3.title, .content-row.testimonials .inner-testimonials .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .content-row.testimonials .inner-testimonials h3, .content-row.testimonials .inner-testimonials .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .content-row.testimonials .inner-testimonials h3, .testimonials.the-blog .inner-testimonials h3.title, .testimonials.the-blog .inner-testimonials .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .testimonials.the-blog .inner-testimonials h3, .testimonials.the-blog .inner-testimonials .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .testimonials.the-blog .inner-testimonials h3, .content-row.testimonials .inner-testimonials .the-content h3, .the-content .content-row.testimonials .inner-testimonials h3, .testimonials.the-blog .inner-testimonials .the-content h3, .the-content .testimonials.the-blog .inner-testimonials h3 {
  margin-bottom: 50px;
  text-align: center;
}
.content-row.testimonials .inner-testimonials .image img, .testimonials.the-blog .inner-testimonials .image img {
  border-radius: 10px;
}
.content-row.testimonials .inner-testimonials .testimonial-block, .testimonials.the-blog .inner-testimonials .testimonial-block {
  margin-bottom: 30px;
}
.content-row.testimonials .inner-testimonials .testimonial-block:last-of-type, .testimonials.the-blog .inner-testimonials .testimonial-block:last-of-type {
  margin-bottom: 0;
}
.content-row.testimonials .inner-testimonials .testimonial-block .image, .testimonials.the-blog .inner-testimonials .testimonial-block .image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-row.testimonials .inner-testimonials .testimonial-block .the-content, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content {
  padding: 0 60px;
  position: relative;
}
.content-row.testimonials .inner-testimonials .testimonial-block .the-content:before, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content:before, .content-row.testimonials .inner-testimonials .testimonial-block .the-content:after, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content:after {
  content: "";
  position: absolute;
  width: 37px;
  height: 50px;
  background: url(../images/icon-quote.svg) no-repeat center center;
  background-size: contain;
}
.content-row.testimonials .inner-testimonials .testimonial-block .the-content:before, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content:before {
  top: 0;
  left: 0;
  transform: rotateZ(180deg);
}
.content-row.testimonials .inner-testimonials .testimonial-block .the-content:after, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content:after {
  right: 0;
  bottom: 0;
  transform-origin: center;
}
.content-row.testimonials .inner-testimonials .testimonial-block .the-content + .btn, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content + .btn, .content-row.testimonials .inner-testimonials .testimonial-block body .gform_wrapper .gform_footer .the-content + input[type=button], body .gform_wrapper .gform_footer .content-row.testimonials .inner-testimonials .testimonial-block .the-content + input[type=button], .testimonials.the-blog .inner-testimonials .testimonial-block body .gform_wrapper .gform_footer .the-content + input[type=button], body .gform_wrapper .gform_footer .testimonials.the-blog .inner-testimonials .testimonial-block .the-content + input[type=button],
.content-row.testimonials .inner-testimonials .testimonial-block body .gform_wrapper .gform_footer .the-content + input[type=submit],
body .gform_wrapper .gform_footer .content-row.testimonials .inner-testimonials .testimonial-block .the-content + input[type=submit],
.testimonials.the-blog .inner-testimonials .testimonial-block body .gform_wrapper .gform_footer .the-content + input[type=submit],
body .gform_wrapper .gform_footer .testimonials.the-blog .inner-testimonials .testimonial-block .the-content + input[type=submit], .content-row.testimonials .inner-testimonials .testimonial-block #header #site-nav > ul > li.is-btn > .the-content + a, #header .content-row.testimonials .inner-testimonials .testimonial-block #site-nav > ul > li.is-btn > .the-content + a, .testimonials.the-blog .inner-testimonials .testimonial-block #header #site-nav > ul > li.is-btn > .the-content + a, #header .testimonials.the-blog .inner-testimonials .testimonial-block #site-nav > ul > li.is-btn > .the-content + a, .content-row.testimonials .inner-testimonials .testimonial-block #mobile-nav > ul.wrapper .meta .the-content + li.is-btn, #mobile-nav > ul.wrapper .meta .content-row.testimonials .inner-testimonials .testimonial-block .the-content + li.is-btn, .testimonials.the-blog .inner-testimonials .testimonial-block #mobile-nav > ul.wrapper .meta .the-content + li.is-btn, #mobile-nav > ul.wrapper .meta .testimonials.the-blog .inner-testimonials .testimonial-block .the-content + li.is-btn, .content-row.testimonials .inner-testimonials .testimonial-block #footer .footer-menu li.is-btn .the-content + a, #footer .footer-menu li.is-btn .content-row.testimonials .inner-testimonials .testimonial-block .the-content + a, .testimonials.the-blog .inner-testimonials .testimonial-block #footer .footer-menu li.is-btn .the-content + a, #footer .footer-menu li.is-btn .testimonials.the-blog .inner-testimonials .testimonial-block .the-content + a, .content-row.testimonials .inner-testimonials .testimonial-block .the-content .the-content + .button.in-content, .the-content .content-row.testimonials .inner-testimonials .testimonial-block .the-content + .button.in-content, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content .the-content + .button.in-content, .the-content .testimonials.the-blog .inner-testimonials .testimonial-block .the-content + .button.in-content {
  margin-top: 35px;
}
.content-row.columned-content .content-col, .columned-content.the-blog .content-col {
  margin-bottom: 60px;
}
.content-row.columned-content .content-col > .title, .content-row.columned-content .solution-slider .inner-banner .content-col > h1, .solution-slider .inner-banner .content-row.columned-content .content-col > h1, .content-row.columned-content .content-row.google-map .gm-style .gm-style-iw-c .content-col > h3, .content-row.google-map .gm-style .gm-style-iw-c .content-row.columned-content .content-col > h3, .content-row.columned-content .google-map.the-blog .gm-style .gm-style-iw-c .content-col > h3, .google-map.the-blog .gm-style .gm-style-iw-c .content-row.columned-content .content-col > h3, .content-row.columned-content .content-row.icon-grid .feature-item .content-col > h4, .content-row.icon-grid .feature-item .content-row.columned-content .content-col > h4, .content-row.columned-content .icon-grid.the-blog .feature-item .content-col > h4, .icon-grid.the-blog .feature-item .content-row.columned-content .content-col > h4, .columned-content.the-blog .content-col > .title, .columned-content.the-blog .solution-slider .inner-banner .content-col > h1, .solution-slider .inner-banner .columned-content.the-blog .content-col > h1, .columned-content.the-blog .content-row.google-map .gm-style .gm-style-iw-c .content-col > h3, .content-row.google-map .gm-style .gm-style-iw-c .columned-content.the-blog .content-col > h3, .columned-content.the-blog .google-map.the-blog .gm-style .gm-style-iw-c .content-col > h3, .google-map.the-blog .gm-style .gm-style-iw-c .columned-content.the-blog .content-col > h3, .columned-content.the-blog .content-row.icon-grid .feature-item .content-col > h4, .content-row.icon-grid .feature-item .columned-content.the-blog .content-col > h4, .columned-content.the-blog .icon-grid.the-blog .feature-item .content-col > h4, .icon-grid.the-blog .feature-item .columned-content.the-blog .content-col > h4, .content-row.columned-content .the-content .content-col > h1, .the-content .content-row.columned-content .content-col > h1, .columned-content.the-blog .the-content .content-col > h1, .the-content .columned-content.the-blog .content-col > h1, .content-row.columned-content .the-content .content-col > h2, .the-content .content-row.columned-content .content-col > h2, .columned-content.the-blog .the-content .content-col > h2, .the-content .columned-content.the-blog .content-col > h2, .content-row.columned-content .the-content .content-col > h3, .the-content .content-row.columned-content .content-col > h3, .columned-content.the-blog .the-content .content-col > h3, .the-content .columned-content.the-blog .content-col > h3, .content-row.columned-content .content-row.home-slider .inner-banner .content-col > h1, .content-row.home-slider .inner-banner .content-row.columned-content .content-col > h1, .columned-content.the-blog .content-row.home-slider .inner-banner .content-col > h1, .content-row.home-slider .inner-banner .columned-content.the-blog .content-col > h1, .content-row.columned-content .home-slider.the-blog .inner-banner .content-col > h1, .home-slider.the-blog .inner-banner .content-row.columned-content .content-col > h1, .columned-content.the-blog .home-slider.the-blog .inner-banner .content-col > h1, .home-slider.the-blog .inner-banner .columned-content.the-blog .content-col > h1, .content-row.columned-content .content-row.banner .inner-banner .content-col > h1, .content-row.banner .inner-banner .content-row.columned-content .content-col > h1, .columned-content.the-blog .content-row.banner .inner-banner .content-col > h1, .content-row.banner .inner-banner .columned-content.the-blog .content-col > h1, .content-row.columned-content .banner.the-blog .inner-banner .content-col > h1, .banner.the-blog .inner-banner .content-row.columned-content .content-col > h1, .columned-content.the-blog .banner.the-blog .inner-banner .content-col > h1, .banner.the-blog .inner-banner .columned-content.the-blog .content-col > h1 {
  margin-bottom: 20px;
}
.content-row.industrie-slider, .industrie-slider.the-blog {
  position: relative;
  overflow: hidden;
  padding-top: 0px;
}
.content-row.industrie-slider .rounded-top, .industrie-slider.the-blog .rounded-top {
  z-index: 4;
}
.content-row.industrie-slider .industrie-slide, .industrie-slider.the-blog .industrie-slide {
  position: relative;
  padding: 160px 0;
}
.content-row.industrie-slider .industrie-slide .slice-bg, .industrie-slider.the-blog .industrie-slide .slice-bg {
  position: relative;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.content-row.industrie-slider .industrie-slide .slice-bg > img, .industrie-slider.the-blog .industrie-slide .slice-bg > img,
.content-row.industrie-slider .industrie-slide .slice-bg > iframe,
.industrie-slider.the-blog .industrie-slide .slice-bg > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-row.industrie-slider .industrie-slide > .wrapper, .industrie-slider.the-blog .industrie-slide > .wrapper {
  padding-left: 25px;
  padding-right: 25px;
  z-index: 3;
}
.content-row.industrie-slider .industrie-slide > .wrapper .the-content, .industrie-slider.the-blog .industrie-slide > .wrapper .the-content {
  margin-top: 30px;
}
.content-row.industrie-slider .industrie-slide .meta, .industrie-slider.the-blog .industrie-slide .meta {
  text-align: center;
}
.content-row.industrie-slider .industrie-slide .meta h3, .industrie-slider.the-blog .industrie-slide .meta h3 {
  margin-bottom: 15px;
}
.content-row.industrie-slider .industrie-slide .the-c2a, .industrie-slider.the-blog .industrie-slide .the-c2a {
  padding: 25px;
}
.content-row.industrie-slider .industrie-slide .the-c2a h3, .industrie-slider.the-blog .industrie-slide .the-c2a h3 {
  font-size: 34px;
}
.content-row.industrie-slider .industrie-slide .the-c2a .buttons, .industrie-slider.the-blog .industrie-slide .the-c2a .buttons {
  margin-top: 30px;
}
.content-row.industrie-slider .buttons, .industrie-slider.the-blog .buttons {
  margin-top: 60px;
}
.content-row.industrie-slider .buttons .btn, .industrie-slider.the-blog .buttons .btn, .content-row.industrie-slider .buttons body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .content-row.industrie-slider .buttons input[type=button], .industrie-slider.the-blog .buttons body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .industrie-slider.the-blog .buttons input[type=button],
.content-row.industrie-slider .buttons body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .content-row.industrie-slider .buttons input[type=submit],
.industrie-slider.the-blog .buttons body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .industrie-slider.the-blog .buttons input[type=submit], .content-row.industrie-slider .buttons #header #site-nav > ul > li.is-btn > a, #header .content-row.industrie-slider .buttons #site-nav > ul > li.is-btn > a, .industrie-slider.the-blog .buttons #header #site-nav > ul > li.is-btn > a, #header .industrie-slider.the-blog .buttons #site-nav > ul > li.is-btn > a, .content-row.industrie-slider .buttons #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .content-row.industrie-slider .buttons li.is-btn, .industrie-slider.the-blog .buttons #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .industrie-slider.the-blog .buttons li.is-btn, .content-row.industrie-slider .buttons #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .content-row.industrie-slider .buttons a, .industrie-slider.the-blog .buttons #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .industrie-slider.the-blog .buttons a, .content-row.industrie-slider .buttons .the-content .button.in-content, .the-content .content-row.industrie-slider .buttons .button.in-content, .industrie-slider.the-blog .buttons .the-content .button.in-content, .the-content .industrie-slider.the-blog .buttons .button.in-content {
  display: block;
  margin-bottom: 10px;
}
.content-row.industrie-slider .buttons .btn:last-child, .industrie-slider.the-blog .buttons .btn:last-child, .content-row.industrie-slider .buttons body .gform_wrapper .gform_footer input[type=button]:last-child, body .gform_wrapper .gform_footer .content-row.industrie-slider .buttons input[type=button]:last-child, .industrie-slider.the-blog .buttons body .gform_wrapper .gform_footer input[type=button]:last-child, body .gform_wrapper .gform_footer .industrie-slider.the-blog .buttons input[type=button]:last-child,
.content-row.industrie-slider .buttons body .gform_wrapper .gform_footer input[type=submit]:last-child,
body .gform_wrapper .gform_footer .content-row.industrie-slider .buttons input[type=submit]:last-child,
.industrie-slider.the-blog .buttons body .gform_wrapper .gform_footer input[type=submit]:last-child,
body .gform_wrapper .gform_footer .industrie-slider.the-blog .buttons input[type=submit]:last-child, .content-row.industrie-slider .buttons #header #site-nav > ul > li.is-btn > a:last-child, #header .content-row.industrie-slider .buttons #site-nav > ul > li.is-btn > a:last-child, .industrie-slider.the-blog .buttons #header #site-nav > ul > li.is-btn > a:last-child, #header .industrie-slider.the-blog .buttons #site-nav > ul > li.is-btn > a:last-child, .content-row.industrie-slider .buttons #mobile-nav > ul.wrapper .meta li.is-btn:last-child, #mobile-nav > ul.wrapper .meta .content-row.industrie-slider .buttons li.is-btn:last-child, .industrie-slider.the-blog .buttons #mobile-nav > ul.wrapper .meta li.is-btn:last-child, #mobile-nav > ul.wrapper .meta .industrie-slider.the-blog .buttons li.is-btn:last-child, .content-row.industrie-slider .buttons #footer .footer-menu li.is-btn a:last-child, #footer .footer-menu li.is-btn .content-row.industrie-slider .buttons a:last-child, .industrie-slider.the-blog .buttons #footer .footer-menu li.is-btn a:last-child, #footer .footer-menu li.is-btn .industrie-slider.the-blog .buttons a:last-child, .content-row.industrie-slider .buttons .the-content .button.in-content:last-child, .the-content .content-row.industrie-slider .buttons .button.in-content:last-child, .industrie-slider.the-blog .buttons .the-content .button.in-content:last-child, .the-content .industrie-slider.the-blog .buttons .button.in-content:last-child {
  margin-bottom: 0;
}
.content-row.icon-grid .feature-item, .icon-grid.the-blog .feature-item {
  padding: 0px;
  background: white;
  margin-bottom: 30px;
  border-radius: 5px;
  text-align: center;
}
.content-row.icon-grid .feature-item .image, .icon-grid.the-blog .feature-item .image {
  position: relative;
  display: block;
  margin: 0 auto 15px auto;
  height: 105px;
}
.content-row.icon-grid .feature-item .image > img, .icon-grid.the-blog .feature-item .image > img,
.content-row.icon-grid .feature-item .image > iframe,
.icon-grid.the-blog .feature-item .image > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.content-row.icon-grid .feature-item .image > a, .icon-grid.the-blog .feature-item .image > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.content-row.icon-grid .feature-item .image > a > img, .icon-grid.the-blog .feature-item .image > a > img,
.content-row.icon-grid .feature-item .image > a > iframe,
.icon-grid.the-blog .feature-item .image > a > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.content-row.icon-grid .feature-item h4, .icon-grid.the-blog .feature-item h4 {
  margin-bottom: 25px;
  color: #FD990F;
}
.content-row.icon-grid .feature-item h4 > a:hover, .icon-grid.the-blog .feature-item h4 > a:hover {
  color: #de8600;
}
.content-row.icon-grid .feature-item .the-content, .icon-grid.the-blog .feature-item .the-content {
  font: 16px/1.65em "Poppins", sans-serif;
}
.content-row.icon-slider .icon-slider-container .slick-arrow, .icon-slider.the-blog .icon-slider-container .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0px;
  background: transparent;
  padding: 0;
  font-size: 0px;
  width: 30px;
  height: 45px;
  background: url(../images/icon-arrow-slider.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.content-row.icon-slider .icon-slider-container .slick-arrow.slick-next, .icon-slider.the-blog .icon-slider-container .slick-arrow.slick-next {
  right: -60px;
}
.content-row.icon-slider .icon-slider-container .slick-arrow.slick-prev, .icon-slider.the-blog .icon-slider-container .slick-arrow.slick-prev {
  left: -60px;
  transform: translateY(-50%) rotateZ(180deg);
}
.content-row.icon-slider .feature-item, .icon-slider.the-blog .feature-item {
  padding: 0px;
  text-align: center;
}
.content-row.icon-slider .feature-item img, .icon-slider.the-blog .feature-item img {
  display: inline-block;
}
.content-row.faq .wrapper, .faq.the-blog .wrapper {
  padding: 25px;
}
.content-row.faq .faq-questions, .faq.the-blog .faq-questions {
  margin: 20px auto;
}
.content-row.faq .question, .faq.the-blog .question {
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid #CBCBCB;
}
.content-row.faq .question:first-child, .faq.the-blog .question:first-child {
  margin-top: 0;
  border-top: 1px solid #CBCBCB;
}
.content-row.faq .question:hover .top, .faq.the-blog .question:hover .top {
  color: #de8600;
}
.content-row.faq .question.active .top svg, .faq.the-blog .question.active .top svg {
  transform: rotate(180deg);
}
.content-row.faq .question .top, .faq.the-blog .question .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3A3C3D;
  font-weight: bold;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
.content-row.faq .question .top span, .faq.the-blog .question .top span {
  width: calc(100% - 60px);
}
.content-row.faq .question .top svg, .faq.the-blog .question .top svg {
  height: 16px;
  width: 25px;
  transition: 250ms ease-in-out;
}
.content-row.faq .question .answer, .faq.the-blog .question .answer {
  display: none;
  margin: 10px 0 20px 0;
  padding: 5px 40px 5px 0;
}
.content-row.faq .question .answer .the-content, .faq.the-blog .question .answer .the-content {
  font-size: 16px;
}
.content-row.google-map, .google-map.the-blog {
  height: 482px;
  max-height: 90vh;
}
.content-row.google-map .gmap, .google-map.the-blog .gmap {
  width: 100%;
  height: 482px;
}
.content-row.google-map .gmap img, .google-map.the-blog .gmap img {
  max-width: inherit !important;
}
.content-row.google-map .gm-style .gm-style-iw-c, .google-map.the-blog .gm-style .gm-style-iw-c {
  padding: 25px;
  min-width: 300px !important;
}
.content-row.google-map .gm-style .gm-style-iw-c button, .google-map.the-blog .gm-style .gm-style-iw-c button {
  top: 0 !important;
  right: 0 !important;
}
.content-row.google-map .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c h3 {
  margin-bottom: 15px;
}
.content-row.google-map .gm-style .gm-style-iw-c p, .google-map.the-blog .gm-style .gm-style-iw-c p {
  font-size: 16px;
  margin-bottom: 15px;
}
.content-row.google-map .gm-style .gm-style-iw-c p:last-child, .google-map.the-blog .gm-style .gm-style-iw-c p:last-child {
  margin-bottom: 15px;
}
.content-row .sidebar, .the-blog .sidebar {
  margin-top: 40px;
}

/*- Solutions -*/
.solution-slider {
  min-height: 450px;
  margin-bottom: 50px;
  position: relative;
  padding-top: 65px;
  padding-bottom: 65px;
}
.solution-slider > svg {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.solution-slider .wrapper.d-flex .image {
  position: relative;
  z-index: 12;
}
.solution-slider .wrapper.d-flex .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 200px);
  max-width: 200%;
}
.solution-slider .wrapper.d-flex .col-12:first-child {
  padding-left: 0px;
  padding-right: 0px;
}
.solution-slider .stage-banner {
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 0px);
  position: relative;
  overflow: hidden;
  position: absolute;
}
.solution-slider .stage-banner > img,
.solution-slider .stage-banner > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.solution-slider .stage-banner img {
  z-index: 1;
}
.solution-slider .inner-banner {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}
.solution-slider .inner-banner h1 {
  color: white;
}
.solution-slider .inner-banner h3 {
  font-size: 35px;
}

.solutions .solution-block {
  padding: 80px 0;
}
.solutions .solution-block:nth-child(even) {
  background-color: #EDF4F5;
  position: relative;
  padding-top: 115px;
  overflow: hidden;
}
.solutions .solution-block:nth-child(even) .rounded-top {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
}
.solutions .solution-block:nth-child(even) .rounded-top svg {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: block;
  width: auto;
  max-height: initial;
}
.solutions .solution-block:nth-child(even) .rounded-top svg path {
  fill: #fff;
}
.solutions .solution-block:nth-child(even) .col-text {
  order: 2;
  text-align: right;
}
.solutions .solution-block:nth-child(even) .col-img {
  order: 1;
}
.solutions .solution-block .col-text img {
  margin-bottom: 30px;
}
.solutions .solution-block .col-text h3 {
  font-size: 34px;
  line-height: 120%;
  margin-bottom: 30px;
}
.solutions .solution-block .col-text .the-content {
  margin-bottom: 30px;
}

.videos {
  padding-top: 115px;
  background-color: #1E95D3;
}
.videos .slick-slide {
  overflow: hidden;
}
.videos .slick-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  border: 0px;
  background: transparent url(../images/icon-arrow-slider.svg) no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 42px;
  font-size: 0px;
  cursor: pointer;
}
.videos .slick-arrow.slick-prev {
  left: -60px;
  transform: translateY(-50%) rotateZ(180deg);
}
.videos .slick-arrow.slick-next {
  right: -60px;
}
.videos h3.title, .videos .the-content h3, .the-content .videos h3, .videos .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .videos h3, .videos .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .videos h3 {
  margin-bottom: 50px;
  text-align: center;
  color: white;
}
.videos .inner-videos .image img {
  border-radius: 10px;
}
.videos .inner-videos .col-img .image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.videos .inner-videos .col-img .image span.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
}
.videos .inner-videos .col-text {
  text-align: left;
}
.videos .inner-videos .col-text .the-content {
  position: relative;
}
.videos .inner-videos .col-text .the-content *, .videos .inner-videos .col-text .the-content p {
  color: white !important;
}
.videos .inner-videos .col-text .the-content + .btn, .videos .inner-videos .col-text body .gform_wrapper .gform_footer .the-content + input[type=button], body .gform_wrapper .gform_footer .videos .inner-videos .col-text .the-content + input[type=button],
.videos .inner-videos .col-text body .gform_wrapper .gform_footer .the-content + input[type=submit],
body .gform_wrapper .gform_footer .videos .inner-videos .col-text .the-content + input[type=submit], .videos .inner-videos .col-text #header #site-nav > ul > li.is-btn > .the-content + a, #header .videos .inner-videos .col-text #site-nav > ul > li.is-btn > .the-content + a, .videos .inner-videos .col-text #mobile-nav > ul.wrapper .meta .the-content + li.is-btn, #mobile-nav > ul.wrapper .meta .videos .inner-videos .col-text .the-content + li.is-btn, .videos .inner-videos .col-text #footer .footer-menu li.is-btn .the-content + a, #footer .footer-menu li.is-btn .videos .inner-videos .col-text .the-content + a, .videos .inner-videos .col-text .the-content .the-content + .button.in-content, .the-content .videos .inner-videos .col-text .the-content + .button.in-content {
  margin-top: 40px;
}
.videos .inner-videos .video-block {
  margin-bottom: 30px;
}
.videos .inner-videos .video-block:last-of-type {
  margin-bottom: 0;
}

.filter-container {
  margin-bottom: 40px;
}
.filter-container .tax-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.filter-container .tax-filters .btn.active, .filter-container .tax-filters body .gform_wrapper .gform_footer input.active[type=button], body .gform_wrapper .gform_footer .filter-container .tax-filters input.active[type=button],
.filter-container .tax-filters body .gform_wrapper .gform_footer input.active[type=submit],
body .gform_wrapper .gform_footer .filter-container .tax-filters input.active[type=submit], .filter-container .tax-filters #header #site-nav > ul > li.is-btn > a.active, #header .filter-container .tax-filters #site-nav > ul > li.is-btn > a.active, .filter-container .tax-filters #mobile-nav > ul.wrapper .meta li.active.is-btn, #mobile-nav > ul.wrapper .meta .filter-container .tax-filters li.active.is-btn, .filter-container .tax-filters #footer .footer-menu li.is-btn a.active, #footer .footer-menu li.is-btn .filter-container .tax-filters a.active, .filter-container .tax-filters .the-content .active.button.in-content, .the-content .filter-container .tax-filters .active.button.in-content {
  background-color: #de8600;
}
.filter-container .category-filter-dropdown {
  display: none;
}

.featured-post-list {
  background: #F2F5F8;
}

.post-list {
  background: #EDF4F5;
  padding-top: 65px !important;
}
.post-list .row + .row {
  margin-top: 40px;
}

.single-post .post-list {
  overflow: hidden;
  padding-top: 65px !important;
}

.fake-sep {
  display: block;
}

.document-block .title, .document-block .the-content h1, .the-content .document-block h1, .document-block .the-content h2, .the-content .document-block h2, .document-block .the-content h3, .the-content .document-block h3, .document-block .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .document-block h1, .document-block .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .document-block h1, .document-block .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .document-block h1, .document-block .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .document-block h1, .document-block .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .document-block h4, .document-block .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .document-block h4, .document-block .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .document-block h3, .document-block .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .document-block h3, .document-block .solution-slider .inner-banner h1, .solution-slider .inner-banner .document-block h1 {
  margin-bottom: 15px !important;
}
.document-block .metas {
  margin-bottom: 25px;
}
.document-block .metas span {
  font: normal 16px/100% "Open Sans", sans-serif;
}
.document-block .image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.document-block .image img {
  display: block;
  margin: 0;
}
.document-block .image.video-thumbnail:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #3A3C3D;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.document-block .image.video-thumbnail svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
}

.faq-block {
  border-bottom: 1px solid #3A3C3D;
  padding: 30px 0;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.faq-block > svg {
  position: absolute;
  right: 0;
  top: 35px;
  width: 25px;
  color: #00B4CF;
  font-size: 40px;
  transform: rotateZ(0);
  transition: all 0.3s ease-in-out;
}
.faq-block > svg path {
  stroke: #00B4CF;
}
.faq-block h4 {
  font: 500 18px/120% "Open Sans", sans-serif;
  color: #00B4CF;
  padding-right: 35px;
}
.faq-block .answer {
  display: none;
  padding-top: 30px;
}
.faq-block.active > svg {
  transform: rotateZ(180deg);
}

.single-ressource .pdf-content {
  display: none !important;
}
.single-ressource .the-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
}
.single-ressource .video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.single-ressource .video-thumbnail img {
  width: 100%;
}
.single-ressource .video-thumbnail:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #3A3C3D;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.single-ressource .video-thumbnail svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
}
.single-ressource .video-thumbnail .video-iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.single-ressource .document-image {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 370px;
  border-radius: 5px;
  overflow: hidden;
}

.col-form {
  max-width: 585px;
}
.col-form h3 {
  margin-bottom: 30px;
}
.col-form .gform_wrapper .gform_description {
  font: bold 1.2rem/120% "Poppins", sans-serif;
  margin-bottom: 30px;
}
.col-form .gform_wrapper input[type=text],
.col-form .gform_wrapper textarea {
  font: normal 16px "Open Sans", sans-serif !important;
  border-radius: 5px;
  border: 1px solid #A5A9AC;
  padding: 15px 30px;
  outline: none;
}
.col-form .gform_wrapper .gfield_consent_label {
  font: normal 16px "Open Sans", sans-serif !important;
}
.col-form .clickdform.mainDiv {
  padding: 0 !important;
  float: none;
  margin: 0 auto;
  width: 100%;
}
.col-form .clickdform.mainDiv #clickdimensionsForm {
  width: 100%;
  max-width: 730px;
}
.col-form .clickdform.mainDiv #clickdimensionsForm .minSize2,
.col-form .clickdform.mainDiv #clickdimensionsForm .responsiveCell {
  width: 100% !important;
  min-width: 100% !important;
  text-align: left !important;
}
.col-form .clickdform.mainDiv #clickdimensionsForm .emptyCell {
  display: none !important;
}
.col-form .clickdform.mainDiv #clickdimensionsForm span {
  margin-top: 0;
  font: 300 18px "Poppins", sans-serif !important;
  color: black !important;
}
.col-form .clickdform.mainDiv #clickdimensionsForm div.clear {
  display: none;
}
.col-form .clickdform.mainDiv #clickdimensionsForm .buttonContainer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.col-form .clickdform.mainDiv #clickdimensionsForm .buttonContainer input {
  display: inline-block !important;
  font: bold 15px/1em "Poppins", sans-serif !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 15px 20px !important;
  border-radius: 6px !important;
  transition: all 250ms ease-in-out;
  border: 2px solid white !important;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0 !important;
  background: #FD990F !important;
  height: auto;
  width: auto !important;
  float: none !important;
}
.col-form .clickdform.mainDiv #clickdimensionsForm .buttonContainer input:hover {
  background: #de8600 !important;
}
.col-form .clickdform .success-msg {
  text-align: center;
}
.col-form .clickdform input[type=text],
.col-form .clickdform textarea {
  font: normal 16px "Open Sans", sans-serif !important;
  border-radius: 5px !important;
  border: 1px solid #A5A9AC !important;
  padding: 8px !important;
  outline: none;
  width: 100% !important;
  max-width: 100% !important;
}
.col-form .clickdform input[type=checkbox] {
  margin-top: 7px;
}

.single-post .post-intro h4 {
  margin-bottom: 35px;
}
.single-post .post-intro h2 {
  line-height: 125%;
}
.single-post .post-intro .post-info {
  font-weight: 300;
  font-size: 12px;
}
.single-post .cat-label {
  padding: 2px 10px;
  border-radius: 3px;
  background: white;
  border: 1px solid #1E95D3;
  display: inline-block;
}
.single-post .full-width-content .wrapper {
  max-width: 940px !important;
}
.single-post .featured-image-container > img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}
.single-post .socials-share {
  margin-top: 60px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.single-post .socials-share h3 {
  margin-right: 20px;
  margin-top: -1px;
}
.single-post .socials-share ul li {
  padding-top: 5px;
  display: inline-block;
  margin-right: 5px;
}
.single-post .socials-share ul li a {
  display: block;
}
.single-post .socials-share ul li a svg {
  display: block;
}
.single-post .socials-share ul li a svg #Tracé_3934 {
  fill: #4267B2;
}

.search-results .search-header {
  margin: 80px 0 40px;
}
.search-results .search-result-container .search-result {
  width: 100%;
  border-bottom: 1px solid #707070;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.search-results .search-result-container .search-result h2 {
  margin-bottom: 15px;
}
.search-results .search-result-container .search-result .the-content {
  margin-bottom: 15px;
}
.search-results .search-result-container .search-result .btn, .search-results .search-result-container .search-result body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .search-results .search-result-container .search-result input[type=button],
.search-results .search-result-container .search-result body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .search-results .search-result-container .search-result input[type=submit], .search-results .search-result-container .search-result #header #site-nav > ul > li.is-btn > a, #header .search-results .search-result-container .search-result #site-nav > ul > li.is-btn > a, .search-results .search-result-container .search-result #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .search-results .search-result-container .search-result li.is-btn, .search-results .search-result-container .search-result #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .search-results .search-result-container .search-result a, .search-results .search-result-container .search-result .the-content .button.in-content, .the-content .search-results .search-result-container .search-result .button.in-content {
  display: inline-block;
}
.search-results .pagination {
  margin-bottom: 40px;
}

.list-block .text-center .inner .buttons {
  justify-content: center;
}
.list-block > img {
  width: 150px;
  max-height: 150px;
  margin-bottom: 45px;
}
.list-block ul:not(.titles-row) {
  text-align: left;
  padding: 50px 0 10px;
  /*max-width: 950px;*/
  margin: auto;
}
.list-block ul:not(.titles-row) li {
  padding: 15px 20px;
  border-top: 1px solid #CBCBCB;
  font-family: "Open Sans", sans-serif;
  /*max-width: 950px;*/
  margin: auto;
}
.list-block ul:not(.titles-row) li:last-child {
  border-bottom: 1px solid #CBCBCB;
}
.list-block ul:not(.titles-row) li.list-note {
  border-bottom: none !important;
}
.list-block ul:not(.titles-row) li.list-note .the-content p {
  font-size: 14px;
}
.list-block ul:not(.titles-row) li img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}
.list-block ul:not(.titles-row) li a {
  color: #FD990F;
  font-weight: bold;
}
.list-block ul:not(.titles-row) li a:hover {
  color: #de8600;
}
.list-block ul:not(.titles-row) h3 {
  margin-bottom: 0;
}
.list-block .titles-row {
  /*max-width: 950px;*/
  margin: 50px auto -30px;
  padding: 0 20px;
}
.list-block .titles-row li {
  padding: 0 15px;
}
.list-block.list-formations ul:not(.titles-row), .list-block.list-webinar ul:not(.titles-row) {
  max-width: 100%;
}
.list-block.list-formations ul:not(.titles-row) li, .list-block.list-webinar ul:not(.titles-row) li {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.list-block.list-formations ul:not(.titles-row) li > div:first-child, .list-block.list-webinar ul:not(.titles-row) li > div:first-child {
  font-weight: bold;
}
.list-block.list-formations ul:not(.titles-row) li > div:first-child, .list-block.list-webinar ul:not(.titles-row) li > div:first-child {
  padding-left: 0;
}
.list-block.list-formations ul:not(.titles-row) li > div:last-child, .list-block.list-webinar ul:not(.titles-row) li > div:last-child {
  padding-right: 0;
}
.list-block.list-formations .titles-row, .list-block.list-webinar .titles-row {
  max-width: 100%;
  padding: 0;
}
.list-block.list-formations .titles-row li:first-child, .list-block.list-webinar .titles-row li:first-child {
  padding-left: 0;
}
.list-block.list-formations .titles-row li:last-child, .list-block.list-webinar .titles-row li:last-child {
  padding-right: 0;
}
.list-block.list-formations ul:not(.titles-row) li > div:nth-child(3), .list-block.list-formations ul:not(.titles-row) li > div:nth-child(4) {
  font-weight: bold;
}
.list-block.list-formations .btn, .list-block.list-formations body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .list-block.list-formations input[type=button],
.list-block.list-formations body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .list-block.list-formations input[type=submit], .list-block.list-formations #header #site-nav > ul > li.is-btn > a, #header .list-block.list-formations #site-nav > ul > li.is-btn > a, .list-block.list-formations #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .list-block.list-formations li.is-btn, .list-block.list-formations #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .list-block.list-formations a, .list-block.list-formations .the-content .button.in-content, .the-content .list-block.list-formations .button.in-content {
  width: fit-content;
}
.list-block.list-webinar ul:not(.titles-row) {
  max-width: 100%;
}
.list-block.list-webinar ul:not(.titles-row) li > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-block.list-webinar ul:not(.titles-row) li > div:last-child {
  justify-content: end;
}

.styled-list {
  margin-top: 25px;
}
.styled-list li {
  list-style: none;
  padding: 15px 20px;
  border-top: 1px solid #CBCBCB;
  font-family: "Open Sans", sans-serif;
  margin: auto;
}
.styled-list li:before {
  display: none !important;
}
.styled-list li:last-child {
  border-bottom: 1px solid #CBCBCB;
}

.mobileOnly {
  display: none;
}

.blue-text {
  color: #00B4CF;
}

.home .content-row.banner .rounded-top, .home .banner.the-blog .rounded-top {
  top: 10px;
}

.half-image-half-content .content .row + .buttons {
  margin-top: 20px;
}

.banner .inner-banner .buttons {
  margin-top: 25px;
}

.packages-wrap {
  justify-content: center;
  gap: 16px;
}
.packages-wrap .single-package {
  width: 30%;
  min-width: 280px;
  border: 1px solid #CBCBCB;
  border-radius: 20px;
  padding: 30px 25px 25px;
}
.packages-wrap .single-package h2 {
  color: #00B4CF;
}
.packages-wrap .single-package h4 {
  font-weight: bold;
  font-size: 22px;
}
.packages-wrap .single-package .the-content {
  margin-top: 30px;
}
.packages-wrap .single-package .the-content strong {
  color: #00B4CF;
  font-size: 24px;
}

.ginput_container_select {
  position: relative;
}
.ginput_container_select:after {
  content: "";
  position: absolute;
  right: 25px;
  top: calc(50% - 8px);
  height: 16px;
  width: 25px;
  background-image: url("../images/icon-arrow-select.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ginput_container_select select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  padding-right: 60px !important;
}

.lang-menu {
  padding-bottom: 10px !important;
  margin-bottom: -10px !important;
}
.lang-menu > a {
  display: flex;
  align-items: center;
}
.lang-menu > a svg {
  height: 10px;
  width: 16px;
  margin-left: 7px;
}
.lang-menu > a svg path {
  fill: #3A3C3D !important;
}
.lang-menu .sub-menu {
  opacity: 0;
  pointer-events: none;
  transition: 250ms ease-in-out;
  position: absolute;
  z-index: 10;
  top: 100%;
  background-color: white;
  padding: 11px 15px;
  -webkit-box-shadow: 0 6px 15px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 15px -1px rgba(0, 0, 0, 0.3);
}
.lang-menu .sub-menu a {
  color: #3A3C3D;
  padding: 4px 8px;
  display: block;
}
.lang-menu .sub-menu a:hover {
  color: #FD990F;
}
.lang-menu:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
}

.form-promo {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 25px;
  margin: 20px 0;
}
.form-promo p {
  margin-bottom: 15px;
}
.form-promo p:last-child {
  margin-bottom: 0;
}

.lang-popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(58, 60, 61, 0.6);
  overflow-y: scroll;
}
.lang-popup .wrapper {
  height: 100%;
  display: flex;
  padding: 30px 0;
}
.lang-popup .lang-popup-content {
  background-color: white;
  height: fit-content;
  width: fit-content;
  padding: 40px 70px 50px;
  margin: auto;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lang-popup .lang-popup-content > h3 {
  margin-bottom: 26px;
  font-size: 26px;
  line-height: 1.2em;
  color: #1E95D3;
  text-align: center;
}
.lang-popup hr {
  border: none;
  border-top: 2px solid #707070;
  width: 100%;
  margin-bottom: 30px;
}
.lang-popup .single-lang-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.lang-popup .single-lang-option h3 {
  margin-bottom: 10px;
  text-align: center;
}
.lang-popup .single-lang-option:last-child {
  margin-bottom: 0;
}

.gfield--type-survey thead .gsurvey-likert-choice-label, .gfield--type-survey thead .gsurvey-likert-row-label, .gfield--type-survey tbody .gsurvey-likert-choice-label, .gfield--type-survey tbody .gsurvey-likert-row-label {
  font-size: 15px;
  line-height: 1.3em;
  padding: 8px !important;
}
.gfield--type-survey tbody tr {
  background-color: white;
}
.gfield--type-survey tbody .gsurvey-likert-choice {
  cursor: pointer;
}

.gform_legacy_markup_wrapper .gsurvey-rating:not(:checked) > label, .gravity-theme .gsurvey-rating:not(:checked) > label {
  width: 29px !important;
  background-size: 22px 22px !important;
  line-height: 25px !important;
}
.gform_legacy_markup_wrapper .gsurvey-rating:not(:checked) > label:before, .gravity-theme .gsurvey-rating:not(:checked) > label:before {
  margin-left: 10px;
}

.page-template-client-portal-formation-cible #main .formation-block .blue-tag {
  font-size: 15px !important;
  font-weight: normal !important;
  padding: 5px 10px !important;
}
.page-template-client-portal-formation-cible #main .formation-block.has-image {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-template-client-portal-formation-cible #main .formation-block.has-image .col-content {
  width: calc(100% - 250px);
}
.page-template-client-portal-formation-cible #main .formation-block.has-image .col-image {
  width: 230px;
}
.page-template-client-portal-formation-cible #main .formation-block.has-image .col-image .img-container {
  border-radius: 10px;
  overflow: hidden;
}
.page-template-client-portal-formation-cible #main .formation-block.has-image .col-image .img-container img {
  display: block;
  margin: 0;
}
.page-template-client-portal-formation-cible #portal-main-content .wrapper {
  background-color: #fff !important;
}
.page-template-client-portal-formation-cible #portal-main-content .wrapper:nth-child(2n+3) {
  background-color: #F8F8F8 !important;
}
.page-template-client-portal-formation-cible #portal-main-content .wrapper.cible-header .the-content {
  margin-bottom: 0;
}
.page-template-client-portal-formation-cible #portal-main-content .wrapper .btn-container {
  margin-top: 25px;
  width: 100%;
}
.page-template-client-portal-formation-cible #portal-main-content .wrapper .upcoming-training-block {
  border: 2px solid #3f8127;
  background: white;
  padding: 20px 15px;
  text-align: center;
  min-height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  border-radius: 10px;
}

.page-template-client-portal #bill-container,
.page-template-client-portal-soutien #bill-container,
.page-template-client-portal-resources #bill-container,
.page-template-client-portal-bills #bill-container,
.page-template-client-portal-videos #bill-container,
.page-template-client-portal-formation-cible #bill-container,
.tax-ressource-category #bill-container {
  background-color: #F8F8F8;
  margin-left: -35px;
  margin-right: -35px;
  padding: 30px 50px;
}
.page-template-client-portal .tab-formations,
.page-template-client-portal-soutien .tab-formations,
.page-template-client-portal-resources .tab-formations,
.page-template-client-portal-bills .tab-formations,
.page-template-client-portal-videos .tab-formations,
.page-template-client-portal-formation-cible .tab-formations,
.tax-ressource-category .tab-formations {
  width: 100%;
  margin-bottom: 15px;
}
.page-template-client-portal .tab-formations thead th,
.page-template-client-portal-soutien .tab-formations thead th,
.page-template-client-portal-resources .tab-formations thead th,
.page-template-client-portal-bills .tab-formations thead th,
.page-template-client-portal-videos .tab-formations thead th,
.page-template-client-portal-formation-cible .tab-formations thead th,
.tax-ressource-category .tab-formations thead th {
  font: 500 20px/100% "Poppins", sans-serif;
  text-align: left;
  padding-bottom: 15px;
}
.page-template-client-portal .tab-formations thead th.premier,
.page-template-client-portal-soutien .tab-formations thead th.premier,
.page-template-client-portal-resources .tab-formations thead th.premier,
.page-template-client-portal-bills .tab-formations thead th.premier,
.page-template-client-portal-videos .tab-formations thead th.premier,
.page-template-client-portal-formation-cible .tab-formations thead th.premier,
.tax-ressource-category .tab-formations thead th.premier {
  width: 20px;
}
.page-template-client-portal .tab-formations tbody tr td,
.page-template-client-portal-soutien .tab-formations tbody tr td,
.page-template-client-portal-resources .tab-formations tbody tr td,
.page-template-client-portal-bills .tab-formations tbody tr td,
.page-template-client-portal-videos .tab-formations tbody tr td,
.page-template-client-portal-formation-cible .tab-formations tbody tr td,
.tax-ressource-category .tab-formations tbody tr td {
  padding: 5px 10px;
  border-bottom: 2px solid #00B4CF;
}
.page-template-client-portal .tab-formations tbody tr:first-child td,
.page-template-client-portal-soutien .tab-formations tbody tr:first-child td,
.page-template-client-portal-resources .tab-formations tbody tr:first-child td,
.page-template-client-portal-bills .tab-formations tbody tr:first-child td,
.page-template-client-portal-videos .tab-formations tbody tr:first-child td,
.page-template-client-portal-formation-cible .tab-formations tbody tr:first-child td,
.tax-ressource-category .tab-formations tbody tr:first-child td {
  border-top: 2px solid #00B4CF;
}
.page-template-client-portal .tab-formations tbody tr td:first-child,
.page-template-client-portal-soutien .tab-formations tbody tr td:first-child,
.page-template-client-portal-resources .tab-formations tbody tr td:first-child,
.page-template-client-portal-bills .tab-formations tbody tr td:first-child,
.page-template-client-portal-videos .tab-formations tbody tr td:first-child,
.page-template-client-portal-formation-cible .tab-formations tbody tr td:first-child,
.tax-ressource-category .tab-formations tbody tr td:first-child {
  width: 20px;
  padding-left: 0px;
  padding-right: 0px;
}
.page-template-client-portal .tab-formations tbody tr td a,
.page-template-client-portal-soutien .tab-formations tbody tr td a,
.page-template-client-portal-resources .tab-formations tbody tr td a,
.page-template-client-portal-bills .tab-formations tbody tr td a,
.page-template-client-portal-videos .tab-formations tbody tr td a,
.page-template-client-portal-formation-cible .tab-formations tbody tr td a,
.tax-ressource-category .tab-formations tbody tr td a {
  color: #FD990F;
  font-weight: bold;
}
.page-template-client-portal .tab-formations tbody tr td a.isNew,
.page-template-client-portal-soutien .tab-formations tbody tr td a.isNew,
.page-template-client-portal-resources .tab-formations tbody tr td a.isNew,
.page-template-client-portal-bills .tab-formations tbody tr td a.isNew,
.page-template-client-portal-videos .tab-formations tbody tr td a.isNew,
.page-template-client-portal-formation-cible .tab-formations tbody tr td a.isNew,
.tax-ressource-category .tab-formations tbody tr td a.isNew {
  color: #00B4CF;
}
.page-template-client-portal .footer-menu,
.page-template-client-portal #footer,
.page-template-client-portal-soutien .footer-menu,
.page-template-client-portal-soutien #footer,
.page-template-client-portal-resources .footer-menu,
.page-template-client-portal-resources #footer,
.page-template-client-portal-bills .footer-menu,
.page-template-client-portal-bills #footer,
.page-template-client-portal-videos .footer-menu,
.page-template-client-portal-videos #footer,
.page-template-client-portal-formation-cible .footer-menu,
.page-template-client-portal-formation-cible #footer,
.tax-ressource-category .footer-menu,
.tax-ressource-category #footer {
  display: none;
}
.page-template-client-portal #header #site-nav ul.primary,
.page-template-client-portal-soutien #header #site-nav ul.primary,
.page-template-client-portal-resources #header #site-nav ul.primary,
.page-template-client-portal-bills #header #site-nav ul.primary,
.page-template-client-portal-videos #header #site-nav ul.primary,
.page-template-client-portal-formation-cible #header #site-nav ul.primary,
.tax-ressource-category #header #site-nav ul.primary {
  display: none !important;
}
.page-template-client-portal #header #site-nav ul.primary.portal-only,
.page-template-client-portal-soutien #header #site-nav ul.primary.portal-only,
.page-template-client-portal-resources #header #site-nav ul.primary.portal-only,
.page-template-client-portal-bills #header #site-nav ul.primary.portal-only,
.page-template-client-portal-videos #header #site-nav ul.primary.portal-only,
.page-template-client-portal-formation-cible #header #site-nav ul.primary.portal-only,
.tax-ressource-category #header #site-nav ul.primary.portal-only {
  display: flex !important;
}
.page-template-client-portal .the-content,
.page-template-client-portal-soutien .the-content,
.page-template-client-portal-resources .the-content,
.page-template-client-portal-bills .the-content,
.page-template-client-portal-videos .the-content,
.page-template-client-portal-formation-cible .the-content,
.tax-ressource-category .the-content {
  margin-bottom: 25px;
}
.page-template-client-portal .the-content h2,
.page-template-client-portal-soutien .the-content h2,
.page-template-client-portal-resources .the-content h2,
.page-template-client-portal-bills .the-content h2,
.page-template-client-portal-videos .the-content h2,
.page-template-client-portal-formation-cible .the-content h2,
.tax-ressource-category .the-content h2 {
  font-weight: 600;
  font-size: 24px;
}
.page-template-client-portal .the-content h3,
.page-template-client-portal-soutien .the-content h3,
.page-template-client-portal-resources .the-content h3,
.page-template-client-portal-bills .the-content h3,
.page-template-client-portal-videos .the-content h3,
.page-template-client-portal-formation-cible .the-content h3,
.tax-ressource-category .the-content h3 {
  font-size: 20px;
}
.page-template-client-portal .the-content p,
.page-template-client-portal-soutien .the-content p,
.page-template-client-portal-resources .the-content p,
.page-template-client-portal-bills .the-content p,
.page-template-client-portal-videos .the-content p,
.page-template-client-portal-formation-cible .the-content p,
.tax-ressource-category .the-content p {
  font-size: 16px;
}
.page-template-client-portal #main,
.page-template-client-portal-soutien #main,
.page-template-client-portal-resources #main,
.page-template-client-portal-bills #main,
.page-template-client-portal-videos #main,
.page-template-client-portal-formation-cible #main,
.tax-ressource-category #main {
  background-color: #D0DBE2;
  padding: 20px 0;
}
.page-template-client-portal #main > .wrapper,
.page-template-client-portal-soutien #main > .wrapper,
.page-template-client-portal-resources #main > .wrapper,
.page-template-client-portal-bills #main > .wrapper,
.page-template-client-portal-videos #main > .wrapper,
.page-template-client-portal-formation-cible #main > .wrapper,
.tax-ressource-category #main > .wrapper {
  height: auto;
}
.page-template-client-portal #main .formation-block .blue-tag,
.page-template-client-portal-soutien #main .formation-block .blue-tag,
.page-template-client-portal-resources #main .formation-block .blue-tag,
.page-template-client-portal-bills #main .formation-block .blue-tag,
.page-template-client-portal-videos #main .formation-block .blue-tag,
.page-template-client-portal-formation-cible #main .formation-block .blue-tag,
.tax-ressource-category #main .formation-block .blue-tag {
  margin-bottom: 5px;
}
.page-template-client-portal #main .formation-block h4,
.page-template-client-portal-soutien #main .formation-block h4,
.page-template-client-portal-resources #main .formation-block h4,
.page-template-client-portal-bills #main .formation-block h4,
.page-template-client-portal-videos #main .formation-block h4,
.page-template-client-portal-formation-cible #main .formation-block h4,
.tax-ressource-category #main .formation-block h4 {
  font-weight: normal;
  font-size: 15px;
  color: #1E95D3;
  margin-bottom: 10px;
}

#portal-main-content {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  min-height: 450px;
}
#portal-main-content .wrapper {
  width: auto;
  padding: 30px 35px;
  background: #fff;
  height: auto;
  margin-left: -15px;
  margin-right: -15px;
}
#portal-main-content .wrapper:nth-child(even) {
  background-color: #F8F8F8;
}
#portal-main-content .wrapper .page-title {
  margin-bottom: 35px;
}
#portal-main-content .wrapper .img-pub-block,
#portal-main-content .wrapper .text-block,
#portal-main-content .wrapper .mb50 {
  margin-bottom: 25px;
}
#portal-main-content .wrapper .updates-section {
  margin-bottom: 50px;
}
#portal-main-content .wrapper .updates-section .the-content {
  margin-bottom: 25px;
}
#portal-main-content .wrapper .updates-section:last-child {
  margin-bottom: 0;
}
#portal-main-content .wrapper .img-pub-row {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin-bottom: 25px;
}
#portal-main-content .wrapper .blue-tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: #1E95D3;
  font: bold 16px "Poppins", sans-serif;
  color: white;
  margin-bottom: 25px;
}
#portal-main-content .wrapper .video-block-container {
  margin-bottom: 35px;
}
#portal-main-content .wrapper .video-block-container .video-block {
  padding: 10px;
  gap: 10px;
  align-items: start;
  border-top: 1px solid #B7B8B8;
}
#portal-main-content .wrapper .video-block-container .video-block:last-child {
  border-bottom: 1px solid #B7B8B8;
}
#portal-main-content .wrapper .video-block-container .video-block h4 {
  color: #FD990F;
  font: 600 18px "Open Sans", sans-serif;
  margin-bottom: 5px;
}
#portal-main-content .wrapper .video-block-container .video-block h4 a {
  color: #FD990F;
}
#portal-main-content .wrapper .video-block-container .video-block span {
  font-size: 13px;
}
#portal-main-content .wrapper .resource-category-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: start;
  justify-content: center;
}
#portal-main-content .wrapper .resource-category-container .resource-cat-block {
  width: calc(20% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#portal-main-content .wrapper .resource-category-container .resource-cat-block > svg {
  margin-bottom: 15px;
  max-width: 115px;
}
#portal-main-content .wrapper .resource-category-container .resource-cat-block a {
  font: bold 17px "Poppins", sans-serif;
  color: #3A3C3D;
  text-align: center;
}
#portal-main-content .wrapper .resource-category-container .resource-cat-block a svg {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  margin-left: 5px;
}
#portal-main-content .wrapper .resource-category-container .resource-cat-block a:hover {
  text-decoration: underline;
}
#portal-main-content .wrapper .collapse-container + h2 {
  margin-top: 20px;
}
#portal-main-content .wrapper .collapse {
  transition: 250ms ease-in-out;
  width: 100%;
  margin-inline: auto;
  border-top: 1px solid #B7B8B8;
}
#portal-main-content .wrapper .collapse .collapse-trigger {
  font: normal 16px "Poppins", sans-serif;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
}
#portal-main-content .wrapper .collapse .collapse-trigger .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 25px;
  height: 15px;
}
#portal-main-content .wrapper .collapse .collapse-content {
  display: none;
  padding: 0px 20px 20px 20px;
}
#portal-main-content .wrapper .collapse .collapse-content .the-content {
  margin-bottom: 10px;
}
#portal-main-content .wrapper .collapse.open .arrow {
  transform: translateY(-50%) rotateZ(180deg);
}
#portal-main-content .wrapper .cp-ressource-block {
  margin-bottom: 10px;
}
#portal-main-content .wrapper .cp-ressource-block a {
  display: flex;
  align-items: center;
  color: #3A3C3D;
  font: normal 16px "Poppins", sans-serif;
}
#portal-main-content .wrapper .cp-ressource-block a svg {
  margin-right: 10px;
}
#portal-main-content .wrapper .cp-ressource-block a span {
  font: 500 18px "Poppins", sans-serif;
  color: #FD990F;
  display: inline-block;
  margin-left: 5px;
}

#portal-sidebar {
  padding-top: 35px;
}
#portal-sidebar h2 {
  margin-bottom: 25px;
}
#portal-sidebar h2 a {
  color: #3A3C3D;
}
#portal-sidebar h3 {
  margin-bottom: 10px;
}
#portal-sidebar .client-portal-menu ul.has-underline {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #00B4CF;
}
#portal-sidebar .client-portal-menu .menu-item {
  margin-bottom: 10px;
}
#portal-sidebar .client-portal-menu .menu-item span.notif {
  position: absolute !important;
  left: 100%;
  top: -5px;
  font-size: 12px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #1E95D3;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}
#portal-sidebar .client-portal-menu .menu-item span.notif:after {
  display: none !important;
}
#portal-sidebar .client-portal-menu .menu-item a svg {
  max-width: 25px;
}
#portal-sidebar .client-portal-menu .menu-item a span {
  position: relative;
}
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children a {
  position: relative;
}
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children a span {
  position: relative;
}
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .open-submenu {
  display: none;
  /*
  position:absolute;
  top:50%;
  right:0;
  transition:all 0.3s ease-in-out;
  transform: translateY(-50%) rotateZ(0deg);
   */
}
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .open-submenu:after {
  color: #3A3C3D;
  content: "";
}
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .open-submenu.opened {
  transform: translateY(-50%) rotateZ(180deg);
}
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .sub-menu li {
  margin-bottom: 0;
}
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children .sub-menu li a {
  font-size: 16px;
}
#portal-sidebar .client-portal-menu .menu-item.menu-item-has-children.current-menu-item .sub-menu, #portal-sidebar .client-portal-menu .menu-item.menu-item-has-children.current-menu-ancestor .sub-menu {
  display: block;
}
#portal-sidebar .client-portal-menu .menu-item a {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #3A3C3D;
}
#portal-sidebar .client-portal-menu .menu-item.current-menu-item a span {
  position: relative;
}
#portal-sidebar .client-portal-menu .menu-item.current-menu-item a span:not(.open-submenu):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FD990F;
}
#portal-sidebar .client-portal-menu .menu-item .sub-menu {
  padding-top: 10px;
  padding-left: 32px;
}
#portal-sidebar .client-portal-menu .menu-item .sub-menu .menu-item.current-menu-item a {
  display: inline-block;
  position: relative;
}
#portal-sidebar .client-portal-menu .menu-item .sub-menu .menu-item.current-menu-item a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FD990F;
}

@media (min-width: 1921px) {
  .content-row > svg, .the-blog > svg {
    min-width: 100%;
    height: auto;
  }
  .content-row .rounded-top, .the-blog .rounded-top {
    width: 100%;
  }
  .content-row .rounded-top svg, .the-blog .rounded-top svg {
    min-width: 100%;
    height: auto;
  }
}
@media (min-width: 1025px) {
  #footer .col-xl {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 1520px) {
  .content-row.home-slider .wrapper.d-flex .image img, .home-slider.the-blog .wrapper.d-flex .image img, .content-row.banner .wrapper.d-flex .image img, .banner.the-blog .wrapper.d-flex .image img {
    width: 120%;
  }
  .content-row.home-slider .inner-banner h3, .home-slider.the-blog .inner-banner h3, .content-row.banner .inner-banner h3, .banner.the-blog .inner-banner h3 {
    font-size: 25px;
  }

  .solution-slider .wrapper.d-flex .image img {
    width: 120%;
  }
}
@media (max-width: 1365px) {
  .bc-container, .content-row.banner-small .bc-container {
    top: -80px;
  }

  .row.gutter-100 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.gutter-100 > div[class*=col-] {
    padding-left: 30px;
    padding-right: 30px;
  }

  .site-notification {
    height: 40px;
    font-size: 18px;
  }

  body.has-site-notification #header {
    margin-top: 40px;
  }
  body.has-site-notification #main {
    margin-top: 120px;
  }

  #header #site-logo {
    width: 200px;
  }

  #footer {
    padding: 40px 0;
  }

  #subfooter {
    padding: 15px 0;
  }
  #subfooter #footer-address {
    margin-top: 0;
    font-size: 13px;
  }

  .title.primary, .the-content h2.primary, .the-content h3.primary, .content-row.home-slider .inner-banner h1.primary, .home-slider.the-blog .inner-banner h1.primary, .content-row.banner .inner-banner h1.primary, .banner.the-blog .inner-banner h1.primary, .content-row.icon-grid .feature-item h4.primary, .icon-grid.the-blog .feature-item h4.primary, .content-row.google-map .gm-style .gm-style-iw-c h3.primary, .google-map.the-blog .gm-style .gm-style-iw-c h3.primary, .solution-slider .inner-banner h1.primary, .the-content h1, .content-row.home-slider .inner-banner .the-content h1, .the-content .content-row.home-slider .inner-banner h1, .home-slider.the-blog .inner-banner .the-content h1, .the-content .home-slider.the-blog .inner-banner h1, .content-row.banner .inner-banner .the-content h1, .the-content .content-row.banner .inner-banner h1, .banner.the-blog .inner-banner .the-content h1, .the-content .banner.the-blog .inner-banner h1, .solution-slider .inner-banner .the-content h1, .the-content .solution-slider .inner-banner h1 {
    font-size: 36px;
  }
  .title.secondary, .the-content h1.secondary, .the-content h2.secondary, .the-content h3.secondary, .content-row.icon-grid .feature-item h4.secondary, .icon-grid.the-blog .feature-item h4.secondary, .content-row.google-map .gm-style .gm-style-iw-c h3.secondary, .google-map.the-blog .gm-style .gm-style-iw-c h3.secondary, .content-row.home-slider .inner-banner h1, .home-slider.the-blog .inner-banner h1, .content-row.banner .inner-banner h1, .banner.the-blog .inner-banner h1, .solution-slider .inner-banner h1 {
    font-size: 32px;
  }
  .title.secondary-content, .the-content h1.secondary-content, .the-content h3.secondary-content, .content-row.home-slider .inner-banner h1.secondary-content, .home-slider.the-blog .inner-banner h1.secondary-content, .content-row.banner .inner-banner h1.secondary-content, .banner.the-blog .inner-banner h1.secondary-content, .content-row.icon-grid .feature-item h4.secondary-content, .icon-grid.the-blog .feature-item h4.secondary-content, .content-row.google-map .gm-style .gm-style-iw-c h3.secondary-content, .google-map.the-blog .gm-style .gm-style-iw-c h3.secondary-content, .solution-slider .inner-banner h1.secondary-content, .the-content h2 {
    font-size: 28px;
  }

  .checkmark-list li {
    margin-bottom: 15px;
  }

  .content-row.padding-both, .the-blog {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .content-row.padding-top, .padding-top.the-blog {
    padding-top: 40px;
  }
  .content-row.padding-bottom, .padding-bottom.the-blog {
    padding-bottom: 40px;
  }
  .content-row.has-rounded-top, .has-rounded-top.the-blog {
    padding-top: 120px !important;
  }
  .content-row.banner, .banner.the-blog {
    padding-top: 120px !important;
  }
  .content-row.banner .inner-banner, .banner.the-blog .inner-banner {
    padding: 25px;
  }
  .content-row.banner-small h1, .banner-small.the-blog h1 {
    font: 600 40px/120% "Poppins", sans-serif;
  }
  .content-row.banner-small.has-rounded-top, .banner-small.has-rounded-top.the-blog {
    padding-top: 80px !important;
  }
  .content-row.hero .visual, .hero.the-blog .visual {
    height: calc(100% + 85px);
  }
  .content-row.features-grid .feature-item .image, .features-grid.the-blog .feature-item .image {
    width: 35px;
    height: 35px;
  }
  .content-row.features-grid .feature-item .inner h4, .features-grid.the-blog .feature-item .inner h4 {
    font-size: 11px;
  }
  .content-row.events .event-block, .events.the-blog .event-block {
    padding: 25px;
  }
  .content-row.half-image-half-content .row.gutter-75, .half-image-half-content.the-blog .row.gutter-75 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .content-row.half-image-half-content .row.gutter-75 > div[class*=col-], .half-image-half-content.the-blog .row.gutter-75 > div[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .content-row.full-width-content .title, .full-width-content.the-blog .title, .content-row.full-width-content .the-content h1, .the-content .content-row.full-width-content h1, .full-width-content.the-blog .the-content h1, .the-content .full-width-content.the-blog h1, .content-row.full-width-content .the-content h2, .the-content .content-row.full-width-content h2, .full-width-content.the-blog .the-content h2, .the-content .full-width-content.the-blog h2, .content-row.full-width-content .the-content h3, .the-content .content-row.full-width-content h3, .full-width-content.the-blog .the-content h3, .the-content .full-width-content.the-blog h3, .content-row.full-width-content .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .content-row.home-slider .inner-banner h1, .content-row.home-slider .inner-banner .full-width-content.the-blog h1, .content-row.full-width-content .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .home-slider.the-blog .inner-banner h1, .home-slider.the-blog .inner-banner .full-width-content.the-blog h1, .content-row.full-width-content .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .content-row.banner .inner-banner h1, .content-row.banner .inner-banner .full-width-content.the-blog h1, .content-row.full-width-content .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .banner.the-blog .inner-banner h1, .banner.the-blog .inner-banner .full-width-content.the-blog h1, .content-row.full-width-content .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .content-row.full-width-content h4, .full-width-content.the-blog .content-row.icon-grid .feature-item h4, .content-row.icon-grid .feature-item .full-width-content.the-blog h4, .content-row.full-width-content .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .content-row.full-width-content h4, .full-width-content.the-blog .icon-grid.the-blog .feature-item h4, .icon-grid.the-blog .feature-item .full-width-content.the-blog h4, .content-row.full-width-content .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .content-row.full-width-content h3, .full-width-content.the-blog .content-row.google-map .gm-style .gm-style-iw-c h3, .content-row.google-map .gm-style .gm-style-iw-c .full-width-content.the-blog h3, .content-row.full-width-content .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .content-row.full-width-content h3, .full-width-content.the-blog .google-map.the-blog .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c .full-width-content.the-blog h3, .content-row.full-width-content .solution-slider .inner-banner h1, .solution-slider .inner-banner .content-row.full-width-content h1, .full-width-content.the-blog .solution-slider .inner-banner h1, .solution-slider .inner-banner .full-width-content.the-blog h1 {
    margin-bottom: 25px;
  }
  .content-row.form, .form.the-blog {
    margin-bottom: 0px;
  }
  .content-row.teasers .teaser-block .meta, .teasers.the-blog .teaser-block .meta {
    margin-top: 15px;
  }
  .content-row.teasers .teaser-block .meta > h4, .teasers.the-blog .teaser-block .meta > h4 {
    font-size: 14px;
  }
  .content-row.teasers .teaser-block .meta > h3, .teasers.the-blog .teaser-block .meta > h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .content-row.teasers .teaser-block .meta .the-content, .teasers.the-blog .teaser-block .meta .the-content {
    font-size: 16px;
  }
  .content-row.checklist .inner ul li, .checklist.the-blog .inner ul li {
    font-size: 20px;
  }

  .the-blog .blog-posts .blog-row .meta h3 {
    font-size: 20px !important;
  }
  .the-blog .blog-posts .blog-row .meta time {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .the-blog .blog-posts .blog-row .meta .the-content {
    font: 13px/1.65em "Poppins", sans-serif;
  }
  .the-blog .blog-posts .blog-row .meta .buttons {
    margin-top: 20px;
  }

  .solutions .solution-block {
    padding: 40px 0;
  }
}
@media (max-width: 1280px) {
  .content-row.home-slider .row, .home-slider.the-blog .row, .content-row.banner .row, .banner.the-blog .row {
    width: 100%;
  }
  .content-row.home-slider .wrapper.d-flex .image img, .home-slider.the-blog .wrapper.d-flex .image img, .content-row.banner .wrapper.d-flex .image img, .banner.the-blog .wrapper.d-flex .image img {
    position: static;
    width: 100%;
  }
  .content-row.home-slider .inner-banner, .home-slider.the-blog .inner-banner, .content-row.banner .inner-banner, .banner.the-blog .inner-banner {
    min-height: 0;
    padding: 0px 0 50px;
  }
  .content-row .banner-small h1, .the-blog .banner-small h1 {
    font: 600 40px/120% "Poppins", sans-serif;
  }
  .content-row.half-image-half-content .content-block .checklist-container ul li, .half-image-half-content.the-blog .content-block .checklist-container ul li {
    padding-left: 30px;
    font-size: 20px;
  }
  .content-row.icon-slider .icon-slider-container .slick-arrow.slick-next, .icon-slider.the-blog .icon-slider-container .slick-arrow.slick-next {
    right: -40px;
  }
  .content-row.icon-slider .icon-slider-container .slick-arrow.slick-prev, .icon-slider.the-blog .icon-slider-container .slick-arrow.slick-prev {
    left: -40px;
  }
  .content-row.form .gform_wrapper .gform_footer, .form.the-blog .gform_wrapper .gform_footer {
    margin-top: 30px;
  }

  .solution-slider .wrapper.d-flex .row {
    width: 100%;
  }
  .solution-slider .wrapper.d-flex .image img {
    width: 100%;
  }
  .solution-slider .inner-banner {
    min-height: 0;
    padding: 0px 0 50px;
  }

  .solutions .solution-block .col-text h3 {
    font-size: 30px;
  }
  .solutions .solution-block .col-text > img {
    max-height: 50px;
  }
}
@media (max-width: 1199px) {
  .buttons {
    margin-top: 30px;
  }

  #header #site-nav > ul.primary > li {
    margin-left: 15px;
  }

  .content-row.half-image-half-content .round-block, .half-image-half-content.the-blog .round-block {
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .content-row.half-image-half-content .round-block .content-block .meta > h3, .half-image-half-content.the-blog .round-block .content-block .meta > h3 {
    font-size: 18px;
  }
  .content-row.collapsing-teasers .collapsing-teaser-block, .collapsing-teasers.the-blog .collapsing-teaser-block {
    margin: 0 15px 50px;
    width: 200px;
    height: 200px;
  }
  .content-row.collapsing-teasers .collapsing-teaser-block .number, .collapsing-teasers.the-blog .collapsing-teaser-block .number {
    font: 600 55px/100% "Poppins", sans-serif;
    opacity: 0.5;
  }
  .content-row.collapsing-teasers .collapsing-teaser-block h3, .collapsing-teasers.the-blog .collapsing-teaser-block h3, .content-row.collapsing-teasers .collapsing-teaser-block h4, .collapsing-teasers.the-blog .collapsing-teaser-block h4 {
    font: 600 20px/100% "Poppins", sans-serif;
    margin-top: 10px;
  }
  .content-row.collapsing-teasers .ctb-content .row .col-12 h4, .collapsing-teasers.the-blog .ctb-content .row .col-12 h4 {
    font-size: 20px;
  }
  .content-row.testimonials .slick-arrow, .testimonials.the-blog .slick-arrow, .content-row.videos .slick-arrow, .videos.the-blog .slick-arrow {
    width: 25px;
    height: 38px;
  }
  .content-row.testimonials .slick-arrow.slick-prev, .testimonials.the-blog .slick-arrow.slick-prev, .content-row.videos .slick-arrow.slick-prev, .videos.the-blog .slick-arrow.slick-prev {
    left: -40px;
  }
  .content-row.testimonials .slick-arrow.slick-next, .testimonials.the-blog .slick-arrow.slick-next, .content-row.videos .slick-arrow.slick-next, .videos.the-blog .slick-arrow.slick-next {
    right: -40px;
  }
  .content-row.half-image-half-content .content-block .meta > h3, .half-image-half-content.the-blog .content-block .meta > h3 {
    font-size: 20px;
  }

  .bc-container {
    display: none;
  }

  html, body {
    font-size: 16px;
  }

  .title br, .the-content h1 br, .the-content h2 br, .the-content h3 br, .content-row.home-slider .inner-banner h1 br, .home-slider.the-blog .inner-banner h1 br, .content-row.banner .inner-banner h1 br, .banner.the-blog .inner-banner h1 br, .content-row.icon-grid .feature-item h4 br, .icon-grid.the-blog .feature-item h4 br, .content-row.google-map .gm-style .gm-style-iw-c h3 br, .google-map.the-blog .gm-style .gm-style-iw-c h3 br, .solution-slider .inner-banner h1 br {
    display: none;
  }
  .title.primary, .the-content h2.primary, .the-content h3.primary, .content-row.home-slider .inner-banner h1.primary, .home-slider.the-blog .inner-banner h1.primary, .content-row.banner .inner-banner h1.primary, .banner.the-blog .inner-banner h1.primary, .content-row.icon-grid .feature-item h4.primary, .icon-grid.the-blog .feature-item h4.primary, .content-row.google-map .gm-style .gm-style-iw-c h3.primary, .google-map.the-blog .gm-style .gm-style-iw-c h3.primary, .solution-slider .inner-banner h1.primary, .the-content h1, .content-row.home-slider .inner-banner .the-content h1, .the-content .content-row.home-slider .inner-banner h1, .home-slider.the-blog .inner-banner .the-content h1, .the-content .home-slider.the-blog .inner-banner h1, .content-row.banner .inner-banner .the-content h1, .the-content .content-row.banner .inner-banner h1, .banner.the-blog .inner-banner .the-content h1, .the-content .banner.the-blog .inner-banner h1, .solution-slider .inner-banner .the-content h1, .the-content .solution-slider .inner-banner h1 {
    font-size: 30px;
  }
  .title.secondary, .the-content h1.secondary, .the-content h2.secondary, .the-content h3.secondary, .content-row.icon-grid .feature-item h4.secondary, .icon-grid.the-blog .feature-item h4.secondary, .content-row.google-map .gm-style .gm-style-iw-c h3.secondary, .google-map.the-blog .gm-style .gm-style-iw-c h3.secondary, .content-row.home-slider .inner-banner h1, .home-slider.the-blog .inner-banner h1, .content-row.banner .inner-banner h1, .banner.the-blog .inner-banner h1, .solution-slider .inner-banner h1 {
    font-size: 28px;
  }
  .title.secondary-content, .the-content h1.secondary-content, .the-content h3.secondary-content, .content-row.home-slider .inner-banner h1.secondary-content, .home-slider.the-blog .inner-banner h1.secondary-content, .content-row.banner .inner-banner h1.secondary-content, .banner.the-blog .inner-banner h1.secondary-content, .content-row.icon-grid .feature-item h4.secondary-content, .icon-grid.the-blog .feature-item h4.secondary-content, .content-row.google-map .gm-style .gm-style-iw-c h3.secondary-content, .google-map.the-blog .gm-style .gm-style-iw-c h3.secondary-content, .solution-slider .inner-banner h1.secondary-content, .the-content h2 {
    font-size: 22px;
  }

  body.mobile-menu-active #mobile-nav {
    display: block;
  }
  body.has-site-notification #main {
    margin-top: 90px;
  }
  body.has-site-notification #mobile-nav {
    top: 90px;
  }
  body.has-site-notification #mobile-nav.shrink {
    top: 90px;
  }

  .site-notification {
    font-size: 14px;
  }

  #header {
    height: 90px;
  }
  #header #site-nav {
    display: none;
  }
  #header .mobile-menu-trigger {
    display: flex;
  }

  #main {
    margin-top: 45px;
  }

  .blog-block {
    min-height: 370px;
  }
  .blog-block .featured-image {
    margin-bottom: 5px;
  }
  .blog-block .meta time {
    font-size: 12px;
    margin-bottom: 0;
  }
  .blog-block .meta h3 {
    font-size: 22px;
  }
  .blog-block .meta .the-content {
    font-size: 14px;
    margin-top: 10px;
  }
  .blog-block .meta .buttons {
    margin-top: 15px;
  }
  .blog-block .meta .buttons .btn, .blog-block .meta .buttons body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .blog-block .meta .buttons input[type=button],
.blog-block .meta .buttons body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .blog-block .meta .buttons input[type=submit], .blog-block .meta .buttons #header #site-nav > ul > li.is-btn > a, #header .blog-block .meta .buttons #site-nav > ul > li.is-btn > a, .blog-block #mobile-nav > ul.wrapper .meta .buttons li.is-btn, #mobile-nav > ul.wrapper .blog-block .meta .buttons li.is-btn, .blog-block .meta .buttons #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .blog-block .meta .buttons a, .blog-block .meta .buttons .the-content .button.in-content, .the-content .blog-block .meta .buttons .button.in-content {
    padding: 10px;
    font-size: 12px;
  }

  .home .content-row.banner .rounded-top, .home .banner.the-blog .rounded-top {
    top: 50px;
  }

  #header #site-logo {
    width: 250px;
    margin-bottom: 0;
  }

  .list-block.list-formations .mobileOnly {
    display: block;
  }
  .list-block.list-formations ul:not(.titles-row) li {
    gap: 20px 0;
  }
  .list-block.list-formations ul:not(.titles-row) li > div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .list-block.list-formations ul:not(.titles-row) li > div div {
    font-weight: normal;
  }
  .list-block.list-formations ul:not(.titles-row) li > div:first-child {
    padding-left: 15px;
  }
  .list-block.list-formations ul:not(.titles-row) li > div:last-child {
    padding-right: 15px;
  }
}
@media (max-width: 1024px) {
  .content-row.home-slider .wrapper, .home-slider.the-blog .wrapper {
    padding-top: 75px;
  }
  .content-row.half-image-half-content .content-block, .half-image-half-content.the-blog .content-block {
    margin-bottom: 20px;
  }
  .content-row.half-image-half-content .round-block, .half-image-half-content.the-blog .round-block {
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .content-row.half-image-half-content .round-block .content-block, .half-image-half-content.the-blog .round-block .content-block {
    margin-bottom: 40px;
  }
  .content-row.half-image-half-content .round-block-with-border.col-4, .half-image-half-content.the-blog .round-block-with-border.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .content-row.half-image-half-content .round-block-with-border .content-block .meta > h3, .half-image-half-content.the-blog .round-block-with-border .content-block .meta > h3 {
    font-size: 30px;
    line-height: 110%;
  }
  .content-row.half-image-half-content .round-block-with-border .content-block .meta > h3 p, .half-image-half-content.the-blog .round-block-with-border .content-block .meta > h3 p {
    font-size: 18px;
  }

  .ressource-block {
    width: calc(33.333% - 16px);
    margin: 0 8px 30px;
  }
}
@media (max-width: 991px) {
  .title.tertiary, .the-content h1.tertiary, .the-content h2.tertiary, .content-row.home-slider .inner-banner h1.tertiary, .home-slider.the-blog .inner-banner h1.tertiary, .content-row.banner .inner-banner h1.tertiary, .banner.the-blog .inner-banner h1.tertiary, .solution-slider .inner-banner h1.tertiary, .the-content h3, .content-row.icon-grid .feature-item h4, .icon-grid.the-blog .feature-item h4, .content-row.google-map .gm-style .gm-style-iw-c h3, .google-map.the-blog .gm-style .gm-style-iw-c h3 {
    font: normal 20px/1.3em "Poppins", sans-serif;
  }

  .row.gutter-100 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row.gutter-100 > div[class*=col-] {
    padding-left: 25px;
    padding-right: 25px;
  }

  #header #site-logo {
    width: 210px;
  }

  #footer .footer-menu > ul {
    gap: 15px;
  }
  #footer .footer-menu > ul > li {
    width: calc(33% - 10px);
  }
  #footer .footer-menu > ul > li > ul > li.is-bold {
    margin-top: 35px;
  }

  .the-content p {
    font-size: 16px;
  }

  .content-row .rounded-top svg, .the-blog .rounded-top svg {
    top: -80px;
  }
  .content-row.spacer, .spacer.the-blog {
    display: none;
  }
  .content-row.banner, .banner.the-blog {
    display: flex;
    align-items: center;
  }
  .content-row.banner .wrapper, .banner.the-blog .wrapper {
    padding-right: 15%;
  }
  .content-row.banner .wrapper.d-flex, .banner.the-blog .wrapper.d-flex {
    padding-right: 0;
  }
  .content-row.home-slider .inner-banner h3, .home-slider.the-blog .inner-banner h3, .content-row.banner .inner-banner h3, .banner.the-blog .inner-banner h3 {
    font-size: 20px;
  }
  .content-row.home-slider .inner-banner .buttons, .home-slider.the-blog .inner-banner .buttons, .content-row.banner .inner-banner .buttons, .banner.the-blog .inner-banner .buttons {
    flex-direction: column;
  }
  .content-row.big-title-content .title.primary, .big-title-content.the-blog .title.primary, .content-row.big-title-content .the-content h2.primary, .the-content .content-row.big-title-content h2.primary, .big-title-content.the-blog .the-content h2.primary, .the-content .big-title-content.the-blog h2.primary, .content-row.big-title-content .the-content h3.primary, .the-content .content-row.big-title-content h3.primary, .big-title-content.the-blog .the-content h3.primary, .the-content .big-title-content.the-blog h3.primary, .content-row.big-title-content .content-row.home-slider .inner-banner h1.primary, .content-row.home-slider .inner-banner .content-row.big-title-content h1.primary, .big-title-content.the-blog .content-row.home-slider .inner-banner h1.primary, .content-row.home-slider .inner-banner .big-title-content.the-blog h1.primary, .content-row.big-title-content .home-slider.the-blog .inner-banner h1.primary, .home-slider.the-blog .inner-banner .content-row.big-title-content h1.primary, .big-title-content.the-blog .home-slider.the-blog .inner-banner h1.primary, .home-slider.the-blog .inner-banner .big-title-content.the-blog h1.primary, .content-row.big-title-content .content-row.banner .inner-banner h1.primary, .content-row.banner .inner-banner .content-row.big-title-content h1.primary, .big-title-content.the-blog .content-row.banner .inner-banner h1.primary, .content-row.banner .inner-banner .big-title-content.the-blog h1.primary, .content-row.big-title-content .banner.the-blog .inner-banner h1.primary, .banner.the-blog .inner-banner .content-row.big-title-content h1.primary, .big-title-content.the-blog .banner.the-blog .inner-banner h1.primary, .banner.the-blog .inner-banner .big-title-content.the-blog h1.primary, .content-row.big-title-content .content-row.icon-grid .feature-item h4.primary, .content-row.icon-grid .feature-item .content-row.big-title-content h4.primary, .big-title-content.the-blog .content-row.icon-grid .feature-item h4.primary, .content-row.icon-grid .feature-item .big-title-content.the-blog h4.primary, .content-row.big-title-content .icon-grid.the-blog .feature-item h4.primary, .icon-grid.the-blog .feature-item .content-row.big-title-content h4.primary, .big-title-content.the-blog .icon-grid.the-blog .feature-item h4.primary, .icon-grid.the-blog .feature-item .big-title-content.the-blog h4.primary, .content-row.big-title-content .content-row.google-map .gm-style .gm-style-iw-c h3.primary, .content-row.google-map .gm-style .gm-style-iw-c .content-row.big-title-content h3.primary, .big-title-content.the-blog .content-row.google-map .gm-style .gm-style-iw-c h3.primary, .content-row.google-map .gm-style .gm-style-iw-c .big-title-content.the-blog h3.primary, .content-row.big-title-content .google-map.the-blog .gm-style .gm-style-iw-c h3.primary, .google-map.the-blog .gm-style .gm-style-iw-c .content-row.big-title-content h3.primary, .big-title-content.the-blog .google-map.the-blog .gm-style .gm-style-iw-c h3.primary, .google-map.the-blog .gm-style .gm-style-iw-c .big-title-content.the-blog h3.primary, .content-row.big-title-content .solution-slider .inner-banner h1.primary, .solution-slider .inner-banner .content-row.big-title-content h1.primary, .big-title-content.the-blog .solution-slider .inner-banner h1.primary, .solution-slider .inner-banner .big-title-content.the-blog h1.primary, .content-row.big-title-content .the-content h1, .the-content .content-row.big-title-content h1, .big-title-content.the-blog .the-content h1, .the-content .big-title-content.the-blog h1 {
    margin-bottom: 25px;
  }
  .content-row.image-grid .image-item, .image-grid.the-blog .image-item {
    margin-bottom: 30px;
  }
  .content-row.features-grid .feature-item, .features-grid.the-blog .feature-item {
    margin-bottom: 30px;
  }
  .content-row.features-grid .feature-item .inner h4, .features-grid.the-blog .feature-item .inner h4 {
    font-size: 16px;
  }
  .content-row.half-image-half-content .image, .half-image-half-content.the-blog .image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .content-row.half-image-half-content > .wrapper > .row > .order-sm-0, .half-image-half-content.the-blog > .wrapper > .row > .order-sm-0,
.content-row.half-image-half-content > .wrapper > .row > .order-0:not(.order-sm-1),
.half-image-half-content.the-blog > .wrapper > .row > .order-0:not(.order-sm-1) {
    margin-bottom: 30px;
  }
  .content-row.half-image-half-content .content-block > h3, .half-image-half-content.the-blog .content-block > h3 {
    font-size: 20px;
  }
  .content-row.half-image-half-content .content-block .checklist-container ul li, .half-image-half-content.the-blog .content-block .checklist-container ul li {
    font-size: 18px;
  }
  .content-row.icon-slider .icon-slider-container .wrapper, .icon-slider.the-blog .icon-slider-container .wrapper {
    width: calc(100% - 60px);
  }
  .content-row.icon-slider .icon-slider-container .slick-arrow, .icon-slider.the-blog .icon-slider-container .slick-arrow {
    width: 20px;
    height: 30px;
  }
  .content-row.icon-slider .icon-slider-container .slick-arrow.slick-next, .icon-slider.the-blog .icon-slider-container .slick-arrow.slick-next {
    right: -25px;
  }
  .content-row.icon-slider .icon-slider-container .slick-arrow.slick-prev, .icon-slider.the-blog .icon-slider-container .slick-arrow.slick-prev {
    left: -25px;
  }
  .content-row.hero.fullwidth, .hero.fullwidth.the-blog {
    margin-bottom: 185px;
  }
  .content-row.hero .visual, .hero.the-blog .visual {
    height: 100%;
  }
  .content-row.industrie-slider .icon, .industrie-slider.the-blog .icon {
    margin-bottom: 25px;
  }
  .content-row.industrie-slider .the-content, .industrie-slider.the-blog .the-content {
    margin-top: 15px;
  }
  .content-row.industrie-slider .buttons, .industrie-slider.the-blog .buttons {
    margin-top: 15px;
  }
  .content-row.industrie-slider .buttons .btn, .industrie-slider.the-blog .buttons .btn, .content-row.industrie-slider .buttons body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .content-row.industrie-slider .buttons input[type=button], .industrie-slider.the-blog .buttons body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .industrie-slider.the-blog .buttons input[type=button],
.content-row.industrie-slider .buttons body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .content-row.industrie-slider .buttons input[type=submit],
.industrie-slider.the-blog .buttons body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .industrie-slider.the-blog .buttons input[type=submit], .content-row.industrie-slider .buttons #header #site-nav > ul > li.is-btn > a, #header .content-row.industrie-slider .buttons #site-nav > ul > li.is-btn > a, .industrie-slider.the-blog .buttons #header #site-nav > ul > li.is-btn > a, #header .industrie-slider.the-blog .buttons #site-nav > ul > li.is-btn > a, .content-row.industrie-slider .buttons #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .content-row.industrie-slider .buttons li.is-btn, .industrie-slider.the-blog .buttons #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .industrie-slider.the-blog .buttons li.is-btn, .content-row.industrie-slider .buttons #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .content-row.industrie-slider .buttons a, .industrie-slider.the-blog .buttons #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .industrie-slider.the-blog .buttons a, .content-row.industrie-slider .buttons .the-content .button.in-content, .the-content .content-row.industrie-slider .buttons .button.in-content, .industrie-slider.the-blog .buttons .the-content .button.in-content, .the-content .industrie-slider.the-blog .buttons .button.in-content {
    display: inline-flex;
  }
  .content-row.teasers .teaser-block.image, .teasers.the-blog .teaser-block.image {
    padding: 0px;
  }
  .content-row.teasers .teaser-block .meta > h3, .teasers.the-blog .teaser-block .meta > h3 {
    font-size: 18px;
  }
  .content-row.faq .meta, .faq.the-blog .meta {
    margin-bottom: 15px;
  }
  .content-row.locations-and-call-to-actions .c2a, .locations-and-call-to-actions.the-blog .c2a {
    margin-top: 40px;
  }
  .content-row.testimonials > .wrapper, .testimonials.the-blog > .wrapper {
    max-width: calc(100% - 50px);
  }
  .content-row.testimonials > .wrapper .slick-arrow.slick-prev, .testimonials.the-blog > .wrapper .slick-arrow.slick-prev {
    left: -30px;
  }
  .content-row.testimonials > .wrapper .slick-arrow.slick-next, .testimonials.the-blog > .wrapper .slick-arrow.slick-next {
    right: -30px;
  }
  .content-row.testimonials .inner-testimonials .image, .testimonials.the-blog .inner-testimonials .image {
    margin-bottom: 40px;
  }
  .content-row.videos > .wrapper .slick-arrow.slick-prev, .videos.the-blog > .wrapper .slick-arrow.slick-prev {
    left: -30px;
  }
  .content-row.videos > .wrapper .slick-arrow.slick-next, .videos.the-blog > .wrapper .slick-arrow.slick-next {
    right: -30px;
  }
  .content-row.blog-articles .row, .blog-articles.the-blog .row {
    justify-content: center;
  }
  .content-row.blog-articles .row .blog-bock, .blog-articles.the-blog .row .blog-bock {
    display: flex;
    align-items: center;
  }
  .content-row.collapsing-teasers .collapsing-teaser-block, .collapsing-teasers.the-blog .collapsing-teaser-block {
    width: 250px;
    height: 250px;
  }
  .content-row.checklist .inner ul li, .checklist.the-blog .inner ul li {
    font-size: 18px;
  }
  .content-row.form .address-block:first-child, .form.the-blog .address-block:first-child {
    margin-top: 30px;
  }

  .solution-slider .inner-banner h3 {
    font-size: 20px;
  }
  .solution-slider .inner-banner .buttons {
    flex-direction: column;
  }

  .document-block .image a {
    display: block;
    position: relative;
    position: relative;
  }
  .document-block .image a:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .document-block .image a > img,
.document-block .image a > iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .fake-sep {
    display: none;
  }

  #subfooter .col-socials {
    width: 100%;
    margin-bottom: 20px;
  }
  #subfooter .col-copyright {
    width: 65%;
    padding-right: 20px;
  }
  #subfooter .col-logo {
    width: 35%;
  }

  .single-package {
    width: 40%;
  }

  .home .content-row.banner .rounded-top, .content-row.banner .rounded-top, .banner.the-blog .rounded-top {
    top: 10px;
  }

  .content-row.half-image-half-content .image > img, .half-image-half-content.the-blog .image > img {
    object-fit: contain;
    max-height: 250px;
  }

  .list-block.list-webinar .mobileOnly {
    display: block;
  }
  .list-block.list-webinar ul:not(.titles-row) li {
    gap: 20px 0;
  }
  .list-block.list-webinar ul:not(.titles-row) li > div {
    align-items: start;
    flex-direction: column;
    font-weight: normal;
  }
  .list-block.list-webinar ul:not(.titles-row) li > div:first-child {
    padding-left: 15px;
  }
  .list-block.list-webinar ul:not(.titles-row) li > div:last-child {
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .checkmark-list li {
    margin-bottom: 5px;
  }
  .checkmark-list li:before {
    width: 20px;
  }
  .checkmark-list li span {
    width: calc(100% - 20px);
  }

  #footer {
    padding: 40px 0 0 0;
  }
  #footer .footer-menu > ul {
    gap: 20px;
  }
  #footer .footer-menu > ul > li {
    width: calc(50% - 10px);
  }

  #subfooter #footer-phone {
    margin: 20px 0;
  }
  #subfooter #footer-address {
    text-align: center;
  }
  #subfooter .social-networks {
    margin-bottom: 20px;
  }
  #subfooter .social-networks ul {
    justify-content: center;
  }

  .content-row.padding-bottom, .padding-bottom.the-blog {
    padding-bottom: 30px;
  }
  .content-row.padding-top, .padding-top.the-blog {
    padding-top: 30px;
  }
  .content-row.padding-both, .the-blog {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .content-row.banner .wrapper.d-flex, .banner.the-blog .wrapper.d-flex {
    flex-wrap: wrap;
  }
  .content-row.banner .stage-banner img.mobile-img, .banner.the-blog .stage-banner img.mobile-img {
    display: flex;
  }
  .content-row.banner-small .col-image, .banner-small.the-blog .col-image {
    margin-top: 40px;
  }
  .content-row.home-slider .wrapper.d-flex, .home-slider.the-blog .wrapper.d-flex, .content-row.banner .wrapper.d-flex, .banner.the-blog .wrapper.d-flex {
    flex-wrap: wrap;
  }
  .content-row.home-slider .wrapper.d-flex .image, .home-slider.the-blog .wrapper.d-flex .image, .content-row.banner .wrapper.d-flex .image, .banner.the-blog .wrapper.d-flex .image {
    text-align: center;
    margin-bottom: 30px;
  }
  .content-row.home-slider .wrapper.d-flex .image img, .home-slider.the-blog .wrapper.d-flex .image img, .content-row.banner .wrapper.d-flex .image img, .banner.the-blog .wrapper.d-flex .image img {
    display: inline-block;
    position: static;
    width: 75%;
  }
  .content-row.home-slider .wrapper .inner-banner .buttons, .home-slider.the-blog .wrapper .inner-banner .buttons, .content-row.banner .wrapper .inner-banner .buttons, .banner.the-blog .wrapper .inner-banner .buttons {
    flex-direction: row;
  }
  .content-row.half-image-half-content .image, .half-image-half-content.the-blog .image {
    margin-bottom: 15px;
  }
  .content-row.testimonials .inner-testimonials, .testimonials.the-blog .inner-testimonials {
    padding: 25px 5px;
  }
  .content-row.testimonials .inner-testimonials > h3, .testimonials.the-blog .inner-testimonials > h3 {
    margin-bottom: 35px;
  }
  .content-row.testimonials .inner-testimonials .image, .testimonials.the-blog .inner-testimonials .image {
    text-align: center;
  }
  .content-row.testimonials .inner-testimonials .image img, .testimonials.the-blog .inner-testimonials .image img {
    display: inline-block;
  }
  .content-row.videos .inner-videos .video-block, .videos.the-blog .inner-videos .video-block {
    text-align: center;
  }
  .content-row.videos .inner-videos .video-block:last-of-type, .videos.the-blog .inner-videos .video-block:last-of-type {
    margin-bottom: 30px;
  }
  .content-row.hero.fullwidth, .hero.fullwidth.the-blog {
    margin-bottom: 85px;
  }
  .content-row.hero .breadcrumbs, .hero.the-blog .breadcrumbs {
    margin-bottom: 20px;
  }
  .content-row.hero .breadcrumbs > ul > li, .hero.the-blog .breadcrumbs > ul > li {
    font-size: 7px;
    margin-right: 5px;
  }
  .content-row.hero .breadcrumbs > ul > li:after, .hero.the-blog .breadcrumbs > ul > li:after {
    font-size: 7px;
    margin-left: 5px;
  }
  .content-row.hero .inner .the-content, .hero.the-blog .inner .the-content {
    margin-top: 25px;
  }
  .content-row.hero .visual:not(.fullwidth), .hero.the-blog .visual:not(.fullwidth) {
    position: relative;
    margin: 30px 15px 0 15px;
    width: 100%;
    right: auto;
  }
  .content-row.hero .visual:not(.fullwidth):before, .hero.the-blog .visual:not(.fullwidth):before {
    content: "";
    display: block;
    padding-top: 56%;
  }
  .content-row.hero .visual.fullwidth, .hero.the-blog .visual.fullwidth {
    margin-bottom: -125px;
  }
  .content-row.hero .visual.video > a, .hero.the-blog .visual.video > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .content-row.form > .wrapper, .form.the-blog > .wrapper, .content-row.form .webinar-form-container, .form.the-blog .webinar-form-container, .content-row.form.the-blog > .wrapper, .content-row.form.the-blog .webinar-form-container, .content-row.columned-webinar-block > .wrapper, .columned-webinar-block.the-blog > .wrapper, .content-row.columned-webinar-block .webinar-form-container, .columned-webinar-block.the-blog .webinar-form-container {
    padding-left: 0;
    padding-right: 0;
  }
  .content-row.collapsing-teasers .ctb-content, .collapsing-teasers.the-blog .ctb-content {
    width: 85%;
    margin: 0 auto;
  }
  .content-row.collapsing-teasers .ctb-content .row .col-12, .collapsing-teasers.the-blog .ctb-content .row .col-12 {
    border-right: 0px;
    border-top: 2px solid #00B4CF;
    padding-top: 30px;
    margin-top: 30px;
  }
  .content-row.collapsing-teasers .ctb-content .row .col-12:first-child, .collapsing-teasers.the-blog .ctb-content .row .col-12:first-child {
    margin-top: 0;
  }

  .solution-slider .wrapper.d-flex {
    flex-wrap: wrap;
  }
  .solution-slider .wrapper.d-flex .image {
    text-align: center;
    margin-bottom: 30px;
  }
  .solution-slider .wrapper.d-flex .image img {
    display: inline-block;
    position: static;
    width: 75%;
  }
  .solution-slider .wrapper .inner-banner .buttons {
    flex-direction: row;
  }

  .solutions .solution-block .col-text {
    order: 2;
  }
  .solutions .solution-block .col-img {
    order: 1;
  }
  .solutions .solution-block .col-img .image {
    text-align: center;
    margin-bottom: 30px;
  }
  .solutions .solution-block .col-img .image img {
    display: inline-block;
  }

  .blog-block {
    min-height: 0px;
  }

  .filter-container .tax-filters {
    display: none;
  }
  .filter-container .category-filter-dropdown {
    display: block;
    -webkit-appearance: none;
    border: 1px solid #B7B8B8;
    border-radius: 5px;
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
    background: url("../images/icon-collapse-arrow.svg") no-repeat 97% center;
    background-size: 15px auto;
    padding: 10px;
  }

  .single-package {
    width: 75%;
  }

  .columned-list-block .mobileOnly, .columned-formations-block .mobileOnly {
    display: block;
  }
  .columned-list-block .col, .columned-formations-block .col {
    min-width: calc(50% - 10px);
  }
  .columned-list-block ul li, .columned-formations-block ul li {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  #footer .footer-menu > ul > li {
    width: 100%;
  }

  .blog-block {
    margin-bottom: 30px;
  }

  .ressource-block {
    width: calc(50% - 16px);
    margin: 0 8px 30px;
  }

  .content-row.banner-small svg, .banner-small.the-blog svg {
    height: 80px;
  }
  .content-row.locations-and-call-to-actions .location .locations .inner, .locations-and-call-to-actions.the-blog .location .locations .inner {
    margin-bottom: 60px;
  }
  .content-row.industrie-slider .buttons .btn, .industrie-slider.the-blog .buttons .btn, .content-row.industrie-slider .buttons body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .content-row.industrie-slider .buttons input[type=button], .industrie-slider.the-blog .buttons body .gform_wrapper .gform_footer input[type=button], body .gform_wrapper .gform_footer .industrie-slider.the-blog .buttons input[type=button],
.content-row.industrie-slider .buttons body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .content-row.industrie-slider .buttons input[type=submit],
.industrie-slider.the-blog .buttons body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_footer .industrie-slider.the-blog .buttons input[type=submit], .content-row.industrie-slider .buttons #header #site-nav > ul > li.is-btn > a, #header .content-row.industrie-slider .buttons #site-nav > ul > li.is-btn > a, .industrie-slider.the-blog .buttons #header #site-nav > ul > li.is-btn > a, #header .industrie-slider.the-blog .buttons #site-nav > ul > li.is-btn > a, .content-row.industrie-slider .buttons #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .content-row.industrie-slider .buttons li.is-btn, .industrie-slider.the-blog .buttons #mobile-nav > ul.wrapper .meta li.is-btn, #mobile-nav > ul.wrapper .meta .industrie-slider.the-blog .buttons li.is-btn, .content-row.industrie-slider .buttons #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .content-row.industrie-slider .buttons a, .industrie-slider.the-blog .buttons #footer .footer-menu li.is-btn a, #footer .footer-menu li.is-btn .industrie-slider.the-blog .buttons a, .content-row.industrie-slider .buttons .the-content .button.in-content, .the-content .content-row.industrie-slider .buttons .button.in-content, .industrie-slider.the-blog .buttons .the-content .button.in-content, .the-content .industrie-slider.the-blog .buttons .button.in-content {
    display: block;
  }
  .content-row.half-image-half-content .round-block, .half-image-half-content.the-blog .round-block {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .content-row.half-image-half-content .content-block .checklist-container ul li, .half-image-half-content.the-blog .content-block .checklist-container ul li {
    width: 100%;
    padding-left: 30px;
    font-size: 20px;
  }
  .content-row.half-image-half-content .round-block-with-border.col-4, .half-image-half-content.the-blog .round-block-with-border.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .content-row.testimonials > .wrapper .slick-arrow, .testimonials.the-blog > .wrapper .slick-arrow {
    width: 22px;
    height: 34px;
  }
  .content-row.testimonials > .wrapper .slick-arrow.slick-prev, .testimonials.the-blog > .wrapper .slick-arrow.slick-prev {
    left: -25px;
  }
  .content-row.testimonials > .wrapper .slick-arrow.slick-next, .testimonials.the-blog > .wrapper .slick-arrow.slick-next {
    right: -25px;
  }
  .content-row.testimonials .inner-testimonials .image, .testimonials.the-blog .inner-testimonials .image {
    text-align: center;
  }
  .content-row.testimonials .inner-testimonials .image img, .testimonials.the-blog .inner-testimonials .image img {
    display: inline-block;
  }
  .content-row.testimonials .inner-testimonials .testimonial-block .the-content, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content {
    padding: 0 45px;
  }
  .content-row.testimonials .inner-testimonials .testimonial-block .the-content:before, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content:before, .content-row.testimonials .inner-testimonials .testimonial-block .the-content:after, .testimonials.the-blog .inner-testimonials .testimonial-block .the-content:after {
    width: 27px;
    height: 35px;
  }
  .content-row.collapsing-teasers .collapsing-teaser-block, .collapsing-teasers.the-blog .collapsing-teaser-block {
    width: 200px;
    height: 200px;
  }
  .content-row.checklist .inner ul li, .checklist.the-blog .inner ul li {
    width: 100%;
  }

  #subfooter .col-socials {
    width: 100%;
  }
  #subfooter .col-copyright {
    width: 100%;
    text-align: center;
  }
  #subfooter .col-logo {
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }

  .packages-wrap .single-package {
    width: 100%;
  }

  .columned-list-block .col {
    min-width: 100%;
  }

  .lang-popup .lang-popup-content {
    padding: 30px 40px 40px;
  }

  body .gform_wrapper .gfield_radio .gchoice {
    width: 100%;
  }
}
@media (max-width: 450px) {
  #mobile-nav > ul.wrapper > li > ul > li {
    width: 100%;
  }

  .content-row.half-image-half-content .row, .half-image-half-content.the-blog .row {
    flex-wrap: wrap;
  }
  .content-row.half-image-half-content .content-block .image, .half-image-half-content.the-blog .content-block .image {
    float: none;
    width: 1000%;
    margin: 0 auto 30px;
  }
  .content-row.half-image-half-content .round-block, .half-image-half-content.the-blog .round-block {
    text-align: center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content-row.half-image-half-content .round-block .content-block, .half-image-half-content.the-blog .round-block .content-block {
    display: inline-flex;
    width: 75%;
  }
  .content-row.half-image-half-content .content-block .checklist-container ul li, .half-image-half-content.the-blog .content-block .checklist-container ul li {
    padding-left: 25px;
    font-size: 18px;
  }
  .content-row.collapsing-teasers .collapsing-teaser-block, .collapsing-teasers.the-blog .collapsing-teaser-block {
    width: 250px;
    height: 250px;
  }
  .content-row.home-slider .wrapper.d-flex .image img, .home-slider.the-blog .wrapper.d-flex .image img, .content-row.banner .wrapper.d-flex .image img, .banner.the-blog .wrapper.d-flex .image img {
    width: 100%;
  }
  .content-row.home-slider .wrapper .inner-banner .buttons, .home-slider.the-blog .wrapper .inner-banner .buttons, .content-row.banner .wrapper .inner-banner .buttons, .banner.the-blog .wrapper .inner-banner .buttons {
    flex-direction: column;
  }

  .solution-slider .wrapper .inner-banner .buttons {
    flex-direction: column;
  }

  .single-package {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .content-row.banner-small h1, .banner-small.the-blog h1 {
    font: 600 33px/140% "Poppins", sans-serif;
  }
  .content-row.testimonials > .wrapper .slick-arrow, .testimonials.the-blog > .wrapper .slick-arrow {
    width: 18px;
  }
  .content-row.testimonials > .wrapper .slick-arrow.slick-prev, .testimonials.the-blog > .wrapper .slick-arrow.slick-prev {
    left: -22px;
  }
  .content-row.testimonials > .wrapper .slick-arrow.slick-next, .testimonials.the-blog > .wrapper .slick-arrow.slick-next {
    right: -22px;
  }

  .ressource-block {
    width: calc(100% - 16px);
    margin: 0 8px 15px;
  }

  .content-row.half-image-half-content .round-block .content-block .meta > h3, .half-image-half-content.the-blog .round-block .content-block .meta > h3 {
    font-size: 16px;
  }
  .content-row.half-image-half-content .round-block-with-border.col-4, .half-image-half-content.the-blog .round-block-with-border.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content-row.icon-slider .wrapper, .icon-slider.the-blog .wrapper {
    width: calc(100% - 60px);
  }
}

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