.grid-container {
  grid-auto-rows: minmax(30px, auto);
}

.our-story {
  z-index: 5;
  background-color: #00222e;
}

.about-us-header-container {
  grid-column: 2 / 12;
  grid-row: 3;
  padding-top: 125px;
}

.about-us-header-content {
  width: 420px;
}

.about-us-header-title-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.about-us-header-content-container {
  grid-column: 2 / 12;
  grid-row: 5;
}

.about-us-header-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 35px;
}

.about-us-header-content-wrapper .right-column {
  flex: 0 1 calc(46% - 20px);
}

.about-us-header-content-wrapper .svg-line-wrapper {
  position: absolute;
  left: 50%;
  top: 1%;
  width: 2px;
  height: 100%;
  z-index: 1;
  display: flex;
  pointer-events: none;
}

.svg-line-wrapper .vertical-svg-line {
  width: 2px;
  height: 100%;
  display: block;
}

.about-us-header-body-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.name-meaning-container-wrapper {
  background-image: url('../../images/rebrand-images/About-Us/mesh-v3.png');
  background-size: cover;
  background-position: 0 -307px;
  background-repeat: no-repeat;
  margin-top: -65px;
}

.name-meaning-container {
  grid-column: 2 / 12;
  grid-row: 6;

  height: 1150px;
  padding-top: 175px;
  position: relative;
}

.name-meaning-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.name-meaning-logo {
  width: 50px;
  height: 50px;
}

.name-meaning-definitions {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 50px;
}

