* {
  /* border: red 1px solid;
  box-sizing: border-box;*/
  margin: 0;
  padding: 0;
}

/* COLORS */

:root {
  --color-teal: #00626b;
  /* rgba(0, 98, 107, 1) */

  --color-light-teal: #6fa5ac;
  /* rgba(111, 165, 172, 1) */

  --color-orange: #f3bd72;
  /* rgba(243, 189, 114, 1)  */

  --color-light-orange: #efd2a7;
  /* rgb(239, 210, 167, 1) */

  --color-dark-orange: #cb7835;
  /* rgba(203, 120, 53, 1),*/

  --color-dark-blue: #122533;
  /* rgba(18, 37, 51, 1) */

  --color-off-white: #fff7f0;
  /* rgba(255, 247, 240, 1) */

  /* Spacing and Radii */
  --card-radius: 15px;
  /* x-offset | y-offset | blur | color */
  --shadow: 0 10px 20px rgba(42, 42, 81, 0.2);
}

.lightOrange {
  color: var(--color-light-orange);
}

.orange {
  color: var(--color-orange);
}

.darkOrange {
  color: var(--color-dark-orange);
}

.teal {
  color: var(--color-teal);
}

.darkBlue {
  color: var(--color-dark-blue);
}

/* HEADERS & PARA*/

h1 {
  font-family: "Julius Sans One", sans-serif;
  font-size: clamp(30px, 2.5vw, 50px);
  font-weight: normal;
  line-height: 1.1;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  text-wrap: normal;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
  font-weight: bolder;
  padding: 0 0 20px 0;
}

h4 {
  font-size: 22px;
  font-weight: 600;
  padding: 0 0 20px 0;
}

p {
  line-height: 1.5em;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.underlineMe:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* BUTTONS */

.blueButton {
  display: inline-block;
  background-color: var(--color-teal);
  color: var(--color-off-white);
  border-radius: var(--card-radius);
  padding: 20px;
  margin: 0 10px;
  font-family: "Archivo Narrow";
  font-size: 24px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blueButton:hover {
  background-color: var(--color-dark-blue);
}

.whiteButton {
  display: inline-block;
  color: var(--color-teal);
  background-color: var(--color-off-white);
  border-radius: var(--card-radius);
  padding: 20px;
  margin: 0 10px;
  font-family: "Archivo Narrow";
  font-size: 1.5em;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 0;
}

.whiteButton:hover {
  background-color: var(--color-dark-orange);
  color: var(--color-off-white);
}

/* BODY */

body {
  font-family: "Archivo Narrow", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--color-off-white);
  display: grid;
  color: var(--color-off-white);
  margin: 0;
  padding: 0;
}

.logo {
  max-width: 200px;
}

/* //// HOME PAGE //// */

/* BG ORANGE TRIANGLE FOR OTHER PAGES */

.bg-triangle {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(250deg, #c87934 50%, transparent 50%);
}

.displayFlexCentered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.displayFlex {
  display: flex;
}

/* GSAP for Home Page */

.phrase-container {
  display: grid;
  place-items: center;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  min-height: 90px;
  overflow: visible;
  transform: translateY(-15px);
}

.phrase {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  color: var(--color-teal);
}

/* SIDEBAR */

#sidebar {
  background: linear-gradient(
    to right,
    var(--color-teal),
    var(--color-light-teal)
  );
  border-left: 10px solid var(--color-dark-orange);
  top: 0;
  left: 0;
  height: 100vh;
  box-sizing: border-box;
  min-width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: sticky;
  align-self: flex-start;
}

/* NAV */
nav {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 20px;
  font-weight: 600;
}

nav ul li a:hover {
  color: var(--color-light-orange);
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 10px 0;
}

a {
  text-decoration: none;
  color: var(--color-off-white);
}

#locationContactText {
  margin-top: auto;
  text-align: right;
}

#locationContactText p {
  padding: 10px 0;
}

.sizeTwentyBold {
  font-size: 20px;
  font-weight: 800;
}

/* MAIN CONTENT */

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* HOME PAGE BG TRIANGLE */

main.content-area {
  flex: 1;
  width: auto;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/BgTriangles.webp") no-repeat center center / 140%;
  min-height: 100vh;
  /* z-index: -2; */
}

/* ORANGE HOME PAGE CIRCLE */

.circle {
  width: min(55vmin, 550px);
  aspect-ratio: 1 / 1;
  /* width: 55vmin;
  height: 55vmin;
   max-width: 95%;
  max-height: 550px; */
  line-height: 1.2;
  aspect-ratio: 1 / 1;
  background-color: var(--color-orange);
  border-radius: 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  align-items: center;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 2;
}

