

/*** COMMON STYLE FOR BOTH ACCORDION AND POPUP SUBMENU MODES ***/
#submenu {
  margin: 0;
  background-color: #72a6c5;
}
a {
  text-decoration: none;
}
.label {
    color: #3c3f42;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .7px;
    text-decoration: none;
    transition: .3s;
}
.label:hover,
.router-link-exact-active  .label {
    color: #72a6c5;
}
.submenu-label {
  color: #fff;
  font-size: .9rem;
  letter-spacing: normal;
  text-transform: uppercase;
}
.router-link-exact-active > .submenu-label,
.submenu-label:hover {
  color: #666666;
}
.item-with-submenu-wrapper {
  position: relative;
}
.item-with-submenu-wrapper #label {
  padding-top: 25px;
  padding-bottom: 25px;
}


/*** SUBMENU POPUP MODE ***/
.popup .label {
  padding-top: 20px;
  padding-bottom: 20px;
}
.popup #accordionToggle {
  display: none
}
.popup #submenu {
    
  /* list */
  column-count: 2;
  list-style: none;

  /** content box width used to correct overflow is width + padding * 2 = 440px */
  width: 420px;

  /* box */ 
  margin: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: 0 2px 12px rgba(136,136,136,.26);

  /* positioning */
  position: absolute;
  left: 0;

  /** trasition def & initial state */
  visibility: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition-delay: .1s;
  transition-duration: .2s;
  transition-timing-function: linear;
  transition-property: transform, opacity, visibility;

  cursor: default;
}
.popup #submenu li {
  padding-bottom: .5rem;
  padding-top: .5rem;
}

/** transition target */
.popup.item-with-submenu-wrapper:hover > #submenu {
  visibility: visible;
  transform: translateY(20px);
  opacity: 1;
}
.popup .navigating-away {
  /* visibility: hidden !important; */
  opacity: 0 !important;
}
.popup.closed.item-with-submenu-wrapper > #submenu {
  display: none;
} 


/*** SUBMENU ACCORDION MODE ***/
.accordion #submenu {
  /* height: 0px; */
  max-height: 0px;
  overflow: hidden;
  transition-property: max-height;
  transition-duration: .15s;
  transition-timing-function: linear;
}
.accordion #submenu a {
  width: 100%;
}
.accordion #submenu.expanded {
  height: auto;
  overflow: auto;
  max-height: 900px;
}
.accordion #accordion-toggle-wrapper {
  display: flex;
  justify-content: space-between;
}
.chevron {
  opacity: .5;
  height: 25px;
  margin-right: 29px;
}
.accordion li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}


#main-menu[data-v-5494dd6e] {
  display: flex;
  align-self: center;
}
#main-menu[data-v-5494dd6e] > :not(:last-child) {
  margin-right: 2rem;
}


#drawer[data-v-e5def4f8] {
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    width: 0;
    height: 100vh;
    z-index: 1000000003;
    overflow: auto;
    transition-property: width;
    transition-duration: 500ms;
}
#drawer.active[data-v-e5def4f8] {
    width: 100vw;
}
#menu-items[data-v-e5def4f8] {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
}
.item-with-submenu[data-v-e5def4f8] {
    width: 100%;
}
.row[data-v-e5def4f8] {
    min-height: 1.5rem;
    width: 100%;
    padding-bottom: 1rem;
}

  /* force onto MenuItem child CSS scope */
[data-v-e5def4f8] .label {
    margin-left: 1rem;
}

  
#toggler {    
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000000004; /* above header */
}
.menu-toggle {
    padding: 10px;
    cursor: pointer;
    transition-property: opacity;
    transition-duration: .15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background: 0 0;
    border: 0;
    margin: 0;
    overflow: visible
}
.hamburger {
    width: 22px;
    height: 16px;
    display: block;
    position: relative
}



/** HAMBURGER GRAPHIC */
.hamburger-line {
    display: block;
    top: 50%;
    margin-top: -1px
}
.hamburger-line::before,    /* top */
.hamburger-line,            /* middle */
.hamburger-line::after      /* bottom */
{
    width: 22px;
    height: 2px;
    background-color: #000;
    border-radius: 0;
    position: absolute;
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: ease
}
.hamburger-line::after,
.hamburger-line::before {
    content: "";
    display: block
}
.hamburger-line::before {
    top: -7px
}
.hamburger-line::after {
    bottom: -7px
}

/** ANIMATION */
.menu-toggle .hamburger-line {
    transition-duration: .1s;
    transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}
