
/*
$breakpoints: (
  small: 0px,
  medium: 640px,
  large: 1024px,
  xlarge: 1200px,
  xxlarge: 1440px,
);
*/

:root {
    --color-white: #fff;
    --color-offwhite: #f4f4f4;
    --color-orange: #E26221;
    --color-yellow: #e8b400;
    --color-red: #bf2a28;
    --color-red-lighter: #ef4642;
    --color-red-darker: #9e2220;
    --color-blue: #00326d;
    --color-blue-darker: #00336d;
    --color-blue-lighter: #144c8b;
    --color-charcoal: #222;
    --color-light-gray: #ccc;
    --color-medium-gray: #888;
    --color-dark-gray: #666;
    --color-extra-light-gray: #f4f4f4;


    --color-gray-0: #f1f7fc;
    --color-gray-1: #e7eef4;
    --color-gray-2: #AAB8C3;
    --color-gray-3: #75838E;
    --color-gray-4: #45525C;
    --color-gray-5: #2E3B44;
    --color-gray-6: #202a30;


    --color-h: inherit;

    --color-body: #444;
    --color-body-bg: var(--color-extra-light-gray);

    --color-primary: var(--color-orange);
    --color-secondary: var(--color-blue-darker);

    --color-footer-bg: var(--color-charcoal);
    --color-footer-fg: var(--color-white);

    --color-strip-bg: transparent;
    --color-strip-alt-bg: var(--color-gray-0);
    --color-strip-title-fg: var(--color-charcoal);
    --color-strip-divider-color: var(--color-primary);

    --color-hero-band-bg: var(--color-red-darker);
    --color-hero-band-fg: var(--color-white);

    --color-pageheader-bg: var(--color-white);
    --color-pageheader-fg: var(--color-secondary);

    /* --color-navbar-bg: rgba(0, 0, 0, .75); */
    --color-navbar-bg: var(--color-blue);

    --color-menu-item-fg: var(--color-charcoal);
    --color-menu-item-bg: transparent;
    --color-menu-item-active-fg: var(--color-primary);
    --color-menu-item-active-bg: transparent;

    --color-submenu-item-fg: var(--color-white);
    --color-submenu-item-bg: var(--color-navbar-bg);
    --color-submenu-divider: var(--color-blue-lighter);
    --color-submenu-item-hover-fg: var(--color-white);
    --color-submenu-item-hover-bg: var(--color-blue-lighter);

    --header-height-small: 90px;
    --header-height-medium: 136px;
    --header-height-large: 122px;
}

@font-face {
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: "Sarabun", sans-serif;
    color: var(--color-body);
    background: var(--color-body-bg);
    
    padding-top: var(--header-height-small);
}

.nowrap {
    white-space: nowrap;
}

.padding {
    padding: 1rem;
}

@media print, screen and (min-width: 40em) {
    body {
        /* padding-top: var(--header-height-medium); */
        padding-top: 0;
    }

    body.stuck {
        padding-top: 133px;
    }

}

