header nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: var(--white, #fff);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.06);
  z-index: 99;
}
header nav .navbar {
  height: 100%;
  /* max-width: 1250px; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  /* padding: 0 50px; */
}
.navbar .logo a {
  font-size: 30px;
  color: #838383;
  text-decoration: none;
  font-weight: 600;
}
header nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
header nav .navbar .links {
  /* display: flex; */
  align-items: center;
}
header nav .navbar .links.left-logo {
  display: flex;
  align-items: center;
}
header nav .navbar .links li,
header nav .navbar .links.left-logo li {
  position: relative;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  /* padding: 0 25px; */
}
header nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #383838;
  font-size: 15px;
  transition: 0.3s;
}
/* header nav .navbar .links li:hover > a,
header nav .navbar .links li:focus > a {
  color: #fff;
} */
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

header nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #838383;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  right: 0;
  line-height: 40px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
header nav .navbar .links li:hover .htmlCss-sub-menu,
header nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.navbar .links li .sub-menu li {
  padding: 0 25px 0 30px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  min-width: 155px;
  transition: 0.3s;
}
.navbar .links li .sub-menu li:hover > a,
.navbar .links li .sub-menu li:focus > a {
  color: #4db948;
}
.navbar .links li .sub-menu a {
  color: #838383;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .sub-menu li.more:hover > span > a {
  color: #fff;
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  right: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #838383;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  left: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #2f2f36;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #2f2f36;
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #2f2f36;
  left: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}
@media (max-width: 920px) {
  header nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  header nav .navbar .logo a {
    font-size: 27px;
  }
  header nav .navbar .links li {
    white-space: nowrap;
  }
  header nav .navbar .links li a {
    font-size: 15px !important;
    padding: 0px 10px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    display: block;
    position: relative;
    line-height: 3;
  }
  header nav .navbar .links li a:active,
  header nav .navbar .links li a:hover,
  header nav .navbar .links li a:focus {
    color: #4db948;
  }
}
@media (max-width: 800px) {
  nav .navbar .nav-links {
    line-height: 40px;
    height: 100%;
  }
  .scroll-y-mobile {
    overflow-y: scroll;
    max-height: 78%;
  }
  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    display: block !important;
    max-width: 270px;
    width: 100%;
    background: #fff;
    line-height: 40px;
    padding: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 150;
  }

  #shadow-overlay {
    position: fixed;
    z-index: 100;
    background: #0000006e;
    transition: all 0.2s;
    /* transform: scale(1.1) translateY(50px); */
    left: 0;
    right: 0;
    display: none;
    top: -15px;
    bottom: 0;
  }
  /* nav .navbar .nav-links:after{
content: "";
position: absolute;
z-index: 99;
background-color: rgba(24, 137, 118, 0.8);
height: 100vh;
width: 100vw;
transition: 0.4s;
} */

  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #7a848e;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #7a848e;
  }
  nav .navbar .links {
    display: block !important;
    margin-top: 20px;
  }
  nav .navbar .links li svg {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #838383;
    transition: all 0.3s ease;
    font-size: 17px;
    position: absolute;
    left: 15px;
  }
  nav .navbar .links li {
    display: block;
    padding: 0 !important;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    right: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* display: flex; */
    align-items: center;
  }

  /* .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  } */
  /* .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    display: block;
    float: left;
    line-height: 3;
  } */
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
  .navbar .links li.dropdown ul a {
    color: #383838;
    font-size: 15px;
    font-weight: 400;
    padding-right: 25px;
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 85%;
  }
}
li.submenu:hover > ul {
  transform: translatex(0%) scale(1);
}
/* show more page product */
.show-more-box #content {
  z-index: 100;
  max-height: 180px;
  overflow: hidden;
  position: relative;
  padding: 0 15px;
  background-color: #fff;
}
.show-more-box #content:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: linear-gradient(transparent 7%, #fffffff7);
}
.show-more-box #content.open:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: #fff0;
}
.show-more-box #content.open {
  max-height: 1000px;
  transition: max-height 0.7s;
}
#mobileshow { 
  display:none; 
  }
  @media screen and (max-width: 500px) {
  #mobileshow { 
  display:block; }
  }
  @media (max-width: 800px) {
    .navbar .links li.sub-dropdown ul a {
        padding-right: 35px;
      }
    }