.slugline {
  font-size: clamp(20px, 4vw, 30px);
}

/* ///////////// SERVICES PAGE ////////// */

/* PROJECT LEADERSHIP & SERVICES CARD*/

.yellowCirc-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;

  width: 100%;
  max-width: 724px;
  min-height: 260px;
  border-radius: var(--card-radius);
  background: var(--color-orange);
  overflow: hidden;
  z-index: 1;
  text-align: center;

  padding: 50px;
  margin: 50px;
  box-shadow: var(--shadow);
}

.yellowCirc-card::before {
  content: "";
  position: absolute;
  z-index: -1;

  width: 617px;
  height: 617px;

  top: -160px;
  left: -160px;

  border-radius: 50%;
  z-index: -1;

  background: linear-gradient(
    15deg,
    rgba(203, 120, 53, 1),
    rgba(243, 189, 114, 1)
  );
}

.projLeadershipTextContainer {
  max-width: 850px;
  padding: 0 20px 10px 20px;
}

.projLeadershipTextContainer p {
  padding: 10px 0;
}

/* PHASE CARD */

.phaseLogoCentered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 40px;
  flex-shrink: 0;
}

.phaseFontBoldSeventyFive {
  font-size: 75px;
  font-weight: bold;
  line-height: 1.3;
}

.phaseNumberBoldFourHundred {
  font-size: 400px;
  font-family: "Lora", serif;
  font-weight: bold;
  line-height: 0.7;
  display: block;
}

.triangleBullets {
  padding-left: 20px;
  line-height: 1.5em;
}

.triangleBullets::before {
  content: "▶ ";
  color: var(--color-off-white);
  display: inline-block;
  width: 1em;
  margin-left: -1.3em;
}

.phase-card {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 980px;
  border-radius: var(--card-radius);
  background: var(--color-teal);
  overflow: hidden;
  z-index: 1;
  text-align: left;
  padding: 0 50px;
  margin: 50px;
  box-shadow: var(--shadow);
}

.phase-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 642px;
  height: 555px;
  bottom: -30px;
  left: -250px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(
    0deg,
    rgba(239, 210, 167, 1),
    rgba(0, 98, 107, 1)
  );
}

/* PARTNER IN SUCCESS CARD */

.shortYellowTriRight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  max-width: 724px;

  border-radius: var(--card-radius);
  background: var(--color-orange);
  overflow: hidden;
  z-index: 1;
  text-align: center;
  padding: 50px;
  margin: 50px;
  box-shadow: var(--shadow);
}

.shortYellowTriRight-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 617px;
  height: 617px;
  top: -240px;
  right: -200px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(
    180deg,
    rgba(203, 120, 53, 1),
    rgba(243, 189, 114, 1)
  );
}

.shortYellowTri_TextContainer {
  padding: 0 0 30px 0;
}

.shortYellowTri_TextContainer p {
  padding: 10px 0 10px 0;
}

/* ////////// PROJECTS PAGE ////////// */

.yellowFade-cardLeft,
.yellowFade-cardRight {
  position: relative;
  display: flex;
  margin: 50px 0 50px 0;
  background: linear-gradient(180deg, rgba(243, 189, 114, 1), rgb(239 210 167));
  overflow: hidden;
}

.image-wrapper {
  flex: 0 1 55%;
  max-width: 800px;
}

.yellowFade-cardRight img,
.yellowFade-cardLeft img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
}

.yellowFade-cardRight {
  padding: 50px 0 50px 50px;
  background-position: right;
}

.yellowFade-cardLeft {
  padding: 50px 50px 50px 0;
  background-position: left;
}

.textRight {
  text-align: right;
}

.textContainer {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.textContainer p {
  line-height: 1.5;
}

/* TESTIMONIAL CARD */

.card-wrapper {
  display: flex;
  justify-content: center;
}

blockquote {
  font-size: 1em;
  font-weight: 400;
  max-width: 670px;
  line-height: 1.5;
}

.testimonial-card {
  position: relative;
  border-radius: var(--card-radius);
  background: linear-gradient(
    0deg,
    rgba(0, 98, 107, 1),
    rgba(111, 165, 172, 1)
  );
  overflow: hidden;
  z-index: 1;
  text-align: center;
  padding: 50px 100px;
  margin: 50px 0;

  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  z-index: -1;
  font-family: "Lora", serif;
  font-size: 1000px;
  color: rgba(255, 255, 255, 0.2);

  top: -270px;
  left: 0px;
}

cite {
  display: block;
  text-align: right;
  margin-top: 30px;
  font-size: 1em;
}

/* /////// RESOURCE PAGE /////// */

/* RESOURCES Image on Right Card */

.yellowImgRight-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  min-height: 364px;
  background: var(--color-orange);
  border-radius: var(--card-radius);
  overflow: hidden;
  z-index: 1;
  margin: 50px 20px;
  box-shadow: var(--shadow);
}

