#mobile-burger {
  color: inherit;
  cursor: pointer;
  display: inline-block;
  height: 3rem;
  outline: transparent;
  position: relative;
  width: 4rem;
  z-index: 666;
  transition: all 350ms ease-out;
}
#mobile-burger .lines {
  border-radius: 0.4rem;
  height: 100%;
  color: inherit;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 350ms ease-out;
  width: 100%;
}
#mobile-burger .lines [class*=line] {
  background-color: currentColor;
  border-radius: 0.3rem;
  color: inherit;
  display: inline-block;
  height: 0.4rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform-origin: center;
  transition: all 350ms ease-out;
  transform: translate(-50%, 0);
  width: 100%;
  z-index: 100;
}
#mobile-burger .lines .line2 {
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
#mobile-burger .lines .line3 {
  bottom: 0;
  top: auto;
}
#mobile-burger.active .lines {
  transform: rotate(90deg);
}
#mobile-burger.active .lines .line1, #mobile-burger.active .lines .line2, #mobile-burger.active .lines .line3 {
  background-color: rgb(255, 255, 255);
  left: 50%;
  top: 50%;
}
#mobile-burger.active .lines .line1 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#mobile-burger.active .lines .line2 {
  transform: scale(0);
  opacity: 0;
}
#mobile-burger.active .lines .line3 {
  transform: translate(-50%, -50%) rotate(45deg);
}
#mobile-burger:hover, #mobile-burger:focus {
  opacity: 0.9;
}
@media only screen and (min-width: 1024px) {
  #mobile-burger:not(.permaburger) {
    display: none;
  }
}
#mobile-burger.hide {
  display: none;
}

#site-mob-nav {
  align-items: start;
  align-content: start;
  background-color: rgb(0, 5, 39);
  color: rgb(255, 255, 255);
  display: grid;
  flex-wrap: nowrap;
  font-family: "Figtree", sans-serif;
  font-size: clamp(2rem, 1.2vw, 2.8rem);
  gap: var(--grid-gutter);
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  justify-content: center;
  justify-items: center;
  height: var(--app-height);
  line-height: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 9.6rem 1.6rem 1.6rem 1.6rem;
  position: fixed;
  right: -160vw;
  top: 0;
  transition: all 350ms ease-out;
  width: 100vw;
}
@media only screen and (min-width: 768px) {
  #site-mob-nav {
    padding: 19.2rem 3.2rem 3.2rem 3.2rem;
  }
}
#site-mob-nav::before {
  aspect-ratio: 1/1.28;
  background-image: url("/images/Layout/nav-bg.svg");
  background-size: 100% 100%;
  bottom: 3%;
  content: "";
  filter: blur(2rem);
  height: auto;
  opacity: 0;
  position: absolute;
  right: 7%;
  transition: all 1200ms ease-out 350ms;
  width: 24.17%;
}
#site-mob-nav #mobile-con {
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: flex-start;
  width: 87%;
}
@media only screen and (min-width: 1440px) {
  #site-mob-nav #mobile-con {
    padding-right: 16.667%;
  }
}
#site-mob-nav #nav-foot {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  width: 87%;
}
#site-mob-nav #nav-foot img {
  max-height: 100%;
  height: 12rem;
  width: auto;
}
@media only screen and (min-width: 768px) {
  #site-mob-nav #nav-foot img {
    height: 17.5rem;
  }
}
#site-mob-nav .mob-nav {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: inherit;
  height: 100%;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #site-mob-nav .mob-nav {
    padding: 0 var(--grid-spacing) 0 0;
    width: 20%;
  }
}
#site-mob-nav .mob-nav li {
  border-top: 0.1rem dotted rgba(255, 255, 255, 0.3);
  display: inline-block;
  width: 100%;
}
#site-mob-nav .mob-nav li:last-child {
  border-bottom: 0.1rem dotted rgba(255, 255, 255, 0.3);
}
#site-mob-nav .mob-nav li.menu-top {
  align-items: stretch;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: flex-start;
}
#site-mob-nav .mob-nav li.menu-top .mob-close-menu {
  flex: 0 0 auto;
  padding: 0;
  position: relative;
  width: 4.6rem;
}
@media only screen and (min-width: 768px) {
  #site-mob-nav .mob-nav li.menu-top .mob-close-menu {
    display: none;
  }
}
#site-mob-nav .mob-nav li.menu-top .mob-close-menu::before, #site-mob-nav .mob-nav li.menu-top .mob-close-menu::after {
  background-color: currentColor;
  content: "";
  height: 0.1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center;
  width: 50%;
}
#site-mob-nav .mob-nav li.menu-top .mob-close-menu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#site-mob-nav .mob-nav li.menu-top .mob-close-menu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#site-mob-nav .mob-nav li.menu-top .menu-top-link {
  border-left: 0;
  color: rgb(255, 255, 255);
  flex: 1 1 auto;
  width: auto;
}
#site-mob-nav .mob-nav a {
  color: inherit;
  display: inline-block;
  padding: 0.3em 0.6em;
  text-decoration: none;
  transition: all 350ms ease-out;
  width: 100%;
}
#site-mob-nav .mob-nav a:hover, #site-mob-nav .mob-nav a:focus, #site-mob-nav .mob-nav a.active {
  background-color: rgb(5, 56, 122);
}
#site-mob-nav .mob-nav a.mob-cons-menu {
  display: none;
  visibility: hidden;
}
#site-mob-nav .mob-nav a.mob-open-menu {
  padding-right: 4rem;
  position: relative;
  z-index: 1;
}
#site-mob-nav .mob-nav a.mob-open-menu::after {
  aspect-ratio: 1/1;
  border: 0.3rem solid currentColor;
  border-bottom: 0;
  border-left: 0;
  content: "";
  height: 0.5em;
  position: absolute;
  right: 1.5rem;
  top: 0.88em;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: center;
}
@media only screen and (min-width: 768px) {
  #site-mob-nav .mob-nav a.mob-open-menu::after {
    display: none;
  }
}
#site-mob-nav .mob-nav ul {
  background-color: rgb(0, 5, 39);
  box-shadow: 0 0 2.4rem rgba(0, 0, 0, 0.2);
  height: 100%;
  margin: 0 0 2.4rem 0;
  overflow: visible;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 350ms ease-out;
  transform: translateX(100vw);
  visibility: hidden;
  width: 100%;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  #site-mob-nav .mob-nav ul {
    background-color: transparent;
    border-left: 0.2rem dotted rgba(255, 255, 255, 0.7);
    box-shadow: none;
    left: 100%;
    padding: 0 var(--grid-spacing);
    width: 200%;
  }
}
#site-mob-nav .mob-nav ul li {
  font-weight: 400;
}
#site-mob-nav .mob-nav ul li:first-child {
  font-weight: 700;
}
#site-mob-nav .mob-nav ul ul {
  width: 100%;
}
#site-mob-nav .mob-nav ul.open {
  transform: translateX(0);
  visibility: visible;
}
@media only screen and (min-width: 1024px) {
  #site-mob-nav:not(.permaburger) {
    display: none;
    visibility: hidden;
  }
}
body.hsquish #site-mob-nav {
  padding-top: 9.6rem;
}
#site-mob-nav.expanded {
  right: 0;
}
#site-mob-nav.expanded::before {
  filter: blur(0rem);
  opacity: 1;
}
#site-mob-nav.hide {
  display: none;
}/*# sourceMappingURL=tvw-acc-menu.css.map */