/* === Barebones Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Improve text rendering */
html {
  font-size: 18px;
  color: #4a7c59;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Montserrat", sans-serif;
}
/* Make media elements behave sanely */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* Prevent long text from blowing up layouts */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  margin-bottom: 1rem;
}

ul,
ol {
  margin: 0 0 1rem 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5rem 0 0.75rem;
}

a img {
  display: block;
}
a:link {
  color: slateblue;
  text-decoration: none;
}
a:visited {
  color: slateblue;
  text-decoration: none;
}
a:hover {
  color: blue;
  text-decoration: none;
  cursor: pointer;
}
a:active {
  color: slateblue;
}
#header {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  justify-content: center;
  align-items: center;
}
#header-left {
  display: flex;
  width: 25%;
  height: auto;
}
#header-mid {
  display: flex;
  width: 50%;
  height: auto;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}
#logo {
  display: flex;
  width: 40px;
  height: auto;
}
#logo img {
  display: block;
  width: 30px;
  height: auto;
}
#header-right {
  display: flex;
  width: 25%;
  height: auto;
  justify-content: right;
  padding-right: 30px;
}
.contact-btn {
  display: flex;
  width: 200px;
  height: 40px;
  background-color: #4a7c59;
  justify-content: center;
  align-items: center;
  color: #faf3dd;
  border: 0;
  border-radius: 20px;
}
.contact-btn:hover {
  background-color: #8fc0a9;
  cursor: pointer;
}
/* Hamburger icon */
#hamburger {
  position: fixed;
  top: 34px;
  left: 20px;
  z-index: 5000;
  cursor: pointer;
}
#hamburger.active img {
  content: url("../images/close.png");
}
/* Sidebar container */
#side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #4a7c59;
  padding-top: 80px;
  transform: translateX(-260px); /* hidden off-screen */
  transition: transform 0.3s ease;
  z-index: 4000;
}
/* When open */
#side-nav.open {
  transform: translateX(0);
}
/* Links */
#side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#side-nav li {
  margin: 20px 0;
}
#side-nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 20px;
  display: block;
}
/* Invisible overlay behind the menu */
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); /* dim effect; change to 0 for invisible */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3000;
}
/* When menu is open */
#menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
#hero-wrap {
  display: flex;
  width: 100%;
  height: 100vh;
  background-image: url("../images/hc-bg03.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#hero-text-wrap {
  display: flex;
  width: 100%;
  height: 500px;
  margin-top: 120px;
}
#hero-text-left {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  padding-left: 150px;
  justify-content: center;
}
#hero-text-right {
  display: flex;
  width: 50%;
  height: auto;
}
.text-heading {
  display: flex;
  width: 100%;
  height: auto;
  font-size: 24px;
}
.text-byline {
  display: flex;
  width: 100%;
  height: auto;
  font-size: 24px;
  padding-bottom: 20px;
}
#text-button-wrap {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: left;
  gap: 26px;
  padding-left: 6px;
}
.hero-btn {
  display: flex;
  width: 350px;
  height: 50px;
  background-color: #4a7c59;
  color: #faf3dd;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 24px;
}
.hero-btn:hover {
  background-color: #8fc0a9;
  cursor: pointer;
}
#body-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 500px;
  justify-content: center;
  align-items: center;
  background-color: #4a7c59;
}
.body-heading-wrap {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
}
.body-heading {
  display: flex;
  width: 250px;
  height: 40px;
  color: #faf3dd;
  justify-content: center;
  align-items: center;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}
