.text-ellipsis {
  display: -webkit-box !important;
  -webkit-line-clamp: var(--lines);
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.text-justify {
  text-align: justify;
}

.custom-medium-bold-heading {
  font-weight: 500;
  color: black;
  display: block;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 15px;
}

.custom-medium-heading {
  color: black;
  display: block;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 15px;
}

.custom-medium-bold-heading:hover,
.custom-medium-heading:hover {
  color: var(--theme-color);
}

.primary-text-color-hover-secondary {
  color: var(--theme-color) !important;
  transition: all 0.3s ease-in-out;
}

.primary-text-color-hover-secondary:hover {
  color: var(--secondary-color) !important;
}

.custom-secondary-btn {
  padding: 0.25rem 2rem;
  background: var(--secondary-color);
  border-radius: 25px;
  color: white;
  margin-bottom: 0.5rem;
  font-size: small;
}

.custom-secondary-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

.custom-align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
