:root {
  --dot: #dfe1e4;
}

.h1-font {
  font-size: 40px;
}

.lead-font {
  font-size: 20px;
}

.small-font {
  font-size: 14px;
}

.medium-font {
  font-size: 16px;
}


.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}
.icon-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--LIGHT_MINT_GREEN);
  margin: 0 auto 8px;
}
.icon-circle ion-icon {
  font-size: 22px;
  color: var(--MINT_GREEN);
}
.border-bottom {
  border-bottom: 1px solid gray;
}

.carousel-indicators li {
  background-color: var(--dot);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
}
.carousel-indicators .active {
  background-color: var(--MINT_GREEN);
}

/* Position carousel controls at the far left and right, vertically centered */
.carousel-control-prev,
.carousel-control-next {
  width: 48px; /* Only the arrow area is clickable */
  height: 100%;
  top: 0;
  bottom: 0;
  opacity: 1;
  z-index: 2;
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

/* Remove Bootstrap's default background image for the icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  display: none; /* Hide the default icon, we'll use ::after */
}

/* Use custom < and > for the arrows */
.carousel-control-prev::after,
.carousel-control-next::after {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--MINT_GREEN);
  background: rgba(0,0,0,0.0); /* transparent background */
  border-radius: 50%;
  padding: 0 8px;
  pointer-events: none; /* Only the parent is clickable */
}

.carousel-control-prev::after {
  content: '<';
}

.carousel-control-next::after {
  content: '>';
}

section {
  margin-bottom: 0px;
}