#desNav {
  display: none;
}

#mobileNav {
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  padding-bottom: 3px;
  position: fixed;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: 0.2s;
}
#mobileNav.sticky {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(100, 100, 100, 0.15);
  transition: 0.2s;
}
#mobileNav.sticky .menu .lines span {
  background: #1F1F1F;
}
#mobileNav.sticky .logo img.black {
  display: block;
}
#mobileNav.sticky .logo img.white {
  display: none;
}
#mobileNav.menu {
  transition: 0.2s;
  background: white;
  border-bottom: 1px solid rgba(100, 100, 100, 0.15);
}
#mobileNav .logo {
  transition: 0.8s;
  cursor: pointer;
  width: auto;
  height: auto;
  z-index: 1000;
}
#mobileNav .logo img {
  width: 165px;
  height: auto;
  transition: 0.3s;
}
#mobileNav .logo img.black {
  display: none;
}
#mobileNav .logo img.white {
  display: block;
}
#mobileNav .menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
#mobileNav .menu p {
  color: #1F1F1F;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 500;
}
#mobileNav .menu .lines {
  text-align: right;
}
#mobileNav .menu .lines span {
  height: 2px;
  width: 22px;
  background: white;
  border-radius: 6px;
  display: block;
  transition: 0.2s;
  margin-block: 4px;
  text-align: right;
  transform-origin: 25%;
}
#mobileNav .menu .lines.click .upper-span {
  width: 10px;
}
#mobileNav .menu .lines.click .center-span {
  background: transparent;
  transition: 0s;
}
#mobileNav .menu .lines.click .lower-span {
  width: 10px;
}
#mobileNav .menu .center-span {
  width: 14px;
  margin-inline: auto;
}
#mobileNav .sidebar {
  background: white;
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  height: 0vh;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  display: block;
  padding-inline: 20px;
  transition: 0.2s;
  overflow-y: scroll !important;
  padding-bottom: 100px;
}
#mobileNav .sidebar .sidebar-content {
  max-height: 695px;
  min-height: 695px;
  width: 100%;
  overflow-y: scroll;
}
#mobileNav .sidebar a {
  padding: 17px 0;
  color: #1F1F1F;
  font-size: 17px;
  font-weight: 500;
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
}
#mobileNav .sidebar a.no-hover:hover {
  background: transparent;
}
#mobileNav .sidebar a i {
  float: right;
  padding-right: 3px;
  color: #183b56;
  font-size: 17px;
  transform: translateY(1px);
}
#mobileNav .sidebar .cta {
  margin-top: 25px;
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #e1fae9;
  padding: 20px;
  width: 100%;
  height: auto;
  padding: 30px 20px;
  border-radius: 6px;
}
#mobileNav .sidebar .cta h2 {
  font-size: 18px;
  font-weight: 500;
  color: #1F1F1F;
  margin-bottom: 12px;
}
#mobileNav .sidebar .cta p {
  font-size: 16px;
  color: #1F1F1F;
}
#mobileNav .sidebar .cta form {
  position: relative;
  margin-top: 18px;
}
#mobileNav .sidebar .cta form input {
  width: 100%;
  height: 54px;
  background: white;
  border: 1px solid lightgray;
  outline: none;
  padding: 14px;
  color: #1F1F1F;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
}
#mobileNav .sidebar .cta form input::-moz-placeholder {
  text-transform: none;
}
#mobileNav .sidebar .cta form input::placeholder {
  text-transform: none;
}
#mobileNav .sidebar .cta form input:active, #mobileNav .sidebar .cta form input:focus {
  border: 2px solid rgba(0, 0, 255, 0.521);
}
#mobileNav .sidebar .cta form button {
  width: 100%;
  height: 54px;
  background: #13c265;
  outline: none;
  padding: 14px;
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: 15px;
}
#mobileNav .sidebar.active {
  opacity: 1;
  pointer-events: visible;
  transition: 0.4s;
  height: 100vh;
  overflow-y: scroll !important;
}

@media only screen and (min-device-width: 1140px) {
  #mobileNav {
    display: none;
  }
  #desNav {
    display: block;
    width: 100%;
    height: 75px;
    position: fixed;
    top: 0;
    background: white;
    z-index: 1000000;
    transition: 0.2s;
  }
  #desNav .desnav-content {
    padding-inline: 50px;
    width: 100%;
    height: 75px;
    max-width: 1400px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #desNav .logo img {
    cursor: pointer;
    width: 230px;
    height: auto;
    transition: 0.2s;
  }
  #desNav .menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #desNav .menu a {
    color: #1F1F1F;
    font-size: 15px;
    font-weight: 400;
    margin-inline: 2px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 0 solid transparent;
    border-radius: 4px;
  }
  #desNav .menu a.cta {
    font-size: 15px;
    background: #13c265;
    border-radius: 6px;
    color: white;
    padding: 8px 22px;
    height: -moz-max-content;
    height: max-content;
  }
  #desNav .menu a:hover {
    background: rgba(211, 211, 211, 0.35);
  }
}/*# sourceMappingURL=nav.css.map */