::selection {
  background: #ac8b36;
  color: #ffffff;
}
::-moz-selection {
  background: #ac8b36;
  color: #ffffff;
}
code::selection {
  background: #ac8b36;
  color: #ffffff;
}
code::-moz-selection {
  background: #ac8b36;
  color: #ffffff;
}
pre::selection {
  background: #ac8b36;
  color: #ffffff;
}
pre::-moz-selection {
  background: #ac8b36;
  color: #ffffff;
}
.nav {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  background-color: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0rem 0rem 3rem 3rem;
  height: 70px;
  padding-left: 6rem;
  padding-right: 2rem;
  margin: 0;
  z-index: 9999;
  box-shadow: 1px 8px 19px -10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 8px 19px -10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 8px 19px -10px rgba(0, 0, 0, 0.15);
}

.nav .logo-navbar {
  /* background-color:red; */
  width: 30%;
}
.nav img {
  width: 11rem;
  height: auto;
}
.nav .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 70%;
}
.nav .nav-item li {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav .nav-item li a {
  position: relative;
  display: inline-block;
  color: #808080;
  overflow: hidden;
  background: linear-gradient(to right, #ac8b36, #ac8b36 50%, #ffffff 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 400ms ease;
  text-decoration: none;
  font-size: 1.2rem;
}
.nav .nav-item li a {
  position: relative;
  display: inline-block;
  color: #808080;
  overflow: hidden;

  background-position: 100%;
  transition: background-position 400ms ease;
  text-decoration: none;
  font-size: 1.2rem;
}
.nav .nav-item .wrap-menu {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.nav .nav-item .wrap-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .nav-item .wrap-menu .btn-sc {
  cursor: pointer;
  display: block;
  color: #ffffff;
  background-color: #ac8b36;
  /* color: #ac8b36;
  background: linear-gradient(to right, #ffffff 50%, #ffffff 50%);
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  transition: all 400ms ease-out;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  opacity: 0.8;
  margin: 0;
  border-radius: 0.5rem;
}
.nav .nav-item .wrap-menu .btn-sc:hover {
  background-color: #ac8b36;
  color: #ffffff;
  opacity: 1;
}

.nav .nav-item .wrap-menu li .btn-sc:hover {
  background-position: left bottom;
  opacity: 1;
  color: white;
  transition: all 400ms ease-out;
}
.nav .nav-item .wrap-menu li:nth-child(2) a .active {
  background: linear-gradient(to right, #ac8b36, #ac8b36 50%, #ac8b36 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 400ms ease-out;
}
.nav .wrap-menu a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}
.nav .wrap-menu a:nth-child(1) {
  position: relative;
  display: inline-block;
  color: #808080;
  overflow: hidden;
  background: linear-gradient(to right, #ac8b36, #ac8b36 50%, #ffffff 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 400ms ease;
  text-decoration: none;
  font-size: 1.2rem;
}

.nav .wrap-menu a:hover {
  background-position: 0 100%;
  opacity: 1;
  transition: all 400ms ease-out;
}
.shortcut-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: fixed;
  z-index: 100;
  background-color: rgba(172, 139, 54, 1);
  bottom: 20px;
  right: 20px;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12);
  transition: all 400ms ease;

  /* mix-blend-mode: difference; */
}
.shortcut-wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: hithere 5s ease infinite;
}
.shortcut-wa:hover {
  transition: all 400ms ease;
  background-color: rgba(172, 139, 54, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav .nav-item li a:hover {
  background-position: 0 100%;
  opacity: 1;
  transition: all 400ms ease-out;
}
.nav .nav-item li .active {
  background: linear-gradient(to right, #ac8b36, #ac8b36 50%, #ac8b36 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 400ms ease-out;
}

.nav .nav-item:nth-child(3) {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
  justify-content: center;
}
.nav span {
  display: none;
}
.nav .nav-item:nth-child(3) li:nth-child(2) a {
  cursor: pointer;
  display: block;
  background: linear-gradient(to right, #ac8b36 50%, white 50%);
  background-size: 210% 100%;
  background-position: right bottom;
  transition: all 400ms ease-out;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  border: 2px solid #ac8b36;
  border-radius: 0.5rem;
  color: #ac8b36;
  opacity: 0.8;
  margin: 0;
}

.nav .nav-item:nth-child(3) li:nth-child(2) a:hover {
  background-position: left bottom;
  opacity: 1;
  color: white;
  transition: all 400ms ease-out;
}

.nav .nav-item-responsive li .active {
  background: linear-gradient(to right, #ac8b36, #ac8b36 50%, #ac8b36 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 400ms ease-out;
}

.nav .nav-item-responsive li {
  list-style: none;
}
.nav .nav-item-responsive li a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
}
.nav .nav-item-responsive li a {
  background: linear-gradient(to right, #ac8b36 50%, white 50%);
}
.nav .nav-item-responsive li .btn-sc {
  cursor: pointer;
  display: block;
  background-size: 210% 100%;
  background-position: right bottom;
  transition: all 400ms ease-out;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  border: 2px solid #ac8b36;
  color: #ac8b36;
  opacity: 1;
  margin: 0;
}
.nav .nav-item-responsive li .btn-sc:hover {
  background-position: left bottom;
  opacity: 1;
  color: white;
  transition: all 400ms ease-out;
}

.nav .nav-item-responsive {
  display: none;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav .nav-item-responsive li {
  list-style: none;
}
.nav .nav-item-responsive li a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
}
/* .nav .nav-item-responsive li:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
}
.nav .nav-item-responsive li:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
} */
.nav .nav-item-responsive li:nth-child(1) a,
.nav .nav-item-responsive li:nth-child(2) a,
.nav .nav-item-responsive li:nth-child(3) a,
.nav .nav-item-responsive li:nth-child(4) a {
  cursor: pointer;
  position: relative;
  display: inline-block;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(to right, #ac8b36 50%, white 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 400ms ease;
  text-decoration: none;
  font-size: 1.2rem;
}
.nav .nav-item-responsive li:nth-child(1) a:hover,
.nav .nav-item-responsive li:nth-child(2) a:hover,
.nav .nav-item-responsive li:nth-child(3) a:hover,
.nav .nav-item-responsive li:nth-child(4) a:hover {
  background-position: 0 100%;
  opacity: 1;
  transition: all 400ms ease-out;
}

@keyframes hithere {
  30% {
    transform: scale(1.2);
  }
  40%,
  60% {
    transform: rotate(-10deg) scale(1.1);
  }
  50% {
    transform: rotate(10deg) scale(1.1);
  }
  70% {
    transform: rotate(0deg) scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
