.header {
  width: 100%;
  padding: 30px 0;
  position: fixed;
  top: 0;
  z-index: 9;
  transition: padding 0.35s ease-in-out, background 0.35s ease-in-out;
}

.header .container {
  display: flex;
  flex-wrap: wrap;
}

.header > .container {
  align-items: center;
  justify-content: space-between;
}

.header-sticky {
  padding: 15px 0;
}

.header-sticky::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  z-index: -1;
}

.nav-inside {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  width: 100%;
}

/* ------------------------------------------------------------ */

.header-option,
.header-option .cart {
  display: flex;
  align-items: center;
}

.header-option .cart:hover {
  color: var(--color-primary);
}

.header-option .cart img {
  margin-right: 7px;
}

.menu-icon {
  width: 40px;
  height: 24px;
  position: relative;
  cursor: pointer;
  margin-left: 60px;
  display: block;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
  top: 10px;
}

.menu-icon span:nth-child(4) {
  top: 20px;
}

.menu-icon.open span:nth-child(1) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
  top: 10px;
  width: 0;
  left: 50%;
}

/* ------------------------------------------------------------ */

.nav-bar {
  position: fixed;
  width: 100%;
  z-index: 8;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  height: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  /* align-items: center; */
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
}

.nav-bar .container {
  align-items: flex-start;
}

.header .slow {
  height: 100%;
  backdrop-filter: blur(16px);
}

.menu-ul {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  margin: 0;
  flex-direction: column;
}

.menu-ul a {
  font-size: 82px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.menu-ul a:hover {
  color: var(--color-primary);
}

.menu-ul a:hover::after {
  transform: scale(1, 1);
}

.menu-ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  background: var(--color-primary);
  transform-origin: center;
  transition: transform 0.5s ease-in-out;
}

.menu-ul li + li {
  margin-top: 40px;
}

.touch-option {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 60px;
}

.touch li {
  color: #cbcbcb;
  font-size: 20px;
}

.touch li:first-child {
  margin-bottom: 22px;
}

.touch a {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 39px;
}

.touch a:hover {
  color: var(--color-primary);
}

.community span {
  display: block;
  color: #cbcbcb;
  font-size: 20px;
  margin-bottom: 25px;
}

@media (max-width: 1680px) {
  .menu-ul a {
    font-size: 50px;
  }
  .menu-ul li + li {
    margin-top: 30px;
  }
}

@media (max-width: 860px) {
  .site-logo {
    max-width: 150px;
  }
  .menu-icon {
    width:30px;
    margin-left: 25px;
  }
  .menu-ul a {
    font-size: 30px;
    font-weight: 500;
  }
  .menu-ul li + li {
    margin-top: 15px;
  }
  .touch-option {
    row-gap: 30px;
  }
  .touch li:first-child {
    margin-bottom: 15px;
  }
  .touch li {
    font-size: 15px;
  }
  .touch a {
    font-size: 18px;
    line-height: 30px;
  }
  .community span {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 860px) {
    .header{
        padding: 20px 0;
    }
}



