.about_hero {
  position: relative;
  background: url("/Assets/Hero/1.jpg") center/cover no-repeat;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 2rem;
}
.about_hero_overlay {
  position: absolute;
  inset: 0;
  background: black;
  opacity: .75;
}
.about_hero_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: var(--max-width);
  padding-bottom: 0;
  padding-top: 5rem;
  padding-left: 1rem;
}

.about_hero_content p,
.about_hero_content h1 {
  color: var(--white);
}

.about_hero_content p {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--font-primary);
}

.about_hero_content h1 {
  font-size: 4rem;
  font-weight: 500;
}

/* About */
.about_section {
  background-color: var(--white);
}

.about_section_container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.about_section_media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_section_media img {
  max-width: 500px;
  margin: auto;
  border-radius: 5px;
}

.about_section_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about_section_content h2,
.about_section_content p {
  max-width: max-content;
  margin: 0 0 0 0;
}

/* why section */
.about_why {
  background: var(--off-white);
}

.about_why_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 5rem;
}

.why_list ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  list-style: none;
}

.why_list ul li {
  font-family: var(--font-primary);
}

.why_list_li {
  display: flex;
  align-items: center;
}

.why_list ul li i {
  color: var(--primary);
  margin-right: 1rem;
}



/* responsive */
@media (max-width: 768px) {
  .about_hero {
    padding-block: 0.5rem;
  }

  .about_hero_content {
    padding-top: 5rem;
    padding-left: 0;
  }

  .about_hero_content p {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-primary);
    text-align: center;
  }

  .about_hero_content h1 {
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
  }
  .about_section_container {
    display: flex;
    flex-direction: column;
  }

  .about_section_content .section_description {
    max-width: 100%;
    margin: 0 auto;
  }

  .about_section_media {
    order: -1;
  }

  .about_why_container {
    flex-direction: column;
    gap: 1.2rem;
  }

}
