.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 29px 0px rgba(0, 0, 0, 0.1);
}

.header-nav {
  position: relative;
  padding: 18px 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  z-index: 50;
}

.header-menu {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 51px;
  background: #ffffff;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  overflow-y: hidden;
  max-height: 0;
  transition: all .2s ease-out;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 99.2px;
}

.header-hamburger .close-icon {
  display: none;
  width: 14px;
  height: 14px;
}

.header-nav.open .header-menu {
  max-height: 382px;
  padding-top: 33px;
  padding-bottom: 58px;
}

.header-nav.open .hamburger-icon {
  display: none;
}

.header-nav.open .close-icon {
  display: block;
}

.header-menu a {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
}

.header-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  width: 24px;
  height: 24px;
}

.header-hamburger img {
  height: 24px;
  width: 24px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);
  z-index: 10;
  display: none;
}

#overlay.active {
  display: block;
}

.header-menu a.active {
  color: #FF4F17;
}

@media screen and (min-width: 1024px) {
  .header-nav {
    padding: 48px 53px 26px;
    gap: 156px;
  }

  .header-logo img {
    height: auto;
    width: 115px;
  }
  
  .header-menu {
    position: initial;
    flex-direction: row;
    padding: 0;
    max-height: none;
    gap: 68px;
    padding-left: 0;
  }

  .header-menu li {
    padding-top: 1px;
    padding-left: 1px;
    padding-bottom: 1px;
  }

  .header-nav {
    justify-content: initial;
  }

  .header-hamburger {
    display: none;
  }
  
  .header-menu a {
    font-weight: 700;
  }

  .header-menu a:hover {
    color: #FF4F17;
  }
  
}