/***********************
        HEADER
***********************/

header {
  position: absolute;
  top: 35px;
  right: 0;
  width: 100%;
  padding: 0;
  z-index: 9999;
}

header .logo {
  float: left;
  transition: 0.3s all;
}

header .logo img {
  width: 100%;
  transition: 0.4 all;
}

header .logo:hover {
  transform: scale(0.95);
  filter: brightness(1.2);
}

header ul {
  padding: 0px;
}

header .nav {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
}

header .nav li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

header .nav li a {
  position: relative;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  font-weight: normal;
  font-family: var(--font-title);
  transition: 0.2s all;
}

header .nav li a:hover {
  transform: scale(0.9);
  text-shadow: 0px 0px 20px #ffffff;
}

#nav-icon {
  display: none;
  width: 24px;
  height: 25px;
  position: absolute;
  left: 20px;
  top: 10px;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  border-radius: 9px;
  opacity: 1;
  right: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2) {
  top: 10px;
}

#nav-icon.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  top: 10px;
  transform: rotate(-135deg);
}

.nav-logo {
  display: none !important;
}

header .button {
  font-size: 13px;
  padding: 15px 25px;
}
