h1 {
  padding: 9rem 0 5rem 0;
}

.about-background {
  background-color: #c1b49b;
  height: 50vh;
  width: 100%;
  position: absolute;
  z-index: -1;
}

.about-main {
  width: 830px;
}

.img-main {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-main-text {
  padding: 1rem 0;
}

p {
  text-align: justify;
  margin: 1rem 0;
  line-height: 110%;
}

.img-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 6rem;
}
.img-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-grid img:first-child {
  grid-area: 1/1/3/2;
}
.img-grid img:nth-child(2) {
  grid-area: 1/2/2/3;
}
.img-grid img:last-child {
  grid-area: 2/2/3/3;
}

@media only screen and (max-width: 1024px) {
  .about-main {
    width: 95% !important;
  }
  .img-main {
    width: 100%;
  }
  .about-main-text {
    width: 90%;
    margin: auto;
  }
  .about-main-text p {
    text-align: center;
    line-height: 120%;
    font-size: 1.05rem;
  }
}/*# sourceMappingURL=about.css.map */