
nav {
  position: absolute;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  z-index: 999;
  transform: all .5s ease-out 0s;
}


#showcase .navBlack {
  position: fixed;
  top:0;
  transform: all .5s ease-out 0s;
  background-color: rgba(25, 26, 51, 0.9);
}

@media (min-width: 840px) {
  nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}

nav .menu_icon {
  float: right;
  cursor: pointer;
  padding-right: 10px;
}

nav .menu_icon .bar1,
nav .menu_icon .bar2,
nav .menu_icon .bar3 {
  width: 35px;
  height: 5px;
  background-color: #000;
  margin: 8px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (min-width: 840px) {
  nav .menu_icon {
    display: none;
  }
}

nav .change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

nav .change .bar2 {
  opacity: 0;
}

nav .change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

nav .logo {
  font-size: 1.5em;
  text-align: left;
  padding: 10px;
  float: left;
  padding-left: 9rem;
}

nav .logo img{

    width:200px;
  
}

nav .menu {
  display: none;
}

nav .menu li a:hover{
  text-decoration: none !important;
  color: #ff5f13 !important;
}

@media (max-width :320px){
  nav .logo {
    padding-left:10px;
  }
}


nav .menu_visible {
  display: block;
  margin-top: 40px;
  -webkit-animation: menu_show 1s forwards 0s ease;
          animation: menu_show 1s forwards 0s ease;
}

@-webkit-keyframes menu_show {
  0% {
    -webkit-transform: rotate(0) translateY(-15%);
            transform: rotate(0) translateY(-15%);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) translateY(0);
            transform: rotate(0) translateY(0);
    opacity: 1;
    height: auto;
  }
}

@keyframes menu_show {
  0% {
    -webkit-transform: rotate(0) translateY(-15%);
            transform: rotate(0) translateY(-15%);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) translateY(0);
            transform: rotate(0) translateY(0);
    opacity: 1;
    height: auto;
  }
}

@media (min-width: 840px) {
  nav ul {
    float: right;
  }
}

nav ul li {
  padding: 1em 1em 1em 0;
  text-transform: uppercase;
  list-style-type: none;
  text-align: center;
}

@media (min-width: 840px) {
  nav ul li {
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav ul li .active {
    border-bottom: 2px solid #000;
  }
  
}

nav ul li a {
  /* text-decoration: none;
  color: inherit; */
  color: #fff;
  font-weight: 500;
  padding: 39px 19px;
  display: block;
  font-size: 14px;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  text-transform: capitalize;
}

nav .dropdown-menu  li a{
  color: #000;

}

@media (min-width: 840px) {
  nav ul li a {
    display: block;
    padding: 2px 20px;
  }
}


@media (max-width :480px){
  nav .logo {
    padding-left:10px;
  }
  nav ul li {
    padding: 0;
  }
}

@media (min-width: 840px) {
  nav .menu {
    display: block;
    padding-right: 1em;
  }

}