
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}
/* navbar */

.navbar {
    background-color: rgb(11 5 5);
    /* height: 65px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
  .sticky {
    position: fixed;
    top: 0;
    z-index: 999;
    left: 0;
    right: 0;
  }
  .nav-up {
    transition: .2s ease-in;
    transform: translateY(-100%);
}
  .navbar .logo {
    height: 80px;
    margin: 20px 0;
  }
  
  /* nav menu button */
  
  .menu-btn {
    position: absolute;
    right: 25px;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
  }
  
  .navbar .menu-btn__lines:before,
  .navbar .menu-btn__lines:after {
    content: "";
    position: absolute;
  }
  
  .navbar .menu-btn__lines,
  .navbar .menu-btn__lines:before,
  .navbar .menu-btn__lines:after {
    width: 1.5rem;
    height: 0.1rem;
    background: #fff;
    transition: all 0.4s ease-in-out;
  }
  
  .navbar .menu-btn__lines:before {
    transform: translateY(-0.5rem);
  }
  
  .navbar .menu-btn__lines:after {
    transform: translateY(0.5rem);
  }
  
  .navbar .menu-items {
    display: flex;
    align-items: center;
  }
  
  .navbar ul li {
    list-style: none;
    transition: 0.3s ease;
  }
  
  .navbar ul li .arrow {
    transition: all 0.3s ease-out;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #fff;
    border-bottom: 2px solid #d5aa6d00;
  }
  ul{
    padding: 0;
  }
  /* dropdown menu */
  
  .navbar .dropdown {
    position: relative;
  }
  .expand-btn:after {
    content: " \25BE";
    opacity: 0.4;
    margin-left: 5px;
  }
  
  .navbar .dropdown-menu,
  .menu-right {
    position: absolute;
    background: rgb(11 5 5);
    width: 210px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: 70px;
    
    left: 0;
    opacity: 0;
    display: block;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
  .navbar .dropdown-menu .menu-item{
    color: #fff;
  }
  .navbar .dropdown-menu .menu-item:hover{
    color:#d5aa6d;
  }
  .navbar .menu-right {
    top: 0;
    left: 100%;
  }
  .navbar .dropdown-menu,
  .menu-left {
    left: unset;
    right: 0;
  }
  .navbar .menu-left {
    left: -100%;
  }
  
  .navbar .menu-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Eczar', serif !important;
    font-weight: 400;
  }
  .navbar .menu-item:hover,.navbar .menu-item.active {
    color: #fff;
    border-bottom: 2px solid #d5aa6d;
    
  }
  
  .menu-item.first-item {
    padding: 1.5rem 1rem;
  }
  
  .navbar .menu-items li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  .navbar .dropdown-menu .menu-item:hover{
    color: #d5aa6d;
    /*background-color: #fff;*/
  }
  .navbar .dropdown-right:hover .menu-right {
    left: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  .navbar .dropdown-right:hover .menu-left {
    left: -100%;
  }
  
  /* mega menu  */
  
  .navbar .mega-menu {
    position: absolute;
    left: 0;
    width: 100vw;
    top: 65px;
    border-top: 1px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
  
  .mega-menu .content {
    background: #e9ecef;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
  
  .menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .content .col .read-more:hover {
    color: #ff5722;
  }
  
  
  
  /* animation menu hamburger */
  .menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
  }
  
  .menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #fff;
  }
  
  .menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #fff;
  }
  
  .search-box {
    position: relative;
}
.search-box .search-control{
    height: 45px;
    width: 340px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    outline: none;
}
.search-box .search-control:focus{

}
.search-box .search-control::placeholder{
    color: #fff;
}
.search-box button {
    position: absolute;
    right: 0;
    height: 45px;
    width: 45px;
    background: transparent;
    border: 0;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    color: #fff;
    bottom: 0;
}
.mail-box a{
    color: #fff;
}
.search-icon{
  position: absolute;
    top: 18px;
    color: #fff;
    font-size: 26px;
    width: 40px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 60px;
}
.offcanvas-top button.btn-close {
  position: absolute;
    left: 0;
    z-index: 1;
    width: 35px;
}
div#offcanvasTop {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#offcanvasTop .primary-btn {
 
  border-radius: 4px;
  padding: 12px 18px;
 
}
div#offcanvasTop .news-letter .form-control {

  padding-left: 50px;
}
  /* Responsive style */
  
  @media screen and (max-width: 992px) {
    .navbar .logo {
      height: 40px;
      margin: 0px 0;
  }
    .navbar {
      padding: 10px 20px;
    }
  
    .overflow {
      overflow: hidden;
    }
  
    .overlay {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: 500;
      background-color: rgba(0, 0, 0, 0.6);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }
  
    .overlay--active {
      opacity: 1;
      visibility: visible;
    }
  
    .menu-btn {
      display: flex;
    }
  
    .navbar .menu-items {
      position: fixed;
    height: 100%;
    max-height: 100%;
    overflow-y: hidden;
    width: 100%;
    top: 60px;
    left: 0;
    background: #fcfcfc;
    display: block;
    transform: translateX(-100%);
    transition: 0.3s ease-out;
    padding-bottom: 100vh;
    }
    .navbar ul li a {
      text-decoration: none;
      color: #000;
  }
  .navbar .dropdown-menu li a {
    text-decoration: none;
    color: #fff;
}
  .mail-box {
    -webkit-box-shadow: 0 4px 7px rgb(213 170 109 / 48%);
    -khtml-box-shadow: 0 4px 7px rgba(213,170,109,.48);
    -moz-box-shadow: 0 4px 7px rgba(213,170,109,.48);
    -ms-box-shadow: 0 4px 7px rgba(213,170,109,.48);
    -o-box-shadow: 0 4px 7px rgba(213,170,109,.48);
    box-shadow: 0 4px 7px rgb(213 170 109 / 48%);
    background-color: #d5aa6d;
    background-image: -webkit-gradient(linear,left top,right top,from(#d5aa6d),to(#9b6f45));
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
    padding: 10px 0;
}
.navbar .menu-item:hover, .navbar .menu-item.active {
    color: #000;
    border-bottom: 2px solid #d5aa6d;
}
  .mail-box a {
    color: #fff;
    padding-left: 15px;
    font-weight: 500;
}
.nav-up {
  transition: .2s ease-in;
  transform: translateY(0%);
}
    .menu-items.open {
      transform: translateY(0);
    }
  
    .menu-items li:first-child {
      margin-top: 0px;
    }
  
    .menu-items li a {
      padding: 10px 1rem;
      display: block;
      font-size: 18px;
    }
  
    .menu-items .dropdown-right .right-arrow {
      transform: rotate(90deg);
    }
  
    .menu-item.first-item {
      padding: 1rem 1rem;
    }
  
    /* DROPDOWN, MEGA MENUS */
    .menu-items .dropdown-menu,
    .menu-items .menu-right,
    .menu-items .mega-menu {
      position: static;
      opacity: 1;
      top: 4rem;
      visibility: visible;
      margin-left: -18px;
      width: auto;
      max-height: 0;
      transform: scaleX(0);
      transform-origin: left;
      overflow: hidden;
      transition: all 0.5s ease;
    }
  
    .menu-items .dropdown-menu,
    .menu-items .menu-right {
      padding-left: 0rem;
      width: 100%;
      margin-left: 0px;
    }
  
    .menu-items .mega-menu .col {
      padding-left: 1rem;
    }
  
    .expand-btn.open + .sample {
      max-height: 100%;
      transform: scaleZ(1);
      padding: 0;
    background: rgb(162 120 75);
    }
    .navbar .dropdown-right:hover .menu-right {
      left: 100%;
      opacity: 1;
      visibility: visible;
      background-color: #1b4870;
  }
    .expand-btn.open{
     
    background-color: #d5aa6d;
    background-image: -webkit-gradient(linear,left top,right top,from(#d5aa6d),to(#9b6f45));
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
      color: #fff !important;
    }
    .expand-btn.open + .blog.sample {
      max-height: 100%;
      transform: scaleZ(1);
      max-width: fit-content;
      background-color: #dddddd14;
    }
  
    .navbar .sample {
      border-top: none;
    }
  
    .sample li {
      margin: 0;
    }
  
    .sample li:last-child {
      border-bottom: none;
    }
  
    .sample li a {
      font-size: 1rem;
    }
  
    .mega-menu .content {
      grid-template-columns: auto;
      padding: 1rem 1rem 0 1rem;
    }
  
    .mega-menu .content .col {
      width: 100%;
      padding-top: 1rem;
      margin-bottom: 0.5rem;
    }
  
    .col .mega-links li,
    .col .mega-links li a {
      padding: 0 0.5rem;
    }
  
    .content .col .mega-links {
      border-left: 0;
      padding-left: 0.5rem;
    }
    .col .mega-links li {
      margin: 0;
    }
  }