/* show submenu on hover */
.dropdown:hover>.dropdown-menu {
  display: block;
}


.justify-content-center .dropdown-menu {
   left: 50%;
   transform: translateX(-50%);
}

#masthead .navbar-nav > li.dropdown > a {
    padding-right: 15px;
}


/* caret style */
.caret {
  position: absolute;
  right: 4px;
  top:50%;
}

/* dropdown style */
.dropdown-menu {
    top: calc(100% - 6px);
    color: #171717;
    background-color: #fff;
    border: 0 solid rgba(0,0,0,.15);
    border-top: 6px solid #444c56;
    border-radius: 0;
    margin-top:0;
    box-shadow: 0 2px 2px rgba(0,0,0,.15);
}

/**/

.dropdown .caret:after, .dropdown .caret:before {
	top: 0;
    left: 0;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.dropdown .caret:after {
    border-color: rgba(255, 255, 255, 0);
    border-width: 5px;
    margin-left: -10px;
}
.dropdown .caret:before {
    border-color: rgba(0, 47, 79, 0);
    border-top-color: #fff;
    border-width: 5px;
    margin-left: -9px;
	transition: border-top-color .5s
}
#masthead .navbar-nav > li.current-menu-parent.dropdown > a .caret:before,
#masthead .navbar-nav > li.current_page_item.dropdown a .caret:before,
#masthead .navbar-nav > li.dropdown > a:hover .caret:before {
    border-top-color: #fecb05;
}
