.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 0 0;
  background: #ffffff21;
  backdrop-filter: blur(8px);
}

.header-wrapper .header-container {
  background: #ffffff;
  backdrop-filter: blur(10px);
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  border-radius: 50px;
  padding: 5px 40px;
  box-shadow: 0px 3px 6px #00000030;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-wrapper .logo img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
  cursor: pointer;
}

.header-wrapper .nav-menu {
  display: flex;
  gap: 25px;
}

.header-wrapper .nav-menu a {
  text-decoration: none;
  color: #343434;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.header-wrapper .nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 12%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #00a86b;
  border-radius: 10px;
}

.header-wrapper .nav-menu a.active {
  color: #000000 !important;
}

.header-wrapper .menu-btn {
  font-size: 22px;
  cursor: pointer;
}
.header-wrapper .menu-btn {
  font-size: 22px;
  cursor: pointer;
  color: #000;
}

/*====================== for mobile =======================*/

.custom-offcanvas {
  width: 80% !important;
  max-width: 320px;
  background: linear-gradient(
    176deg,
    rgba(26, 3, 42, 0.7) 0%,
    rgba(0, 18, 59, 0.6) 63%,
    rgba(0, 0, 0, 0.7) 100%
  );

  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.custom-offcanvas .mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.custom-offcanvas .mobile-menu a {
  text-decoration: none;
  font-size: 16px;
  padding-bottom: 3px !important;
  color: #ffffffab;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}
.custom-offcanvas .btn-close {
  filter: invert(1);
}

.custom-offcanvas .mobile-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 8%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #00a86b;
  border-radius: 10px;
}
.custom-offcanvas .mobile-menu a.active {
  color: #fff !important;
}

.custom-offcanvas .offcanvas {
  z-index: 1055 !important;
}

.custom-offcanvas .offcanvas-backdrop {
  z-index: 1050 !important;
}

.custom-offcanvas {
  width: 80% !important;
  max-width: 320px;
  border-radius: 20px 0 0 20px;
}

.custom-offcanvas .offcanvas-body {
  padding: 30px 20px;
}

.header-wrapper {
  z-index: 999;
}

@media (min-width: 0px) and (max-width: 991px) {
  .header-wrapper {
    padding: 0;
  }

  .header-wrapper .header-container {
    /* width: 100%; */
    border-radius: 0;
    padding: 5px 20px;
  }

  .header-wrapper .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
}

@media (min-width: 0px) and (max-width: 576px) {
  .header-wrapper .header-container .logo {
    width: 46%;
  }
  .header-wrapper .header-container {
    padding: 10px 6px 10px 6px;
  }
}
