.l-about__body {
  background-color: var(--light2);
}

.l-about {
  padding-top: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-bottom: 8rem;
}

.l-about__container {
  max-width: var(--w-max);
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-container {
  width: 100%;
  padding: 7.5rem 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.l-container.l-about {
  background-image: url(../../assets/img/bg-about.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.l-about__content {
  width: var(--w-max);

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

@media (max-width: 768px) {
  .l-about {
    padding-top: 2.5rem;
  }

  .l-about__container {
    padding: 0 1.5rem;
  }

  .l-about__content {
    width: 100%;
    padding: 1.2rem;

    flex-direction: column;
    gap: 2.5rem;
  }

  .l-container.l-about {
    background-position: right center;
  }
}

@media (max-width: 1024px) {
  .l-about {
    padding-top: 5rem;
  }

  .l-about__container {
    max-width: 90%;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .l-about__container {
    max-width: 90%;
  }
}