.body-accent-line {
  display: flex;
  width: 400px;
  height: 1px;
  background-color: #faf3dd;
}
#what-we-do-icons-wrap {
  display: flex;
  width: 100%;
  height: 350px;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.what-we-do-icons-wrap-button {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 275px;
  height: 275px;
  justify-content: center;
  align-items: center;
  background-color: #c8d5b9;
  border: 0;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.what-we-do-icons-wrap-button:hover {
  transform: translateY(-10px);
  cursor: pointer;
}
.button-icon {
  display: flex;
  width: 100px;
  height: auto;
  justify-content: center;
  align-items: center;
}
.button-heading {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #4a7c59;
}
.button-byline {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  color: #4a7c59;
}
#body-mid-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 1000px;
  background-image: url("../images/hc-bg02.png");
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  padding-top: 400px;
}
.body-heading-wrap2 {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}
.body-heading2 {
  display: flex;
  width: 250px;
  height: 40px;
  color: #4a7c59;
  justify-content: center;
  align-items: center;
}
.body-accent-line2 {
  display: flex;
  width: 400px;
  height: 1px;
  background-color: #4a7c59;
}
#why-it-matters-sub-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 400px;
  justify-content: center;
  align-items: center;
}
#sub-left {
  display: flex;
  width: 500px;
  height: auto;
  justify-content: left;
  align-items: center;
  font-size: 24px;
}
#sub-right {
  display: flex;
  width: 500px;
  height: auto;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.stats-button {
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 200px;
  background-color: #c8d5b9;
  font-size: 32px;
  color: #4a7c59;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
}
#body-section03 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 1000px;
  background-color: #faf3dd;
  justify-content: center;
  align-items: center;
}
.body-heading3 {
  display: flex;
  width: 375px;
  height: 40px;
  color: #4a7c59;
  justify-content: center;
  align-items: center;
}
#workshop-icons-wrap {
  display: flex;
  width: 100%;
  height: 350px;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.workshop-button {
  display: flex;
  flex-direction: column;
  width: 275px;
  height: 275px;
  background-color: #4a7c59;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.workshop-button:hover {
  transform: translateY(-10px);
  cursor: pointer;
}
.wk-button-icon {
  display: flex;
  width: 100px;
  height: auto;
  justify-content: center;
  align-items: center;
}
.wk-button-heading {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #faf3dd;
}
.wk-button-byline {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  color: #faf3dd;
}
#body-section04 {
  display: flex;
  width: 100%;
  height: 800px;
  justify-content: center;
  background-image: url("../images/hc-bg01.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#meet-your-educator-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 600px;
  align-items: center;
  justify-content: center;
}
#mye-left {
  display: flex;
  width: 350px;
  height: 350px;
  align-items: center;
  justify-content: center;
}
#mye-right {
  display: flex;
  flex-direction: column;
  width: 800px;
  height: 350px;
  justify-content: center;
}
#mye-heading-wrap {
  display: flex;
  width: 100%;
  height: 100px;
  align-items: center;
  padding-top: 20px;
}
#mye-byline-wrap {
  display: flex;
  width: 100%;
  height: 300px;
}
#mye-byline {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 250px;
  font-size: 20px;
}
.body-heading4 {
  display: flex;
  width: 300px;
  height: 40px;
  color: #4a7c59;
  align-items: center;
}
#footer {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 600px;
  align-items: center;
  background-color: #4a7c59;
  color: #faf3dd;
}
#footer-heading {
  display: flex;
  width: 69%;
  height: 100px;
  align-items: flex-end;
  font-size: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #faf3dd;
}
#footer-middle {
  display: flex;
  flex-direction: row;
  width: 69%;
  height: auto;
  font-size: 14px;
  align-items: center;
  padding-top: 50px;
}
#footer-mid-left-wrap {
  display: flex;
  width: 31%;
  height: 150px;
  align-items: center;
}
#footer-mid-left-logo {
  display: flex;
  width: 40px;
  height: auto;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
}
#footer-mid-left-text {
  display: flex;
  width: 300px;
  height: 100px;
  font-size: 28px;
  align-items: center;
  padding-left: 20px;
}
#footer-links-wrapper {
  display: flex;
  width: 75%;
  height: auto;
  justify-content: right;
}
.footer-links {
  display: flex;
  width: 200px;
  height: auto;
  line-height: 24px;
}
#footer-bottom {
  display: flex;
  width: 69%;
}
#footer-legal {
  display: flex;
  width: 100;
  height: 120px;
  font-size: 14px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #faf3dd;
}

