header {
  position: fixed;
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  background-color: #fff;
  z-index: 1001;
}
header.scrolled {
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease-in-out;
}
header ul#footer-menu {
  display: none;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.header__logo {
  display: flex;
}

@media screen and (max-width: 1023px) {
  header .custom-logo-link img {
    max-width: 157px;
  }
  header ul#footer-menu {
    display: flex;
    flex-direction: column;
    margin-top: auto;
  }
  header ul#footer-menu li a {
    font-size: 13px;
  }
}