* {
  padding: 0;
  margin: 0;
}
.still-grid {
  gap: 40px;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  padding: 60px 60px 60px 180px;
  background-color: #F3F5F4;
}
.grid-info {
  max-width: 305px;
  max-height: 133px;
  width: 100%;
  height: 100%;
  gap: 32px;
}
.grid-info h2 {
  font-family: Spartan, serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 100%;
  letter-spacing: -1px;
  text-align: center;
  color: #5e5e5e;
}
.grid-info h4 {
  font-family: Spartan, serif;
  font-weight: 600;
  font-size: 24px;
  leading-trim: Cap height;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  color: #919191;
}
.grid-info p {
  margin-top: 12px;
  font-family: Spartan, serif;
  font-weight: 600;
  font-size: 20px;
  leading-trim: Cap height;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: justify;
  color: #D5D5D5;
}
.group-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.group-image-grid img {
  aspect-ratio: 1;
  max-width: 595px;
  max-height: 595px;
  width: 100%;
  height: 100%;
  gap: 13.52px;
}
@media screen and (max-width: 468px) {
  .still-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 430px;
    gap: 40px;
    padding: 40px 0 0;
  }
  .still-grid .grid-info {
    max-width: fit-content;
    max-height: fit-content;
    width: 100%;
    height: 100%;
  }
  .grid-info {
    padding-left: 24px;
    padding-right: 24px;
  }
  .group-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    gap: 4px;
    max-block-size: fit-content;
  }
  .group-image-grid img {
    margin: 0 !important;
  }
  .grid-info h2 {
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -1px;
    text-align: left;
  }
  .grid-info h4 {
    font-weight: 600;
    font-size: 20px;
    leading-trim: Cap height;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: left;
  }
  .grid-info p {
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
    leading-trim: Cap height;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: left;
  }
  .repeat-grid {
    padding: 24px;
    background-color: white;
  }
}
@media screen and (min-width: 2600px) {
  .grid-info {
    max-width: 40%;
  }
}
