.entreprise {
  display: flex;
  flex-direction: row;
  width: var(--section-width);
  justify-content: space-evenly;
  padding: 4rem 1rem;
  background-color: var(--bg-color);
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.entrepriseTitle {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.entrepriseTitle::before {
  content: var(--entreprise1);
}

.entrepriseTitle::after {
  content: var(--entreprise2);
  color: var(--secondary-color);
}

.entreprisePara {
  max-width: 60ch;
  letter-spacing: 1px;
  text-align: justify;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.entreprise img {
  width: 50%;
}

@media (max-width: 800px) {
  .entrepriseTitle {
    font-size: 2.3rem;
  }
  .entreprise {
    padding: 1rem 1.5rem;
  }
  .entreprisePara {
    max-width: 80ch;
  }

  .entreprise img {
    width: 100%;
  }
}
