.about_project-wrapper {
  position: relative;
  background: var(--color-dark-blue);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: 1px solid red; */
}

.about_project-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.about-project-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  z-index: 2;
  /* border: 2px solid red; */
  /* margin-bottom: 15rem; */
}

.about-project-container > h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
  width: 100%;
  text-align: left;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.about-project-container > p {
  color: white;
  width: 100%;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  line-height: 1.6;
  max-width: 100%;
  text-align: justify;
  margin-bottom: 1rem;
}

.about-project-container .key-concepts {
  font-size: clamp(0.85rem, 2vw, 1.8rem);
  margin-top: 1rem;
  /* margin-left: 6rem; */
  font-weight: 400;
  /* border: 1px solid green; */
}

.about-project-container > ul {
  /* border: 2px solid red; */
  width: 90%;
  min-height: 20vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  margin-top: -2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-project-container > ul > li {
  margin-top: 1rem;
}

/* Mobile Version */
@media (max-width: 768px) {
  .about-project-container {
    margin-bottom: 1rem;
  }

  .about-project-container .key-concepts {
    margin-left: 0rem;
  }
}