/*--MOBILE DEVICES------------------------------------*/
@media (max-width: 768px) {
  h3,
  h4 {
    margin: 0;
    padding: 0;
  }
  #header {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    justify-content: center;
    align-items: center;
  }
  #header-left {
    display: flex;
    width: 20%;
    height: auto;
  }
  #header-mid {
    display: flex;
    width: 65%;
    height: auto;
    justify-content: left;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
  }
  #logo {
    display: flex;
    width: 40px;
    height: auto;
    justify-content: center;
  }
  #logo img {
    display: block;
    width: 30px;
    height: auto;
  }
  #header-right {
    display: none;
  }
  .contact-btn {
    display: flex;
    width: 200px;
    height: 40px;
    background-color: #4a7c59;
    justify-content: center;
    align-items: center;
    color: #faf3dd;
    border: 0;
    border-radius: 20px;
  }
  .contact-btn:hover {
    background-color: #8fc0a9;
    cursor: pointer;
  }
  #hero-wrap {
    display: flex;
    width: 100%;
    height: 850px;
    background-image: url("../images/hc-bg01b.png");
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
  }
  #hero-text-wrap {
    display: flex;
    width: 100%;
    height: 500px;
    margin-top: 80px;
    justify-content: center;
  }
  #hero-text-left {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    padding-left: 0;
    justify-content: center;
  }
  #hero-text-right {
    display: none;
    width: 100%;
    height: auto;
  }
  .text-heading {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 18px;
  }
  .text-byline {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 18px;
    padding-bottom: 20px;
  }
  #text-button-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 26px;
    padding-left: 0;
  }
  .hero-btn {
    display: flex;
    width: 100%;
    height: 50px;
    background-color: #4a7c59;
    color: #faf3dd;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 24px;
  }
  .hero-btn:hover {
    background-color: #8fc0a9;
    cursor: pointer;
  }
  #body-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    background-color: #4a7c59;
  }
  .body-heading-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 20px;
  }
  .body-heading {
    display: flex;
    width: 250px;
    height: 40px;
    color: #faf3dd;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  h1,
  h2,
  h3,
  h4 {
    margin: 0;
    padding: 0;
  }
  .body-accent-line {
    display: none;
  }
  #what-we-do-icons-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .what-we-do-icons-wrap-button {
    display: flex;
    flex-direction: column;
    width: 275px;
    height: 275px;
    justify-content: center;
    align-items: center;
    background-color: #c8d5b9;
    border: 0;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  .what-we-do-icons-wrap-button:hover {
    transform: translateY(-10px);
    cursor: pointer;
  }
  .button-icon {
    display: flex;
    width: 100px;
    height: auto;
    justify-content: center;
    align-items: center;
  }
  .button-heading {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #4a7c59;
    margin-bottom: 0;
  }
  .button-byline {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    color: #4a7c59;
  }
  #body-mid-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 1200px;
    background-image: url("../images/hc-bg02.png");
    background-size: cover;
    background-repeat: no-repeat;
    align-items: start;
    padding-top: 0;
  }
  .body-heading-wrap2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 60px;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }
  .body-heading2 {
    display: flex;
    width: 250px;
    height: 40px;
    align-items: flex-start;
    color: #faf3dd;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
  }
  .body-accent-line2 {
    display: none;
  }
  #why-it-matters-sub-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
  }
  #sub-left {
    display: flex;
    width: 75%;
    height: 150px;
    justify-content: left;
    padding-left: 15px;
    align-items: center;
    font-size: clamp(1.125rem, 2.6vw, 1.35rem);
    color: #faf3dd;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
    margin-bottom: 30px;
  }
  #sub-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .stats-button {
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 200px;
    background-color: #4a7c59;
    font-size: 32px;
    color: #c8d5b9;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
  }
  #body-section03 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #faf3dd;
    justify-content: center;
    align-items: center;
  }
  .body-heading3 {
    display: flex;
    width: 375px;
    height: 40px;
    color: #4a7c59;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  #workshop-icons-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .workshop-button {
    display: flex;
    flex-direction: column;
    width: 275px;
    height: 275px;
    background-color: #4a7c59;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  .workshop-button:hover {
    transform: translateY(-10px);
    cursor: pointer;
  }
  .wk-button-icon {
    display: flex;
    width: 100px;
    height: auto;
    justify-content: center;
    align-items: center;
  }
  .wk-button-heading {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #faf3dd;
  }
  .wk-button-byline {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    color: #faf3dd;
  }
  #body-section04 {
    display: flex;
    width: 100%;
    height: 1000px;
    background-image: none;
    background-color: #faf3dd;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #meet-your-educator-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
  }
  #mye-left {
    display: flex;
    width: 350px;
    height: 350px;
    align-items: center;
    justify-content: center;
  }
  #mye-right {
    display: flex;
    flex-direction: column;
    width: 75%;
    height: 360px;
    justify-content: center;
    align-items: center;
    padding-left: 25px;
  }
  #mye-heading-wrap {
    display: flex;
    width: 100%;
    height: 100px;
    align-items: center;
    padding-top: 20px;
  }
  .body-heading4 {
    display: flex;
    width: 300px;
    height: 40px;
    font-size: 18px;
    color: #4a7c59;
    align-items: center;
  }
  #mye-byline-wrap {
    display: flex;
    width: 100%;
    height: 300px;
    padding-top: 20px;
  }
  #mye-byline {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    font-size: 20px;
  }
  #mye-button-wrap {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: left;
    align-items: center;
    padding: 20px;
  }
  #footer {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    background-color: #4a7c59;
    color: #faf3dd;
  }
  #footer-heading {
    display: flex;
    width: 80%;
    height: 100px;
    align-items: flex-end;
    font-size: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #faf3dd;
  }
  #footer-middle {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    font-size: 14px;
    align-items: center;
    padding-top: 50px;
  }
  #footer-mid-left-wrap {
    display: flex;
    width: 80%;
    height: 150px;
    align-items: center;
    padding: 0;
  }
  #footer-mid-left-logo {
    display: flex;
    width: 40px;
    height: auto;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
  }
  #footer-mid-left-text {
    display: flex;
    width: 300px;
    height: 100px;
    font-size: 28px;
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }
  #footer-links-wrapper {
    display: flex;
    width: 75%;
    height: auto;
    justify-content: center;
  }
  .footer-links {
    display: flex;
    width: 175px;
    height: auto;
    line-height: 24px;
  }
  #footer-bottom {
    display: flex;
    width: 80%;
  }
  #footer-legal {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 14px;
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 50px;
    border-top: 1px solid #faf3dd;
  }
  /*--FIREFOX MOBILE---------------------------------------*/
  /*--FIREFOX MOBILE---------------------------------------*/
  /*--FIREFOX MOBILE---------------------------------------*/
  @supports (-moz-appearance: none) {
    #header {
      display: flex;
      flex-direction: row;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100px;
      justify-content: center;
      align-items: center;
    }
    #header-left {
      display: flex;
      width: 20%;
      height: auto;
    }
    #header-mid {
      display: flex;
      width: 65%;
      height: auto;
      justify-content: left;
      align-items: center;
      font-size: 24px;
      font-weight: bold;
    }
    #logo {
      display: flex;
      width: 40px;
      height: auto;
      justify-content: center;
    }
    #logo img {
      display: block;
      width: 30px;
      height: auto;
    }
    #header-right {
      display: none;
    }
    .contact-btn {
      display: flex;
      width: 200px;
      height: 40px;
      background-color: #4a7c59;
      justify-content: center;
      align-items: center;
      color: #faf3dd;
      border: 0;
      border-radius: 20px;
    }
    .contact-btn:hover {
      background-color: #8fc0a9;
      cursor: pointer;
    }
    #hero-wrap {
      display: flex;
      width: 100%;
      height: 850px;
      background-image: url("../images/hc-bg01b.png");
      background-size: cover;
      background-repeat: no-repeat;
      justify-content: center;
    }
    #hero-text-wrap {
      display: flex;
      width: 100%;
      height: 500px;
      margin-top: 80px;
      justify-content: center;
    }
    #hero-text-left {
      display: flex;
      flex-direction: column;
      width: 80%;
      height: auto;
      padding-left: 0;
      justify-content: center;
    }
    #hero-text-right {
      display: none;
      width: 100%;
      height: auto;
    }
    .text-heading {
      display: flex;
      width: 100%;
      height: auto;
      font-size: 18px;
    }
    .text-byline {
      display: flex;
      width: 100%;
      height: auto;
      font-size: 18px;
      padding-bottom: 20px;
    }
    #text-button-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      gap: 26px;
      padding-left: 0;
    }
    .hero-btn {
      display: flex;
      width: 100%;
      height: 50px;
      background-color: #4a7c59;
      color: #faf3dd;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 24px;
    }
    .hero-btn:hover {
      background-color: #8fc0a9;
      cursor: pointer;
    }
    #body-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      background-color: #4a7c59;
    }
    .body-heading-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      padding-bottom: 20px;
      margin-top: 20px;
    }
    .body-heading {
      display: flex;
      width: 250px;
      height: 40px;
      color: #faf3dd;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }
    h1,
    h2,
    h3,
    h4 {
      margin: 0;
      padding: 0;
    }
    .body-accent-line {
      display: none;
    }
    #what-we-do-icons-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }
    .what-we-do-icons-wrap-button {
      display: flex;
      flex-direction: column;
      position: relative;
      width: 275px;
      height: 275px;
      justify-content: center;
      align-items: center;
      background-color: #c8d5b9;
      border: 0;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }
    .what-we-do-icons-wrap-button:hover {
      transform: translateY(-10px);
      cursor: pointer;
    }
    .button-icon {
      display: flex;
      width: 100px;
      height: auto;
      justify-content: center;
      align-items: center;
    }
    .button-heading {
      display: flex;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      padding: 10px;
      color: #4a7c59;
      margin-bottom: 0;
    }
    .button-byline {
      display: flex;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      padding-left: 15px;
      padding-right: 15px;
      color: #4a7c59;
    }
    #body-mid-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 1200px;
      background-image: url("../images/hc-bg02.png");
      background-size: cover;
      background-repeat: no-repeat;
      align-items: start;
      padding-top: 0;
    }
    .body-heading-wrap2 {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 60px;
      justify-content: center;
      align-items: center;
      padding-top: 0;
    }
    .body-heading2 {
      display: flex;
      width: 250px;
      height: 40px;
      align-items: flex-start;
      color: #faf3dd;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
    }
    .body-accent-line2 {
      display: none;
    }
    #why-it-matters-sub-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
    }
    #sub-left {
      display: flex;
      width: 100%;
      height: 150px;
      justify-content: left;
      align-items: center;
      font-size: 18px;
      line-height: 26px;
      color: #faf3dd;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
      margin-bottom: 30px;
      padding-left: 40px;
    }
    #sub-right {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }
    .stats-button {
      display: flex;
      flex-direction: column;
      width: 250px;
      height: 200px;
      background-color: #4a7c59;
      font-size: 32px;
      color: #c8d5b9;
      align-items: center;
      padding: 20px;
      border-radius: 12px;
    }
    #body-section03 {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      background-color: #faf3dd;
      justify-content: center;
      align-items: center;
    }
    .body-heading3 {
      display: flex;
      width: 100%;
      height: 40px;
      color: #4a7c59;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }
    #workshop-icons-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }
    .workshop-button {
      display: flex;
      flex-direction: column;
      width: 275px;
      height: 275px;
      background-color: #4a7c59;
      justify-content: center;
      align-items: center;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }
    .workshop-button:hover {
      transform: translateY(-10px);
      cursor: pointer;
    }
    .wk-button-icon {
      display: flex;
      width: 100px;
      height: auto;
      justify-content: center;
      align-items: center;
    }
    .wk-button-heading {
      display: flex;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      padding: 10px;
      color: #faf3dd;
    }
    .wk-button-byline {
      display: flex;
      width: 100%;
      height: auto;
      justify-content: center;
      align-items: center;
      padding-left: 15px;
      padding-right: 15px;
      color: #faf3dd;
    }
    #body-section04 {
      display: flex;
      width: 100%;
      height: 1000px;
      background-image: none;
      background-color: #faf3dd;
      justify-content: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    #meet-your-educator-wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      align-items: center;
      justify-content: center;
    }
    #mye-left {
      display: flex;
      width: 100%;
      height: 350px;
      align-items: center;
      justify-content: center;
    }
    #mye-right {
      display: flex;
      flex-direction: column;
      width: 75%;
      height: 360px;
      justify-content: center;
      align-items: center;
      padding-left: 25px;
    }
    #mye-heading-wrap {
      display: flex;
      width: 100%;
      height: 100px;
      align-items: center;
      padding-top: 20px;
    }
    #mye-byline-wrap {
      display: flex;
      width: 100%;
      height: 300px;
      padding-top: 0;
    }
    #mye-byline {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      font-size: 14px;
    }
    #mye-button-wrap {
      display: flex;
      width: 100%;
      height: auto;
      justify-content: left;
      align-items: center;
      padding: 0;
    }
    .body-heading4 {
      display: flex;
      width: 300px;
      height: 40px;
      font-size: 14px;
      color: #4a7c59;
      align-items: center;
    }
    #footer {
      display: flex;
      position: relative;
      flex-direction: column;
      width: 100%;
      height: auto;
      align-items: center;
      background-color: #4a7c59;
      color: #faf3dd;
    }
    #footer-heading {
      display: flex;
      width: 80%;
      height: 100px;
      align-items: flex-end;
      font-size: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #faf3dd;
    }
    #footer-middle {
      display: flex;
      flex-direction: column;
      width: 80%;
      height: auto;
      font-size: 14px;
      align-items: center;
      padding-top: 50px;
    }
    #footer-mid-left-wrap {
      display: flex;
      width: 80%;
      height: 150px;
      align-items: center;
      padding: 0;
    }
    #footer-mid-left-logo {
      display: flex;
      width: 40px;
      height: auto;
      align-items: center;
      justify-content: center;
      padding-right: 10px;
    }
    #footer-mid-left-text {
      display: flex;
      width: 300px;
      height: 100px;
      font-size: 28px;
      justify-content: center;
      align-items: center;
      padding-left: 0;
    }
    #footer-links-wrapper {
      display: flex;
      width: 75%;
      height: auto;
      justify-content: center;
    }
    .footer-links {
      display: flex;
      width: 175px;
      height: auto;
      line-height: 24px;
    }
    #footer-bottom {
      display: flex;
      width: 80%;
    }
    #footer-legal {
      display: flex;
      width: 100%;
      height: auto;
      font-size: 14px;
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid #faf3dd;
    }
  }
}
