/* Static nav */

.static-nav-wrapper {
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  height: 70px;
  z-index: 3;
  background: linear-gradient(0deg, rgb(0, 0, 0), rgb(0, 0, 0)), rgb(3, 199, 220);
  padding: 0 24px;
}

.static-nav-wrapper .right-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.static-nav-wrapper .right-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-weight: 600;
  background-color: #FFFFFF;
  height: 40px;
  padding: 0 12px;
  border-radius: 4px;
}

.static-nav {
  position: fixed;
  -webkit-transform: translate3d(100vw,0,0);
  transform: translateX(100vw);
  transition: transform 150ms ease-in-out;
  z-index: 3;
  background: linear-gradient(280.37deg, #001841 0%, #000000 100%), #FFFFFF;
  width: 100vw;
  height: 100vh;
  top: 70px;
  left: 0;
}

.static-nav.active {
  -webkit-transform: translate3d(0,0,0);
  transform: translateX(0px);
}

.static-nav ul {
  list-style-type: none;
}

.static-nav a {
  display: block;
  padding: 24px;
  border-top: 1px solid rgba(229, 234, 241, 0.25);
}

.static-nav li:last-child a {
  border-bottom: 1px solid rgba(229, 234, 241, 0.25);
}

@media only screen and (min-width: 768px) {
  .static-nav-wrapper {
    padding: 0 80px;
  }

  .static-nav {
    width: 400px;
  }

  .static-nav.active {
    -webkit-transform: translate3d(calc(100vw - 400px),0,0);
    transform: translateX(calc(100vw - 400px));
  }
}


/* Sticky nav */

.sticky-nav {
  position: sticky;
  top: 70px;
  z-index: 1;
  margin-bottom: 4px;
}

.sticky-nav ul {
  display: flex;
  gap: 40px;
  text-wrap: nowrap;
  list-style-type: none;
  overflow-x: scroll;
  background-color: #000000;
  height: 60px;
  padding: 0 24px;
}

.sticky-nav li {
  display: flex;
  align-items: center;
  height: 100%;
  transition: border-bottom 150ms ease-in-out;
  border-bottom: 2px solid transparent;
}

.sticky-nav li.active {
  border-bottom: 2px solid #FFFFFF;
}

@media only screen and (min-width: 768px) {
  .sticky-nav ul {
    padding: 0 120px;
  }
}
