.fmnd-page {
  display: grid;
  grid-template-columns: 1fr minmax();
}

.fmnd-page section {
  margin-top: 3rem;
}

.fmnd-page section > h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.fmnd-page .content > h2 {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
}

.fmnd-page .content > ul {
  padding-left: 1rem;
  font-weight: 500;
}

.fmnd-page .grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(124px, 1fr)
  );
  grid-gap: 2rem;
}

.fmnd-page .grid .box-logo {
  /* background: black; */
  padding: 1rem;
  position: relative;
}

.fmnd-page .grid .box-logo::before {
  /* for apsect ratio */
  content: "";
  display: block;
  padding-bottom: 100%;
}

.fmnd-page .grid .box-logo img {
  position: absolute;
  max-width: 100%;

  /* Alternate Version */
  /* top: 0; */
  /* bottom: 0; */
  /* right: 0; */
  /* left: 0; */
  /* margin: auto; */

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fmnd-page .grid .box-desc p {
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 12px;
}

.fmnd-page .grid .box-desc a {
  text-align: center;
  display: block;
  font-size: 12px;
}