@media print, screen and (min-width: 64em) {
    body {
        /* padding-top: var(--header-height-large); */
    }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-style: normal;
    font-weight: 600;
    color: var(--color-h);
    text-rendering: optimizeLegibility;
    text-transform: uppercase;
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small {
    line-height: 0;
    color: #868686;
}

h1,
.h1 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h2,
.h2 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h3,
.h3 {
    font-size: 1.1875rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h4,
.h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h5,
.h5 {
    font-size: 1.0625rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h6,
.h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
    h1,
    .h1 {
        font-size: 1.5rem;
    }
    h2,
    .h2 {
        font-size: 1.25rem;
    }
    h3,
    .h3 {
        font-size: 1.25rem;
    }
    h4,
    .h4 {
        font-size: 1.125rem;
    }sitec
    h5,
    .h5 {
        font-size: 1.125rem;
    }
    h6,
    .h6 {
        font-size: 1rem;
    }
}

address {
    display: flex;
    flex-direction: row;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

hr {
    margin: 1rem 0;
    border-top: 1px var(--color-light-gray) solid;
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
}


dl {
    margin: 0;
}

select {
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: .5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #fefefe;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
    background-origin: content-box;
    background-position: right -1rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    padding-right: 1.5rem;
    -webkit-transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
    transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
    transition: box-shadow .5s,border-color .25s ease-in-out;
    transition: box-shadow .5s,border-color .25s ease-in-out,-webkit-box-shadow .5s;
}

[type='text'], [type='password'], [type='date'], [type='datetime'], 
[type='datetime-local'], [type='month'], [type='week'], [type='email'], 
[type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none; 
}

[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, 
[type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, 
[type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, 
[type='url']:focus, [type='color']:focus, textarea:focus {
    outline: none;
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; 
}

textarea {
  max-width: 100%; 
}

textarea[rows] {
    height: auto; 
}

button, [type="button"], [type="reset"], [type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
}

[type='submit'], [type='button'] {
    appearance: none;
}

.text-with-button {
    display: flex;
}

.text-with-button input[type="text"] {
    display: inline-block !important;
    margin-bottom: 0 !important;
    outline: none;
    flex-shrink: 1;
}

.text-with-button .attached {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .25rem .75rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    flex-grow: 1;
    white-space: nowrap;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed; 
}

.text-mute {
    color: var(--color-dark-gray);
}

.margin--top {
    margin-top: 1rem !important;
}

.margin--bottom {
    margin-bottom: 1rem !important;
}

.margin--left {
    margin-left: 1rem !important;
}

.margin--right {
    margin-right: 1rem !important;
}

.nopadding {
    padding: 0 !important;
}

.upper {
    text-transform: uppercase;
}

.lower {
    text-transform: lowercase;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.align-self-center {
    align-self: center;
}

.show-for-medium,
.show-for-large {
    display: none;
}

.hide-for-medium,
.hide-for-large {
}

@media screen and (min-width: 40em) {
    .show-for-medium {
        display: block;
    }

    .hide-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 64em) {
    .show-for-large {
        display: block;
    }

    .hide-for-large {
        display: none !important;
    }
}

ul {
    padding: 0;
}

ul.no-bullet {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul > li {
    margin-bottom: .5rem;
}

ul.padding-y > li {
    padding: .25rem 0;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: var(--header-height-small);
    background-color: var(--color-white);
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); */
    z-index: 25;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
}

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

.header.stuck {
    position: fixed;
}

.header.stuck .header__logo{ 
    
}

.header__logo {
    max-height: 50px;
}

.header__top {
    display: none;
}

.header__bottom {
    padding: 1rem 0;
}

.header__contact {
    display: none;
}

.header__quicknav {
    display: flex;
    position: relative;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color-white);
    font-size: .9rem;
    /* padding: 0 2rem; */
    font-weight: normal;
}

.header__quicknav a {
    color: var(--color-white);
}

.header__quicknav a:hover {
    color: var(--color-white);
}

.header__quicknav__item {
    display: flex;
    align-items: center;
    height: 100%;
    
    white-space: nowrap;
}

.header__quicknav__item .icon {
    display: inline-block;
    margin-right: 0.5rem;
}

.header__quicknav .social {
    font-size: 1rem;
    margin-right: .5rem;
}

.header__quicknav__item.link::after {
    content: "";
    /* right: 0; */
    width: 1px;
    height: 20px;
    margin: 0 .75rem;
    /* border-right: 1px var(--color-medium-gray) solid; */
}

.header__quicknav__item:last-of-type:after {
    /* border-right: 0; */
    margin: 0;
}

.header__quicknav__item.cta {
    padding: 0 2rem;
    background: var(--color-primary);
    transition: 250ms filter ease-in-out;
}

.header__quicknav__item.cta:hover {
    filter: brightness(110%);
}

.header__quicknav__item.spacer {
    flex-grow: 1;
}

@media screen and (min-width: 40em) {
    .header {
        position: static;
        /* height: var(--header-height-medium); */
        height: auto;
        transition: 250ms height ease-in-out;
        overflow-x: hidden;
    }

    .header--transparent {
        position: fixed;
    }

    .header__top {
        display: block;
        padding-top: .25rem;
        padding-bottom: .25rem;
        background-color: var(--color-charcoal);
        color: var(--color-white);
        font-size: 9rem;
    }

    .header__top a {
        color: var(--color-white);
    }

    .header__top > .content__container {
        display: flex;
        justify-content: space-between;
        align-items: center
    }


    .header__bottom {
        position: relative;
        height: auto;
        background: var(--color-white);
        color: var(--color-red);
    }

    .header--transparent:not(.stuck) .header__bottom {
        background: transparent;
    }

    .header__bottom > .content__container {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: stretch;
        position: relative;
    }



    .header.stuck > .header__bottom > .content__container {
        /* align-items: center; */
    }

    .header__logo {
        max-height: 70px;
        transition: 250ms max-height ease-in-out;
    }

    .header__contact {
        display: flex;
        
    }

    .header__contact .fa {
        display: inline-block;
        margin-right: .5rem;
        font-size: 1.64rem;
        color: var(--color-red);
    }

    .header__contact li {
        margin-bottom: .25rem;
    }


    .header__quicknav {
        height: 36px;
    }

    .header__quicknav__item {
    }

    .header__quicknav__item.spacer {
        width: 75px;
    }

    .header.stuck {
        /* height: 100px; */
    }

    .header.stuck .header__bottom {
        padding: .5rem 0;
        box-shadow: 0 5px 5px 0px rgba(0,0,0,.1);
    }

    .header.stuck .header__quicknav {
        transition: 250ms height ease-in-out;
        height: 32px;
        font-size: .9rem;
    }

    .header.stuck .header__logo {
        max-height: 40px;
    }
}

@media screen and (min-width: 64em) {
    .header {
        /* max-height: var(--header-height-large); */
    }

    .header__logo {
        margin-bottom: 0;
    }

    .header__quicknav {
        transition: 250ms height ease-in-out;
        /* font-size: 1rem; */
        /* height: 40px; */

    }

    .header__quicknav__item {
        /* height: 40px; */
    }

    .header__quicknav__item.spacer {
        width: 125px;
    }

    .header.stuck {
        /* height: 90px; */
    }

    .header.stuck .header__bottom {
        padding: .5rem 0;
    }

    .header.stuck .header__quicknav {
        height: 32px;
        font-size: .9rem;
    }

    .header.stuck .header__logo {
        /* margin-top: 0;
        max-height: 40px; */
    }
}


footer,
.footer {
    padding: 0;
    background: var(--color-footer-bg);
    color: var(--color-footer-fg);
}

    .footer > .content__container > .grid-x > .cell {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

.footer a {
    color: var(--color-footer-fg);
}

.footer hr {
    border-top: 1px var(--color-medium-gray) solid;
}

.footer__menu__cell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__header {
    display: inline-block;
    position: relative;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
}

.footer__header::after {
    position: absolute;
    content: '';
    width: 70%;
    border-top: 4px var(--color-red-lighter) solid;
    left: 0;
    bottom: -0.5rem;
    border-radius: 4px;
}

.footer__disclaimer {
    display: block;
    position: relative;
    font-size: 0.8rem;
}

.footer__disclaimer > .content__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__disclaimer::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .2);
    z-index: -1;
}

.footer__disclaimer > p {
    margin: 0.5rem 0;
    line-height: 2;
}

@media screen and (min-width: 40em) {
    .footer__disclaimer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__links {
    margin-bottom: 1rem !important;
}

.footer__links > li {
    margin: 0.25rem 0;
}


@media screen and (min-width: 40em) {
    .footer {
    }

    .footer > .content__container > .grid-x {
        position: relative;
    }

    .footer > .content__container > .grid-x > .cell {
    }
}

@media screen and (min-width: 64em) {
    .footer > .content__container > .grid-x::after {
        left: calc(25%);
    }
}

/* #region button */

.button {
    display: inline-block;
    position: relative;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    text-align: center;
    transition: 250ms filter ease-in-out;
    border-radius: .25rem;

    background: var(--color-body);
    color: var(--color-body-bg);
}
}

.button:hover {
    filter: brightness(110%);
}

.button--small {
    padding: .5rem;
    font-size: 0.9rem;
}

.button--large {
    padding: 1rem;
}

.button--xlarge {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.button--expand {
    display: block;
}

.button--rounded {
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 25px;
}
.button--arrow-rt {
}

.button--arrow-rt::after {
    position: absolute;
    margin-left: 1rem;
    top: 0;
    bottom: 0;
    width: 1.5em;
    content: '';
    background: var(--color-primary);
    border-right: 1px var(--color-primary) solid;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}


.button .button--icon--right {
    margin-left: 0.5rem;
    transition: 200ms transform linear;
}

.button:hover .button--icon--right {
    transform: translate(5px);
}

.button--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.button--secondary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.button--yellow {
    background: var(--color-yellow);
    color: var(--color-body);
}

.button--offwhite {
    background: var(--color-offwhite);
    color: var(--color-body);
}

.button--primary.button--outline {
    background: transparent;
    border: 1px var(--color-primary) solid;
    color: var(--color-primary);
}

.button--secondary.button--outline {
    background: transparent;
    border: 1px var(--color-secondary) solid;
    color: var(--color-secondary);
}

/* #endregion */


.header-button {
    display: inline-block;
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-radius: 1.25rem;
    padding: .35rem 1rem !important

}

.header-button .icon {
}


.strip {
    padding: 2rem 0;
    background-color: var(--color-strip-bg);
}

.strip--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.strip--secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.strip--pageheader {
    position: relative;
    padding: 1rem 0;
    background: var(--color-pageheader-bg);
    color: var(--color-pageheader-fg);
    z-index: 0;
}

.strip--pageheader::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: .075;
    background: url(/images/honeycomb-orange.png);
}

.strip--pageheader {
}
.strip--blue {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.strip--dark {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.strip--thin {
    padding: 1rem 0;
}

.strip--alt {
    background-color: var(--color-strip-alt-bg);
}

.strip--nopadding {
    padding: 0;
}

.strip__container,
.content__container {
    padding: 0 1rem;
}

.strip__container--nopadding {
    padding: 0;
}

.strip--center > .strip__container {
    text-align: center;
}

.strip__header {
    display: flex;
    flex-direction: row;
    margin-bottom: 2rem;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.strip__header__cta {
    position: absolute;
    right: 1rem;
}

.strip__header--left {
    text-align: left;
}

.strip__title {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    color: var(--color-strip-title-fg);
}

.strip--dark .strip__title {
    color: var(--color-strip-white);
}

.strip__header--left .strip__title {
}

.strip__subtitle {
    display: block;
    color: var(--color-medium-gray);
    margin-bottom: .5rem;
}

.strip__title--underline {
    position: relative;
    margin-bottom: 1rem;
}

.strip__title--underline::after {
    position: absolute;
    content: '';
    width: 70%;
    border-top: 4px var(--color-red) solid;
    left: 15%;
    right: 15%;
    bottom: -0.5rem;
    border-radius: 4px;
}

.strip__header--left .strip__title--underline::after {
    left: 0;
    right: 0;
}

.strip__title--left {
    text-align: left;
}

.strip__title.divider {
    overflow: hidden;
    font-size: 1.3rem;
}
.strip__title.divider > span {
    position: relative;
}
.strip__title.divider > span::before,
.strip__title.divider > span::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 99980px;
    top: 50%;
    height: 2px;
    border-bottom: 2px var(--color-strip-divider-color) solid;
}
.strip__title.divider > span::before {
    left: -99999px;
}
.strip__title.divider > span::after {
    right: -99999px;
}
@media print, screen and (min-width: 40em) {
    .strip__title.divider {
        font-size: 1.5rem;
    }
}

@media print, screen and (min-width: 40em) {
    .strip__container,
    .content__container {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 75em) {
    .strip__container,
    .content__container {
        max-width: 88rem;
    }
}

.strip--full > .strip__container {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}


.strip__about {
    font-size: 1.2rem;
}

.hero {
    position: relative;
    height: 200px;
    padding: 0;
    background-color: #000;
    background-image: url(/images/hero-1.jpg);

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    overflow: hidden;
}

.hero > .content__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

 
.hero--gradient::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    background: #00002050;
}

.hero .sign {
    position: absolute;
    max-height: 100%;
    top: 20px;
    right: 0%;

    opacity: .2;
}

.hero__band {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    width: 80%;

    /* width: 60%; */
    color: var(--color-hero-band-fg);

    z-index: 1;
}

/* .hero__band::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-hero-band-bg);
    opacity: 0.9;
    z-index: -1;
} */

.hero__band__title {
    position: relative;
    padding: .5rem;
    margin-left: 20px;
    text-align: left;
    font-size: .9rem;
    font-weight: normal;
    color: var(--color-white);
    background-color: var(--color-hero-band-bg);
}

    .hero__band__title::after,
    .hero__band__title::before {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        content: '';
        background-color: var(--color-hero-band-bg);
    }

    .hero__band__title::before {
        left: -20px;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }

    .hero__band__title::after {
        left: 100%;
        clip-path: polygon(0 100%, 100% 0, 0 0);
    }


.hero__band__sublist {
    display: flex;
    position: relative;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(220,220,220,.8);
}

    .hero__band__sublist:after,
    .hero__band__sublist::before {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 15px;
        content: '';
        background: rgba(220,220,220,.8);
    }

    .hero__band__sublist::before {
        left: -15px;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }

    .hero__band__sublist::after {
        left: 100%;
        clip-path: polygon(0 100%, 100% 0, 0 0);
    }


.hero__band__sublist__item:not(:last-of-type) {
    /* border-right: 1px #aaa solid; */
    position: relative;
}

.hero__band__sublist__item:not(:last-of-type):after {
    content: '';
    position: absolute;
    top: .5rem;
    bottom: .5rem;
    right: 0;
    border-right: 1px var(--color-charcoal) solid;
    opacity: .5;
}

.hero__band__sublist__item > a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: .9rem;
    text-transform: uppercase;
}

@media screen and (min-width: 40em) {
    .hero > .content__container {
        align-items: flex-start;
    }

    .hero__band {
        margin-left: 2rem;
    }

    .hero__band__title {
        padding: 1rem;
    }

    .hero__band__sublist__item > a {
        padding: .75rem 1rem;
        font-size: 1rem;
    }
}


.hero__band__cta {
    font-size: 0.75rem;
    padding: .25rem .5rem;
}

.hero__band--animate {
    /* left: -100vw;

    -webkit-animation: slideFromLeft 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slideFromLeft 0.75s forwards;
    animation-delay: 0.25s; */
}


.hero__band--animate .hero__band__title {
    /* Position off top of screen */
    transform: translateX(-100vw);
}

.hero__band--animate .hero__band__title__small {
    /* Position off top of screen */
    transform: translateX(100vw);
}

.hero__band--animate .hero__band__sublist {
    /* Position off top of screen */
    transform: translateX(100vw);
}


.hero__band--animate .hero__band__title,
.hero__band--animate .hero__band__cta {
    -webkit-animation: resetXPos 1s forwards;
    animation: resetXPos 1s forwards;
    -webkit-animation-delay: .25s;
    animation-delay: 0.25s;
}

.hero__band--animate .hero__band__sublist {
    -webkit-animation: resetXPos 1s forwards;
    animation: resetXPos 1s forwards;
    -webkit-animation-delay: .25s;
    animation-delay: .25s;
}


.hero__band--animate .hero__band__cta {
    /* Position off bottom of screen */
    transform: translate(0, 350px);
}

@-webkit-keyframes slideFromLeft {
    100% {
        left: 0;
    }
}

@keyframes slideFromLeft {
    100% {
        left: 0;
    }
}

@-webkit-keyframes resetYPos {
    100% {
        transform: translateY(0)
    }
}

@keyframes resetYPos {
    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes resetXPos {
    100% {
        transform: translateX(0)
    }
}

@keyframes resetXPos {
    100% {
        transform: translateX(0)
    }
}

@media screen and (min-width: 40em) {
    .hero {
        height: 300px;
    }

    .hero__band {
    }

    .hero__band__title {
        font-size: 1.4rem;
        margin-bottom: 0;

        width: 70%
    }

    .hero__band__cta {
        font-size: 1rem;
        padding: .5rem 2rem;
    }
}

@media screen and (min-width: 64em) {
    .hero {
        height: 400px;
    }

    .hero__band {
    }

    .hero__band__title {
        width: 700px;
        font-size: 1.4rem;
    }
}

@media screen and (min-width: 75em) {
    .hero {
        height: 500px;
    }
}

@media screen and (min-width: 90em) {
    .hero {
        height: 600px;
    }
}


.nav__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

@media print, screen and (min-width: 40em) {
    .nav__container {
    }

    .header__nav {
        background-color: var(--color-navbar-bg);
        opacity: 0.9;;

    }
}

@media print, screen and (min-width: 64em) {
    .nav__container {
        flex-direction: row;
    }
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    
}
.navbar__logo {
    order: 0;
    max-width: 200px;
}
.navbar .menu-toggle {
    order: 1;
}
.navbar__menu {
    display: none;
}

/* SMALL ONLY */
@media print, screen and (max-width: 39.99875em) {
    .navbar {
        position: absolute;
        display: flex;
        left: 0;
        top: 82px;
        right: 0;
        z-index: 9999;
        background: var(--color-white);
        
        /* box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.4); */
    }

    .navbar .menu__item > a {
        color: var(--color-menu-item-fg);
    }

    .navbar--open {
        flex-wrap: wrap;
        border-top: 1px var(--color-light-gray) solid;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    .navbar--open .menu {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
    }
}

@media print, screen and (min-width: 40em) {
    .navbar {
        width: auto;
    }
    
}


/* #region Menu */

.menu {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu__item > a {
    display: block;
    position: relative;
    /* height: 30px;
    line-height: 30px; */
    padding: .5rem .5rem;
    color: var(--color-menu-item-fg);
    background: var(--color-menu-item-bg);
    text-transform: uppercase;
    font-weight: normal;
    transition: 100ms color ease-in-out;
}

.menu__item.active > a {
    color: var(--color-menu-item-active-fg);
    background: var(--color-menu-item-active-bg);
}

.menu__item:hover > a {
    color: var(--color-menu-item-active-fg);
    background: var(--color-menu-item-active-bg);
}

.header--transparent:not(.stuck) .menu__item > a {
    color: var(--color-white);
    background: transparent;
}

/* .menu__item:not(.disabled).has-submenu:hover > a {
    
} */

.menu__item.has-submenu > a {
    padding-right: 25px;
}

.menu__item.has-submenu > a::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    right: 5px;
    top: calc(50% - 5px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23003f87' d='M0 7.33l2.829-2.83 9.175 9.339 9.167-9.339 2.829 2.83-11.996 12.17z'/%3E%3C/svg%3E");
    
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.menu__item.has-submenu:hover > a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ed1b2e' d='M0 7.33l2.829-2.83 9.175 9.339 9.167-9.339 2.829 2.83-11.996 12.17z'/%3E%3C/svg%3E");
}

.menu__item__submenu {
    list-style-type: none;
    display: none;
    margin: 0;
    padding: 0;
    z-index: 9999;
}
.menu__item__submenu__item > a {
    display: block;
    height: 35px;
    line-height: 35px;
    padding: 0 1rem;
    color: var(--color-submenu-item-fg);
    background: var(--color-submenu-item-bg);
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
}
.menu__item__submenu__item > a:hover {
    color: var(--color-submenu-item-hover-fg);
    background: var(--color-submenu-item-hover-bg);
}


/* SMALL ONLY */
@media print, screen and (max-width: 39.99875em) {
    
    .menu__item__submenu .menu__item__submenu__item > a{
        padding-left: 2rem;
        background: var(--color-blue-lighter);
    }
}

/* MEDIUM UP */
@media print, screen and (min-width: 40em) {
    .menu {
        display: block;
    }

    .menu__item {
        /* BEGIN MENU UNDERLINE ANIMATION */
        /* END MENU UNDERLINE ANIMATION */
        display: flex;
        align-items: center;
    }

    .menu__item.has-submenu > a::before {
        
    }

    .header.stuck {
        transform: translateY(-200px);
        
        -webkit-animation: resetYPos .5s forwards;
        animation: resetYPos .5s forwards;
        -webkit-animation-delay: .25s;
        animation-delay: .25s;

    }

    /*
    .header.stuck .menu__item > a {
        height: 30px;
        line-height: 30px;
    }*/

}

@media print, screen and (min-width: 64em) {
    .menu__item > a {
        padding: 0 1rem;
        /* font-weight: 500; */
        /* font-size: 1.1rem; */
    }

    .menu__item.has-submenu > a {
        padding-right: 1.75rem;
    }
}

.menu__item.expand .menu__item__submenu {
    display: block;
}

@media print, screen and (min-width: 40em) {
    .menu {
        display: flex;
        flex-direction: row;
    }
    @supports (display: flex) and (gap: 10px) {
        .menu {
            /* gap: 0.5rem; */
        }
    }
    /* @supports not ((display: flex) and (gap: 10px)) {
        .menu > * {
            margin: 0 0.25rem;
        }
        .menu > *:first-child {
            margin-left: 0;
        }
        .menu > *:last-child {
            margin-right: 0;
        }
    } */
    .menu__item__submenu {
        display: block;
        min-width: 200px;
        position: absolute;
        max-height: 0;
        overflow-y: hidden;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.1s linear;
    }
    .menu__item:hover .menu__item__submenu {
        max-height: none;
        transform: scaleY(1);
        /* Add a little bit of a gutter so leaving the submenu
                          by a little won't dismiss it */
        padding: 0 1rem 1rem 1rem;
        margin-left: -1rem;
    }
}
@media print, screen and (min-width: 64em) {
    .menu__item__submenu {
        min-width: 250px;
    }
}

.menu-toggle {
    text-indent: -1000px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80' width='40' height='40' fill='%232b426e'%3E\a     %3Crect width='100' height='20'%3E%3C/rect%3E\a     %3Crect y='30' width='100' height='20'%3E%3C/rect%3E\a     %3Crect y='60' width='100' height='20'%3E%3C/rect%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.menu-toggle.text {
    text-indent: 0;
    min-width: 24px;
    width: auto;
    padding-left: 30px;
    background-position: left center;
}

/* #endregion */

ul.inline-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
}
@supports (display: flex) and (gap: 10px) {
    ul.inline-list {
        gap: 1rem;
    }
}
@supports not ((display: flex) and (gap: 10px)) {
    ul.inline-list > * {
        margin: 0 0.5rem;
    }
    ul.inline-list > *:first-child {
        margin-left: 0;
    }
    ul.inline-list > *:last-child {
        margin-right: 0;
    }
}
ul.inline-list--center {
    justify-content: center;
}
ul.inline-list--wrap {
    flex-wrap: wrap;
}

ul.arrow-list {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}
ul.arrow-list li::before {
    font-family: "FontAwesome";
    content: "\f105";
    display: inline-block;
    margin-right: 0.5rem;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 0 0 1px inherit;
}
ul.arrow-list--left li {
    text-align: left;
}
ul.arrow-list--primary li::before {
    color: var(--color-primary);
    text-shadow: 0 0 1px var(--color-primary);
}

.flexlist {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.flexlist--center {
    justify-content: center;
    justify-content: space-evenly;
}

.flexlist__item {
    margin-right: 1px var(--color-light-gray) solid;
}

.flexlist--divider > .flexlist__item {
}

@media screen and (min-width: 40em) {
    .flexlist {
        flex-direction: row;
    }

    .flexlist--2 .flexlist__item {
        flex-basis: 50%;
    }

    .flexlist--3 .flexlist__item {
        flex-basis: calc(100% / 3);
    }

    .flexlist--4 .flexlist__item {
        flex-basis: 25%;
    }
}



/* #region FEATURED */

.featured__container {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}


.featured {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    font-size: 1rem;
    color: var(--color-body);
}

.featured__info__cont {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1rem;
    background: #222222f3;
    background: var(--color-gray-5);
    opacity: .85;
    transition: opacity 500ms ease-in-out;
    color: #fff;
    z-index: 1;
}

.featured:nth-child(1),
.featured:nth-child(2),
.featured:nth-child(3) {
    display: flex;
}

.featured__photo__cont {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured__photo {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 1000ms ease-in-out,
                filter 500ms ease-in-out;
}

.featured__price {
    position: absolute;
    padding: .25rem .75rem;
    top: .5rem;
    left: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-red-lighter);
    z-index: 1;
}


.featured__tag {
    position: absolute;
    padding: .25rem .75rem;
    top: .5rem;
    right: 0;
    font-size: .8rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-dark-gray);
    z-index: 1;
}

    .featured__tag::before {
        position: absolute;
        left: -1rem;
        top: 0;
        bottom: 0;
        width: 1rem;
        content: '';
        background: var(--color-dark-gray);
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }

.featured__title {
    display: block;
    margin-bottom: .25rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.featured__subtitle {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: .9em;
    color: var(--color-gray-2);
    text-align: center;
}

.featured__tags {
    display: flex;
    flex-direction: row;
    margin: 0 0 1rem 0;
    padding: 0;
    list-style: none;
}

.featured__tags__item {
    border: 1px var(--color-light-gray) solid;
    color: var(--color-medium-gray);
    padding: .5rem;
    margin-right: .25rem;
    border-radius: 3px;
    font-size: .9em;
}

.featured__specs {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 500ms ease-in-out
}

.featured__specs__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 0 .25rem 0;
}

.featured__specs__item__name {
    font-size: .9rem;
}

.featured__specs__item__value {
    text-align: right;    
    font-size: .9rem;
}

.featured__cta {
    display: block;;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 35px;
    line-height: 35px;
    color: var(--color-white);
    background-color: var(--color-charcoal);
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    transition: background-color 500ms ease-in-out
}

.featured:hover .featured__cta {
    background-color: var(--color-dark-gray);
}

.featured:hover .featured__photo {
    /* transform: scale(1.1); */
}

.featured:hover .featured__info__cont {
    opacity: 1;
}


@media screen and (min-width: 40em) {

    .featured__specs {
    }


    .featured:hover .featured__specs {
        max-height: 150px;
    }

    .featured:hover .featured__subtitle {
    }

    .featured:nth-child(4) {
    }

    .featured__container {
        flex-direction: row;
    }

    
    .featured {
        width: 33%;
        transition: box-shadow 500ms ease-in-out;
    }

    .featured:hover {
        box-shadow: 5px 5px 15px 0 rgba(64, 64, 64, .1);
    }

    .featured:hover .featured__photo {
        filter: brightness(.75);
    }
    
}

@media screen and (min-width: 64em) {
    .featured__photo {
        height: 410px;
    }

    .featured:nth-child(4) {
    }

}

@media screen and (min-width: 90em) {
    
    .featured:nth-child(4) {
        display: flex;
    }
}

@media screen and (min-width: 116em) {
    
    .featured:nth-child(5) {
        display: flex;
    }
}

/* #endregion */


.block-header {
    display: block;
    padding: .75rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--color-charcoal);
    color: var(--color-white);
    border-radius: .25rem;
}

.hours-list {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.hours-list > li {
    display: flex;
    flex-direction: row;
    gap: .5rem;
}

.hours-list__day {
    font-weight: 600;
}


/* #region HOME */

ul.breadcrumbs {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;

    font-size: .85rem;
}

ul.breadcrumbs > li > a{
    color: var(--color-blue-lighter);

}

ul.breadcrumbs > li::after {
    content: '/';
    color: var(--color-light-gray);
    margin: 0 .5rem;
    font-size: .9em
}

ul.breadcrumbs > li:last-of-type::after {
    content: '';
}


/* #endregion */


.process-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 2rem;
}

.process-list__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: start;
    align-items: center;
    padding: 2rem 2rem;
    background: #f1eadb;
}


.process-list__item__icon__cont {
    display: flex;
    width: 80px;
    height: 80px;
    padding: 2rem;
    margin-bottom: 1rem;
    background: var(--color-extra-light-yellow);
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    box-shadow: 2px 2px 10px 0 rgba(0,0,0,.2);
}

.process-list__item__icon {
    color: var(--color-red); 
    font-size: 2rem !important;
}

.process-list__item__footer {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.process-list__item__title {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;

}

.process-list__item__caption {
    margin: 0;
    text-align: center;
}

@media screen and (min-width: 40em) {
    .process-list {
        flex-direction: row;
        justify-content: center;
    }

    .process-list__item {
        align-self: stretch;
        max-width: 33%;
    }

}


.start__cell {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center
}

.start__cell__logo {
    max-height: 175px;

/* #region HOME */

