.nav-bar-toggler{
    width: 60px;
    height: 60px;
    padding: 18px 18px;
    display: block;
    fill: aliceblue; 
    float: right;
    background: none;
    border: none;
    outline: 0;
}

.nav-bar-toggler:hover{
    fill: coral;
}
@media (max-width: 576px) { 
    #nav-bar .nav-bar-toggler{
        display: block;
        float: right;
        width: 60px;
        height: 60px;
    }

    #nav-bar ul {
        display: none !important; 
    }
}
@media (min-width: 576px) {
    #nav-bar .nav-bar-toggler{
        display: none;
    }
    #nav-bar-collapse{
        display: none;
    }
 }

#nav-bar{
    padding: 0;
    margin: 0;
    width: 100%;
}
#nav-bar ul {
    list-style: none;
    margin: 0;
    padding: 0 16px;
    line-height: 1;
    display: block;
    zoom: 1;
    float: right;
  }

#nav-bar ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
  }

#nav-bar ul li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 23px 18px 23px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    transition: color .25s;
  }

#nav-bar ul li a span {
      display: block;
  }

#nav-bar ul li a:hover {
    color: coral;
    text-decoration: none;
}

#nav-bar ul li a:hover:before {
  width: 100%;
}

#nav-bar ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: coral;
  -webkit-transition: width .25s;
  -moz-transition: width .25s;
  -ms-transition: width .25s;
  -o-transition: width .25s;
  transition: width .25s;
}

#nav-bar ul li a.active{
    color: coral;
    text-decoration: none;
}

.nav-bar-style{
    flex: 1 1 auto;
    padding: 0rem;
    text-decoration: none;
    list-style: none;
}

.nav-bar-style li a{
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 12px 0px ;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    background: rgb(245, 121, 76);
    position: relative;
    -webkit-transition: color 1000ms;
    transition: color 1000ms;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.nav-bar-style li a:before
  {
    color: coral;
    background-color:#333332;
    text-decoration: none;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transition: 300ms ease-out;
    transition: 300ms ease-out;
  }
  .nav-bar-style li a:hover:before{
    color: coral;
    background-color:#333332;
    text-decoration: none;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

