:root {
  --nv-drawer-color-bg: var(--e-global-color-466858, #466858);
  --nv-drawer-color-text: var(--e-global-color-f0ebe1, #f0ebe1);
  --nv-drawer-color-text-strong: var(--e-global-color-primary, #ffffff);
  --nv-drawer-color-surface: var(--e-global-color-d5bea7, #f6f1e8);
  --nv-drawer-color-surface-text: var(--e-global-color-c3f6119, #13372d);
  --nv-drawer-color-divider: rgba(255, 255, 255, 0.18);
  --nv-drawer-color-outline: rgba(27, 59, 50, 0.18);
}

body.nv-drawer-open {
  overflow: hidden;
}

body.nv-drawer-ready #main-header-container .elementor-nav-menu,
body.nv-drawer-ready #main-header-container .menu,
body.nv-drawer-ready #main-header-container .elementor-menu-toggle,
body.nv-drawer-ready #main-header-container .elementor-nav-menu--dropdown {
  display: none !important;
}

body.nv-drawer-ready #main-header-container .nv-drawer-toggle-container {
  display: flex;
  justify-content: flex-start;
}

.nv-drawer-toggle-container {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  width: auto;
}

.nv-drawer-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  background: transparent!important;
  border: unset!important;
  border-radius: unset!important;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  padding: 0;
}

body:not(.home) .nv-drawer-toggle {
  border-color: rgba(27, 59, 50, 0.45);
  background: rgba(27, 59, 50, 0.12);
}

.nv-drawer-toggle span {
  position: absolute;
  display: block;
  width: 1.55rem;
  height: 2px;
  border-radius: 999px;
  background-color: var(--nv-drawer-color-text);
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
}

body:not(.home) .nv-drawer-toggle span {
  background-color: var(--nv-drawer-color-bg);
}

.nv-drawer-toggle span:nth-child(1) {
  top: 1.05rem;
}

.nv-drawer-toggle span:nth-child(2) {
  top: 1.55rem;
}

.nv-drawer-toggle span:nth-child(3) {
  top: 2.05rem;
}

body.nv-drawer-open .nv-drawer-toggle span:nth-child(1) {
  top: 1.55rem;
  transform: rotate(45deg);
}

body.nv-drawer-open .nv-drawer-toggle span:nth-child(2) {
  opacity: 0;
}

body.nv-drawer-open .nv-drawer-toggle span:nth-child(3) {
  top: 1.55rem;
  transform: rotate(-45deg);
}

body.nv-drawer-open .nv-drawer-toggle {
  transform: scale(0.92);
}

.nv-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.nv-drawer__panel {
  position: relative;
  /*margin: 4.5rem 0 4.5rem 4rem;*/
  /*width: min(420px, 88vw);*/
  max-width: 900px;
  background: transparent;
  /*border-radius: 24px;*/
  overflow: visible;
  transform: translateX(-110%);
  transition: transform 0.55s cubic-bezier(0.24, 0.82, 0.25, 1), width 0.45s ease;
  display: flex;
}

.nv-drawer__panel--expanded {
  width: min(880px, 94vw);
}

.nv-drawer__panel-inner {
  display: flex;
  align-items: flex-start;
  /*gap: 2.5rem;*/
  background: rgba(5, 20, 15, 0.55);
  color: var(--nv-drawer-color-text);
  overflow: visible;
  flex: 1;
}

.nv-drawer__panel-inner--with-submenu {
  /*border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;*/
}

.nv-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 2.75rem 0;
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  /*gap: 0.2rem;*/
  background: var(--nv-drawer-color-bg);
  /*border-radius: 22px;*/
  box-shadow: 0 24px 50px rgba(12, 37, 30, 0.28);
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: none;
  height: 100%;
  padding-top: 10rem;
  position: relative;
}

.nv-drawer__menu-title{
  position: absolute;
  top: 5rem;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nv-drawer-color-text-strong);
  z-index: 3;
  margin-left: 1.5rem;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #f0ebe14d;
  padding-bottom: 0.5rem;
}

.nv-drawer__menu > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 2.5rem 0.75rem 3rem;
  margin: 0;
  color: inherit;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.nv-drawer__menu > li::before {
  content: "";
  position: absolute;
  left: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  background-image: url('https://nirvana-healthcare.s3.us-east-1.amazonaws.com/pictures/menuLeafIcon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nv-drawer__menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  border-radius: 999px;
  background: var(--nv-drawer-color-text);
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.nv-drawer__menu > li.is_active::before,
.nv-drawer__menu > li:hover::before {
  
}

.nv-drawer__menu > li:hover,
.nv-drawer__menu > li:focus-within {
  background: var(--nv-drawer-color-text);
  color: var(--nv-drawer-color-bg);
}

.nv-drawer__menu > li:hover::before,
.nv-drawer__menu > li:focus-within::before,
.nv-drawer__menu > li.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
  background-image: url('https://nirvana-healthcare.s3.us-east-1.amazonaws.com/pictures/greenMenuLeafIcon.png');
}

.nv-drawer__menu > li:hover::after,
.nv-drawer__menu > li:focus-within::after,
.nv-drawer__menu > li.is-active::after {
  /*height: 60%;
  opacity: 1;*/
}

.nv-drawer__menu > li.is-active {
  background: var(--nv-drawer-color-text);
  color: var(--nv-drawer-color-bg);
}
.nv-drawer__menu > li.current-menu-item > a,
.nv-drawer__menu > li.current-menu-ancestor > a,
.nv-drawer__menu > li.current-menu-parent > a,
.nv-drawer__menu > li.is-active > a {
  font-weight: 600;
}

.nv-drawer__menu > li > a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nv-drawer__menu > li > a span,
.nv-drawer__menu > li > a em {
  font-style: normal;
}

.nv-drawer__menu > li > i,
.nv-drawer__menu > li svg {
  color: inherit;
}

.nv-drawer__submenu-panel {
  flex: 1 1 auto;
  min-width: 320px;
  background: transparent;
  display: none;
  position: relative;
  align-self: flex-start;
  margin-top: 0;
}

.nv-drawer__submenu-panel.is-visible {
  display: block;
}

.nv-drawer__submenu-card {
  background: var(--nv-drawer-color-surface);
  color: var(--nv-drawer-color-surface-text);
  box-shadow: 0 28px 60px rgba(12, 37, 30, 0.24);
  min-width: 320px;
}

.nv-drawer__submenu-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(27, 59, 50, 0.55);
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.nv-drawer__submenu-placeholder p {
  margin: 0;
}

.nv-drawer__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background-color: var(--nv-drawer-color-text);
}

