.navigation {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1490196078);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 10;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  padding: 1.2rem 0;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.navigation::after {
  -webkit-box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.05);
          box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.05);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.navigation .blackk-logo {
  display: none;
}
.navigation.sticky-header {
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.navigation.sticky-header .webnav-links li a {
  color: var(--primary-color);
}
.navigation.sticky-header .blackk-logo {
  display: block !important;
}
.navigation.sticky-header .whitee-logo {
  display: none;
}
.navigation.sticky-header .nav-btn {
  background: #000;
  color: #fff;
}
.navigation.sticky-header .hamburger div {
  background: var(--primary-color);
}
.navigation.black-nav .webnav-links li a {
  color: var(--primary-color);
}
.navigation.black-nav .nav-btn {
  background: #000;
  color: #fff;
}
.navigation.black-nav .hamburger div {
  background: var(--primary-color);
}
.navigation.black-nav .open li a {
  color: var(--white);
}
.navigation.black-nav .toggle div {
  background: #f2f5f7;
}
.navigation.black-nav .white-logo {
  display: none;
}
.navigation .nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navigation .logo {
  padding: 1vh 1vw;
  text-align: center;
  margin: 0;
}
.navigation .nav-one,
.navigation .nav-two {
  display: none;
}
.navigation .nav-links,
.navigation .webnav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0 0.7vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.navigation .nav-links li,
.navigation .webnav-links li {
  position: relative;
}
.navigation .nav-links li.active a,
.navigation .webnav-links li.active a {
  font-weight: 600;
}
.navigation .nav-links li a,
.navigation .webnav-links li a {
  text-decoration: none;
  margin: 0 3rem;
  color: var(--white);
  font-size: 14px;
}
.navigation .nav-links li a:before,
.navigation .webnav-links li a:before {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background-color: #61DAFB;
  position: absolute;
  -webkit-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
}
.navigation .mob-none {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navigation .nav-btn {
  background: #000;
  padding: 1rem 2rem;
  font-size: 14px;
  border-radius: 30px;
  color: var(--white);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border: 0;
}
.navigation .nav-btn:hover {
  text-decoration: none;
}
.navigation .login-button {
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  margin-left: 2vw;
  font-size: 1rem;
  cursor: pointer;
}
.navigation .login-button:hover {
  color: #131418;
  background-color: #f2f5f7;
  border: 1.5px solid #f2f5f7;
  -webkit-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
}
.navigation .join-button {
  color: #131418;
  background-color: #61DAFB;
  border: 1.5px solid #61DAFB;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}
.navigation .join-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  -webkit-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
}
.navigation .hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navigation .hamburger {
  display: none;
}

@media screen and (max-width: 1199px) {
  .navigation {
    position: fixed;
    z-index: 3;
  }
  .navigation.sticky-header .nav-links li a {
    color: var(--white);
  }
  .navigation.sticky-header .hamburger.toggle div {
    background: var(--white);
  }
  .navigation .nav-container {
    min-width: 100%;
    max-width: 100%;
  }
  .navigation .logo {
    padding-left: 25px;
  }
  .navigation .mob-none {
    display: none;
  }
  .navigation .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    -webkit-transform: translate(-5%, -50%);
            transform: translate(-5%, -50%);
    z-index: 2;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  .navigation .webnav-links {
    display: none;
  }
  .navigation .nav-links.open {
    background: #131418;
  }
  .navigation .nav-links {
    position: fixed;
    background: transparent;
    height: 100vh;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    pointer-events: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 0;
    right: 0;
    position: absolute;
    width: 60%;
  }
  .navigation .nav-links.open {
    clip-path: circle(1000px at 100% 20%);
    -webkit-clip-path: circle(1000px at 100% 20%);
    pointer-events: all;
  }
  .navigation .nav-links .nav-two {
    list-style: none;
    display: block !important;
    padding-right: 2rem;
  }
  .navigation .nav-links .nav-two li a {
    font-size: 28px;
    line-height: 7rem;
    float: right;
  }
  .navigation .nav-links .nav-one {
    list-style: none;
    display: block !important;
    margin-top: 8rem;
  }
  .navigation .nav-links .nav-one li a {
    font-size: 28px;
    line-height: 6rem;
    float: right;
  }
  .navigation .nav-links .nav-line {
    background: #36383a;
    height: 33vh;
    width: 1px;
  }
  .navigation .nav-links .d-none {
    display: block !important;
  }
  .navigation .nav-links li {
    opacity: 0;
  }
  .navigation .nav-links li.fade {
    opacity: 1;
  }
  .navigation .nav-links li:nth-child(1) {
    -webkit-transition: all 0.5s ease 0.2s;
    transition: all 0.5s ease 0.2s;
  }
  .navigation .nav-links li:nth-child(2) {
    -webkit-transition: all 0.5s ease 0.4s;
    transition: all 0.5s ease 0.4s;
  }
  .navigation .nav-links li:nth-child(3) {
    -webkit-transition: all 0.5s ease 0.6s;
    transition: all 0.5s ease 0.6s;
  }
  .navigation .nav-links li:nth-child(4) {
    -webkit-transition: all 0.5s ease 0.7s;
    transition: all 0.5s ease 0.7s;
  }
  .navigation .nav-links li:nth-child(5) {
    -webkit-transition: all 0.5s ease 0.8s;
    transition: all 0.5s ease 0.8s;
  }
  .navigation .nav-links li:nth-child(6) {
    -webkit-transition: all 0.5s ease 0.9s;
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }
  .navigation .nav-links li:nth-child(7) {
    -webkit-transition: all 0.5s ease 1s;
    transition: all 0.5s ease 1s;
    margin: 0;
  }
  .navigation .toggle .line1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
            transform: rotate(-45deg) translate(-5px, 6px);
  }
  .navigation .toggle .line2 {
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    width: 0;
  }
  .navigation .toggle .line3 {
    -webkit-transform: rotate(45deg) translate(-5px, -6px);
            transform: rotate(45deg) translate(-5px, -6px);
  }
}
@media (min-width: 320px) and (max-width: 566.99px) {
  .navigation .nav-links {
    width: 100%;
  }
  .navigation .nav-links .nav-two {
    padding-right: 0;
  }
  .navigation .nav-links .nav-two li a {
    font-size: 17px;
  }
  .navigation .nav-links .nav-one li a {
    font-size: 17px;
  }
}
@media (min-width: 567px) and (max-width: 766.99px) {
  .navigation .nav-links {
    width: 80%;
  }
  .navigation .nav-links .nav-two li a {
    font-size: 23px;
  }
  .navigation .nav-links .nav-one li a {
    font-size: 23px;
  }
}
@media (min-width: 767px) and (max-width: 991.99px) {
  .navigation .nav-links {
    width: 70%;
  }
  .navigation .nav-links .nav-two li a {
    font-size: 25px;
  }
  .navigation .nav-links .nav-one li a {
    font-size: 25px;
  }
}