.nav {
  width: 100%;
  background-image: linear-gradient(
    314deg,
    rgba(235, 255, 214, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
  z-index: 10;
  position: relative;
}

.mobile-nav {
  width: 100%;
  display: none;
}

.nav-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

.nav-container .right ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  gap: 4rem;
}

.nav-container .right li {
  list-style-type: none;
  transition: all 0.5s ease;
}

.nav-container .right li a {
  color: #000;
  font-size: 1.2rem;
  font-weight: 900;
}

.nav-container .right li:hover a {
  color: #7fa262;
}

.nav-container .right li:hover i {
  color: #7fa262;
}

.nav-container .left {
  width: 10%;
  height: fit-content;
}

.nav-container .left img {
  width: 100%;
  display: block;
}
/* -------------------------------------------- */
/* Mobile Nav Inner */
.mobile-nav-content-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
}

.mobile-nav-content-inner {
  width: 70%;
  background-color: #fff;
  height: 100%;
  position: absolute;
  top: 0;
  right: -100%;
}

.mobile-nav-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.mobile-nav-content-wrapper .top {
  width: calc(100% - 2rem);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mobile-nav-content-wrapper .top i {
  font-size: 1.3rem;
  color: salmon;
}

.mobile-nav-content-wrapper .top i:hover {
  color: red;
}

.mobile-nav-content-wrapper .top span {
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-nav-content-wrapper ul {
  width: 90%;
  margin: 0 auto;
}

.mobile-nav-content-wrapper .line {
  margin: 1rem auto;
  background-color: #84a26b;
  width: 100%;
  height: 1px;
}

.mobile-nav-content-wrapper li i {
  color: #000;
}

.mobile-nav-content-wrapper li a {
  color: #000;
}

.mobile-nav-content-wrapper .logo-wrapper {
  width: 100%;
  text-align: center;
}

.mobile-nav-content-wrapper .logo-wrapper img {
  width: 50%;
}

@keyframes showContainer {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hideContainer {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes showInner {
  0% {
    right: -100%;
  }

  100% {
    right: 0;
  }
}

@keyframes hideInner {
  0% {
    right: 0;
  }

  100% {
    right: -100%;
  }
}

@media screen and (max-width: 1200px) {
  .nav .nav-container .left {
    width: 15%;
  }
}

@media screen and (max-width: 756px) {
  /* NAV */
  .nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-nav .nav-container .left {
    width: 25%;
  }

  .mobile-nav .nav-container i {
    cursor: pointer;
    color: #000;
    font-size: 1.2rem;
  }
  /* ---------------- */
}
