.elementor-69 .elementor-element.elementor-element-06e1705{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--overflow:hidden;}/* Start custom CSS for html, class: .elementor-element-40cd14e *//* ===== HEADER ===== */
.lux-header {
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Remove Elementor container spacing */

.lux-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(0,0,0);
  box-shadow: 0 4px 20px rgba(255,255,255,0.4);
}

/* BLACK ON SCROLL */
/*.lux-header.scrolled {*/
/*  background: transparent;*/
/*  box-shadow: 0 4px 20px rgba(0,0,0,0.4);*/
/*}*/

/* HEADER INNER */
.header-inner {
  height: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 85px;
  display: block;
  padding: 5px;
}

/* CTA */
.header-cta a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,.6);
  padding: 10px 20px;
  transition: 0.3s;
}

.header-cta a:hover {
  background: #DABC6C;
  font-weight: 500;
  color: #000;
}

/* HAMBURGER */
.hamburger {
  width: 28px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
  transition: .4s;
}

/* ACTIVE HAMBURGER */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px);
}

/* FULLSCREEN MENU */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

/* MENU CONTENT */
.menu-content {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px;
}

/* LEFT MENU */
.menu-left a {
  display: block;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 25px;
  transform: translateY(40px);
  opacity: 0;
}

.menu-left a:hover{
    color:#DABC6C;
}

/* RIGHT MEGA MENU */
.menu-right {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 10px;
}

.menu-right h4 {
  color: #fff;
  margin-bottom: 20px;
}

/* ANIMATION */
.fullscreen-menu.active .menu-left a {
  animation: reveal .8s ease forwards;
}

.fullscreen-menu.active .menu-left a:nth-child(1){animation-delay:.2s}
.fullscreen-menu.active .menu-left a:nth-child(2){animation-delay:.3s}
.fullscreen-menu.active .menu-left a:nth-child(3){animation-delay:.4s}
.fullscreen-menu.active .menu-left a:nth-child(4){animation-delay:.5s}
.fullscreen-menu.active .menu-left a:nth-child(5){animation-delay:.6s}

@keyframes reveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* MOBILE */
@media(max-width:900px){
  .menu-content {
    grid-template-columns: 1fr;
    padding: 80px 30px;
  }
  .menu-left a { font-size: 20px;
  margin-top:20px;}
  .logo img {
  height: 60px;
}

/* CTA */
.header-cta a {
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 8px 6px;
  transition: 0.3s;
}
  
}/* End custom CSS */