:root {
    --primary-color: #a70034;
    --heading-color: #222;
    --text-color: #6E7072;
    --text-color: #505050;
}
noscript img {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    border: none;
}

.hidden {
    display: none !important;
}

.visuallyhidden,
.visually-hidden,
.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    /* 1 */
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}
#skipmenu {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 0 1rem;
}

#skipmenu .focusable > span {
    padding: .563rem;
}
.button.sr-only.focusable:active,
.button.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    line-height: 2rem;
    overflow: visible;
    position: static;
    white-space: normal;
    width: auto;
    background: #fff;
    color: #222;
}

#skipsection .button.sr-only.focusable:active,
#skipsection .button.sr-only.focusable:focus {
    margin-top: 1rem;
}
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    color: var(--text-color);
}

.scrollable {
    height: 100%;
    width: 100%;
    position: relative;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    scroll-behavior: smooth;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


@media screen and (prefers-reduced-motion: reduce) {
    .scrollable {
        scroll-behavior: auto;
    }
}
#wrapper {
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    outline: none;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.ready #wrapper {
    opacity: 1;
}
#wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.35s 0.2s cubic-bezier(0.455, 0.030, 0.515, 0.955), visibility 0s 0.55s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -o-transition: opacity 0.35s 0.2s cubic-bezier(0.455, 0.030, 0.515, 0.955), visibility 0s 0.55s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transition: opacity 0.35s 0.2s cubic-bezier(0.455, 0.030, 0.515, 0.955), visibility 0s 0.55s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    z-index: 3;
}
#main {
    height: 100%;
    width: 100%;
    overflow: hidden;
    visibility: visible;
}
#secondary {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #fff;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.secondary.loading_content #secondary {
    transition: all .35s .25s cubic-bezier(0.4,0.0,0.6,1);
    -webkit-transition: all .35s .25s cubic-bezier(0.4,0.0,0.6,1);
    -moz-transition: all .35s .25s cubic-bezier(0.4,0.0,0.6,1);
    -ms-transition: all .35s .25s cubic-bezier(0.4,0.0,0.6,1);
    -o-transition: all .35s .25s cubic-bezier(0.4,0.0,0.6,1);
}
.secondary #secondary {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}
.secondary #main {
    visibility: hidden;
}
#off-view-menu {
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 100%;
    max-width: 400px;
    left: 100%;
    top: 0;
    background: #fff;
    visibility: hidden;
    -webkit-transform: translate3d(400px, 0, 0);
    transform: translate3d(400px, 0, 0);
    -webkit-transition: all 0.35s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -o-transition: all 0.35s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transition: all 0.35s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.isNav #off-view-menu {
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
}
#flyin-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: transparent;
    visibility: hidden;
    -webkit-transition: all 0.35s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -o-transition: all 0.35s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transition: all 0.35s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    z-index: 101;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flyin-panel__content {
    height: 100%;
    width: 100%;
    max-width: 40rem;
    background: #fff;
    position: relative;
}
#flyin-panel .scrollable {
    background: #f5f6f7;
}

#flyin-panel[data-direction="from-right"] .flyin-panel__content {
    margin: 0 0 0 auto;
}
.isFlyin #flyin-panel[data-direction="from-right"] .flyin-panel__content {
    -webkit-box-shadow: -10px 0px 10px 1px rgba(0, 0, 0, 0.3);
            box-shadow: -10px 0px 10px 1px rgba(0, 0, 0, 0.3);
}
.isFlyin #flyin-panel {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.isFlyin #wrapper:after,
.isNav #wrapper:after {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.35s 0s cubic-bezier(0.455, 0.030, 0.515, 0.955), visibility 0s 0s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -o-transition: opacity 0.35s 0s cubic-bezier(0.455, 0.030, 0.515, 0.955), visibility 0s 0s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transition: opacity 0.35s 0s cubic-bezier(0.455, 0.030, 0.515, 0.955), visibility 0s 0s cubic-bezier(0.455, 0.030, 0.515, 0.955);
}

