.home-container {
  min-height: 90vh;
}

.carousel-overflow-visible {
  overflow: visible;
}

.course-card {
  width: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

.course-card .title {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  flex: 1;
  color: #191919;
}

.course-card .title a {
  color: #191919;
  font-family: "PoetsenOne", Arial, sans-serif;
  font-weight: normal;
}

.course-card .offer {
  background-color: #ff4d64;
  border-radius: 8px;
  color: #fff;
  margin: 0;
  padding: 2px 5px;
  font-size: 11px;
  font-weight: bold;
}

.carousel-indicators {
  position: relative;
  top: 0px;
  margin: 0 20px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px; /* change width */
  height: 10px; /* change height */
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #3574e0;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
  border-radius: 100%; /* add border-radius */
  display: block;
}

.carousel-indicators [data-bs-target].active {
  opacity: 1;
}
