@charset "UTF-8";/*!
 * 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;
}.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}.animate__animated.animate__repeat-2 {
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}.animate__animated.animate__repeat-3 {
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}.animate__animated.animate__delay-2s {
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}.animate__animated.animate__delay-3s {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}.animate__animated.animate__delay-4s {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}.animate__animated.animate__delay-5s {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}.animate__animated.animate__faster {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}.animate__animated.animate__fast {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}.animate__animated.animate__slow {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}.animate__animated.animate__slower {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}/* Attention seekers  */@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 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: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}.animate__flash {
  animation-name: flash;
}/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
  }
}.animate__rubberBand {
  animation-name: rubberBand;
}@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

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

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}.animate__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);
  }
}.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}.animate__tada {
  animation-name: tada;
}/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}.animate__wobble {
  animation-name: wobble;
}@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 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);
  }
}.animate__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);
  }
}.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}/* Back entrances */@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}.animate__backInUp {
  animation-name: backInUp;
}/* Back exits */@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}.animate__backOutDown {
  animation-name: backOutDown;
}@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}.animate__backOutUp {
  animation-name: backOutUp;
}/* Bouncing entrances  */@keyframes bounceIn {
  from,
  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: scale3d(1, 1, 1);
  }
}.animate__bounceIn {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}@keyframes bounceInDown {
  from,
  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: translate3d(0, 0, 0);
  }
}.animate__bounceInDown {
  animation-name: bounceInDown;
}@keyframes bounceInLeft {
  from,
  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: translate3d(0, 0, 0);
  }
}.animate__bounceInLeft {
  animation-name: bounceInLeft;
}@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    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: translate3d(0, 0, 0);
  }
}.animate__bounceInRight {
  animation-name: bounceInRight;
}@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    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: translate3d(0, 0, 0);
  }
}.animate__bounceInUp {
  animation-name: bounceInUp;
}/* Bouncing exits  */@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);
  }
}.animate__bounceOut {
  animation-duration: calc(1s * 0.75);
  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);
  }
}.animate__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);
  }
}.animate__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);
  }
}.animate__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);
  }
}.animate__bounceOutUp {
  animation-name: bounceOutUp;
}/* Fading entrances  */@keyframes fadeIn {
  from {
    opacity: 0;
  }

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}/* Fading exits */@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}.animate__fadeOut {
  animation-name: fadeOut;
}@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}/* Flippers */@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

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

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}/* Rotating entrances */@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}/* Rotating exits */@keyframes rotateOut {
  from {
    opacity: 1;
  }

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

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

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

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

  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}/* Specials */@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}.animate__hinge {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}@keyframes jackInTheBox {
  from {
    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);
  }
}.animate__jackInTheBox {
  animation-name: jackInTheBox;
}/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}.animate__rollOut {
  animation-name: rollOut;
}/* Zooming entrances */@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}.animate__zoomIn {
  animation-name: zoomIn;
}@keyframes zoomInDown {
  from {
    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);
  }
}.animate__zoomInDown {
  animation-name: zoomInDown;
}@keyframes zoomInLeft {
  from {
    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);
  }
}.animate__zoomInLeft {
  animation-name: zoomInLeft;
}@keyframes zoomInRight {
  from {
    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);
  }
}.animate__zoomInRight {
  animation-name: zoomInRight;
}@keyframes zoomInUp {
  from {
    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);
  }
}.animate__zoomInUp {
  animation-name: zoomInUp;
}/* Zooming exits */@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}.animate__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);
  }
}.animate__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);
  }
}.animate__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);
  }
}.animate__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);
  }
}.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}/* Sliding entrances */@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}.animate__slideInUp {
  animation-name: slideInUp;
}/* Sliding exits */@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

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

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

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

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}.animate__slideOutUp {
  animation-name: slideOutUp;
}@font-face {
  font-family: "Phosphor-Light";
  src:
    url("/fonts/Phosphor-Light.woff2") format("woff2"),
    url("/fonts/Phosphor-Light.woff") format("woff"),
    url("/fonts/Phosphor-Light.ttf") format("truetype"),
    url("/fonts/Phosphor-Light.svg#Phosphor-Light") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}.ph-light {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor-Light" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}.ph-light.ph-acorn:before {
  content: "\eb9a";
}.ph-light.ph-address-book:before {
  content: "\e6f8";
}.ph-light.ph-address-book-tabs:before {
  content: "\ee4e";
}.ph-light.ph-air-traffic-control:before {
  content: "\ecd8";
}.ph-light.ph-airplane:before {
  content: "\e002";
}.ph-light.ph-airplane-in-flight:before {
  content: "\e4fe";
}.ph-light.ph-airplane-landing:before {
  content: "\e502";
}.ph-light.ph-airplane-takeoff:before {
  content: "\e504";
}.ph-light.ph-airplane-taxiing:before {
  content: "\e500";
}.ph-light.ph-airplane-tilt:before {
  content: "\e5d6";
}.ph-light.ph-airplay:before {
  content: "\e004";
}.ph-light.ph-alarm:before {
  content: "\e006";
}.ph-light.ph-alien:before {
  content: "\e8a6";
}.ph-light.ph-align-bottom:before {
  content: "\e506";
}.ph-light.ph-align-bottom-simple:before {
  content: "\eb0c";
}.ph-light.ph-align-center-horizontal:before {
  content: "\e50a";
}.ph-light.ph-align-center-horizontal-simple:before {
  content: "\eb0e";
}.ph-light.ph-align-center-vertical:before {
  content: "\e50c";
}.ph-light.ph-align-center-vertical-simple:before {
  content: "\eb10";
}.ph-light.ph-align-left:before {
  content: "\e50e";
}.ph-light.ph-align-left-simple:before {
  content: "\eaee";
}.ph-light.ph-align-right:before {
  content: "\e510";
}.ph-light.ph-align-right-simple:before {
  content: "\eb12";
}.ph-light.ph-align-top:before {
  content: "\e512";
}.ph-light.ph-align-top-simple:before {
  content: "\eb14";
}.ph-light.ph-amazon-logo:before {
  content: "\e96c";
}.ph-light.ph-ambulance:before {
  content: "\e572";
}.ph-light.ph-anchor:before {
  content: "\e514";
}.ph-light.ph-anchor-simple:before {
  content: "\e5d8";
}.ph-light.ph-android-logo:before {
  content: "\e008";
}.ph-light.ph-angle:before {
  content: "\e7bc";
}.ph-light.ph-angular-logo:before {
  content: "\eb80";
}.ph-light.ph-aperture:before {
  content: "\e00a";
}.ph-light.ph-app-store-logo:before {
  content: "\e974";
}.ph-light.ph-app-window:before {
  content: "\e5da";
}.ph-light.ph-apple-logo:before {
  content: "\e516";
}.ph-light.ph-apple-podcasts-logo:before {
  content: "\eb96";
}.ph-light.ph-approximate-equals:before {
  content: "\edaa";
}.ph-light.ph-archive:before {
  content: "\e00c";
}.ph-light.ph-armchair:before {
  content: "\e012";
}.ph-light.ph-arrow-arc-left:before {
  content: "\e014";
}.ph-light.ph-arrow-arc-right:before {
  content: "\e016";
}.ph-light.ph-arrow-bend-double-up-left:before {
  content: "\e03a";
}.ph-light.ph-arrow-bend-double-up-right:before {
  content: "\e03c";
}.ph-light.ph-arrow-bend-down-left:before {
  content: "\e018";
}.ph-light.ph-arrow-bend-down-right:before {
  content: "\e01a";
}.ph-light.ph-arrow-bend-left-down:before {
  content: "\e01c";
}.ph-light.ph-arrow-bend-left-up:before {
  content: "\e01e";
}.ph-light.ph-arrow-bend-right-down:before {
  content: "\e020";
}.ph-light.ph-arrow-bend-right-up:before {
  content: "\e022";
}.ph-light.ph-arrow-bend-up-left:before {
  content: "\e024";
}.ph-light.ph-arrow-bend-up-right:before {
  content: "\e026";
}.ph-light.ph-arrow-circle-down:before {
  content: "\e028";
}.ph-light.ph-arrow-circle-down-left:before {
  content: "\e02a";
}.ph-light.ph-arrow-circle-down-right:before {
  content: "\e02c";
}.ph-light.ph-arrow-circle-left:before {
  content: "\e05a";
}.ph-light.ph-arrow-circle-right:before {
  content: "\e02e";
}.ph-light.ph-arrow-circle-up:before {
  content: "\e030";
}.ph-light.ph-arrow-circle-up-left:before {
  content: "\e032";
}.ph-light.ph-arrow-circle-up-right:before {
  content: "\e034";
}.ph-light.ph-arrow-clockwise:before {
  content: "\e036";
}.ph-light.ph-arrow-counter-clockwise:before {
  content: "\e038";
}.ph-light.ph-arrow-down:before {
  content: "\e03e";
}.ph-light.ph-arrow-down-left:before {
  content: "\e040";
}.ph-light.ph-arrow-down-right:before {
  content: "\e042";
}.ph-light.ph-arrow-elbow-down-left:before {
  content: "\e044";
}.ph-light.ph-arrow-elbow-down-right:before {
  content: "\e046";
}.ph-light.ph-arrow-elbow-left:before {
  content: "\e048";
}.ph-light.ph-arrow-elbow-left-down:before {
  content: "\e04a";
}.ph-light.ph-arrow-elbow-left-up:before {
  content: "\e04c";
}.ph-light.ph-arrow-elbow-right:before {
  content: "\e04e";
}.ph-light.ph-arrow-elbow-right-down:before {
  content: "\e050";
}.ph-light.ph-arrow-elbow-right-up:before {
  content: "\e052";
}.ph-light.ph-arrow-elbow-up-left:before {
  content: "\e054";
}.ph-light.ph-arrow-elbow-up-right:before {
  content: "\e056";
}.ph-light.ph-arrow-fat-down:before {
  content: "\e518";
}.ph-light.ph-arrow-fat-left:before {
  content: "\e51a";
}.ph-light.ph-arrow-fat-line-down:before {
  content: "\e51c";
}.ph-light.ph-arrow-fat-line-left:before {
  content: "\e51e";
}.ph-light.ph-arrow-fat-line-right:before {
  content: "\e520";
}.ph-light.ph-arrow-fat-line-up:before {
  content: "\e522";
}.ph-light.ph-arrow-fat-lines-down:before {
  content: "\e524";
}.ph-light.ph-arrow-fat-lines-left:before {
  content: "\e526";
}.ph-light.ph-arrow-fat-lines-right:before {
  content: "\e528";
}.ph-light.ph-arrow-fat-lines-up:before {
  content: "\e52a";
}.ph-light.ph-arrow-fat-right:before {
  content: "\e52c";
}.ph-light.ph-arrow-fat-up:before {
  content: "\e52e";
}.ph-light.ph-arrow-left:before {
  content: "\e058";
}.ph-light.ph-arrow-line-down:before {
  content: "\e05c";
}.ph-light.ph-arrow-line-down-left:before {
  content: "\e05e";
}.ph-light.ph-arrow-line-down-right:before {
  content: "\e060";
}.ph-light.ph-arrow-line-left:before {
  content: "\e062";
}.ph-light.ph-arrow-line-right:before {
  content: "\e064";
}.ph-light.ph-arrow-line-up:before {
  content: "\e066";
}.ph-light.ph-arrow-line-up-left:before {
  content: "\e068";
}.ph-light.ph-arrow-line-up-right:before {
  content: "\e06a";
}.ph-light.ph-arrow-right:before {
  content: "\e06c";
}.ph-light.ph-arrow-square-down:before {
  content: "\e06e";
}.ph-light.ph-arrow-square-down-left:before {
  content: "\e070";
}.ph-light.ph-arrow-square-down-right:before {
  content: "\e072";
}.ph-light.ph-arrow-square-in:before {
  content: "\e5dc";
}.ph-light.ph-arrow-square-left:before {
  content: "\e074";
}.ph-light.ph-arrow-square-out:before {
  content: "\e5de";
}.ph-light.ph-arrow-square-right:before {
  content: "\e076";
}.ph-light.ph-arrow-square-up:before {
  content: "\e078";
}.ph-light.ph-arrow-square-up-left:before {
  content: "\e07a";
}.ph-light.ph-arrow-square-up-right:before {
  content: "\e07c";
}.ph-light.ph-arrow-u-down-left:before {
  content: "\e07e";
}.ph-light.ph-arrow-u-down-right:before {
  content: "\e080";
}.ph-light.ph-arrow-u-left-down:before {
  content: "\e082";
}.ph-light.ph-arrow-u-left-up:before {
  content: "\e084";
}.ph-light.ph-arrow-u-right-down:before {
  content: "\e086";
}.ph-light.ph-arrow-u-right-up:before {
  content: "\e088";
}.ph-light.ph-arrow-u-up-left:before {
  content: "\e08a";
}.ph-light.ph-arrow-u-up-right:before {
  content: "\e08c";
}.ph-light.ph-arrow-up:before {
  content: "\e08e";
}.ph-light.ph-arrow-up-left:before {
  content: "\e090";
}.ph-light.ph-arrow-up-right:before {
  content: "\e092";
}.ph-light.ph-arrows-clockwise:before {
  content: "\e094";
}.ph-light.ph-arrows-counter-clockwise:before {
  content: "\e096";
}.ph-light.ph-arrows-down-up:before {
  content: "\e098";
}.ph-light.ph-arrows-horizontal:before {
  content: "\eb06";
}.ph-light.ph-arrows-in:before {
  content: "\e09a";
}.ph-light.ph-arrows-in-cardinal:before {
  content: "\e09c";
}.ph-light.ph-arrows-in-line-horizontal:before {
  content: "\e530";
}.ph-light.ph-arrows-in-line-vertical:before {
  content: "\e532";
}.ph-light.ph-arrows-in-simple:before {
  content: "\e09e";
}.ph-light.ph-arrows-left-right:before {
  content: "\e0a0";
}.ph-light.ph-arrows-merge:before {
  content: "\ed3e";
}.ph-light.ph-arrows-out:before {
  content: "\e0a2";
}.ph-light.ph-arrows-out-cardinal:before {
  content: "\e0a4";
}.ph-light.ph-arrows-out-line-horizontal:before {
  content: "\e534";
}.ph-light.ph-arrows-out-line-vertical:before {
  content: "\e536";
}.ph-light.ph-arrows-out-simple:before {
  content: "\e0a6";
}.ph-light.ph-arrows-split:before {
  content: "\ed3c";
}.ph-light.ph-arrows-vertical:before {
  content: "\eb04";
}.ph-light.ph-article:before {
  content: "\e0a8";
}.ph-light.ph-article-medium:before {
  content: "\e5e0";
}.ph-light.ph-article-ny-times:before {
  content: "\e5e2";
}.ph-light.ph-asclepius:before {
  content: "\ee34";
}.ph-light.ph-caduceus:before {
  content: "\ee34";
}.ph-light.ph-asterisk:before {
  content: "\e0aa";
}.ph-light.ph-asterisk-simple:before {
  content: "\e832";
}.ph-light.ph-at:before {
  content: "\e0ac";
}.ph-light.ph-atom:before {
  content: "\e5e4";
}.ph-light.ph-avocado:before {
  content: "\ee04";
}.ph-light.ph-axe:before {
  content: "\e9fc";
}.ph-light.ph-baby:before {
  content: "\e774";
}.ph-light.ph-baby-carriage:before {
  content: "\e818";
}.ph-light.ph-backpack:before {
  content: "\e922";
}.ph-light.ph-backspace:before {
  content: "\e0ae";
}.ph-light.ph-bag:before {
  content: "\e0b0";
}.ph-light.ph-bag-simple:before {
  content: "\e5e6";
}.ph-light.ph-balloon:before {
  content: "\e76c";
}.ph-light.ph-bandaids:before {
  content: "\e0b2";
}.ph-light.ph-bank:before {
  content: "\e0b4";
}.ph-light.ph-barbell:before {
  content: "\e0b6";
}.ph-light.ph-barcode:before {
  content: "\e0b8";
}.ph-light.ph-barn:before {
  content: "\ec72";
}.ph-light.ph-barricade:before {
  content: "\e948";
}.ph-light.ph-baseball:before {
  content: "\e71a";
}.ph-light.ph-baseball-cap:before {
  content: "\ea28";
}.ph-light.ph-baseball-helmet:before {
  content: "\ee4a";
}.ph-light.ph-basket:before {
  content: "\e964";
}.ph-light.ph-basketball:before {
  content: "\e724";
}.ph-light.ph-bathtub:before {
  content: "\e81e";
}.ph-light.ph-battery-charging:before {
  content: "\e0ba";
}.ph-light.ph-battery-charging-vertical:before {
  content: "\e0bc";
}.ph-light.ph-battery-empty:before {
  content: "\e0be";
}.ph-light.ph-battery-full:before {
  content: "\e0c0";
}.ph-light.ph-battery-high:before {
  content: "\e0c2";
}.ph-light.ph-battery-low:before {
  content: "\e0c4";
}.ph-light.ph-battery-medium:before {
  content: "\e0c6";
}.ph-light.ph-battery-plus:before {
  content: "\e808";
}.ph-light.ph-battery-plus-vertical:before {
  content: "\ec50";
}.ph-light.ph-battery-vertical-empty:before {
  content: "\e7c6";
}.ph-light.ph-battery-vertical-full:before {
  content: "\e7c4";
}.ph-light.ph-battery-vertical-high:before {
  content: "\e7c2";
}.ph-light.ph-battery-vertical-low:before {
  content: "\e7be";
}.ph-light.ph-battery-vertical-medium:before {
  content: "\e7c0";
}.ph-light.ph-battery-warning:before {
  content: "\e0c8";
}.ph-light.ph-battery-warning-vertical:before {
  content: "\e0ca";
}.ph-light.ph-beach-ball:before {
  content: "\ed24";
}.ph-light.ph-beanie:before {
  content: "\ea2a";
}.ph-light.ph-bed:before {
  content: "\e0cc";
}.ph-light.ph-beer-bottle:before {
  content: "\e7b0";
}.ph-light.ph-beer-stein:before {
  content: "\eb62";
}.ph-light.ph-behance-logo:before {
  content: "\e7f4";
}.ph-light.ph-bell:before {
  content: "\e0ce";
}.ph-light.ph-bell-ringing:before {
  content: "\e5e8";
}.ph-light.ph-bell-simple:before {
  content: "\e0d0";
}.ph-light.ph-bell-simple-ringing:before {
  content: "\e5ea";
}.ph-light.ph-bell-simple-slash:before {
  content: "\e0d2";
}.ph-light.ph-bell-simple-z:before {
  content: "\e5ec";
}.ph-light.ph-bell-slash:before {
  content: "\e0d4";
}.ph-light.ph-bell-z:before {
  content: "\e5ee";
}.ph-light.ph-belt:before {
  content: "\ea2c";
}.ph-light.ph-bezier-curve:before {
  content: "\eb00";
}.ph-light.ph-bicycle:before {
  content: "\e0d6";
}.ph-light.ph-binary:before {
  content: "\ee60";
}.ph-light.ph-binoculars:before {
  content: "\ea64";
}.ph-light.ph-biohazard:before {
  content: "\e9e0";
}.ph-light.ph-bird:before {
  content: "\e72c";
}.ph-light.ph-blueprint:before {
  content: "\eda0";
}.ph-light.ph-bluetooth:before {
  content: "\e0da";
}.ph-light.ph-bluetooth-connected:before {
  content: "\e0dc";
}.ph-light.ph-bluetooth-slash:before {
  content: "\e0de";
}.ph-light.ph-bluetooth-x:before {
  content: "\e0e0";
}.ph-light.ph-boat:before {
  content: "\e786";
}.ph-light.ph-bomb:before {
  content: "\ee0a";
}.ph-light.ph-bone:before {
  content: "\e7f2";
}.ph-light.ph-book:before {
  content: "\e0e2";
}.ph-light.ph-book-bookmark:before {
  content: "\e0e4";
}.ph-light.ph-book-open:before {
  content: "\e0e6";
}.ph-light.ph-book-open-text:before {
  content: "\e8f2";
}.ph-light.ph-book-open-user:before {
  content: "\ede0";
}.ph-light.ph-bookmark:before {
  content: "\e0e8";
}.ph-light.ph-bookmark-simple:before {
  content: "\e0ea";
}.ph-light.ph-bookmarks:before {
  content: "\e0ec";
}.ph-light.ph-bookmarks-simple:before {
  content: "\e5f0";
}.ph-light.ph-books:before {
  content: "\e758";
}.ph-light.ph-boot:before {
  content: "\ecca";
}.ph-light.ph-boules:before {
  content: "\e722";
}.ph-light.ph-bounding-box:before {
  content: "\e6ce";
}.ph-light.ph-bowl-food:before {
  content: "\eaa4";
}.ph-light.ph-bowl-steam:before {
  content: "\e8e4";
}.ph-light.ph-bowling-ball:before {
  content: "\ea34";
}.ph-light.ph-box-arrow-down:before {
  content: "\e00e";
}.ph-light.ph-archive-box:before {
  content: "\e00e";
}.ph-light.ph-box-arrow-up:before {
  content: "\ee54";
}.ph-light.ph-boxing-glove:before {
  content: "\ea36";
}.ph-light.ph-brackets-angle:before {
  content: "\e862";
}.ph-light.ph-brackets-curly:before {
  content: "\e860";
}.ph-light.ph-brackets-round:before {
  content: "\e864";
}.ph-light.ph-brackets-square:before {
  content: "\e85e";
}.ph-light.ph-brain:before {
  content: "\e74e";
}.ph-light.ph-brandy:before {
  content: "\e6b4";
}.ph-light.ph-bread:before {
  content: "\e81c";
}.ph-light.ph-bridge:before {
  content: "\ea68";
}.ph-light.ph-briefcase:before {
  content: "\e0ee";
}.ph-light.ph-briefcase-metal:before {
  content: "\e5f2";
}.ph-light.ph-broadcast:before {
  content: "\e0f2";
}.ph-light.ph-broom:before {
  content: "\ec54";
}.ph-light.ph-browser:before {
  content: "\e0f4";
}.ph-light.ph-browsers:before {
  content: "\e0f6";
}.ph-light.ph-bug:before {
  content: "\e5f4";
}.ph-light.ph-bug-beetle:before {
  content: "\e5f6";
}.ph-light.ph-bug-droid:before {
  content: "\e5f8";
}.ph-light.ph-building:before {
  content: "\e100";
}.ph-light.ph-building-apartment:before {
  content: "\e0fe";
}.ph-light.ph-building-office:before {
  content: "\e0ff";
}.ph-light.ph-buildings:before {
  content: "\e102";
}.ph-light.ph-bulldozer:before {
  content: "\ec6c";
}.ph-light.ph-bus:before {
  content: "\e106";
}.ph-light.ph-butterfly:before {
  content: "\ea6e";
}.ph-light.ph-cable-car:before {
  content: "\e49c";
}.ph-light.ph-cactus:before {
  content: "\e918";
}.ph-light.ph-cake:before {
  content: "\e780";
}.ph-light.ph-calculator:before {
  content: "\e538";
}.ph-light.ph-calendar:before {
  content: "\e108";
}.ph-light.ph-calendar-blank:before {
  content: "\e10a";
}.ph-light.ph-calendar-check:before {
  content: "\e712";
}.ph-light.ph-calendar-dot:before {
  content: "\e7b2";
}.ph-light.ph-calendar-dots:before {
  content: "\e7b4";
}.ph-light.ph-calendar-heart:before {
  content: "\e8b0";
}.ph-light.ph-calendar-minus:before {
  content: "\ea14";
}.ph-light.ph-calendar-plus:before {
  content: "\e714";
}.ph-light.ph-calendar-slash:before {
  content: "\ea12";
}.ph-light.ph-calendar-star:before {
  content: "\e8b2";
}.ph-light.ph-calendar-x:before {
  content: "\e10c";
}.ph-light.ph-call-bell:before {
  content: "\e7de";
}.ph-light.ph-camera:before {
  content: "\e10e";
}.ph-light.ph-camera-plus:before {
  content: "\ec58";
}.ph-light.ph-camera-rotate:before {
  content: "\e7a4";
}.ph-light.ph-camera-slash:before {
  content: "\e110";
}.ph-light.ph-campfire:before {
  content: "\e9d8";
}.ph-light.ph-car:before {
  content: "\e112";
}.ph-light.ph-car-battery:before {
  content: "\ee30";
}.ph-light.ph-car-profile:before {
  content: "\e8cc";
}.ph-light.ph-car-simple:before {
  content: "\e114";
}.ph-light.ph-cardholder:before {
  content: "\e5fa";
}.ph-light.ph-cards:before {
  content: "\e0f8";
}.ph-light.ph-cards-three:before {
  content: "\ee50";
}.ph-light.ph-caret-circle-double-down:before {
  content: "\e116";
}.ph-light.ph-caret-circle-double-left:before {
  content: "\e118";
}.ph-light.ph-caret-circle-double-right:before {
  content: "\e11a";
}.ph-light.ph-caret-circle-double-up:before {
  content: "\e11c";
}.ph-light.ph-caret-circle-down:before {
  content: "\e11e";
}.ph-light.ph-caret-circle-left:before {
  content: "\e120";
}.ph-light.ph-caret-circle-right:before {
  content: "\e122";
}.ph-light.ph-caret-circle-up:before {
  content: "\e124";
}.ph-light.ph-caret-circle-up-down:before {
  content: "\e13e";
}.ph-light.ph-caret-double-down:before {
  content: "\e126";
}.ph-light.ph-caret-double-left:before {
  content: "\e128";
}.ph-light.ph-caret-double-right:before {
  content: "\e12a";
}.ph-light.ph-caret-double-up:before {
  content: "\e12c";
}.ph-light.ph-caret-down:before {
  content: "\e136";
}.ph-light.ph-caret-left:before {
  content: "\e138";
}.ph-light.ph-caret-line-down:before {
  content: "\e134";
}.ph-light.ph-caret-line-left:before {
  content: "\e132";
}.ph-light.ph-caret-line-right:before {
  content: "\e130";
}.ph-light.ph-caret-line-up:before {
  content: "\e12e";
}.ph-light.ph-caret-right:before {
  content: "\e13a";
}.ph-light.ph-caret-up:before {
  content: "\e13c";
}.ph-light.ph-caret-up-down:before {
  content: "\e140";
}.ph-light.ph-carrot:before {
  content: "\ed38";
}.ph-light.ph-cash-register:before {
  content: "\ed80";
}.ph-light.ph-cassette-tape:before {
  content: "\ed2e";
}.ph-light.ph-castle-turret:before {
  content: "\e9d0";
}.ph-light.ph-cat:before {
  content: "\e748";
}.ph-light.ph-cell-signal-full:before {
  content: "\e142";
}.ph-light.ph-cell-signal-high:before {
  content: "\e144";
}.ph-light.ph-cell-signal-low:before {
  content: "\e146";
}.ph-light.ph-cell-signal-medium:before {
  content: "\e148";
}.ph-light.ph-cell-signal-none:before {
  content: "\e14a";
}.ph-light.ph-cell-signal-slash:before {
  content: "\e14c";
}.ph-light.ph-cell-signal-x:before {
  content: "\e14e";
}.ph-light.ph-cell-tower:before {
  content: "\ebaa";
}.ph-light.ph-certificate:before {
  content: "\e766";
}.ph-light.ph-chair:before {
  content: "\e950";
}.ph-light.ph-chalkboard:before {
  content: "\e5fc";
}.ph-light.ph-chalkboard-simple:before {
  content: "\e5fe";
}.ph-light.ph-chalkboard-teacher:before {
  content: "\e600";
}.ph-light.ph-champagne:before {
  content: "\eaca";
}.ph-light.ph-charging-station:before {
  content: "\e8d0";
}.ph-light.ph-chart-bar:before {
  content: "\e150";
}.ph-light.ph-chart-bar-horizontal:before {
  content: "\e152";
}.ph-light.ph-chart-donut:before {
  content: "\eaa6";
}.ph-light.ph-chart-line:before {
  content: "\e154";
}.ph-light.ph-chart-line-down:before {
  content: "\e8b6";
}.ph-light.ph-chart-line-up:before {
  content: "\e156";
}.ph-light.ph-chart-pie:before {
  content: "\e158";
}.ph-light.ph-chart-pie-slice:before {
  content: "\e15a";
}.ph-light.ph-chart-polar:before {
  content: "\eaa8";
}.ph-light.ph-chart-scatter:before {
  content: "\eaac";
}.ph-light.ph-chat:before {
  content: "\e15c";
}.ph-light.ph-chat-centered:before {
  content: "\e160";
}.ph-light.ph-chat-centered-dots:before {
  content: "\e164";
}.ph-light.ph-chat-centered-slash:before {
  content: "\e162";
}.ph-light.ph-chat-centered-text:before {
  content: "\e166";
}.ph-light.ph-chat-circle:before {
  content: "\e168";
}.ph-light.ph-chat-circle-dots:before {
  content: "\e16c";
}.ph-light.ph-chat-circle-slash:before {
  content: "\e16a";
}.ph-light.ph-chat-circle-text:before {
  content: "\e16e";
}.ph-light.ph-chat-dots:before {
  content: "\e170";
}.ph-light.ph-chat-slash:before {
  content: "\e15e";
}.ph-light.ph-chat-teardrop:before {
  content: "\e172";
}.ph-light.ph-chat-teardrop-dots:before {
  content: "\e176";
}.ph-light.ph-chat-teardrop-slash:before {
  content: "\e174";
}.ph-light.ph-chat-teardrop-text:before {
  content: "\e178";
}.ph-light.ph-chat-text:before {
  content: "\e17a";
}.ph-light.ph-chats:before {
  content: "\e17c";
}.ph-light.ph-chats-circle:before {
  content: "\e17e";
}.ph-light.ph-chats-teardrop:before {
  content: "\e180";
}.ph-light.ph-check:before {
  content: "\e182";
}.ph-light.ph-check-circle:before {
  content: "\e184";
}.ph-light.ph-check-fat:before {
  content: "\eba6";
}.ph-light.ph-check-square:before {
  content: "\e186";
}.ph-light.ph-check-square-offset:before {
  content: "\e188";
}.ph-light.ph-checkerboard:before {
  content: "\e8c4";
}.ph-light.ph-checks:before {
  content: "\e53a";
}.ph-light.ph-cheers:before {
  content: "\ea4a";
}.ph-light.ph-cheese:before {
  content: "\e9fe";
}.ph-light.ph-chef-hat:before {
  content: "\ed8e";
}.ph-light.ph-cherries:before {
  content: "\e830";
}.ph-light.ph-church:before {
  content: "\ecea";
}.ph-light.ph-cigarette:before {
  content: "\ed90";
}.ph-light.ph-cigarette-slash:before {
  content: "\ed92";
}.ph-light.ph-circle:before {
  content: "\e18a";
}.ph-light.ph-circle-dashed:before {
  content: "\e602";
}.ph-light.ph-circle-half:before {
  content: "\e18c";
}.ph-light.ph-circle-half-tilt:before {
  content: "\e18e";
}.ph-light.ph-circle-notch:before {
  content: "\eb44";
}.ph-light.ph-circles-four:before {
  content: "\e190";
}.ph-light.ph-circles-three:before {
  content: "\e192";
}.ph-light.ph-circles-three-plus:before {
  content: "\e194";
}.ph-light.ph-circuitry:before {
  content: "\e9c2";
}.ph-light.ph-city:before {
  content: "\ea6a";
}.ph-light.ph-clipboard:before {
  content: "\e196";
}.ph-light.ph-clipboard-text:before {
  content: "\e198";
}.ph-light.ph-clock:before {
  content: "\e19a";
}.ph-light.ph-clock-afternoon:before {
  content: "\e19c";
}.ph-light.ph-clock-clockwise:before {
  content: "\e19e";
}.ph-light.ph-clock-countdown:before {
  content: "\ed2c";
}.ph-light.ph-clock-counter-clockwise:before {
  content: "\e1a0";
}.ph-light.ph-clock-user:before {
  content: "\edec";
}.ph-light.ph-closed-captioning:before {
  content: "\e1a4";
}.ph-light.ph-cloud:before {
  content: "\e1aa";
}.ph-light.ph-cloud-arrow-down:before {
  content: "\e1ac";
}.ph-light.ph-cloud-arrow-up:before {
  content: "\e1ae";
}.ph-light.ph-cloud-check:before {
  content: "\e1b0";
}.ph-light.ph-cloud-fog:before {
  content: "\e53c";
}.ph-light.ph-cloud-lightning:before {
  content: "\e1b2";
}.ph-light.ph-cloud-moon:before {
  content: "\e53e";
}.ph-light.ph-cloud-rain:before {
  content: "\e1b4";
}.ph-light.ph-cloud-slash:before {
  content: "\e1b6";
}.ph-light.ph-cloud-snow:before {
  content: "\e1b8";
}.ph-light.ph-cloud-sun:before {
  content: "\e540";
}.ph-light.ph-cloud-warning:before {
  content: "\ea98";
}.ph-light.ph-cloud-x:before {
  content: "\ea96";
}.ph-light.ph-clover:before {
  content: "\edc8";
}.ph-light.ph-club:before {
  content: "\e1ba";
}.ph-light.ph-coat-hanger:before {
  content: "\e7fe";
}.ph-light.ph-coda-logo:before {
  content: "\e7ce";
}.ph-light.ph-code:before {
  content: "\e1bc";
}.ph-light.ph-code-block:before {
  content: "\eafe";
}.ph-light.ph-code-simple:before {
  content: "\e1be";
}.ph-light.ph-codepen-logo:before {
  content: "\e978";
}.ph-light.ph-codesandbox-logo:before {
  content: "\ea06";
}.ph-light.ph-coffee:before {
  content: "\e1c2";
}.ph-light.ph-coffee-bean:before {
  content: "\e1c0";
}.ph-light.ph-coin:before {
  content: "\e60e";
}.ph-light.ph-coin-vertical:before {
  content: "\eb48";
}.ph-light.ph-coins:before {
  content: "\e78e";
}.ph-light.ph-columns:before {
  content: "\e546";
}.ph-light.ph-columns-plus-left:before {
  content: "\e544";
}.ph-light.ph-columns-plus-right:before {
  content: "\e542";
}.ph-light.ph-command:before {
  content: "\e1c4";
}.ph-light.ph-compass:before {
  content: "\e1c8";
}.ph-light.ph-compass-rose:before {
  content: "\e1c6";
}.ph-light.ph-compass-tool:before {
  content: "\ea0e";
}.ph-light.ph-computer-tower:before {
  content: "\e548";
}.ph-light.ph-confetti:before {
  content: "\e81a";
}.ph-light.ph-contactless-payment:before {
  content: "\ed42";
}.ph-light.ph-control:before {
  content: "\eca6";
}.ph-light.ph-cookie:before {
  content: "\e6ca";
}.ph-light.ph-cooking-pot:before {
  content: "\e764";
}.ph-light.ph-copy:before {
  content: "\e1ca";
}.ph-light.ph-copy-simple:before {
  content: "\e1cc";
}.ph-light.ph-copyleft:before {
  content: "\e86a";
}.ph-light.ph-copyright:before {
  content: "\e54a";
}.ph-light.ph-corners-in:before {
  content: "\e1ce";
}.ph-light.ph-corners-out:before {
  content: "\e1d0";
}.ph-light.ph-couch:before {
  content: "\e7f6";
}.ph-light.ph-court-basketball:before {
  content: "\ee36";
}.ph-light.ph-cow:before {
  content: "\eabe";
}.ph-light.ph-cowboy-hat:before {
  content: "\ed12";
}.ph-light.ph-cpu:before {
  content: "\e610";
}.ph-light.ph-crane:before {
  content: "\ed48";
}.ph-light.ph-crane-tower:before {
  content: "\ed49";
}.ph-light.ph-credit-card:before {
  content: "\e1d2";
}.ph-light.ph-cricket:before {
  content: "\ee12";
}.ph-light.ph-crop:before {
  content: "\e1d4";
}.ph-light.ph-cross:before {
  content: "\e8a0";
}.ph-light.ph-crosshair:before {
  content: "\e1d6";
}.ph-light.ph-crosshair-simple:before {
  content: "\e1d8";
}.ph-light.ph-crown:before {
  content: "\e614";
}.ph-light.ph-crown-cross:before {
  content: "\ee5e";
}.ph-light.ph-crown-simple:before {
  content: "\e616";
}.ph-light.ph-cube:before {
  content: "\e1da";
}.ph-light.ph-cube-focus:before {
  content: "\ed0a";
}.ph-light.ph-cube-transparent:before {
  content: "\ec7c";
}.ph-light.ph-currency-btc:before {
  content: "\e618";
}.ph-light.ph-currency-circle-dollar:before {
  content: "\e54c";
}.ph-light.ph-currency-cny:before {
  content: "\e54e";
}.ph-light.ph-currency-dollar:before {
  content: "\e550";
}.ph-light.ph-currency-dollar-simple:before {
  content: "\e552";
}.ph-light.ph-currency-eth:before {
  content: "\eada";
}.ph-light.ph-currency-eur:before {
  content: "\e554";
}.ph-light.ph-currency-gbp:before {
  content: "\e556";
}.ph-light.ph-currency-inr:before {
  content: "\e558";
}.ph-light.ph-currency-jpy:before {
  content: "\e55a";
}.ph-light.ph-currency-krw:before {
  content: "\e55c";
}.ph-light.ph-currency-kzt:before {
  content: "\ec4c";
}.ph-light.ph-currency-ngn:before {
  content: "\eb52";
}.ph-light.ph-currency-rub:before {
  content: "\e55e";
}.ph-light.ph-cursor:before {
  content: "\e1dc";
}.ph-light.ph-cursor-click:before {
  content: "\e7c8";
}.ph-light.ph-cursor-text:before {
  content: "\e7d8";
}.ph-light.ph-cylinder:before {
  content: "\e8fc";
}.ph-light.ph-database:before {
  content: "\e1de";
}.ph-light.ph-desk:before {
  content: "\ed16";
}.ph-light.ph-desktop:before {
  content: "\e560";
}.ph-light.ph-desktop-tower:before {
  content: "\e562";
}.ph-light.ph-detective:before {
  content: "\e83e";
}.ph-light.ph-dev-to-logo:before {
  content: "\ed0e";
}.ph-light.ph-device-mobile:before {
  content: "\e1e0";
}.ph-light.ph-device-mobile-camera:before {
  content: "\e1e2";
}.ph-light.ph-device-mobile-slash:before {
  content: "\ee46";
}.ph-light.ph-device-mobile-speaker:before {
  content: "\e1e4";
}.ph-light.ph-device-rotate:before {
  content: "\edf2";
}.ph-light.ph-device-tablet:before {
  content: "\e1e6";
}.ph-light.ph-device-tablet-camera:before {
  content: "\e1e8";
}.ph-light.ph-device-tablet-speaker:before {
  content: "\e1ea";
}.ph-light.ph-devices:before {
  content: "\eba4";
}.ph-light.ph-diamond:before {
  content: "\e1ec";
}.ph-light.ph-diamonds-four:before {
  content: "\e8f4";
}.ph-light.ph-dice-five:before {
  content: "\e1ee";
}.ph-light.ph-dice-four:before {
  content: "\e1f0";
}.ph-light.ph-dice-one:before {
  content: "\e1f2";
}.ph-light.ph-dice-six:before {
  content: "\e1f4";
}.ph-light.ph-dice-three:before {
  content: "\e1f6";
}.ph-light.ph-dice-two:before {
  content: "\e1f8";
}.ph-light.ph-disc:before {
  content: "\e564";
}.ph-light.ph-disco-ball:before {
  content: "\ed98";
}.ph-light.ph-discord-logo:before {
  content: "\e61a";
}.ph-light.ph-divide:before {
  content: "\e1fa";
}.ph-light.ph-dna:before {
  content: "\e924";
}.ph-light.ph-dog:before {
  content: "\e74a";
}.ph-light.ph-door:before {
  content: "\e61c";
}.ph-light.ph-door-open:before {
  content: "\e7e6";
}.ph-light.ph-dot:before {
  content: "\ecde";
}.ph-light.ph-dot-outline:before {
  content: "\ece0";
}.ph-light.ph-dots-nine:before {
  content: "\e1fc";
}.ph-light.ph-dots-six:before {
  content: "\e794";
}.ph-light.ph-dots-six-vertical:before {
  content: "\eae2";
}.ph-light.ph-dots-three:before {
  content: "\e1fe";
}.ph-light.ph-dots-three-circle:before {
  content: "\e200";
}.ph-light.ph-dots-three-circle-vertical:before {
  content: "\e202";
}.ph-light.ph-dots-three-outline:before {
  content: "\e204";
}.ph-light.ph-dots-three-outline-vertical:before {
  content: "\e206";
}.ph-light.ph-dots-three-vertical:before {
  content: "\e208";
}.ph-light.ph-download:before {
  content: "\e20a";
}.ph-light.ph-download-simple:before {
  content: "\e20c";
}.ph-light.ph-dress:before {
  content: "\ea7e";
}.ph-light.ph-dresser:before {
  content: "\e94e";
}.ph-light.ph-dribbble-logo:before {
  content: "\e20e";
}.ph-light.ph-drone:before {
  content: "\ed74";
}.ph-light.ph-drop:before {
  content: "\e210";
}.ph-light.ph-drop-half:before {
  content: "\e566";
}.ph-light.ph-drop-half-bottom:before {
  content: "\eb40";
}.ph-light.ph-drop-simple:before {
  content: "\ee32";
}.ph-light.ph-drop-slash:before {
  content: "\e954";
}.ph-light.ph-dropbox-logo:before {
  content: "\e7d0";
}.ph-light.ph-ear:before {
  content: "\e70c";
}.ph-light.ph-ear-slash:before {
  content: "\e70e";
}.ph-light.ph-egg:before {
  content: "\e812";
}.ph-light.ph-egg-crack:before {
  content: "\eb64";
}.ph-light.ph-eject:before {
  content: "\e212";
}.ph-light.ph-eject-simple:before {
  content: "\e6ae";
}.ph-light.ph-elevator:before {
  content: "\ecc0";
}.ph-light.ph-empty:before {
  content: "\edbc";
}.ph-light.ph-engine:before {
  content: "\ea80";
}.ph-light.ph-envelope:before {
  content: "\e214";
}.ph-light.ph-envelope-open:before {
  content: "\e216";
}.ph-light.ph-envelope-simple:before {
  content: "\e218";
}.ph-light.ph-envelope-simple-open:before {
  content: "\e21a";
}.ph-light.ph-equalizer:before {
  content: "\ebbc";
}.ph-light.ph-equals:before {
  content: "\e21c";
}.ph-light.ph-eraser:before {
  content: "\e21e";
}.ph-light.ph-escalator-down:before {
  content: "\ecba";
}.ph-light.ph-escalator-up:before {
  content: "\ecbc";
}.ph-light.ph-exam:before {
  content: "\e742";
}.ph-light.ph-exclamation-mark:before {
  content: "\ee44";
}.ph-light.ph-exclude:before {
  content: "\e882";
}.ph-light.ph-exclude-square:before {
  content: "\e880";
}.ph-light.ph-export:before {
  content: "\eaf0";
}.ph-light.ph-eye:before {
  content: "\e220";
}.ph-light.ph-eye-closed:before {
  content: "\e222";
}.ph-light.ph-eye-slash:before {
  content: "\e224";
}.ph-light.ph-eyedropper:before {
  content: "\e568";
}.ph-light.ph-eyedropper-sample:before {
  content: "\eac4";
}.ph-light.ph-eyeglasses:before {
  content: "\e7ba";
}.ph-light.ph-eyes:before {
  content: "\ee5c";
}.ph-light.ph-face-mask:before {
  content: "\e56a";
}.ph-light.ph-facebook-logo:before {
  content: "\e226";
}.ph-light.ph-factory:before {
  content: "\e760";
}.ph-light.ph-faders:before {
  content: "\e228";
}.ph-light.ph-faders-horizontal:before {
  content: "\e22a";
}.ph-light.ph-fallout-shelter:before {
  content: "\e9de";
}.ph-light.ph-fan:before {
  content: "\e9f2";
}.ph-light.ph-farm:before {
  content: "\ec70";
}.ph-light.ph-fast-forward:before {
  content: "\e6a6";
}.ph-light.ph-fast-forward-circle:before {
  content: "\e22c";
}.ph-light.ph-feather:before {
  content: "\e9c0";
}.ph-light.ph-fediverse-logo:before {
  content: "\ed66";
}.ph-light.ph-figma-logo:before {
  content: "\e22e";
}.ph-light.ph-file:before {
  content: "\e230";
}.ph-light.ph-file-archive:before {
  content: "\eb2a";
}.ph-light.ph-file-arrow-down:before {
  content: "\e232";
}.ph-light.ph-file-arrow-up:before {
  content: "\e61e";
}.ph-light.ph-file-audio:before {
  content: "\ea20";
}.ph-light.ph-file-c:before {
  content: "\eb32";
}.ph-light.ph-file-c-sharp:before {
  content: "\eb30";
}.ph-light.ph-file-cloud:before {
  content: "\e95e";
}.ph-light.ph-file-code:before {
  content: "\e914";
}.ph-light.ph-file-cpp:before {
  content: "\eb2e";
}.ph-light.ph-file-css:before {
  content: "\eb34";
}.ph-light.ph-file-csv:before {
  content: "\eb1c";
}.ph-light.ph-file-dashed:before {
  content: "\e704";
}.ph-light.ph-file-dotted:before {
  content: "\e704";
}.ph-light.ph-file-doc:before {
  content: "\eb1e";
}.ph-light.ph-file-html:before {
  content: "\eb38";
}.ph-light.ph-file-image:before {
  content: "\ea24";
}.ph-light.ph-file-ini:before {
  content: "\eb33";
}.ph-light.ph-file-jpg:before {
  content: "\eb1a";
}.ph-light.ph-file-js:before {
  content: "\eb24";
}.ph-light.ph-file-jsx:before {
  content: "\eb3a";
}.ph-light.ph-file-lock:before {
  content: "\e95c";
}.ph-light.ph-file-magnifying-glass:before {
  content: "\e238";
}.ph-light.ph-file-search:before {
  content: "\e238";
}.ph-light.ph-file-md:before {
  content: "\ed50";
}.ph-light.ph-file-minus:before {
  content: "\e234";
}.ph-light.ph-file-pdf:before {
  content: "\e702";
}.ph-light.ph-file-plus:before {
  content: "\e236";
}.ph-light.ph-file-png:before {
  content: "\eb18";
}.ph-light.ph-file-ppt:before {
  content: "\eb20";
}.ph-light.ph-file-py:before {
  content: "\eb2c";
}.ph-light.ph-file-rs:before {
  content: "\eb28";
}.ph-light.ph-file-sql:before {
  content: "\ed4e";
}.ph-light.ph-file-svg:before {
  content: "\ed08";
}.ph-light.ph-file-text:before {
  content: "\e23a";
}.ph-light.ph-file-ts:before {
  content: "\eb26";
}.ph-light.ph-file-tsx:before {
  content: "\eb3c";
}.ph-light.ph-file-txt:before {
  content: "\eb35";
}.ph-light.ph-file-video:before {
  content: "\ea22";
}.ph-light.ph-file-vue:before {
  content: "\eb3e";
}.ph-light.ph-file-x:before {
  content: "\e23c";
}.ph-light.ph-file-xls:before {
  content: "\eb22";
}.ph-light.ph-file-zip:before {
  content: "\e958";
}.ph-light.ph-files:before {
  content: "\e710";
}.ph-light.ph-film-reel:before {
  content: "\e8c0";
}.ph-light.ph-film-script:before {
  content: "\eb50";
}.ph-light.ph-film-slate:before {
  content: "\e8c2";
}.ph-light.ph-film-strip:before {
  content: "\e792";
}.ph-light.ph-fingerprint:before {
  content: "\e23e";
}.ph-light.ph-fingerprint-simple:before {
  content: "\e240";
}.ph-light.ph-finn-the-human:before {
  content: "\e56c";
}.ph-light.ph-fire:before {
  content: "\e242";
}.ph-light.ph-fire-extinguisher:before {
  content: "\e9e8";
}.ph-light.ph-fire-simple:before {
  content: "\e620";
}.ph-light.ph-fire-truck:before {
  content: "\e574";
}.ph-light.ph-first-aid:before {
  content: "\e56e";
}.ph-light.ph-first-aid-kit:before {
  content: "\e570";
}.ph-light.ph-fish:before {
  content: "\e728";
}.ph-light.ph-fish-simple:before {
  content: "\e72a";
}.ph-light.ph-flag:before {
  content: "\e244";
}.ph-light.ph-flag-banner:before {
  content: "\e622";
}.ph-light.ph-flag-banner-fold:before {
  content: "\ecf2";
}.ph-light.ph-flag-checkered:before {
  content: "\ea38";
}.ph-light.ph-flag-pennant:before {
  content: "\ecf0";
}.ph-light.ph-flame:before {
  content: "\e624";
}.ph-light.ph-flashlight:before {
  content: "\e246";
}.ph-light.ph-flask:before {
  content: "\e79e";
}.ph-light.ph-flip-horizontal:before {
  content: "\ed6a";
}.ph-light.ph-flip-vertical:before {
  content: "\ed6c";
}.ph-light.ph-floppy-disk:before {
  content: "\e248";
}.ph-light.ph-floppy-disk-back:before {
  content: "\eaf4";
}.ph-light.ph-flow-arrow:before {
  content: "\e6ec";
}.ph-light.ph-flower:before {
  content: "\e75e";
}.ph-light.ph-flower-lotus:before {
  content: "\e6cc";
}.ph-light.ph-flower-tulip:before {
  content: "\eacc";
}.ph-light.ph-flying-saucer:before {
  content: "\eb4a";
}.ph-light.ph-folder:before {
  content: "\e24a";
}.ph-light.ph-folder-notch:before {
  content: "\e24a";
}.ph-light.ph-folder-dashed:before {
  content: "\e8f8";
}.ph-light.ph-folder-dotted:before {
  content: "\e8f8";
}.ph-light.ph-folder-lock:before {
  content: "\ea3c";
}.ph-light.ph-folder-minus:before {
  content: "\e254";
}.ph-light.ph-folder-notch-minus:before {
  content: "\e254";
}.ph-light.ph-folder-open:before {
  content: "\e256";
}.ph-light.ph-folder-notch-open:before {
  content: "\e256";
}.ph-light.ph-folder-plus:before {
  content: "\e258";
}.ph-light.ph-folder-notch-plus:before {
  content: "\e258";
}.ph-light.ph-folder-simple:before {
  content: "\e25a";
}.ph-light.ph-folder-simple-dashed:before {
  content: "\ec2a";
}.ph-light.ph-folder-simple-dotted:before {
  content: "\ec2a";
}.ph-light.ph-folder-simple-lock:before {
  content: "\eb5e";
}.ph-light.ph-folder-simple-minus:before {
  content: "\e25c";
}.ph-light.ph-folder-simple-plus:before {
  content: "\e25e";
}.ph-light.ph-folder-simple-star:before {
  content: "\ec2e";
}.ph-light.ph-folder-simple-user:before {
  content: "\eb60";
}.ph-light.ph-folder-star:before {
  content: "\ea86";
}.ph-light.ph-folder-user:before {
  content: "\eb46";
}.ph-light.ph-folders:before {
  content: "\e260";
}.ph-light.ph-football:before {
  content: "\e718";
}.ph-light.ph-football-helmet:before {
  content: "\ee4c";
}.ph-light.ph-footprints:before {
  content: "\ea88";
}.ph-light.ph-fork-knife:before {
  content: "\e262";
}.ph-light.ph-four-k:before {
  content: "\ea5c";
}.ph-light.ph-frame-corners:before {
  content: "\e626";
}.ph-light.ph-framer-logo:before {
  content: "\e264";
}.ph-light.ph-function:before {
  content: "\ebe4";
}.ph-light.ph-funnel:before {
  content: "\e266";
}.ph-light.ph-funnel-simple:before {
  content: "\e268";
}.ph-light.ph-funnel-simple-x:before {
  content: "\e26a";
}.ph-light.ph-funnel-x:before {
  content: "\e26c";
}.ph-light.ph-game-controller:before {
  content: "\e26e";
}.ph-light.ph-garage:before {
  content: "\ecd6";
}.ph-light.ph-gas-can:before {
  content: "\e8ce";
}.ph-light.ph-gas-pump:before {
  content: "\e768";
}.ph-light.ph-gauge:before {
  content: "\e628";
}.ph-light.ph-gavel:before {
  content: "\ea32";
}.ph-light.ph-gear:before {
  content: "\e270";
}.ph-light.ph-gear-fine:before {
  content: "\e87c";
}.ph-light.ph-gear-six:before {
  content: "\e272";
}.ph-light.ph-gender-female:before {
  content: "\e6e0";
}.ph-light.ph-gender-intersex:before {
  content: "\e6e6";
}.ph-light.ph-gender-male:before {
  content: "\e6e2";
}.ph-light.ph-gender-neuter:before {
  content: "\e6ea";
}.ph-light.ph-gender-nonbinary:before {
  content: "\e6e4";
}.ph-light.ph-gender-transgender:before {
  content: "\e6e8";
}.ph-light.ph-ghost:before {
  content: "\e62a";
}.ph-light.ph-gif:before {
  content: "\e274";
}.ph-light.ph-gift:before {
  content: "\e276";
}.ph-light.ph-git-branch:before {
  content: "\e278";
}.ph-light.ph-git-commit:before {
  content: "\e27a";
}.ph-light.ph-git-diff:before {
  content: "\e27c";
}.ph-light.ph-git-fork:before {
  content: "\e27e";
}.ph-light.ph-git-merge:before {
  content: "\e280";
}.ph-light.ph-git-pull-request:before {
  content: "\e282";
}.ph-light.ph-github-logo:before {
  content: "\e576";
}.ph-light.ph-gitlab-logo:before {
  content: "\e694";
}.ph-light.ph-gitlab-logo-simple:before {
  content: "\e696";
}.ph-light.ph-globe:before {
  content: "\e288";
}.ph-light.ph-globe-hemisphere-east:before {
  content: "\e28a";
}.ph-light.ph-globe-hemisphere-west:before {
  content: "\e28c";
}.ph-light.ph-globe-simple:before {
  content: "\e28e";
}.ph-light.ph-globe-simple-x:before {
  content: "\e284";
}.ph-light.ph-globe-stand:before {
  content: "\e290";
}.ph-light.ph-globe-x:before {
  content: "\e286";
}.ph-light.ph-goggles:before {
  content: "\ecb4";
}.ph-light.ph-golf:before {
  content: "\ea3e";
}.ph-light.ph-goodreads-logo:before {
  content: "\ed10";
}.ph-light.ph-google-cardboard-logo:before {
  content: "\e7b6";
}.ph-light.ph-google-chrome-logo:before {
  content: "\e976";
}.ph-light.ph-google-drive-logo:before {
  content: "\e8f6";
}.ph-light.ph-google-logo:before {
  content: "\e292";
}.ph-light.ph-google-photos-logo:before {
  content: "\eb92";
}.ph-light.ph-google-play-logo:before {
  content: "\e294";
}.ph-light.ph-google-podcasts-logo:before {
  content: "\eb94";
}.ph-light.ph-gps:before {
  content: "\edd8";
}.ph-light.ph-gps-fix:before {
  content: "\edd6";
}.ph-light.ph-gps-slash:before {
  content: "\edd4";
}.ph-light.ph-gradient:before {
  content: "\eb42";
}.ph-light.ph-graduation-cap:before {
  content: "\e62c";
}.ph-light.ph-grains:before {
  content: "\ec68";
}.ph-light.ph-grains-slash:before {
  content: "\ec6a";
}.ph-light.ph-graph:before {
  content: "\eb58";
}.ph-light.ph-graphics-card:before {
  content: "\e612";
}.ph-light.ph-greater-than:before {
  content: "\edc4";
}.ph-light.ph-greater-than-or-equal:before {
  content: "\eda2";
}.ph-light.ph-grid-four:before {
  content: "\e296";
}.ph-light.ph-grid-nine:before {
  content: "\ec8c";
}.ph-light.ph-guitar:before {
  content: "\ea8a";
}.ph-light.ph-hair-dryer:before {
  content: "\ea66";
}.ph-light.ph-hamburger:before {
  content: "\e790";
}.ph-light.ph-hammer:before {
  content: "\e80e";
}.ph-light.ph-hand:before {
  content: "\e298";
}.ph-light.ph-hand-arrow-down:before {
  content: "\ea4e";
}.ph-light.ph-hand-arrow-up:before {
  content: "\ee5a";
}.ph-light.ph-hand-coins:before {
  content: "\ea8c";
}.ph-light.ph-hand-deposit:before {
  content: "\ee82";
}.ph-light.ph-hand-eye:before {
  content: "\ea4c";
}.ph-light.ph-hand-fist:before {
  content: "\e57a";
}.ph-light.ph-hand-grabbing:before {
  content: "\e57c";
}.ph-light.ph-hand-heart:before {
  content: "\e810";
}.ph-light.ph-hand-palm:before {
  content: "\e57e";
}.ph-light.ph-hand-peace:before {
  content: "\e7cc";
}.ph-light.ph-hand-pointing:before {
  content: "\e29a";
}.ph-light.ph-hand-soap:before {
  content: "\e630";
}.ph-light.ph-hand-swipe-left:before {
  content: "\ec94";
}.ph-light.ph-hand-swipe-right:before {
  content: "\ec92";
}.ph-light.ph-hand-tap:before {
  content: "\ec90";
}.ph-light.ph-hand-waving:before {
  content: "\e580";
}.ph-light.ph-hand-withdraw:before {
  content: "\ee80";
}.ph-light.ph-handbag:before {
  content: "\e29c";
}.ph-light.ph-handbag-simple:before {
  content: "\e62e";
}.ph-light.ph-hands-clapping:before {
  content: "\e6a0";
}.ph-light.ph-hands-praying:before {
  content: "\ecc8";
}.ph-light.ph-handshake:before {
  content: "\e582";
}.ph-light.ph-hard-drive:before {
  content: "\e29e";
}.ph-light.ph-hard-drives:before {
  content: "\e2a0";
}.ph-light.ph-hard-hat:before {
  content: "\ed46";
}.ph-light.ph-hash:before {
  content: "\e2a2";
}.ph-light.ph-hash-straight:before {
  content: "\e2a4";
}.ph-light.ph-head-circuit:before {
  content: "\e7d4";
}.ph-light.ph-headlights:before {
  content: "\e6fe";
}.ph-light.ph-headphones:before {
  content: "\e2a6";
}.ph-light.ph-headset:before {
  content: "\e584";
}.ph-light.ph-heart:before {
  content: "\e2a8";
}.ph-light.ph-heart-break:before {
  content: "\ebe8";
}.ph-light.ph-heart-half:before {
  content: "\ec48";
}.ph-light.ph-heart-straight:before {
  content: "\e2aa";
}.ph-light.ph-heart-straight-break:before {
  content: "\eb98";
}.ph-light.ph-heartbeat:before {
  content: "\e2ac";
}.ph-light.ph-hexagon:before {
  content: "\e2ae";
}.ph-light.ph-high-definition:before {
  content: "\ea8e";
}.ph-light.ph-high-heel:before {
  content: "\e8e8";
}.ph-light.ph-highlighter:before {
  content: "\ec76";
}.ph-light.ph-highlighter-circle:before {
  content: "\e632";
}.ph-light.ph-hockey:before {
  content: "\ec86";
}.ph-light.ph-hoodie:before {
  content: "\ecd0";
}.ph-light.ph-horse:before {
  content: "\e2b0";
}.ph-light.ph-hospital:before {
  content: "\e844";
}.ph-light.ph-hourglass:before {
  content: "\e2b2";
}.ph-light.ph-hourglass-high:before {
  content: "\e2b4";
}.ph-light.ph-hourglass-low:before {
  content: "\e2b6";
}.ph-light.ph-hourglass-medium:before {
  content: "\e2b8";
}.ph-light.ph-hourglass-simple:before {
  content: "\e2ba";
}.ph-light.ph-hourglass-simple-high:before {
  content: "\e2bc";
}.ph-light.ph-hourglass-simple-low:before {
  content: "\e2be";
}.ph-light.ph-hourglass-simple-medium:before {
  content: "\e2c0";
}.ph-light.ph-house:before {
  content: "\e2c2";
}.ph-light.ph-house-line:before {
  content: "\e2c4";
}.ph-light.ph-house-simple:before {
  content: "\e2c6";
}.ph-light.ph-hurricane:before {
  content: "\e88e";
}.ph-light.ph-ice-cream:before {
  content: "\e804";
}.ph-light.ph-identification-badge:before {
  content: "\e6f6";
}.ph-light.ph-identification-card:before {
  content: "\e2c8";
}.ph-light.ph-image:before {
  content: "\e2ca";
}.ph-light.ph-image-broken:before {
  content: "\e7a8";
}.ph-light.ph-image-square:before {
  content: "\e2cc";
}.ph-light.ph-images:before {
  content: "\e836";
}.ph-light.ph-images-square:before {
  content: "\e834";
}.ph-light.ph-infinity:before {
  content: "\e634";
}.ph-light.ph-lemniscate:before {
  content: "\e634";
}.ph-light.ph-info:before {
  content: "\e2ce";
}.ph-light.ph-instagram-logo:before {
  content: "\e2d0";
}.ph-light.ph-intersect:before {
  content: "\e2d2";
}.ph-light.ph-intersect-square:before {
  content: "\e87a";
}.ph-light.ph-intersect-three:before {
  content: "\ecc4";
}.ph-light.ph-intersection:before {
  content: "\edba";
}.ph-light.ph-invoice:before {
  content: "\ee42";
}.ph-light.ph-island:before {
  content: "\ee06";
}.ph-light.ph-jar:before {
  content: "\e7e0";
}.ph-light.ph-jar-label:before {
  content: "\e7e1";
}.ph-light.ph-jeep:before {
  content: "\e2d4";
}.ph-light.ph-joystick:before {
  content: "\ea5e";
}.ph-light.ph-kanban:before {
  content: "\eb54";
}.ph-light.ph-key:before {
  content: "\e2d6";
}.ph-light.ph-key-return:before {
  content: "\e782";
}.ph-light.ph-keyboard:before {
  content: "\e2d8";
}.ph-light.ph-keyhole:before {
  content: "\ea78";
}.ph-light.ph-knife:before {
  content: "\e636";
}.ph-light.ph-ladder:before {
  content: "\e9e4";
}.ph-light.ph-ladder-simple:before {
  content: "\ec26";
}.ph-light.ph-lamp:before {
  content: "\e638";
}.ph-light.ph-lamp-pendant:before {
  content: "\ee2e";
}.ph-light.ph-laptop:before {
  content: "\e586";
}.ph-light.ph-lasso:before {
  content: "\edc6";
}.ph-light.ph-lastfm-logo:before {
  content: "\e842";
}.ph-light.ph-layout:before {
  content: "\e6d6";
}.ph-light.ph-leaf:before {
  content: "\e2da";
}.ph-light.ph-lectern:before {
  content: "\e95a";
}.ph-light.ph-lego:before {
  content: "\e8c6";
}.ph-light.ph-lego-smiley:before {
  content: "\e8c7";
}.ph-light.ph-less-than:before {
  content: "\edac";
}.ph-light.ph-less-than-or-equal:before {
  content: "\eda4";
}.ph-light.ph-letter-circle-h:before {
  content: "\ebf8";
}.ph-light.ph-letter-circle-p:before {
  content: "\ec08";
}.ph-light.ph-letter-circle-v:before {
  content: "\ec14";
}.ph-light.ph-lifebuoy:before {
  content: "\e63a";
}.ph-light.ph-lightbulb:before {
  content: "\e2dc";
}.ph-light.ph-lightbulb-filament:before {
  content: "\e63c";
}.ph-light.ph-lighthouse:before {
  content: "\e9f6";
}.ph-light.ph-lightning:before {
  content: "\e2de";
}.ph-light.ph-lightning-a:before {
  content: "\ea84";
}.ph-light.ph-lightning-slash:before {
  content: "\e2e0";
}.ph-light.ph-line-segment:before {
  content: "\e6d2";
}.ph-light.ph-line-segments:before {
  content: "\e6d4";
}.ph-light.ph-line-vertical:before {
  content: "\ed70";
}.ph-light.ph-link:before {
  content: "\e2e2";
}.ph-light.ph-link-break:before {
  content: "\e2e4";
}.ph-light.ph-link-simple:before {
  content: "\e2e6";
}.ph-light.ph-link-simple-break:before {
  content: "\e2e8";
}.ph-light.ph-link-simple-horizontal:before {
  content: "\e2ea";
}.ph-light.ph-link-simple-horizontal-break:before {
  content: "\e2ec";
}.ph-light.ph-linkedin-logo:before {
  content: "\e2ee";
}.ph-light.ph-linktree-logo:before {
  content: "\edee";
}.ph-light.ph-linux-logo:before {
  content: "\eb02";
}.ph-light.ph-list:before {
  content: "\e2f0";
}.ph-light.ph-list-bullets:before {
  content: "\e2f2";
}.ph-light.ph-list-checks:before {
  content: "\eadc";
}.ph-light.ph-list-dashes:before {
  content: "\e2f4";
}.ph-light.ph-list-heart:before {
  content: "\ebde";
}.ph-light.ph-list-magnifying-glass:before {
  content: "\ebe0";
}.ph-light.ph-list-numbers:before {
  content: "\e2f6";
}.ph-light.ph-list-plus:before {
  content: "\e2f8";
}.ph-light.ph-list-star:before {
  content: "\ebdc";
}.ph-light.ph-lock:before {
  content: "\e2fa";
}.ph-light.ph-lock-key:before {
  content: "\e2fe";
}.ph-light.ph-lock-key-open:before {
  content: "\e300";
}.ph-light.ph-lock-laminated:before {
  content: "\e302";
}.ph-light.ph-lock-laminated-open:before {
  content: "\e304";
}.ph-light.ph-lock-open:before {
  content: "\e306";
}.ph-light.ph-lock-simple:before {
  content: "\e308";
}.ph-light.ph-lock-simple-open:before {
  content: "\e30a";
}.ph-light.ph-lockers:before {
  content: "\ecb8";
}.ph-light.ph-log:before {
  content: "\ed82";
}.ph-light.ph-magic-wand:before {
  content: "\e6b6";
}.ph-light.ph-magnet:before {
  content: "\e680";
}.ph-light.ph-magnet-straight:before {
  content: "\e682";
}.ph-light.ph-magnifying-glass:before {
  content: "\e30c";
}.ph-light.ph-magnifying-glass-minus:before {
  content: "\e30e";
}.ph-light.ph-magnifying-glass-plus:before {
  content: "\e310";
}.ph-light.ph-mailbox:before {
  content: "\ec1e";
}.ph-light.ph-map-pin:before {
  content: "\e316";
}.ph-light.ph-map-pin-area:before {
  content: "\ee3a";
}.ph-light.ph-map-pin-line:before {
  content: "\e318";
}.ph-light.ph-map-pin-plus:before {
  content: "\e314";
}.ph-light.ph-map-pin-simple:before {
  content: "\ee3e";
}.ph-light.ph-map-pin-simple-area:before {
  content: "\ee3c";
}.ph-light.ph-map-pin-simple-line:before {
  content: "\ee38";
}.ph-light.ph-map-trifold:before {
  content: "\e31a";
}.ph-light.ph-markdown-logo:before {
  content: "\e508";
}.ph-light.ph-marker-circle:before {
  content: "\e640";
}.ph-light.ph-martini:before {
  content: "\e31c";
}.ph-light.ph-mask-happy:before {
  content: "\e9f4";
}.ph-light.ph-mask-sad:before {
  content: "\eb9e";
}.ph-light.ph-mastodon-logo:before {
  content: "\ed68";
}.ph-light.ph-math-operations:before {
  content: "\e31e";
}.ph-light.ph-matrix-logo:before {
  content: "\ed64";
}.ph-light.ph-medal:before {
  content: "\e320";
}.ph-light.ph-medal-military:before {
  content: "\ecfc";
}.ph-light.ph-medium-logo:before {
  content: "\e322";
}.ph-light.ph-megaphone:before {
  content: "\e324";
}.ph-light.ph-megaphone-simple:before {
  content: "\e642";
}.ph-light.ph-member-of:before {
  content: "\edc2";
}.ph-light.ph-memory:before {
  content: "\e9c4";
}.ph-light.ph-messenger-logo:before {
  content: "\e6d8";
}.ph-light.ph-meta-logo:before {
  content: "\ed02";
}.ph-light.ph-meteor:before {
  content: "\e9ba";
}.ph-light.ph-metronome:before {
  content: "\ec8e";
}.ph-light.ph-microphone:before {
  content: "\e326";
}.ph-light.ph-microphone-slash:before {
  content: "\e328";
}.ph-light.ph-microphone-stage:before {
  content: "\e75c";
}.ph-light.ph-microscope:before {
  content: "\ec7a";
}.ph-light.ph-microsoft-excel-logo:before {
  content: "\eb6c";
}.ph-light.ph-microsoft-outlook-logo:before {
  content: "\eb70";
}.ph-light.ph-microsoft-powerpoint-logo:before {
  content: "\eace";
}.ph-light.ph-microsoft-teams-logo:before {
  content: "\eb66";
}.ph-light.ph-microsoft-word-logo:before {
  content: "\eb6a";
}.ph-light.ph-minus:before {
  content: "\e32a";
}.ph-light.ph-minus-circle:before {
  content: "\e32c";
}.ph-light.ph-minus-square:before {
  content: "\ed4c";
}.ph-light.ph-money:before {
  content: "\e588";
}.ph-light.ph-money-wavy:before {
  content: "\ee68";
}.ph-light.ph-monitor:before {
  content: "\e32e";
}.ph-light.ph-monitor-arrow-up:before {
  content: "\e58a";
}.ph-light.ph-monitor-play:before {
  content: "\e58c";
}.ph-light.ph-moon:before {
  content: "\e330";
}.ph-light.ph-moon-stars:before {
  content: "\e58e";
}.ph-light.ph-moped:before {
  content: "\e824";
}.ph-light.ph-moped-front:before {
  content: "\e822";
}.ph-light.ph-mosque:before {
  content: "\ecee";
}.ph-light.ph-motorcycle:before {
  content: "\e80a";
}.ph-light.ph-mountains:before {
  content: "\e7ae";
}.ph-light.ph-mouse:before {
  content: "\e33a";
}.ph-light.ph-mouse-left-click:before {
  content: "\e334";
}.ph-light.ph-mouse-middle-click:before {
  content: "\e338";
}.ph-light.ph-mouse-right-click:before {
  content: "\e336";
}.ph-light.ph-mouse-scroll:before {
  content: "\e332";
}.ph-light.ph-mouse-simple:before {
  content: "\e644";
}.ph-light.ph-music-note:before {
  content: "\e33c";
}.ph-light.ph-music-note-simple:before {
  content: "\e33e";
}.ph-light.ph-music-notes:before {
  content: "\e340";
}.ph-light.ph-music-notes-minus:before {
  content: "\ee0c";
}.ph-light.ph-music-notes-plus:before {
  content: "\eb7c";
}.ph-light.ph-music-notes-simple:before {
  content: "\e342";
}.ph-light.ph-navigation-arrow:before {
  content: "\eade";
}.ph-light.ph-needle:before {
  content: "\e82e";
}.ph-light.ph-network:before {
  content: "\edde";
}.ph-light.ph-network-slash:before {
  content: "\eddc";
}.ph-light.ph-network-x:before {
  content: "\edda";
}.ph-light.ph-newspaper:before {
  content: "\e344";
}.ph-light.ph-newspaper-clipping:before {
  content: "\e346";
}.ph-light.ph-not-equals:before {
  content: "\eda6";
}.ph-light.ph-not-member-of:before {
  content: "\edae";
}.ph-light.ph-not-subset-of:before {
  content: "\edb0";
}.ph-light.ph-not-superset-of:before {
  content: "\edb2";
}.ph-light.ph-notches:before {
  content: "\ed3a";
}.ph-light.ph-note:before {
  content: "\e348";
}.ph-light.ph-note-blank:before {
  content: "\e34a";
}.ph-light.ph-note-pencil:before {
  content: "\e34c";
}.ph-light.ph-notebook:before {
  content: "\e34e";
}.ph-light.ph-notepad:before {
  content: "\e63e";
}.ph-light.ph-notification:before {
  content: "\e6fa";
}.ph-light.ph-notion-logo:before {
  content: "\e9a0";
}.ph-light.ph-nuclear-plant:before {
  content: "\ed7c";
}.ph-light.ph-number-circle-eight:before {
  content: "\e352";
}.ph-light.ph-number-circle-five:before {
  content: "\e358";
}.ph-light.ph-number-circle-four:before {
  content: "\e35e";
}.ph-light.ph-number-circle-nine:before {
  content: "\e364";
}.ph-light.ph-number-circle-one:before {
  content: "\e36a";
}.ph-light.ph-number-circle-seven:before {
  content: "\e370";
}.ph-light.ph-number-circle-six:before {
  content: "\e376";
}.ph-light.ph-number-circle-three:before {
  content: "\e37c";
}.ph-light.ph-number-circle-two:before {
  content: "\e382";
}.ph-light.ph-number-circle-zero:before {
  content: "\e388";
}.ph-light.ph-number-eight:before {
  content: "\e350";
}.ph-light.ph-number-five:before {
  content: "\e356";
}.ph-light.ph-number-four:before {
  content: "\e35c";
}.ph-light.ph-number-nine:before {
  content: "\e362";
}.ph-light.ph-number-one:before {
  content: "\e368";
}.ph-light.ph-number-seven:before {
  content: "\e36e";
}.ph-light.ph-number-six:before {
  content: "\e374";
}.ph-light.ph-number-square-eight:before {
  content: "\e354";
}.ph-light.ph-number-square-five:before {
  content: "\e35a";
}.ph-light.ph-number-square-four:before {
  content: "\e360";
}.ph-light.ph-number-square-nine:before {
  content: "\e366";
}.ph-light.ph-number-square-one:before {
  content: "\e36c";
}.ph-light.ph-number-square-seven:before {
  content: "\e372";
}.ph-light.ph-number-square-six:before {
  content: "\e378";
}.ph-light.ph-number-square-three:before {
  content: "\e37e";
}.ph-light.ph-number-square-two:before {
  content: "\e384";
}.ph-light.ph-number-square-zero:before {
  content: "\e38a";
}.ph-light.ph-number-three:before {
  content: "\e37a";
}.ph-light.ph-number-two:before {
  content: "\e380";
}.ph-light.ph-number-zero:before {
  content: "\e386";
}.ph-light.ph-numpad:before {
  content: "\e3c8";
}.ph-light.ph-nut:before {
  content: "\e38c";
}.ph-light.ph-ny-times-logo:before {
  content: "\e646";
}.ph-light.ph-octagon:before {
  content: "\e38e";
}.ph-light.ph-office-chair:before {
  content: "\ea46";
}.ph-light.ph-onigiri:before {
  content: "\ee2c";
}.ph-light.ph-open-ai-logo:before {
  content: "\e7d2";
}.ph-light.ph-option:before {
  content: "\e8a8";
}.ph-light.ph-orange:before {
  content: "\ee40";
}.ph-light.ph-orange-slice:before {
  content: "\ed36";
}.ph-light.ph-oven:before {
  content: "\ed8c";
}.ph-light.ph-package:before {
  content: "\e390";
}.ph-light.ph-paint-brush:before {
  content: "\e6f0";
}.ph-light.ph-paint-brush-broad:before {
  content: "\e590";
}.ph-light.ph-paint-brush-household:before {
  content: "\e6f2";
}.ph-light.ph-paint-bucket:before {
  content: "\e392";
}.ph-light.ph-paint-roller:before {
  content: "\e6f4";
}.ph-light.ph-palette:before {
  content: "\e6c8";
}.ph-light.ph-panorama:before {
  content: "\eaa2";
}.ph-light.ph-pants:before {
  content: "\ec88";
}.ph-light.ph-paper-plane:before {
  content: "\e394";
}.ph-light.ph-paper-plane-right:before {
  content: "\e396";
}.ph-light.ph-paper-plane-tilt:before {
  content: "\e398";
}.ph-light.ph-paperclip:before {
  content: "\e39a";
}.ph-light.ph-paperclip-horizontal:before {
  content: "\e592";
}.ph-light.ph-parachute:before {
  content: "\ea7c";
}.ph-light.ph-paragraph:before {
  content: "\e960";
}.ph-light.ph-parallelogram:before {
  content: "\ecc6";
}.ph-light.ph-park:before {
  content: "\ecb2";
}.ph-light.ph-password:before {
  content: "\e752";
}.ph-light.ph-path:before {
  content: "\e39c";
}.ph-light.ph-patreon-logo:before {
  content: "\e98a";
}.ph-light.ph-pause:before {
  content: "\e39e";
}.ph-light.ph-pause-circle:before {
  content: "\e3a0";
}.ph-light.ph-paw-print:before {
  content: "\e648";
}.ph-light.ph-paypal-logo:before {
  content: "\e98c";
}.ph-light.ph-peace:before {
  content: "\e3a2";
}.ph-light.ph-pen:before {
  content: "\e3aa";
}.ph-light.ph-pen-nib:before {
  content: "\e3ac";
}.ph-light.ph-pen-nib-straight:before {
  content: "\e64a";
}.ph-light.ph-pencil:before {
  content: "\e3ae";
}.ph-light.ph-pencil-circle:before {
  content: "\e3b0";
}.ph-light.ph-pencil-line:before {
  content: "\e3b2";
}.ph-light.ph-pencil-ruler:before {
  content: "\e906";
}.ph-light.ph-pencil-simple:before {
  content: "\e3b4";
}.ph-light.ph-pencil-simple-line:before {
  content: "\ebc6";
}.ph-light.ph-pencil-simple-slash:before {
  content: "\ecf6";
}.ph-light.ph-pencil-slash:before {
  content: "\ecf8";
}.ph-light.ph-pentagon:before {
  content: "\ec7e";
}.ph-light.ph-pentagram:before {
  content: "\ec5c";
}.ph-light.ph-pepper:before {
  content: "\e94a";
}.ph-light.ph-percent:before {
  content: "\e3b6";
}.ph-light.ph-person:before {
  content: "\e3a8";
}.ph-light.ph-person-arms-spread:before {
  content: "\ecfe";
}.ph-light.ph-person-simple:before {
  content: "\e72e";
}.ph-light.ph-person-simple-bike:before {
  content: "\e734";
}.ph-light.ph-person-simple-circle:before {
  content: "\ee58";
}.ph-light.ph-person-simple-hike:before {
  content: "\ed54";
}.ph-light.ph-person-simple-run:before {
  content: "\e730";
}.ph-light.ph-person-simple-ski:before {
  content: "\e71c";
}.ph-light.ph-person-simple-snowboard:before {
  content: "\e71e";
}.ph-light.ph-person-simple-swim:before {
  content: "\e736";
}.ph-light.ph-person-simple-tai-chi:before {
  content: "\ed5c";
}.ph-light.ph-person-simple-throw:before {
  content: "\e732";
}.ph-light.ph-person-simple-walk:before {
  content: "\e73a";
}.ph-light.ph-perspective:before {
  content: "\ebe6";
}.ph-light.ph-phone:before {
  content: "\e3b8";
}.ph-light.ph-phone-call:before {
  content: "\e3ba";
}.ph-light.ph-phone-disconnect:before {
  content: "\e3bc";
}.ph-light.ph-phone-incoming:before {
  content: "\e3be";
}.ph-light.ph-phone-list:before {
  content: "\e3cc";
}.ph-light.ph-phone-outgoing:before {
  content: "\e3c0";
}.ph-light.ph-phone-pause:before {
  content: "\e3ca";
}.ph-light.ph-phone-plus:before {
  content: "\ec56";
}.ph-light.ph-phone-slash:before {
  content: "\e3c2";
}.ph-light.ph-phone-transfer:before {
  content: "\e3c6";
}.ph-light.ph-phone-x:before {
  content: "\e3c4";
}.ph-light.ph-phosphor-logo:before {
  content: "\e3ce";
}.ph-light.ph-pi:before {
  content: "\ec80";
}.ph-light.ph-piano-keys:before {
  content: "\e9c8";
}.ph-light.ph-picnic-table:before {
  content: "\ee26";
}.ph-light.ph-picture-in-picture:before {
  content: "\e64c";
}.ph-light.ph-piggy-bank:before {
  content: "\ea04";
}.ph-light.ph-pill:before {
  content: "\e700";
}.ph-light.ph-ping-pong:before {
  content: "\ea42";
}.ph-light.ph-pint-glass:before {
  content: "\edd0";
}.ph-light.ph-pinterest-logo:before {
  content: "\e64e";
}.ph-light.ph-pinwheel:before {
  content: "\eb9c";
}.ph-light.ph-pipe:before {
  content: "\ed86";
}.ph-light.ph-pipe-wrench:before {
  content: "\ed88";
}.ph-light.ph-pix-logo:before {
  content: "\ecc2";
}.ph-light.ph-pizza:before {
  content: "\e796";
}.ph-light.ph-placeholder:before {
  content: "\e650";
}.ph-light.ph-planet:before {
  content: "\e652";
}.ph-light.ph-plant:before {
  content: "\ebae";
}.ph-light.ph-play:before {
  content: "\e3d0";
}.ph-light.ph-play-circle:before {
  content: "\e3d2";
}.ph-light.ph-play-pause:before {
  content: "\e8be";
}.ph-light.ph-playlist:before {
  content: "\e6aa";
}.ph-light.ph-plug:before {
  content: "\e946";
}.ph-light.ph-plug-charging:before {
  content: "\eb5c";
}.ph-light.ph-plugs:before {
  content: "\eb56";
}.ph-light.ph-plugs-connected:before {
  content: "\eb5a";
}.ph-light.ph-plus:before {
  content: "\e3d4";
}.ph-light.ph-plus-circle:before {
  content: "\e3d6";
}.ph-light.ph-plus-minus:before {
  content: "\e3d8";
}.ph-light.ph-plus-square:before {
  content: "\ed4a";
}.ph-light.ph-poker-chip:before {
  content: "\e594";
}.ph-light.ph-police-car:before {
  content: "\ec4a";
}.ph-light.ph-polygon:before {
  content: "\e6d0";
}.ph-light.ph-popcorn:before {
  content: "\eb4e";
}.ph-light.ph-popsicle:before {
  content: "\ebbe";
}.ph-light.ph-potted-plant:before {
  content: "\ec22";
}.ph-light.ph-power:before {
  content: "\e3da";
}.ph-light.ph-prescription:before {
  content: "\e7a2";
}.ph-light.ph-presentation:before {
  content: "\e654";
}.ph-light.ph-presentation-chart:before {
  content: "\e656";
}.ph-light.ph-printer:before {
  content: "\e3dc";
}.ph-light.ph-prohibit:before {
  content: "\e3de";
}.ph-light.ph-prohibit-inset:before {
  content: "\e3e0";
}.ph-light.ph-projector-screen:before {
  content: "\e658";
}.ph-light.ph-projector-screen-chart:before {
  content: "\e65a";
}.ph-light.ph-pulse:before {
  content: "\e000";
}.ph-light.ph-activity:before {
  content: "\e000";
}.ph-light.ph-push-pin:before {
  content: "\e3e2";
}.ph-light.ph-push-pin-simple:before {
  content: "\e65c";
}.ph-light.ph-push-pin-simple-slash:before {
  content: "\e65e";
}.ph-light.ph-push-pin-slash:before {
  content: "\e3e4";
}.ph-light.ph-puzzle-piece:before {
  content: "\e596";
}.ph-light.ph-qr-code:before {
  content: "\e3e6";
}.ph-light.ph-question:before {
  content: "\e3e8";
}.ph-light.ph-question-mark:before {
  content: "\e3e9";
}.ph-light.ph-queue:before {
  content: "\e6ac";
}.ph-light.ph-quotes:before {
  content: "\e660";
}.ph-light.ph-rabbit:before {
  content: "\eac2";
}.ph-light.ph-racquet:before {
  content: "\ee02";
}.ph-light.ph-radical:before {
  content: "\e3ea";
}.ph-light.ph-radio:before {
  content: "\e77e";
}.ph-light.ph-radio-button:before {
  content: "\eb08";
}.ph-light.ph-radioactive:before {
  content: "\e9dc";
}.ph-light.ph-rainbow:before {
  content: "\e598";
}.ph-light.ph-rainbow-cloud:before {
  content: "\e59a";
}.ph-light.ph-ranking:before {
  content: "\ed62";
}.ph-light.ph-read-cv-logo:before {
  content: "\ed0c";
}.ph-light.ph-receipt:before {
  content: "\e3ec";
}.ph-light.ph-receipt-x:before {
  content: "\ed40";
}.ph-light.ph-record:before {
  content: "\e3ee";
}.ph-light.ph-rectangle:before {
  content: "\e3f0";
}.ph-light.ph-rectangle-dashed:before {
  content: "\e3f2";
}.ph-light.ph-recycle:before {
  content: "\e75a";
}.ph-light.ph-reddit-logo:before {
  content: "\e59c";
}.ph-light.ph-repeat:before {
  content: "\e3f6";
}.ph-light.ph-repeat-once:before {
  content: "\e3f8";
}.ph-light.ph-replit-logo:before {
  content: "\eb8a";
}.ph-light.ph-resize:before {
  content: "\ed6e";
}.ph-light.ph-rewind:before {
  content: "\e6a8";
}.ph-light.ph-rewind-circle:before {
  content: "\e3fa";
}.ph-light.ph-road-horizon:before {
  content: "\e838";
}.ph-light.ph-robot:before {
  content: "\e762";
}.ph-light.ph-rocket:before {
  content: "\e3fc";
}.ph-light.ph-rocket-launch:before {
  content: "\e3fe";
}.ph-light.ph-rows:before {
  content: "\e5a2";
}.ph-light.ph-rows-plus-bottom:before {
  content: "\e59e";
}.ph-light.ph-rows-plus-top:before {
  content: "\e5a0";
}.ph-light.ph-rss:before {
  content: "\e400";
}.ph-light.ph-rss-simple:before {
  content: "\e402";
}.ph-light.ph-rug:before {
  content: "\ea1a";
}.ph-light.ph-ruler:before {
  content: "\e6b8";
}.ph-light.ph-sailboat:before {
  content: "\e78a";
}.ph-light.ph-scales:before {
  content: "\e750";
}.ph-light.ph-scan:before {
  content: "\ebb6";
}.ph-light.ph-scan-smiley:before {
  content: "\ebb4";
}.ph-light.ph-scissors:before {
  content: "\eae0";
}.ph-light.ph-scooter:before {
  content: "\e820";
}.ph-light.ph-screencast:before {
  content: "\e404";
}.ph-light.ph-screwdriver:before {
  content: "\e86e";
}.ph-light.ph-scribble:before {
  content: "\e806";
}.ph-light.ph-scribble-loop:before {
  content: "\e662";
}.ph-light.ph-scroll:before {
  content: "\eb7a";
}.ph-light.ph-seal:before {
  content: "\e604";
}.ph-light.ph-circle-wavy:before {
  content: "\e604";
}.ph-light.ph-seal-check:before {
  content: "\e606";
}.ph-light.ph-circle-wavy-check:before {
  content: "\e606";
}.ph-light.ph-seal-percent:before {
  content: "\e60a";
}.ph-light.ph-seal-question:before {
  content: "\e608";
}.ph-light.ph-circle-wavy-question:before {
  content: "\e608";
}.ph-light.ph-seal-warning:before {
  content: "\e60c";
}.ph-light.ph-circle-wavy-warning:before {
  content: "\e60c";
}.ph-light.ph-seat:before {
  content: "\eb8e";
}.ph-light.ph-seatbelt:before {
  content: "\edfe";
}.ph-light.ph-security-camera:before {
  content: "\eca4";
}.ph-light.ph-selection:before {
  content: "\e69a";
}.ph-light.ph-selection-all:before {
  content: "\e746";
}.ph-light.ph-selection-background:before {
  content: "\eaf8";
}.ph-light.ph-selection-foreground:before {
  content: "\eaf6";
}.ph-light.ph-selection-inverse:before {
  content: "\e744";
}.ph-light.ph-selection-plus:before {
  content: "\e69c";
}.ph-light.ph-selection-slash:before {
  content: "\e69e";
}.ph-light.ph-shapes:before {
  content: "\ec5e";
}.ph-light.ph-share:before {
  content: "\e406";
}.ph-light.ph-share-fat:before {
  content: "\ed52";
}.ph-light.ph-share-network:before {
  content: "\e408";
}.ph-light.ph-shield:before {
  content: "\e40a";
}.ph-light.ph-shield-check:before {
  content: "\e40c";
}.ph-light.ph-shield-checkered:before {
  content: "\e708";
}.ph-light.ph-shield-chevron:before {
  content: "\e40e";
}.ph-light.ph-shield-plus:before {
  content: "\e706";
}.ph-light.ph-shield-slash:before {
  content: "\e410";
}.ph-light.ph-shield-star:before {
  content: "\ec34";
}.ph-light.ph-shield-warning:before {
  content: "\e412";
}.ph-light.ph-shipping-container:before {
  content: "\e78c";
}.ph-light.ph-shirt-folded:before {
  content: "\ea92";
}.ph-light.ph-shooting-star:before {
  content: "\ecfa";
}.ph-light.ph-shopping-bag:before {
  content: "\e416";
}.ph-light.ph-shopping-bag-open:before {
  content: "\e418";
}.ph-light.ph-shopping-cart:before {
  content: "\e41e";
}.ph-light.ph-shopping-cart-simple:before {
  content: "\e420";
}.ph-light.ph-shovel:before {
  content: "\e9e6";
}.ph-light.ph-shower:before {
  content: "\e776";
}.ph-light.ph-shrimp:before {
  content: "\eab4";
}.ph-light.ph-shuffle:before {
  content: "\e422";
}.ph-light.ph-shuffle-angular:before {
  content: "\e424";
}.ph-light.ph-shuffle-simple:before {
  content: "\e426";
}.ph-light.ph-sidebar:before {
  content: "\eab6";
}.ph-light.ph-sidebar-simple:before {
  content: "\ec24";
}.ph-light.ph-sigma:before {
  content: "\eab8";
}.ph-light.ph-sign-in:before {
  content: "\e428";
}.ph-light.ph-sign-out:before {
  content: "\e42a";
}.ph-light.ph-signature:before {
  content: "\ebac";
}.ph-light.ph-signpost:before {
  content: "\e89c";
}.ph-light.ph-sim-card:before {
  content: "\e664";
}.ph-light.ph-siren:before {
  content: "\e9b8";
}.ph-light.ph-sketch-logo:before {
  content: "\e42c";
}.ph-light.ph-skip-back:before {
  content: "\e5a4";
}.ph-light.ph-skip-back-circle:before {
  content: "\e42e";
}.ph-light.ph-skip-forward:before {
  content: "\e5a6";
}.ph-light.ph-skip-forward-circle:before {
  content: "\e430";
}.ph-light.ph-skull:before {
  content: "\e916";
}.ph-light.ph-skype-logo:before {
  content: "\e8dc";
}.ph-light.ph-slack-logo:before {
  content: "\e5a8";
}.ph-light.ph-sliders:before {
  content: "\e432";
}.ph-light.ph-sliders-horizontal:before {
  content: "\e434";
}.ph-light.ph-slideshow:before {
  content: "\ed32";
}.ph-light.ph-smiley:before {
  content: "\e436";
}.ph-light.ph-smiley-angry:before {
  content: "\ec62";
}.ph-light.ph-smiley-blank:before {
  content: "\e438";
}.ph-light.ph-smiley-meh:before {
  content: "\e43a";
}.ph-light.ph-smiley-melting:before {
  content: "\ee56";
}.ph-light.ph-smiley-nervous:before {
  content: "\e43c";
}.ph-light.ph-smiley-sad:before {
  content: "\e43e";
}.ph-light.ph-smiley-sticker:before {
  content: "\e440";
}.ph-light.ph-smiley-wink:before {
  content: "\e666";
}.ph-light.ph-smiley-x-eyes:before {
  content: "\e442";
}.ph-light.ph-snapchat-logo:before {
  content: "\e668";
}.ph-light.ph-sneaker:before {
  content: "\e80c";
}.ph-light.ph-sneaker-move:before {
  content: "\ed60";
}.ph-light.ph-snowflake:before {
  content: "\e5aa";
}.ph-light.ph-soccer-ball:before {
  content: "\e716";
}.ph-light.ph-sock:before {
  content: "\ecce";
}.ph-light.ph-solar-panel:before {
  content: "\ed7a";
}.ph-light.ph-solar-roof:before {
  content: "\ed7b";
}.ph-light.ph-sort-ascending:before {
  content: "\e444";
}.ph-light.ph-sort-descending:before {
  content: "\e446";
}.ph-light.ph-soundcloud-logo:before {
  content: "\e8de";
}.ph-light.ph-spade:before {
  content: "\e448";
}.ph-light.ph-sparkle:before {
  content: "\e6a2";
}.ph-light.ph-speaker-hifi:before {
  content: "\ea08";
}.ph-light.ph-speaker-high:before {
  content: "\e44a";
}.ph-light.ph-speaker-low:before {
  content: "\e44c";
}.ph-light.ph-speaker-none:before {
  content: "\e44e";
}.ph-light.ph-speaker-simple-high:before {
  content: "\e450";
}.ph-light.ph-speaker-simple-low:before {
  content: "\e452";
}.ph-light.ph-speaker-simple-none:before {
  content: "\e454";
}.ph-light.ph-speaker-simple-slash:before {
  content: "\e456";
}.ph-light.ph-speaker-simple-x:before {
  content: "\e458";
}.ph-light.ph-speaker-slash:before {
  content: "\e45a";
}.ph-light.ph-speaker-x:before {
  content: "\e45c";
}.ph-light.ph-speedometer:before {
  content: "\ee74";
}.ph-light.ph-sphere:before {
  content: "\ee66";
}.ph-light.ph-spinner:before {
  content: "\e66a";
}.ph-light.ph-spinner-ball:before {
  content: "\ee28";
}.ph-light.ph-spinner-gap:before {
  content: "\e66c";
}.ph-light.ph-spiral:before {
  content: "\e9fa";
}.ph-light.ph-split-horizontal:before {
  content: "\e872";
}.ph-light.ph-split-vertical:before {
  content: "\e876";
}.ph-light.ph-spotify-logo:before {
  content: "\e66e";
}.ph-light.ph-spray-bottle:before {
  content: "\e7e4";
}.ph-light.ph-square:before {
  content: "\e45e";
}.ph-light.ph-square-half:before {
  content: "\e462";
}.ph-light.ph-square-half-bottom:before {
  content: "\eb16";
}.ph-light.ph-square-logo:before {
  content: "\e690";
}.ph-light.ph-square-split-horizontal:before {
  content: "\e870";
}.ph-light.ph-square-split-vertical:before {
  content: "\e874";
}.ph-light.ph-squares-four:before {
  content: "\e464";
}.ph-light.ph-stack:before {
  content: "\e466";
}.ph-light.ph-stack-minus:before {
  content: "\edf4";
}.ph-light.ph-stack-overflow-logo:before {
  content: "\eb78";
}.ph-light.ph-stack-plus:before {
  content: "\edf6";
}.ph-light.ph-stack-simple:before {
  content: "\e468";
}.ph-light.ph-stairs:before {
  content: "\e8ec";
}.ph-light.ph-stamp:before {
  content: "\ea48";
}.ph-light.ph-standard-definition:before {
  content: "\ea90";
}.ph-light.ph-star:before {
  content: "\e46a";
}.ph-light.ph-star-and-crescent:before {
  content: "\ecf4";
}.ph-light.ph-star-four:before {
  content: "\e6a4";
}.ph-light.ph-star-half:before {
  content: "\e70a";
}.ph-light.ph-star-of-david:before {
  content: "\e89e";
}.ph-light.ph-steam-logo:before {
  content: "\ead4";
}.ph-light.ph-steering-wheel:before {
  content: "\e9ac";
}.ph-light.ph-steps:before {
  content: "\ecbe";
}.ph-light.ph-stethoscope:before {
  content: "\e7ea";
}.ph-light.ph-sticker:before {
  content: "\e5ac";
}.ph-light.ph-stool:before {
  content: "\ea44";
}.ph-light.ph-stop:before {
  content: "\e46c";
}.ph-light.ph-stop-circle:before {
  content: "\e46e";
}.ph-light.ph-storefront:before {
  content: "\e470";
}.ph-light.ph-strategy:before {
  content: "\ea3a";
}.ph-light.ph-stripe-logo:before {
  content: "\e698";
}.ph-light.ph-student:before {
  content: "\e73e";
}.ph-light.ph-subset-of:before {
  content: "\edc0";
}.ph-light.ph-subset-proper-of:before {
  content: "\edb6";
}.ph-light.ph-subtitles:before {
  content: "\e1a8";
}.ph-light.ph-subtitles-slash:before {
  content: "\e1a6";
}.ph-light.ph-subtract:before {
  content: "\ebd6";
}.ph-light.ph-subtract-square:before {
  content: "\ebd4";
}.ph-light.ph-subway:before {
  content: "\e498";
}.ph-light.ph-suitcase:before {
  content: "\e5ae";
}.ph-light.ph-suitcase-rolling:before {
  content: "\e9b0";
}.ph-light.ph-suitcase-simple:before {
  content: "\e5b0";
}.ph-light.ph-sun:before {
  content: "\e472";
}.ph-light.ph-sun-dim:before {
  content: "\e474";
}.ph-light.ph-sun-horizon:before {
  content: "\e5b6";
}.ph-light.ph-sunglasses:before {
  content: "\e816";
}.ph-light.ph-superset-of:before {
  content: "\edb8";
}.ph-light.ph-superset-proper-of:before {
  content: "\edb4";
}.ph-light.ph-swap:before {
  content: "\e83c";
}.ph-light.ph-swatches:before {
  content: "\e5b8";
}.ph-light.ph-swimming-pool:before {
  content: "\ecb6";
}.ph-light.ph-sword:before {
  content: "\e5ba";
}.ph-light.ph-synagogue:before {
  content: "\ecec";
}.ph-light.ph-syringe:before {
  content: "\e968";
}.ph-light.ph-t-shirt:before {
  content: "\e670";
}.ph-light.ph-table:before {
  content: "\e476";
}.ph-light.ph-tabs:before {
  content: "\e778";
}.ph-light.ph-tag:before {
  content: "\e478";
}.ph-light.ph-tag-chevron:before {
  content: "\e672";
}.ph-light.ph-tag-simple:before {
  content: "\e47a";
}.ph-light.ph-target:before {
  content: "\e47c";
}.ph-light.ph-taxi:before {
  content: "\e902";
}.ph-light.ph-tea-bag:before {
  content: "\e8e6";
}.ph-light.ph-telegram-logo:before {
  content: "\e5bc";
}.ph-light.ph-television:before {
  content: "\e754";
}.ph-light.ph-television-simple:before {
  content: "\eae6";
}.ph-light.ph-tennis-ball:before {
  content: "\e720";
}.ph-light.ph-tent:before {
  content: "\e8ba";
}.ph-light.ph-terminal:before {
  content: "\e47e";
}.ph-light.ph-terminal-window:before {
  content: "\eae8";
}.ph-light.ph-test-tube:before {
  content: "\e7a0";
}.ph-light.ph-text-a-underline:before {
  content: "\ed34";
}.ph-light.ph-text-aa:before {
  content: "\e6ee";
}.ph-light.ph-text-align-center:before {
  content: "\e480";
}.ph-light.ph-text-align-justify:before {
  content: "\e482";
}.ph-light.ph-text-align-left:before {
  content: "\e484";
}.ph-light.ph-text-align-right:before {
  content: "\e486";
}.ph-light.ph-text-b:before {
  content: "\e5be";
}.ph-light.ph-text-bolder:before {
  content: "\e5be";
}.ph-light.ph-text-columns:before {
  content: "\ec96";
}.ph-light.ph-text-h:before {
  content: "\e6ba";
}.ph-light.ph-text-h-five:before {
  content: "\e6c4";
}.ph-light.ph-text-h-four:before {
  content: "\e6c2";
}.ph-light.ph-text-h-one:before {
  content: "\e6bc";
}.ph-light.ph-text-h-six:before {
  content: "\e6c6";
}.ph-light.ph-text-h-three:before {
  content: "\e6c0";
}.ph-light.ph-text-h-two:before {
  content: "\e6be";
}.ph-light.ph-text-indent:before {
  content: "\ea1e";
}.ph-light.ph-text-italic:before {
  content: "\e5c0";
}.ph-light.ph-text-outdent:before {
  content: "\ea1c";
}.ph-light.ph-text-strikethrough:before {
  content: "\e5c2";
}.ph-light.ph-text-subscript:before {
  content: "\ec98";
}.ph-light.ph-text-superscript:before {
  content: "\ec9a";
}.ph-light.ph-text-t:before {
  content: "\e48a";
}.ph-light.ph-text-t-slash:before {
  content: "\e488";
}.ph-light.ph-text-underline:before {
  content: "\e5c4";
}.ph-light.ph-textbox:before {
  content: "\eb0a";
}.ph-light.ph-thermometer:before {
  content: "\e5c6";
}.ph-light.ph-thermometer-cold:before {
  content: "\e5c8";
}.ph-light.ph-thermometer-hot:before {
  content: "\e5ca";
}.ph-light.ph-thermometer-simple:before {
  content: "\e5cc";
}.ph-light.ph-threads-logo:before {
  content: "\ed9e";
}.ph-light.ph-three-d:before {
  content: "\ea5a";
}.ph-light.ph-thumbs-down:before {
  content: "\e48c";
}.ph-light.ph-thumbs-up:before {
  content: "\e48e";
}.ph-light.ph-ticket:before {
  content: "\e490";
}.ph-light.ph-tidal-logo:before {
  content: "\ed1c";
}.ph-light.ph-tiktok-logo:before {
  content: "\eaf2";
}.ph-light.ph-tilde:before {
  content: "\eda8";
}.ph-light.ph-timer:before {
  content: "\e492";
}.ph-light.ph-tip-jar:before {
  content: "\e7e2";
}.ph-light.ph-tipi:before {
  content: "\ed30";
}.ph-light.ph-tire:before {
  content: "\edd2";
}.ph-light.ph-toggle-left:before {
  content: "\e674";
}.ph-light.ph-toggle-right:before {
  content: "\e676";
}.ph-light.ph-toilet:before {
  content: "\e79a";
}.ph-light.ph-toilet-paper:before {
  content: "\e79c";
}.ph-light.ph-toolbox:before {
  content: "\eca0";
}.ph-light.ph-tooth:before {
  content: "\e9cc";
}.ph-light.ph-tornado:before {
  content: "\e88c";
}.ph-light.ph-tote:before {
  content: "\e494";
}.ph-light.ph-tote-simple:before {
  content: "\e678";
}.ph-light.ph-towel:before {
  content: "\ede6";
}.ph-light.ph-tractor:before {
  content: "\ec6e";
}.ph-light.ph-trademark:before {
  content: "\e9f0";
}.ph-light.ph-trademark-registered:before {
  content: "\e3f4";
}.ph-light.ph-traffic-cone:before {
  content: "\e9a8";
}.ph-light.ph-traffic-sign:before {
  content: "\e67a";
}.ph-light.ph-traffic-signal:before {
  content: "\e9aa";
}.ph-light.ph-train:before {
  content: "\e496";
}.ph-light.ph-train-regional:before {
  content: "\e49e";
}.ph-light.ph-train-simple:before {
  content: "\e4a0";
}.ph-light.ph-tram:before {
  content: "\e9ec";
}.ph-light.ph-translate:before {
  content: "\e4a2";
}.ph-light.ph-trash:before {
  content: "\e4a6";
}.ph-light.ph-trash-simple:before {
  content: "\e4a8";
}.ph-light.ph-tray:before {
  content: "\e4aa";
}.ph-light.ph-tray-arrow-down:before {
  content: "\e010";
}.ph-light.ph-archive-tray:before {
  content: "\e010";
}.ph-light.ph-tray-arrow-up:before {
  content: "\ee52";
}.ph-light.ph-treasure-chest:before {
  content: "\ede2";
}.ph-light.ph-tree:before {
  content: "\e6da";
}.ph-light.ph-tree-evergreen:before {
  content: "\e6dc";
}.ph-light.ph-tree-palm:before {
  content: "\e91a";
}.ph-light.ph-tree-structure:before {
  content: "\e67c";
}.ph-light.ph-tree-view:before {
  content: "\ee48";
}.ph-light.ph-trend-down:before {
  content: "\e4ac";
}.ph-light.ph-trend-up:before {
  content: "\e4ae";
}.ph-light.ph-triangle:before {
  content: "\e4b0";
}.ph-light.ph-triangle-dashed:before {
  content: "\e4b2";
}.ph-light.ph-trolley:before {
  content: "\e5b2";
}.ph-light.ph-trolley-suitcase:before {
  content: "\e5b4";
}.ph-light.ph-trophy:before {
  content: "\e67e";
}.ph-light.ph-truck:before {
  content: "\e4b4";
}.ph-light.ph-truck-trailer:before {
  content: "\e4b6";
}.ph-light.ph-tumblr-logo:before {
  content: "\e8d4";
}.ph-light.ph-twitch-logo:before {
  content: "\e5ce";
}.ph-light.ph-twitter-logo:before {
  content: "\e4ba";
}.ph-light.ph-umbrella:before {
  content: "\e684";
}.ph-light.ph-umbrella-simple:before {
  content: "\e686";
}.ph-light.ph-union:before {
  content: "\edbe";
}.ph-light.ph-unite:before {
  content: "\e87e";
}.ph-light.ph-unite-square:before {
  content: "\e878";
}.ph-light.ph-upload:before {
  content: "\e4be";
}.ph-light.ph-upload-simple:before {
  content: "\e4c0";
}.ph-light.ph-usb:before {
  content: "\e956";
}.ph-light.ph-user:before {
  content: "\e4c2";
}.ph-light.ph-user-check:before {
  content: "\eafa";
}.ph-light.ph-user-circle:before {
  content: "\e4c4";
}.ph-light.ph-user-circle-check:before {
  content: "\ec38";
}.ph-light.ph-user-circle-dashed:before {
  content: "\ec36";
}.ph-light.ph-user-circle-gear:before {
  content: "\e4c6";
}.ph-light.ph-user-circle-minus:before {
  content: "\e4c8";
}.ph-light.ph-user-circle-plus:before {
  content: "\e4ca";
}.ph-light.ph-user-focus:before {
  content: "\e6fc";
}.ph-light.ph-user-gear:before {
  content: "\e4cc";
}.ph-light.ph-user-list:before {
  content: "\e73c";
}.ph-light.ph-user-minus:before {
  content: "\e4ce";
}.ph-light.ph-user-plus:before {
  content: "\e4d0";
}.ph-light.ph-user-rectangle:before {
  content: "\e4d2";
}.ph-light.ph-user-sound:before {
  content: "\eca8";
}.ph-light.ph-user-square:before {
  content: "\e4d4";
}.ph-light.ph-user-switch:before {
  content: "\e756";
}.ph-light.ph-users:before {
  content: "\e4d6";
}.ph-light.ph-users-four:before {
  content: "\e68c";
}.ph-light.ph-users-three:before {
  content: "\e68e";
}.ph-light.ph-van:before {
  content: "\e826";
}.ph-light.ph-vault:before {
  content: "\e76e";
}.ph-light.ph-vector-three:before {
  content: "\ee62";
}.ph-light.ph-vector-two:before {
  content: "\ee64";
}.ph-light.ph-vibrate:before {
  content: "\e4d8";
}.ph-light.ph-video:before {
  content: "\e740";
}.ph-light.ph-video-camera:before {
  content: "\e4da";
}.ph-light.ph-video-camera-slash:before {
  content: "\e4dc";
}.ph-light.ph-video-conference:before {
  content: "\edce";
}.ph-light.ph-vignette:before {
  content: "\eba2";
}.ph-light.ph-vinyl-record:before {
  content: "\ecac";
}.ph-light.ph-virtual-reality:before {
  content: "\e7b8";
}.ph-light.ph-virus:before {
  content: "\e7d6";
}.ph-light.ph-visor:before {
  content: "\ee2a";
}.ph-light.ph-voicemail:before {
  content: "\e4de";
}.ph-light.ph-volleyball:before {
  content: "\e726";
}.ph-light.ph-wall:before {
  content: "\e688";
}.ph-light.ph-wallet:before {
  content: "\e68a";
}.ph-light.ph-warehouse:before {
  content: "\ecd4";
}.ph-light.ph-warning:before {
  content: "\e4e0";
}.ph-light.ph-warning-circle:before {
  content: "\e4e2";
}.ph-light.ph-warning-diamond:before {
  content: "\e7fc";
}.ph-light.ph-warning-octagon:before {
  content: "\e4e4";
}.ph-light.ph-washing-machine:before {
  content: "\ede8";
}.ph-light.ph-watch:before {
  content: "\e4e6";
}.ph-light.ph-wave-sawtooth:before {
  content: "\ea9c";
}.ph-light.ph-wave-sine:before {
  content: "\ea9a";
}.ph-light.ph-wave-square:before {
  content: "\ea9e";
}.ph-light.ph-wave-triangle:before {
  content: "\eaa0";
}.ph-light.ph-waveform:before {
  content: "\e802";
}.ph-light.ph-waveform-slash:before {
  content: "\e800";
}.ph-light.ph-waves:before {
  content: "\e6de";
}.ph-light.ph-webcam:before {
  content: "\e9b2";
}.ph-light.ph-webcam-slash:before {
  content: "\ecdc";
}.ph-light.ph-webhooks-logo:before {
  content: "\ecae";
}.ph-light.ph-wechat-logo:before {
  content: "\e8d2";
}.ph-light.ph-whatsapp-logo:before {
  content: "\e5d0";
}.ph-light.ph-wheelchair:before {
  content: "\e4e8";
}.ph-light.ph-wheelchair-motion:before {
  content: "\e89a";
}.ph-light.ph-wifi-high:before {
  content: "\e4ea";
}.ph-light.ph-wifi-low:before {
  content: "\e4ec";
}.ph-light.ph-wifi-medium:before {
  content: "\e4ee";
}.ph-light.ph-wifi-none:before {
  content: "\e4f0";
}.ph-light.ph-wifi-slash:before {
  content: "\e4f2";
}.ph-light.ph-wifi-x:before {
  content: "\e4f4";
}.ph-light.ph-wind:before {
  content: "\e5d2";
}.ph-light.ph-windmill:before {
  content: "\e9f8";
}.ph-light.ph-windows-logo:before {
  content: "\e692";
}.ph-light.ph-wine:before {
  content: "\e6b2";
}.ph-light.ph-wrench:before {
  content: "\e5d4";
}.ph-light.ph-x:before {
  content: "\e4f6";
}.ph-light.ph-x-circle:before {
  content: "\e4f8";
}.ph-light.ph-x-logo:before {
  content: "\e4bc";
}.ph-light.ph-x-square:before {
  content: "\e4fa";
}.ph-light.ph-yarn:before {
  content: "\ed9a";
}.ph-light.ph-yin-yang:before {
  content: "\e92a";
}.ph-light.ph-youtube-logo:before {
  content: "\e4fc";
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}.swiper-horizontal {
  touch-action: pan-y;
}.swiper-vertical {
  touch-action: pan-x;
}.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}.swiper-slide-invisible-blank {
  visibility: hidden;
}/* Auto Height */.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}/* 3D Effects */.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}.swiper-3d {
  perspective: 1200px;
}.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}/* CSS Mode */.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}/* Slide styles start *//* 3D Shadows */.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/* Slide styles end */:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}.swiper-button-lock {
  display: none;
}/* Navigation font start */.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}/* Navigation font end */:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}/* Common Styles */.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}/* Bullets */.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}.swiper-pagination-bullet:only-child {
  display: none !important;
}.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}/* Fraction */.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}/* Progress */.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}.swiper-pagination-lock {
  display: none;
}/* Template Name: Techwind - Multipurpose Tailwind CSS Landing Page Template
   Author: Shreethemes
   Email: support@shreethemes.in
   Website: https://shreethemes.in
   Version: 1.9.5
   Created: May 2022
   File: Main Css File
*/*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
 *//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}::before,