.name-definition {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.definition-image-container {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.definition-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.definition-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.definition-term {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 2px;
}

.definition-text {
  line-height: 1.6;
}

.name-conclusion-content {
  width: 870px;
}

@media (max-width: 1024px) {
  .name-conclusion-content {
    width: 85%;
  }
}

@media (max-width: 768px) {
  .about-us-header-image {
    display: block;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
  }

  .about-us-header-content-wrapper {
    flex-direction: column;
  }

  .about-us-header-content-wrapper .svg-line-wrapper {
    display: none;
  }

  .about-us-header-content-column {
    width: 100%;
  }

  .name-meaning-definitions {
    flex-direction: column;
    gap: 30px;
  }

  .definition-image-container {
    height: 150px;
  }
}

@media (max-width: 767px) {
  .about-us-header-container {
    grid-column: 1;
  }

  .about-us-header-content-container {
    grid-column: 1;
  }

  .name-meaning-container {
    grid-column: 1;
  }
}

@media (max-width: 450px) {
  .about-us-header-container {
    grid-row: 3;
  }

  .about-us-header-content-container {
    grid-row: 4;
  }

  .name-meaning-container {
    grid-row: 5;
  }

  .about-us-header-title {
    width: 190px;
  }

  .about-us-header-content {
    width: 220px;
  }

  .about-us-header-image {
    top: 0.2%;
    left: 21%;
    width: 80%;
    scale: 0.35;
  }

  .about-us-header-body-content .leo-medium-italic {
    line-height: 38px;
  }

  .name-conclusion-content {
    width: 100%;
  }

  .name-meaning-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .definition-term {
    font-size: 20px;
  }

  .definition-image-container {
    height: 120px;
  }
}

/* What We Do Section */

.what-we-do {
  z-index: 10;
  position: relative;
}

.what-we-do-header-container {
  grid-column: 1 / 12;
  grid-row: 2;
  display: flex;
  flex-direction: column;
}

.what-we-do-header-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.what-we-do-header-title {
  margin-bottom: 30px;
}

.what-we-do-content-container {
  grid-column: 1 / 12;
  grid-row: 3;
}

.what-we-do-card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: space-between;
}

.what-we-do-card {
  position: relative;
  min-width: 310px;
  width: calc(33% - 30px);
  min-height: 390px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.what-we-do-card-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 30px;
}

.what-we-do-card-title {
  width: 50%;
  font-size: 24px;
  line-height: 35px;
}

.card-content-fs {
  font-size: 19px;
}

.what-we-do-card-body {
  width: 95%;
}

.what-we-do-card-icon {
  height: 65px;
  width: 72px;
}

.what-we-do-card-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.what-we-do-card a {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.what-we-do-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px; /* initial height of the color bar */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgb(255, 255, 255);
  z-index: 1;
}

.what-we-do-card.orange::after {
  background-color: #f46036;
}

.what-we-do-card.light-blue::after {
  background-color: #3499e7;
}

.what-we-do-card.blue::after {
  background-color: #23649e;
}

.what-we-do-card.light-green::after {
  background-color: #4abd92;
}

.what-we-do-card.dark-green::after {
  background-color: #259271;
}

@media (max-width: 768px) {
  .what-we-do-card-header .header-content {
    width: 100%;
  }

  .what-we-do-card {
    width: 100%;
    min-height: 340px;
  }

  .what-we-do-card-header {
    align-items: center;
  }

  .what-we-do-card .what-we-do-card-title {
    width: 100%;
  }

  .what-we-do-card .what-we-do-card-icon {
    width: 50px;
    height: 50px;
  }

  .what-we-do-card-link {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .what-we-do-header-container {
    grid-column: 1;
  }

  .what-we-do-content-container {
    grid-column: 1;
  }

  .what-we-do-card-container {
    flex-direction: column;
    gap: 20px;
  }

  .what-we-do-card {
    width: 100%;
    min-width: auto;
    min-height: 340px;
    margin-bottom: 20px;
  }

  .what-we-do-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .what-we-do-card-title {
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 1.2px;
  }

  .header-content {
    margin-bottom: 25px;
  }

  .what-we-do-card-link {
    margin-top: 30px;
  }
}

@media (max-width: 450px) {
}

/* Who We Serve Section */

.who-we-serve {
  z-index: 5;
}

.who-we-serve-header-container {
  grid-column: 1 /12;
  grid-row: 2;
  margin: 100px 20px 0;
}

.who-we-serve-header-title {
  margin-bottom: 40px;
}

.who-we-serve-header-content {
  width: 770px;
}

.who-we-serve-card-container {
  grid-column: 1 / 12;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-we-serve-card {
  width: 100%;
  min-height: 230px;
  background-color: #1f7e64;
  border: 2px solid #259271;
  border-radius: 8px;
  padding: 50px 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.who-we-serve-card-icon {
  height: 80px;
  width: 80px;
}

.who-we-serve-card-icon .one {
  border: #f5b939 4px solid;
  border-radius: 4px;
}

.who-we-serve-card-icon .two {
  border: #6ce0b5 4px solid;
  border-radius: 4px;
}

.who-we-serve-card-icon .three {
  border: #3499e7 4px solid;
  border-radius: 4px;
}

.who-we-serve-card-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.who-we-serve-card-body {
  width: 93%;
}

.who-we-serve-conclusion-container {
  grid-column: 1 / 12;
  grid-row: 4;
}

.who-we-serve-conclusion-container .header-formatting {
  width: 770px;
  margin-bottom: 0;
}

.engage-us-title-container {
  grid-column: 1 / 12;
  grid-row: 6;
  margin-top: -20px;
}

.engage-us-card-container {
  grid-column: 1 / 12;
  grid-row: 7;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.engage-us-card {
  width: calc(33% - 20px);
  min-height: 200px;
  background-color: transparent;
}

.engage-us-svg-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  height: 90px;
  width: 100%;
}

.location-svg {
  height: 46px;
  width: 40px;
}

.dottedline-svg {
  width: 250px;
}

@media (max-width: 768px) {
  .who-we-serve-header-content {
    width: 85%;
  }

  .who-we-serve-conclusion-container .header-formatting {
    width: 85%;
  }

  .engage-us-title-container .header-formatting {
    width: 55%;
  }

  .engage-us-card {
    width: calc(47% - 10px);
  }
}

/* Our Team Section */
.our-team {
  background-image: url('../../../assets/images/rebrand-images/About-Us/our-team-bg-image.png');
  background-size: cover;
  z-index: 5;
  padding-bottom: 240px;
}

.our-team .grid-container {
  grid-auto-rows: auto;
}

.our-team-content-wrapper {
  grid-column: 1 / 12;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.our-team-content {
  width: 75%;
}

.our-team-gif {
  position: absolute;
  top: 0;
  right: 20px;
  height: 100%;
}

.our-team-gif img {
  height: 100%;
}

.our-team-link-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.our-team-link-wrapper a {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 700;
  color: #6ce0b5;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 4px;
  text-decoration: none;
}

.our-team-link-wrapper a:hover {
  text-decoration: none;
  cursor: pointer;
}

svg#wave {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -206px;
  z-index: 1000;
}

.wave-fill {
  fill: #202b2e !important;
  transition: fill 0.3s ease;
}

@media (max-width: 768px) {
  .our-team-content {
    width: 100%;
  }
}

.name-meaning-title {
  display: flex;
  justify-content: flex-start;
  align-items: unset;
}

.la-logo {
  height: 53px;
  width: 28px;
  margin-right: 25px;
}

.about-us-template .box-wrap {
  padding-bottom: 0;
}

.left-column {
  flex: 0 1 calc(46% - 20px);
  max-width: 537px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 35px;
}

.right-column {
  flex: 0 1 calc(45% - 20px);
  max-width: 537px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 45px;
}

.fixed-width-container {
  max-width: 1450px;
  margin: 0 auto;
}

.name-meaning-parts {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: center;
}

.left-column,
.right-column {
  max-width: none;
}

.name-meaning-parts .left-column,
.name-meaning-parts .right-column {
  width: 50%;
  flex: none;
  max-width: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.name-meaning-parts .left-column span,
.name-meaning-parts .right-column span {
  display: block;
  padding: 15px 0 40px;
  text-transform: uppercase;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: bold;
  font-size: 26px;
}

.name-meaning-parts .left-column div,
.name-meaning-parts .right-column div {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
}

.name-meaning-parts .right-column {
  margin-left: 70px;
}

.extra-bottom-padding {
  padding-bottom: 200px !important;
}

.what-we-do {
  background-image: url('../../../assets/images/rebrand-images/About-Us/what-we-do-bg-image.png');
  background-size: cover;
  /* background-position: 50% 8%; */
}

.who-we-serve {
  background-image: url('../../../assets/images/rebrand-images/AM-background/field-results-bg-image.png');
  background-size: cover;
  /* background-position: 50% 50%; */
}

.learn-more {
  z-index: 1000;
  height: 475px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.learn-more-image-container {
  height: 100%;
  background-image: url('../../../assets/images/rebrand-images/Practices/practices-cta-image.png');
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.about-us-template .fc-learn-more-banner-container {
  height: 100%;
  width: 50%;
  background-color: #3499e7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.liminal-content span {
  font-size: 32px;
  letter-spacing: 3.6px;
  line-height: 1.79em;
}

.liminal-content div {
  line-height: 40px;
  width: 265px;
}

.mb-75 {
  margin-bottom: 75px !important;
}

/* Conflict */
.fc-learn-more-banner-spacing {
  min-width: unset;
}

.fc-learn-more-button a {
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 700;
}

.about-us-header-title-fs {
  font-size: clamp(48px, 5.7vw, 109px);
}

.about-us-header-body-content {
  font-size: clamp(26px, 1.2vw, 16px);
}

.name-meaning-title {
  font-size: clamp(22px, 2.7vw, 53px);
}

.liminal-content span {
  font-size: clamp(20px, 2.2vw, 32px);
}

.liminal-content div {
  font-size: clamp(16px, 1.1vw, 20px);
}

.name-conclusion-content {
  font-size: clamp(26px, 1.2vw, 16px);
}

/* ==========================================================================
   Standard Media Queries
   ========================================================================== */

/* Large Desktop */
@media (max-width: 1440px) {
  /* Large desktop styles */

  .our-story {
    padding-left: 120px;
    padding-right: 120px;
  }

  svg#wave {
    bottom: -130px;
  }

  .learn-more-image-container {
    background-size: cover;
  }

  .name-meaning-container-wrapper {
    background-position: 14px -25px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  /* Section 1: Our Story */
  .about-us-header-container,
  .about-us-header-content-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-us-header-content-title .header-formatting {
    font-size: 28px;
    line-height: 1.2;
  }

  /* Section 2: The Meaning Behind the Name */
  .name-meaning-container {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 175px;
    height: auto;
  }

  .our-team {
    padding-bottom: 200px;
  }

  svg#wave {
    bottom: -100px;
  }

  .our-story {
    padding-left: 80px;
    padding-right: 80px;
  }

  .name-meaning-parts .left-column,
  .name-meaning-parts .right-column {
    gap: unset;
    align-items: flex-start;
  }

  .name-meaning-parts .left-column img,
  .name-meaning-parts .right-column img {
    transform: scale(0.8);
    height: auto;
  }

  .name-meaning-parts .right-column {
    margin-left: 20px;
  }

  .name-meaning-container-wrapper {
    background-position: 1px 7px;
  }

  .name-meaning-parts .liminal-content span {
    font-size: 22px;
    padding: 0 0 20px;
    margin-top: 50px;
  }

  .name-meaning-parts .liminal-content div {
    font-size: 18px;
    line-height: 2;
    width: 230px;
  }

  .mb-75 {
    margin-bottom: 30px !important;
  }

  .engage-us-card-container,
  .what-we-do-card-container {
    justify-content: space-evenly;
  }

  .what-we-do-card {
    min-width: 100%;
    width: 100%;
    min-height: 260px;
  }

  .what-we-do-card-header {
    flex-direction: row;
    align-items: center;
  }

  .what-we-do-header-container {
    padding: 0;
  }

  .what-we-do-header-content-wrapper {
    gap: unset;
  }

  .what-we-do-header-container {
    grid-column: 2 / 11;
    padding: 0;
  }
}

/* Small Desktop */
@media (max-width: 1024px) {
  .our-story {
    padding-left: 50px;
    padding-right: 50px;
  }

  .extra-bottom-padding {
    padding-bottom: 100px;
  }

  /* Section 1: Our Story - Scale down image and text */
  .about-us-header-image img {
    max-width: 85%;
    height: auto;
  }

  .about-us-header-title {
    padding-top: 10px;
  }

  .about-us-header-title-fs {
    line-height: 50px;
  }

  .about-us-header-content-container {
    padding-top: 30px;
  }

  .about-us-header-container,
  .about-us-header-content-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-us-header-content-title .header-formatting {
    font-size: 26px;
    line-height: 1.2;
  }

  .about-us-header-body-content {
    gap: 30px;
    line-height: 1.5;
  }

  /* Section 2: The Meaning Behind the Name - Scale content */
  .name-meaning-container {
    margin-top: 120px;
    height: auto;
    padding: 0 0 75px;
  }

  .la-logo {
    height: 45px;
    width: 24px;
  }

  .name-conclusion-content,
  .name-intro-content {
    font-size: 20px;
    line-height: 1.4;
  }

  .name-meaning-parts .left-column,
  .name-meaning-parts .right-column {
    gap: unset;
  }

  .name-meaning-parts .left-column img,
  .name-meaning-parts .right-column img {
    transform: scale(0.7);
    height: auto;
  }

  .name-meaning-parts .left-column img {
    margin-left: -15px;
  }

  .name-meaning-parts .right-column img {
    margin-right: -10px;
  }

  .name-meaning-parts .right-column {
    margin-left: 0;
  }

  .name-meaning-parts {
    margin-bottom: 30px;
    gap: unset;
  }

  .name-meaning-parts .liminal-content span {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 0 25px;
  }

  .name-meaning-parts .liminal-content div {
    line-height: 24px;
    width: 177px;
    font-size: 14px;
  }

  .name-conclusion-content {
    width: 75%;
  }

  .mb-75 {
    margin-bottom: 25px !important;
  }

  .name-meaning-title.header-formatting {
    margin-bottom: 25px !important;
  }

  .mask-box {
    margin-block: unset;
    padding-block: unset;
    mask-image: none;
  }

  .name-meaning-container-wrapper {
    background-position: 0 -160px;
  }

  .our-team-gif {
    right: 20px;
  }

  svg#wave {
    bottom: -75px;
  }

  /* Section 4: Who We Serve - Scale content */
  .below-mask-box {
    padding-top: 0;
  }

  .who-we-serve-header-container {
    margin: 0;
  }

  .who-we-serve-header-content {
    width: 650px;
  }

  .who-we-serve-card {
    min-height: 190px;
    padding: 40px 30px;
    gap: 40px;
  }

  .who-we-serve-card-icon {
    height: 65px;
    width: 65px;
  }

  .who-we-serve-card-title {
    font-size: 20px;
  }

  .who-we-serve-card-body {
    font-size: 14px;
    line-height: 1.4;
  }

  .who-we-serve-conclusion-container .header-formatting {
    width: 650px;
  }

  /* Section 5: Our Team - Scale content */
  .our-team {
    padding-bottom: 180px;
  }

  .our-team-content-wrapper {
    margin-top: 30px;
    gap: 30px;
  }

  .our-team-content {
    width: 75%;
  }

  .section-header-content-fs {
    font-size: 18px;
    line-height: 1.8;
  }

  .our-team-title {
    transform: scale(0.9);
    transform-origin: left center;
  }

  /* Section 6: Learn More - Scale content */
  .learn-more {
    height: 400px;
  }

  .fc-learn-more-banner-container {
    padding: 30px;
  }

  .fc-learn-more-banner-spacing {
    width: 100%;
  }

  .learn-more-header-fs {
    font-size: 28px;
    line-height: 1.3;
  }

  .learn-more-image-container {
    background-size: cover;
  }

  .our-team-content-wrapper,
  /* .what-we-do-header-container, */
  .who-we-serve-header-container,
  .engage-us-card-container,
  .who-we-serve-card-container,
  .who-we-serve-conclusion-container,
  .engage-us-title-container {
    padding-left: 40px;
    padding-right: 40px;
    grid-column: 1 / 13;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .our-story {
    padding-left: 0;
    padding-right: 0;
  }

  .about-us-header-container,
  .about-us-header-content-container {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 0;
  }

  /* Section 1: Our Story - Stack image above content */
  .about-us-header-title-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .about-us-header-image {
    order: -1;
    margin-bottom: 0;
  }

  .about-us-header-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .about-us-header-content-wrapper .svg-line-wrapper {
    display: none;
  }

  .about-us-header-body-content {
    gap: 25px;
    line-height: 1.4;
  }

  .about-us-header-content-title .header-formatting {
    line-height: 1.1;
  }

  /* Section 2: The Meaning Behind the Name - Stack vertically */
  .name-meaning-container-wrapper {
    background-position: -197px 139px;
  }

  .name-meaning-parts .left-column,
  .name-meaning-parts .right-column {
    width: 100%;
    justify-content: center;
  }

  .name-meaning-parts .right-column {
    margin-left: 0;
    max-width: 100%;
  }

  .name-meaning-parts .left-column img,
  .name-meaning-parts .right-column img {
    max-width: 200px;
    width: 100%;
  }

  .name-meaning-parts .liminal-content span {
    font-size: 20px;
    padding-bottom: 17px;
  }

  .name-meaning-parts .liminal-content div {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    max-width: 200px;
  }

  .name-meaning-container {
    width: 100vw;
    padding-left: 80px;
    padding-right: 80px;
  }

  .name-meaning-title {
    width: 100vw;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;

    /* Fix Clamp */
    font-size: 32px;
  }

  .name-conclusion-content {
    width: 100%;
    text-align: left;
  }

  .name-conclusion-content,
  .name-intro-content {
    font-size: 18px;
    line-height: 1.4;
  }

  .name-meaning-parts .left-column img,
  .name-meaning-parts .right-column img {
    transform: scale(0.8);
    margin: 0;
  }

  .name-meaning-parts .liminal-content {
    align-items: flex-start;
    gap: 8px;
  }

  .name-meaning-parts {
    gap: unset;
    flex-direction: column;
  }

  .name-conclusion-content {
    width: 100%;
  }

  .our-team {
    padding-bottom: 140px;
  }

  svg#wave {
    bottom: -65px;
  }

  .learn-more {
    display: flex !important;
  }

  .learn-more-image-container {
    height: 100% !important;
  }

  .what-we-do-header-container {
    grid-column: 1;
  }

  .what-we-do-card-container {
    align-items: flex-end;
  }

  .what-we-do-card-header {
    flex-direction: row;
  }

  .what-we-do-card {
    min-width: 100%;
    min-height: 260px;
  }

  .engage-us-title-container .header-formatting {
    width: 100%;
  }

  .engage-us-card-container {
    flex-direction: column;
    grid-column: 1 / 12;
  }

  .engage-us-card {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .our-story {
    padding-left: 0;
    padding-right: 0;
  }

  .la-logo {
    margin-right: 12px;
  }

  .grid-container {
    max-width: 480px !important;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 40px;
  }

  /* Section 1: Our Story - Mobile optimized */
  .about-us-header-container,
  .about-us-header-content-container {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 0;
  }

  .about-us-header-title-container {
    gap: unset;
  }

  .about-us-header-content-title .header-formatting {
    font-size: 24px;
    line-height: 1.2;
  }

  .about-us-header-title,
  .about-us-header-content {
    width: 100%;
  }

  .about-us-header-title {
    margin-bottom: 15px !important;
    margin-top: -30px;
  }

  .about-us-header-title {
    padding-top: 15px;
  }

  .about-us-header-title-fs {
    padding-top: 0;
  }

  .about-us-header-content-wrapper {
    gap: 15px;
  }

  .about-us-header-body-content {
    gap: 20px;
    line-height: 1.8;
    text-align: left;
  }

  /* Section 2: The Meaning Behind the Name - Mobile optimized */
  .name-meaning-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .name-meaning-container-wrapper {
    background-position: -408px 127px;
  }

  .name-meaning-parts .left-column,
  .name-meaning-parts .right-column {
    flex-direction: row;
  }

  .name-meaning-parts .left-column img,
  .name-meaning-parts .right-column img {
    max-width: 200px;
    width: 100%;
  }

  .name-meaning-parts .liminal-content span {
    font-size: 20px;
    padding-bottom: 17px;
  }

  .name-meaning-parts .liminal-content div {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    text-size-adjust: 87%;
  }

  .name-meaning-container,
  .name-meaning-title {
    width: 100vw;

    /* Fix Clamp */
    font-size: 20px;
  }

  .name-conclusion-content {
    width: 100%;
    text-align: left;
  }

  .name-conclusion-content,
  .name-intro-content {
    font-size: 18px;
    line-height: 1.4;
  }

  .name-meaning-parts .left-column img,
  .name-meaning-parts .right-column img {
    transform: scale(0.8);
    margin: 0;
  }

  .name-meaning-parts .liminal-content {
    align-items: flex-start;
    gap: 8px;
  }

  .name-meaning-parts {
    gap: unset;
  }

  .about-us-header-image {
    width: 100%;
    scale: unset;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Needs to be removed */
    left: 0;
    top: 0;
  }

  .about-us-header-image img {
    height: auto;
    transform: scale(0.7);
    max-width: unset;
  }

  .our-team-content-wrapper {
    margin-top: 100px;
  }

  .section-header-content-fs {
    font-size: 18px;
    line-height: 1.8;
  }

  .our-team-gif {
    left: 0;
    right: 0;
    top: 10px;
  }

  .our-team-gif img {
    width: 100%;
    height: auto;
  }

  .learn-more-image-container {
    display: none;
  }

  .about-us-template .fc-learn-more-banner-container {
    width: 100% !important;
  }

  .learn-more {
    height: 250px;
  }

  .who-we-serve-header-content,
  .who-we-serve-conclusion-container .header-formatting,
  .fc-learn-more-banner-spacing {
    width: 100%;
  }

  .our-team-content {
    width: 100%;
  }

  .our-team {
    padding-bottom: 125px;
  }

  svg#wave {
    bottom: 0;
  }

  .engage-us-card {
    width: 100%;
  }

  .our-team-content-wrapper,
  .what-we-do-header-container,
  .who-we-serve-header-container,
  .who-we-serve-card-container,
  .who-we-serve-conclusion-container,
  .engage-us-title-container,
  .engage-us-card-container {
    grid-column: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .who-we-serve-card-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .engage-us-title-container .header-formatting {
    width: 100%;
  }
}