.flyin-panel__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    z-index: 2;
}
@media screen and (max-width:479px){
    #flyin-panel__header {
        padding: 1rem;
    }
}
.flyin-panel__header .button--close,
.flyin-panel__header .button--close:focus,
.flyin-panel__header .button--close:hover, 
.flyin-panel__header .button--close:active {
    margin: 0;
}

.flyin-panel__header .button--close span {
    padding: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.flyin-panel__header .button--close span:before {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5em;
    content: "\e910";
    display: inline-block;
    margin-right: 0.25rem;
    margin-top: -3px;
}
.flyin-panel__header .button--close:focus span,
.flyin-panel__header .button--close:hover span, 
.flyin-panel__header .button--close:active span {
    background: #a70034;
    border-color: #a70034;
    color: #fff;
}
/* Site Masthead */
#masthead {
    padding: 1rem 0;
    background: #fff;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    /*position: -webkit-sticky;
    position: sticky;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    pointer-events: none;
}

.navigation {
    list-style: none;
    margin: 0 -1rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.navigation__item {
    margin: 0;
    padding: 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    
}
.navigation__link {
    pointer-events: all;
    text-decoration: none;
    text-transform: uppercase;
    color:#222;
}
.navigation__link:hover,
.navigation__link:focus {
    color: #a70034;
}
#mobile-nav .navigation {
    margin: 1rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
#mobile-nav .navigation__item {
    margin: 0.5rem 0;
}

#mobile-nav .navigation__link {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    color: #222;
}
#mobile-nav .navigation__link:hover,
#mobile-nav .navigation__link:focus {
    color: #a70034;
    text-decoration: underline ;
}
/* Modifiers */
.justify--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.justify--left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.justify--right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.text--uppercase {
    text-transform: uppercase;
}
.text--bold {
    font-weight: 900;
}

section {
    padding: 2rem 0;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    --margin: 1rem;
    --modifier: calc(40rem - 100%);
    margin: calc(--margin* -1);
    margin: -1rem;
}

.flex-container > * {
    background-color: #222;
    min-width: calc(33%-(var(--margin)*2));
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: calc(var(--modifier)*999);
    flex-basis: calc(var(--modifier)*999);
    height: 20vh;
    margin: var(--margin);
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    opacity: 0;
    /*transition: all 0.75s cubic-bezier(0.65, 0, 0.35, 1);*/
    -webkit-transition: all 0.75s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -o-transition: all 0.75s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transition: all 0.75s cubic-bezier(0.455, 0.030, 0.515, 0.955);
}

.inView {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}


/* ----------------------------- */
a {
    color: #a70034;
    text-decoration: none;
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
}
a:hover,
a:focus {
    color:#222;
    text-decoration: underline;
}
/* Button Styles */
button,
button:focus,
button:active,
.button,
.button:focus,
.button:active,
a.button,
a.button:focus,
a.button:active {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    padding: 0;
    margin: 1rem 0;
    line-height: 1;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
}

button > span,
.button > span {
    font-family: 'Avenir-Bold', 'Avenir', sans-serif;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.125em;
    text-align: center;
    outline: none;
    padding: 0.75rem 1rem;
    display: block;
    border: 1px solid;
    border-radius: 2px;
    -webkit-transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    -o-transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
    transition: all 0.25s cubic-bezier(0.455, 0.030, 0.515, 0.955);
}

button:focus > span,
.button:focus > span,
button.toggle-menu:focus {
    -webkit-box-shadow: 0 0 1px 2px #406ebc;
    box-shadow: 0 0 1px 2px #406ebc;
    -webkit-box-shadow: 0 0 1px 2px rgba(52, 152, 219, 1.0);
    box-shadow: 0 0 1px 2px rgba(52, 152, 219, 1.0)
}
button.toggle-menu {
    margin: 0;
    padding: 0.25rem 0.5rem 0.5rem;
    pointer-events: auto;
    background: #9a0030;
    color: #fff;
}
button.toggle-menu:hover,
button.toggle-menu:focus {
    background:#222;
}
button.toggle-menu:focus > span,
.button.toggle-menu:focus > span {
    -webkit-box-shadow: none;
            box-shadow: none;
}
button.toggle-menu > span {
    border: none;
    padding: 0;
}
button.toggle-menu > span.menu-icon {
    font-size: 1rem;
}
button.toggle-menu > span.menu-label {
    font-family: 'Avenir', sans-serif;
    text-transform: uppercase;
    font-size: 0.625rem;
}

