.about {
  position: relative;
  line-height: 26px;
  font-weight: 500;
  /* .panel.about {
      margin-top: 30px;
  } */
}
.about .latest-blog-title {
  width: 100%;
  position: relative;
  font-size: 48px;
  line-height: 48px;
  text-transform: capitalize;
  font-family: "Great Victorian";
  color: #000;
  text-align: left;
  display: block;
  margin-bottom: 20px;
}
.about .blogs-cont {
  /* max-width: 1280px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 3 equal columns */
  grid-template-rows: auto;
  /* Automatic row height */
  gap: 30px;
  /* Space between grid items */
  width: 100%;
  margin: auto;
  text-align: justify;
}
.about .blogs-cont .first {
  grid-column: span 2;
  gap: 30px;
  display: flex;
}
.about .about-text {
  width: 100%;
}
.about .blog-img {
  width: 50%;
  max-width: 360px;
  height: 100%;
  border-radius: 20px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  background: rgba(0, 0, 0, 0.1);
}
.about .blog-img.founder {
  object-fit: contain;
  object-position: bottom;
  /* height: fit-content; */
  /* background: #bfcacf; */
  max-height: 680px;
}
.about .founder-name {
  width: 100%;
  position: relative;
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Plus Jakarta Sans";
  color: #000;
  text-align: left;
  display: inline-block;
}
.about .signature {
  margin-top: 20px;
  width: 80px;
}
.about .personal {
  padding: 10px 0 0 0;
}
.about .personal img {
  width: 30px;
}
.about .signature-cont p {
  margin: 0 0 5px 0;
}
.about .panel {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .about .blogs-cont {
    grid-template-columns: repeat(1, 1fr);
  }
  .about .blogs-cont .first {
    grid-column: span 1;
  }
  .about .first {
    align-items: center;
    flex-direction: column;
  }
  .about .about-text {
    order: 2;
  }
  .about .blog-img {
    width: 100%;
    max-height: 360px;
    max-width: 100%;
    order: 1;
  }
  .about .blog-img.founder {
    aspect-ratio: 16/9;
  }
}
/*# sourceMappingURL=about.min.css.map */
