header {
  position: fixed;
  height: 104px;
  z-index: 999;
  display: flex;
  justify-self: center;
  background-color: rgba(17, 33, 56, 0.5);
  width: 100%;
}
header .hamburger {
  width: 30px;
  height: 22px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  cursor: pointer;
  display: none;
}
header .hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}
header .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
header .header {
  display: grid;
  grid-template-columns: 1fr 7fr;
  align-items: center;
  width: 100%;
}
header .header .header__logo {
  max-width: 337px;
  width: 100%;
  padding-left: 20px;
}
header .header .header__logo a {
  display: block;
}
header .header .header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header .header__nav ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}
header .header .header__nav ul li a {
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .header .header__nav ul li a p {
  font-family: "HelveticaNowDisplay-Regular";
}
header .header .header__nav ul li a.active {
  border-bottom: 5px solid #ffa448;
}
header .header .header__nav ul li:last-child {
  background-color: #ffa448;
}
header .header .header__nav ul li:last-child a {
  height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .header .header__nav ul li:last-child a span {
  color: black;
}
header .header .header__nav ul li:last-child a p {
  color: black;
}
header .header .header__nav ul li:last-child:hover {
  background-color: #fff;
}
header .head-under {
  position: absolute;
  bottom: -20px;
  letter-spacing: 0.5rem;
}

@media screen and (max-width: 768px) {
  header {
    background-color: transparent;
    width: 100%;
    height: 70px;
  }
  header .hamburger {
    display: block;
  }
  header .header {
    display: flex;
    flex-direction: column;
    pointer-events: none;
  }
  header .header .header__logo {
    max-width: 150px;
  }
  header .header .header__nav ul {
    grid-template-columns: auto;
  }
  header .header .header__nav ul li {
    margin-bottom: 5%;
  }
  header .header .header__nav ul li:last-child {
    background-color: transparent;
  }
  header .header .header__nav ul li:last-child a {
    height: auto;
  }
  header .header .header__nav ul li:last-child a span {
    color: #fff;
  }
  header .header .header__nav ul li:last-child a p {
    color: #fff;
  }
  header .head-under {
    width: 100%;
  }
  .menu-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background: #ffa448;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    color: white;
    border-radius: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), border-radius 0.5s ease-in-out;
  }
  .menu-overlay.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    border-radius: 0;
    pointer-events: auto;
  }
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .menu-content ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  .menu-content ul li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
  }
  .menu-content ul li.show {
    opacity: 1;
    transform: translateY(0);
  }
  .menu-content ul a {
    color: white;
    text-decoration: none;
    font-size: 24px;
  }
}/*# sourceMappingURL=header.css.map */