.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.card-carousel-wrapper {
  overflow: hidden;
  padding: 1rem 0;
}

.card-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
}

.card-carousel .card {
  flex: 0 0 auto;
  width: 35rem;
  scroll-snap-align: start;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

#hero {
  background-size: cover !important;
  display: flex !important;
  background-attachment: scroll !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 100dvh !important;
  position: relative !important;
  z-index: 1 !important;
  overflow: visible !important;
  background-repeat: no-repeat !important;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  #hero {
    background-position: center -80px !important;
  }
}

