.page-header {
  width: 100%;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.page-header__company-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: 2.4rem;
}

/* Format tablette */
@media screen and (min-width: 1400px) {
  .page-header {
    height: 10.4rem;
    padding: 0 4rem;
    justify-content: flex-start;
  }
  .page-header__company-logo {
    margin-left: 0;
    height: 4rem;
  }
}