header {
  z-index: 9999;
  filter: drop-shadow(0 0 1rem rgb(12, 12, 12));
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  background-color: var(--gray1);
  display: flex;
  align-items: center;
  padding: 0;
}
header > a {
  width: clamp(120px, 18vw, 180px);
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
  margin-left: clamp(15px, 2vw, 25px);
  image-rendering: crisp-edges;
}
header > a img {
  width: clamp(120px, 18vw, 180px);
  position: absolute;
  top: 10px;
}
header > .socials h1 {
  display: none;
}
@media only screen and (min-width: 1000px) {
  header > .socials h1 {
    display: block;
  }
}
header > .socials,
header > .nav {
  display: none !important;
}
@media only screen and (min-width: 701px) {
  header > .socials,
  header > .nav {
    display: flex !important;
  }
}
header > .nav {
  display: none;
  height: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 701px) {
  header > .nav {
    display: flex;
  }
}
header > .nav a {
  cursor: pointer;
  height: 100%;
  padding: 0 clamp(20px, 3.5vw, 40px);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  background-color: var(--gray1);
  color: white;
  transition: background-color, color, 0.4s;
}
header > div.mobile-nav-wrapper {
  display: none;
  transition: color, background-color, 0.4s ease-in-out;
  text-align: center;
  margin-left: auto;
  font-size: 26px;
  color: white;
  height: 100%;
  aspect-ratio: 1;
}
header > div.mobile-nav-wrapper i.mobile-nav {
  transition: transform 0.1s ease-in-out;
}
header[active] i.mobile-nav {
  transform: rotate(90deg);
}
header > div.mobile-nav-wrapper:hover {
  background-color: var(--blue1);
}
header > div.mobile-nav-page {
  opacity: 0;
  display: none;
  transition: right 0.4s ease-in-out, opacity 0s linear 1s;
  position: absolute;
  right: -80vw;
  font-family: var(--font);
  top: 0;
  width: 80vw;
  height: 100vh;
  background-color: var(--black1);
  padding-top: 40px;
}
header > div.mobile-nav-page > a {
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  padding: 10px 35px;
  transition: background-color, color, 0.4s ease-in-out;
  color: white;
  cursor: pointer;
}
header > div.mobile-nav-page > a i {
  float: right;
}
header > div.mobile-nav-page .socials {
  margin-top: 60px;
  width: 100%;
  height: auto;
  justify-content: space-evenly;
}
header > div.mobile-nav-page .socials a {
  padding: 20px;
}
header[active] > div.mobile-nav-page {
  transition: right 0.4s ease-in-out, opacity 0s linear 0s;
  opacity: 1;
  right: 0;
}
header .nav > a[selected],
header .nav > a:hover,
header .mobile-nav-page > a[selected],
header .mobile-nav-page > a:hover {
  background-color: var(--blue1);
}
@media only screen and (max-width: 701px) {
  header > div.mobile-nav-wrapper {
    display: flex;
  }
}
@media only screen and (max-width: 701px) {
  header > div.mobile-nav-page {
    display: block;
  }
}

/*# sourceMappingURL=header.css.map */
