.entreprises-wrapper {
  padding-bottom: 14px;
}

.entreprises-web-content {
  width: 320px;
}

.entreprises-section p {
  font-size: var(--font-size-18);
  margin: 20px 30px;
  color: var(--grey-700);
  width: 232px;
}

.entreprises-section .with-line-before {
  display: flex;
  /* Use flexbox for alignment */
  align-items: center;
  /* Vertically align the line with the text */
  font-size: var(--font-size-18);
  /* Adjust font size */
  font-weight: 600;
  /* Adjust font weight */
  color: var(--grey-700);
  /* Text color */
  font-family: Barlow;
  height: fit-content;
}

.entreprises-section .with-line-before::before {
  content: "";
  display: block;
  width: 18px;
  /* Length of the line */
  height: 1px;
  /* Thickness of the line */
  color: var(--grey-700);
  /* Line color (light gray) */
  margin-right: 10px;
  /* Space between the line and text */
}

.entreprises-section p > span {
  color: var(--green-text);
}

.entreprises-ipad-quotes {
  display: none;
}

@media (min-width: 768px) {
  .entreprises-section .with-line-before {
    font-size: var(--font-size-32);
  }

  .entreprises-section .with-line-before::before {
    width: 33px;
    /* Length of the line */
    margin-right: 18px;
  }

  .entreprises-web-content {
    width: 100%;
  }

  .entreprises {
    display: flex;
    flex-direction: row;
    align-items: unset;
    justify-content: unset;
  }

  .entreprises-ipad-quotes img {
    vertical-align: top;
    width: 120px;
  }

  .entreprises-section p {
    font-size: var(--font-size-22);
    width: 100%;
    margin: 0 50px 20px 50px;
  }

  .entreprises-ipad-quotes {
    display: block;
    width: 100%;
    text-align: left;
    margin-left: 30px;
  }
}

@media (min-width: 1366px) {
  .entreprises-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .entreprises-section .with-line-before {
    font-size: var(--font-size-32);
  }

  .entreprises-section .with-line-before::before {
    width: 66px;
    /* Length of the line */
  }

  .entreprises-column-left {
    display: flex;
    justify-content: center;
  }

  .entreprises-ipad-quotes {
    display: none;
  }

  .entreprises-section p {
    margin-left: 10px;
  }
}