.yellowImgRight-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 617px;
  height: 617px;
  top: -240px;
  left: -200px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(
    180deg,
    rgba(203, 120, 53, 1),
    rgba(243, 189, 114, 1)
  );
}

.text-content-left {
  width: 50%;
  text-align: left;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
}

.text-content-left .blueButton {
  align-self: flex-start;
  margin-top: auto;
  margin-left: 0;
  width: 200px;
  text-align: center;
  font-size: 1.5em;
}

.clipped-image-right {
  margin-left: auto;
  justify-content: flex-end;
  width: 50%;
  height: 364px;
  object-fit: fill;
}

/* RESOURCES Image on Left Card */

.yellowImgLeft-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  min-height: 364px;
  background: var(--color-orange);
  border-radius: var(--card-radius);
  overflow: hidden;
  z-index: 1;
  margin: 50px 20px;
  box-shadow: var(--shadow);
}

.yellowImgLeft-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 617px;
  height: 617px;
  top: -240px;
  left: -200px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(
    180deg,
    rgba(203, 120, 53, 1),
    rgba(243, 189, 114, 1)
  );
}

.text-content-right {
  width: 50%;
  text-align: right;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
}

.text-content-right .blueButton {
  align-self: flex-end;
  margin-top: auto;
  margin-left: 0;
  width: 200px;
  text-align: center;
  font-size: 1.5em;
}

.clipped-image-left {
  margin-left: auto;
  justify-content: flex-end;
  width: 50%;
  height: 364px;
  object-fit: fill;
}

/* ////// ABOUT ////// */

/* "Our Mission" card */
.shortYellowTriLeft-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 724px;
  border-radius: var(--card-radius);
  background: var(--color-orange);
  overflow: hidden;
  z-index: 1;
  text-align: center;
  padding: 30px 50px 50px 50px;
  margin: 50px 0;
  box-shadow: var(--shadow);
}

.shortYellowTriLeft-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 617px;
  height: 617px;
  top: -240px;
  left: -350px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(
    180deg,
    rgba(203, 120, 53, 1),
    rgba(243, 189, 114, 1)
  );
}

/* About Card */

.about-card {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 980px;
  min-height: 500px;
  border-radius: var(--card-radius);
  background: linear-gradient(
    180deg,
    rgba(0, 98, 107, 1),
    rgba(111, 165, 172, 1)
  );
  overflow: hidden;
  padding: 60px;
  margin: 50px 20px;
  box-shadow: var(--shadow);
}

.about-content {
  width: 50%;
  text-align: left;
  z-index: 2;
}

.about-content p {
  padding: 10px 0;
}

.about-image {
  position: absolute;
  right: -60px;
  top: 29%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 1;
}

.affiliations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.affiliations img {
  height: 90px;
  width: auto;
  margin-top: 20px;
}

/* Let's Build your Vision Card */

.yellowCircRight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 731px;
  border-radius: var(--card-radius);
  background: var(--color-orange);
  overflow: hidden;
  z-index: 1;
  text-align: center;
  padding: 50px;
  margin: 50px;
  box-shadow: var(--shadow);
}

.yellowCircRight-card::before {
  content: "";
  position: absolute;
  z-index: -1;

  width: 617px;
  height: 617px;

  top: -160px;
  right: -160px;

  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(
    295deg,
    rgba(203, 120, 53, 1),
    rgba(243, 189, 114, 1)
  );
}

.buttonContainer {
  padding: 30px 0 10px 0;
}

/* ----------- MOBILE STYLES ---------------- */

@media (min-width: 1200px) {
  body {
    display: grid;
    grid-template-columns: 300px 1fr;
  }

  #sidebar {
    grid-column: 1;
  }

  main {
    grid-column: 2;
    width: 100%;
  }
}

