  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

.navbar {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.navbar:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999;
}

.abLogo {
  position: relative;
  z-index: 1000;
}

.abLogo img {
  width: 230px;
}

.dropdown>div {
  cursor: pointer;
}

.dropdown .menu a {
  height: 100%;
}

.single .parent a,
.dropdown .parent a {
  text-decoration: none;
}

@media screen and (min-device-width: 996px) and (max-device-width: 1094px) {
  .dropdown>div {
    padding: 1.5em 8px !important;
  }

  .single .parent a {
    padding: 0 !important;
  }
}

@media (min-width: 996px) {

  .navbar {
    padding: 0px 1.5em;
  }

  .search {
    display: none;
  }

  .dropdown>div {
    position: relative;
    padding: 1.5em 1em;
    transition: 0.3s ease-in-out;
  }

  .single>div {
    padding: 0em 1em;
  }

  .single .parent a {
    padding: 1.5em 0;
    display: inline-block;
  }

  .mega-menu {
    display: flex;
    justify-content: center;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    background-image: url('/images/Header/nav-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    padding: 0 4em;
    transition: 0.4s ease-in-out;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: -1;
  }

  .title-border {
    width: 106px;
    height: 0;
    position: relative;

    border: 1px solid #FFFFFF;
    background-color: #fff;
    transform: rotate(90deg);
  }

  .menu {
    z-index: 998;
    height: auto;
    top: -50vh;
  }

  .dropdown:hover .menu,
  .dropdown:active .menu {
    padding: 4rem;
    height: auto;
    top: 64px;
    z-index: 999;
  }

  .menu-items-wrapper {
    display: flex;
    width: 60%;
  }

  .menu-title {
    width: 20%;
    display: flex;
    justify-content: center;
  }

  .menu-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2em;
    flex-grow: 1;
    align-items: center;
  }

  .parent {
    padding: 21px 0;
    width: 25%;
    position: relative;
    z-index: 1000;
  }

  .search-en {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    width: 13%;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }

  .search-en img {
    width: 20px;
  }

  .en {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .globe-title {
    font-size: 20px;
  }

  .parent:hover {
    border-bottom: 3px var(--AB-gold) solid;
  }

  .parent a {
    text-decoration: none;
  }

  .menu-title {
    text-transform: uppercase;
    color: #e5b611;
    font-size: 1.5em;
  }

  .divider {
    border: 1px solid #C7C7C7;
    width: 40px;
    transform: rotate(90deg);
  }
}

@media (max-width: 996px) {

  .dropdown .menu a {
    height: 100%;
    font-size: 16px;
    font-family: 'Avantt-Regular';
  }

  .search-en {
    display: none;
  }

  .navbar {
    padding: 2em 1.5em;
  }

  .abLogo {
    order: 2;
  }

  .search {
    order: 1;
    position: relative;
    z-index: 1000;
  }

  .menu-toggle {
    order: 3;
    position: relative;
    z-index: 1000;
  }

  .navbar {
    border-bottom: solid 2px gray;
    transition: .3s ease-in-out;
  }

  .menu-container {
    position: absolute;
    background: #fff;
    top: 110px;
    width: 100%;

    transition: 0.3s ease-in-out;
    left: 0;
  }

  .menu-items li {
    font-size: 14px;
    padding: 8px 0 12px 2em;
  }

  .parent {
    padding: 1em;
  }

  .mega-menu li>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  span.parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .menu-title {
    display: none;
  }

  .menu-items-wrapper {
    background-color: #EFEFEF;
    background-image: url('/images/Header/mobile-nav-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow-y: scroll;
  }

  .parent svg {
    margin-right: -5px;
  }

  .menu-items a {
    display: block;
    font-family: 'Avantt-Light';
  }

  .menu {
    display: none;
  }

  .fa-angle-down {
    transform: rotate(-90deg);
    transition: 0.3s;

  }

  .parent-active .fa-angle-down {
    transform: rotate(0);
  }

  .parent:hover,
  .parent:active {
    color: var(--AB-gold);
  }

  /* my menu show js class */
  .menu-show {
    display: block;
  }

  /* icons will rotate */
  .rotate {
    transform: rotate(90deg) !important;
  }

  .menu-container {}

  .mega-menu {
    overflow-y: hidden;
    height: 0;
    transition: 0.3s ease-in-out;
  }

  .mega-menu-show {
    height: 100vh;
    overflow-y: scroll;
  }

  .menu-items-wrapper {
    transition: 0.3s ease-in-out;
  }
}

@media(max-width: 500px) {
  .abLogo img {
    width: 50vw;
    margin: auto;
  }

  .menu-container {
    top: 100%;
  }
}