header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 6px -9px #999;
  padding: 0 30px;
  @media only screen and (max-width: 500px) {
    padding: 0 10px;
  }
}
nav {
  height: 73px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav a {
  font-size: 15px;
  text-decoration: none;
}
nav a#logo {
  color: #000000;
  font-weight: 700;
  align-items: center;
  display: flex;
}
nav a#logo img {
  max-height: 34px;
}
nav ul a {
  color: #191919;
  font-size: 14px;
  font-weight: 500;
  line-height: 23.8px;
}
nav ul a:hover {
  color: #191e62;
}
.button-link:hover {
  transition: all 2s ease-in-out;
  text-decoration: none;
  background-color: transparent;
  background-image: linear-gradient(96deg, #9289f1 0%, #6254e7 100%);
}
.button-link {
  overflow: visible;
  padding: 13px 27px 13px 27px;
  transition: all 0.4s ease-in-out;
  color: white;
  background: #6254e7;
  border-radius: 5px;
  display: block;
  width: max-content;
}
#ham-menu {
  display: none;
}
nav ul.active {
  left: 0;
}
@media only screen and (max-width: 950px) {
  #ham-menu {
    display: block;
    color: #3b3663;
  }
  nav a#logo,
  #ham-menu {
    font-size: 2.2rem;
  }
  nav ul {
    background-color: #0a081a;
    position: fixed;
    left: -100vw;
    top: 73.6px;
    width: 100vw;
    height: calc(100vh - 73.6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: 1s;
    gap: 0;
  }
}
@media only screen and (max-width: 950px) {
  nav ul {
    top: 73px;
    height: calc(100vh - 65.18px);
  }
  nav ul a {
    color: #fff;
  }
}
