body {
  background-color: #fff;
  background: linear-gradient(180deg, rgb(193, 180, 155) 0%, rgb(255, 255, 255) 100%, rgb(255, 255, 255) 100%);
}

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;
}

.testimonials-main {
  -moz-column-count: 2;
       column-count: 2;
  width: 90%;
  max-width: 1200px;
  padding: 0 0 6rem;
}
.testimonials-main > *:nth-child(odd) {
  background-color: #c1b49b;
}

.testimonial-card {
  width: 100%;
  float: left;
  display: flex;
  height: 100%;
  color: #000;
  background: #fff;
  flex: 1 auto;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin: 0 0 1rem;
}
.testimonial-card p {
  text-align: left;
  font-family: "Crimson Text";
  font-family: "Inter";
  font-size: 1.1rem;
  line-height: 1.6rem;
  letter-spacing: 0.5px;
  width: 98%;
  margin-bottom: 2rem;
}
.testimonial-card img {
  width: 30px;
}

.testimonial-inner-bottom {
  display: flex;
  justify-content: space-between;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 2rem;
  width: 100%;
}

.testimonial-date {
  font-family: "Jost", sans-serif;
  color: #927b4f;
  font-size: 1.1rem;
}

.testimonial-name {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  text-transform: capitalize;
}

.testimonials-text {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin: 0 0 1rem;
  background-color: transparent !important;
  padding: 1rem;
}
.testimonials-text p {
  line-height: 1.7rem;
  font-size: 1.1rem;
}

@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;
  }
  .testimonials-main {
    -moz-column-count: 1;
         column-count: 1;
  }
}/*# sourceMappingURL=testimonials.css.map */