::after {
  --tw-content: '';
}/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Nunito, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}/*
Remove the default font size and weight for headings.
*/h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}/*
Reset links to optimize for opt-in styling instead of opt-out.
*/a {
  color: inherit;
  text-decoration: inherit;
}/*
Add the correct font weight in Edge and Safari.
*/b,
strong {
  font-weight: bolder;
}/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}/*
Add the correct font size in all browsers.
*/small {
  font-size: 80%;
}/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}sub {
  bottom: -0.25em;
}sup {
  top: -0.5em;
}/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}/*
Remove the inheritance of text transform in Edge and Firefox.
*/button,
select {
  text-transform: none;
}/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}/*
Use the modern Firefox focus style for all focusable elements.
*/:-moz-focusring {
  outline: auto;
}/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/:-moz-ui-invalid {
  box-shadow: none;
}/*
Add the correct vertical alignment in Chrome and Firefox.
*/progress {
  vertical-align: baseline;
}/*
Correct the cursor style of increment and decrement buttons in Safari.
*/::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}/*
Remove the inner padding in Chrome and Safari on macOS.
*/::-webkit-search-decoration {
  -webkit-appearance: none;
}/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}/*
Add the correct display in Chrome and Safari.
*/summary {
  display: list-item;
}/*
Removes the default spacing and border for appropriate elements.
*/blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}fieldset {
  margin: 0;
  padding: 0;
}legend {
  padding: 0;
}ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}/*
Reset default styling for dialogs.
*/dialog {
  padding: 0;
}/*
Prevent resizing textareas horizontally by default.
*/textarea {
  resize: vertical;
}/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}/*
Set the default cursor for buttons.
*/button,
[role="button"] {
  cursor: pointer;
}/*
Make sure disabled buttons don't get the pointer cursor.
*/:disabled {
  cursor: default;
}/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/img,
video {
  max-width: 100%;
  height: auto;
}/* Make elements with the HTML hidden attribute stay hidden by default */[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}::-webkit-datetime-edit{
  display: inline-flex;
}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}[multiple],[size]:where(select:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}[type='checkbox']{
  border-radius: 0px;
}[type='radio']{
  border-radius: 100%;
}[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}@media (forced-colors: active) {[type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}@media (forced-colors: active) {[type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}@media (forced-colors: active) {[type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}.container{
  width: 100%;
}@media (min-width: 640px){.container{
    max-width: 640px;
  }
}@media (min-width: 768px){.container{
    max-width: 768px;
  }
}@media (min-width: 1024px){.container{
    max-width: 1024px;
  }
}@media (min-width: 1280px){.container{
    max-width: 1280px;
  }
}@media (min-width: 1536px){.container{
    max-width: 1536px;
  }
}.form-input,.form-textarea,.form-select,.form-multiselect{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}.form-input::-moz-placeholder, .form-textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}.form-input::placeholder,.form-textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}.form-input::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}.form-input::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}.form-input::-webkit-datetime-edit{
  display: inline-flex;
}.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}.form-checkbox,.form-radio{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}.form-checkbox{
  border-radius: 0px;
}.form-checkbox:focus,.form-radio:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}.form-checkbox:checked,.form-radio:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}.form-checkbox:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}@media (forced-colors: active) {.form-checkbox:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}.form-checkbox:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}@media (forced-colors: active) {.form-checkbox:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}.form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
}.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: open-quote;
}.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: close-quote;
}.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 800;
  color: inherit;
}.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: "`";
}.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: "`";
}.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.875em;
}.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.9em;
}.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: none;
}.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: none;
}.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 0;
}.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: baseline;
}.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: top;
}.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  text-align: start;
}.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}.fixed{
  position: fixed;
}.absolute{
  position: absolute;
}.relative{
  position: relative;
}.sticky{
  position: sticky;
}.inset-0{
  inset: 0px;
}.-left-32{
  left: -8rem;
}.-right-32{
  right: -8rem;
}.bottom-0{
  bottom: 0px;
}.bottom-4{
  bottom: 1rem;
}.left-0{
  left: 0px;
}.right-0{
  right: 0px;
}.right-2{
  right: 0.5rem;
}.start-4{
  inset-inline-start: 1rem;
}.top-0{
  top: 0px;
}.top-2{
  top: 0.5rem;
}.top-3{
  top: 0.75rem;
}.top-4{
  top: 1rem;
}.top-\[100\%\]{
  top: 100%;
}.top-full{
  top: 100%;
}.z-0{
  z-index: 0;
}.z-10{
  z-index: 10;
}.z-40{
  z-index: 40;
}.z-50{
  z-index: 50;
}.order-1{
  order: 1;
}.order-2{
  order: 2;
}.col-span-6{
  grid-column: span 6 / span 6;
}.mx-0\.5{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}.mx-auto{
  margin-left: auto;
  margin-right: auto;
}.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}.-ml-1{
  margin-left: -0.25rem;
}.-ml-px{
  margin-left: -1px;
}.-mr-0\.5{
  margin-right: -0.125rem;
}.-mr-1{
  margin-right: -0.25rem;
}.-mr-2{
  margin-right: -0.5rem;
}.-mt-px{
  margin-top: -1px;
}.mb-0{
  margin-bottom: 0px;
}.mb-10{
  margin-bottom: 2.5rem;
}.mb-2{
  margin-bottom: 0.5rem;
}.mb-4{
  margin-bottom: 1rem;
}.mb-5{
  margin-bottom: 1.25rem;
}.mb-6{
  margin-bottom: 1.5rem;
}.ml-1{
  margin-left: 0.25rem;
}.ml-12{
  margin-left: 3rem;
}.ml-2{
  margin-left: 0.5rem;
}.ml-3{
  margin-left: 0.75rem;
}.ml-4{
  margin-left: 1rem;
}.ml-6{
  margin-left: 1.5rem;
}.ml-auto{
  margin-left: auto;
}.mr-2{
  margin-right: 0.5rem;
}.mr-3{
  margin-right: 0.75rem;
}.mr-4{
  margin-right: 1rem;
}.mr-6{
  margin-right: 1.5rem;
}.mt-1{
  margin-top: 0.25rem;
}.mt-10{
  margin-top: 2.5rem;
}.mt-2{
  margin-top: 0.5rem;
}.mt-3{
  margin-top: 0.75rem;
}.mt-4{
  margin-top: 1rem;
}.mt-5{
  margin-top: 1.25rem;
}.mt-6{
  margin-top: 1.5rem;
}.mt-8{
  margin-top: 2rem;
}.mt-auto{
  margin-top: auto;
}.mb-1{
  margin-bottom: 0.25rem;
}.mt-7{
  margin-top: 1.75rem;
}.block{
  display: block;
}.inline-block{
  display: inline-block;
}.inline{
  display: inline;
}.flex{
  display: flex;
}.inline-flex{
  display: inline-flex;
}.table{
  display: table;
}.grid{
  display: grid;
}.hidden{
  display: none;
}.h-1\/2{
  height: 50%;
}.h-10{
  height: 2.5rem;
}.h-12{
  height: 3rem;
}.h-16{
  height: 4rem;
}.h-20{
  height: 5rem;
}.h-24{
  height: 6rem;
}.h-28{
  height: 7rem;
}.h-4{
  height: 1rem;
}.h-48{
  height: 12rem;
}.h-5{
  height: 1.25rem;
}.h-6{
  height: 1.5rem;
}.h-8{
  height: 2rem;
}.h-9{
  height: 2.25rem;
}.h-\[120px\]{
  height: 120px;
}.h-\[46px\]{
  height: 46px;
}.h-auto{
  height: auto;
}.h-full{
  height: 100%;
}.max-h-\[400px\]{
  max-height: 400px;
}.max-h-\[500px\]{
  max-height: 500px;
}.max-h-\[600px\]{
  max-height: 600px;
}.max-h-\[85vh\]{
  max-height: 85vh;
}.min-h-screen{
  min-height: 100vh;
}.w-0{
  width: 0px;
}.w-1\/2{
  width: 50%;
}.w-10{
  width: 2.5rem;
}.w-12{
  width: 3rem;
}.w-16{
  width: 4rem;
}.w-20{
  width: 5rem;
}.w-24{
  width: 6rem;
}.w-3\/4{
  width: 75%;
}.w-32{
  width: 8rem;
}.w-4{
  width: 1rem;
}.w-48{
  width: 12rem;
}.w-5{
  width: 1.25rem;
}.w-6{
  width: 1.5rem;
}.w-60{
  width: 15rem;
}.w-64{
  width: 16rem;
}.w-8{
  width: 2rem;
}.w-\[1200px\]{
  width: 1200px;
}.w-\[120px\]{
  width: 120px;
}.w-auto{
  width: auto;
}.w-full{
  width: 100%;
}.min-w-0{
  min-width: 0px;
}.min-w-full{
  min-width: 100%;
}.max-w-6xl{
  max-width: 72rem;
}.max-w-7xl{
  max-width: 80rem;
}.max-w-8xl{
  max-width: 1400px;
}.max-w-full{
  max-width: 100%;
}.max-w-md{
  max-width: 28rem;
}.max-w-screen-xl{
  max-width: 1280px;
}.max-w-xl{
  max-width: 36rem;
}.max-w-2xl{
  max-width: 42rem;
}.flex-1{
  flex: 1 1 0%;
}.flex-shrink-0{
  flex-shrink: 0;
}.shrink-0{
  flex-shrink: 0;
}.flex-grow{
  flex-grow: 1;
}.grow{
  flex-grow: 1;
}.origin-top{
  transform-origin: top;
}.origin-top-left{
  transform-origin: top left;
}.origin-top-right{
  transform-origin: top right;
}.translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.translate-y-4{
  --tw-translate-y: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.rotate-45{
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.scale-95{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.cursor-default{
  cursor: default;
}.cursor-pointer{
  cursor: pointer;
}.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}.list-inside{
  list-style-position: inside;
}.list-disc{
  list-style-type: disc;
}.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}.columns-2{
  -moz-columns: 2;
       columns: 2;
}.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}.grid-cols-6{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}.flex-row{
  flex-direction: row;
}.flex-col{
  flex-direction: column;
}.flex-wrap{
  flex-wrap: wrap;
}.items-start{
  align-items: flex-start;
}.items-center{
  align-items: center;
}.justify-end{
  justify-content: flex-end;
}.justify-center{
  justify-content: center;
}.justify-between{
  justify-content: space-between;
}.justify-items-end{
  justify-items: end;
}.gap-1{
  gap: 0.25rem;
}.gap-2{
  gap: 0.5rem;
}.gap-4{
  gap: 1rem;
}.gap-6{
  gap: 1.5rem;
}.gap-\[16px\]{
  gap: 16px;
}.gap-\[30px\]{
  gap: 30px;
}.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}.overflow-hidden{
  overflow: hidden;
}.overflow-y-auto{
  overflow-y: auto;
}.overflow-x-hidden{
  overflow-x: hidden;
}.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}.break-all{
  word-break: break-all;
}.rounded{
  border-radius: 0.25rem;
}.rounded-2xl{
  border-radius: 1rem;
}.rounded-full{
  border-radius: 9999px;
}.rounded-lg{
  border-radius: 0.5rem;
}.rounded-md{
  border-radius: 0.375rem;
}.rounded-xl{
  border-radius: 0.75rem;
}.rounded-b-none{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}.rounded-l-md{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}.rounded-r-md{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}.rounded-t-none{
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}.border{
  border-width: 1px;
}.border-2{
  border-width: 2px;
}.border-4{
  border-width: 4px;
}.border-\[14px\]{
  border-width: 14px;
}.border-b{
  border-bottom-width: 1px;
}.border-b-2{
  border-bottom-width: 2px;
}.border-l{
  border-left-width: 1px;
}.border-l-0{
  border-left-width: 0px;
}.border-l-4{
  border-left-width: 4px;
}.border-r{
  border-right-width: 1px;
}.border-r-0{
  border-right-width: 0px;
}.border-t{
  border-top-width: 1px;
}.border-dotted{
  border-style: dotted;
}.border-none{
  border-style: none;
}.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}.border-jaivee-400{
  --tw-border-opacity: 1;
  border-color: rgb(43 53 104 / var(--tw-border-opacity, 1));
}.border-red-400{
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}.border-site-300{
  --tw-border-opacity: 1;
  border-color: rgb(129 206 144 / var(--tw-border-opacity, 1));
}.border-site-300\/10{
  border-color: rgb(129 206 144 / 0.1);
}.border-site-600{
  --tw-border-opacity: 1;
  border-color: rgb(47 185 74 / var(--tw-border-opacity, 1));
}.border-site-800{
  --tw-border-opacity: 1;
  border-color: rgb(43 53 104 / var(--tw-border-opacity, 1));
}.border-transparent{
  border-color: transparent;
}.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(17 17 17 / var(--tw-bg-opacity, 1));
}.bg-black\/40{
  background-color: rgb(17 17 17 / 0.4);
}.bg-black\/50{
  background-color: rgb(17 17 17 / 0.5);
}.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}.bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}.bg-green-700{
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}.bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgb(5 109 108 / var(--tw-bg-opacity, 1));
}.bg-jaivee-400{
  --tw-bg-opacity: 1;
  background-color: rgb(43 53 104 / var(--tw-bg-opacity, 1));
}.bg-jaivee-bg{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.bg-orange-300{
  --tw-bg-opacity: 1;
  background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
}.bg-orange-400{
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}.bg-red-300{
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}.bg-red-400{
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}.bg-red-700{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}.bg-site-300{
  --tw-bg-opacity: 1;
  background-color: rgb(129 206 144 / var(--tw-bg-opacity, 1));
}.bg-site-300\/60{
  background-color: rgb(129 206 144 / 0.6);
}.bg-site-300\/80{
  background-color: rgb(129 206 144 / 0.8);
}.bg-site-600{
  --tw-bg-opacity: 1;
  background-color: rgb(47 185 74 / var(--tw-bg-opacity, 1));
}.bg-site-600\/90{
  background-color: rgb(47 185 74 / 0.9);
}.bg-site-800{
  --tw-bg-opacity: 1;
  background-color: rgb(43 53 104 / var(--tw-bg-opacity, 1));
}.bg-transparent{
  background-color: transparent;
}.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}.bg-opacity-25{
  --tw-bg-opacity: 0.25;
}.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}.to-black\/60{
  --tw-gradient-to: rgb(17 17 17 / 0.6) var(--tw-gradient-to-position);
}.bg-cover{
  background-size: cover;
}.bg-fixed{
  background-attachment: fixed;
}.bg-center{
  background-position: center;
}.bg-no-repeat{
  background-repeat: no-repeat;
}.fill-black{
  fill: #111111;
}.fill-current{
  fill: currentColor;
}.fill-site-300{
  fill: #81CE90;
}.fill-site-800{
  fill: #2b3568;
}.fill-white{
  fill: #fff;
}.fill-yellow-400{
  fill: #facc15;
}.stroke-gray-400{
  stroke: #9ca3af;
}.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}.p-1{
  padding: 0.25rem;
}.p-2{
  padding: 0.5rem;
}.p-3{
  padding: 0.75rem;
}.p-4{
  padding: 1rem;
}.p-6{
  padding: 1.5rem;
}.p-8{
  padding: 2rem;
}.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}.px-7{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}.pb-1{
  padding-bottom: 0.25rem;
}.pb-10{
  padding-bottom: 2.5rem;
}.pb-14{
  padding-bottom: 3.5rem;
}.pb-16{
  padding-bottom: 4rem;
}.pb-3{
  padding-bottom: 0.75rem;
}.pb-4{
  padding-bottom: 1rem;
}.pl-3{
  padding-left: 0.75rem;
}.pl-4{
  padding-left: 1rem;
}.pr-4{
  padding-right: 1rem;
}.ps-11{
  padding-inline-start: 2.75rem;
}.pt-1{
  padding-top: 0.25rem;
}.pt-10{
  padding-top: 2.5rem;
}.pt-16{
  padding-top: 4rem;
}.pt-2{
  padding-top: 0.5rem;
}.pt-24{
  padding-top: 6rem;
}.pt-4{
  padding-top: 1rem;
}.pt-5{
  padding-top: 1.25rem;
}.pt-6{
  padding-top: 1.5rem;
}.pt-8{
  padding-top: 2rem;
}.text-left{
  text-align: left;
}.text-center{
  text-align: center;
}.text-right{
  text-align: right;
}.text-start{
  text-align: start;
}.align-middle{
  vertical-align: middle;
}.font-\[DIN\]{
  font-family: DIN;
}.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}.font-sans{
  font-family: Nunito, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}.text-\[13px\]{
  font-size: 13px;
}.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}.font-bold{
  font-weight: 700;
}.font-medium{
  font-weight: 500;
}.font-semibold{
  font-weight: 600;
}.uppercase{
  text-transform: uppercase;
}.italic{
  font-style: italic;
}.leading-4{
  line-height: 1rem;
}.leading-5{
  line-height: 1.25rem;
}.leading-7{
  line-height: 1.75rem;
}.leading-none{
  line-height: 1;
}.leading-normal{
  line-height: 1.5;
}.leading-relaxed{
  line-height: 1.625;
}.leading-tight{
  line-height: 1.25;
}.tracking-\[0\.5px\]{
  letter-spacing: 0.5px;
}.tracking-wider{
  letter-spacing: 0.05em;
}.tracking-widest{
  letter-spacing: 0.1em;
}.text-black{
  --tw-text-opacity: 1;
  color: rgb(17 17 17 / var(--tw-text-opacity, 1));
}.text-gray-200{
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}.text-green-400{
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}.text-indigo-600{
  --tw-text-opacity: 1;
  color: rgb(5 109 108 / var(--tw-text-opacity, 1));
}.text-indigo-700{
  --tw-text-opacity: 1;
  color: rgb(1 3 38 / var(--tw-text-opacity, 1));
}.text-jaivee-400{
  --tw-text-opacity: 1;
  color: rgb(43 53 104 / var(--tw-text-opacity, 1));
}.text-red-400{
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}.text-site-300{
  --tw-text-opacity: 1;
  color: rgb(129 206 144 / var(--tw-text-opacity, 1));
}.text-site-600{
  --tw-text-opacity: 1;
  color: rgb(47 185 74 / var(--tw-text-opacity, 1));
}.text-site-800{
  --tw-text-opacity: 1;
  color: rgb(43 53 104 / var(--tw-text-opacity, 1));
}.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.text-white\/50{
  color: rgb(255 255 255 / 0.5);
}.underline{
  text-decoration-line: underline;
}.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}.opacity-0{
  opacity: 0;
}.opacity-100{
  opacity: 1;
}.opacity-50{
  opacity: 0.5;
}.opacity-75{
  opacity: 0.75;
}.opacity-80{
  opacity: 0.8;
}.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}.ring-1{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}.ring-black{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 17 17 / var(--tw-ring-opacity, 1));
}.ring-gray-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}.ring-opacity-5{
  --tw-ring-opacity: 0.05;
}.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.duration-150{
  transition-duration: 150ms;
}.duration-200{
  transition-duration: 200ms;
}.duration-300{
  transition-duration: 300ms;
}.duration-500{
  transition-duration: 500ms;
}.duration-75{
  transition-duration: 75ms;
}.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}:root {
  --animate-delay: 0.2s;
}/* 
========================
      BUTTON THREE
========================
*/.btn-animate{
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.btn-animate.btn-animate-lg{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
}.btn-animate.btn-animate-lg > span{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.btn-animate.btn-animate-lg::after{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}.btn-animate.btn-animate-white > span{
  --tw-text-opacity: 1;
  color: rgb(129 206 144 / var(--tw-text-opacity, 1));
}.btn-animate.btn-animate-white:hover span{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.btn-animate.btn-animate-white::before{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.btn-animate.btn-animate-white::after{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}.btn-animate:hover{
  --tw-text-opacity: 1;
  color: rgb(129 206 144 / var(--tw-text-opacity, 1));
}.btn-animate > span{
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
}.btn-animate::before{
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(129 206 144 / var(--tw-bg-opacity, 1));
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}.btn-animate:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}.btn-animate::after{
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(129 206 144 / var(--tw-border-opacity, 1));
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  transform: scale(1.2, 1.2);
}.btn-animate:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}.rte ol, .rte ul{
  margin-left: 1rem;
}.rte ul {
  list-style: disc;
}.rte ol {
  list-style: decimal;
}.rte h1{
  margin-bottom: 1rem;
  display: block;
  border-bottom-width: 4px;
  border-style: dotted;
  --tw-border-opacity: 1;
  border-color: rgb(47 185 74 / var(--tw-border-opacity, 1));
  font-size: 3.75rem;
  line-height: 1;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(43 53 104 / var(--tw-text-opacity, 1));
}.rte h1:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(129 206 144 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(129 206 144 / var(--tw-text-opacity, 1));
}.rte h2{
  margin-bottom: 1rem;
  display: block;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(47 185 74 / var(--tw-border-opacity, 1));
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(17 17 17 / var(--tw-text-opacity, 1));
}.rte h2:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.rte h3{
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(47 185 74 / var(--tw-text-opacity, 1));
}.rte h3:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.rte h4{
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(43 53 104 / var(--tw-text-opacity, 1));
}.rte h4:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(129 206 144 / var(--tw-text-opacity, 1));
}.rte h1, .rte h2, .rte h3, .rte h4, .rte h5 {
  scroll-margin-top: 100px;
}#mobileMenu.is-open{
  display: flex;
}.custom-shape-divider-bottom-1747316469 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}.custom-shape-divider-bottom-1747316469 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 174px;
}.custom-shape-divider-bottom-1747316469 .shape-fill {
  fill: #2B3568;
}.dark\:prose-invert:is(.dark *){
  --tw-prose-body: var(--tw-prose-invert-body);
  --tw-prose-headings: var(--tw-prose-invert-headings);
  --tw-prose-lead: var(--tw-prose-invert-lead);
  --tw-prose-links: var(--tw-prose-invert-links);
  --tw-prose-bold: var(--tw-prose-invert-bold);
  --tw-prose-counters: var(--tw-prose-invert-counters);
  --tw-prose-bullets: var(--tw-prose-invert-bullets);
  --tw-prose-hr: var(--tw-prose-invert-hr);
  --tw-prose-quotes: var(--tw-prose-invert-quotes);
  --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
  --tw-prose-captions: var(--tw-prose-invert-captions);
  --tw-prose-kbd: var(--tw-prose-invert-kbd);
  --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
  --tw-prose-code: var(--tw-prose-invert-code);
  --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
  --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
  --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
  --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}.hover\:scale-125:hover{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.hover\:border-gray-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}.hover\:border-site-800:hover{
  --tw-border-opacity: 1;
  border-color: rgb(43 53 104 / var(--tw-border-opacity, 1));
}.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}.hover\:bg-gray-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}.hover\:bg-indigo-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(5 109 108 / var(--tw-bg-opacity, 1));
}.hover\:bg-jaivee-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(204 95 28 / var(--tw-bg-opacity, 1));
}.hover\:bg-red-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}.hover\:bg-red-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}.hover\:bg-site-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(129 206 144 / var(--tw-bg-opacity, 1));
}.hover\:bg-site-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(47 185 74 / var(--tw-bg-opacity, 1));
}.hover\:bg-site-600\/90:hover{
  background-color: rgb(47 185 74 / 0.9);
}.hover\:bg-transparent:hover{
  background-color: transparent;
}.hover\:text-gray-400:hover{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}.hover\:text-gray-500:hover{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}.hover\:text-gray-800:hover{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}.hover\:text-jaivee-400:hover{
  --tw-text-opacity: 1;
  color: rgb(43 53 104 / var(--tw-text-opacity, 1));
}.hover\:text-site-300:hover{
  --tw-text-opacity: 1;
  color: rgb(129 206 144 / var(--tw-text-opacity, 1));
}.hover\:text-site-800:hover{
  --tw-text-opacity: 1;
  color: rgb(43 53 104 / var(--tw-text-opacity, 1));
}.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.hover\:text-red-800:hover{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}.hover\:underline:hover{
  text-decoration-line: underline;
}.hover\:shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.focus\:z-10:focus{
  z-index: 10;
}.focus\:border-none:focus{
  border-style: none;
}.focus\:border-blue-300:focus{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}.focus\:border-gray-300:focus{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}.focus\:border-indigo-700:focus{
  --tw-border-opacity: 1;
  border-color: rgb(1 3 38 / var(--tw-border-opacity, 1));
}.focus\:border-jaivee-400:focus{
  --tw-border-opacity: 1;
  border-color: rgb(43 53 104 / var(--tw-border-opacity, 1));
}.focus\:border-site-600:focus{
  --tw-border-opacity: 1;
  border-color: rgb(47 185 74 / var(--tw-border-opacity, 1));
}.focus\:bg-gray-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}.focus\:bg-gray-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}.focus\:bg-gray-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}.focus\:bg-gray-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}.focus\:bg-indigo-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(5 109 108 / var(--tw-bg-opacity, 1));
}.focus\:bg-red-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}.focus\:text-gray-500:focus{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}.focus\:text-gray-700:focus{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}.focus\:text-gray-800:focus{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}.focus\:text-gray-900:focus{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}.focus\:ring:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}.focus\:ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}.focus\:ring-jaivee-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(43 53 104 / var(--tw-ring-opacity, 1));
}.focus\:ring-jaivee-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 95 28 / var(--tw-ring-opacity, 1));
}.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}.focus\:ring-site-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(47 185 74 / var(--tw-ring-opacity, 1));
}.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}.active\:bg-gray-100:active{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}.active\:bg-gray-50:active{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}.active\:bg-gray-900:active{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}.active\:bg-red-700:active{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}.active\:text-gray-500:active{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}.active\:text-gray-700:active{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}.disabled\:opacity-25:disabled{
  opacity: 0.25;
}.group:hover .group-hover\:block{
  display: block;
}.group:hover .group-hover\:scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.group:hover .group-hover\:to-site-600\/60{
  --tw-gradient-to: rgb(47 185 74 / 0.6) var(--tw-gradient-to-position);
}.peer:checked ~ .peer-checked\:block{
  display: block;
}.dark\:border-gray-500:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}.dark\:border-gray-600:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}.dark\:border-gray-700:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}.dark\:border-gray-800:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}.dark\:border-indigo-600:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(5 109 108 / var(--tw-border-opacity, 1));
}.dark\:bg-gray-200:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}.dark\:bg-gray-700:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}.dark\:bg-gray-800:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}.dark\:bg-gray-900:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}.dark\:bg-transparent:is(.dark *){
  background-color: transparent;
}.dark\:bg-white:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.dark\:bg-gradient-to-bl:is(.dark *){
  background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
}.dark\:from-gray-700\/50:is(.dark *){
  --tw-gradient-from: rgb(55 65 81 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}.dark\:via-transparent:is(.dark *){
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}.dark\:fill-white:is(.dark *){
  fill: #fff;
}.dark\:text-gray-100:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}.dark\:text-gray-200:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}.dark\:text-gray-300:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}.dark\:text-gray-400:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}.dark\:text-gray-500:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}.dark\:text-gray-800:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}.dark\:text-green-400:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}.dark\:text-red-400:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}.dark\:text-site-300:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(129 206 144 / var(--tw-text-opacity, 1));
}.dark\:text-slate-200:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}.dark\:text-white:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.dark\:shadow-gray-800:is(.dark *){
  --tw-shadow-color: #1f2937;
  --tw-shadow: var(--tw-shadow-colored);
}.dark\:hover\:border-gray-600:hover:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}.dark\:hover\:border-gray-700:hover:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}.dark\:hover\:bg-gray-700:hover:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}.dark\:hover\:bg-gray-800:hover:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}.dark\:hover\:bg-gray-900:hover:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}.dark\:hover\:bg-site-300:hover:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(129 206 144 / var(--tw-bg-opacity, 1));
}.dark\:hover\:bg-white:hover:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.dark\:hover\:text-gray-100:hover:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}.dark\:hover\:text-gray-200:hover:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}.dark\:hover\:text-gray-300:hover:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}.dark\:hover\:text-gray-400:hover:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}.dark\:hover\:text-site-800:hover:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(43 53 104 / var(--tw-text-opacity, 1));
}.dark\:focus\:border-gray-600:focus:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}.dark\:focus\:border-gray-700:focus:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}.dark\:focus\:border-indigo-600:focus:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(5 109 108 / var(--tw-border-opacity, 1));
}.dark\:focus\:border-site-600:focus:is(.dark *){
  --tw-border-opacity: 1;
  border-color: rgb(47 185 74 / var(--tw-border-opacity, 1));
}.dark\:focus\:bg-gray-700:focus:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}.dark\:focus\:bg-gray-800:focus:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}.dark\:focus\:bg-gray-900:focus:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}.dark\:focus\:bg-white:focus:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.dark\:focus\:text-gray-200:focus:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}.dark\:focus\:text-gray-300:focus:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}.dark\:focus\:text-gray-400:focus:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}.dark\:focus\:ring-indigo-600:focus:is(.dark *){
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 109 108 / var(--tw-ring-opacity, 1));
}.dark\:focus\:ring-offset-gray-800:focus:is(.dark *){
  --tw-ring-offset-color: #1f2937;
}.dark\:active\:bg-gray-300:active:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}.dark\:active\:bg-gray-700:active:is(.dark *){
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}@media (min-width: 640px){.sm\:col-span-3{
    grid-column: span 3 / span 3;
  }.sm\:col-span-4{
    grid-column: span 4 / span 4;
  }.sm\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }.sm\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }.sm\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }.sm\:-mr-2{
    margin-right: -0.5rem;
  }.sm\:ml-10{
    margin-left: 2.5rem;
  }.sm\:ml-3{
    margin-left: 0.75rem;
  }.sm\:ml-4{
    margin-left: 1rem;
  }.sm\:ml-6{
    margin-left: 1.5rem;
  }.sm\:mt-0{
    margin-top: 0px;
  }.sm\:block{
    display: block;
  }.sm\:flex{
    display: flex;
  }.sm\:hidden{
    display: none;
  }.sm\:h-10{
    height: 2.5rem;
  }.sm\:w-1\/3{
    width: 33.333333%;
  }.sm\:w-10{
    width: 2.5rem;
  }.sm\:w-64{
    width: 16rem;
  }.sm\:w-full{
    width: 100%;
  }.sm\:max-w-2xl{
    max-width: 42rem;
  }.sm\:max-w-lg{
    max-width: 32rem;
  }.sm\:max-w-md{
    max-width: 28rem;
  }.sm\:max-w-sm{
    max-width: 24rem;
  }.sm\:max-w-xl{
    max-width: 36rem;
  }.sm\:flex-1{
    flex: 1 1 0%;
  }.sm\:translate-y-0{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }.sm\:scale-100{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }.sm\:scale-95{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }.sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.sm\:flex-row{
    flex-direction: row;
  }.sm\:items-start{
    align-items: flex-start;
  }.sm\:items-center{
    align-items: center;
  }.sm\:justify-start{
    justify-content: flex-start;
  }.sm\:justify-center{
    justify-content: center;
  }.sm\:justify-between{
    justify-content: space-between;
  }.sm\:rounded-lg{
    border-radius: 0.5rem;
  }.sm\:rounded-md{
    border-radius: 0.375rem;
  }.sm\:rounded-bl-md{
    border-bottom-left-radius: 0.375rem;
  }.sm\:rounded-br-md{
    border-bottom-right-radius: 0.375rem;
  }.sm\:rounded-tl-md{
    border-top-left-radius: 0.375rem;
  }.sm\:rounded-tr-md{
    border-top-right-radius: 0.375rem;
  }.sm\:p-6{
    padding: 1.5rem;
  }.sm\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }.sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }.sm\:pb-4{
    padding-bottom: 1rem;
  }.sm\:pt-0{
    padding-top: 0px;
  }.sm\:text-left{
    text-align: left;
  }.sm\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}@media (min-width: 768px){.md\:absolute{
    position: absolute;
  }.md\:relative{
    position: relative;
  }.md\:order-1{
    order: 1;
  }.md\:order-2{
    order: 2;
  }.md\:col-span-1{
    grid-column: span 1 / span 1;
  }.md\:col-span-2{
    grid-column: span 2 / span 2;
  }.md\:col-span-6{
    grid-column: span 6 / span 6;
  }.md\:mb-0{
    margin-bottom: 0px;
  }.md\:mt-0{
    margin-top: 0px;
  }.md\:block{
    display: block;
  }.md\:flex{
    display: flex;
  }.md\:grid{
    display: grid;
  }.md\:hidden{
    display: none;
  }.md\:w-1\/2{
    width: 50%;
  }.md\:columns-4{
    -moz-columns: 4;
         columns: 4;
  }.md\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }.md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }.md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }.md\:flex-row{
    flex-direction: row;
  }.md\:gap-6{
    gap: 1.5rem;
  }.md\:overflow-y-auto{
    overflow-y: auto;
  }.md\:border-l-4{
    border-left-width: 4px;
  }.md\:p-4{
    padding: 1rem;
  }.md\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }.md\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }.md\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }.md\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }.md\:pb-0{
    padding-bottom: 0px;
  }.md\:pb-24{
    padding-bottom: 6rem;
  }.md\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }.md\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }.md\:shadow-none{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}@media (min-width: 1024px){.lg\:col-span-4{
    grid-column: span 4 / span 4;
  }.lg\:col-span-5{
    grid-column: span 5 / span 5;
  }.lg\:col-span-7{
    grid-column: span 7 / span 7;
  }.lg\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }.lg\:me-8{
    margin-inline-end: 2rem;
  }.lg\:ml-4{
    margin-left: 1rem;
  }.lg\:ms-5{
    margin-inline-start: 1.25rem;
  }.lg\:mt-0{
    margin-top: 0px;
  }.lg\:block{
    display: block;
  }.lg\:flex{
    display: flex;
  }.lg\:h-\[300px\]{
    height: 300px;
  }.lg\:w-1\/3{
    width: 33.333333%;
  }.lg\:w-1\/4{
    width: 25%;
  }.lg\:w-\[300px\]{
    width: 300px;
  }.lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }.lg\:items-center{
    align-items: center;
  }.lg\:justify-between{
    justify-content: space-between;
  }.lg\:gap-8{
    gap: 2rem;
  }.lg\:p-8{
    padding: 2rem;
  }.lg\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }.lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }.lg\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}@media (min-width: 1280px){.xl\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
