@import url("../../fonts/quicksand.css");
@import url("https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
nav {
  font-family: "Quicksand", sans-serif;
  background-image: linear-gradient(#008cff, #004581);
  display: flex;
  width: 100%;
  height: 4.5rem;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 999;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
nav .brand-logo {
  height: 100%;
}
nav .brand-logo a {
  display: flex;
  height: 100%;
  align-items: center;
}
nav .brand-logo a img {
  height: 75%;
}
nav .container-nav {
  display: flex;
  height: 100%;
  justify-content: space-between;
  width: 90%;
  background-image: linear-gradient(#008cff, #004581);
}
nav .container-nav .main-tab {
  height: 100%;
  display: flex;
  flex-direction: row;
}
nav .container-nav .main-tab .tab {
  display: flex;
  height: 90%;
  align-items: center;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  flex-direction: column;
  justify-content: center;
  margin-top: 0.5rem;
  transition: 0.2s;
}
nav .container-nav .main-tab .tab .underline {
  width: 0;
  height: 2px;
  background-color: yellow;
  border-radius: 2px;
  transition: 0.3s;
  margin-top: 0.5rem;
}
nav .container-nav .main-tab .tab:hover .underline {
  width: 100%;
}
nav .container-nav .main-tab .tab img {
  height: 35%;
  margin-right: 3px;
}
nav .container-nav .main-tab .tab span {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin-left: 3px;
  text-align: center;
  cursor: pointer;
}
nav .container-nav .main-tab .tab .data-tab {
  background-color: white;
  position: fixed;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  transition: all 0.2s;
  scale: 0;
  transform: translateY(80%) translateX(35%);
}
nav .container-nav .main-tab .tab .data-tab ul li {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
nav .container-nav .main-tab .tab .data-tab ul li:active {
  scale: 0.9;
}
nav .container-nav .main-tab .tab .data-tab ul li a {
  color: #008cff;
  text-decoration: none;
}
nav .container-nav .main-tab .tab.active .data-tab {
  scale: 1;
  opacity: 1;
}
nav .container-nav .auth-link {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav .container-nav .auth-link div {
  height: 50%;
  display: flex;
  align-items: center;
  background-color: white;
  margin-left: 0.4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 5px;
  transition: 0.1s;
}
nav .container-nav .auth-link div:hover {
  border-bottom: 3px solid yellow;
}
nav .container-nav .auth-link div a {
  color: #008cff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}
nav .container-nav .auth-link div.auth-button a {
  display: flex;
  align-items: center;
}
nav .container-nav .auth-link div.auth-button a svg {
  margin-right: 0.5rem;
}
nav .container-nav .nav-search {
  display: none;
  align-items: center;
  width: 25%;
}
nav .container-nav .nav-search .search-input {
  padding: 8px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  width: 90%;
}
nav .container-nav .nav-search .search-button {
  background-color: transparent;
  border: none;
  margin-left: 5px;
  cursor: pointer;
  color: white;
}
nav .menu-toggle {
  border-radius: 0 3px 3px 0;
  top: 10px;
  right: -40px;
  opacity: 1;
  display: none;
}
nav .menu-toggle span {
  display: block;
  width: 30px;
  height: 5px;
  background-color: white;
  margin: 5px;
  border-radius: 2px;
  transition: all 0.5s;
}
nav .menu-toggle input {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
nav .menu-toggle :nth-child(2) {
  transform-origin: 100% 0;
}
nav .menu-toggle :last-child {
  transform-origin: 100% 100%;
}
nav .menu-toggle input:checked ~ span:nth-child(2) {
  transform: rotate(-45deg) translate(-5px, -5px);
}
nav .menu-toggle input:checked ~ :nth-child(3) {
  opacity: 0;
  transform: scale(0);
}
nav .menu-toggle input:checked ~ span:last-child {
  transform: rotate(45deg) translate(-5px, 5px);
}

@media screen and (max-width: 900px) {
  nav {
    flex-direction: column;
    padding: 0;
  }
  nav .container-nav {
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    transform: translateY(-120%);
    z-index: -3;
    transition: all 0.8s;
    opacity: 0;
    flex-wrap: wrap;
    height: auto;
    padding-top: 8rem;
    padding-bottom: 2rem;
  }
  nav .container-nav.slide {
    transform: translateY(-40%);
    opacity: 1;
  }
  nav .container-nav .nav-search {
    width: 100%;
    justify-content: center;
    order: 2;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
  }
  nav .container-nav .nav-search .search-input {
    width: 80%;
  }
  nav .container-nav .main-tab {
    flex-direction: row;
    order: 0;
  }
  nav .container-nav .main-tab .tab {
    flex-direction: column;
    align-items: center;
  }
  nav .container-nav .main-tab .tab .article .line-hover {
    position: fixed;
    top: 8.4rem;
  }
  nav .container-nav .main-tab .tab .class .line-hover {
    position: fixed;
    top: 12.4rem;
  }
  nav .container-nav .main-tab .tab .data-tab {
    transform: translateY(65%) translateX(35%);
  }
  nav .container-nav .auth-link {
    height: auto;
    flex-direction: row;
    justify-content: space-evenly;
    order: 1;
  }
  nav .container-nav .auth-link div {
    width: 40%;
    justify-content: center;
    padding: 0.5rem 2rem;
    margin: 0.2rem 0.2rem;
    box-sizing: border-box;
  }
  nav .menu-toggle {
    display: block;
    right: 5%;
    top: 1rem;
    position: fixed;
  }
}
@media screen and (max-width: 614px) {
  nav {
    height: 3rem;
  }
  nav .container-nav {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
  nav .container-nav.slide {
    transform: translateY(-20%);
    opacity: 1;
  }
  nav .container-nav .main-tab {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  nav .container-nav .main-tab .tab {
    width: 30%;
    margin: 0;
  }
  nav .container-nav .main-tab .tab .data-tab {
    transform: translateY(63%) translateX(0);
    padding: 0.5rem 2rem;
  }
  nav .container-nav .auth-link {
    flex-direction: column;
    width: 100%;
  }
  nav .menu-toggle {
    top: 0.4rem;
  }
}/*# sourceMappingURL=header.css.map */