.l-contact {
  width: 100%;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--primary);
}

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

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.l-content__item {
  width: 50%;
  padding: 4rem;

  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1rem;
}

@media (max-width: 768px) {
  .l-content__item {
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .l-content__item {
    width: 100%;
    align-items: center;
  }
}
