.header-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 1rem; 
}

.header-nav-right,
.header-nav-left {
  display: flex;
  align-items: center;   
  grid-gap: 15px;
}
.header-nav-right {
  justify-content: flex-end;
}


/***HEADER BOTTOM***HEADER BOTTOM***HEADER BOTTOM***HEADER BOTTOM***HEADER BOTTOM***/
/***HEADER BOTTOM***HEADER BOTTOM***HEADER BOTTOM***HEADER BOTTOM***HEADER BOTTOM***/

.header-bottom-wrap{
  background: var(--color-black);
  border-top: 1px solid #252525;
  border-bottom: 1px solid #252525;
}

#header-bottom{
  display: flex;
  justify-content: space-between;
  list-style: none;
 padding: 0 ;
  margin: 0;
  font-size: 1rem;
  color: #fff;
  font-weight:400;

}
 
#header-bottom  .menu-item a  {
 display: inline-flex;
padding: 0.5em 0;
}  


#header-bottom .menu-item {
  position: relative; 
  
}

#header-bottom .sub-menu {
  visibility: hidden;
  position: absolute;
  background-color: var(--primary-color);
  right: 0;
  list-style: none;
  display: block;
  top: 7em;
  min-width: 200px;
  padding: 1em 1.5em;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
  border-radius:  10px;

} 
#header-bottom  .sub-menu .menu-item a  {
  display: inline-flex;
 padding: 0.25em 0;
 width: 100%;
 }  
 
#header-bottom .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  transition: 0.2s;
  opacity: 1;
  z-index: 2;
  top: 2.8em;
}


#header-bottom  .menu-item-has-children:after {
  content: "";
  background-image: url(../../icons/arrow-down.svg);
  position: relative;
  width: 0.6em;
  height: 0.6em;
  right: -0.2em;
  margin-top: 0.1em;
  filter: var(--color-white-svg);
  display: inline-flex;
}

#header-bottom .sub-menu a  {
  color: #000;
  font-weight: 400;
}  


#header-bottom  .current-menu-item  a
{
 color: var(--primary-color);
}  

/***App Mobile***App Mobile***App Mobile***App Mobile***App Mobile***/

.header-hb img {
  /*Icons Right Header*/
  height: 1.3rem;
  display: block;
  cursor: pointer;
  filter: var(--color-white-svg);
}

#header-app {
  overflow-y: auto;
  position: fixed;
  background: var(--primary-color);
  max-width: 400px;
  left: 0;
  top: 0;
  height: 100%;
  padding: 1.5em;
  display: none;
  color: #000;
  z-index: 9999999999999999999999;
  box-shadow: 0px 0px 60px rgb(0 0 0 / 10%);
  align-content: space-between;
  width: 100%;
}

.header-app-visible {
  display: grid !important;
}

.header-app-top {
  display: flex;
  justify-content: flex-end;
}
.header-app-middle {
  padding: 1em 0;
}
.header-app-bottom .social-icons img {
  filter: var(--white-svg);
}
.header-app-bottom .social-icons a {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#header-app ul {
  padding-left: 0;
}
#header-app .menu-item {
  position: relative;
  list-style: none;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 0.2em;
}

#header-app .sub-menu .menu-item {
  font-size: 1.1rem;
  opacity: 0.9;
}
#header-app .menu .sub-menu {
  display: none;
  text-align: left;
  padding: 0.5em 0.5em;
}
.header-app-arrow-down,
.header-app-arrow-up {
  background-image: url(../../icons/arrow-down.svg);
  width: 1.5em;
  height: 1.5em;
  filter: var(--white-svg);
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 0.15em;
  background-size: 0.7em;
  background-repeat: no-repeat;
  background-position: center right;
}
.header-app-arrow-up {
  background-image: url(../../icons/arrow-up.svg);
}


@media screen and (min-width: 999px) {

.header-nav-right,
.header-nav-left {
  grid-gap: 25px;
}

}