.container {
  margin: auto;
  padding: 0 1rem;
  max-width: 71.25rem;
  width: 100%;
}
#highlight {
  color: #ea8478;
  font-size: 1.25rem;
}

.map-gallery {
  padding: 0 0 4rem 0;
}
.map-img-container {
  width: 100%;
  cursor: pointer;    
  height: 500px;
  overflow: hidden;
}
.map-img-container:hover .map-img-content-hover {
  display: block;
}
.map-img-content {
  display: none;
}
img.map-img-class {
  max-width: 100%;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
img:hover {
  transform: scale(1.05);
}
.map-img-content-hover {
  z-index: 1;
  position: absolute;
  pointer-events: none;
  top: -580px;
  left: -0px;
  white-space: nowrap;
  display: none;
  padding: 1rem;
  background: #fff;
  font-weight: 400;
  margin-top: 1.25rem;
  margin-left: -2rem;
}
.title {
  color: #111;
  font-size: 1.5rem;
  font-weight: 700;
}
.category {
  font-size: 1rem;
  color: #ddd;
}
.map-grid {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
}
.map-grid > [class*=column-] {
  display: block;
}
@supports (display: grid) {
  .map-gallery .map-grid {
    grid-gap: 1rem;
  }
}
@supports (display: grid) {
  .map-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
}
@supports (display: grid) {
  .map-grid > [class*=column-] {
    margin: 0;
    max-width: 100%;
  }
}
@supports (display: grid) {
  @media (min-width: 62rem) {
    .column-md-4 {
      grid-column-start: span 4;
      grid-column-end: span 4;
    }
  }
}
@supports (display: grid) {
  @media (min-width: 62rem) {
    .column-md-6 {
      grid-column-start: span 6;
      grid-column-end: span 6;
    }
  }
}
@supports (display: grid) {
  .column-md-12 {
    grid-column-start: span 12;
    grid-column-end: span 12;
  }
}