/**
 * @file
 * Masthead styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.masthead {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.masthead.masthead--alert-bar {
  top: 3.25rem;
}

.toolbar-horizontal .masthead--alert-bar {
  top: 0 !important;
}

.masthead__header-top {
  background-color: #004120;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: top 0.5s;
}
.masthead--sticky .masthead__header-top {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
}
.masthead--in-view .masthead__header-top {
  top: 0;
}

.masthead__quick-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.masthead__quick-nav ul li {
  display: inline-block;
  margin-right: 0.25rem;
}
.masthead__quick-nav a {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  color: #ffffff;
  background-color: #003319;
  padding: 0.675em 1.25em;
  font-size: 1.25rem;
  transition: 0.2s all ease-in;
  text-decoration: none;
}
.masthead__quick-nav a svg {
  margin-left: 0.5rem;
}
@media screen and (max-width: 27.4375rem) {
  .masthead__quick-nav a svg {
    width: 0.75rem;
    height: auto;
    margin-left: 0.125rem;
  }
}
.masthead__quick-nav a:hover {
  background-color: #ffffff;
  color: #003319;
  transition: 0.2s all ease-out;
}
@media screen and (max-width: 87.4375rem) {
  .masthead__quick-nav a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 27.4375rem) {
  .masthead__quick-nav a {
    font-size: 0.875rem;
    padding: 0.675em 1em;
  }
}

.masthead__gateway-nav {
  margin-left: auto;
}
@media screen and (max-width: 73.0625rem) {
  .masthead__gateway-nav {
    position: fixed;
    right: 0;
    top: 27rem;
    z-index: 9;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s;
  }
  .masthead__gateway-nav.masthead__nav--open {
    transform: translate3d(0, 0, 0);
  }
}
.masthead__gateway-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
@media screen and (max-width: 73.0625rem) {
  .masthead__gateway-nav ul {
    display: block;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    width: 18.75rem;
    padding: 0 1rem 0 2rem;
  }
}
@media screen and (max-width: 27.4375rem) {
  .masthead__gateway-nav ul {
    width: 16.25rem;
  }
}
.masthead__gateway-nav ul li {
  display: inline-block;
  margin-right: 3.25rem;
}
@media screen and (max-width: 87.4375rem) {
  .masthead__gateway-nav ul li {
    margin-right: 2.25rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .masthead__gateway-nav ul li {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.masthead__gateway-nav a {
  color: #b3d1a9;
  text-decoration: none;
  transition: 0.2s all ease-in;
}
.masthead__gateway-nav a:hover {
  color: #ffffff;
}
@media screen and (max-width: 87.4375rem) {
  .masthead__gateway-nav a {
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

.site-search__search-toggle {
  margin-right: 3.5rem;
  padding: 0.25rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 87.4375rem) {
  .site-search__search-toggle {
    margin-right: 2.25rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .site-search__search-toggle {
    margin-right: 0.875rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .site-search__search-toggle {
    margin-right: 0.675rem;
  }
}
.site-search__search-toggle span {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.site-search__search-toggle svg path {
  transition: 0.2s all ease-in;
}
.site-search__search-toggle:hover svg path {
  fill: #ffffff;
}

.site-search {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 13.4375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
  transition: all 0.3s cubic-bezier(0, 0.795, 0, 1);
  transform: translate3d(100%, 0, 0);
}
@media screen and (max-width: 87.4375rem) {
  .site-search {
    width: 15.625rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .site-search {
    width: 100%;
  }
}
.site-search .site-search__search-text {
  border: none;
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: 0.25rem;
  width: 7.8125rem;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 87.4375rem) {
  .site-search .site-search__search-text {
    width: 9.375rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .site-search .site-search__search-text {
    width: calc(100% - 4.6875rem);
  }
}
.site-search .site-search__search-button,
.site-search .site-search__close-search {
  padding: 0.25rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.site-search .site-search__search-button:hover svg path,
.site-search .site-search__close-search:hover svg path {
  fill: #AB924D;
}
.site-search .site-search__search-button span,
.site-search .site-search__close-search span {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.site-search.site-search--expanded {
  transform: translate3d(0, 0, 0);
}

.masthead__header-bottom {
  background-color: #005028;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.masthead--photo-header .masthead__header-bottom {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 47.9375rem) {
  .masthead--photo-header .masthead__header-bottom {
    background: #005028;
  }
}

.masthead__logo {
  width: 33%;
  padding: 2.4375rem 3.25rem 1.8125rem 3.25rem;
}
@media screen and (max-width: 87.4375rem) {
  .masthead__logo {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 87.4375rem) {
  .masthead__logo {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .masthead__logo {
    width: auto;
  }
}
.masthead--photo-header .masthead__logo {
  background-color: #005028;
}
.masthead__logo svg {
  height: auto;
  width: 300px;
}
@media screen and (max-width: 87.4375rem) {
  .masthead__logo svg {
    width: 14.375rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .masthead__logo svg {
    width: 10rem;
  }
}

.masthead__logo.transparent {
  background-color: transparent;
}

.masthead__logo_alternate {
  padding: 0 0 0 0;
}
.masthead__logo_alternate svg {
  height: auto;
  width: 18.75rem;
  margin-top: 2rem;
  margin-left: 3rem;
}
@media screen and (max-width: 87.4375rem) {
  .masthead__logo_alternate svg {
    width: 14.375rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .masthead__logo_alternate svg {
    margin-left: 2rem;
  }
}

/* Added some padding on mobile */
@media screen and (max-width: 47.938rem) {
  .masthead__logo_alternate svg {
    padding-top: 0rem;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 27.5rem) {
  .masthead__logo_alternate svg {
    margin-left: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    height: auto;
    width: 6rem;
  }
}
.main-nav__menu-toggle {
  display: none;
  margin: 2.5rem 2.25rem 0 0;
  background-color: #003319;
  padding: 1.25rem 1.2rem;
  align-self: flex-start;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.1s ease-in;
}
@media screen and (max-width: 73.0625rem) {
  .main-nav__menu-toggle {
    display: block;
    margin: 0.875rem 0.875rem 0;
  }
}
.main-nav__menu-toggle svg path {
  transition: fill 0.1s ease-in;
}
.main-nav__menu-toggle:hover {
  background-color: #ffffff;
  transition: background-color 0.1s ease-out;
}
.main-nav__menu-toggle:hover svg path {
  fill: #003319;
  transition: fill 0.1s ease-out;
}

.main-nav {
  width: 67%;
  padding: 2.4375rem 3.25rem 1.8125rem 3.25rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 87.4375rem) {
  .main-nav {
    padding-right: 2.25rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .main-nav {
    position: fixed;
    height: 100%;
    background-color: #004120;
    width: 18.75rem;
    top: 3.14rem;
    right: 0;
    z-index: 5;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s;
  }
  .main-nav.masthead__nav--open {
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 27.4375rem) {
  .main-nav {
    top: 2.49rem;
    width: 16.25rem;
  }
}
.main-nav .main-nav__menu-close {
  display: none;
  background-color: #003319;
  padding: 0.75rem 2rem;
  text-align: right;
  cursor: pointer;
}
.main-nav .main-nav__menu-close svg path {
  fill: #ffffff;
}
@media screen and (max-width: 73.0625rem) {
  .main-nav .main-nav__menu-close {
    display: block;
  }
}
.main-nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  position: relative;
  z-index: 5;
  height: 3.8125rem;
}
@media screen and (max-width: 87.4375rem) {
  .main-nav > ul {
    height: auto;
  }
}
@media screen and (max-width: 73.0625rem) {
  .main-nav > ul {
    flex-direction: column;
    width: 100%;
  }
}
.main-nav > ul > li {
  display: inline-block;
}
@media screen and (max-width: 73.0625rem) {
  .main-nav > ul > li {
    border-bottom: 1px solid #003319;
  }
}
.main-nav > ul > li:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0 0.75rem 0.75rem 0.75rem;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  opacity: 0;
  transform: translate(2.5rem, 1rem);
  transition: 0.3 opacity ease-in 0.3s;
}
@media screen and (max-width: 87.4375rem) {
  .main-nav > ul > li:after {
    transform: translate(1.95rem, 1rem);
  }
}
@media screen and (max-width: 73.0625rem) {
  .main-nav > ul > li:after {
    display: none;
  }
}
.main-nav > ul > li:hover:after {
  opacity: 1;
  transition: 50ms opacity ease-out 0;
}
.masthead--photo-header .main-nav > ul > li:hover:after {
  opacity: 0.85;
}
.main-nav > ul > li a {
  text-shadow: black 0 0 0.2em;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1875rem;
  white-space: nowrap;
}
.main-nav > ul > li a:after {
  content: "";
  height: 0.25rem;
  display: block;
  margin-top: 0.375rem;
  background-color: transparent;
}
@media screen and (max-width: 73.0625rem) {
  .main-nav > ul > li a:after {
    display: none;
  }
}
@media screen and (max-width: 87.4375rem) {
  .main-nav > ul > li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .main-nav > ul > li a {
    display: block;
    padding: 1rem 2rem;
  }
}
.main-nav > ul > li:hover > a:after, .main-nav > ul > li.active > a:after {
  background-color: #ffffff;
}
.main-nav > ul > li:hover .main-nav__sub-menu, .main-nav > ul > li.active .main-nav__sub-menu {
  display: grid;
  visibility: visible;
  opacity: 1;
  animation: fade 0.3s;
}
@media screen and (max-width: 73.0625rem) {
  .main-nav > ul > li:hover .main-nav__sub-menu, .main-nav > ul > li.active .main-nav__sub-menu {
    display: none;
  }
}
@media screen and (max-width: 73.0625rem) {
  .main-nav > ul > li:hover > a, .main-nav > ul > li.active > a {
    background-color: #005028;
  }
}
.main-nav > ul > li:not(:last-child) {
  margin-right: 3.5rem;
}
@media screen and (max-width: 87.4375rem) {
  .main-nav > ul > li:not(:last-child) {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .main-nav > ul > li:not(:last-child) {
    margin-right: 0;
  }
}
.main-nav > ul > li:nth-child(2):after {
  transform: translate(2.25rem, 1rem);
}
@media screen and (max-width: 87.4375rem) {
  .main-nav > ul > li:nth-child(2):after {
    transform: translate(1.84rem, 1rem);
  }
}
.main-nav > ul > li:nth-child(3):after {
  transform: translate(2.7rem, 1rem);
}
@media screen and (max-width: 87.4375rem) {
  .main-nav > ul > li:nth-child(3):after {
    transform: translate(2.1rem, 1rem);
  }
}
.main-nav > ul > li:nth-child(4):after {
  transform: translate(2.1rem, 1rem);
}
@media screen and (max-width: 87.4375rem) {
  .main-nav > ul > li:nth-child(4):after {
    transform: translate(1.7rem, 1rem);
  }
}
.main-nav > ul > li:nth-child(5):after {
  display: none;
}
.main-nav > ul > li:nth-child(6):after {
  transform: translate(1.91rem, 1rem);
}
@media screen and (max-width: 87.4375rem) {
  .main-nav > ul > li:nth-child(6):after {
    transform: translate(1.55rem, 1rem);
  }
}
.main-nav .main-nav__sub-menu {
  position: absolute;
  right: -3.25rem;
  width: 120%;
  min-width: 63.9375rem;
  padding: 2rem 2rem 1.5rem;
  margin-top: 1.75rem;
  background-color: #ffffff;
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.16);
  display: none;
  grid-template-columns: 12.1875rem 1fr 1fr 1fr;
  grid-column-gap: 0.625rem;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all ease-in 0.3s;
  z-index: 5;
}
.masthead--photo-header .main-nav .main-nav__sub-menu {
  background-color: rgba(255, 255, 255, 0.85);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-nav .main-nav__sub-menu {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 87.4375rem) {
  .main-nav .main-nav__sub-menu {
    right: -2.25rem;
    padding: 1.5rem;
    min-width: 54.1875rem;
    grid-template-columns: 10rem 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 87.4375rem) {
  .main-nav .main-nav__sub-menu .main-nav__menu-image {
    width: 8.125rem;
  }
}
.main-nav .main-nav__sub-menu .main-nav__menu-column {
  padding: 0;
  margin-right: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-nav .main-nav__sub-menu .main-nav__menu-column {
    padding-left: 1.625rem;
  }
}
.main-nav .main-nav__sub-menu li {
  margin: 0.5rem 0;
  display: inline-flex;
}
.main-nav .main-nav__sub-menu li a {
  text-shadow: unset;
  color: #003366;
  font-weight: 500;
  font-size: 1.125rem;
  white-space: unset;
}
@media screen and (max-width: 87.4375rem) {
  .main-nav .main-nav__sub-menu li a {
    font-size: 1rem;
  }
}
.main-nav .main-nav__sub-menu li:hover a:after, .main-nav .main-nav__sub-menu li.active a:after {
  background-color: #003366;
}

.main-nav.alternate {
  width: 100%;
}

.masthead--photo-header .masthead__header-bottom.alternate {
  background: transparent;
}

.user--authenticated .masthead--photo-header .masthead__header-bottom.alternate {
  background: #005028;
}

.alert-button {
  position: absolute;
  right: 0;
  top: 6.9375rem;
}
@media screen and (max-width: 87.4375rem) {
  .alert-button {
    top: 6.75rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .alert-button {
    top: 6.375rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .alert-button {
    top: 6.375rem;
  }
}
.alert-button a {
  background-color: #AB924D;
  color: #ffffff;
  border: 0.125rem solid #ffffff;
  border-right: none;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  font-weight: 700;
}
@media screen and (max-width: 47.9375rem) {
  .alert-button a {
    font-size: 0.6125rem;
  }
}
.alert-button a:hover {
  background-color: #BEA96F;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=masthead.css.map*/