.navbar {
  width: 100%;
  height: auto;
  padding: 0.9rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: ease-in-out 0.4s;
  z-index: 998;
  background: #fff;
  margin-top: 1rem;
  position: fixed;
  top: 3.8rem;
  left: 0;
  right: 0;
}

.active-menu{
  font-weight: 700;
  /* transition: all .3s; */
}

header {
  width: 100vw;
  height: 5rem;
  padding: 1rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(268.14deg, #feda44 -74.8%, #fbaa6b 89.87%);
  position: fixed;
  top: -2px;
  left: 0;
  z-index: 999;
}

header .logo img {
  width: 100%;
  transform: scale(0.9);
}
.navbar .logo span {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.6px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar .nav-items ul {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.3rem;
  overflow: hidden;
}

ul li {
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}

ul li a {
  text-decoration: none !important;
  font-size: 19px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  /* transition: all 0.2s; */
  line-height: 20px;
  font-family: "Poppins", sans-serif;
}

.right button {
  width: 10rem;
  height: 2.5rem;
  background: transparent;
  border: 2px solid var(--white);
  color: #fff;
  font-weight: 600;
  border-radius: 3rem;
  transition: all 0.2s;
}

.toggle {
  color: #fff;
  display: none;
  cursor: pointer;
}

.navbar .right > button {
  border: 2px solid #fff !important;
  color: #fff !important;
  transition: all 0.3s;
  height: 2.85rem;
  text-transform: capitalize;
}

.navbar .right > button:hover {
  background-color: #fff;
  color: #212121 !important;
  transition: all 0.3s;
}

@media screen and (max-width: 868px) {
  header {
    padding: 0.8rem 0rem;
    padding-right: 10px;
  }
  header .logo img {
    transform: scale(0.8);
  }
  .navbar {
    margin-top: 0;
    top: 0;
  }
  .navbar .logo > img {
    width: 3rem;
    height: 3rem;
  }
  .navbar .logo span {
    font-size: 1.4rem;
  }
  .navbar .right > button {
    display: none;
  }
  .toggle {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.65rem;
  }
  .toggle > i {
    font-family: "Font Awesome 6 Free" !important;
  }

  .navbar {
    padding: 1rem 1rem;
  }

  .right .download {
    display: none;
  }

  .nav-items {
    position: absolute;
    top: -2%;
    right: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    overflow: hidden;
    background: linear-gradient(268.14deg, #feda44 -74.8%, #fbaa6b 89.87%);
    padding: 5.5rem 0rem 2.2rem 0rem;
    z-index: 20;
    transition: 0.4s ease;
  }

  .nav-items ul {
    display: block !important;
    color: #fff;
  }

  .nav-items ul li {
    margin-left: 1.5rem;
    margin-top: 0.96rem;
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.2rem;
  }

  /* .nav-items ul li a {
        color: #fff;
    } */

  .navbar-toggle {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important;
  }
}
