.header {
  width: 100%;
  z-index: 9;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  -moz-transition: all 0.2s linear !important;
  -webkit-transition: all 0.2s linear !important;
  -o-transition: all 0.2s linear !important;
  transition: all 0.2s linear !important;
}

.header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}



/* ------------------------------------------------------------ */

.menu-ul {
  display: flex;
  flex-wrap: wrap;
}

.menu-ul li {
  position: relative;
}

.menu-ul a {
  text-transform: capitalize;
  font-weight: 600;
}

.menu-ul li+li {
  margin-left: 35px;
}

.menu-ul a:hover,
.current_page_item>a,
.current-menu-item>a {
  color: var(--color-primary);
}

.mobile-icon {
  width: 16px;
  height: 9px;
  margin-left: 5px;
  position: relative;
  top: 3px;
  cursor: pointer;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.35s ease-in-out;
  will-change: transform;
}




.icon-arrow-sm-down:before,
.icon-arrow-sm-up:before {
  display: none;
}


.header-top-container {
  min-height: 45px;
  background-color: #EBEBEB;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-top-nav {
  margin-left: auto;
}

.header-top-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.header-top-nav ul li {
  margin-right: 35px;
}

.header-top-nav ul li a {
  text-decoration: underline;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  font-family: "Poppins", sans-serif;
}

.header-search {
  position: relative;
}

.header-launguage {
  font-family: "Noto Sans Arabic", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  color: #000000;
  padding: 0px 30px 0 40px;
  position: relative;

}

.header-launguage::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.header-btn {
  padding: 0 25px;
  line-height: 55px;
  color: #fff;
  background-color: #00B4E5;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-top: 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.header-btn::after {
  content: "";
  width: 0px;
  position: absolute;
  background-color: #000000;
  left: 0;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.header-btn:hover::after {
  width: 100%;
}

.header-btn span {
  position: relative;
  z-index: 2;
}

/* ------------------------------------------------------------ */

.sub-menu {
  width: 470px;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  transform: translateY(-30px);
  z-index: 99;
  transition: opacity 0.35s ease-out, visibility.35s ease-out,
    top 0.35s ease-out, transform 0.35s ease-in-out;
  background: linear-gradient(90deg, #002951 0%, #011831 100%);
}

@media (min-width: 1025px) {

  .header li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateY(0px);
  }

  .menu-item-has-children:hover .mobile-icon {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
    background-image: url(../images/arrow-blu.png);
  }

}


.menu-item-has-children .mobile-icon.active {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/* ------------------------------------------------------------ */

.menu-icon {
  width: 25px;
  height: 25px;
  z-index: 9;
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
  border-radius: 0 4px 4px 0;
}

.menu-icon>div {
  position: relative;
  width: 25px;
  height: 25px;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 25px;
  background: #000;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
  top: 10px;
}

.menu-icon span:nth-child(4) {
  top: 20px;
}

.menu-icon.open span:nth-child(1) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span {
  background: #000;
}



@media (min-width: 1025px) {
  .sub-menu {
    position: absolute;
    left: 0;
    top: 99%;
    opacity: 0;
    visibility: hidden;
  }
}


/* .nav-bar {
  position: fixed;
  width: 100%;
  z-index: 8;
  background:url(../images/menu.jpg) no-repeat;
  background-size: cover;
  top: 0;
  height: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
} */

.header .slow {
  height: 100%;
}

.menu-ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;

}

.menu-ul .menu-item-has-children a {
  padding-right: 25px;
}

.menu-ul .menu-item-has-children>a::before {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 28px;
  left: 0;
  background-color: #00B4E5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-ul>li a::before {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 28px;
  left: 0;
  background-color: #00B4E5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-ul>li a:hover::before {
  width: 100%;
}

.menu-ul .menu-item-has-children>a:hover::before {
  width: 100%;
}

.menu-ul a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 100px;
  display: block;
  color: #000;
  font-weight: 400;
}

.sub-menu {
  padding: 15px 30px;
  display: none;
  border: none;
  margin-bottom: 15px;
}

.sub-menu li {
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}

.sub-menu li+li {
  margin-left: 0;
}

.sub-menu li:last-child {
  border-bottom: none;
}

.sub-menu li a {
  width: 100%;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  opacity: 1;
  display: block;
  position: relative;
  text-transform: uppercase;
  padding-left: 25px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.sub-menu li a::before {
  display: none;
}

.sub-menu li a::after {
  content: "";
  width: 12px;
  height: 12px;
  opacity: 1;
  background-image: url(../images/submenu-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.sub-menu li a:hover {
  padding-left: 35px;
  font-weight: bold;
}

.sub-menu li a:hover::after {
  left: 10px;
  bottom: 10px;
}

.mobile-icon {
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 9;
}



.header .flex {
  display: flex;
  align-items: center;
}

.experience-sub .sub-menu {
  width: 300px;
  padding: 15px 20px;
}

.experience-sub .sub-menu li a {
  line-height: 30px;
}