.dropdown-toggle::after {
    display:none;
}
.header-sec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header-sec {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s 
ease, padding 0.3s 
ease;
    padding: 35px 0 0;
}
.header-sec.scrolled {
    background: #44342a;
}
.header-sec.scrolled {
    padding: 10px 0;
}
.header-sec.scrolled  .site-branding img {
   max-width:130px; 
}
.menu-wrp ul li {
    list-style: none;
    display: inline-block;
    align-items: center;
}
.menu-wrp ul {
    padding: 0;
    margin: 0;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.menu-wrp {
    float: right;
}
.menu-wrp img {
    width: 100%;
    max-width: 35px !important;
    cursor: pointer;
}
.menu-wrp {
    display: flex
;
    align-items: center;
    justify-content: end;
    height: 100%;
    
}
.main-menu ul li {
    width: 100%;
}
.main-menu ul {
    padding: 0;
    margin: 0;
    display: inline-block;
}
.nav-close {
    font-size: 30px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 20px;
    text-align: right;
    transition: transform 0.3s 
ease;
    color: #000;
    margin-left: 15px;
}
.nav-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.account-wrap a {
    color: #dcd8cd !important;
    text-decoration: none;
    font-family: var(--primary-font);
    transition: color 0.3s ease;
}
.account-wrap a:hover {
    color: #fff !important;
}
.header-sec nav {
  position: fixed;
  top: 0;
  right: -300px; /* keep it outside of screen */
  height: 100%;
  width: 300px;
  background: var(--primary-color);
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  padding: 20px 0;
}
.header-sec nav.active {
  right: 0;
}
#primary-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
#primary-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-family: var(--secondary-font);
    font-size: 16px;
}
#primary-menu li a:hover {
  background: #44342a;
  color:#fff;
}
#menu-item-35 {
    position: relative;
}
#menu-item-35.submenu-open > .sub-menu {
  display: block;
}
#menu-item-35.has-dropdown > a::after {
  content: "\f078"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 6px;
  transition: transform 0.3s ease;
  float:right;
}
#menu-item-35 .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #44342a;
}
#menu-item-35 .sub-menu  a {
color:#fff !important;
  
}
#menu-item-35.submenu-open > a::after {
  transform: rotate(180deg);
}
#menu-item-35 .dropdown-toggle i {
  transition: transform 0.3s ease;
}
#menu-item-35.submenu-open .dropdown-toggle i {
  transform: rotate(180deg);
}
#menu-item-35 .dropdown-toggle {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 15px;
}