.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 0;
  background: #36348e;
  transition: all 0.5s linear;
}

.overflow .navbar .menu-items {
  transform: translateX(0vh);
}

.sticky img {
  width: 60px;
  transition: all 0.5s linear;
}

.navbar {
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: all 0.5s linear;
}

.navbar .menu-items::-webkit-scrollbar {
  width: 1px;
  background-color: #fff;
}

/* nav menu button */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #ffffff;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #112f48;
}

/* dropdown menu */
.navbar .dropdown {
  position: relative;
}

.expand-btn:after {
  content: " \25BE";
  opacity: 0.4;
  margin-left: 5px;
}

.navbar .dropdown-menu,
.menu-right {
  position: absolute;
  background: #36348e;
  width: 220px;
  line-height: 30px;
  border-radius: 0;
  top: 65px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.034) 0px 4px 12px;
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

.navbar .dropdown-menu,
.menu-left {
  left: unset;
  right: 0;
}

.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  /* text-transform: uppercase; */
  font-weight: 300;
  color: #fff;
  transition: ease-in-out 0.4s;
}

.navbar .menu-item:hover {
  color: #fdc642;
}

.navbar .container {
  justify-content: center;
  height: 90px;
  flex-wrap: initial;
}

.menu-item.first-item {
  padding: 25px 35px;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
  padding: 0;
  margin: 0;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #132f48;
}

.hide_menu {
  display: none !important;
}

/* Responsive style */
@media screen and (max-width: 991px) {
  .navbar .dropdown-menu,
  .menu-right {
    background: #36348e;
  }

  .navbar .dropdown {
    margin: 0 !important;
  }

  .hide_menu {
    display: flex !important;
  }

  .nav_contact {
    display: none !important;
  }

  .logo img {
    width: 130px;
  }

  .navbar {
    height: unset;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
    display: flex;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100vh;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 0px;
    left: 0;
    background: #36348e;
    display: block;
    transform: translateX(-100%);
    transition: 0.3s ease-out;
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    margin-top: 20px;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 15px;
    border-bottom: 1px solid #ffffff29;
  }

  .navbar .container {
    height: unset;
    justify-content: space-between;
    padding: 10px 20px;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand-btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }

  .col .mega-links li {
    margin: 0;
  }
}

.nav_contact:hover {
  color: #fff;
}

.nav_contact {
  background: #1da678;
  text-decoration: none;
  color: #fff !important;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 5px;
  margin-left: 40px;
}

.nav_contact img {
  margin-right: 10px;
  width: 18px;
  filter: brightness(0) invert(1);
  margin-bottom: 5px;
}

.logo {
  display: none !important;
}

.logo img {
  width: 40px;
}
