.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
  background-color: #ffffff;
}

.nav_logo {
  width: 50%;
}

.nav_logo img {
  height: 95px;
  justify-content: flex-start;
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* column-gap: 3rem; */
  cursor: pointer;
}

.nav_menu.nav_active {
  z-index: 99999;
}

.nav_menu li {
  list-style: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: #505050;
  padding: 8px 4.8px;
}

.nav_menu li:hover {
  color: #008eff;
}

.wa_icon {
  color: #25d366;
  font-size: 3.5rem;
  font-weight: bolder;
  margin-top: -10px;
}

.wa_icon:hover {
  transform: scale(1.2);
  color: #008eff;
}

.nav_toggler div {
  width: 2.5rem;
  height: 0.2rem;
  margin: 0.4rem;
  background: #353738;
  transition: 0.4s ease-in;
}

.nav_toggler {
  cursor: pointer;
  display: none;
}
.nav_toggler.toggle {
  cursor: pointer;
  display: none;
}

.nav_center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reach_us-btn button {
  border: none;
  background-color: #008eff;
  padding: 5px 20px;
  font-size: 1.5rem;
  border-radius: 20px;
  color: #ffffff;
}

.reach_us-btn button:hover {
  color: #ffffff;
  transform: scale(1.03);
  transition: 0.5s ease-in;
}

/* Media Query */

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .nav_toggler {
    display: block;
  }

  .nav_toggler.toggle {
    display: block;
  }
  .nav_menu {
    position: absolute;
    top: 15rem;
    right: 0;
    width: 100%;
    height: 70vh;
    gap: 1rem;
    background-color: #e5e5da;
    flex-direction: column;
    transform: translate(100%);
    transition: 0.5s ease-in;
    cursor: pointer;
  }

  .nav_menu li {
    width: 100%;
    text-align: center;
  }

  .nav_menu li:hover {
    background-color: #f2f2e9;
    width: 100%;
    text-align: center;
  }

  .nav_logo img {
    width: 60%;
    height: auto;
  }
}

@media only screen and (min-width: 360px) and (max-width: 480px) {
  .nav {
    display: flex;
    flex-wrap: nowrap;
    padding: 10px 30px;
  }
  .nav_toggler {
    display: block;
  }

  .nav_toggler.toggle {
    display: block;
  }

  .nav_menu {
    position: absolute;
    top: 6rem;
    right: 0;
    width: 100%;
    height: 20vh;
    gap: 1rem;
    background-color: #ffffff;
    flex-direction: column;
    transform: translate(100%);
    transition: 0.5s ease-in;
    cursor: pointer;
  }

  .nav_menu li {
    width: 100%;
    text-align: center;
  }

  .nav_menu li:hover {
    background-color: #f2f2e9;
    width: 100%;
    text-align: center;
  }

  .nav_logo img {
    width: 75%;
    height: 50px;
  }

  .reach_us-btn button {
    padding: 5px 10px;
    font-size: 1.2rem;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 320px) and (max-width: 350px) {
  .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px;
    justify-content: space-between;
    width: 100%;
  }

  .nav_logo img {
    width: 150px;
    height: auto;
  }

  .reach_us-btn button {
    padding: 5px 15px;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 30px;
  }
}

/* Nav Active Class */
.nav_active {
  transform: translate(0);
}

/* Toggler Icon Animation */
.toggle .line1 {
  transform: rotate(-45deg) translate(-4px, 5px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-4px, -5px);
}

/* @media (max-width: 375px) {
  .nav {
    justify-content: center;
  }

  .nav_logo {
    width: 100%;
    text-align: center;
  }

  .wa_icon {
    font-size: 2.5rem;
  }
} */