.nv-drawer__submenu-item {
  position: relative;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  letter-spacing: 0.045em;
}

.nv-drawer__submenu-item > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  width: 100%;
  padding: 0.35rem 0;
  text-decoration: none;
  color: var(--nv-drawer-color-bg);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nv-drawer__submenu-item.current-menu-item > a,
.nv-drawer__submenu-item > a:hover,
.nv-drawer__submenu-item > a:focus-visible {
  background-color: var(--nv-drawer-color-bg)!important;
  color: var(--nv-drawer-color-text)!important;
  font-weight: bold;
}

.nv-drawer__submenu-item.is-expanded > .nv-drawer__submenu-nested {
  max-height: 600px;
}

.nv-drawer__submenu-nested {
  padding-left: 1.25rem;
  border-left: 1px solid var(--nv-drawer-color-outline);
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nv-drawer__submenu-nested > li {
  font-weight: 300;
  color: var(--nv-drawer-color-bg);
  /**margin-bottom: 0.35rem;*/
}

.nv-drawer__submenu-nested > li:last-child {
  margin-bottom: 0;
}

.nv-drawer__submenu-nested a {
  text-decoration: none;
  color: inherit;
  font-weight: 300;
  letter-spacing: 0.035em;
}

.nv-drawer__submenu-nested a:hover,
.nv-drawer__submenu-nested a:focus-visible {
  background-color: var(--nv-drawer-color-bg);
  color: var(--nv-drawer-color-text);
  font-weight: bold;
}

.nv-drawer__backdrop {
  flex: 1;
  background: rgba(5, 20, 15, 0.55);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.nv-drawer__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(10, 28, 22, 0.55);
  /*display: inline-flex;*/
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  padding: 0;
  color: var(--nv-drawer-color-text);
}

.nv-drawer__close span {
  position: absolute;
  width: 1.25rem;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
}

.nv-drawer__close span:nth-child(1) {
  transform: rotate(45deg);
}

.nv-drawer__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.nv-drawer__close:hover,
.nv-drawer__close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.04);
  color: var(--nv-drawer-color-bg);
}

body.nv-drawer-open .nv-drawer {
  pointer-events: auto;
}

body.nv-drawer-open .nv-drawer__backdrop {
  opacity: 1;
}

body.nv-drawer-open .nv-drawer__panel {
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .nv-drawer__panel {
    /*margin: 3.5rem 0 3.5rem 2.5rem;*/
    width: min(420px, 92vw);
  }

  .nv-drawer__panel--expanded {
    width: min(760px, 94vw);
  }

  .nv-drawer__menu {
    flex-basis: 250px;
  }

  
 .nv-drawer__menu-title{
    margin-left: 0.5rem
  }
  
}

@media (max-width: 820px) {
  .nv-drawer__panel {
    /*margin: 3rem auto;*/
    width: min(520px, 92vw);
  }

   .nv-drawer__menu-title{
    margin-left: 1.5rem
  }

  .nv-drawer__panel--expanded {
    width: min(520px, 92vw);
  }

  .nv-drawer__panel-inner {
    flex-direction: column;
    gap: 1.75rem;
  }

  .nv-drawer__menu {
    flex: 0 0 auto;
    width: 60%;
    padding: 2rem 0 1.5rem;
    padding-top: 10rem;
  }

  .nv-drawer__submenu-panel {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }

  .nv-drawer__submenu-card {
    width: 100%;
    padding: 2rem 1.75rem 2.5rem;
    box-shadow: inset 0 1px 0 0 var(--nv-drawer-color-outline);
  }

  .nv-drawer__submenu-list {
    gap: 1rem 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 640px) {
  .nv-drawer__panel {
    /*margin: 2.5rem auto;*/
    width: min(480px, 94vw);
  }

  .nv-drawer__panel--expanded {
    width: min(480px, 94vw);
  }

  .nv-drawer__close {
    top: 1.15rem;
    right: 1.15rem;
  }
}

.nv-drawer [data-scroll-lock-fill-gap] {
  display: none;
}



@media (max-width: 485px) {
  .nv-drawer__menu-title{
    font-size: 1rem;
    /*margin-left: 1.5rem;*/
  }
}