.aboutWrap {
  gap: 20px;
  margin: auto;
  width: min(1000px, 100%);
  z-index: 5;
  padding: 0px 80px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  padding-bottom: 25px;
  box-sizing: border-box;
}

.aboutText {
  text-align: left;
  font-size: 1.3em;
  font-weight: 300;
  line-height: 27px;
}

.aboutText p {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: unset;
  font-weight: 300;
}

.aboutText br {
  margin: 20px;
}

@media screen and (max-width: 800px) {
  .aboutText p {
    font-size: 1rem;
    line-height: normal;
  }
}

.aboutImg {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 5px;
}

.foundersGrid {
  display: grid;
  /* float: left; */
  max-width: 500px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  text-align: center;
  height: fit-content;
  margin: auto auto 10px auto;
}

@media screen and (min-width: 1400px) {
  .aboutWrap {
    width: 100%;
  }

  .foundersGrid {
    margin: 0px 20px 0px 0px;
    float: left;
  }

  .aboutImg {
    aspect-ratio: 4/5;
  }
}

@media screen and (max-width: 1400px) {
  .foundersGrid {
    max-width: 100%;
  }
  
}

@media screen and (max-width: 1000px) {
  .aboutWrap {
    display: flex;
    flex-direction: column;
    background-color: unset;
    padding: 10px;
    border-radius: 0px;
    backdrop-filter: blur(0px);
  }

  .aboutImg {
    aspect-ratio: 4/6;
  }

  .foundersGrid {
    gap: 0.2rem;
    width: 100%;
  }

  .about {
    padding: 50px 0px;
    width: 100%;
    background-color: var(--darkBg);
  }
}
