<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.about-section-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: flex-end;
  width: 100%;
  overflow-y: scroll;
}

.about-page-main-text {
  font-weight: 600;
  font-size: 3.5vh;
  line-height: 100%;
  color: #221a33;
}

.about-page-main-subtext {
  position: relative;
  top: 4.3vh;
  font-size: 1.8vh;
  line-height: 125%;
  color: #585266;
}

.about-page-founder-section-wrapper {
  margin-top: 8vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 50px;
  align-items: center;
  align-content: center;
}
.about-page-founder-section-wrapper .section-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}
.about-page-founder-name {
  margin-top: 1.6vh;
  font-weight: 600;
  font-size: 2.5vh;
  line-height: 100%;
  color: #221a33;
}

.about-page-founder-role {
  font-size: 2vh;
  line-height: 125%;
  /* Main/BLK/100 */
  color: #221a33;
}

.about-page-founder-message {
  margin-top: 2.3vh;
  font-size: 1.8vh;
  line-height: 125%;
  color: #585266;
}

.ceo-image {
  object-fit: cover;
  border-radius: 100%;
}
.about-content-wrapper {
  width: 100%;
  overflow-y: scroll;
}
.about-content-wrapper .venture-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.about-content-wrapper .venture-box .venture-element {
  padding: 15px;
  border: 2px solid #7acb88;
  border-radius: 15px;
  width: 175px;
}
.about-content-wrapper .venture-box h3 {
  font-size: 35px;
  margin: 0;
}
.about-content-wrapper .venture-box p {
  margin: 5px 0;
}
.about-page-founder-section-wrapper .ceo-image {
  width: 150px;
  height: 150px;
}

@media only screen and (max-width: 640px) {
  div.about-section-wrapper {
    overflow-y: scroll;
    justify-content: unset;
    align-items: unset;
    align-content: unset;
    height: 100%;
  }
  .about-content-wrapper .venture-box {
    margin-top: 15px;
  }
  .about-content-wrapper .venture-box .venture-element {
    margin: 8px;
  }
  .about-content-wrapper .venture-box .venture-element h3 {
    font-size: 30px;
    margin: 0;
  }
  .about-page-founder-section-wrapper {
    gap: 25px;
  }
  .about-page-founder-section-wrapper .ceo-image {
    width: 125px;
    height: 125px;
  }
}

@media only screen and (max-height: 1079px) {
  .about-content-wrapper .venture-box {
    margin-bottom: 50px;
  }
}
@media only screen and (min-height: 900px) {
  .about-content-wrapper {
    overflow-y: hidden;
  }
}
</pre></body></html>