.bm-locations-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 40px;
  margin-top: 20px;
}

@media screen and (min-width: 420px) {
  .bm-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 800px) {
  .bm-locations-grid {
    grid-template-columns: repeat(var(--data-cols), 1fr);
  }
}

.bm-location-item h4 {
  font-weight: bold !important;
  /* text-transform: uppercase !important; */
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 18px !important;
  margin-bottom: 10px !important;
}
.bm-location-item__address span {
  display: inline-block;
  margin-bottom: 2px !important;
}
.bm-location-item__address {
  margin-bottom: 5px;
}
.bm-location-item__contact {
  margin-top: 10px;
}
.bm-location-item__contact a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
  text-decoration: underline;
  font-size: 18px;
  margin-bottom: 5px;
  transition: all 0.3s;
}

.bm-location-item__contact a:hover {
  color: rgb(255, 215, 75);
  opacity: 1;
}

.bm-location-item__contact a:hover {
  opacity: 1;
}

.bm-locations-title {
  font-size: 35px;
  line-height: 1.5;
}
