.header {
  border-top: solid #dd0027;
  border-top-width: 0.5rem;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transition: background-color 0.2s;
}
@media (min-width: 36em) {
  .header {
    border-top-width: 0.75rem;
  }
}
@media (min-width: 48em) {
  .header {
    border-top-width: 1rem;
  }
}
@media (min-width: 62em) {
  .header {
    border-top-width: 1.25rem;
  }
}
@media (min-width: 80em) {
  .header {
    border-top-width: 1.5rem;
  }
}
.header--mobileMenuBackground {
  background-color: #ffffff;
  box-shadow: 0 0px 50px rgba(0, 0, 0, 0.15);
}
@media (min-width: 48em) {
  .header--mobileMenuBackground {
    background-color: transparent;
    box-shadow: none;
  }
}
.header__content {
  width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 36em) {
  .header__content {
    width: 36em;
    padding: 0 0.75rem;
  }
}
@media (min-width: 48em) {
  .header__content {
    width: 48em;
    padding: 0 1rem;
  }
}
@media (min-width: 62em) {
  .header__content {
    width: 62em;
    padding: 0 1.25rem;
  }
}
@media (min-width: 80em) {
  .header__content {
    width: 80em;
    padding: 0 1.5rem;
  }
}
@media (min-width: 48em) {
  .header__content {
    flex-direction: row;
  }
}
.header__logos {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}
@media (min-width: 48em) {
  .header__logos {
    justify-content: flex-start;
    width: auto;
  }
}
.header__logoBox {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  display: inline-block;
  position: relative;
  padding: 1rem 0.5rem 0.5rem;
}
@media (min-width: 36em) {
  .header__logoBox {
    padding: 1.5rem 0.75rem 0.75rem;
  }
}
@media (min-width: 48em) {
  .header__logoBox {
    padding: 2rem 1rem 1rem;
  }
}
@media (min-width: 62em) {
  .header__logoBox {
    padding: 2.5rem 1.25rem 1.25rem;
  }
}
@media (min-width: 80em) {
  .header__logoBox {
    padding: 3rem 1.5rem 1.5rem;
  }
}
.header__logoBox::before {
  position: absolute;
  pointer-events: none;
  bottom: 100%;
  left: -30px;
  right: -30px;
  background-color: #dd0027;
  height: 30px;
  display: block;
  content: "";
}