/* start of stylesheet */


/* vertical sidebar nav */

.navSubList,
.navSubList ul {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

.navSubList li {
  border-top: solid #CCCCCC 1px;
  padding: 7px;
  width: 100%;
  font-size: 11pt;
  line-height: 150%;
}

.navSubList li a {
  text-decoration: none;
  display: block;
  color: #333333;
}

.navSubList li a:hover,
.navSubList li a:active {
  color: #006699;
}

.navSubList li a#NavSelected {
  color: #2680b4;
  padding-left: 6px;
  border-left: solid #2680b4 4px;
}


/* site header */

.site-header-wrap {
  border-bottom: 2px solid #f6f6f6;
}

.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 95px;
  background-color: #4c5a67;
}

.site-logo {
  display: block;
  width: 330px;
  height: 95px;
  flex-shrink: 0;
}

#TopLogoBanner {
  background-image: url(images/web-action-sales.jpg);
  background-repeat: no-repeat;
}


/* hamburger button — hidden on desktop */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* top horizontal nav (nav1) */

.NavHorizBanner {
  display: flex;
  align-items: flex-end;
  height: 46px;
  font-family: 'BebasNeueRegular', Arial, Helvetica, sans-serif;
  font-size: 16pt;
  text-transform: uppercase;
  line-height: 1;
}

.NavHorizBanner a {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 20px;
  border-right: solid #bbb 1px;
  color: #ffffff;
  text-decoration: none;
}

.NavHorizBanner a:hover  { color: #80d5fc; }
.NavHorizBanner a#NavSelected { color: #80d5fc; }
.NavHorizBanner #NavTail,
.NavHorizBanner a:last-child { border-right: none; }


/* sub nav (nav2) */

.NavHorizSubBanner {
  display: flex;
  height: 50px;
  padding-left: 8px;
  font-family: 'BebasNeueRegular', Arial, Helvetica, sans-serif;
  font-size: 18pt;
  text-transform: uppercase;
}

.NavHorizSubBanner a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: solid #bbb 1px;
  color: #ffffff;
  text-decoration: none;
}

.NavHorizSubBanner a:hover  { color: #80d5fc; }
.NavHorizSubBanner a#NavSelected { color: #80d5fc; }
.NavHorizSubBanner a:last-child { border-right: none; }


/* responsive — mobile */

@media (max-width: 820px) {

  .site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

  .site-header {
    height: auto;
    min-height: 95px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  .site-logo {
    height: 95px;
  }

  .hamburger {
    display: flex;
    margin-bottom: 0;
    margin-top: 11px;
    margin-right: 36px;
  }

  /* nav1 — hidden until hamburger opens it */
  .NavHorizBanner {
    display: none;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #3a4550;
    padding: 0;
  }

  .NavHorizBanner.open {
    display: flex;
  }

  .NavHorizBanner a {
    width: 100%;
    height: auto;
    padding: 14px 20px;
    border-right: none;
    border-bottom: solid #555 1px;
    box-sizing: border-box;
    justify-content: center;
  }

  /* nav2 — hidden until hamburger opens it */
  .NavHorizSubBanner {
    display: none;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
    background-color: #2d3840;
  }

  .NavHorizSubBanner.open {
    display: flex;
  }

  .NavHorizSubBanner a {
    width: 100%;
    height: auto;
    padding: 14px 20px;
    border-right: none;
    border-bottom: solid #444 1px;
    box-sizing: border-box;
    justify-content: center;
  }

}


/* end of stylesheet */
