
/* *********** Header Nav  ******************/
/* ******************************************** */
.nav-header{
  background: #f4f4f4;
  background-size: cover;
  padding: 15px 0px;
}

.nav-header .logo{
  
}

.nav-header .logo img{
  height: 70px;
  /*width: auto;*/
}

.nav-items-list{
  display: flex;
  flex-wrap: wrap;
}
.nav-items-list .nav-item{
  font-weight: bold;
  font-size: 13px;
  color: #000000;
  border-right: 1.5px solid #0D6B30;
  padding: 15px 20px;
  text-transform: uppercase;
  transition: 0.3s;
}
.nav-items-list .nav-item:last-child{
  border-right: 0;
}
.nav-items-list .nav-item:hover{
  background: #0D6B30;
}

.nav-items-list .nav-item a{
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
.nav-items-list .nav-item:hover a{
  color: #fff;
}

.nav-items-list-wrapper{
  background: #fff;
  box-shadow: 0px 7px 7px rgba(200, 200, 200, 0.1);
  border-bottom: solid 1px #ddd;
}
.nav-items-list .nav-item.active{
  background: #0D6B30;
  color: #FFFFFF !important;
}
@media (max-width: 768px) {
  .nav-items-list{
      flex-direction: column;
      display: block;
  }
  .nav-item{
      border-right: 0px !important;
      border-left:1.5px solid #0D6B30;
  }
}
.megamenu {
  position: static !important;
}

.megamenu .dropdown-menu {
  border: none;
  border-radius:0;
  /*width: 100% !important;*/
}
