.lmn-img-grid {
  display: block;
  /* Row 1 */
  /* tall */
  /* Row 2 */
  /* Row 3 */
  /* wide */
  /* Row 4 */
}
@media (min-width: 782px) {
  .lmn-img-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    grid-auto-rows: 20rem; /* base height */
    gap: 20px;
    margin: 0;
    max-width: unset !important;
  }
}
.lmn-img-grid .box {
  margin-bottom: 2rem;
  background-color: #054A8C;
  border-radius: 16px;
  padding: 2rem;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
@media (min-width: 782px) {
  .lmn-img-grid .box {
    margin-bottom: 0;
  }
}
.lmn-img-grid .box.overlay::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.lmn-img-grid .box h3, .lmn-img-grid .box p {
  margin: 0;
}
.lmn-img-grid .box h3.white, .lmn-img-grid .box p.white {
  color: #fff;
}
.lmn-img-grid .box h3.blue, .lmn-img-grid .box p.blue {
  color: #054A8C;
}
.lmn-img-grid .box p {
  font-weight: 600;
}
.lmn-img-grid .box h3 + p {
  margin-top: 1rem;
}
.lmn-img-grid .box p + p {
  margin-top: 1rem;
}
.lmn-img-grid .box:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.lmn-img-grid .box:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.lmn-img-grid .box:nth-child(3) {
  grid-column: 3;
  grid-row: 1/span 2;
}
.lmn-img-grid .box:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}
.lmn-img-grid .box:nth-child(5) {
  grid-column: 1;
  grid-row: 2/span 2;
}
.lmn-img-grid .box:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
}
.lmn-img-grid .box:nth-child(7) {
  grid-column: 4;
  grid-row: 2;
}
.lmn-img-grid .box:nth-child(8) {
  grid-column: 2/span 2;
  padding-left: 6rem;
  padding-right: 6rem;
}
.lmn-img-grid .box:nth-child(9) {
  grid-column: 4;
  grid-row: 3;
}
.lmn-img-grid .box:nth-child(10) {
  grid-column: 1;
  grid-row: 4;
}
.lmn-img-grid .box:nth-child(11) {
  grid-column: 2;
  grid-row: 4;
}
.lmn-img-grid .box:nth-child(12) {
  grid-column: 3;
  grid-row: 4;
}
.lmn-img-grid .box:nth-child(13) {
  grid-column: 4;
  grid-row: 4;
}
.lmn-img-grid.investors .box:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
}/*# sourceMappingURL=block-img-grid.css.map */