.menu-toggle .hamburger-line::before {
    transition: top .1s .14s ease, opacity .1s ease
}
.menu-toggle .hamburger-line::after {
    transition: bottom .1s .14s ease, transform .1s cubic-bezier(.55, .055, .675, .19)
}


/**
 * Upon applying '.opened' class, fade out the top line and rotate the remaining
 * into an "X"
 */
.menu-toggle.opened .hamburger-line {
    transform: rotate(45deg);
    transition-delay: .14s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}
.menu-toggle.opened .hamburger-line::before {
    top: 0;
    opacity: 0;
    transition: top .1s ease, opacity .1s .14s ease
}
.menu-toggle.opened .hamburger-line::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom .1s ease, transform .1s .14s cubic-bezier(.215, .61, .355, 1)
}


footer[data-v-d840cc26] {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  text-align: center;
  padding-bottom: 5rem;
  background-color: white;
}
footer p[data-v-d840cc26] {
  text-align: center;
}
a[data-v-d840cc26], .city[data-v-d840cc26] {
  color: #72A6C5;
}
#footer-logo[data-v-d840cc26] {
  width: 32vw;
  max-width: 200px;
  margin-bottom: 1.5rem;
  margin-top: 8vw;
}
.city[data-v-d840cc26] {
  font-weight: 500;
}
.contact-info p[data-v-d840cc26] {
  font-size: 0.875rem;
  margin-bottom: 1em;
}
.contact-info[data-v-d840cc26] {
  margin-bottom: 2rem;
}
.fine-print p[data-v-d840cc26] {
  font-size: .656rem;
  padding: 0;
  margin: 0;
}
@media screen and (max-width:768px) {
#footer-logo[data-v-d840cc26] {
    width: 32vw;
    max-width: 200px;
    margin-bottom: 1.5rem;
    margin-top: 7vw;
}
.fine-print p[data-v-d840cc26] {
    margin-left: 1rem;
    margin-right: 1rem;
}
.fine-print[data-v-d840cc26],
  .contact-info[data-v-d840cc26] {
    scale: .9;
}
}


#primary-components-wrapper[data-v-0e8e0c98] {
  display: flex;
  flex-direction: column;
}
header[data-v-0e8e0c98] {
  z-index: 1000000002; /* above carousel and caption layers */

  /** outer dimensions & placement */
  position: sticky;
  top: 0;
  height: var(--header-height);

  /** internal layout */
  padding-left: 7%;
  padding-right: 7%;
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
header img[data-v-0e8e0c98] {
  align-self: center;
  width: 175px;
  aspect-ratio: auto 175 / 59;
}
#header-content[data-v-0e8e0c98] {
  display: flex;
  justify-content: space-between;
  width: 100%;
}


#frame-stack[data-v-14e40439] {
  position: relative;
  width: 100vw;

  /**
   * Banner should fill viewport space below the header 
   */
  height: calc(100vh - var(--header-height));

  overflow: hidden;
}
.frame[data-v-14e40439] {

  /** 
   * Frames stacked on top of one-another w/ z-index assigned
     dynamically
   */
  position: absolute;
  top: 0;
  right: 0;

  width: 100vw;
  height: 100vh;

  overflow: hidden;

  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;

  /*
   * Images were selected according to previous site incarnation 
   * where top of banner lay underneath header; replicate
   * this by offsetting background image by the header height 
   */
  background-position-y: calc(0rem - var(--header-height));
}
.caption[data-v-14e40439] {

  /* box */
  margin: 0;
  padding: 0;

  /* text */
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.265rem;

  /* position */ 
  position: absolute;
  bottom: 30%;
  left: 10%;
}
.carousel .caption[data-v-14e40439] {

  /* animation */
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-property: transform, opacity;

  /* start state */
  opacity: 0;
  transform: translateY(50px);
}
.carousel > .frame.active > .caption[data-v-14e40439] {
  opacity: 1;
  transform: translateY(0px);
}



main[data-v-f9d7fcb1] {

  /* box */
  display: flex;
  flex-direction: column;
  align-self: center;
  margin-left: 5%;
  margin-right: 5%;
  padding-top: 5%;

  /* contents */
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width:768px) {
#scroll-container[data-v-f9d7fcb1] {
    margin-left: 8%;
    margin-right: 8%;
}
}

 /* not scoped, to target dynamically loaded html */
#home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#home-content > p {
  max-width: 44rem;
  text-align: center;
}

