body {
  font-family: 'Poppins', sans-serif !important;
}

/* Define the typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Define the cursor blinking animation */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Apply the typing animation to the 'head' class */
.head {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 2s steps(20, end) infinite; /* Adjust the duration and steps as needed */
}

/* Apply the cursor blinking animation to the 'cursor' class */
.cursor {
  animation: blink 0.8s infinite;
}


    .carousel-container {
        overflow: hidden;
        position: relative;
    }

    .carousel-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-item {
        min-width: 100%;
    }

