@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;
}
.splide__container{box-sizing:border-box;position:relative}
.splide__list{backface-visibility:hidden;display:flex;height:100%;margin:0!important;padding:0!important}
.splide.is-initialized:not(.is-active) .splide__list{display:block}
.splide__pagination{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;margin:0;pointer-events:none}
.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}
.splide:not(.is-overflow) .splide__pagination{display:none}
.splide__progress__bar{width:0}
.splide{position:relative;visibility:hidden}
.splide.is-initialized,.splide.is-rendered{visibility:visible}
.splide__slide{backface-visibility:hidden;box-sizing:border-box;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}
.splide__slide img{vertical-align:bottom}
.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}
.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}
.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}
.splide__toggle.is-active .splide__toggle__pause{display:inline}
.splide__track{overflow:hidden;position:relative;z-index:0}
@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}
.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}
.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}
.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}
.splide--rtl{direction:rtl}
.splide__track--ttb>.splide__list{display:block}
.splide__arrow{align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:flex;height:2em;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}
.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}
.splide__arrow:hover:not(:disabled){opacity:.9}
.splide__arrow:disabled{opacity:.3}
.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}
.splide__arrow--prev{left:1em}
.splide__arrow--prev svg{transform:scaleX(-1)}
.splide__arrow--next{right:1em}
.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}
.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}
.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}
.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}
.splide__pagination__page:hover{cursor:pointer;opacity:.9}
.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}
.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}
.splide__progress__bar{background:#ccc;height:3px}
.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}
.splide__slide:focus{outline:0}
@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}
@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}
@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}
@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}
.splide__toggle{cursor:pointer}
.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}
.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}
.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}
.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}
.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}
.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}
.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}
.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}
.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}
.splide__arrows--ttb .splide__arrow--prev{top:1em}
.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}
.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}
.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}
.splide__pagination--ttb{bottom:0;display:flex;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
/*! tailwindcss v3.3.2 | 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: currentColor; /* 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.
*/
html {
  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: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", 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 */
}
/*
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. 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-size: 1em; /* 2 */
}
/*
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-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: 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,
[type='button'],
[type='reset'],
[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;
}
/*
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] {
  display: none;
}
*, ::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:  ;
}
::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:  ;
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@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: 1510px){
  .container{
    max-width: 1510px;
  }
}
.btn{
  display: inline-block;
  border-radius: 5px;
  --tw-bg-opacity: 1;
  background-color: rgb(43 108 176 / var(--tw-bg-opacity));
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: OutfitSemiBold;
  font-size: 16px;
  letter-spacing: 0.5px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.btn:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(58 120 194 / var(--tw-bg-opacity));
}
.btn--lg{
  margin-top: 30px;
  font-size: 20px;
}
.card p{
  padding-bottom: 15px;
  line-height: 1.75rem;
}
.card .card-list li{
  margin-bottom: 5px;
  list-style-position: inside;
  padding-left: 23px;
  text-indent: -23px;
}
.card .card-list li::before{
  margin-right: 2px;
  display: inline-block;
  height: 18px;
  width: 18px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsTAAALEwEAmpwYAAABTklEQVR4nNWSTUpDUQyFry7An6GKCm3SpBVxA9pOii9pQcF1WLegU0Ht2D8ougMdiVQX4khHDqxrkPPa4vP1tc+hHgjcS8JHcpIQ/o1IrcbibRa774e3udyo/hrA3FxitScS/yD1cxZrIfAm8R6pdUXqi/kQ8TdWvyaymXS+UKjPkngHNRNhrP4MSO7Y4h0Sf8xOqtXicTI6GWp1Y3cu0VmPy9FWSAtmwoeRxM+xX1ijPfxJ7JLETkNa8WbU9/u/w+miRDtpCIldhBCmBvUtVr+bCCqubS+z2DuLH2VBckB+NiiORRWrAEZYeQoyqL/KHq3cqMJsGPk9UqPMYsdpCExnsc9SyTZHQHEXal2sNjOZEIvdsPhDGCccGY4NsOGqk1pZb86z+i2LvapGC2GSAMOxDb1hiQ4QWDfGQSe5kKRwbDATm0GQ2slYT/6kvgBHeXGQg+QIYQAAAABJRU5ErkJggg==');
  vertical-align: middle;
  --tw-content: '';
  content: var(--tw-content);
}
.invisible{
  visibility: hidden;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.-bottom-\[99px\]{
  bottom: -99px;
}
.-left-\[200px\]{
  left: -200px;
}
.-right-\[220px\]{
  right: -220px;
}
.-top-\[100px\]{
  top: -100px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-25{
  bottom: 25px;
}
.left-\[50\%\]{
  left: 50%;
}
.right-0{
  right: 0px;
}
.top-0{
  top: 0px;
}
.top-90{
  top: 90px;
}
.top-\[50\%\]{
  top: 50%;
}
.z-20{
  z-index: 20;
}
.z-30{
  z-index: 30;
}
.z-\[1000\]{
  z-index: 1000;
}
.z-\[100\]{
  z-index: 100;
}
.z-\[90\]{
  z-index: 90;
}
.order-1{
  order: 1;
}
.order-2{
  order: 2;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-20{
  margin-top: 20px;
  margin-bottom: 20px;
}
.my-30{
  margin-top: 30px;
  margin-bottom: 30px;
}
.my-60{
  margin-top: 60px;
  margin-bottom: 60px;
}
.\!mb-0{
  margin-bottom: 0px !important;
}
.-mb-\[70px\]{
  margin-bottom: -70px;
}
.-mt-\[144px\]{
  margin-top: -144px;
}
.mb-10{
  margin-bottom: 10px;
}
.mb-15{
  margin-bottom: 15px;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-30{
  margin-bottom: 30px;
}
.mb-50{
  margin-bottom: 50px;
}
.mb-60{
  margin-bottom: 60px;
}
.ml-5{
  margin-left: 5px;
}
.mr-5{
  margin-right: 5px;
}
.mr-\[10px\]{
  margin-right: 10px;
}
.mt-10{
  margin-top: 10px;
}
.mt-15{
  margin-top: 15px;
}
.mt-20{
  margin-top: 20px;
}
.mt-30{
  margin-top: 30px;
}
.mt-60{
  margin-top: 60px;
}
.mt-\[60px\]{
  margin-top: 60px;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.table-row{
  display: table-row;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-18{
  height: 18px;
}
.h-2{
  height: 2px;
}
.h-\[100px\]{
  height: 100px;
}
.h-\[150px\]{
  height: 150px;
}
.h-\[250px\]{
  height: 250px;
}
.h-\[270px\]{
  height: 270px;
}
.h-\[450px\]{
  height: 450px;
}
.h-\[480px\]{
  height: 480px;
}
.h-\[500px\]{
  height: 500px;
}
.h-\[650px\]{
  height: 650px;
}
.h-\[675px\]{
  height: 675px;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-screen{
  height: 100vh;
}
.w-1\/2{
  width: 50%;
}
.w-18{
  width: 18px;
}
.w-24{
  width: 24px;
}
.w-25{
  width: 25px;
}
.w-\[200px\]{
  width: 200px;
}
.w-\[265px\]{
  width: 265px;
}
.w-\[30\%\]{
  width: 30%;
}
.w-\[350px\]{
  width: 350px;
}
.w-\[500px\]{
  width: 500px;
}
.w-\[70\%\]{
  width: 70%;
}
.w-\[700px\]{
  width: 700px;
}
.w-\[70px\]{
  width: 70px;
}
.w-\[75px\]{
  width: 75px;
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.max-w-full{
  max-width: 100%;
}
.shrink-0{
  flex-shrink: 0;
}
.table-fixed{
  table-layout: fixed;
}
.-translate-y-\[40\%\]{
  --tw-translate-y: -40%;
  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-x-\[-50\%\]{
  --tw-translate-x: -50%;
  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-180{
  --tw-rotate: 180deg;
  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-\[180deg\]{
  --tw-rotate: 180deg;
  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-x-\[-1\]{
  --tw-scale-x: -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));
}
.cursor-pointer{
  cursor: pointer;
}
.resize-none{
  resize: none;
}
.columns-1{
  -moz-columns: 1;
       columns: 1;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, 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-start{
  justify-content: flex-start;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-10{
  gap: 10px;
}
.gap-120{
  gap: 120px;
}
.gap-15{
  gap: 15px;
}
.gap-20{
  gap: 20px;
}
.gap-30{
  gap: 30px;
}
.gap-4{
  gap: 4px;
}
.gap-5{
  gap: 5px;
}
.gap-60{
  gap: 60px;
}
.gap-x-30{
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.gap-y-10{
  row-gap: 10px;
}
.gap-y-30{
  row-gap: 30px;
}
.gap-y-60{
  row-gap: 60px;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(4px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4px * var(--tw-space-y-reverse));
}
.self-center{
  align-self: center;
}
.self-stretch{
  align-self: stretch;
}
.overflow-hidden{
  overflow: hidden;
}
.rounded-\[10px\]{
  border-radius: 10px;
}
.rounded-\[15px\]{
  border-radius: 15px;
}
.rounded-default{
  border-radius: 25px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-half{
  border-radius: 50px;
}
.rounded-l-default{
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.rounded-r-default{
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.rounded-tl-default{
  border-top-left-radius: 25px;
}
.rounded-tr-default{
  border-top-right-radius: 25px;
}
.border{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-4{
  border-width: 4px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-l-0{
  border-left-width: 0px;
}
.border-r-0{
  border-right-width: 0px;
}
.border-t-2{
  border-top-width: 2px;
}
.border-dashed{
  border-style: dashed;
}
.border-\[\#D50000\]{
  --tw-border-opacity: 1;
  border-color: rgb(213 0 0 / var(--tw-border-opacity));
}
.border-\[\#F3F3F5\]{
  --tw-border-opacity: 1;
  border-color: rgb(243 243 245 / var(--tw-border-opacity));
}
.border-\[\#a5a5a560\]{
  border-color: #a5a5a560;
}
.border-\[\#ccc\]{
  --tw-border-opacity: 1;
  border-color: rgb(204 204 204 / var(--tw-border-opacity));
}
.border-primary{
  --tw-border-opacity: 1;
  border-color: rgb(24 221 198 / var(--tw-border-opacity));
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-b-primary{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(24 221 198 / var(--tw-border-opacity));
}
.bg-\[\#0766FF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(7 102 255 / var(--tw-bg-opacity));
}
.bg-\[\#18DDC6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(24 221 198 / var(--tw-bg-opacity));
}
.bg-\[\#252849\]{
  --tw-bg-opacity: 1;
  background-color: rgb(37 40 73 / var(--tw-bg-opacity));
}
.bg-\[\#388E3C\]{
  --tw-bg-opacity: 1;
  background-color: rgb(56 142 60 / var(--tw-bg-opacity));
}
.bg-\[\#579D91\]{
  --tw-bg-opacity: 1;
  background-color: rgb(87 157 145 / var(--tw-bg-opacity));
}
.bg-\[\#5982D0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(89 130 208 / var(--tw-bg-opacity));
}
.bg-\[\#B8860B\]{
  --tw-bg-opacity: 1;
  background-color: rgb(184 134 11 / var(--tw-bg-opacity));
}
.bg-\[\#C3B0AC\]{
  --tw-bg-opacity: 1;
  background-color: rgb(195 176 172 / var(--tw-bg-opacity));
}
.bg-\[\#D3302F\]\/90{
  background-color: rgb(211 48 47 / 0.9);
}
.bg-\[\#FF0000\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 0 0 / var(--tw-bg-opacity));
}
.bg-accent-secondary{
  --tw-bg-opacity: 1;
  background-color: rgb(42 62 76 / var(--tw-bg-opacity));
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-footer{
  --tw-bg-opacity: 1;
  background-color: rgb(22 31 43 / var(--tw-bg-opacity));
}
.bg-highlight{
  --tw-bg-opacity: 1;
  background-color: rgb(43 108 176 / var(--tw-bg-opacity));
}
.bg-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(248 244 236 / var(--tw-bg-opacity));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-opacity-25{
  --tw-bg-opacity: 0.25;
}
.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}
.bg-opacity-60{
  --tw-bg-opacity: 0.6;
}
.bg-\[url\(\'\/images\/contact-img\.jpg\'\)\]{
  background-image: url('./contact-img.jpg');
}
.bg-\[url\(\'\/images\/cta-bg3\.jpg\'\)\]{
  background-image: url('./cta-bg3.jpg');
}
.bg-\[url\(\'\/images\/hero-main-mobile\.jpg\'\)\]{
  background-image: url('./hero-main-mobile.jpg');
}
.bg-\[url\(\'\/images\/holiday-hero-v2\.jpg\'\)\]{
  background-image: url('./holiday-hero-v2.jpg');
}
.bg-\[url\(\'\/images\/january-cta-3\.jpg\'\)\]{
  background-image: url('./january-cta-3.jpg');
}
.bg-\[url\(\'\/images\/january-hero\.jpg\'\)\]{
  background-image: url('./january-hero.jpg');
}
.bg-\[url\(\'\/images\/mail-icon-v3\.png\'\)\]{
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMC1jMDAwIDc5LjE3MWMyN2ZhYiwgMjAyMi8wOC8xNi0yMjozNTo0MSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUREMjc4OTc1MTc2MTFFRTkxMjVBQThERkMwRTUwRUQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUREMjc4OTY1MTc2MTFFRTkxMjVBQThERkMwRTUwRUQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjEgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MzI0QjNBNTU1MTc2MTFFRUEyRjBCMDU4QzI4OEYyMjMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MzI0QjNBNTY1MTc2MTFFRUEyRjBCMDU4QzI4OEYyMjMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7Xvus0AAAA50lEQVR42mL8//8/AzUAEwOVAAsQLwBiNgrN+cUI9NpTIKMFiJmBmJFEA0Dh8heIa0Au2gXE0yl0kRkojF4CcR4QLwdiXhI0cwHxEiDOAeJXIIMEgXgTyJ9AvBeIK4kwpAKID0CDYisQ8zMAw2gNKAlAsSkQ7wXig0AcjSQOw2FAvA8qb4UkvgZELMeiIQKIzwPxOiDWAGIVIF4NxOeAOBaL+uW40tEKIDYE4nNAvBjKvwzERlA+1nSED4CSxVxo0nhCKEESAs/pmkVABn2lgjlfQV7zAOJcCg3yAOU1qmXawVUeAQQYAN6FnoTJZGpFAAAAAElFTkSuQmCC');
}
.bg-\[url\(\'\/images\/phone-icon-v3\.png\'\)\]{
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMC1jMDAwIDc5LjE3MWMyN2ZhYiwgMjAyMi8wOC8xNi0yMjozNTo0MSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjEgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjRGNDE2NUU1NTE3NjExRUU5NjhEOTY0RTVGODM5QTEzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjRGNDE2NUU2NTE3NjExRUU5NjhEOTY0RTVGODM5QTEzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NEY0MTY1RTM1MTc2MTFFRTk2OEQ5NjRFNUY4MzlBMTMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEY0MTY1RTQ1MTc2MTFFRTk2OEQ5NjRFNUY4MzlBMTMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7q7zFXAAABIElEQVR42qzUsUsCURzA8V5LgzhJgbkEYSG4FLTa7hIFoiAiIoXg6tLkf2JDg4ugECaEIEVIIYGBY0viIDY4tbRc34PfyePw4N7hgw/83vtxP+793rtTlmVtbWJsa/ERBnjHvnEl+41wgm9kcI1nWffNCV5xpSV6uA1S6MGV2MUQp34LOT36w4W24x9xbNrsLsraeglLNE0LNRBBRuZp/AY5NdsZZogghA/kTJvtqGEs8QEWuAxSyNbAo8RJzFHU8lkk3M8pj0+kAyUneYgW3hBCGHvoo76uR24dPGnzO5QljqGPF8S9tqa7l56FPfIVjPQL6TUKaOMTN2vyX6tr4vN4Uxigizx2UMDUabwy/B9VcS4HEUUFEzuhNvVj+xdgAHzVHd8barFWAAAAAElFTkSuQmCC');
}
.bg-\[url\(\'\/images\/stroller-hero-mobile\.jpg\'\)\]{
  background-image: url('./stroller-hero-mobile.jpg');
}
.bg-\[url\(\'images\/mail-icon-v3\.png\'\)\]{
  background-image: url('images/mail-icon-v3.png');
}
.bg-\[url\(\'images\/phone-icon-v3\.png\'\)\]{
  background-image: url('images/phone-icon-v3.png');
}
.bg-cover{
  background-size: cover;
}
.bg-\[position\:40\%_0\%\]{
  background-position: 40% 0%;
}
.bg-center{
  background-position: center;
}
.bg-custom-y{
  background-position: 0 43%;
}
.bg-right{
  background-position: right;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.p-10{
  padding: 10px;
}
.p-15{
  padding: 15px;
}
.p-20{
  padding: 20px;
}
.p-25{
  padding: 25px;
}
.p-30{
  padding: 30px;
}
.px-10{
  padding-left: 10px;
  padding-right: 10px;
}
.px-15{
  padding-left: 15px;
  padding-right: 15px;
}
.px-20{
  padding-left: 20px;
  padding-right: 20px;
}
.px-25{
  padding-left: 25px;
  padding-right: 25px;
}
.px-50{
  padding-left: 50px;
  padding-right: 50px;
}
.py-10{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-15{
  padding-top: 15px;
  padding-bottom: 15px;
}
.py-25{
  padding-top: 25px;
  padding-bottom: 25px;
}
.py-30{
  padding-top: 30px;
  padding-bottom: 30px;
}
.py-45{
  padding-top: 45px;
  padding-bottom: 45px;
}
.py-5{
  padding-top: 5px;
  padding-bottom: 5px;
}
.py-50{
  padding-top: 50px;
  padding-bottom: 50px;
}
.py-60{
  padding-top: 60px;
  padding-bottom: 60px;
}
.pb-10{
  padding-bottom: 10px;
}
.pb-120{
  padding-bottom: 120px;
}
.pb-20{
  padding-bottom: 20px;
}
.pb-25{
  padding-bottom: 25px;
}
.pb-30{
  padding-bottom: 30px;
}
.pb-60{
  padding-bottom: 60px;
}
.pb-80{
  padding-bottom: 80px;
}
.pl-20{
  padding-left: 20px;
}
.pl-25{
  padding-left: 25px;
}
.pr-20{
  padding-right: 20px;
}
.pr-25{
  padding-right: 25px;
}
.pt-10{
  padding-top: 10px;
}
.pt-120{
  padding-top: 120px;
}
.pt-15{
  padding-top: 15px;
}
.pt-20{
  padding-top: 20px;
}
.pt-30{
  padding-top: 30px;
}
.pt-5{
  padding-top: 5px;
}
.pt-50{
  padding-top: 50px;
}
.pt-60{
  padding-top: 60px;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-middle{
  vertical-align: middle;
}
.align-text-top{
  vertical-align: text-top;
}
.align-text-bottom{
  vertical-align: text-bottom;
}
.font-primary{
  font-family: Outfit;
}
.font-primaryBold{
  font-family: OutfitBold;
}
.font-primaryLight{
  font-family: OutfitLight;
}
.font-primarySemiBold{
  font-family: OutfitSemiBold;
}
.\!text-\[16px\]{
  font-size: 16px !important;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[14px\]{
  font-size: 14px;
}
.text-\[15px\]{
  font-size: 15px;
}
.text-\[16px\]{
  font-size: 16px;
}
.text-\[18px\]{
  font-size: 18px;
}
.text-\[19px\]{
  font-size: 19px;
}
.text-\[20px\]{
  font-size: 20px;
}
.text-\[22px\]{
  font-size: 22px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[25px\]{
  font-size: 25px;
}
.text-\[30px\]{
  font-size: 30px;
}
.text-\[40px\]{
  font-size: 40px;
}
.text-\[60px\]{
  font-size: 60px;
}
.text-\[80px\]{
  font-size: 80px;
}
.\!font-normal{
  font-weight: 400 !important;
}
.font-bold{
  font-weight: 700;
}
.uppercase{
  text-transform: uppercase;
}
.leading-\[1\.1em\]{
  line-height: 1.1em;
}
.leading-\[1\.2em\]{
  line-height: 1.2em;
}
.leading-\[1\.3em\]{
  line-height: 1.3em;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-\[0\.5px\]{
  letter-spacing: 0.5px;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.\!text-\[\#d32f2f\]{
  --tw-text-opacity: 1 !important;
  color: rgb(211 47 47 / var(--tw-text-opacity)) !important;
}
.\!text-white{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.text-\[\#808080\]{
  --tw-text-opacity: 1;
  color: rgb(128 128 128 / var(--tw-text-opacity));
}
.text-\[\#D3302F\]{
  --tw-text-opacity: 1;
  color: rgb(211 48 47 / var(--tw-text-opacity));
}
.text-\[\#D3D3D3\]{
  --tw-text-opacity: 1;
  color: rgb(211 211 211 / var(--tw-text-opacity));
}
.text-\[\#FC9400\]{
  --tw-text-opacity: 1;
  color: rgb(252 148 0 / var(--tw-text-opacity));
}
.text-\[\#ffb500\]{
  --tw-text-opacity: 1;
  color: rgb(255 181 0 / var(--tw-text-opacity));
}
.text-accent-secondary{
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
.text-primary{
  --tw-text-opacity: 1;
  color: rgb(24 221 198 / var(--tw-text-opacity));
}
.text-textPrimary{
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline{
  text-decoration-line: underline;
}
.line-through{
  text-decoration-line: line-through;
}
.\!no-underline{
  text-decoration-line: none !important;
}
.placeholder-white::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(255 255 255 / var(--tw-placeholder-opacity));
}
.placeholder-white::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(255 255 255 / var(--tw-placeholder-opacity));
}
.opacity-50{
  opacity: 0.5;
}
.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-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;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
/* @font-face {
  font-family: "Outfit";
  font-display: swap;
  src: url("/assets/fonts/Outfit-Regular.ttf");
}

@font-face {
  font-family: "OutfitSemiBold";
  font-display: swap;
  src: url("/assets/fonts/Outfit-SemiBold.ttf");
}

@font-face {
  font-family: "OutfitBold";
  font-display: swap;
  src: url("/assets/fonts/Outfit-Bold.ttf");
}

@font-face {
  font-family: "OutfitLight";
  font-display: swap;
  src: url("/assets/fonts/Outfit-Light.ttf");
} */
@font-face {
  font-family: "Outfit";
  font-display: swap;
  src: url("./Sora-Regular.ttf");
}
@font-face {
  font-family: "OutfitSemiBold";
  font-display: swap;
  src: url("./Sora-SemiBold.ttf");
}
@font-face {
  font-family: "OutfitBold";
  font-display: swap;
  src: url("./Sora-Bold.ttf");
}
@font-face {
  font-family: "OutfitLight";
  font-display: swap;
  src: url("./Sora-Light.ttf");
}
html {
  margin-top: 0px !important;
}
#wpadminbar {
  bottom: 0 !important;
  top: auto;
}
.extended::before{
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 10;
  --tw-content: '';
  content: var(--tw-content);
}
.holiday-benefits{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  row-gap: 30px;
}
@media (min-width: 1024px){
  .holiday-benefits{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: space-between;
  }
}
html.locked{
  overflow: hidden;
}
footer svg {
  top: -99px;
}
.promo-menu-item{
  --tw-text-opacity: 1;
  color: rgb(211 47 47 / var(--tw-text-opacity));
}
.promo-btn{
  display: inline-block;
  border-radius: 5px;
  --tw-bg-opacity: 1;
  background-color: rgb(43 108 176 / var(--tw-bg-opacity));
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: OutfitSemiBold;
  font-size: 16px;
  letter-spacing: 0.5px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.promo-btn:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(58 120 194 / var(--tw-bg-opacity));
}
.promo-btn{
  position: absolute;
  bottom: 65px;
  left: 20px;
  width: 125px;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  color: white;
}
@media (min-width: 768px){
  .promo-btn{
    bottom: 170px;
    left: 45px;
    width: 200px;
    font-size: 23px;
  }
}
#popup-close{
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
  font-size: 35px;
  --tw-text-opacity: 1;
  color: rgb(238 161 44 / var(--tw-text-opacity));
}
/* .promo-text {
  @apply text-[18px];
}
 */
