.aboutUsIntroSection {
  display: flex;
  padding: 0px var(--deviceWidthPaddingSize);
  align-items: center;
  gap: 50px;
  align-self: stretch;
}

.aboutUsIntroSection img.aboutUsIntroImg {
  width: 35vw;
  align-self: stretch;
  border-radius: 10px;
  box-shadow: 0px 0px 25px 0px var(--black25);
  -o-object-fit: contain;
     object-fit: contain;
}

.aboutUsIntroSection .aboutUsIntroTexts {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex: 1 0 0;
}

.aboutUsIntroSection .aboutUsIntroTexts h2 {
  color: var(--brandGreen);
  font-family: "Literata";
  font-size: var(--xXLargeSize);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.aboutUsIntroSection .aboutUsIntroTexts .introParagraphs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.aboutUsIntroSection .aboutUsIntroTexts .introParagraphs p {
  align-self: stretch;
  color: var(--brandGreen);
  text-align: justify;
  font-family: "Lato";
  font-size: var(--mediumSize);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.imgAndStatementSection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.imgAndStatementSection .imgSection {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--brandGreen);
}

.imgAndStatementSection .imgSection img {
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  flex: 1 0 0;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
}

.imgAndStatementSection .missionVision {
  display: flex;
  padding: 50px var(--deviceWidthPaddingSize);
  align-items: center;
  gap: 50px;
  align-self: stretch;
  background: var(--brandGreen);
}

.imgAndStatementSection .missionVision .statementContainer {
  display: flex;
  padding: 0px 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}

.imgAndStatementSection .missionVision .statementContainer h2.StatementHeader {
  align-self: stretch;
  color: white;
  text-align: center;
  font-family: "Literata";
  font-size: var(--xXLargeSize);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.imgAndStatementSection .missionVision .statementContainer p.statementText {
  align-self: stretch;
  color: white;
  text-align: center;
  font-family: "Lato";
  font-size: var(--mediumSize);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.historySection {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-self: stretch;
  padding: 0px var(--deviceWidthPaddingSize);
  align-items: center;
  align-self: stretch;
}

.historySection h2 {
  align-self: stretch;
  color: var(--brandGreen);
  text-align: center;
  font-family: "Literata";
  font-size: var(--xXLargeSize);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.historySection .historyParagraphs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.historySection .historyParagraphs p {
  align-self: stretch;
  color: var(--brandGreen);
  text-align: justify;
  font-family: "Lato";
  font-size: var(--mediumSize);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.historySection a {
  color: var(--brandGreen);
  text-decoration: none;
  font-weight: bold;
}

.historySection a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .aboutUsIntroSection {
    flex-direction: column;
    justify-content: center;
  }

  .aboutUsIntroSection img {
    margin: auto;
  }

  .aboutUsIntroSection .aboutUsIntroTexts {
    align-items: center;
    gap: 0px;
  }

  .aboutUsIntroSection .aboutUsIntroTexts h2 {
    text-align: center;
  }
}

@media (max-width: 600px) {
  body {
    gap: 25px;
  }

  .imgAndStatementSection .imgSection {
    flex-direction: column;
  }

  .imgAndStatementSection .imgSection img {
    height: 50vh;
    min-height: 500px;
    width: -webkit-fill-available;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .imgAndStatementSection .missionVision {
    flex-direction: column;
  }
}
