.navbar-light .navbar-nav .nav-link {
  font-weight: 600;
  color: #231916!important;
}
.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
}
.dropdown-menu{
  margin:0;
  border: none;
    border-top: 3px solid #f39901;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    -webkit-transform: translateZ(0);
}
.dropdown-menu li{padding:10px 10px 0px;}
.dropdown-menu li:last-child{padding-bottom:10px;}
.dropdown-item{
  font-weight: 600;
  color: #231916!important;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: #231916!important;
  text-decoration: none;
  background-color: rgba(0,0,0,.03);
}
.dropdown-submenu {
  position:relative;
}
.dropdown-submenu>.dropdown-menu {
  top:0;
  /*left:-100%;*/
  left:-10rem; /* 10rem is the min-width of dropdown-menu */
  margin-top:-6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
 /* text-decoration: underline;
  transform: rotate(-90deg); */
} 

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

/* multilevel navigation */
ul.dropdown-menu li > ul.dropdown-menu {
left: 100%;
top: 0;
}

ul.dropdown-menu li:hover > ul.dropdown-menu,
ul.dropdown-menu li:focus > ul.dropdown-menu {
display: block;
}
.dropdown-menu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.show ul.dropdown-menu .dropdown > .dropdown-item::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transform: rotate(-90deg);
}