#testimonial-carousel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 200px;
  background: rgb(248, 244, 236);
  background: linear-gradient(
    90deg,
    rgba(248, 244, 236, 1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 100;
}
#testimonial-carousel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 200px;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(248, 244, 236, 1) 70%
  );
  z-index: 100;
}
#testimonial-carousel .splide__pagination {
  margin-top: 30px;
  position: relative;
}
#testimonial-carousel .splide__pagination .splide__pagination__page.is-active {
  background-color: #eea12c;
}
#testimonial-carousel .splide__pagination .splide__pagination__page {
  background-color: #5982d0;
}
@media (max-width: 992px) {
  #testimonial-carousel::before,
  #testimonial-carousel::after {
    display: none;
  }
}
.splide__slide {
  padding: 0 10px 15px 0;
}
#menu-fomenu li a:after {
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -2px;
  left: 0;
  transform: none;
  width: 0;
  height: 2px;
  transition: all 0.2s ease;
  background-color: #161f2b;
}
#menu-fomenu li a:hover:after {
  width: 100%;
}
#menu-fomenu .current-menu-item a:after {
  width: 100%;
}
html {
  scroll-behavior: smooth;
}
.general-content--narrow{
  width: 840px;
  max-width: 100%;
}
/* .general-content--narrow p {
  font-size: 20px !important;
  text-align: left;
} */
.content-narrow{
  width: 615px;
  max-width: 100%;
}
#breadcrumbs{
  padding-bottom: 30px;
}
#breadcrumbs a:hover{
  text-decoration-line: underline;
}
/* CF babakocsi szolgáltatás */
/* .cf-card-parent {
  @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-30 flex-wrap justify-center items-center;
} */
/* .cf-card {
  @apply bg-primary text-accent-secondary rounded-default shadow-xl flex flex-col justify-between gap-20 md:gap-10 p-20;
} */
/* .cf-card a:last-child {
  @apply text-[18px] md:text-[22px] text-center h-auto md:h-[66px];
} */
.cf-service{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  justify-content: space-between;
  gap: 60px;
}
@media (min-width: 768px){
  .cf-service{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cf-service ul li{
  font-size: 18px;
}
@media (min-width: 768px){
  .cf-service ul li{
    font-size: 20px;
  }
}
.cf-service div:first-child{
  order: 2;
}
@media (min-width: 768px){
  .cf-service div:first-child{
    order: 1;
  }
}
.cf-service-image{
  order: 1;
}
@media (min-width: 768px){
  .cf-service-image{
    order: 2;
  }
}
.cf-service-image img{
  margin-left: auto;
  margin-right: auto;
}
.cf-service ul {
  list-style-type: none !important;
  padding-left: 0px !important;
}
.cf-service ul li {
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
}
.cf-service ul li:before {
  content: "\2714\0020";
}
.cf-service-price{
  display: block;
  flex-shrink: 0;
  font-family: OutfitBold;
  font-size: 30px;
  --tw-text-opacity: 1;
  color: rgb(42 95 138 / var(--tw-text-opacity));
}
.cf-service-price-discount{
  font-size: 21px;
  --tw-text-opacity: 1;
  color: rgb(128 128 128 / var(--tw-text-opacity));
  text-decoration-line: line-through;
}
.cf-service-portfolio{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
@media (min-width: 768px){
  .cf-service-portfolio{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
  }
}
.cf-service-portfolio div{
  overflow: hidden;
  border-radius: 25px;
}
.cf-extra-charge{
  margin-bottom: 30px;
  border-radius: 25px;
  padding: 20px;
  --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);
  background: rgb(22, 221, 198);
  background: linear-gradient(
    145deg,
    rgba(22, 221, 198, 1) 0%,
    rgba(37, 40, 73, 1) 100%
  );
}
.cf-extra-charge div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.cf-extra-charge div span{
  margin-bottom: 0px;
  display: block;
  text-align: left;
  font-size: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.contact-image{
  background-image: url('./contact-img.jpg');
}
.toc-parent{
  position: sticky;
  top: 0px;
  display: none;
  padding-top: 60px;
}
@media (min-width: 768px){
  .toc-parent{
    display: block;
  }
}
.toc-parent .price-toc ul li{
  margin-bottom: 5px;
}
.posts-container{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 30px;
}
@media (min-width: 768px){
  .posts-container{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1536px){
  .posts-container{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.posts-container--home{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px){
  .posts-container--home{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.cta-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 100px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .cta-card{
    gap: 50px;
  }
}
@media (min-width: 1024px){
  .cta-card{
    flex-direction: row;
  }
}
.extra-service{
  border-radius: 25px;
  padding: 20px;
  --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);
}
.extra-service div {
  flex-shrink: 1;
}
.extra-service-price {
  flex-shrink: 0;
}
.post-wrapper {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
.post h2{
  margin-bottom: 20px;
  font-family: OutfitSemiBold;
  font-size: 24px;
  line-height: 1.2em;
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .post h2{
    font-size: 30px;
  }
}
@media (min-width: 1024px){
  .post h2{
    font-size: 40px;
  }
}
.post img{
  margin-bottom: 20px;
}
.tabcontent {
  display: none;
}
.typed-cursor{
  font-size: 40px;
  --tw-text-opacity: 1;
  color: rgb(24 221 198 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .typed-cursor{
    font-size: 60px;
  }
}
.header-upper {
  background: linear-gradient(
    55deg,
    rgba(12, 98, 132, 1) 0%,
    rgba(24, 221, 198, 1) 100%
  );
}
#standard .card-list,
#twin .card-list {
  list-style-type: none !important;
  margin-bottom: 0px !important;
  padding-left: 0px !important;
  padding-top: 20px !important;
}
.mobile-nav{
  position: absolute;
  inset: 0px;
  z-index: 10;
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  --tw-bg-opacity: 1;
  background-color: rgb(248 244 236 / var(--tw-bg-opacity));
}
.mobile-nav last:div{
  display: none;
}
.mobile-nav #menu-fomenu{
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.mobile-nav #menu-fomenu li{
  text-align: center;
}
button,
[type="button"] {
  background-color: white;
}
.splide__pagination__page.is-active {
  background-color: #18ddc6;
}
.error-message,
.error-sum{
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  --tw-text-opacity: 1;
  color: rgb(255 0 0 / var(--tw-text-opacity));
}
.grecaptcha-badge{
  display: none;
}
#menu-lablec-menu li{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#menu-lablec-menu li:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.i4ewOd-pzNkMb-haAclf {
  display: none !important;
}
.general-content p{
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .general-content p{
    font-size: 20px;
    line-height: 2.25rem;
  }
}
.general-content ol{
  margin-bottom: 30px;
  list-style-type: decimal;
  padding-left: 15px;
}
.general-content ul{
  margin-bottom: 30px;
  list-style-type: disc;
  padding-left: 15px;
}
.general-content ul + ol li{
  margin-bottom: 0px;
}
.general-content ol li,
.general-content ul li{
  font-size: 16px;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .general-content ol li,
.general-content ul li{
    font-size: 18px;
    line-height: 2rem;
  }
}
.general-content a{
  --tw-text-opacity: 1;
  color: rgb(238 161 44 / var(--tw-text-opacity));
  text-decoration-line: underline;
}
.general-content h4{
  margin-bottom: 30px;
  font-family: OutfitSemiBold;
  font-size: 22px;
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .general-content h4{
    font-size: 25px;
  }
}
.general-content h3{
  padding-bottom: 30px;
  font-family: OutfitSemiBold;
  font-size: 30px;
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
.service-hero img{
  border-radius: 25px;
}
.service-thumb img{
  height: 196px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.posts-container .card .post-thumb img{
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.price-toc ul li a.active{
  font-family: OutfitSemiBold;
  text-decoration-line: underline;
}
.accordion{
  position: relative;
  max-width: 100%;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 25px;
  padding: 15px;
  --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);
}
.accordion::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background-color: #0c6284;
  display: block;
  left: 0;
}
.accordion p{
  margin-bottom: 5px;
}
.card .card-feature-list li{
  margin-bottom: 5px;
  list-style-position: inside;
  padding-left: 23px;
  text-indent: -23px;
}
.card .card-feature-list li::before{
  margin-right: 2px;
  display: inline-block;
  height: 18px;
  width: 18px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsTAAALEwEAmpwYAAABTklEQVR4nNWSTUpDUQyFry7An6GKCm3SpBVxA9pOii9pQcF1WLegU0Ht2D8ougMdiVQX4khHDqxrkPPa4vP1tc+hHgjcS8JHcpIQ/o1IrcbibRa774e3udyo/hrA3FxitScS/yD1cxZrIfAm8R6pdUXqi/kQ8TdWvyaymXS+UKjPkngHNRNhrP4MSO7Y4h0Sf8xOqtXicTI6GWp1Y3cu0VmPy9FWSAtmwoeRxM+xX1ijPfxJ7JLETkNa8WbU9/u/w+miRDtpCIldhBCmBvUtVr+bCCqubS+z2DuLH2VBckB+NiiORRWrAEZYeQoyqL/KHq3cqMJsGPk9UqPMYsdpCExnsc9SyTZHQHEXal2sNjOZEIvdsPhDGCccGY4NsOGqk1pZb86z+i2LvapGC2GSAMOxDb1hiQ4QWDfGQSe5kKRwbDATm0GQ2slYT/6kvgBHeXGQg+QIYQAAAABJRU5ErkJggg==');
  vertical-align: middle;
  --tw-content: '';
  content: var(--tw-content);
}
.card-feature-list{
  display: none;
  -moz-columns: 1;
       columns: 1;
}
#standard .card-feature-list,
#twin .card-feature-list {
  list-style-type: none;
  margin-bottom: 0px;
  padding-left: 0px;
  padding-top: 20px;
}
@media (min-width: 768px){
  .card-feature-list{
    display: block;
    -moz-columns: 2;
         columns: 2;
  }
}
@media (min-width: 1024px){
  .card-feature-list{
    -moz-columns: 3;
         columns: 3;
  }
}
.btn--white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
.btn--white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(22 221 198 / var(--tw-bg-opacity));
}
.btn-cf {
  text-decoration: none !important;
  color: white !important;
}
.before\:absolute::before{
  content: var(--tw-content);
  position: absolute;
}
.before\:bottom-7::before{
  content: var(--tw-content);
  bottom: 7px;
}
.before\:left-0::before{
  content: var(--tw-content);
  left: 0px;
}
.before\:-z-10::before{
  content: var(--tw-content);
  z-index: -10;
}
.before\:inline-block::before{
  content: var(--tw-content);
  display: inline-block;
}
.before\:h-10::before{
  content: var(--tw-content);
  height: 10px;
}
.before\:h-15::before{
  content: var(--tw-content);
  height: 15px;
}
.before\:w-full::before{
  content: var(--tw-content);
  width: 100%;
}
.before\:bg-\[\#E8832B\]::before{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(232 131 43 / var(--tw-bg-opacity));
}
.before\:opacity-30::before{
  content: var(--tw-content);
  opacity: 0.3;
}
.before\:content-\[\'\'\]::before{
  --tw-content: '';
  content: var(--tw-content);
}
.hover\:ml-5:hover{
  margin-left: 5px;
}
.hover\:bg-\[\#18DDC6\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(24 221 198 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#4CAF50\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(76 175 80 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#9A6A0B\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(154 106 11 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#c97010\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(201 112 16 / var(--tw-bg-opacity));
}
.hover\:bg-accent-secondary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(42 62 76 / var(--tw-bg-opacity));
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.hover\:text-textPrimary:hover{
  --tw-text-opacity: 1;
  color: rgb(42 62 76 / var(--tw-text-opacity));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.group:hover .group-hover\:bg-\[\#3A78C2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(58 120 194 / var(--tw-bg-opacity));
}
.group:hover .group-hover\:text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  .md\:order-1{
    order: 1;
  }
  .md\:order-2{
    order: 2;
  }
  .md\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .md\:mb-10{
    margin-bottom: 10px;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:mt-30{
    margin-top: 30px;
  }
  .md\:mt-40{
    margin-top: 40px;
  }
  .md\:block{
    display: block;
  }
  .md\:grid{
    display: grid;
  }
  .md\:h-\[600px\]{
    height: 600px;
  }
  .md\:h-\[66px\]{
    height: 66px;
  }
  .md\:h-\[690px\]{
    height: 690px;
  }
  .md\:h-\[750px\]{
    height: 750px;
  }
  .md\:w-1\/3{
    width: 33.333333%;
  }
  .md\:w-\[100px\]{
    width: 100px;
  }
  .md\:w-\[150px\]{
    width: 150px;
  }
  .md\:w-\[350px\]{
    width: 350px;
  }
  .md\:w-\[45\%\]{
    width: 45%;
  }
  .md\:w-\[500px\]{
    width: 500px;
  }
  .md\:w-\[700px\]{
    width: 700px;
  }
  .md\:w-\[930px\]{
    width: 930px;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:columns-2{
    -moz-columns: 2;
         columns: 2;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:flex-wrap{
    flex-wrap: wrap;
  }
  .md\:items-start{
    align-items: flex-start;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-start{
    justify-content: flex-start;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-10{
    gap: 10px;
  }
  .md\:gap-30{
    gap: 30px;
  }
  .md\:gap-60{
    gap: 60px;
  }
  .md\:bg-\[url\(\'\/images\/hero-main\.jpg\'\)\]{
    background-image: url('./hero-main.jpg');
  }
  .md\:bg-\[url\(\'\/images\/stroller-hero-desktop\.jpg\'\)\]{
    background-image: url('./stroller-hero-desktop.jpg');
  }
  .md\:bg-center{
    background-position: center;
  }
  .md\:p-45{
    padding: 45px;
  }
  .md\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .md\:px-60{
    padding-left: 60px;
    padding-right: 60px;
  }
  .md\:px-70{
    padding-left: 70px;
    padding-right: 70px;
  }
  .md\:py-15{
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .md\:py-20{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .md\:py-30{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .md\:py-40{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .md\:py-60{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .md\:pb-0{
    padding-bottom: 0px;
  }
  .md\:pb-10{
    padding-bottom: 10px;
  }
  .md\:pb-120{
    padding-bottom: 120px;
  }
  .md\:pb-60{
    padding-bottom: 60px;
  }
  .md\:pt-120{
    padding-top: 120px;
  }
  .md\:pt-30{
    padding-top: 30px;
  }
  .md\:pt-60{
    padding-top: 60px;
  }
  .md\:text-left{
    text-align: left;
  }
  .md\:text-\[18px\]{
    font-size: 18px;
  }
  .md\:text-\[20px\]{
    font-size: 20px;
  }
  .md\:text-\[22px\]{
    font-size: 22px;
  }
  .md\:text-\[23px\]{
    font-size: 23px;
  }
  .md\:text-\[25px\]{
    font-size: 25px;
  }
  .md\:text-\[27px\]{
    font-size: 27px;
  }
  .md\:text-\[30px\]{
    font-size: 30px;
  }
  .md\:text-\[35px\]{
    font-size: 35px;
  }
  .md\:text-\[40px\]{
    font-size: 40px;
  }
  .md\:text-\[45px\]{
    font-size: 45px;
  }
  .md\:text-\[50px\]{
    font-size: 50px;
  }
  .md\:text-\[55px\]{
    font-size: 55px;
  }
  .md\:text-\[60px\]{
    font-size: 60px;
  }
}
@media (min-width: 1024px){
  .lg\:absolute{
    position: absolute;
  }
  .lg\:top-\[50\%\]{
    top: 50%;
  }
  .lg\:mt-0{
    margin-top: 0px;
  }
  .lg\:mt-125{
    margin-top: 125px;
  }
  .lg\:mt-60{
    margin-top: 60px;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-\[450px\]{
    height: 450px;
  }
  .lg\:h-\[800px\]{
    height: 800px;
  }
  .lg\:w-\[265px\]{
    width: 265px;
  }
  .lg\:w-\[290px\]{
    width: 290px;
  }
  .lg\:translate-y-\[-50\%\]{
    --tw-translate-y: -50%;
    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));
  }
  .lg\:columns-3{
    -moz-columns: 3;
         columns: 3;
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:flex-nowrap{
    flex-wrap: nowrap;
  }
  .lg\:items-center{
    align-items: center;
  }
  .lg\:gap-30{
    gap: 30px;
  }
  .lg\:bg-\[url\(\'\/images\/ctabg\.jpg\'\)\]{
    background-image: url('./ctabg.jpg');
  }
  .lg\:bg-contain{
    background-size: contain;
  }
  .lg\:pt-0{
    padding-top: 0px;
  }
  .lg\:pt-15{
    padding-top: 15px;
  }
  .lg\:text-\[18px\]{
    font-size: 18px;
  }
  .lg\:text-\[40px\]{
    font-size: 40px;
  }
  .lg\:text-\[50px\]{
    font-size: 50px;
  }
  .lg\:text-\[65px\]{
    font-size: 65px;
  }
}
@media (min-width: 1280px){
  .xl\:text-\[30px\]{
    font-size: 30px;
  }
}
@media (min-width: 1536px){
  .\32xl\:mt-60{
    margin-top: 60px;
  }
  .\32xl\:hidden{
    display: none;
  }
  .\32xl\:h-\[710px\]{
    height: 710px;
  }
  .\32xl\:w-\[345px\]{
    width: 345px;
  }
  .\32xl\:w-\[375px\]{
    width: 375px;
  }
  .\32xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .\32xl\:flex-nowrap{
    flex-wrap: nowrap;
  }
  .\32xl\:text-\[55px\]{
    font-size: 55px;
  }
  .\32xl\:text-\[60px\]{
    font-size: 60px;
  }
  .\32xl\:text-\[80px\]{
    font-size: 80px;
  }
  .\32xl\:text-accent-secondary{
    --tw-text-opacity: 1;
    color: rgb(42 62 76 / var(--tw-text-opacity));
  }
  .\32xl\:text-textPrimary{
    --tw-text-opacity: 1;
    color: rgb(42 62 76 / var(--tw-text-opacity));
  }
  .\32xl\:placeholder-textPrimary::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(42 62 76 / var(--tw-placeholder-opacity));
  }
  .\32xl\:placeholder-textPrimary::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(42 62 76 / var(--tw-placeholder-opacity));
  }
}
.\[\&\>img\]\:h-full>img{
  height: 100%;
}
.\[\&\>img\]\:object-cover>img{
  -o-object-fit: cover;
     object-fit: cover;
}
.\[\&\>p\]\:text-\[18px\]>p{
  font-size: 18px;
}