.button--primary span {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}

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

.button--inverted span {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.button--inverted:hover span {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
.button--white span {
    border: 1px solid #fff;
    color: #fff;
}

.button--white:hover span {
    background: #fff;
    border: 1px solid #fff;
    color:#000;
}
.button--small > span {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.button--gray > span {
    background: #6E7072;
    border: 1px solid #6E7072;
    color: #fff;
}
.button--gray:hover > span,
.button--gray:focus > span {
    background: #a70034;
    border: 1px solid #a70034;
    color: #fff;
}

.button--black > span {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}
.button--black:hover > span,
.button--black:focus > span {
    background: #fff;
    border: 1px solid #fff;
    color: #A70034;
}


.button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 1rem -0.5rem 0 -0.5rem;
    padding: 0;
    list-style: none;
}
.button-group li {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
}
.button-group li button, 
.button-group li button:focus, 
.button-group li button:active, 
.button-group li .button, 
.button-group li .button:focus, 
.button-group li .button:active {
    margin: 0;
    width: 100%;
    text-align: center;
}
/* ----------------------------- */
/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 1rem 0;
}
/* Hide default HTML checkbox */
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
/* The slider */
.toggle-switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    border-radius: 2px;
  background-color: rgba(0,0,0,0.1);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.toggle-switch__slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 1px;
    bottom: 1px;
    border-radius: 2px;
    background-color: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
input:checked + .toggle-switch__slider {
    background-color: var(--primary-color);
}

input:focus + .toggle-switch__slider {
    -webkit-box-shadow: 0 0 1px var(--primary-color);
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .toggle-switch__slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}
/* Rounded Toggle Switch */
.toggle-switch__slider--round {
  border-radius: 30px;
}

.toggle-switch__slider--round:before {
  border-radius: 100%;
}


.control-group ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -0.5rem;
    padding: 0;
    list-style: none;
}
.control-group li {
    padding: 0 0.5rem;
}
/* ----------------------------- */
/* Section Headings */
.section-heading,
.section-heading:focus,
.section-heading:active {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    text-decoration: none;
    margin: 0 0 2rem 0;
}

.section-heading {
    display: block;
    margin: 0 0 1rem 0;
}

.section-heading {
    margin: 0;
    color: var(--heading-color);
}
/*
.section-heading:focus > h2 {}
*/

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.text_element,
.text-element {
    display: block;
    width: 100%;
}
.nowrap {
    white-space: nowrap;
}
.flex-video {
    position: relative;
    padding-top: 0;
    padding-bottom: 67.25%;
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
    background: #000;
}
.flex-video:before {
    content:'Loading ...';
    color: #fff;
    font: 0.725rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    -ms-transform: translate3d(-50%,-50%,0);
    -o-transform: translate3d(-50%,-50%,0);
}
.flex-video.widescreen {
    padding-bottom: 56.25%;
}
.flex-video.widescreen-alt {
    padding-bottom: 63.25%;
}
.flex-video.x-widescreen {
    padding-bottom: 42.75%;
}
.flex-video.portrait {
    padding-bottom: 178%;
}

.portrait-vid-limiter {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.snap-vid-limiter {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}

.flex-video.square-screen {
    padding-bottom: 100%;
}

.flex-video.vimeo {
    padding-top: 0;
}

.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.flex-frame {
    position: relative;
    padding-top: 25px;
    padding-bottom: 87.5%;
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.flex-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

iframe {
    width: 100%;
}

iframe {
    border: none;
}