/************
 *
 * Counters Styles
 *
 ***********/
/******* Functions *******/
/******* Mixins *******/
/******* Bootstrap *******/
/**
* Fonts
*/
:root {
  --bs-primary: $blue;
  --bs-secondary: $gray-600;
  --bs-tertiary: $teal;
  --bs-success: $green;
  --bs-info: $cyan;
  --bs-warning: $yellow;
  --bs-danger: $red;
  --bs-light: $gray-100;
  --bs-dark: $gray-900;
}

/******* Variables *******/
.counters__group {
  justify-content: center;
}
.counters__row.g-4 {
  margin-top: 20px;
}
.counters__card {
  box-shadow: none;
  padding: 2.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5) !important;
}
.counters__card:last-of-type {
  border: none;
}
@media (max-width: 991.98px) {
  .counters__card {
    border-bottom: 1px solid;
  }
}
@media (min-width: 992px) {
  .counters__card {
    border-right: 3px solid;
  }
}
.counters__text {
  color: var(--bs-quaternary);
}
.counters__image {
  height: 2.5rem;
  width: 2.5rem;
}
.counters__number {
  font-size: var(--bs-font-size-h2);
  font-weight: 400;
}
.counters__title {
  font-size: 14px;
  margin-bottom: 0;
  color: black;
}
