.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and transparency as needed */
  display: none;
  z-index: 999; /* Ensure the overlay is on top of other content */
}

@keyframes MoveBackgroundPosition {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.title-large {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(247, 247, 247, 0.5);
  font-family: "Syne", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;
}
@media (max-width: 576px) {
  .title-large {
    font-size: 3.2rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .title-large {
    font-size: 3.6rem;
  }
}

.title-medium {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(247, 247, 247, 0.5);
  font-family: "Syne", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;
}
@media (max-width: 576px) {
  .title-medium {
    font-size: 2.4rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .title-medium {
    font-size: 2.7rem;
  }
}

.title-small {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(247, 247, 247, 0.5);
  font-family: "Syne", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;
}
@media (max-width: 576px) {
  .title-small {
    font-size: 1.6rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .title-small {
    font-size: 1.8rem;
  }
}

.navstyle .nav-logo {
  width: 12rem;
}
@media (min-width: 360px) and (max-width: 768px) {
  .navstyle .nav-logo {
    align-items: center;
  }
}
.navstyle .nav-items {
  text-align: center;
  text-shadow: 0px 1.4px 1px rgba(0, 0, 0, 0.7);
  font-family: "Vastago Grotesk", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 0.77525rem;
  letter-spacing: 0.13125rem;
  text-transform: uppercase;
  color: rgb(247, 247, 247);
  border-bottom: 3px solid transparent;
  box-sizing: border-box;
}
.navstyle .nav-items:hover {
  border-bottom-color: #ffce00;
  text-align: center;
  text-shadow: 0px 1.4px 1px rgba(0, 0, 0, 0.7);
  font-family: "Vastago Grotesk", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 0.77525rem;
  letter-spacing: 0.13125rem;
  text-transform: uppercase;
  color: #ffce00;
}
@media (min-width: 360px) and (max-width: 992px) {
  .navstyle .nav-items {
    padding: 1rem 0;
  }
}
.navstyle .nav-wrap {
  height: 4rem;
  padding-right: 2rem;
  padding-left: 2rem;
  backdrop-filter: blur(25px);
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(247, 247, 247, 0.2);
  border-bottom: 3px solid rgba(247, 247, 247, 0.2);
  box-shadow: 0px 8px 40px 0px rgba(16, 16, 16, 0.6);
  border-top: 1px solid rgba(247, 247, 247, 0.2);
}
@media (max-width: 768px) {
  .navstyle .nav-wrap {
    height: auto;
    border-radius: 20px;
    margin: 3rem 0;
    width: 15rem;
  }
}
.navstyle .menu-shop {
  background: linear-gradient(214.71deg, #101010 40.92%, rgba(247, 247, 247, 0.1) 127.95%);
  border-radius: 10px;
  border-top: 1px solid rgba(247, 247, 247, 0.2);
  border-bottom: 3px solid rgba(247, 247, 247, 0.2);
  box-shadow: 0px 8px 40px 0px rgba(16, 16, 16, 0.6);
}
@media (min-width: 300px) and (max-width: 992px) {
  .navstyle .menu-shop {
    background: transparent !important;
    border: none !important;
    box-shadow: none;
  }
}
.navstyle .menu-shop a {
  color: rgb(247, 247, 247);
  padding: 0.75rem;
  text-align: left;
}
@media (min-width: 300px) and (max-width: 992px) {
  .navstyle .menu-shop a {
    text-align: center;
  }
}
.navstyle .menu-shop a:hover {
  background: linear-gradient(214.71deg, rgba(247, 247, 247, 0.2) 40.92%, rgba(247, 247, 247, 0.1) 127.95%);
  text-align: left;
}
.navstyle .navbar-nav .nav-link.active,
.navstyle .navbar-nav .nav-link.show {
  color: #ffce00;
}