* {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Outfit", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Logo animation */
.logo-animate:hover {
  animation: pulse-subtle 2s infinite;
}

@keyframes pulse-subtle {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Nav link animation */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #000;
  transition: width 0.3s ease-in-out;
}

/* Hover effect only for links that are NOT active */
.nav-link:not(.active):hover::after {
  width: 100%;
}

/* When the link is active, show underline always */
.nav-link.active::after {
  width: 100%;
}

/* mob */
/* Nav link animation */
.nav-link-two {
  position: relative;
}

.nav-link-two::after {
  /* color: #a3d600; */
}

/* Hover effect only for links that are NOT active */
.nav-link-two:not(.active):hover::after {
  width: 100%;
}

/* When the link is active, show underline always */
.nav-link-two.active::after {
}

/* Button animation */
.animated-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.animated-btn:hover {
  transform: translateY(-2px);
}

.animated-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.animated-btn:hover::after {
  left: 100%;
}

/* Mobile menu animation */
.hamburger-line {
  transition: all 0.3s ease;
}

.mobile-menu {
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transform: translateX(100%);
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Content animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image reveal animation */
.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c1ff00;
  transform: translateX(-100%);
  animation: revealImage 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealImage {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Circle badge animation */
.circle-badge {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Countdown animation */
.countdown-number {
  position: relative;
  overflow: hidden;
}

.countdown-number span {
  display: inline-block;
  animation: countPulse 1s infinite;
}

@keyframes countPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Ticket animation */
.ticket {
  transition: all 0.5s ease;
}

.ticket:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Info circle animation */
.info-circle {
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(193, 255, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0);
  }
}

/* Barcode animation */
.barcode {
  position: relative;
}

.barcode::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  background-size: 100% 4px;
  animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* Social icon animations */
.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* Footer link animations */
.footer-link {
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #c1ff00;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #c1ff00;
}

.footer-link:hover::after {
  width: 100%;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Subtle background animation */
.bg-animate {
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Marquee */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 20s linear infinite;
}

/* Number counter animation */
.number-counter {
  display: inline-block;
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Play button pulse animation */
.play-button {
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0.7);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(193, 255, 0, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0);
    transform: scale(1);
  }
}

/* Mentor images hover effect */
.mentor-image {
  transition: all 0.3s ease;
}

.mentor-image:hover {
  transform: scale(1.1);
  z-index: 10;
}

/* Text reveal animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  animation: revealText 1s forwards;
}

@keyframes revealText {
  to {
    transform: translateY(0);
  }
}

.delay-char-1 {
  animation-delay: 0.1s;
}

.delay-char-2 {
  animation-delay: 0.15s;
}

.delay-char-3 {
  animation-delay: 0.2s;
}

.delay-char-4 {
  animation-delay: 0.25s;
}

.delay-char-5 {
  animation-delay: 0.3s;
}

.delay-char-6 {
  animation-delay: 0.35s;
}

.delay-char-7 {
  animation-delay: 0.4s;
}

.delay-char-8 {
  animation-delay: 0.45s;
}

.delay-char-9 {
  animation-delay: 0.5s;
}

.delay-char-10 {
  animation-delay: 0.55s;
}

/* Number counter animation */
.number-counter {
  display: inline-block;
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Button animation */
.animated-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.animated-btn:hover {
  transform: translateY(-2px);
}

/* Mentor images hover effect */
.mentor-image {
  transition: all 0.3s ease;
}

.mentor-image:hover {
  transform: scale(1.1);
  z-index: 10;
}

/* Play button pulse animation */
.play-button {
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0.7);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(193, 255, 0, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0);
    transform: scale(1);
  }
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

/* Tab animations */
.tab-btn {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.tab-btn.active {
  background-color: #c1ff00;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 255, 0, 0.25);
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #c1ff00;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.tab-btn:hover::after {
  width: 80%;
}

.tab-btn.active::after {
  width: 0;
}

/* Card animations */
/* .advantage-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.advantage-card.show {
  opacity: 1;
  transform: translateY(0);
}

.advantage-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
} */

/* Slider animations - Fade effect */
.slider-container {
  position: relative;
  min-height: 600px;
}

.slider-card {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: auto;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  width: 100%;
}

.slider-card.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Tab content animations */
.tab-content {
  transition: opacity 0.5s ease, transform 0.5s ease !important;
  opacity: 0;
  transform: translateY(10px) !important;
  pointer-events: none;
}

.tab-content.active {
  opacity: 1;
  transform: translateY(0) !important;
  pointer-events: auto;
}

/* Button hover animation */
.btn-animate {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-animate:hover {
  transform: translateY(-2px);
}

.btn-animate::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.btn-animate:hover::after {
  left: 100%;
}

/* Arrow button hover effect */
.arrow-btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-btn:not(:disabled):hover {
  background-color: #f3f4f6;
  transform: scale(1.1);
}

.arrow-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Fade in/out animations for slider */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutSlide {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.fade-in-slide {
  animation: fadeInSlide 0.8s forwards;
}

.fade-out-slide {
  animation: fadeOutSlide 0.5s forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Card staggered animation */
.card-1 {
  transition-delay: 0.1s;
}

.card-2 {
  transition-delay: 0.2s;
}

.card-3 {
  transition-delay: 0.3s;
}

.card-4 {
  transition-delay: 0.4s;
}

.card-5 {
  transition-delay: 0.5s;
}

/* Pulse animation for active tab */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(193, 255, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0);
  }
}

.tab-btn.active {
  animation: pulse 2s infinite;
}

/* Scrollbar styling */
.custom-scrollbar::-webkit-scrollbar {
  height: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #c1ff00;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #a3d600;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.3s ease-out,
    transform 0.4s ease-out;
  transform: translateY(-10px);
  pointer-events: none;
}

.faq-active .faq-content {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.5s ease-in, opacity 0.5s ease-in,
    transform 0.4s ease-in;
  pointer-events: auto;
}

.faq-icon {
  transition: transform 0.4s ease;
}

.faq-active .faq-icon {
  transform: rotate(180deg);
}

.faq-divider {
  transition: all 0.3s ease;
}

.faq-active .faq-divider {
  border-color: #000;
}

.faq-question {
  transition: all 0.3s ease;
}

.faq-active .faq-question {
  font-weight: 600;
}

/* Animation for content appearing */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-active .faq-content-inner {
  animation: fadeIn 0.5s ease-out forwards;
}

.filter-btn {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.filter-btn.active {
  background-color: #c1ff00;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 255, 0, 0.25);
}

.filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #c1ff00;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.filter-btn:hover::after {
  width: 80%;
}

.filter-btn.active::after {
  width: 0;
}

.active-tab {
  background-color: #ccff00;
  color: black;
}

.card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 30%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.arrow-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  margin: 0 -30px;
  z-index: 10;
}

.arrow {
  width: 100%;
  height: 1.5px;
  background-color: #f5f5f5;
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #f5f5f5;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Custom checkbox styling for dark background */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid white;
  border-radius: 0.25rem;
  background-color: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: #ccff00;
  /* Purple color when checked */
  border-color: #ccff00;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ccff00;
}

@media (max-width: 768px) {
  .arrow-line::after,
  .arrow-line::before {
    display: none;
  }

  /* .path-cards {
     flex-direction: column;
   }  */
}

.popup-overlayTwo {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 50;
}

/* .popup-containerTwo {
       width: 100%;
       max-width: 600px;
       border-radius: 8px;
       overflow: hidden;
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     } */

.form-containerTwo,
.thank-you-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.marquee-vertical {
  animation: marquee-up-down 30s ease-in-out infinite;
}

@keyframes marquee-up-down {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.marquee-vertical {
  animation: marquee-up-down 10s ease-in-out infinite;
}

.dot-pattern {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #c1e01c;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .form-containerTwo {
    flex-direction: row;
  }
}

.fold-animation {
  animation: fold 0.8s ease-in-out;
  transform-origin: center;
}

@keyframes fold {
  0% {
    transform: perspective(1200px) rotateY(0deg);
    opacity: 1;
  }

  50% {
    transform: perspective(1200px) rotateY(90deg);
    opacity: 0.3;
  }

  100% {
    transform: perspective(1200px) rotateY(0deg);
    opacity: 1;
  }
}

.fold-animationTwo {
  animation: foldTwo 0.8s ease-in-out;
  transform-origin: center;
}

@keyframes foldTwo {
  0% {
    transform: perspective(1200px) rotateY(0deg);
    opacity: 1;
  }

  50% {
    transform: perspective(1200px) rotateY(90deg);
    opacity: 0.3;
  }

  100% {
    transform: perspective(1200px) rotateY(0deg);
    opacity: 1;
  }
}

.card-content {
  position: relative;
  z-index: 2;
}

.arrow-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* page2 */
.number {
  font-size: 78px;
  line-height: 1;
  font-weight: 700;
  color: #bcf000;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-circle {
  animation: rotate 20s linear infinite;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: fit-content;
}

/* Add this to ensure consistent number widths */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 580px) and (max-width: 639px) {
  .media-circle {
    right: 19px !important;
    top: -40px !important;
  }
}

@media (min-width: 300px) and (max-width: 400px) {
  .media-circle {
    top: -60px !important;
  }
}

@media (min-width: 120px) and (max-width: 639px) {
  .headerone {
    background-color: #f5f5f5 !important;
  }
}

/* select box */

.select2-search__field {
  padding-left: 8px !important;
}

.select2-container--default .select2-selection--multiple {
  border: none !important;
  border-bottom: 1px solid #d1d5db !important;
  /* Tailwind gray-300 */
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  padding-bottom: 4px;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background: #c5ff00 !important;
  color: black !important;
}

/* On focus – optional styling */
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border-bottom: 2px solid #f3f4f6 !important;
  /* Tailwind blue-500 */
}

/* Remove selection background and border on selected items */
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #f3f4f6;
  /* Tailwind gray-100 */
  border: none;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 14px;
}

/* Placeholder styling */
.select2-container--default
  .select2-selection--multiple
  .select2-search--inline
  .select2-search__field::placeholder {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
}

/* custom scroller */
.custom-scroll::-webkit-scrollbar {
  width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  /* Tailwind slate-300 */
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #94a3b8;
  /* Tailwind slate-400 */
}

/* thankyoureserve */

.gradient-line {
  background: linear-gradient(to bottom, #bcf000 0%, #d3d3d3 100%);
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
}

@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

label.error {
  color: #e73d3d;
}


.bg-lime-brand{ 
  background-color: #c1ff00;
}
.bg-dark{
  background-color: #101010;
}
.text-white-font{
  color: #f1f1f1;
}


.text-lime-brand {
    color: rgb(193 255 0 / var(--tw-text-opacity, 1));
}

.text-purple-font {
    color: rgb(188 240 0 / var(--tw-text-opacity, 1));
}