header .topBar {
  gap: 36px;
}

header .topBar .linkedinLink {
  font-family: 'Eurostile', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  position: relative;
}

header .topBar .linkedinLink::after {
  content: "";
  fill: #b67f00;
  display: inline-block;
  width: 14px;
  height: 20px;
  background: url("../img/arrow-right-color.svg") no-repeat center center;
  background-size: contain;
  margin-left: 8px;
  vertical-align: middle;
}

header .phoneBox {
  background: #b67f00;
  padding: 10.5px 29px 6px 25px;
}

header .phoneBox .phoneBoxText {
  color: #fff;
  font-family: 'Eurostile', sans-serif;
  font-size: 16px;
}

header .phoneBox a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  margin-left: 17.55px;
  position: relative;
}

header .phoneBox h3 a:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 20px;
  background: url("../img/arrow-right.svg") no-repeat center center;
  background-size: contain;
  margin-left: 8px;
  vertical-align: middle;
}

header .navbar-nav .menu-item a {
  text-transform: uppercase;
  color: #000;
  font-size: 16px;
  padding: 0 !important;
  text-decoration: none;
}
header .navbar-nav .menu-item a:focus{
  outline: none !important;
}
header .navbar-nav {
  gap: 30px;
  margin: 0;
}


@media screen and (max-width: 991.9px) {
  header .topBar {
    display: none !important;
  }

  header .navbar-brand {
    width: 200px;
    height: 75px;
  }

  header .navbar-brand img {
    width: 100%;
  }
}

.navbar-toggler {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

header .menu-item-has-children {
  position: relative;
}

header .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  margin: 0;
  padding: 14px 0;
  flex-direction: column;
  gap: 8px;
  list-style-type: none;
	z-index:2;
}
@media screen and (min-width:992px){
header .menu-item-has-children:hover .sub-menu {
  display: flex;
	}
	header .menu-item-has-children:last-child:hover  .sub-menu{
		right:0;
	}
}

header .navbar-nav .sub-menu li {
  display: flex;
  gap: 10px;
  align-items: center;
}

header .navbar-nav .sub-menu li a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 15px;
  background: url("../img/arrow-right.svg") no-repeat center center;
  background-size: contain;
  margin-left: 8px;
  vertical-align: middle;
}

header .navbar-nav .sub-menu li a {
  font-family: 'Eurostile', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 26.4px;
  text-align: left;
  color: #FFFFFF;
  position: relative;
  padding: 8px 10px !important;
  background-color: #B67F00;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
  text-transform:none;	
	min-width: max-content;
}

header .menu-item-has-children .sub-menu.active {
  display: flex;
}

@media screen and (min-width:992px) and (max-width:1199.9px) {
	header .navbar-brand{
max-width:300px;}
	header .navbar-nav {
    gap: 20px;
    margin: 0;
}
}
@media screen and (max-width:991.9px) {
  header .menu-item-has-children .sub-menu {
    position: unset;
  }
}