/* Base */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
}

/* Config */

.animate__animated.animate__fadeIn {
  --animate-duration: 0.2s;

}

.animate__animated.animate__fadeOut {
  --animate-duration: 0.1s;
}

/* Navbar */

.navbar-links li a {
  border-bottom-width: 0;
  background-image: linear-gradient(transparent, transparent), linear-gradient(#000000, #000000);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease-out;
}

.navbar-links li a:hover {
  background-size: 100% 1px;
  background-position: 0 100%;
}

.navbar-links li a:not(:hover) {
  background-size: 0 1px;
  background-position: 100% 100%;
}

/* Clients Scroll Section */

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}
.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}
.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}
.logos-slide img {
  height: 50px;
  margin: 0 40px;
}

/* Diwali Decors */

@keyframes hue-shift {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(180deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

lights-animated {
  display: inline-block;
  animation: hue-shift 5s infinite linear;
}

@keyframes colors {
  0% {
    filter: drop-shadow(0 0 10px #ff0000);
  }
  25% {
    filter: drop-shadow(0 0 10px #5eff00);
  }
  50% {
    filter: drop-shadow(0 0 10px #00d9ff);
  }
  75% {
    filter: drop-shadow(0 0 10px #9900ff);
  }
  100% {
    filter: drop-shadow(0 0 10px #ff0000);
  }
}

.diwali-ani{
  animation: colors 5s infinite linear;
  filter: drop-shadow(0 0 10px #ff0000);
}
