body{
    font-family:Arial;
    background:#07233f;
    color:#fff;
    margin:0;
}
.header-center.d-none.d-lg-flex {
    justify-content: center;
}
.main-header{
    height: 110px;
    display:flex;
    align-items:center;
    background: #041b37;
}

.main-footer {
    display:flex;
    align-items:center;
    background: #041b37;
}

.main-footer p {
    color: #07101F;
}
.header-inner{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
}
.logo{
    /* height:70px; */
}
.main-nav{
    display:flex;
    gap:80px;
    margin-bottom: 0rem;
    list-style:none;
}
.main-nav a{
    color:#fff;
    font-size: 16px;
    text-transform:uppercase;
    font-family: "JetBrains Mono", monospace;
    text-decoration: none;
    font-optical-sizing: auto;
    font-style: normal;
}
.header-right{
    display:flex;
    align-items:center;
    gap:18px;
    justify-content: flex-end;
}
.phone{
    color:#c8a75b;
}
.btn-gold{
    background: #c8a75b !important;
    color: #000 !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    border-radius: 0 !important;
}
.lang{
    border: 1px solid #fff;
    padding: 6px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}


.burger span{
    width:22px;
    height:2px;
    background:#c8a75b;
    display:block;
    margin:4px 0;
}
.mega-menu{
    position:absolute;
    top: 90px;
    left:50%;
    transform:translateX(-50%);
    width:1100px;
    background:#071f3a;
    border:1px solid #c8a75b;
    display:none;
    padding:25px;
    z-index: 1000000;
}
.mega-parent:hover .mega-menu{
    display:block;
}
.mega-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}
.mega-col h6{
    color:#c8a75b;
    margin-bottom:10px;
}
.mega-col a{
    display:block;
    color:#fff;
    margin-bottom:8px;
}
.mega-bottom{
    margin-top:20px;
    border-top:1px solid #1c3556;
    padding-top:15px;
    display:flex;
    justify-content:space-between;
}



/* DRAWER BASE */
.side-drawer {
     position: fixed;
     top: 150px;
     left: 0;
     width: 85%;
     max-width: 360px;
     height: 80%;
     background: #071f3a;
     transform: translateX(-100%);
     transition: transform 0.35s ease;
     z-index: 9999;
     display: flex;
     flex-direction: column;
}

.side-drawer.active {
  transform: translateX(0);
}

/* HEADER */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid #1c3556;
}

.drawer-title {
  color: #c8a75b;
  letter-spacing: 2px;
  font-size: 12px;
}

/* PANELS */
.drawer-panel {
  position: absolute;
  width: 100%;
  top: 70px;
  bottom: 100px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: 0.3s ease;
}

.drawer-panel.active {
  transform: translateX(0);
}

/* ITEMS */
.drawer-item {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid #1c3556;
  color: #fff;
  cursor: pointer;
}

.drawer-item .arrow {
  color: #c8a75b;
}

/* SUB LINKS */
.drawer-panel a {
  display: block;
  padding: 16px 18px;
  color: #fff;
  border-bottom: 1px solid #1c3556;
}

/* BACK BUTTON */
.back-btn {
  padding: 18px;
  color: #c8a75b;
  cursor: pointer;
  border-bottom: 1px solid #1c3556;
}

/* FOOTER */
.drawer-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid #1c3556;
}

/* GROUP */
.drawer-group {
  border-bottom: 1px solid #1c3556;
}

/* TOGGLE */
.drawer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  color: #fff;
  cursor: pointer;
}

/* ARROW */
.drawer-toggle .arrow {
  transition: transform 0.3s ease;
  color: #c8a75b;
}

/* SUBMENU */
.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #061a30;
}

/* LINKS */
.drawer-submenu a {
  display: block;
  padding: 14px 18px 14px 30px;
  color: #fff;
  font-size: 14px;
}

/* ACTIVE STATE */
.drawer-group.active .drawer-submenu {
  max-height: 300px; /* enough to show items */
}

.drawer-group.active .arrow {
  transform: rotate(90deg);
}
  
  /*body.drawer-open {*/
  /*  transform: translateX(320px);*/
  /*  transition: 0.4s;*/
  /*}*/
  
  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.5);
  }
  
  .overlay.active { display: block; }
  
  .burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: gold;
    margin: 5px 0;
  }
  
#sideDrawer {
    color: #fff!important;
}
  