@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
header {
  background: #051215;
  position: sticky;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  min-height: 60px;
  z-index: 999;
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* .nav-up header {
  transform: translateY(-100px);
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
} */

.solid header {
  background: rgba(31, 25, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sticky {
  background: rgba(31, 25, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.3px;
  background: rgba(193, 193, 193, 0.3);
  z-index: 2;
  opacity: 0;
}

.mainHeader {
  padding: 1rem 0rem 1rem 0rem;
  width: 100%;
  position: relative;
  z-index: 1;
  background:#000;
}

.mainHeader .container-fluid{
  max-width: 100%;
}
.linksWrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.linksDiv {
  margin: 0 auto;
}

.linksUl li {
  padding: 0px 0.85rem;
}

.linksUl li a {
  font-family: "Klavika-Medium";
    font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize;
}

.linksWrap li a.glowEffect.active {
  background: linear-gradient(90deg, #fff 0%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 34px rgba(255, 255, 255, 0.8);

}

.linksWrap li a.animUnderline.active{
  position: relative;
}
.linksWrap li a.animUnderline.active::after{
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background: #fff;
  transition: width 0.3s;
  bottom: -4px;
  position: relative;
  filter: drop-shadow(0px 0px 5px #fff);
}
.sublinksUl li {
  padding: 0 1.81rem 0 0;
}

.sublinksUl li a {
  color: #fff;
  font-family: "Klavika-Regular";
    font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize;
}

/* hamburger and mobile menu */
.hamburger-menu {
  display: inline-block;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu:hover {
  cursor: pointer;
}

.hamburger-menu .menu-item {
  background: #fff;
  display: block;
  height: 3px;
  margin: 0 0 10px;
  transition: all 0.3s ease-in-out;
  width: 40px;
}
.hamburger-menu .menu-item:first-child,
.hamburger-menu .menu-item:nth-child(3) {
  width: 30px;
}

.hamburger-menu.openNavigation .menu-item {
  margin: 0 0 2px;
}

.hamburger-menu.openNavigation .menu-item:first-child {
  transform: rotate(45deg);
  transform-origin: 8px;
}

.hamburger-menu.openNavigation .menu-item:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.openNavigation .menu-item:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: 8px;
}

.glowEffect {
  position: relative;
  display: inline-block;
  transition: 0.3s ease-in;
}

.glowEffect:hover {
  background: linear-gradient(90deg, #fff 0%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 34px rgba(255, 255, 255, 0.8);
}

.animUnderline {
  transition: 0.3s ease-in;
}

.animUnderline::after {
  content: "";
  display: block;
  width: 0;
  height: 0.5px;
  background: #fff;
  transition: width 0.3s;
  bottom: -4px;
  position: relative;
  filter: drop-shadow(0px 0px 5px #fff);
}

.animUnderline:hover::after {
  width: 100%;
}
.goldEffect {
  transition: 0.3s ease-in;
}
.goldEffect:hover {
  background: linear-gradient(90deg, #b79e5c 0%, #f2dea6 65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brandLogoDiv{
  width: 160px;
}

.brandLogoDiv img{
  width:100%;
  height: 100%;
}
@media (max-width: 767px) {
  /* .nav-up header {
      transform: translateY(-100px);
      transition: all 1s cubic-bezier(.215, .61, .355, 1);
    
  } */

  .solid header {
    background: rgba(31, 25, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .sticky {
    background: rgba(31, 25, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    background: #000;
    min-height: 60px;
    z-index: 999;
  }

  .mainHeader {
    padding: 1rem 0px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }

  .linksWrap {
    display: block;
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    align-items: flex-start !important;
    padding: 100px 20px 0 20px;
  }

  .logoDiv {
    display: flex;
    z-index: 999;
    align-items: center;
    width: 100%;
    margin: 0;
  }

  .linksUl,
  .linksDiv {
    max-height: calc(100svh - 120px);
    overflow-y: auto;
    min-height: auto;
    width: 100%;
    flex-direction: column;
    margin: 0;
  }

  .linksUl li {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
    padding-left: 0px;
    min-height: 60px;
    display: flex;
    align-items: center;
  }

  .linksWrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 22, 21, 0.8);
    background:#000;
    backdrop-filter: blur(12.5px);
    z-index: -1;
  }

  .sublinkswrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: space-evenly;
    gap: 20px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    padding: 1.25rem;
  }

  .sublinksUl {
    width: 100%;
    justify-content: space-evenly;
  }

  header button,
  header .btn {
    width: auto;
  }

  .brandLogoDiv {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .brandLogo img {
    margin: 0 auto;
  }

  .mainHeader .linksWrap {
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  }

  .mainHeader.openNavigation .linksWrap {
    transform: translateX(0vw);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
  /* .nav-up header {
    transform: none;
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
  } */

  .solid header {
    background: rgba(31, 25, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .sticky {
    background: rgba(31, 25, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    background: #000;
    min-height: 60px;
    z-index: 999;
  }

  .mainHeader {
    padding: 1rem 0px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }

  .linksWrap {
    display: block;
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    align-items: flex-start !important;
    padding: 100px 20px 0 20px;
  }

  .logoDiv {
    display: flex;
    z-index: 999;
    align-items: center;
    width: 100%;
    margin: 0;
  }

  .linksUl,
  .linksDiv {
    max-height: calc(100svh - 120px);
    overflow-y: auto;
    min-height: auto;
    width: 100%;
    flex-direction: column;
    margin: 0;
  }

  .linksUl li {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
    padding-left: 0px;
    min-height: 60px;
    display: flex;
    align-items: center;
  }

  .linksWrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 22, 21, 0.8);
    backdrop-filter: blur(12.5px);
    z-index: -1;
  }

  .sublinkswrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: space-evenly;
    gap: 20px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    padding: 1.25rem;
    flex-direction: column;
  }

  .glowing-wrapper-button{
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .sublinksUl {
    width: 100%;
    justify-content: space-between;
  }

  header button,
  header .btn {
    width: auto;
  }

  .brandLogoDiv {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .brandLogo img {
    margin: 0 auto;
  }

  .mainHeader .linksWrap {
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  }

  .mainHeader.openNavigation .linksWrap {
    transform: translateX(0vw);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
}