/* =========================
   BREAKPOINTS
========================= */
/* Mobile */
/* Tablet */
/* Desktop */
.dark-bg {
  display: flex;
  width: 100%;
  height: 25rem;
  background-color: rgba(196, 196, 196, 0.4);
  position: absolute;
  left: 0;
  margin-top: -5rem;
  opacity: 1 !important;
  z-index: -99;
}
@media (min-width: 1024px) {
  .dark-bg {
    display: none;
  }
}

#resource-counter {
  display: flex;
  flex-direction: row;
  background-color: white;
  border-radius: 15px;
  padding: 2.5rem 1rem;
  box-sizing: border-box;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#resource-counter div {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#resource-counter div h1 {
  color: #1ea9e2;
  font-weight: bolder;
  font-size: 35px;
}
#resource-counter div span {
  font-size: 12px;
  margin-top: 0.4rem;
  color: #6b7280;
  font-weight: bold;
}
#resource-counter div.center {
  border-left: 1px solid rgba(107, 114, 128, 0.2980392157);
  border-right: 1px solid rgba(107, 114, 128, 0.2980392157);
}
@media (max-width: 768px) {
  #resource-counter {
    width: 100%;
    padding: 2rem 1rem;
  }
  #resource-counter div h1 {
    font-size: 25px;
  }
  #resource-counter div span {
    font-size: 10px;
    font-weight: 500;
  }
}
@media (max-width: 564px) {
  #resource-counter {
    padding: 1.5rem 0.6rem;
  }
  #resource-counter div h1 {
    font-size: 18px;
  }
  #resource-counter div span {
    font-size: 9px;
  }
}/*# sourceMappingURL=resource-counter.css.map */