.carousel-container {
      overflow: hidden;
      position: relative;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    .carousel-item-custom {
      flex: 0 0 33.333%;
      padding: 0 10px;
    }
    @media (max-width: 768px) {
      .carousel-item-custom {
        flex: 0 0 50%;
      }
    }
    @media (max-width: 576px) {
      .carousel-item-custom {
        flex: 0 0 100%;
      }
    }
    .carousel-dots {
      text-align: center;
      margin-top: 15px;
    }
    .carousel-dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 5px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }
    .carousel-dot.active {
      background-color: #e10006;
    }
#customCarousel .card-title {
	font-family: "Rajdhani", sans-serif;
	font-weight: 800;
}	