/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

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

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

.animated.repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animated.repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animated.repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animated.delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animated.delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animated.delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animated.delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animated.delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animated.faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animated.fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animated.slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animated.slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
  font-family: "Font Awesome 6 Free";
}

.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands";
}

.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-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

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

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-radius: var(--fa-border-radius, 0.1em);
  border: var(--fa-border-width, 0.08em) var(--fa-border-style, solid) var(--fa-border-color, #eee);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade, .fa-fade {
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-shake, .fa-spin {
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
}

.fa-spin {
  animation-name: fa-spin;
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction:reverse;
}

.fa-pulse, .fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat, .fa-beat-fade, .fa-bounce, .fa-fade, .fa-flip, .fa-pulse, .fa-shake, .fa-spin, .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, to {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, to {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scaleX(-1);
}

.fa-flip-vertical {
  transform: scaleY(-1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 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%;
  z-index: var(--fa-stack-z-index, auto);
}

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

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

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

.fa-0:before {
  content: "0";
}

.fa-1:before {
  content: "1";
}

.fa-2:before {
  content: "2";
}

.fa-3:before {
  content: "3";
}

.fa-4:before {
  content: "4";
}

.fa-5:before {
  content: "5";
}

.fa-6:before {
  content: "6";
}

.fa-7:before {
  content: "7";
}

.fa-8:before {
  content: "8";
}

.fa-9:before {
  content: "9";
}

.fa-fill-drip:before {
  content: "\F576";
}

.fa-arrows-to-circle:before {
  content: "\E4BD";
}

.fa-chevron-circle-right:before, .fa-circle-chevron-right:before {
  content: "\F138";
}

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

.fa-trash-alt:before, .fa-trash-can:before {
  content: "\F2ED";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-user-times:before, .fa-user-xmark:before {
  content: "\F235";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-comment-alt:before, .fa-message:before {
  content: "\F27A";
}

.fa-info:before {
  content: "\F129";
}

.fa-compress-alt:before, .fa-down-left-and-up-right-to-center:before {
  content: "\F422";
}

.fa-explosion:before {
  content: "\E4E9";
}

.fa-file-alt:before, .fa-file-lines:before, .fa-file-text:before {
  content: "\F15C";
}

.fa-wave-square:before {
  content: "\F83E";
}

.fa-ring:before {
  content: "\F70B";
}

.fa-building-un:before {
  content: "\E4D9";
}

.fa-dice-three:before {
  content: "\F527";
}

.fa-calendar-alt:before, .fa-calendar-days:before {
  content: "\F073";
}

.fa-anchor-circle-check:before {
  content: "\E4AA";
}

.fa-building-circle-arrow-right:before {
  content: "\E4D1";
}

.fa-volleyball-ball:before, .fa-volleyball:before {
  content: "\F45F";
}

.fa-arrows-up-to-line:before {
  content: "\E4C2";
}

.fa-sort-desc:before, .fa-sort-down:before {
  content: "\F0DD";
}

.fa-circle-minus:before, .fa-minus-circle:before {
  content: "\F056";
}

.fa-door-open:before {
  content: "\F52B";
}

.fa-right-from-bracket:before, .fa-sign-out-alt:before {
  content: "\F2F5";
}

.fa-atom:before {
  content: "\F5D2";
}

.fa-soap:before {
  content: "\E06E";
}

.fa-heart-music-camera-bolt:before, .fa-icons:before {
  content: "\F86D";
}

.fa-microphone-alt-slash:before, .fa-microphone-lines-slash:before {
  content: "\F539";
}

.fa-bridge-circle-check:before {
  content: "\E4C9";
}

.fa-pump-medical:before {
  content: "\E06A";
}

.fa-fingerprint:before {
  content: "\F577";
}

.fa-hand-point-right:before {
  content: "\F0A4";
}

.fa-magnifying-glass-location:before, .fa-search-location:before {
  content: "\F689";
}

.fa-forward-step:before, .fa-step-forward:before {
  content: "\F051";
}

.fa-face-smile-beam:before, .fa-smile-beam:before {
  content: "\F5B8";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-football-ball:before, .fa-football:before {
  content: "\F44E";
}

.fa-school-circle-exclamation:before {
  content: "\E56C";
}

.fa-crop:before {
  content: "\F125";
}

.fa-angle-double-down:before, .fa-angles-down:before {
  content: "\F103";
}

.fa-users-rectangle:before {
  content: "\E594";
}

.fa-people-roof:before {
  content: "\E537";
}

.fa-people-line:before {
  content: "\E534";
}

.fa-beer-mug-empty:before, .fa-beer:before {
  content: "\F0FC";
}

.fa-diagram-predecessor:before {
  content: "\E477";
}

.fa-arrow-up-long:before, .fa-long-arrow-up:before {
  content: "\F176";
}

.fa-burn:before, .fa-fire-flame-simple:before {
  content: "\F46A";
}

.fa-male:before, .fa-person:before {
  content: "\F183";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-file-csv:before {
  content: "\F6DD";
}

.fa-menorah:before {
  content: "\F676";
}

.fa-truck-plane:before {
  content: "\E58F";
}

.fa-record-vinyl:before {
  content: "\F8D9";
}

.fa-face-grin-stars:before, .fa-grin-stars:before {
  content: "\F587";
}

.fa-bong:before {
  content: "\F55C";
}

.fa-pastafarianism:before, .fa-spaghetti-monster-flying:before {
  content: "\F67B";
}

.fa-arrow-down-up-across-line:before {
  content: "\E4AF";
}

.fa-spoon:before, .fa-utensil-spoon:before {
  content: "\F2E5";
}

.fa-jar-wheat:before {
  content: "\E517";
}

.fa-envelopes-bulk:before, .fa-mail-bulk:before {
  content: "\F674";
}

.fa-file-circle-exclamation:before {
  content: "\E4EB";
}

.fa-circle-h:before, .fa-hospital-symbol:before {
  content: "\F47E";
}

.fa-pager:before {
  content: "\F815";
}

.fa-address-book:before, .fa-contact-book:before {
  content: "\F2B9";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-k:before {
  content: "K";
}

.fa-landmark-flag:before {
  content: "\E51C";
}

.fa-pencil-alt:before, .fa-pencil:before {
  content: "\F303";
}

.fa-backward:before {
  content: "\F04A";
}

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

.fa-comments:before {
  content: "\F086";
}

.fa-file-clipboard:before, .fa-paste:before {
  content: "\F0EA";
}

.fa-code-pull-request:before {
  content: "\E13C";
}

.fa-clipboard-list:before {
  content: "\F46D";
}

.fa-truck-loading:before, .fa-truck-ramp-box:before {
  content: "\F4DE";
}

.fa-user-check:before {
  content: "\F4FC";
}

.fa-vial-virus:before {
  content: "\E597";
}

.fa-sheet-plastic:before {
  content: "\E571";
}

.fa-blog:before {
  content: "\F781";
}

.fa-user-ninja:before {
  content: "\F504";
}

.fa-person-arrow-up-from-line:before {
  content: "\E539";
}

.fa-scroll-torah:before, .fa-torah:before {
  content: "\F6A0";
}

.fa-broom-ball:before, .fa-quidditch-broom-ball:before, .fa-quidditch:before {
  content: "\F458";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-archive:before, .fa-box-archive:before {
  content: "\F187";
}

.fa-person-drowning:before {
  content: "\E545";
}

.fa-arrow-down-9-1:before, .fa-sort-numeric-desc:before, .fa-sort-numeric-down-alt:before {
  content: "\F886";
}

.fa-face-grin-tongue-squint:before, .fa-grin-tongue-squint:before {
  content: "\F58A";
}

.fa-spray-can:before {
  content: "\F5BD";
}

.fa-truck-monster:before {
  content: "\F63B";
}

.fa-w:before {
  content: "W";
}

.fa-earth-africa:before, .fa-globe-africa:before {
  content: "\F57C";
}

.fa-rainbow:before {
  content: "\F75B";
}

.fa-circle-notch:before {
  content: "\F1CE";
}

.fa-tablet-alt:before, .fa-tablet-screen-button:before {
  content: "\F3FA";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-trowel-bricks:before {
  content: "\E58A";
}

.fa-face-flushed:before, .fa-flushed:before {
  content: "\F579";
}

.fa-hospital-user:before {
  content: "\F80D";
}

.fa-tent-arrow-left-right:before {
  content: "\E57F";
}

.fa-gavel:before, .fa-legal:before {
  content: "\F0E3";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-microphone-slash:before {
  content: "\F131";
}

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

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-bell-concierge:before, .fa-concierge-bell:before {
  content: "\F562";
}

.fa-pen-ruler:before, .fa-pencil-ruler:before {
  content: "\F5AE";
}

.fa-people-arrows-left-right:before, .fa-people-arrows:before {
  content: "\E068";
}

.fa-mars-and-venus-burst:before {
  content: "\E523";
}

.fa-caret-square-right:before, .fa-square-caret-right:before {
  content: "\F152";
}

.fa-cut:before, .fa-scissors:before {
  content: "\F0C4";
}

.fa-sun-plant-wilt:before {
  content: "\E57A";
}

.fa-toilets-portable:before {
  content: "\E584";
}

.fa-hockey-puck:before {
  content: "\F453";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magnifying-glass-arrow-right:before {
  content: "\E521";
}

.fa-digital-tachograph:before, .fa-tachograph-digital:before {
  content: "\F566";
}

.fa-users-slash:before {
  content: "\E073";
}

.fa-clover:before {
  content: "\E139";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\F3E5";
}

.fa-star-and-crescent:before {
  content: "\F699";
}

.fa-house-fire:before {
  content: "\E50C";
}

.fa-minus-square:before, .fa-square-minus:before {
  content: "\F146";
}

.fa-helicopter:before {
  content: "\F533";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-caret-square-down:before, .fa-square-caret-down:before {
  content: "\F150";
}

.fa-file-circle-question:before {
  content: "\E4EF";
}

.fa-laptop-code:before {
  content: "\F5FC";
}

.fa-swatchbook:before {
  content: "\F5C3";
}

.fa-prescription-bottle:before {
  content: "\F485";
}

.fa-bars:before, .fa-navicon:before {
  content: "\F0C9";
}

.fa-people-group:before {
  content: "\E533";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\F253";
}

.fa-heart-broken:before, .fa-heart-crack:before {
  content: "\F7A9";
}

.fa-external-link-square-alt:before, .fa-square-up-right:before {
  content: "\F360";
}

.fa-face-kiss-beam:before, .fa-kiss-beam:before {
  content: "\F597";
}

.fa-film:before {
  content: "\F008";
}

.fa-ruler-horizontal:before {
  content: "\F547";
}

.fa-people-robbery:before {
  content: "\E536";
}

.fa-lightbulb:before {
  content: "\F0EB";
}

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

.fa-circle-exclamation:before, .fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-school-circle-xmark:before {
  content: "\E56D";
}

.fa-arrow-right-from-bracket:before, .fa-sign-out:before {
  content: "\F08B";
}

.fa-chevron-circle-down:before, .fa-circle-chevron-down:before {
  content: "\F13A";
}

.fa-unlock-alt:before, .fa-unlock-keyhole:before {
  content: "\F13E";
}

.fa-cloud-showers-heavy:before {
  content: "\F740";
}

.fa-headphones-alt:before, .fa-headphones-simple:before {
  content: "\F58F";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-circle-dollar-to-slot:before, .fa-donate:before {
  content: "\F4B9";
}

.fa-memory:before {
  content: "\F538";
}

.fa-road-spikes:before {
  content: "\E568";
}

.fa-fire-burner:before {
  content: "\E4F1";
}

.fa-flag:before {
  content: "\F024";
}

.fa-hanukiah:before {
  content: "\F6E6";
}

.fa-feather:before {
  content: "\F52D";
}

.fa-volume-down:before, .fa-volume-low:before {
  content: "\F027";
}

.fa-comment-slash:before {
  content: "\F4B3";
}

.fa-cloud-sun-rain:before {
  content: "\F743";
}

.fa-compress:before {
  content: "\F066";
}

.fa-wheat-alt:before, .fa-wheat-awn:before {
  content: "\E2CD";
}

.fa-ankh:before {
  content: "\F644";
}

.fa-hands-holding-child:before {
  content: "\E4FA";
}

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

.fa-check-square:before, .fa-square-check:before {
  content: "\F14A";
}

.fa-peseta-sign:before {
  content: "\E221";
}

.fa-header:before, .fa-heading:before {
  content: "\F1DC";
}

.fa-ghost:before {
  content: "\F6E2";
}

.fa-list-squares:before, .fa-list:before {
  content: "\F03A";
}

.fa-phone-square-alt:before, .fa-square-phone-flip:before {
  content: "\F87B";
}

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

.fa-gamepad:before {
  content: "\F11B";
}

.fa-circle-dot:before, .fa-dot-circle:before {
  content: "\F192";
}

.fa-dizzy:before, .fa-face-dizzy:before {
  content: "\F567";
}

.fa-egg:before {
  content: "\F7FB";
}

.fa-house-medical-circle-xmark:before {
  content: "\E513";
}

.fa-campground:before {
  content: "\F6BB";
}

.fa-folder-plus:before {
  content: "\F65E";
}

.fa-futbol-ball:before, .fa-futbol:before, .fa-soccer-ball:before {
  content: "\F1E3";
}

.fa-paint-brush:before, .fa-paintbrush:before {
  content: "\F1FC";
}

.fa-lock:before {
  content: "\F023";
}

.fa-gas-pump:before {
  content: "\F52F";
}

.fa-hot-tub-person:before, .fa-hot-tub:before {
  content: "\F593";
}

.fa-map-location:before, .fa-map-marked:before {
  content: "\F59F";
}

.fa-house-flood-water:before {
  content: "\E50E";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-bridge-lock:before {
  content: "\E4CC";
}

.fa-sack-dollar:before {
  content: "\F81D";
}

.fa-edit:before, .fa-pen-to-square:before {
  content: "\F044";
}

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

.fa-share-alt:before, .fa-share-nodes:before {
  content: "\F1E0";
}

.fa-heart-circle-minus:before {
  content: "\E4FF";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\F252";
}

.fa-microscope:before {
  content: "\F610";
}

.fa-sink:before {
  content: "\E06D";
}

.fa-bag-shopping:before, .fa-shopping-bag:before {
  content: "\F290";
}

.fa-arrow-down-z-a:before, .fa-sort-alpha-desc:before, .fa-sort-alpha-down-alt:before {
  content: "\F881";
}

.fa-mitten:before {
  content: "\F7B5";
}

.fa-person-rays:before {
  content: "\E54D";
}

.fa-users:before {
  content: "\F0C0";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-flask-vial:before {
  content: "\E4F3";
}

.fa-hand-paper:before, .fa-hand:before {
  content: "\F256";
}

.fa-om:before {
  content: "\F679";
}

.fa-worm:before {
  content: "\E599";
}

.fa-house-circle-xmark:before {
  content: "\E50B";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-hand-spock:before {
  content: "\F259";
}

.fa-stopwatch:before {
  content: "\F2F2";
}

.fa-face-kiss:before, .fa-kiss:before {
  content: "\F596";
}

.fa-bridge-circle-xmark:before {
  content: "\E4CB";
}

.fa-face-grin-tongue:before, .fa-grin-tongue:before {
  content: "\F589";
}

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

.fa-face-grin-wink:before, .fa-grin-wink:before {
  content: "\F58C";
}

.fa-deaf:before, .fa-deafness:before, .fa-ear-deaf:before, .fa-hard-of-hearing:before {
  content: "\F2A4";
}

.fa-road-circle-check:before {
  content: "\E564";
}

.fa-dice-five:before {
  content: "\F523";
}

.fa-rss-square:before, .fa-square-rss:before {
  content: "\F143";
}

.fa-land-mine-on:before {
  content: "\E51B";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-stamp:before {
  content: "\F5BF";
}

.fa-stairs:before {
  content: "\E289";
}

.fa-i:before {
  content: "I";
}

.fa-hryvnia-sign:before, .fa-hryvnia:before {
  content: "\F6F2";
}

.fa-pills:before {
  content: "\F484";
}

.fa-face-grin-wide:before, .fa-grin-alt:before {
  content: "\F581";
}

.fa-tooth:before {
  content: "\F5C9";
}

.fa-v:before {
  content: "V";
}

.fa-bangladeshi-taka-sign:before {
  content: "\E2E6";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-rod-asclepius:before, .fa-rod-snake:before, .fa-staff-aesculapius:before, .fa-staff-snake:before {
  content: "\E579";
}

.fa-head-side-cough-slash:before {
  content: "\E062";
}

.fa-ambulance:before, .fa-truck-medical:before {
  content: "\F0F9";
}

.fa-wheat-awn-circle-exclamation:before {
  content: "\E598";
}

.fa-snowman:before {
  content: "\F7D0";
}

.fa-mortar-pestle:before {
  content: "\F5A7";
}

.fa-road-barrier:before {
  content: "\E562";
}

.fa-school:before {
  content: "\F549";
}

.fa-igloo:before {
  content: "\F7AE";
}

.fa-joint:before {
  content: "\F595";
}

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

.fa-horse:before {
  content: "\F6F0";
}

.fa-q:before {
  content: "Q";
}

.fa-g:before {
  content: "G";
}

.fa-notes-medical:before {
  content: "\F481";
}

.fa-temperature-2:before, .fa-temperature-half:before, .fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-dong-sign:before {
  content: "\E169";
}

.fa-capsules:before {
  content: "\F46B";
}

.fa-poo-bolt:before, .fa-poo-storm:before {
  content: "\F75A";
}

.fa-face-frown-open:before, .fa-frown-open:before {
  content: "\F57A";
}

.fa-hand-point-up:before {
  content: "\F0A6";
}

.fa-money-bill:before {
  content: "\F0D6";
}

.fa-bookmark:before {
  content: "\F02E";
}

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

.fa-umbrella-beach:before {
  content: "\F5CA";
}

.fa-helmet-un:before {
  content: "\E503";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-bacon:before {
  content: "\F7E5";
}

.fa-hand-point-down:before {
  content: "\F0A7";
}

.fa-arrow-up-from-bracket:before {
  content: "\E09A";
}

.fa-folder-blank:before, .fa-folder:before {
  content: "\F07B";
}

.fa-file-medical-alt:before, .fa-file-waveform:before {
  content: "\F478";
}

.fa-radiation:before {
  content: "\F7B9";
}

.fa-chart-simple:before {
  content: "\E473";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-vial:before {
  content: "\F492";
}

.fa-dashboard:before, .fa-gauge-med:before, .fa-gauge:before, .fa-tachometer-alt-average:before {
  content: "\F624";
}

.fa-magic-wand-sparkles:before, .fa-wand-magic-sparkles:before {
  content: "\E2CA";
}

.fa-e:before {
  content: "E";
}

.fa-pen-alt:before, .fa-pen-clip:before {
  content: "\F305";
}

.fa-bridge-circle-exclamation:before {
  content: "\E4CA";
}

.fa-user:before {
  content: "\F007";
}

.fa-school-circle-check:before {
  content: "\E56B";
}

.fa-dumpster:before {
  content: "\F793";
}

.fa-shuttle-van:before, .fa-van-shuttle:before {
  content: "\F5B6";
}

.fa-building-user:before {
  content: "\E4DA";
}

.fa-caret-square-left:before, .fa-square-caret-left:before {
  content: "\F191";
}

.fa-highlighter:before {
  content: "\F591";
}

.fa-key:before {
  content: "\F084";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-synagogue:before {
  content: "\F69B";
}

.fa-person-half-dress:before {
  content: "\E548";
}

.fa-road-bridge:before {
  content: "\E563";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-c:before {
  content: "C";
}

.fa-tablet-button:before {
  content: "\F10A";
}

.fa-building-lock:before {
  content: "\E4D6";
}

.fa-pizza-slice:before {
  content: "\F818";
}

.fa-money-bill-wave:before {
  content: "\F53A";
}

.fa-area-chart:before, .fa-chart-area:before {
  content: "\F1FE";
}

.fa-house-flag:before {
  content: "\E50D";
}

.fa-person-circle-minus:before {
  content: "\E540";
}

.fa-ban:before, .fa-cancel:before {
  content: "\F05E";
}

.fa-camera-rotate:before {
  content: "\E0D8";
}

.fa-air-freshener:before, .fa-spray-can-sparkles:before {
  content: "\F5D0";
}

.fa-star:before {
  content: "\F005";
}

.fa-repeat:before {
  content: "\F363";
}

.fa-cross:before {
  content: "\F654";
}

.fa-box:before {
  content: "\F466";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-arrow-pointer:before, .fa-mouse-pointer:before {
  content: "\F245";
}

.fa-expand-arrows-alt:before, .fa-maximize:before {
  content: "\F31E";
}

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

.fa-shapes:before, .fa-triangle-circle-square:before {
  content: "\F61F";
}

.fa-random:before, .fa-shuffle:before {
  content: "\F074";
}

.fa-person-running:before, .fa-running:before {
  content: "\F70C";
}

.fa-mobile-retro:before {
  content: "\E527";
}

.fa-grip-lines-vertical:before {
  content: "\F7A5";
}

.fa-spider:before {
  content: "\F717";
}

.fa-hands-bound:before {
  content: "\E4F9";
}

.fa-file-invoice-dollar:before {
  content: "\F571";
}

.fa-plane-circle-exclamation:before {
  content: "\E556";
}

.fa-x-ray:before {
  content: "\F497";
}

.fa-spell-check:before {
  content: "\F891";
}

.fa-slash:before {
  content: "\F715";
}

.fa-computer-mouse:before, .fa-mouse:before {
  content: "\F8CC";
}

.fa-arrow-right-to-bracket:before, .fa-sign-in:before {
  content: "\F090";
}

.fa-shop-slash:before, .fa-store-alt-slash:before {
  content: "\E070";
}

.fa-server:before {
  content: "\F233";
}

.fa-virus-covid-slash:before {
  content: "\E4A9";
}

.fa-shop-lock:before {
  content: "\E4A5";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\F251";
}

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

.fa-building-wheat:before {
  content: "\E4DB";
}

.fa-person-breastfeeding:before {
  content: "\E53A";
}

.fa-right-to-bracket:before, .fa-sign-in-alt:before {
  content: "\F2F6";
}

.fa-venus:before {
  content: "\F221";
}

.fa-passport:before {
  content: "\F5AB";
}

.fa-heart-pulse:before, .fa-heartbeat:before {
  content: "\F21E";
}

.fa-people-carry-box:before, .fa-people-carry:before {
  content: "\F4CE";
}

.fa-temperature-high:before {
  content: "\F769";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-crown:before {
  content: "\F521";
}

.fa-weight-hanging:before {
  content: "\F5CD";
}

.fa-xmarks-lines:before {
  content: "\E59A";
}

.fa-file-prescription:before {
  content: "\F572";
}

.fa-weight-scale:before, .fa-weight:before {
  content: "\F496";
}

.fa-user-friends:before, .fa-user-group:before {
  content: "\F500";
}

.fa-arrow-up-a-z:before, .fa-sort-alpha-up:before {
  content: "\F15E";
}

.fa-chess-knight:before {
  content: "\F441";
}

.fa-face-laugh-squint:before, .fa-laugh-squint:before {
  content: "\F59B";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-arrow-circle-up:before, .fa-circle-arrow-up:before {
  content: "\F0AA";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-person-walking:before, .fa-walking:before {
  content: "\F554";
}

.fa-l:before {
  content: "L";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-bed-pulse:before, .fa-procedures:before {
  content: "\F487";
}

.fa-shuttle-space:before, .fa-space-shuttle:before {
  content: "\F197";
}

.fa-face-laugh:before, .fa-laugh:before {
  content: "\F599";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-heart-circle-plus:before {
  content: "\E500";
}

.fa-code-fork:before {
  content: "\E13B";
}

.fa-city:before {
  content: "\F64F";
}

.fa-microphone-alt:before, .fa-microphone-lines:before {
  content: "\F3C9";
}

.fa-pepper-hot:before {
  content: "\F816";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-colon-sign:before {
  content: "\E140";
}

.fa-headset:before {
  content: "\F590";
}

.fa-store-slash:before {
  content: "\E071";
}

.fa-road-circle-xmark:before {
  content: "\E566";
}

.fa-user-minus:before {
  content: "\F503";
}

.fa-mars-stroke-up:before, .fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-champagne-glasses:before, .fa-glass-cheers:before {
  content: "\F79F";
}

.fa-clipboard:before {
  content: "\F328";
}

.fa-house-circle-exclamation:before {
  content: "\E50A";
}

.fa-file-arrow-up:before, .fa-file-upload:before {
  content: "\F574";
}

.fa-wifi-3:before, .fa-wifi-strong:before, .fa-wifi:before {
  content: "\F1EB";
}

.fa-bath:before, .fa-bathtub:before {
  content: "\F2CD";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-user-edit:before, .fa-user-pen:before {
  content: "\F4FF";
}

.fa-signature:before {
  content: "\F5B7";
}

.fa-stroopwafel:before {
  content: "\F551";
}

.fa-bold:before {
  content: "\F032";
}

.fa-anchor-lock:before {
  content: "\E4AD";
}

.fa-building-ngo:before {
  content: "\E4D7";
}

.fa-manat-sign:before {
  content: "\E1D5";
}

.fa-not-equal:before {
  content: "\F53E";
}

.fa-border-style:before, .fa-border-top-left:before {
  content: "\F853";
}

.fa-map-location-dot:before, .fa-map-marked-alt:before {
  content: "\F5A0";
}

.fa-jedi:before {
  content: "\F669";
}

.fa-poll:before, .fa-square-poll-vertical:before {
  content: "\F681";
}

.fa-mug-hot:before {
  content: "\F7B6";
}

.fa-battery-car:before, .fa-car-battery:before {
  content: "\F5DF";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-dice-two:before {
  content: "\F528";
}

.fa-chess-queen:before {
  content: "\F445";
}

.fa-glasses:before {
  content: "\F530";
}

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

.fa-building-circle-check:before {
  content: "\E4D2";
}

.fa-person-chalkboard:before {
  content: "\E53D";
}

.fa-mars-stroke-h:before, .fa-mars-stroke-right:before {
  content: "\F22B";
}

.fa-hand-back-fist:before, .fa-hand-rock:before {
  content: "\F255";
}

.fa-caret-square-up:before, .fa-square-caret-up:before {
  content: "\F151";
}

.fa-cloud-showers-water:before {
  content: "\E4E4";
}

.fa-bar-chart:before, .fa-chart-bar:before {
  content: "\F080";
}

.fa-hands-bubbles:before, .fa-hands-wash:before {
  content: "\E05E";
}

.fa-less-than-equal:before {
  content: "\F537";
}

.fa-train:before {
  content: "\F238";
}

.fa-eye-low-vision:before, .fa-low-vision:before {
  content: "\F2A8";
}

.fa-crow:before {
  content: "\F520";
}

.fa-sailboat:before {
  content: "\E445";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-plus-square:before, .fa-square-plus:before {
  content: "\F0FE";
}

.fa-torii-gate:before {
  content: "\F6A1";
}

.fa-frog:before {
  content: "\F52E";
}

.fa-bucket:before {
  content: "\E4CF";
}

.fa-image:before {
  content: "\F03E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-cow:before {
  content: "\F6C8";
}

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

.fa-screwdriver:before {
  content: "\F54A";
}

.fa-folder-closed:before {
  content: "\E185";
}

.fa-house-tsunami:before {
  content: "\E515";
}

.fa-square-nfi:before {
  content: "\E576";
}

.fa-arrow-up-from-ground-water:before {
  content: "\E4B5";
}

.fa-glass-martini-alt:before, .fa-martini-glass:before {
  content: "\F57B";
}

.fa-rotate-back:before, .fa-rotate-backward:before, .fa-rotate-left:before, .fa-undo-alt:before {
  content: "\F2EA";
}

.fa-columns:before, .fa-table-columns:before {
  content: "\F0DB";
}

.fa-lemon:before {
  content: "\F094";
}

.fa-head-side-mask:before {
  content: "\E063";
}

.fa-handshake:before {
  content: "\F2B5";
}

.fa-gem:before {
  content: "\F3A5";
}

.fa-dolly-box:before, .fa-dolly:before {
  content: "\F472";
}

.fa-smoking:before {
  content: "\F48D";
}

.fa-compress-arrows-alt:before, .fa-minimize:before {
  content: "\F78C";
}

.fa-monument:before {
  content: "\F5A6";
}

.fa-snowplow:before {
  content: "\F7D2";
}

.fa-angle-double-right:before, .fa-angles-right:before {
  content: "\F101";
}

.fa-cannabis:before {
  content: "\F55F";
}

.fa-circle-play:before, .fa-play-circle:before {
  content: "\F144";
}

.fa-tablets:before {
  content: "\F490";
}

.fa-ethernet:before {
  content: "\F796";
}

.fa-eur:before, .fa-euro-sign:before, .fa-euro:before {
  content: "\F153";
}

.fa-chair:before {
  content: "\F6C0";
}

.fa-check-circle:before, .fa-circle-check:before {
  content: "\F058";
}

.fa-circle-stop:before, .fa-stop-circle:before {
  content: "\F28D";
}

.fa-compass-drafting:before, .fa-drafting-compass:before {
  content: "\F568";
}

.fa-plate-wheat:before {
  content: "\E55A";
}

.fa-icicles:before {
  content: "\F7AD";
}

.fa-person-shelter:before {
  content: "\E54F";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-marker:before {
  content: "\F5A1";
}

.fa-face-laugh-beam:before, .fa-laugh-beam:before {
  content: "\F59A";
}

.fa-helicopter-symbol:before {
  content: "\E502";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-chevron-circle-up:before, .fa-circle-chevron-up:before {
  content: "\F139";
}

.fa-lari-sign:before {
  content: "\E1C8";
}

.fa-volcano:before {
  content: "\F770";
}

.fa-person-walking-dashed-line-arrow-right:before {
  content: "\E553";
}

.fa-gbp:before, .fa-pound-sign:before, .fa-sterling-sign:before {
  content: "\F154";
}

.fa-viruses:before {
  content: "\E076";
}

.fa-square-person-confined:before {
  content: "\E577";
}

.fa-user-tie:before {
  content: "\F508";
}

.fa-arrow-down-long:before, .fa-long-arrow-down:before {
  content: "\F175";
}

.fa-tent-arrow-down-to-line:before {
  content: "\E57E";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\F122";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-person-skating:before, .fa-skating:before {
  content: "\F7C5";
}

.fa-filter-circle-dollar:before, .fa-funnel-dollar:before {
  content: "\F662";
}

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

.fa-arrow-circle-down:before, .fa-circle-arrow-down:before {
  content: "\F0AB";
}

.fa-arrow-right-to-file:before, .fa-file-import:before {
  content: "\F56F";
}

.fa-external-link-square:before, .fa-square-arrow-up-right:before {
  content: "\F14C";
}

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

.fa-scroll:before {
  content: "\F70E";
}

.fa-spa:before {
  content: "\F5BB";
}

.fa-location-pin-lock:before {
  content: "\E51F";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-hill-avalanche:before {
  content: "\E507";
}

.fa-temperature-0:before, .fa-temperature-empty:before, .fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-address-card:before, .fa-contact-card:before, .fa-vcard:before {
  content: "\F2BB";
}

.fa-balance-scale-right:before, .fa-scale-unbalanced-flip:before {
  content: "\F516";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-diamond-turn-right:before, .fa-directions:before {
  content: "\F5EB";
}

.fa-burst:before {
  content: "\E4DC";
}

.fa-house-laptop:before, .fa-laptop-house:before {
  content: "\E066";
}

.fa-face-tired:before, .fa-tired:before {
  content: "\F5C8";
}

.fa-money-bills:before {
  content: "\E1F3";
}

.fa-smog:before {
  content: "\F75F";
}

.fa-crutch:before {
  content: "\F7F7";
}

.fa-cloud-arrow-up:before, .fa-cloud-upload-alt:before, .fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-palette:before {
  content: "\F53F";
}

.fa-arrows-turn-right:before {
  content: "\E4C0";
}

.fa-vest:before {
  content: "\E085";
}

.fa-ferry:before {
  content: "\E4EA";
}

.fa-arrows-down-to-people:before {
  content: "\E4B9";
}

.fa-seedling:before, .fa-sprout:before {
  content: "\F4D8";
}

.fa-arrows-alt-h:before, .fa-left-right:before {
  content: "\F337";
}

.fa-boxes-packing:before {
  content: "\E4C7";
}

.fa-arrow-circle-left:before, .fa-circle-arrow-left:before {
  content: "\F0A8";
}

.fa-group-arrows-rotate:before {
  content: "\E4F6";
}

.fa-bowl-food:before {
  content: "\E4C6";
}

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

.fa-arrow-down-wide-short:before, .fa-sort-amount-asc:before, .fa-sort-amount-down:before {
  content: "\F160";
}

.fa-cloud-bolt:before, .fa-thunderstorm:before {
  content: "\F76C";
}

.fa-remove-format:before, .fa-text-slash:before {
  content: "\F87D";
}

.fa-face-smile-wink:before, .fa-smile-wink:before {
  content: "\F4DA";
}

.fa-file-word:before {
  content: "\F1C2";
}

.fa-file-powerpoint:before {
  content: "\F1C4";
}

.fa-arrows-h:before, .fa-arrows-left-right:before {
  content: "\F07E";
}

.fa-house-lock:before {
  content: "\E510";
}

.fa-cloud-arrow-down:before, .fa-cloud-download-alt:before, .fa-cloud-download:before {
  content: "\F0ED";
}

.fa-children:before {
  content: "\E4E1";
}

.fa-blackboard:before, .fa-chalkboard:before {
  content: "\F51B";
}

.fa-user-alt-slash:before, .fa-user-large-slash:before {
  content: "\F4FA";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-handshake-alt-slash:before, .fa-handshake-simple-slash:before {
  content: "\E05F";
}

.fa-mattress-pillow:before {
  content: "\E525";
}

.fa-guarani-sign:before {
  content: "\E19A";
}

.fa-arrows-rotate:before, .fa-refresh:before, .fa-sync:before {
  content: "\F021";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-cruzeiro-sign:before {
  content: "\E152";
}

.fa-greater-than-equal:before {
  content: "\F532";
}

.fa-shield-alt:before, .fa-shield-halved:before {
  content: "\F3ED";
}

.fa-atlas:before, .fa-book-atlas:before {
  content: "\F558";
}

.fa-virus:before {
  content: "\E074";
}

.fa-envelope-circle-check:before {
  content: "\E4E8";
}

.fa-layer-group:before {
  content: "\F5FD";
}

.fa-arrows-to-dot:before {
  content: "\E4BE";
}

.fa-archway:before {
  content: "\F557";
}

.fa-heart-circle-check:before {
  content: "\E4FD";
}

.fa-house-chimney-crack:before, .fa-house-damage:before {
  content: "\F6F1";
}

.fa-file-archive:before, .fa-file-zipper:before {
  content: "\F1C6";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-glass-martini:before, .fa-martini-glass-empty:before {
  content: "\F000";
}

.fa-couch:before {
  content: "\F4B8";
}

.fa-cedi-sign:before {
  content: "\E0DF";
}

.fa-italic:before {
  content: "\F033";
}

.fa-church:before {
  content: "\F51D";
}

.fa-comments-dollar:before {
  content: "\F653";
}

.fa-democrat:before {
  content: "\F747";
}

.fa-z:before {
  content: "Z";
}

.fa-person-skiing:before, .fa-skiing:before {
  content: "\F7C9";
}

.fa-road-lock:before {
  content: "\E567";
}

.fa-a:before {
  content: "A";
}

.fa-temperature-arrow-down:before, .fa-temperature-down:before {
  content: "\E03F";
}

.fa-feather-alt:before, .fa-feather-pointed:before {
  content: "\F56B";
}

.fa-p:before {
  content: "P";
}

.fa-snowflake:before {
  content: "\F2DC";
}

.fa-newspaper:before {
  content: "\F1EA";
}

.fa-ad:before, .fa-rectangle-ad:before {
  content: "\F641";
}

.fa-arrow-circle-right:before, .fa-circle-arrow-right:before {
  content: "\F0A9";
}

.fa-filter-circle-xmark:before {
  content: "\E17B";
}

.fa-locust:before {
  content: "\E520";
}

.fa-sort:before, .fa-unsorted:before {
  content: "\F0DC";
}

.fa-list-1-2:before, .fa-list-numeric:before, .fa-list-ol:before {
  content: "\F0CB";
}

.fa-person-dress-burst:before {
  content: "\E544";
}

.fa-money-check-alt:before, .fa-money-check-dollar:before {
  content: "\F53D";
}

.fa-vector-square:before {
  content: "\F5CB";
}

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

.fa-language:before {
  content: "\F1AB";
}

.fa-face-kiss-wink-heart:before, .fa-kiss-wink-heart:before {
  content: "\F598";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-question:before {
  content: "?";
}

.fa-file-signature:before {
  content: "\F573";
}

.fa-arrows-alt:before, .fa-up-down-left-right:before {
  content: "\F0B2";
}

.fa-house-chimney-user:before {
  content: "\E065";
}

.fa-hand-holding-heart:before {
  content: "\F4BE";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-money-check:before {
  content: "\F53C";
}

.fa-star-half-alt:before, .fa-star-half-stroke:before {
  content: "\F5C0";
}

.fa-code:before {
  content: "\F121";
}

.fa-glass-whiskey:before, .fa-whiskey-glass:before {
  content: "\F7A0";
}

.fa-building-circle-exclamation:before {
  content: "\E4D3";
}

.fa-magnifying-glass-chart:before {
  content: "\E522";
}

.fa-arrow-up-right-from-square:before, .fa-external-link:before {
  content: "\F08E";
}

.fa-cubes-stacked:before {
  content: "\E4E6";
}

.fa-krw:before, .fa-won-sign:before, .fa-won:before {
  content: "\F159";
}

.fa-virus-covid:before {
  content: "\E4A8";
}

.fa-austral-sign:before {
  content: "\E0A9";
}

.fa-f:before {
  content: "F";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-road:before {
  content: "\F018";
}

.fa-cab:before, .fa-taxi:before {
  content: "\F1BA";
}

.fa-person-circle-plus:before {
  content: "\E541";
}

.fa-chart-pie:before, .fa-pie-chart:before {
  content: "\F200";
}

.fa-bolt-lightning:before {
  content: "\E0B7";
}

.fa-sack-xmark:before {
  content: "\E56A";
}

.fa-file-excel:before {
  content: "\F1C3";
}

.fa-file-contract:before {
  content: "\F56C";
}

.fa-fish-fins:before {
  content: "\E4F2";
}

.fa-building-flag:before {
  content: "\E4D5";
}

.fa-face-grin-beam:before, .fa-grin-beam:before {
  content: "\F582";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-poop:before {
  content: "\F619";
}

.fa-location-pin:before, .fa-map-marker:before {
  content: "\F041";
}

.fa-kaaba:before {
  content: "\F66B";
}

.fa-toilet-paper:before {
  content: "\F71E";
}

.fa-hard-hat:before, .fa-hat-hard:before, .fa-helmet-safety:before {
  content: "\F807";
}

.fa-eject:before {
  content: "\F052";
}

.fa-arrow-alt-circle-right:before, .fa-circle-right:before {
  content: "\F35A";
}

.fa-plane-circle-check:before {
  content: "\E555";
}

.fa-face-rolling-eyes:before, .fa-meh-rolling-eyes:before {
  content: "\F5A5";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-chart-line:before, .fa-line-chart:before {
  content: "\F201";
}

.fa-mask-ventilator:before {
  content: "\E524";
}

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

.fa-map-signs:before, .fa-signs-post:before {
  content: "\F277";
}

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

.fa-person-circle-question:before {
  content: "\E542";
}

.fa-h:before {
  content: "H";
}

.fa-tarp:before {
  content: "\E57B";
}

.fa-screwdriver-wrench:before, .fa-tools:before {
  content: "\F7D9";
}

.fa-arrows-to-eye:before {
  content: "\E4BF";
}

.fa-plug-circle-bolt:before {
  content: "\E55B";
}

.fa-heart:before {
  content: "\F004";
}

.fa-mars-and-venus:before {
  content: "\F224";
}

.fa-home-user:before, .fa-house-user:before {
  content: "\E1B0";
}

.fa-dumpster-fire:before {
  content: "\F794";
}

.fa-house-crack:before {
  content: "\E3B1";
}

.fa-cocktail:before, .fa-martini-glass-citrus:before {
  content: "\F561";
}

.fa-face-surprise:before, .fa-surprise:before {
  content: "\F5C2";
}

.fa-bottle-water:before {
  content: "\E4C5";
}

.fa-circle-pause:before, .fa-pause-circle:before {
  content: "\F28B";
}

.fa-toilet-paper-slash:before {
  content: "\E072";
}

.fa-apple-alt:before, .fa-apple-whole:before {
  content: "\F5D1";
}

.fa-kitchen-set:before {
  content: "\E51A";
}

.fa-r:before {
  content: "R";
}

.fa-temperature-1:before, .fa-temperature-quarter:before, .fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-bitcoin-sign:before {
  content: "\E0B4";
}

.fa-shield-dog:before {
  content: "\E573";
}

.fa-solar-panel:before {
  content: "\F5BA";
}

.fa-lock-open:before {
  content: "\F3C1";
}

.fa-elevator:before {
  content: "\E16D";
}

.fa-money-bill-transfer:before {
  content: "\E528";
}

.fa-money-bill-trend-up:before {
  content: "\E529";
}

.fa-house-flood-water-circle-arrow-right:before {
  content: "\E50F";
}

.fa-poll-h:before, .fa-square-poll-horizontal:before {
  content: "\F682";
}

.fa-circle:before {
  content: "\F111";
}

.fa-backward-fast:before, .fa-fast-backward:before {
  content: "\F049";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-user-astronaut:before {
  content: "\F4FB";
}

.fa-plane-slash:before {
  content: "\E069";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-basketball-ball:before, .fa-basketball:before {
  content: "\F434";
}

.fa-satellite-dish:before {
  content: "\F7C0";
}

.fa-arrow-alt-circle-up:before, .fa-circle-up:before {
  content: "\F35B";
}

.fa-mobile-alt:before, .fa-mobile-screen-button:before {
  content: "\F3CD";
}

.fa-volume-high:before, .fa-volume-up:before {
  content: "\F028";
}

.fa-users-rays:before {
  content: "\E593";
}

.fa-wallet:before {
  content: "\F555";
}

.fa-clipboard-check:before {
  content: "\F46C";
}

.fa-file-audio:before {
  content: "\F1C7";
}

.fa-burger:before, .fa-hamburger:before {
  content: "\F805";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-bugs:before {
  content: "\E4D0";
}

.fa-rupee-sign:before, .fa-rupee:before {
  content: "\F156";
}

.fa-file-image:before {
  content: "\F1C5";
}

.fa-circle-question:before, .fa-question-circle:before {
  content: "\F059";
}

.fa-plane-departure:before {
  content: "\F5B0";
}

.fa-handshake-slash:before {
  content: "\E060";
}

.fa-book-bookmark:before {
  content: "\E0BB";
}

.fa-code-branch:before {
  content: "\F126";
}

.fa-hat-cowboy:before {
  content: "\F8C0";
}

.fa-bridge:before {
  content: "\E4C8";
}

.fa-phone-alt:before, .fa-phone-flip:before {
  content: "\F879";
}

.fa-truck-front:before {
  content: "\E2B7";
}

.fa-cat:before {
  content: "\F6BE";
}

.fa-anchor-circle-exclamation:before {
  content: "\E4AB";
}

.fa-truck-field:before {
  content: "\E58D";
}

.fa-route:before {
  content: "\F4D7";
}

.fa-clipboard-question:before {
  content: "\E4E3";
}

.fa-panorama:before {
  content: "\E209";
}

.fa-comment-medical:before {
  content: "\F7F5";
}

.fa-teeth-open:before {
  content: "\F62F";
}

.fa-file-circle-minus:before {
  content: "\E4ED";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-wine-glass:before {
  content: "\F4E3";
}

.fa-fast-forward:before, .fa-forward-fast:before {
  content: "\F050";
}

.fa-face-meh-blank:before, .fa-meh-blank:before {
  content: "\F5A4";
}

.fa-parking:before, .fa-square-parking:before {
  content: "\F540";
}

.fa-house-signal:before {
  content: "\E012";
}

.fa-bars-progress:before, .fa-tasks-alt:before {
  content: "\F828";
}

.fa-faucet-drip:before {
  content: "\E006";
}

.fa-cart-flatbed:before, .fa-dolly-flatbed:before {
  content: "\F474";
}

.fa-ban-smoking:before, .fa-smoking-ban:before {
  content: "\F54D";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-mobile-button:before {
  content: "\F10B";
}

.fa-house-medical-flag:before {
  content: "\E514";
}

.fa-basket-shopping:before, .fa-shopping-basket:before {
  content: "\F291";
}

.fa-tape:before {
  content: "\F4DB";
}

.fa-bus-alt:before, .fa-bus-simple:before {
  content: "\F55E";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-face-sad-cry:before, .fa-sad-cry:before {
  content: "\F5B3";
}

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

.fa-person-military-to-person:before {
  content: "\E54C";
}

.fa-file-shield:before {
  content: "\E4F0";
}

.fa-user-slash:before {
  content: "\F506";
}

.fa-pen:before {
  content: "\F304";
}

.fa-tower-observation:before {
  content: "\E586";
}

.fa-file-code:before {
  content: "\F1C9";
}

.fa-signal-5:before, .fa-signal-perfect:before, .fa-signal:before {
  content: "\F012";
}

.fa-bus:before {
  content: "\F207";
}

.fa-heart-circle-xmark:before {
  content: "\E501";
}

.fa-home-lg:before, .fa-house-chimney:before {
  content: "\E3AF";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-face-frown:before, .fa-frown:before {
  content: "\F119";
}

.fa-prescription:before {
  content: "\F5B1";
}

.fa-shop:before, .fa-store-alt:before {
  content: "\F54F";
}

.fa-floppy-disk:before, .fa-save:before {
  content: "\F0C7";
}

.fa-vihara:before {
  content: "\F6A7";
}

.fa-balance-scale-left:before, .fa-scale-unbalanced:before {
  content: "\F515";
}

.fa-sort-asc:before, .fa-sort-up:before {
  content: "\F0DE";
}

.fa-comment-dots:before, .fa-commenting:before {
  content: "\F4AD";
}

.fa-plant-wilt:before {
  content: "\E5AA";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-face-grin-squint:before, .fa-grin-squint:before {
  content: "\F585";
}

.fa-hand-holding-dollar:before, .fa-hand-holding-usd:before {
  content: "\F4C0";
}

.fa-bacterium:before {
  content: "\E05A";
}

.fa-hand-pointer:before {
  content: "\F25A";
}

.fa-drum-steelpan:before {
  content: "\F56A";
}

.fa-hand-scissors:before {
  content: "\F257";
}

.fa-hands-praying:before, .fa-praying-hands:before {
  content: "\F684";
}

.fa-arrow-right-rotate:before, .fa-arrow-rotate-forward:before, .fa-arrow-rotate-right:before, .fa-redo:before {
  content: "\F01E";
}

.fa-biohazard:before {
  content: "\F780";
}

.fa-location-crosshairs:before, .fa-location:before {
  content: "\F601";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-child-dress:before {
  content: "\E59C";
}

.fa-users-between-lines:before {
  content: "\E591";
}

.fa-lungs-virus:before {
  content: "\E067";
}

.fa-face-grin-tears:before, .fa-grin-tears:before {
  content: "\F588";
}

.fa-phone:before {
  content: "\F095";
}

.fa-calendar-times:before, .fa-calendar-xmark:before {
  content: "\F273";
}

.fa-child-reaching:before {
  content: "\E59D";
}

.fa-head-side-virus:before {
  content: "\E064";
}

.fa-user-cog:before, .fa-user-gear:before {
  content: "\F4FE";
}

.fa-arrow-up-1-9:before, .fa-sort-numeric-up:before {
  content: "\F163";
}

.fa-door-closed:before {
  content: "\F52A";
}

.fa-shield-virus:before {
  content: "\E06C";
}

.fa-dice-six:before {
  content: "\F526";
}

.fa-mosquito-net:before {
  content: "\E52C";
}

.fa-bridge-water:before {
  content: "\E4CE";
}

.fa-person-booth:before {
  content: "\F756";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-hat-wizard:before {
  content: "\F6E8";
}

.fa-pen-fancy:before {
  content: "\F5AC";
}

.fa-digging:before, .fa-person-digging:before {
  content: "\F85E";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-gauge-simple-med:before, .fa-gauge-simple:before, .fa-tachometer-average:before {
  content: "\F629";
}

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

.fa-poo:before {
  content: "\F2FE";
}

.fa-quote-right-alt:before, .fa-quote-right:before {
  content: "\F10E";
}

.fa-shirt:before, .fa-t-shirt:before, .fa-tshirt:before {
  content: "\F553";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-divide:before {
  content: "\F529";
}

.fa-tenge-sign:before, .fa-tenge:before {
  content: "\F7D7";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-hands-holding:before {
  content: "\F4C2";
}

.fa-hands-clapping:before {
  content: "\E1A8";
}

.fa-republican:before {
  content: "\F75E";
}

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

.fa-person-circle-xmark:before {
  content: "\E543";
}

.fa-ruler:before {
  content: "\F545";
}

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

.fa-dice-d6:before {
  content: "\F6D1";
}

.fa-restroom:before {
  content: "\F7BD";
}

.fa-j:before {
  content: "J";
}

.fa-users-viewfinder:before {
  content: "\E595";
}

.fa-file-video:before {
  content: "\F1C8";
}

.fa-external-link-alt:before, .fa-up-right-from-square:before {
  content: "\F35D";
}

.fa-table-cells:before, .fa-th:before {
  content: "\F00A";
}

.fa-file-pdf:before {
  content: "\F1C1";
}

.fa-bible:before, .fa-book-bible:before {
  content: "\F647";
}

.fa-o:before {
  content: "O";
}

.fa-medkit:before, .fa-suitcase-medical:before {
  content: "\F0FA";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-otter:before {
  content: "\F700";
}

.fa-female:before, .fa-person-dress:before {
  content: "\F182";
}

.fa-comment-dollar:before {
  content: "\F651";
}

.fa-briefcase-clock:before, .fa-business-time:before {
  content: "\F64A";
}

.fa-table-cells-large:before, .fa-th-large:before {
  content: "\F009";
}

.fa-book-tanakh:before, .fa-tanakh:before {
  content: "\F827";
}

.fa-phone-volume:before, .fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-hat-cowboy-side:before {
  content: "\F8C1";
}

.fa-clipboard-user:before {
  content: "\F7F3";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-lira-sign:before {
  content: "\F195";
}

.fa-satellite:before {
  content: "\F7BF";
}

.fa-plane-lock:before {
  content: "\E558";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-comment:before {
  content: "\F075";
}

.fa-birthday-cake:before, .fa-cake-candles:before, .fa-cake:before {
  content: "\F1FD";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-angle-double-up:before, .fa-angles-up:before {
  content: "\F102";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-arrow-right-to-city:before {
  content: "\E4B3";
}

.fa-ribbon:before {
  content: "\F4D6";
}

.fa-lungs:before {
  content: "\F604";
}

.fa-arrow-up-9-1:before, .fa-sort-numeric-up-alt:before {
  content: "\F887";
}

.fa-litecoin-sign:before {
  content: "\E1D3";
}

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

.fa-circle-nodes:before {
  content: "\E4E2";
}

.fa-parachute-box:before {
  content: "\F4CD";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-truck-field-un:before {
  content: "\E58E";
}

.fa-hourglass-empty:before, .fa-hourglass:before {
  content: "\F254";
}

.fa-mountain:before {
  content: "\F6FC";
}

.fa-user-doctor:before, .fa-user-md:before {
  content: "\F0F0";
}

.fa-circle-info:before, .fa-info-circle:before {
  content: "\F05A";
}

.fa-cloud-meatball:before {
  content: "\F73B";
}

.fa-camera-alt:before, .fa-camera:before {
  content: "\F030";
}

.fa-square-virus:before {
  content: "\E578";
}

.fa-meteor:before {
  content: "\F753";
}

.fa-car-on:before {
  content: "\E4DD";
}

.fa-sleigh:before {
  content: "\F7CC";
}

.fa-arrow-down-1-9:before, .fa-sort-numeric-asc:before, .fa-sort-numeric-down:before {
  content: "\F162";
}

.fa-hand-holding-droplet:before, .fa-hand-holding-water:before {
  content: "\F4C1";
}

.fa-water:before {
  content: "\F773";
}

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

.fa-braille:before {
  content: "\F2A1";
}

.fa-prescription-bottle-alt:before, .fa-prescription-bottle-medical:before {
  content: "\F486";
}

.fa-landmark:before {
  content: "\F66F";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-person-cane:before {
  content: "\E53C";
}

.fa-tent:before {
  content: "\E57D";
}

.fa-vest-patches:before {
  content: "\E086";
}

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

.fa-arrow-down-a-z:before, .fa-sort-alpha-asc:before, .fa-sort-alpha-down:before {
  content: "\F15D";
}

.fa-money-bill-wheat:before {
  content: "\E52A";
}

.fa-cookie:before {
  content: "\F563";
}

.fa-arrow-left-rotate:before, .fa-arrow-rotate-back:before, .fa-arrow-rotate-backward:before, .fa-arrow-rotate-left:before, .fa-undo:before {
  content: "\F0E2";
}

.fa-hard-drive:before, .fa-hdd:before {
  content: "\F0A0";
}

.fa-face-grin-squint-tears:before, .fa-grin-squint-tears:before {
  content: "\F586";
}

.fa-dumbbell:before {
  content: "\F44B";
}

.fa-list-alt:before, .fa-rectangle-list:before {
  content: "\F022";
}

.fa-tarp-droplet:before {
  content: "\E57C";
}

.fa-house-medical-circle-check:before {
  content: "\E511";
}

.fa-person-skiing-nordic:before, .fa-skiing-nordic:before {
  content: "\F7CA";
}

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

.fa-plane-arrival:before {
  content: "\F5AF";
}

.fa-arrow-alt-circle-left:before, .fa-circle-left:before {
  content: "\F359";
}

.fa-subway:before, .fa-train-subway:before {
  content: "\F239";
}

.fa-chart-gantt:before {
  content: "\E0E4";
}

.fa-indian-rupee-sign:before, .fa-indian-rupee:before, .fa-inr:before {
  content: "\E1BC";
}

.fa-crop-alt:before, .fa-crop-simple:before {
  content: "\F565";
}

.fa-money-bill-1:before, .fa-money-bill-alt:before {
  content: "\F3D1";
}

.fa-left-long:before, .fa-long-arrow-alt-left:before {
  content: "\F30A";
}

.fa-dna:before {
  content: "\F471";
}

.fa-virus-slash:before {
  content: "\E075";
}

.fa-minus:before, .fa-subtract:before {
  content: "\F068";
}

.fa-chess:before {
  content: "\F439";
}

.fa-arrow-left-long:before, .fa-long-arrow-left:before {
  content: "\F177";
}

.fa-plug-circle-check:before {
  content: "\E55C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-franc-sign:before {
  content: "\E18F";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before, .fa-hands-american-sign-language-interpreting:before, .fa-hands-asl-interpreting:before {
  content: "\F2A3";
}

.fa-cog:before, .fa-gear:before {
  content: "\F013";
}

.fa-droplet-slash:before, .fa-tint-slash:before {
  content: "\F5C7";
}

.fa-mosque:before {
  content: "\F678";
}

.fa-mosquito:before {
  content: "\E52B";
}

.fa-star-of-david:before {
  content: "\F69A";
}

.fa-person-military-rifle:before {
  content: "\E54B";
}

.fa-cart-shopping:before, .fa-shopping-cart:before {
  content: "\F07A";
}

.fa-vials:before {
  content: "\F493";
}

.fa-plug-circle-plus:before {
  content: "\E55F";
}

.fa-place-of-worship:before {
  content: "\F67F";
}

.fa-grip-vertical:before {
  content: "\F58E";
}

.fa-arrow-turn-up:before, .fa-level-up:before {
  content: "\F148";
}

.fa-u:before {
  content: "U";
}

.fa-square-root-alt:before, .fa-square-root-variable:before {
  content: "\F698";
}

.fa-clock-four:before, .fa-clock:before {
  content: "\F017";
}

.fa-backward-step:before, .fa-step-backward:before {
  content: "\F048";
}

.fa-pallet:before {
  content: "\F482";
}

.fa-faucet:before {
  content: "\E005";
}

.fa-baseball-bat-ball:before {
  content: "\F432";
}

.fa-s:before {
  content: "S";
}

.fa-timeline:before {
  content: "\E29C";
}

.fa-keyboard:before {
  content: "\F11C";
}

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

.fa-clinic-medical:before, .fa-house-chimney-medical:before {
  content: "\F7F2";
}

.fa-temperature-3:before, .fa-temperature-three-quarters:before, .fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-mobile-android-alt:before, .fa-mobile-screen:before {
  content: "\F3CF";
}

.fa-plane-up:before {
  content: "\E22D";
}

.fa-piggy-bank:before {
  content: "\F4D3";
}

.fa-battery-3:before, .fa-battery-half:before {
  content: "\F242";
}

.fa-mountain-city:before {
  content: "\E52E";
}

.fa-coins:before {
  content: "\F51E";
}

.fa-khanda:before {
  content: "\F66D";
}

.fa-sliders-h:before, .fa-sliders:before {
  content: "\F1DE";
}

.fa-folder-tree:before {
  content: "\F802";
}

.fa-network-wired:before {
  content: "\F6FF";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-hamsa:before {
  content: "\F665";
}

.fa-cent-sign:before {
  content: "\E3F5";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-person-pregnant:before {
  content: "\E31E";
}

.fa-wand-sparkles:before {
  content: "\F72B";
}

.fa-ellipsis-v:before, .fa-ellipsis-vertical:before {
  content: "\F142";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-long-arrow-alt-right:before, .fa-right-long:before {
  content: "\F30B";
}

.fa-flag-usa:before {
  content: "\F74D";
}

.fa-laptop-file:before {
  content: "\E51D";
}

.fa-teletype:before, .fa-tty:before {
  content: "\F1E4";
}

.fa-diagram-next:before {
  content: "\E476";
}

.fa-person-rifle:before {
  content: "\E54E";
}

.fa-house-medical-circle-exclamation:before {
  content: "\E512";
}

.fa-closed-captioning:before {
  content: "\F20A";
}

.fa-hiking:before, .fa-person-hiking:before {
  content: "\F6EC";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-images:before {
  content: "\F302";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-people-pulling:before {
  content: "\E535";
}

.fa-n:before {
  content: "N";
}

.fa-cable-car:before, .fa-tram:before {
  content: "\F7DA";
}

.fa-cloud-rain:before {
  content: "\F73D";
}

.fa-building-circle-xmark:before {
  content: "\E4D4";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-arrows-down-to-line:before {
  content: "\E4B8";
}

.fa-download:before {
  content: "\F019";
}

.fa-face-grin:before, .fa-grin:before {
  content: "\F580";
}

.fa-backspace:before, .fa-delete-left:before {
  content: "\F55A";
}

.fa-eye-dropper-empty:before, .fa-eye-dropper:before, .fa-eyedropper:before {
  content: "\F1FB";
}

.fa-file-circle-check:before {
  content: "\E5A0";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-mobile-android:before, .fa-mobile-phone:before, .fa-mobile:before {
  content: "\F3CE";
}

.fa-face-meh:before, .fa-meh:before {
  content: "\F11A";
}

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

.fa-book-dead:before, .fa-book-skull:before {
  content: "\F6B7";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "\F2C2";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\F03B";
}

.fa-heart-circle-exclamation:before {
  content: "\E4FE";
}

.fa-home-alt:before, .fa-home-lg-alt:before, .fa-home:before, .fa-house:before {
  content: "\F015";
}

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

.fa-laptop-medical:before {
  content: "\F812";
}

.fa-b:before {
  content: "B";
}

.fa-file-medical:before {
  content: "\F477";
}

.fa-dice-one:before {
  content: "\F525";
}

.fa-kiwi-bird:before {
  content: "\F535";
}

.fa-arrow-right-arrow-left:before, .fa-exchange:before {
  content: "\F0EC";
}

.fa-redo-alt:before, .fa-rotate-forward:before, .fa-rotate-right:before {
  content: "\F2F9";
}

.fa-cutlery:before, .fa-utensils:before {
  content: "\F2E7";
}

.fa-arrow-up-wide-short:before, .fa-sort-amount-up:before {
  content: "\F161";
}

.fa-mill-sign:before {
  content: "\E1ED";
}

.fa-bowl-rice:before {
  content: "\E2EB";
}

.fa-skull:before {
  content: "\F54C";
}

.fa-broadcast-tower:before, .fa-tower-broadcast:before {
  content: "\F519";
}

.fa-truck-pickup:before {
  content: "\F63C";
}

.fa-long-arrow-alt-up:before, .fa-up-long:before {
  content: "\F30C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-code-merge:before {
  content: "\F387";
}

.fa-upload:before {
  content: "\F093";
}

.fa-hurricane:before {
  content: "\F751";
}

.fa-mound:before {
  content: "\E52D";
}

.fa-toilet-portable:before {
  content: "\E583";
}

.fa-compact-disc:before {
  content: "\F51F";
}

.fa-file-arrow-down:before, .fa-file-download:before {
  content: "\F56D";
}

.fa-caravan:before {
  content: "\F8FF";
}

.fa-shield-cat:before {
  content: "\E572";
}

.fa-bolt:before, .fa-zap:before {
  content: "\F0E7";
}

.fa-glass-water:before {
  content: "\E4F4";
}

.fa-oil-well:before {
  content: "\E532";
}

.fa-vault:before {
  content: "\E2C5";
}

.fa-mars:before {
  content: "\F222";
}

.fa-toilet:before {
  content: "\F7D8";
}

.fa-plane-circle-xmark:before {
  content: "\E557";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen-sign:before, .fa-yen:before {
  content: "\F157";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble-sign:before, .fa-ruble:before {
  content: "\F158";
}

.fa-sun:before {
  content: "\F185";
}

.fa-guitar:before {
  content: "\F7A6";
}

.fa-face-laugh-wink:before, .fa-laugh-wink:before {
  content: "\F59C";
}

.fa-horse-head:before {
  content: "\F7AB";
}

.fa-bore-hole:before {
  content: "\E4C3";
}

.fa-industry:before {
  content: "\F275";
}

.fa-arrow-alt-circle-down:before, .fa-circle-down:before {
  content: "\F358";
}

.fa-arrows-turn-to-dots:before {
  content: "\E4C1";
}

.fa-florin-sign:before {
  content: "\E184";
}

.fa-arrow-down-short-wide:before, .fa-sort-amount-desc:before, .fa-sort-amount-down-alt:before {
  content: "\F884";
}

.fa-less-than:before {
  content: "<";
}

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

.fa-car-tunnel:before {
  content: "\E4DE";
}

.fa-head-side-cough:before {
  content: "\E061";
}

.fa-grip-lines:before {
  content: "\F7A4";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-user-lock:before {
  content: "\F502";
}

.fa-arrow-right-long:before, .fa-long-arrow-right:before {
  content: "\F178";
}

.fa-anchor-circle-xmark:before {
  content: "\E4AC";
}

.fa-ellipsis-h:before, .fa-ellipsis:before {
  content: "\F141";
}

.fa-chess-pawn:before {
  content: "\F443";
}

.fa-first-aid:before, .fa-kit-medical:before {
  content: "\F479";
}

.fa-person-through-window:before {
  content: "\E5A9";
}

.fa-toolbox:before {
  content: "\F552";
}

.fa-hands-holding-circle:before {
  content: "\E4FB";
}

.fa-bug:before {
  content: "\F188";
}

.fa-credit-card-alt:before, .fa-credit-card:before {
  content: "\F09D";
}

.fa-automobile:before, .fa-car:before {
  content: "\F1B9";
}

.fa-hand-holding-hand:before {
  content: "\E4F7";
}

.fa-book-open-reader:before, .fa-book-reader:before {
  content: "\F5DA";
}

.fa-mountain-sun:before {
  content: "\E52F";
}

.fa-arrows-left-right-to-line:before {
  content: "\E4BA";
}

.fa-dice-d20:before {
  content: "\F6CF";
}

.fa-truck-droplet:before {
  content: "\E58C";
}

.fa-file-circle-xmark:before {
  content: "\E5A1";
}

.fa-temperature-arrow-up:before, .fa-temperature-up:before {
  content: "\E040";
}

.fa-medal:before {
  content: "\F5A2";
}

.fa-bed:before {
  content: "\F236";
}

.fa-h-square:before, .fa-square-h:before {
  content: "\F0FD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-temperature-4:before, .fa-temperature-full:before, .fa-thermometer-4:before, .fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-plug-circle-xmark:before {
  content: "\E560";
}

.fa-star-of-life:before {
  content: "\F621";
}

.fa-phone-slash:before {
  content: "\F3DD";
}

.fa-paint-roller:before {
  content: "\F5AA";
}

.fa-hands-helping:before, .fa-handshake-angle:before {
  content: "\F4C4";
}

.fa-location-dot:before, .fa-map-marker-alt:before {
  content: "\F3C5";
}

.fa-file:before {
  content: "\F15B";
}

.fa-greater-than:before {
  content: ">";
}

.fa-person-swimming:before, .fa-swimmer:before {
  content: "\F5C4";
}

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

.fa-droplet:before, .fa-tint:before {
  content: "\F043";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-earth-america:before, .fa-earth-americas:before, .fa-earth:before, .fa-globe-americas:before {
  content: "\F57D";
}

.fa-person-burst:before {
  content: "\E53B";
}

.fa-dove:before {
  content: "\F4BA";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\F244";
}

.fa-socks:before {
  content: "\F696";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-section:before {
  content: "\E447";
}

.fa-gauge-high:before, .fa-tachometer-alt-fast:before, .fa-tachometer-alt:before {
  content: "\F625";
}

.fa-envelope-open-text:before {
  content: "\F658";
}

.fa-hospital-alt:before, .fa-hospital-wide:before, .fa-hospital:before {
  content: "\F0F8";
}

.fa-wine-bottle:before {
  content: "\F72F";
}

.fa-chess-rook:before {
  content: "\F447";
}

.fa-bars-staggered:before, .fa-reorder:before, .fa-stream:before {
  content: "\F550";
}

.fa-dharmachakra:before {
  content: "\F655";
}

.fa-hotdog:before {
  content: "\F80F";
}

.fa-blind:before, .fa-person-walking-with-cane:before {
  content: "\F29D";
}

.fa-drum:before {
  content: "\F569";
}

.fa-ice-cream:before {
  content: "\F810";
}

.fa-heart-circle-bolt:before {
  content: "\E4FC";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-check-to-slot:before, .fa-vote-yea:before {
  content: "\F772";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-boxes-alt:before, .fa-boxes-stacked:before, .fa-boxes:before {
  content: "\F468";
}

.fa-chain:before, .fa-link:before {
  content: "\F0C1";
}

.fa-assistive-listening-systems:before, .fa-ear-listen:before {
  content: "\F2A2";
}

.fa-tree-city:before {
  content: "\E587";
}

.fa-play:before {
  content: "\F04B";
}

.fa-font:before {
  content: "\F031";
}

.fa-rupiah-sign:before {
  content: "\E23D";
}

.fa-magnifying-glass:before, .fa-search:before {
  content: "\F002";
}

.fa-ping-pong-paddle-ball:before, .fa-table-tennis-paddle-ball:before, .fa-table-tennis:before {
  content: "\F45D";
}

.fa-diagnoses:before, .fa-person-dots-from-line:before {
  content: "\F470";
}

.fa-trash-can-arrow-up:before, .fa-trash-restore-alt:before {
  content: "\F82A";
}

.fa-naira-sign:before {
  content: "\E1F6";
}

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

.fa-walkie-talkie:before {
  content: "\F8EF";
}

.fa-file-edit:before, .fa-file-pen:before {
  content: "\F31C";
}

.fa-receipt:before {
  content: "\F543";
}

.fa-pen-square:before, .fa-pencil-square:before, .fa-square-pen:before {
  content: "\F14B";
}

.fa-suitcase-rolling:before {
  content: "\F5C1";
}

.fa-person-circle-exclamation:before {
  content: "\E53F";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-battery-5:before, .fa-battery-full:before, .fa-battery:before {
  content: "\F240";
}

.fa-skull-crossbones:before {
  content: "\F714";
}

.fa-code-compare:before {
  content: "\E13A";
}

.fa-list-dots:before, .fa-list-ul:before {
  content: "\F0CA";
}

.fa-school-lock:before {
  content: "\E56F";
}

.fa-tower-cell:before {
  content: "\E585";
}

.fa-down-long:before, .fa-long-arrow-alt-down:before {
  content: "\F309";
}

.fa-ranking-star:before {
  content: "\E561";
}

.fa-chess-king:before {
  content: "\F43F";
}

.fa-person-harassing:before {
  content: "\E549";
}

.fa-brazilian-real-sign:before {
  content: "\E46C";
}

.fa-landmark-alt:before, .fa-landmark-dome:before {
  content: "\F752";
}

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

.fa-television:before, .fa-tv-alt:before, .fa-tv:before {
  content: "\F26C";
}

.fa-shrimp:before {
  content: "\E448";
}

.fa-list-check:before, .fa-tasks:before {
  content: "\F0AE";
}

.fa-jug-detergent:before {
  content: "\E519";
}

.fa-circle-user:before, .fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-shield:before {
  content: "\F505";
}

.fa-wind:before {
  content: "\F72E";
}

.fa-car-burst:before, .fa-car-crash:before {
  content: "\F5E1";
}

.fa-y:before {
  content: "Y";
}

.fa-person-snowboarding:before, .fa-snowboarding:before {
  content: "\F7CE";
}

.fa-shipping-fast:before, .fa-truck-fast:before {
  content: "\F48B";
}

.fa-fish:before {
  content: "\F578";
}

.fa-user-graduate:before {
  content: "\F501";
}

.fa-adjust:before, .fa-circle-half-stroke:before {
  content: "\F042";
}

.fa-clapperboard:before {
  content: "\E131";
}

.fa-circle-radiation:before, .fa-radiation-alt:before {
  content: "\F7BA";
}

.fa-baseball-ball:before, .fa-baseball:before {
  content: "\F433";
}

.fa-jet-fighter-up:before {
  content: "\E518";
}

.fa-diagram-project:before, .fa-project-diagram:before {
  content: "\F542";
}

.fa-copy:before {
  content: "\F0C5";
}

.fa-volume-mute:before, .fa-volume-times:before, .fa-volume-xmark:before {
  content: "\F6A9";
}

.fa-hand-sparkles:before {
  content: "\E05D";
}

.fa-grip-horizontal:before, .fa-grip:before {
  content: "\F58D";
}

.fa-share-from-square:before, .fa-share-square:before {
  content: "\F14D";
}

.fa-child-combatant:before, .fa-child-rifle:before {
  content: "\E4E0";
}

.fa-gun:before {
  content: "\E19B";
}

.fa-phone-square:before, .fa-square-phone:before {
  content: "\F098";
}

.fa-add:before, .fa-plus:before {
  content: "+";
}

.fa-expand:before {
  content: "\F065";
}

.fa-computer:before {
  content: "\E4E5";
}

.fa-close:before, .fa-multiply:before, .fa-remove:before, .fa-times:before, .fa-xmark:before {
  content: "\F00D";
}

.fa-arrows-up-down-left-right:before, .fa-arrows:before {
  content: "\F047";
}

.fa-chalkboard-teacher:before, .fa-chalkboard-user:before {
  content: "\F51C";
}

.fa-peso-sign:before {
  content: "\E222";
}

.fa-building-shield:before {
  content: "\E4D8";
}

.fa-baby:before {
  content: "\F77C";
}

.fa-users-line:before {
  content: "\E592";
}

.fa-quote-left-alt:before, .fa-quote-left:before {
  content: "\F10D";
}

.fa-tractor:before {
  content: "\F722";
}

.fa-trash-arrow-up:before, .fa-trash-restore:before {
  content: "\F829";
}

.fa-arrow-down-up-lock:before {
  content: "\E4B0";
}

.fa-lines-leaning:before {
  content: "\E51E";
}

.fa-ruler-combined:before {
  content: "\F546";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-equals:before {
  content: "=";
}

.fa-blender:before {
  content: "\F517";
}

.fa-teeth:before {
  content: "\F62E";
}

.fa-ils:before, .fa-shekel-sign:before, .fa-shekel:before, .fa-sheqel-sign:before, .fa-sheqel:before {
  content: "\F20B";
}

.fa-map:before {
  content: "\F279";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-photo-film:before, .fa-photo-video:before {
  content: "\F87C";
}

.fa-folder-minus:before {
  content: "\F65D";
}

.fa-store:before {
  content: "\F54E";
}

.fa-arrow-trend-up:before {
  content: "\E098";
}

.fa-plug-circle-minus:before {
  content: "\E55E";
}

.fa-sign-hanging:before, .fa-sign:before {
  content: "\F4D9";
}

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

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

.fa-tablet-android:before, .fa-tablet:before {
  content: "\F3FB";
}

.fa-school-flag:before {
  content: "\E56E";
}

.fa-fill:before {
  content: "\F575";
}

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

.fa-drumstick-bite:before {
  content: "\F6D7";
}

.fa-holly-berry:before {
  content: "\F7AA";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-bacteria:before {
  content: "\E059";
}

.fa-hand-lizard:before {
  content: "\F258";
}

.fa-notdef:before {
  content: "\E1FE";
}

.fa-disease:before {
  content: "\F7FA";
}

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

.fa-genderless:before {
  content: "\F22D";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-car-alt:before, .fa-car-rear:before {
  content: "\F5DE";
}

.fa-pump-soap:before {
  content: "\E06B";
}

.fa-video-slash:before {
  content: "\F4E2";
}

.fa-battery-2:before, .fa-battery-quarter:before {
  content: "\F243";
}

.fa-radio:before {
  content: "\F8D7";
}

.fa-baby-carriage:before, .fa-carriage-baby:before {
  content: "\F77D";
}

.fa-traffic-light:before {
  content: "\F637";
}

.fa-thermometer:before {
  content: "\F491";
}

.fa-vr-cardboard:before {
  content: "\F729";
}

.fa-hand-middle-finger:before {
  content: "\F806";
}

.fa-percent:before, .fa-percentage:before {
  content: "%";
}

.fa-truck-moving:before {
  content: "\F4DF";
}

.fa-glass-water-droplet:before {
  content: "\E4F5";
}

.fa-display:before {
  content: "\E163";
}

.fa-face-smile:before, .fa-smile:before {
  content: "\F118";
}

.fa-thumb-tack:before, .fa-thumbtack:before {
  content: "\F08D";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-person-praying:before, .fa-pray:before {
  content: "\F683";
}

.fa-hammer:before {
  content: "\F6E3";
}

.fa-hand-peace:before {
  content: "\F25B";
}

.fa-rotate:before, .fa-sync-alt:before {
  content: "\F2F1";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-robot:before {
  content: "\F544";
}

.fa-peace:before {
  content: "\F67C";
}

.fa-cogs:before, .fa-gears:before {
  content: "\F085";
}

.fa-warehouse:before {
  content: "\F494";
}

.fa-arrow-up-right-dots:before {
  content: "\E4B7";
}

.fa-splotch:before {
  content: "\F5BC";
}

.fa-face-grin-hearts:before, .fa-grin-hearts:before {
  content: "\F584";
}

.fa-dice-four:before {
  content: "\F524";
}

.fa-sim-card:before {
  content: "\F7C4";
}

.fa-transgender-alt:before, .fa-transgender:before {
  content: "\F225";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-arrow-turn-down:before, .fa-level-down:before {
  content: "\F149";
}

.fa-person-falling-burst:before {
  content: "\E547";
}

.fa-award:before {
  content: "\F559";
}

.fa-ticket-alt:before, .fa-ticket-simple:before {
  content: "\F3FF";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-angle-double-left:before, .fa-angles-left:before {
  content: "\F100";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-clock-rotate-left:before, .fa-history:before {
  content: "\F1DA";
}

.fa-face-grin-beam-sweat:before, .fa-grin-beam-sweat:before {
  content: "\F583";
}

.fa-arrow-right-from-file:before, .fa-file-export:before {
  content: "\F56E";
}

.fa-shield-blank:before, .fa-shield:before {
  content: "\F132";
}

.fa-arrow-up-short-wide:before, .fa-sort-amount-up-alt:before {
  content: "\F885";
}

.fa-house-medical:before {
  content: "\E3B2";
}

.fa-golf-ball-tee:before, .fa-golf-ball:before {
  content: "\F450";
}

.fa-chevron-circle-left:before, .fa-circle-chevron-left:before {
  content: "\F137";
}

.fa-house-chimney-window:before {
  content: "\E00D";
}

.fa-pen-nib:before {
  content: "\F5AD";
}

.fa-tent-arrow-turn-left:before {
  content: "\E580";
}

.fa-tents:before {
  content: "\E582";
}

.fa-magic:before, .fa-wand-magic:before {
  content: "\F0D0";
}

.fa-dog:before {
  content: "\F6D3";
}

.fa-carrot:before {
  content: "\F787";
}

.fa-moon:before {
  content: "\F186";
}

.fa-wine-glass-alt:before, .fa-wine-glass-empty:before {
  content: "\F5CE";
}

.fa-cheese:before {
  content: "\F7EF";
}

.fa-yin-yang:before {
  content: "\F6AD";
}

.fa-music:before {
  content: "\F001";
}

.fa-code-commit:before {
  content: "\F386";
}

.fa-temperature-low:before {
  content: "\F76B";
}

.fa-biking:before, .fa-person-biking:before {
  content: "\F84A";
}

.fa-broom:before {
  content: "\F51A";
}

.fa-shield-heart:before {
  content: "\E574";
}

.fa-gopuram:before {
  content: "\F664";
}

.fa-earth-oceania:before, .fa-globe-oceania:before {
  content: "\E47B";
}

.fa-square-xmark:before, .fa-times-square:before, .fa-xmark-square:before {
  content: "\F2D3";
}

.fa-hashtag:before {
  content: "#";
}

.fa-expand-alt:before, .fa-up-right-and-down-left-from-center:before {
  content: "\F424";
}

.fa-oil-can:before {
  content: "\F613";
}

.fa-t:before {
  content: "T";
}

.fa-hippo:before {
  content: "\F6ED";
}

.fa-chart-column:before {
  content: "\E0E3";
}

.fa-infinity:before {
  content: "\F534";
}

.fa-vial-circle-check:before {
  content: "\E596";
}

.fa-person-arrow-down-to-line:before {
  content: "\E538";
}

.fa-voicemail:before {
  content: "\F897";
}

.fa-fan:before {
  content: "\F863";
}

.fa-person-walking-luggage:before {
  content: "\E554";
}

.fa-arrows-alt-v:before, .fa-up-down:before {
  content: "\F338";
}

.fa-cloud-moon-rain:before {
  content: "\F73C";
}

.fa-calendar:before {
  content: "\F133";
}

.fa-trailer:before {
  content: "\E041";
}

.fa-bahai:before, .fa-haykal:before {
  content: "\F666";
}

.fa-sd-card:before {
  content: "\F7C2";
}

.fa-dragon:before {
  content: "\F6D5";
}

.fa-shoe-prints:before {
  content: "\F54B";
}

.fa-circle-plus:before, .fa-plus-circle:before {
  content: "\F055";
}

.fa-face-grin-tongue-wink:before, .fa-grin-tongue-wink:before {
  content: "\F58B";
}

.fa-hand-holding:before {
  content: "\F4BD";
}

.fa-plug-circle-exclamation:before {
  content: "\E55D";
}

.fa-chain-broken:before, .fa-chain-slash:before, .fa-link-slash:before, .fa-unlink:before {
  content: "\F127";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-person-walking-arrow-loop-left:before {
  content: "\E551";
}

.fa-arrow-up-z-a:before, .fa-sort-alpha-up-alt:before {
  content: "\F882";
}

.fa-fire-alt:before, .fa-fire-flame-curved:before {
  content: "\F7E4";
}

.fa-tornado:before {
  content: "\F76F";
}

.fa-file-circle-plus:before {
  content: "\E494";
}

.fa-book-quran:before, .fa-quran:before {
  content: "\F687";
}

.fa-anchor:before {
  content: "\F13D";
}

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

.fa-angry:before, .fa-face-angry:before {
  content: "\F556";
}

.fa-cookie-bite:before {
  content: "\F564";
}

.fa-arrow-trend-down:before {
  content: "\E097";
}

.fa-feed:before, .fa-rss:before {
  content: "\F09E";
}

.fa-draw-polygon:before {
  content: "\F5EE";
}

.fa-balance-scale:before, .fa-scale-balanced:before {
  content: "\F24E";
}

.fa-gauge-simple-high:before, .fa-tachometer-fast:before, .fa-tachometer:before {
  content: "\F62A";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-desktop-alt:before, .fa-desktop:before {
  content: "\F390";
}

.fa-m:before {
  content: "M";
}

.fa-table-list:before, .fa-th-list:before {
  content: "\F00B";
}

.fa-comment-sms:before, .fa-sms:before {
  content: "\F7CD";
}

.fa-book:before {
  content: "\F02D";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-check:before {
  content: "\F00C";
}

.fa-battery-4:before, .fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-house-circle-check:before {
  content: "\E509";
}

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

.fa-diagram-successor:before {
  content: "\E47A";
}

.fa-truck-arrow-right:before {
  content: "\E58B";
}

.fa-arrows-split-up-and-left:before {
  content: "\E4BC";
}

.fa-fist-raised:before, .fa-hand-fist:before {
  content: "\F6DE";
}

.fa-cloud-moon:before {
  content: "\F6C3";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-person-falling:before {
  content: "\E546";
}

.fa-image-portrait:before, .fa-portrait:before {
  content: "\F3E0";
}

.fa-user-tag:before {
  content: "\F507";
}

.fa-rug:before {
  content: "\E569";
}

.fa-earth-europe:before, .fa-globe-europe:before {
  content: "\F7A2";
}

.fa-cart-flatbed-suitcase:before, .fa-luggage-cart:before {
  content: "\F59D";
}

.fa-rectangle-times:before, .fa-rectangle-xmark:before, .fa-times-rectangle:before, .fa-window-close:before {
  content: "\F410";
}

.fa-baht-sign:before {
  content: "\E0AC";
}

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

.fa-book-journal-whills:before, .fa-journal-whills:before {
  content: "\F66A";
}

.fa-handcuffs:before {
  content: "\E4F8";
}

.fa-exclamation-triangle:before, .fa-triangle-exclamation:before, .fa-warning:before {
  content: "\F071";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-arrow-turn-right:before, .fa-mail-forward:before, .fa-share:before {
  content: "\F064";
}

.fa-bottle-droplet:before {
  content: "\E4C4";
}

.fa-mask-face:before {
  content: "\E1D7";
}

.fa-hill-rockslide:before {
  content: "\E508";
}

.fa-exchange-alt:before, .fa-right-left:before {
  content: "\F362";
}

.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-road-circle-exclamation:before {
  content: "\E565";
}

.fa-dungeon:before {
  content: "\F6D9";
}

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

.fa-money-bill-1-wave:before, .fa-money-bill-wave-alt:before {
  content: "\F53B";
}

.fa-life-ring:before {
  content: "\F1CD";
}

.fa-hands:before, .fa-sign-language:before, .fa-signing:before {
  content: "\F2A7";
}

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

.fa-ladder-water:before, .fa-swimming-pool:before, .fa-water-ladder:before {
  content: "\F5C5";
}

.fa-arrows-up-down:before, .fa-arrows-v:before {
  content: "\F07D";
}

.fa-face-grimace:before, .fa-grimace:before {
  content: "\F57F";
}

.fa-wheelchair-alt:before, .fa-wheelchair-move:before {
  content: "\E2CE";
}

.fa-level-down-alt:before, .fa-turn-down:before {
  content: "\F3BE";
}

.fa-person-walking-arrow-right:before {
  content: "\E552";
}

.fa-envelope-square:before, .fa-square-envelope:before {
  content: "\F199";
}

.fa-dice:before {
  content: "\F522";
}

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

.fa-brain:before {
  content: "\F5DC";
}

.fa-band-aid:before, .fa-bandage:before {
  content: "\F462";
}

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

.fa-circle-xmark:before, .fa-times-circle:before, .fa-xmark-circle:before {
  content: "\F057";
}

.fa-gifts:before {
  content: "\F79C";
}

.fa-hotel:before {
  content: "\F594";
}

.fa-earth-asia:before, .fa-globe-asia:before {
  content: "\F57E";
}

.fa-id-card-alt:before, .fa-id-card-clip:before {
  content: "\F47F";
}

.fa-magnifying-glass-plus:before, .fa-search-plus:before {
  content: "\F00E";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-user-clock:before {
  content: "\F4FD";
}

.fa-allergies:before, .fa-hand-dots:before {
  content: "\F461";
}

.fa-file-invoice:before {
  content: "\F570";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-coffee:before, .fa-mug-saucer:before {
  content: "\F0F4";
}

.fa-brush:before {
  content: "\F55D";
}

.fa-mask:before {
  content: "\F6FA";
}

.fa-magnifying-glass-minus:before, .fa-search-minus:before {
  content: "\F010";
}

.fa-ruler-vertical:before {
  content: "\F548";
}

.fa-user-alt:before, .fa-user-large:before {
  content: "\F406";
}

.fa-train-tram:before {
  content: "\E5B4";
}

.fa-user-nurse:before {
  content: "\F82F";
}

.fa-syringe:before {
  content: "\F48E";
}

.fa-cloud-sun:before {
  content: "\F6C4";
}

.fa-stopwatch-20:before {
  content: "\E06F";
}

.fa-square-full:before {
  content: "\F45C";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-jar:before {
  content: "\E516";
}

.fa-note-sticky:before, .fa-sticky-note:before {
  content: "\F249";
}

.fa-bug-slash:before {
  content: "\E490";
}

.fa-arrow-up-from-water-pump:before {
  content: "\E4B6";
}

.fa-bone:before {
  content: "\F5D7";
}

.fa-user-injured:before {
  content: "\F728";
}

.fa-face-sad-tear:before, .fa-sad-tear:before {
  content: "\F5B4";
}

.fa-plane:before {
  content: "\F072";
}

.fa-tent-arrows-down:before {
  content: "\E581";
}

.fa-exclamation:before {
  content: "!";
}

.fa-arrows-spin:before {
  content: "\E4BB";
}

.fa-print:before {
  content: "\F02F";
}

.fa-try:before, .fa-turkish-lira-sign:before, .fa-turkish-lira:before {
  content: "\E2BB";
}

.fa-dollar-sign:before, .fa-dollar:before, .fa-usd:before {
  content: "$";
}

.fa-x:before {
  content: "X";
}

.fa-magnifying-glass-dollar:before, .fa-search-dollar:before {
  content: "\F688";
}

.fa-users-cog:before, .fa-users-gear:before {
  content: "\F509";
}

.fa-person-military-pointing:before {
  content: "\E54A";
}

.fa-bank:before, .fa-building-columns:before, .fa-institution:before, .fa-museum:before, .fa-university:before {
  content: "\F19C";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-trowel:before {
  content: "\E589";
}

.fa-d:before {
  content: "D";
}

.fa-stapler:before {
  content: "\E5AF";
}

.fa-masks-theater:before, .fa-theater-masks:before {
  content: "\F630";
}

.fa-kip-sign:before {
  content: "\E1C4";
}

.fa-hand-point-left:before {
  content: "\F0A5";
}

.fa-handshake-alt:before, .fa-handshake-simple:before {
  content: "\F4C6";
}

.fa-fighter-jet:before, .fa-jet-fighter:before {
  content: "\F0FB";
}

.fa-share-alt-square:before, .fa-square-share-nodes:before {
  content: "\F1E1";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-plus-minus:before {
  content: "\E43C";
}

.fa-video-camera:before, .fa-video:before {
  content: "\F03D";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
  content: "\F19D";
}

.fa-hand-holding-medical:before {
  content: "\E05C";
}

.fa-person-circle-check:before {
  content: "\E53E";
}

.fa-level-up-alt:before, .fa-turn-up:before {
  content: "\F3BF";
}

.fa-sr-only, .fa-sr-only-focusable:not(:focus), .sr-only, .sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:host, :root {
  --fa-style-family-brands:"Font Awesome 6 Brands";
  --fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../fonts/fontawesome-free/fa-brands-400.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-brands-400.ttf) format("truetype");
}
.fa-brands, .fab {
  font-weight: 400;
}

.fa-monero:before {
  content: "\F3D0";
}

.fa-hooli:before {
  content: "\F427";
}

.fa-yelp:before {
  content: "\F1E9";
}

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

.fa-lastfm:before {
  content: "\F202";
}

.fa-shopware:before {
  content: "\F5B5";
}

.fa-creative-commons-nc:before {
  content: "\F4E8";
}

.fa-aws:before {
  content: "\F375";
}

.fa-redhat:before {
  content: "\F7BC";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-cloudflare:before {
  content: "\E07D";
}

.fa-ups:before {
  content: "\F7E0";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-dyalog:before {
  content: "\F399";
}

.fa-bity:before {
  content: "\F37A";
}

.fa-stackpath:before {
  content: "\F842";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-modx:before {
  content: "\F285";
}

.fa-guilded:before {
  content: "\E07E";
}

.fa-vnv:before {
  content: "\F40B";
}

.fa-js-square:before, .fa-square-js:before {
  content: "\F3B9";
}

.fa-microsoft:before {
  content: "\F3CA";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-orcid:before {
  content: "\F8D2";
}

.fa-java:before {
  content: "\F4E4";
}

.fa-invision:before {
  content: "\F7B0";
}

.fa-creative-commons-pd-alt:before {
  content: "\F4ED";
}

.fa-centercode:before {
  content: "\F380";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-hire-a-helper:before {
  content: "\F3B0";
}

.fa-creative-commons-by:before {
  content: "\F4E7";
}

.fa-unity:before {
  content: "\E049";
}

.fa-whmcs:before {
  content: "\F40D";
}

.fa-rocketchat:before {
  content: "\F3E8";
}

.fa-vk:before {
  content: "\F189";
}

.fa-untappd:before {
  content: "\F405";
}

.fa-mailchimp:before {
  content: "\F59E";
}

.fa-css3-alt:before {
  content: "\F38B";
}

.fa-reddit-square:before, .fa-square-reddit:before {
  content: "\F1A2";
}

.fa-vimeo-v:before {
  content: "\F27D";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-square-font-awesome:before {
  content: "\E5AD";
}

.fa-deskpro:before {
  content: "\F38F";
}

.fa-sistrix:before {
  content: "\F3EE";
}

.fa-instagram-square:before, .fa-square-instagram:before {
  content: "\E055";
}

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

.fa-the-red-yeti:before {
  content: "\F69D";
}

.fa-hacker-news-square:before, .fa-square-hacker-news:before {
  content: "\F3AF";
}

.fa-edge:before {
  content: "\F282";
}

.fa-napster:before {
  content: "\F3D2";
}

.fa-snapchat-square:before, .fa-square-snapchat:before {
  content: "\F2AD";
}

.fa-google-plus-g:before {
  content: "\F0D5";
}

.fa-artstation:before {
  content: "\F77A";
}

.fa-markdown:before {
  content: "\F60F";
}

.fa-sourcetree:before {
  content: "\F7D3";
}

.fa-google-plus:before {
  content: "\F2B3";
}

.fa-diaspora:before {
  content: "\F791";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-phoenix-squadron:before {
  content: "\F511";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-algolia:before {
  content: "\F36C";
}

.fa-red-river:before {
  content: "\F3E3";
}

.fa-creative-commons-sa:before {
  content: "\F4EF";
}

.fa-safari:before {
  content: "\F267";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-font-awesome-alt:before, .fa-square-font-awesome-stroke:before {
  content: "\F35C";
}

.fa-atlassian:before {
  content: "\F77B";
}

.fa-linkedin-in:before {
  content: "\F0E1";
}

.fa-digital-ocean:before {
  content: "\F391";
}

.fa-nimblr:before {
  content: "\F5A8";
}

.fa-chromecast:before {
  content: "\F838";
}

.fa-evernote:before {
  content: "\F839";
}

.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-creative-commons-sampling:before {
  content: "\F4F0";
}

.fa-adversal:before {
  content: "\F36A";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-watchman-monitoring:before {
  content: "\E087";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-weixin:before {
  content: "\F1D7";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-git-alt:before {
  content: "\F841";
}

.fa-lyft:before {
  content: "\F3C3";
}

.fa-rev:before {
  content: "\F5B2";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-wizards-of-the-coast:before {
  content: "\F730";
}

.fa-square-viadeo:before, .fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-meetup:before {
  content: "\F2E0";
}

.fa-centos:before {
  content: "\F789";
}

.fa-adn:before {
  content: "\F170";
}

.fa-cloudsmith:before {
  content: "\F384";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-dribbble-square:before, .fa-square-dribbble:before {
  content: "\F397";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-node:before {
  content: "\F419";
}

.fa-mix:before {
  content: "\F3CB";
}

.fa-steam:before {
  content: "\F1B6";
}

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

.fa-scribd:before {
  content: "\F28A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-instalod:before {
  content: "\E081";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-sellcast:before {
  content: "\F2DA";
}

.fa-square-twitter:before, .fa-twitter-square:before {
  content: "\F081";
}

.fa-r-project:before {
  content: "\F4F7";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-freebsd:before {
  content: "\F3A4";
}

.fa-vuejs:before {
  content: "\F41F";
}

.fa-accusoft:before {
  content: "\F369";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-fonticons-fi:before {
  content: "\F3A2";
}

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

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

.fa-itunes-note:before {
  content: "\F3B5";
}

.fa-golang:before {
  content: "\E40F";
}

.fa-kickstarter:before {
  content: "\F3BB";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-uncharted:before {
  content: "\E084";
}

.fa-firstdraft:before {
  content: "\F3A1";
}

.fa-square-youtube:before, .fa-youtube-square:before {
  content: "\F431";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-rendact:before, .fa-wpressr:before {
  content: "\F3E4";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-galactic-republic:before {
  content: "\F50C";
}

.fa-nfc-directional:before {
  content: "\E530";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-joget:before {
  content: "\F3B7";
}

.fa-fedora:before {
  content: "\F798";
}

.fa-stripe-s:before {
  content: "\F42A";
}

.fa-meta:before {
  content: "\E49B";
}

.fa-laravel:before {
  content: "\F3BD";
}

.fa-hotjar:before {
  content: "\F3B1";
}

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

.fa-sticker-mule:before {
  content: "\F3F7";
}

.fa-creative-commons-zero:before {
  content: "\F4F3";
}

.fa-hips:before {
  content: "\F452";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-discord:before {
  content: "\F392";
}

.fa-chrome:before {
  content: "\F268";
}

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

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

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-confluence:before {
  content: "\F78D";
}

.fa-mdb:before {
  content: "\F8CA";
}

.fa-dochub:before {
  content: "\F394";
}

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

.fa-ebay:before {
  content: "\F4F4";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-unsplash:before {
  content: "\E07C";
}

.fa-yarn:before {
  content: "\F7E3";
}

.fa-square-steam:before, .fa-steam-square:before {
  content: "\F1B7";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-square-vimeo:before, .fa-vimeo-square:before {
  content: "\F194";
}

.fa-asymmetrik:before {
  content: "\F372";
}

.fa-font-awesome-flag:before, .fa-font-awesome-logo-full:before, .fa-font-awesome:before {
  content: "\F2B4";
}

.fa-gratipay:before {
  content: "\F184";
}

.fa-apple:before {
  content: "\F179";
}

.fa-hive:before {
  content: "\E07F";
}

.fa-gitkraken:before {
  content: "\F3A6";
}

.fa-keybase:before {
  content: "\F4F5";
}

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

.fa-padlet:before {
  content: "\E4A0";
}

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

.fa-github-square:before, .fa-square-github:before {
  content: "\F092";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-fedex:before {
  content: "\F797";
}

.fa-phoenix-framework:before {
  content: "\F3DC";
}

.fa-shopify:before {
  content: "\E057";
}

.fa-neos:before {
  content: "\F612";
}

.fa-hackerrank:before {
  content: "\F5F7";
}

.fa-researchgate:before {
  content: "\F4F8";
}

.fa-swift:before {
  content: "\F8E1";
}

.fa-angular:before {
  content: "\F420";
}

.fa-speakap:before {
  content: "\F3F3";
}

.fa-angrycreative:before {
  content: "\F36E";
}

.fa-y-combinator:before {
  content: "\F23B";
}

.fa-empire:before {
  content: "\F1D1";
}

.fa-envira:before {
  content: "\F299";
}

.fa-gitlab-square:before, .fa-square-gitlab:before {
  content: "\E5AE";
}

.fa-studiovinari:before {
  content: "\F3F8";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-goodreads:before {
  content: "\F3A8";
}

.fa-odnoklassniki-square:before, .fa-square-odnoklassniki:before {
  content: "\F264";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-sith:before {
  content: "\F512";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-page4:before {
  content: "\F3D7";
}

.fa-hashnode:before {
  content: "\E499";
}

.fa-react:before {
  content: "\F41B";
}

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

.fa-squarespace:before {
  content: "\F5BE";
}

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

.fa-creative-commons-share:before {
  content: "\F4F2";
}

.fa-bitcoin:before {
  content: "\F379";
}

.fa-keycdn:before {
  content: "\F3BA";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-itch-io:before {
  content: "\F83A";
}

.fa-umbraco:before {
  content: "\F8E8";
}

.fa-galactic-senate:before {
  content: "\F50D";
}

.fa-ubuntu:before {
  content: "\F7DF";
}

.fa-draft2digital:before {
  content: "\F396";
}

.fa-stripe:before {
  content: "\F429";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-gg:before {
  content: "\F260";
}

.fa-dhl:before {
  content: "\F790";
}

.fa-pinterest-square:before, .fa-square-pinterest:before {
  content: "\F0D3";
}

.fa-xing:before {
  content: "\F168";
}

.fa-blackberry:before {
  content: "\F37B";
}

.fa-creative-commons-pd:before {
  content: "\F4EC";
}

.fa-playstation:before {
  content: "\F3DF";
}

.fa-quinscape:before {
  content: "\F459";
}

.fa-less:before {
  content: "\F41D";
}

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

.fa-opencart:before {
  content: "\F23D";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-typo3:before {
  content: "\F42B";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-dailymotion:before {
  content: "\E052";
}

.fa-affiliatetheme:before {
  content: "\F36B";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-bootstrap:before {
  content: "\F836";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-nfc-symbol:before {
  content: "\E531";
}

.fa-ethereum:before {
  content: "\F42E";
}

.fa-speaker-deck:before {
  content: "\F83C";
}

.fa-creative-commons-nc-eu:before {
  content: "\F4E9";
}

.fa-patreon:before {
  content: "\F3D9";
}

.fa-avianex:before {
  content: "\F374";
}

.fa-ello:before {
  content: "\F5F1";
}

.fa-gofore:before {
  content: "\F3A7";
}

.fa-bimobject:before {
  content: "\F378";
}

.fa-facebook-f:before {
  content: "\F39E";
}

.fa-google-plus-square:before, .fa-square-google-plus:before {
  content: "\F0D4";
}

.fa-mandalorian:before {
  content: "\F50F";
}

.fa-first-order-alt:before {
  content: "\F50A";
}

.fa-osi:before {
  content: "\F41A";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-d-and-d-beyond:before {
  content: "\F6CA";
}

.fa-periscope:before {
  content: "\F3DA";
}

.fa-fulcrum:before {
  content: "\F50B";
}

.fa-cloudscale:before {
  content: "\F383";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-mizuni:before {
  content: "\F3CC";
}

.fa-schlix:before {
  content: "\F3EA";
}

.fa-square-xing:before, .fa-xing-square:before {
  content: "\F169";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-cloudversify:before {
  content: "\F385";
}

.fa-usps:before {
  content: "\F7E1";
}

.fa-megaport:before {
  content: "\F5A3";
}

.fa-magento:before {
  content: "\F3C4";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-fly:before {
  content: "\F417";
}

.fa-aviato:before {
  content: "\F421";
}

.fa-itunes:before {
  content: "\F3B4";
}

.fa-cuttlefish:before {
  content: "\F38C";
}

.fa-blogger:before {
  content: "\F37C";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-viber:before {
  content: "\F409";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-symfony:before {
  content: "\F83D";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-facebook-messenger:before {
  content: "\F39F";
}

.fa-audible:before {
  content: "\F373";
}

.fa-think-peaks:before {
  content: "\F731";
}

.fa-bilibili:before {
  content: "\E3D9";
}

.fa-erlang:before {
  content: "\F39D";
}

.fa-cotton-bureau:before {
  content: "\F89E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-42-group:before, .fa-innosoft:before {
  content: "\E080";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-elementor:before {
  content: "\F430";
}

.fa-pied-piper-square:before, .fa-square-pied-piper:before {
  content: "\E01E";
}

.fa-creative-commons-nd:before {
  content: "\F4EB";
}

.fa-palfed:before {
  content: "\F3D8";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-resolving:before {
  content: "\F3E7";
}

.fa-xbox:before {
  content: "\F412";
}

.fa-searchengin:before {
  content: "\F3EB";
}

.fa-tiktok:before {
  content: "\E07B";
}

.fa-facebook-square:before, .fa-square-facebook:before {
  content: "\F082";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-linkedin:before {
  content: "\F08C";
}

.fa-hubspot:before {
  content: "\F3B2";
}

.fa-deploydog:before {
  content: "\F38E";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-mixer:before {
  content: "\E056";
}

.fa-lastfm-square:before, .fa-square-lastfm:before {
  content: "\F203";
}

.fa-vimeo:before {
  content: "\F40A";
}

.fa-mendeley:before {
  content: "\F7B3";
}

.fa-uniregistry:before {
  content: "\F404";
}

.fa-figma:before {
  content: "\F799";
}

.fa-creative-commons-remix:before {
  content: "\F4EE";
}

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

.fa-dropbox:before {
  content: "\F16B";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-cmplid:before {
  content: "\E360";
}

.fa-facebook:before {
  content: "\F09A";
}

.fa-gripfire:before {
  content: "\F3AC";
}

.fa-jedi-order:before {
  content: "\F50E";
}

.fa-uikit:before {
  content: "\F403";
}

.fa-fort-awesome-alt:before {
  content: "\F3A3";
}

.fa-phabricator:before {
  content: "\F3DB";
}

.fa-ussunnah:before {
  content: "\F407";
}

.fa-earlybirds:before {
  content: "\F39A";
}

.fa-trade-federation:before {
  content: "\F513";
}

.fa-autoprefixer:before {
  content: "\F41C";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-google-play:before {
  content: "\F3AB";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-line:before {
  content: "\F3C0";
}

.fa-google-drive:before {
  content: "\F3AA";
}

.fa-servicestack:before {
  content: "\F3EC";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-deezer:before {
  content: "\E077";
}

.fa-raspberry-pi:before {
  content: "\F7BB";
}

.fa-jira:before {
  content: "\F7B1";
}

.fa-docker:before {
  content: "\F395";
}

.fa-screenpal:before {
  content: "\E570";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-gitter:before {
  content: "\F426";
}

.fa-d-and-d:before {
  content: "\F38D";
}

.fa-microblog:before {
  content: "\E01A";
}

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

.fa-gg-circle:before {
  content: "\F261";
}

.fa-pied-piper-hat:before {
  content: "\F4E5";
}

.fa-kickstarter-k:before {
  content: "\F3BC";
}

.fa-yandex:before {
  content: "\F413";
}

.fa-readme:before {
  content: "\F4D5";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-sass:before {
  content: "\F41E";
}

.fa-wirsindhandwerk:before, .fa-wsh:before {
  content: "\E2D0";
}

.fa-buromobelexperte:before {
  content: "\F37F";
}

.fa-salesforce:before {
  content: "\F83B";
}

.fa-octopus-deploy:before {
  content: "\E082";
}

.fa-medapps:before {
  content: "\F3C6";
}

.fa-ns8:before {
  content: "\F3D5";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-apper:before {
  content: "\F371";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-waze:before {
  content: "\F83F";
}

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

.fa-snapchat-ghost:before, .fa-snapchat:before {
  content: "\F2AB";
}

.fa-fantasy-flight-games:before {
  content: "\F6DC";
}

.fa-rust:before {
  content: "\E07A";
}

.fa-wix:before {
  content: "\F5CF";
}

.fa-behance-square:before, .fa-square-behance:before {
  content: "\F1B5";
}

.fa-supple:before {
  content: "\F3F9";
}

.fa-rebel:before {
  content: "\F1D0";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-staylinked:before {
  content: "\F3F5";
}

.fa-kaggle:before {
  content: "\F5FA";
}

.fa-space-awesome:before {
  content: "\E5AC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-cpanel:before {
  content: "\F388";
}

.fa-goodreads-g:before {
  content: "\F3A9";
}

.fa-git-square:before, .fa-square-git:before {
  content: "\F1D2";
}

.fa-square-tumblr:before, .fa-tumblr-square:before {
  content: "\F174";
}

.fa-trello:before {
  content: "\F181";
}

.fa-creative-commons-nc-jp:before {
  content: "\F4EA";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-perbyte:before {
  content: "\E083";
}

.fa-grunt:before {
  content: "\F3AD";
}

.fa-weebly:before {
  content: "\F5CC";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-leanpub:before {
  content: "\F212";
}

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

.fa-themeco:before {
  content: "\F5C6";
}

.fa-python:before {
  content: "\F3E2";
}

.fa-android:before {
  content: "\F17B";
}

.fa-bots:before {
  content: "\E340";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-hornbill:before {
  content: "\F592";
}

.fa-js:before {
  content: "\F3B8";
}

.fa-ideal:before {
  content: "\E013";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-dev:before {
  content: "\F6CC";
}

.fa-sketch:before {
  content: "\F7C6";
}

.fa-yandex-international:before {
  content: "\F414";
}

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

.fa-uber:before {
  content: "\F402";
}

.fa-github:before {
  content: "\F09B";
}

.fa-php:before {
  content: "\F457";
}

.fa-alipay:before {
  content: "\F642";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-firefox-browser:before {
  content: "\E007";
}

.fa-replyd:before {
  content: "\F3E6";
}

.fa-suse:before {
  content: "\F7D6";
}

.fa-jenkins:before {
  content: "\F3B6";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-rockrms:before {
  content: "\F3E9";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-buffer:before {
  content: "\F837";
}

.fa-npm:before {
  content: "\F3D4";
}

.fa-yammer:before {
  content: "\F840";
}

.fa-btc:before {
  content: "\F15A";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-stubber:before {
  content: "\E5C7";
}

.fa-telegram-plane:before, .fa-telegram:before {
  content: "\F2C6";
}

.fa-old-republic:before {
  content: "\F510";
}

.fa-odysee:before {
  content: "\E5C6";
}

.fa-square-whatsapp:before, .fa-whatsapp-square:before {
  content: "\F40C";
}

.fa-node-js:before {
  content: "\F3D3";
}

.fa-edge-legacy:before {
  content: "\E078";
}

.fa-slack-hash:before, .fa-slack:before {
  content: "\F198";
}

.fa-medrt:before {
  content: "\F3C8";
}

.fa-usb:before {
  content: "\F287";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-vaadin:before {
  content: "\F408";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-reacteurope:before {
  content: "\F75D";
}

.fa-medium-m:before, .fa-medium:before {
  content: "\F23A";
}

.fa-amilia:before {
  content: "\F36D";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-flipboard:before {
  content: "\F44D";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-critical-role:before {
  content: "\F6C9";
}

.fa-sitrox:before {
  content: "\E44A";
}

.fa-discourse:before {
  content: "\F393";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-mastodon:before {
  content: "\F4F6";
}

.fa-airbnb:before {
  content: "\F834";
}

.fa-wolf-pack-battalion:before {
  content: "\F514";
}

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

.fa-gulp:before {
  content: "\F3AE";
}

.fa-creative-commons-sampling-plus:before {
  content: "\F4F1";
}

.fa-strava:before {
  content: "\F428";
}

.fa-ember:before {
  content: "\F423";
}

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

.fa-teamspeak:before {
  content: "\F4F9";
}

.fa-pushed:before {
  content: "\F3E1";
}

.fa-wordpress-simple:before {
  content: "\F411";
}

.fa-nutritionix:before {
  content: "\F3D6";
}

.fa-wodu:before {
  content: "\E088";
}

.fa-google-pay:before {
  content: "\E079";
}

.fa-intercom:before {
  content: "\F7AF";
}

.fa-zhihu:before {
  content: "\F63F";
}

.fa-korvue:before {
  content: "\F42F";
}

.fa-pix:before {
  content: "\E43A";
}

.fa-steam-symbol:before {
  content: "\F3F6";
}

:host, :root {
  --fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../fonts/fontawesome-free/fa-regular-400.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-regular-400.ttf) format("truetype");
}
.fa-regular, .far {
  font-weight: 400;
}

:host, :root {
  --fa-style-family-classic:"Font Awesome 6 Free";
  --fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(../fonts/fontawesome-free/fa-solid-900.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-solid-900.ttf) format("truetype");
}
.fa-solid, .fas {
  font-weight: 900;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-display: block;
  font-weight: 400;
  src: url(../fonts/fontawesome-free/fa-brands-400.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-brands-400.ttf) format("truetype");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 900;
  src: url(../fonts/fontawesome-free/fa-solid-900.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-solid-900.ttf) format("truetype");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 400;
  src: url(../fonts/fontawesome-free/fa-regular-400.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-regular-400.ttf) format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url(../fonts/fontawesome-free/fa-solid-900.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-solid-900.ttf) format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url(../fonts/fontawesome-free/fa-brands-400.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-brands-400.ttf) format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url(../fonts/fontawesome-free/fa-regular-400.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-regular-400.ttf) format("truetype");
  unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc;
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url(../fonts/fontawesome-free/fa-v4compatibility.woff2) format("woff2"), url(../fonts/fontawesome-free/fa-v4compatibility.ttf) format("truetype");
  unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f27a;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
           * Remove all paddings around the image on small screen
           */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *	Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *	Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
          This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
          calculation of the height of the owl-item that breaks page layouts
       */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*
* Font Face
*/
@font-face {
  font-family: "simple-line-icons";
  src: url("../fonts/simple-line-icons/Simple-Line-Icons.eot?v=2.4.0");
  src: url("../fonts/simple-line-icons/Simple-Line-Icons.eot?v=2.4.0#iefix") format("embedded-opentype"), url("../fonts/simple-line-icons/Simple-Line-Icons.woff2?v=2.4.0") format("woff2"), url("../fonts/simple-line-icons/Simple-Line-Icons.ttf?v=2.4.0") format("truetype"), url("../fonts/simple-line-icons/Simple-Line-Icons.woff?v=2.4.0") format("woff"), url("../fonts/simple-line-icons/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
 Use the following code if you want to have a class per icon.
 Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector,
 but it's slower.
*/
.icon-user,
.icon-people,
.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-login,
.icon-logout,
.icon-emotsmile,
.icon-phone,
.icon-call-end,
.icon-call-in,
.icon-call-out,
.icon-map,
.icon-location-pin,
.icon-direction,
.icon-directions,
.icon-compass,
.icon-layers,
.icon-menu,
.icon-list,
.icon-options-vertical,
.icon-options,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-up-circle,
.icon-arrow-left-circle,
.icon-arrow-right-circle,
.icon-arrow-down-circle,
.icon-check,
.icon-clock,
.icon-plus,
.icon-minus,
.icon-close,
.icon-event,
.icon-exclamation,
.icon-organization,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-mustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-disc,
.icon-cursor,
.icon-cursor-move,
.icon-crop,
.icon-chemistry,
.icon-speedometer,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglass,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-folder-alt,
.icon-folder,
.icon-film,
.icon-feed,
.icon-drop,
.icon-drawer,
.icon-docs,
.icon-doc,
.icon-diamond,
.icon-cup,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-frame,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-loop,
.icon-home,
.icon-grid,
.icon-graph,
.icon-microphone,
.icon-music-tone-alt,
.icon-music-tone,
.icon-earphones-alt,
.icon-earphones,
.icon-equalizer,
.icon-like,
.icon-dislike,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-calendar,
.icon-bulb,
.icon-chart,
.icon-ban,
.icon-bubble,
.icon-camrecorder,
.icon-camera,
.icon-cloud-download,
.icon-cloud-upload,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symbol-female,
.icon-symbol-male,
.icon-target,
.icon-credit-card,
.icon-paypal,
.icon-social-tumblr,
.icon-social-twitter,
.icon-social-facebook,
.icon-social-instagram,
.icon-social-linkedin,
.icon-social-pinterest,
.icon-social-github,
.icon-social-google,
.icon-social-reddit,
.icon-social-skype,
.icon-social-dribbble,
.icon-social-behance,
.icon-social-foursqare,
.icon-social-soundcloud,
.icon-social-spotify,
.icon-social-stumbleupon,
.icon-social-youtube,
.icon-social-dropbox,
.icon-social-vkontakte,
.icon-social-steam {
  font-family: "simple-line-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-user:before {
  content: "\E005";
}

.icon-people:before {
  content: "\E001";
}

.icon-user-female:before {
  content: "\E000";
}

.icon-user-follow:before {
  content: "\E002";
}

.icon-user-following:before {
  content: "\E003";
}

.icon-user-unfollow:before {
  content: "\E004";
}

.icon-login:before {
  content: "\E066";
}

.icon-logout:before {
  content: "\E065";
}

.icon-emotsmile:before {
  content: "\E021";
}

.icon-phone:before {
  content: "\E600";
}

.icon-call-end:before {
  content: "\E048";
}

.icon-call-in:before {
  content: "\E047";
}

.icon-call-out:before {
  content: "\E046";
}

.icon-map:before {
  content: "\E033";
}

.icon-location-pin:before {
  content: "\E096";
}

.icon-direction:before {
  content: "\E042";
}

.icon-directions:before {
  content: "\E041";
}

.icon-compass:before {
  content: "\E045";
}

.icon-layers:before {
  content: "\E034";
}

.icon-menu:before {
  content: "\E601";
}

.icon-list:before {
  content: "\E067";
}

.icon-options-vertical:before {
  content: "\E602";
}

.icon-options:before {
  content: "\E603";
}

.icon-arrow-down:before {
  content: "\E604";
}

.icon-arrow-left:before {
  content: "\E605";
}

.icon-arrow-right:before {
  content: "\E606";
}

.icon-arrow-up:before {
  content: "\E607";
}

.icon-arrow-up-circle:before {
  content: "\E078";
}

.icon-arrow-left-circle:before {
  content: "\E07A";
}

.icon-arrow-right-circle:before {
  content: "\E079";
}

.icon-arrow-down-circle:before {
  content: "\E07B";
}

.icon-check:before {
  content: "\E080";
}

.icon-clock:before {
  content: "\E081";
}

.icon-plus:before {
  content: "\E095";
}

.icon-minus:before {
  content: "\E615";
}

.icon-close:before {
  content: "\E082";
}

.icon-event:before {
  content: "\E619";
}

.icon-exclamation:before {
  content: "\E617";
}

.icon-organization:before {
  content: "\E616";
}

.icon-trophy:before {
  content: "\E006";
}

.icon-screen-smartphone:before {
  content: "\E010";
}

.icon-screen-desktop:before {
  content: "\E011";
}

.icon-plane:before {
  content: "\E012";
}

.icon-notebook:before {
  content: "\E013";
}

.icon-mustache:before {
  content: "\E014";
}

.icon-mouse:before {
  content: "\E015";
}

.icon-magnet:before {
  content: "\E016";
}

.icon-energy:before {
  content: "\E020";
}

.icon-disc:before {
  content: "\E022";
}

.icon-cursor:before {
  content: "\E06E";
}

.icon-cursor-move:before {
  content: "\E023";
}

.icon-crop:before {
  content: "\E024";
}

.icon-chemistry:before {
  content: "\E026";
}

.icon-speedometer:before {
  content: "\E007";
}

.icon-shield:before {
  content: "\E00E";
}

.icon-screen-tablet:before {
  content: "\E00F";
}

.icon-magic-wand:before {
  content: "\E017";
}

.icon-hourglass:before {
  content: "\E018";
}

.icon-graduation:before {
  content: "\E019";
}

.icon-ghost:before {
  content: "\E01A";
}

.icon-game-controller:before {
  content: "\E01B";
}

.icon-fire:before {
  content: "\E01C";
}

.icon-eyeglass:before {
  content: "\E01D";
}

.icon-envelope-open:before {
  content: "\E01E";
}

.icon-envelope-letter:before {
  content: "\E01F";
}

.icon-bell:before {
  content: "\E027";
}

.icon-badge:before {
  content: "\E028";
}

.icon-anchor:before {
  content: "\E029";
}

.icon-wallet:before {
  content: "\E02A";
}

.icon-vector:before {
  content: "\E02B";
}

.icon-speech:before {
  content: "\E02C";
}

.icon-puzzle:before {
  content: "\E02D";
}

.icon-printer:before {
  content: "\E02E";
}

.icon-present:before {
  content: "\E02F";
}

.icon-playlist:before {
  content: "\E030";
}

.icon-pin:before {
  content: "\E031";
}

.icon-picture:before {
  content: "\E032";
}

.icon-handbag:before {
  content: "\E035";
}

.icon-globe-alt:before {
  content: "\E036";
}

.icon-globe:before {
  content: "\E037";
}

.icon-folder-alt:before {
  content: "\E039";
}

.icon-folder:before {
  content: "\E089";
}

.icon-film:before {
  content: "\E03A";
}

.icon-feed:before {
  content: "\E03B";
}

.icon-drop:before {
  content: "\E03E";
}

.icon-drawer:before {
  content: "\E03F";
}

.icon-docs:before {
  content: "\E040";
}

.icon-doc:before {
  content: "\E085";
}

.icon-diamond:before {
  content: "\E043";
}

.icon-cup:before {
  content: "\E044";
}

.icon-calculator:before {
  content: "\E049";
}

.icon-bubbles:before {
  content: "\E04A";
}

.icon-briefcase:before {
  content: "\E04B";
}

.icon-book-open:before {
  content: "\E04C";
}

.icon-basket-loaded:before {
  content: "\E04D";
}

.icon-basket:before {
  content: "\E04E";
}

.icon-bag:before {
  content: "\E04F";
}

.icon-action-undo:before {
  content: "\E050";
}

.icon-action-redo:before {
  content: "\E051";
}

.icon-wrench:before {
  content: "\E052";
}

.icon-umbrella:before {
  content: "\E053";
}

.icon-trash:before {
  content: "\E054";
}

.icon-tag:before {
  content: "\E055";
}

.icon-support:before {
  content: "\E056";
}

.icon-frame:before {
  content: "\E038";
}

.icon-size-fullscreen:before {
  content: "\E057";
}

.icon-size-actual:before {
  content: "\E058";
}

.icon-shuffle:before {
  content: "\E059";
}

.icon-share-alt:before {
  content: "\E05A";
}

.icon-share:before {
  content: "\E05B";
}

.icon-rocket:before {
  content: "\E05C";
}

.icon-question:before {
  content: "\E05D";
}

.icon-pie-chart:before {
  content: "\E05E";
}

.icon-pencil:before {
  content: "\E05F";
}

.icon-note:before {
  content: "\E060";
}

.icon-loop:before {
  content: "\E064";
}

.icon-home:before {
  content: "\E069";
}

.icon-grid:before {
  content: "\E06A";
}

.icon-graph:before {
  content: "\E06B";
}

.icon-microphone:before {
  content: "\E063";
}

.icon-music-tone-alt:before {
  content: "\E061";
}

.icon-music-tone:before {
  content: "\E062";
}

.icon-earphones-alt:before {
  content: "\E03C";
}

.icon-earphones:before {
  content: "\E03D";
}

.icon-equalizer:before {
  content: "\E06C";
}

.icon-like:before {
  content: "\E068";
}

.icon-dislike:before {
  content: "\E06D";
}

.icon-control-start:before {
  content: "\E06F";
}

.icon-control-rewind:before {
  content: "\E070";
}

.icon-control-play:before {
  content: "\E071";
}

.icon-control-pause:before {
  content: "\E072";
}

.icon-control-forward:before {
  content: "\E073";
}

.icon-control-end:before {
  content: "\E074";
}

.icon-volume-1:before {
  content: "\E09F";
}

.icon-volume-2:before {
  content: "\E0A0";
}

.icon-volume-off:before {
  content: "\E0A1";
}

.icon-calendar:before {
  content: "\E075";
}

.icon-bulb:before {
  content: "\E076";
}

.icon-chart:before {
  content: "\E077";
}

.icon-ban:before {
  content: "\E07C";
}

.icon-bubble:before {
  content: "\E07D";
}

.icon-camrecorder:before {
  content: "\E07E";
}

.icon-camera:before {
  content: "\E07F";
}

.icon-cloud-download:before {
  content: "\E083";
}

.icon-cloud-upload:before {
  content: "\E084";
}

.icon-envelope:before {
  content: "\E086";
}

.icon-eye:before {
  content: "\E087";
}

.icon-flag:before {
  content: "\E088";
}

.icon-heart:before {
  content: "\E08A";
}

.icon-info:before {
  content: "\E08B";
}

.icon-key:before {
  content: "\E08C";
}

.icon-link:before {
  content: "\E08D";
}

.icon-lock:before {
  content: "\E08E";
}

.icon-lock-open:before {
  content: "\E08F";
}

.icon-magnifier:before {
  content: "\E090";
}

.icon-magnifier-add:before {
  content: "\E091";
}

.icon-magnifier-remove:before {
  content: "\E092";
}

.icon-paper-clip:before {
  content: "\E093";
}

.icon-paper-plane:before {
  content: "\E094";
}

.icon-power:before {
  content: "\E097";
}

.icon-refresh:before {
  content: "\E098";
}

.icon-reload:before {
  content: "\E099";
}

.icon-settings:before {
  content: "\E09A";
}

.icon-star:before {
  content: "\E09B";
}

.icon-symbol-female:before {
  content: "\E09C";
}

.icon-symbol-male:before {
  content: "\E09D";
}

.icon-target:before {
  content: "\E09E";
}

.icon-credit-card:before {
  content: "\E025";
}

.icon-paypal:before {
  content: "\E608";
}

.icon-social-tumblr:before {
  content: "\E00A";
}

.icon-social-twitter:before {
  content: "\E009";
}

.icon-social-facebook:before {
  content: "\E00B";
}

.icon-social-instagram:before {
  content: "\E609";
}

.icon-social-linkedin:before {
  content: "\E60A";
}

.icon-social-pinterest:before {
  content: "\E60B";
}

.icon-social-github:before {
  content: "\E60C";
}

.icon-social-google:before {
  content: "\E60D";
}

.icon-social-reddit:before {
  content: "\E60E";
}

.icon-social-skype:before {
  content: "\E60F";
}

.icon-social-dribbble:before {
  content: "\E00D";
}

.icon-social-behance:before {
  content: "\E610";
}

.icon-social-foursqare:before {
  content: "\E611";
}

.icon-social-soundcloud:before {
  content: "\E612";
}

.icon-social-spotify:before {
  content: "\E613";
}

.icon-social-stumbleupon:before {
  content: "\E614";
}

.icon-social-youtube:before {
  content: "\E008";
}

.icon-social-dropbox:before {
  content: "\E00C";
}

.icon-social-vkontakte:before {
  content: "\E618";
}

.icon-social-steam:before {
  content: "\E620";
}