.heroInner--about {
  background-position: bottom center;
}

/*********************
START: MISSION
*********************/
.mission {
  background-color: var(--Gray-1);
  padding-block: 64px 149px;
}

.mission--title h2 {
  color: var(--Gray-9);
  font-family: var(--font-family-Playfair);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-block-end: 1rem;
}

.mission--title p {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
}

.mission--content .imageIndex {
  width: 100%;
  height: auto;
  aspect-ratio: 1384 / 744;
  object-fit: cover;
  border-radius: 2px;
  margin-block: 3.375rem 3rem;
  display: none;
}

.mission--content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-block-start: 2rem;
}

.mission--content ul li {
  padding: 2rem;
  background-color: var(--secondary-color);
  color: var(--baseLight-color);
  border-radius: 4px;
}

.mission--content ul li img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 668 / 456;
  display: none;
}

.mission--content ul li h3 {
  margin-block-end: 0.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.mission--content ul li p {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
}

/*********************
END: MISSION
*********************/

/*********************
START: memberships
*********************/
.memberships--content {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.memberships--content::before,
.memberships--content::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.memberships--content::before {
  z-index: 0;
  background: linear-gradient(
    0deg,
    rgba(33, 37, 41, 0.5) 0%,
    rgba(33, 37, 41, 0.5) 100%
  );
}

.memberships--content::after {
  z-index: 1;
  background-color: rgba(33, 37, 41, 0.5);
}

.memberships--title {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 415px 399px;
  position: relative;
  z-index: 2;
}

.memberships--title h4 {
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-block-end: 1rem;
}

.memberships--title > p {
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  margin-inline: auto;
}

.memberships .swiper {
  width: 100%;
  height: 100%;
  padding-block: 149px;
  background-color: #f8f9fa;
}

.memberships .swiper-wrapper {
  transition-timing-function: linear !important;
}

.memberships .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.memberships .swiper-slide img {
  max-height: 64px;
  max-width: 80%;
  width: auto;
  height: auto;
  display: inline-block;
}

/*********************
END: 
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
  .mission--title h2,
  .mission--content ul li h3,
  .memberships--title h4 {
    font-size: 28px;
  }

  .mission--title p,
  .memberships--title > p {
    font-size: var(--text-2xl);
  }

  .mission--content ul li p {
    font-size: var(--text-xl);
  }

  .memberships--title > p {
    width: 58%;
  }

  /*  */
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
  .mission--title h2,
  .mission--content ul li h3,
  .memberships--title h4 {
    font-size: 28px;
  }

  .mission--title p,
  .memberships--title > p {
    font-size: var(--text-2xl);
  }

  .mission--content ul li p {
    font-size: var(--text-xl);
  }
  .memberships--title > p {
    width: 58%;
  }
}

@media screen and (max-width: 1319px) {
  .mission--title,
  .mission--content ul li h3,
  .memberships--title h4 {
    font-size: var(--text-2xl);
  }

  .mission--title p,
  .memberships--title > p {
    font-size: var(--text-xl);
  }

  .mission--content ul li p {
    font-size: var(--text-lg);
  }

  .memberships--title > p {
    width: 61%;
  }
}

@media screen and (max-width: 1200px) {
  .mission--title h2,
  .mission--content ul li h3,
  .memberships--title h4 {
    font-size: var(--text-xl);
  }

  .mission--title p,
  .memberships--title > p {
    font-size: var(--text-lg);
  }

  .mission--content ul li p {
    font-size: var(--text-base);
  }

  .memberships--title > p {
    width: 65%;
  }
}

@media screen and (max-width: 992px) {
  .memberships--title > p {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .mission--content ul {
    column-gap: 1rem;
    row-gap: 3rem;
  }

  .memberships--title > p {
    width: 75%;
  }
}

@media screen and (max-width: 576px) {
  .mission--content ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .memberships--title > p {
    width: 80%;
  }
}

@media screen and (max-width: 470px) {
  .memberships--title > p {
    width: 90%;
  }
}

@media screen and (max-width: 425px) {
  .mission--title h2,
  .mission--content ul li h3,
  .memberships--title h4 {
    font-size: var(--text-lg);
  }

  .mission--title p,
  .memberships--title > p {
    font-size: var(--text-base);
  }

  .memberships--title > p {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
}

@media screen and (max-width: 320px) {
}

/*********************
END: MEDIA
*********************/