@media (max-width: 1199px) {
  #sidebar {
    display: none;
  }

  main {
    width: 100%;
    margin-left: 0px;
  }

  .bg-triangle {
    width: 330px;
    width: 70%;
  }

  .paddingForMobile {
    padding-top: 90px;
  }

  /* /////// MOBILE: HOME PAGE /////// */

  h1 {
    /* max-width: 100%;
    font-size: 30px; */
    max-width: 100%;
    width: 100%;
    font-size: 25px; /* Slightly smaller font helps fit the circle better */
    margin: 0;
    text-align: center;
  }

  .circle {
    width: 280px;
    height: 280px;
    background-color: var(--color-orange);
    border-radius: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  .slugline {
    font-size: 20px;
  }

  .phrase-container {
    max-width: 500px;
    min-height: 100px;
    margin-top: 20px;
  }

  .whiteButton {
    font-size: 1em;
    padding: 10px 30px 10px 30px;
    margin: 20px 5px 0 5px;
  }

  /* Mobile Triangles */

  main.content-area {
    background: url("../img/MobileScreenTriangles.webp") no-repeat center
      center / 300%;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  /* ////// MOBILE: PROJECTS PAGE ////// */

  /* TRIANGLES ON RIGHT CARD */

  .yellowFade-cardRight {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .textContainer {
    display: contents;
  }

  .textContainer > div:first-child {
    order: 1;
    padding: 30px 20px 10px 20px;
  }

  .yellowFade-cardRight > div:last-child {
    order: 2;
  }

  .image-wrapper {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .yellowFade-cardRight img {
    width: 100%;
    object-fit: cover;
  }

  .textContainer p {
    order: 3;
    padding: 50px 20px 30px 20px;
    margin: 0;
  }

  /* MOBILE: TRIANGLES ON LEFT CARD */

  .yellowFade-cardLeft {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .yellowFade-cardLeft .textContainer {
    display: contents;
  }

  .textContainer > div:first-child {
    order: 1;
    padding: 30px 20px 10px 20px;
  }

  .yellowFade-cardLeft > div:first-child {
    order: 2;
  }

  .yellowFade-cardLeft img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  /* ///////// MOBILE: SERVICES PAGE //////////  */

  /* MOBILE: PROJECT LEADERSHIP CARD */

  .yellowCirc-card {
    margin: 50px 20px;
    padding: 30px 20px;
    min-height: auto;
    width: 80%;
  }

  .yellowCirc-card::before {
    top: -90px;
    left: -300px;
  }

  .projLeadershipTextContainer {
    padding: 20px 10px 20px 10px;
    max-width: 100%;
  }

  /* MOBILE: PHASE CARDS */

  /* MOBILE STYLES */

  .phase-card {
    flex-direction: column;
    align-items: flex-start;
    margin: 20px auto;
    width: 80%;
    text-align: left;
    padding: 0 20px;
    min-height: 700px;
  }

  /*.phase-card {
     display: flex;
    align-items: center;
    position: relative;
    max-width: 980px;
    
    border-radius: var(--card-radius);
    background: var(--color-teal);
    overflow: hidden;
    z-index: 1;
    text-align: left;
    margin: 50px;
    box-shadow: var(--shadow);
  } */

  .phase-card::before {
    width: 342px;
    height: 250px;
    bottom: 505px;
    left: -150px;
  }

  .phaseLogoCentered {
    display: flex;
    justify-content: flex-start;
    align-items: left;
    width: 100%;
  }

  .phaseFontBoldSeventyFive {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
  }

  .phaseNumberBoldFourHundred {
    font-size: 200px;
    font-family: "Lora", serif;
    font-weight: bold;
    line-height: 0.7;
    display: block;
  }

  .mobileOnlyPadding {
    padding: 30px 0;
  }

  /*  MOBILE: YOUR PARTNER IN SUCCESS */

  .shortYellowTriRight-card {
    margin: 50px 20px;
    padding: 30px 20px;
    min-height: auto;
    width: 80%;
    align-items: center;
  }

  .shortYellowTriRight-card::before {
    top: -240px;
    right: -250px;
  }

  .shortYellowTri_TextContainer {
    padding: 0 0 40px 0;
    text-align: center;
  }

  .shortYellowTri_TextContainer h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .shortYellowTri_TextContainer p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .shortYellowTriRight-card .blueButton {
    display: inline-block;
    width: 100%;
    padding: 15px 10px;
    font-size: 1.5rem;
    box-sizing: border-box;
  }

  /* /////// MOBILE: RESOURCES PAGE /////// */

  /* MOBILE: RESOURCES IMAGE RIGHT CARD */
  .yellowImgRight-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: unset;
    padding: 0;
    margin: 0;
    margin: 50px 20px;
    border-radius: var(--card-radius);
    align-items: center;
    overflow: hidden;
    position: relative;
    isolation: isolate;
  }

  .clipped-image-right {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 250px;
    display: block;
    max-width: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
  }

  .text-content-left {
    width: 90%;
    padding: 30px 20px;
    text-align: left;
    align-items: left;
  }

  .text-content-left .blueButton {
    align-self: left;
    margin: 60px 0 0 0;
    max-width: 250px;
  }

  .yellowImgRight-card::before {
    top: 40px;
    left: -300px;
  }

  /* MOBILE: RESOURCES IMAGE LEFT CARD */

  .yellowImgLeft-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: unset;
    padding: 0;
    margin: 0;
    margin: 50px 20px;
    border-radius: var(--card-radius);
    align-items: center;
    overflow: hidden;
    position: relative;
    isolation: isolate;
  }

  .yellowImgLeft-card::before {
    top: 40px;
    right: -300px;
  }

  .text-content-right {
    width: 90%;
    padding: 30px 20px;
    text-align: right;
    align-items: left;
  }

  .text-content-right .blueButton {
    align-self: right;
    margin: 60px 0 0 0;
    max-width: 250px;
  }
  .clipped-image-left {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 250px;
    display: block;
    max-width: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
  }

  /* /////// MOBILE: ABOUT PAGE //////// */

  /* MOBILE: OUR MISSION */
  .shortYellowTriLeft-card {
    margin: 60px;
  }

  /* MOBILE: ABOUT CARD */
  .about-card {
    flex-direction: column;
    padding: 40px 20px;
    margin: 20px;
    height: auto;
    min-height: unset;
    overflow: visible;
    display: flex;
  }

  .about-image {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 30px auto;
    order: 1;
  }

  .about-content {
    width: 100%;
    text-align: left;
    order: 2;
  }

  .about-content h3,
  .about-content h4 {
    text-align: left;
  }

  /* MOBILE: BUILD YOUR VISION CARD */

  .yellowCircRight-card::before {
    top: -190px;
    right: -340px;
  }

  .yellowCircRight-card a {
    padding: 10px 25px;
    margin: 15px;
    font-size: 1em;
  }

  /* MOBILE: TESTIMONIAL CARD */

  .testimonial-card {
    padding: 70px 30px;
    margin: 20px 20px 40px 20px;
  }

  .testimonial-card::before {
    font-size: 1300px;
    color: rgba(255, 255, 255, 0.2);
    top: -340px;
    left: -150px;
  }

  /* //////////// MOBILE NAV ////////// */

  .logo {
    width: 30vw;
  }

  .mobile-nav {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(
      to bottom,
      var(--color-teal),
      var(--color-light-teal)
    );
  }

  .nav-header {
    border-top: 5px solid var(--color-dark-orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: transparent;
    position: relative;
    z-index: 1001;
  }

  /* THE TRAY */
  .nav-links {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;

    padding-top: 70px;

    margin: 0;
    list-style: none;

    background: linear-gradient(
      to bottom,
      var(--color-teal),
      var(--color-light-teal)
    );

    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links.is-open {
    transform: translateY(0);
    box-shadow: var(--shadow);
    transform: translateY(0);
  }

  #mobileContactInfo {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
  }

  #mobileContactInfo p {
    font-size: 1em;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  #mobileContactInfo a {
    display: inline-block;
    text-align: center;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  /* .content-area {
    padding-top: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    
  } */

  /* Overlay styles */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;

    /* Hidden state */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }

  /* Active state triggered by JS */
  .menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* HAMBURGER MENU */

  .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
  }

  .hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 3px;
    background-color: white; /* Color of mid bar */
    transition: background 0.2s ease-in-out;
  }

  .hamburger::before,
  .hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white; /* Color of top/bottom bars */
    transition:
      transform 0.3s ease-in-out,
      top 0.3s ease-in-out;
  }

  /* Position the top and bottom bars */
  .hamburger::before {
    top: -8px;
  }
  .hamburger::after {
    top: 8px;
  }

  /* --- TRANSFORM TO X --- */

  /* Hide the middle bar */
  .menu-toggle.is-active .hamburger {
    background-color: transparent;
  }

  /* Rotate top bar to 45 degrees */
  .menu-toggle.is-active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }

  /* Rotate bottom bar to -45 degrees */
  .menu-toggle.is-active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
/* --- HIDE MOBILE NAV ON DESKTOP --- */
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
}
