/** base **/
:root{
    --narrow: 825px;
    --wideWidth: 1199px;
    --widestWidth: 1600px;
}

body, html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:visited {
    color: black;
}
.skip-to {
    left: 50%;
    transform: translateY(-100%);
    background: black;
    color: white;
    height: 30px;
    left: calc(100% / 2 - 95px);
    padding: 10px 25px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.25s;
    display: flex;
    align-items: center;
}

.offset-top-n1 img {
    margin-top: -1px;
}
@media (max-width: 1199px){
    .offset-top-n1 img {
        display: none;
    }
}

.mobileOnly {
	display: none;
}
@media (max-width: 799px){
	.mobileOnly{
		display: flex;
	}
}

.m0 { margin: 0!important; }
.mt0 { margin-top: 0!important; }
.p0 { padding: 0!important; }
.pt0 { padding-top: 0!important; }

iframe {
    border: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    padding: 2.5rem 1rem;
}

/** containers **/
.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.pt0 { padding-top: 0!important; }
.mt0 { margin-top: 0!important; }
.pb0 { padding-bottom: 0!important; }
.mb0 { margin-bottom: 0!important; }

@media (min-width: 1280px) { /** match root **/
    .container {
        max-width: 90%;
    }
}

@media (min-width: 1701px) { /** match root **/
    .container {
        max-width: 1600px;
    }
}

.container-narrow {
    width: 100%;
    max-width: var(--narrow);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1279px) {
    .container-narrow {
        max-width: 95%;
    }
}

/** end Widths **/

main#primary {
    min-height: calc(100vh - 196px);
}

a.accessibleClass {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.25s ease;
    cursor: pointer;
    z-index: 0;
    height: 24px;
    width: 40px;
    padding-right: 10px;
}
a.accessibleClass:where(:hover,:focus) img {
    transform: scale(1.2);
}

.skip-to:focus {
    transform: translateY(0%);
}


/** defaults **/
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    min-height: 45px;
    width: 100%;
    padding: 5px;
    border-radius: 0;
}
main {
    display: inherit;
    min-height: 100%;
}

.post, .page,
.page-content,
.entry-content,
.entry-summary {
    margin: 0;
}

@media (max-width: 799px){
    .entry-content > :is(h1,h2,h3,h4,p,code,.wp-block-buttons) {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (max-width: 599px){
    body.single .entry-content > * {
        padding-left: 0;
        padding-right: 0;
    }
}

.white-text,
.white-text strong,
.white-text strong a {
    color: white;
}

ul, ol, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-block-columns *:not(nav) :where(ul, ol, li) {
    padding-top: 5px;
    padding-bottom: 5px;
    list-style: inside;
}

.entry-content ul {
    margin-block-start: 1rem;
    margin-block-end: 1rem;
}

.visuallyhidden, .sr-only {
    position: absolute!important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

@media (max-width: 599px){
    .mobile-hide {
        position: absolute!important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px 1px 1px 1px);
        clip: rect(1px, 1px, 1px, 1px);
        white-space: nowrap;
    }
}

.btn {
    background-color: transparent;
    border: 2px solid transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

a { text-decoration: none; }

/****************/
/** effects **/
/****************/
body:not(.wp-admin) .lazy,
body:not(.wp-admin) .is-style-lazy,
body:not(.wp-admin) .is-style-lazy img,
body:not(.wp-admin) .lazy img,
body:not(.wp-admin) .is-style-rounded img,
body:not(.wp-admin) .is-style-rounded img {
    visibility: hidden;
    background-image: none;
    opacity: 0;
}

@media (min-width: 600px){
    body:not(.wp-admin) .willAnimate {
        visibility: hidden;
        background-image: none;
        opacity: 0;
    }
    body:not(.wp-admin) .willAnimate.active{
        visibility: visible;
        -webkit-transition: all 0.75s ease-in;
        transition: all 0.75s ease-in;
        opacity: 1;
    }
}

body:not(.wp-admin) .lazyFade,
body:not(.wp-admin) .lazyFade img {
    visibility: visible;
    -webkit-transition: all 0.75s ease-in;
    transition: all 0.75s ease-in;
    opacity: 1;
}

@media (min-width: 600px) {
    .fadeDown {
        position: relative;
        -webkit-animation: 0.5s ease-out fadeDown;
        -moz-animation: 0.5s ease-out fadeDown;
        animation: 0.5s ease-out fadeDown;
        animation-fill-mode: forwards;
    }
}

@media (max-width: 599px){
    body:not(.wp-admin) .is-style-lazy-slideleft {
        position: relative;
        transform: unset;
        visibility: visible;
        opacity: 1;
    }
}

@media (min-width: 1236px) {
    body:not(.wp-admin) .is-style-lazy-slideleft {
        position: relative;
        transform: translateX(-35rem) scale(0.5);
        visibility: hidden;
        opacity: 0;
    }

    body:not(.wp-admin) .is-style-lazy-slideleft.in-view {
        visibility: visible;
        -webkit-transition: all 0.75s ease-in;
        transform: translateX(0) scale(1);
        opacity: 1;
        transition: all 0.75s ease-in;
    }
}

@media (min-width: 600px) {
    body:not(.wp-admin) .willAnimate:not(.active) .has-step1,
    body:not(.wp-admin) .willAnimate:not(.active) .has-step3 {
        position: relative;
        visibility: hidden;
        transform: translateX(-35rem) scale(0.5);
        opacity: 0;
    }

    body:not(.wp-admin) .willAnimate:not(.active) .has-step2,
    body:not(.wp-admin) .willAnimate:not(.active) .has-step4 {
        position: relative;
        visibility: hidden;
        transform: translateX(35rem) scale(0.5);
        opacity: 0;
    }

    body:not(.wp-admin) .willAnimate.active .has-step1 {
        -webkit-transition: all 0.1s ease-in;
        transform: translateX(0) scale(1);
        transition: all 0.75s ease-in;
        transition-delay: 3.5s;
        visibility: visible;
        opacity: 1;
    }

    body:not(.wp-admin) .willAnimate.active .has-step2 {
        -webkit-transition: all 1s ease-in;
        transform: translateX(0) scale(1);
        transform-origin: right;
        transition: all 0.75s ease-in;
        transition-delay: 4.5s;
        visibility: visible;
        opacity: 1;
    }

    body:not(.wp-admin) .willAnimate.active .has-step3 {
        -webkit-transition: all 1s ease-in;
        transform: translateX(0) scale(1);
        transition: all 0.75s ease-in;
        transition-delay: 5.5s;
        visibility: visible;
        opacity: 1;
    }

    body:not(.wp-admin) .willAnimate.active .has-step4 {
        -webkit-transition: all 1s ease-in;
        transform: translateX(0) scale(1);
        transform-origin: right;
        transition: all 0.75s ease-in;
        transition-delay: 6.5s;
        visibility: visible;
        opacity: 1;
    }
}


.fadeToBlack {
    filter: grayscale(0);
    -webkit-animation: 1.25s ease-in-out fadeToBlack;
    -moz-animation: 1.25s ease-in-out fadeToBlack;
    animation: 1.25s ease-in-out fadeToBlack;
    animation-delay: 2.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeFromLeft {
    0% {
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeDown {
    0% {
        transform: translateY(-10rem);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0.4em);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeToBlack {
    0% {
        filter: grayscale(0);
    }
    100% {
        filter: grayscale(1);
    }
}

@media (min-width: 600px){
    .floating {
        -webkit-animation: floating 2s ease-out alternate infinite;
        -moz-animation: floating 2s ease-out alternate infinite;
        animation: floating 2s ease-out alternate infinite;
    }
}

.border-effect {
    border: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.border-shadow-img img {
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.zoom1 {
    transition: 0.15s ease-in-out;
    transform: scale(1);
}
.zoom1:is(:hover,:focus) {
    transform: scale(1.1);
}

figcaption a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/** Psuedo includes **/
.hasAfter:after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--wp--preset-color-primary-3);
    display: block;
    margin-top: 1rem;
}

.hasSmallAfter:after {
    content: "";
    width: 20px;
    height: 2.5px;
    background-color: var(--wp--preset-color-primary-3);
    display: block;
    margin-top: 0.25rem;
}

/** header **/
header#masthead {
    display: flex;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--wp--preset--color--blue-soft-1);
}
@media (max-width: 1024px){
    header#masthead {
        flex-direction: column;
    }
    header#masthead .main-navigation {
        margin-top: 2.5rem;
        margin-bottom: 0;
    }
}

header#masthead .site-branding {
    display: flex;
}
header#masthead .site-branding a {
    display: flex;
    min-width: auto;
}
header#masthead .site-branding img {
    width: 210px;
}
@media (max-width: 1024px){
    header#masthead .site-branding img {
        width: 260px;
    }
}

header#masthead .shield {
    display: flex;
    position: fixed;
    top: -15px;
    right: 2rem;
    overflow: hidden;
    width: 150px;
    filter: drop-shadow(2px 4px 6px black);
    z-index: 3;
    transition: 0.25s ease;
}
@media (max-width: 599px){
    header#masthead .shield {
        display: none;
    }
}

header#masthead .shield:where(:hover,:focus) {
    transform: scale(1.1);
}
header#masthead .shield img {
    display: flex;
    width: 150px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 1024px){
    header#masthead .shield img {
        width: 80%;
    }
}
header#masthead ul#primary-menu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 150px 0 auto;
}
@media (max-width: 1024px){
    header#masthead ul#primary-menu {
        margin: 0 auto;
    }
}
header#masthead ul#primary-menu a {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: calc(var(--wp--preset--font-size--paragraph) + 4px);
    padding: 0 0.5rem;
}
header#masthead ul#primary-menu li {
    transition: 0.15s ease;
}
header#masthead ul#primary-menu li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    transition: 0.25s ease;
    padding: 0.75rem;
}
header#masthead ul#primary-menu li:where(:hover,:focus){
    background-color: var(--wp--preset--color--blue-navy-2);
}
header#masthead ul#primary-menu li a:where(:hover,:focus) {
    color: var(--wp--preset--color--yellow-1);
}

.main-navigation ul ul {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    padding: 0.25rem;
    background-color: var(--wp--preset--color--blue-navy-2);
    transition: 0.15s ease;
}
.main-navigation ul ul li a {
    min-width: 205px;
}

/** inputs **/
form.wpcf7-form .flex {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 799px){
    form.wpcf7-form .flex {
        flex-direction: column;
    }
}
form.wpcf7-form :where(br, label) {
    display: none;
}
form.wpcf7-form p {
    padding: 0;
}
form.wpcf7-form h3 {
    font-family: var(--wp--preset--font-family--roboto-condensed);
    font-size: var(--wp--preset--font-size--small);
    color: var(--wp--preset--color--blue-navy-1);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"], input[type="range"],
input[type="date"], input[type="month"], input[type="week"], input[type="time"],
input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    padding: 1rem 1.25rem;
    border: 1px solid var(--wp--preset--color--blue-navy-1);
    color: #777;
    font-family: var(--wp--preset--font-family--roboto-condensed);
    font-size: var(--wp--preset--font-size--x-small);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    display: flex;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    background-color: var(--wp--preset--color--blue-soft-1);
    border: 1px solid var(--wp--preset--color--blue-navy-1);
    color: white;
    font-family: var(--wp--preset--font-family--roboto-condensed);
    font-size: var(--wp--preset--font-size--small);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    text-align: center;
    transition: 0.25s ease;
    cursor: pointer;
}
button, input[type="button"]:where(:hover,:focus),
input[type="reset"], input[type="submit"]:where(:hover,:focus) {
    background-color: var(--wp--preset--color--blue-navy-1);
}


/** links **/
button.btn.readmore {
    display: flex;
    margin: 0;
    padding: 0;
    border: none;
}
.btnLink {
    position: relative;
}
.btnLink a {
    border: 4px solid var(--wp--preset--color--blue-soft-1);
    color: white;
    text-transform: uppercase;
    background-color: var(--wp--preset--color--blue-soft-1);
    padding: 1rem 1.5rem;
    transition: 0.25s ease;
    text-decoration: none;
}
.btnLink a:where(:hover,:focus) {
    border: 4px solid var(--wp--preset--color--blue-navy-1);
    color: var(--wp--preset--color--blue-navy-1);
    background-color: transparent;
}


/** lists **/
.wp-block-columns *:not(nav) :where(ul, ol, li) {
    list-style: none;
}

/** pre **/
pre {
    background: transparent;
    font-family: inherit;
    line-height: inherit;
    margin: 0;
    padding: 1rem;
    overflow: inherit;
    max-width: fit-content;
    border: 3px solid white;
}
.description pre {
    margin-top: 1rem;
    letter-spacing: 2px;
    padding: 0;
}
.description pre a {
    display: flex;
    color: white;
    transition: 0.25s ease-in-out all;
    text-decoration: none;
    padding: 1rem;
}
.description pre a:is(:hover,:focus) {
    background-color: white;
    color: var(--wp--preset--color--blue-navy-1);
}

/** FOOTER **/
footer#colophon {
    background-color: var(--wp--preset--color--blue-soft-1);
    padding: 1.75rem 0;
    margin: 0 auto;
}
footer#colophon .site-info.top.container {
    display: flex;
    justify-content: space-around;
}
@media (max-width: 799px){
    footer#colophon .site-info.top.container {
        flex-direction: column;
        align-items: center;
    }
}

footer#colophon .site-info .logo a {
    display: block;
}
footer#colophon .site-info .logo a img {
    display: block;
    transition: 0.25s ease;
    height: 55px;
}
footer#colophon .site-info .logo a img:where(:hover,:focus) {
    filter: opacity(50%);
}

footer#colophon nav.footer-navigation ul {
    display: flex;
}
@media (max-width: 599px){
    footer#colophon nav.footer-navigation ul {
        flex-direction: column;
    }
}

footer#colophon nav.footer-navigation ul li {
    display: flex;
}
footer#colophon nav.footer-navigation ul li a {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--wp--preset--font-family-roboto-condensed);
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    transition: 0.25s ease;
}
@media (max-width: 1199px){
    footer#colophon nav.footer-navigation ul li a {
        padding: 1rem;
    }
}
@media (max-width: 599px){
    footer#colophon nav.footer-navigation ul {
        margin-top: 2rem;
    }
    footer#colophon nav.footer-navigation ul li {
        justify-content: center;
    }
}


footer#colophon nav.footer-navigation ul li a:where(:hover,:focus) {
    transition: 0.25s ease;
    background-color: var(--wp--preset--color--blue-navy-1);
}
main > article > footer {
    display: none;
}

@media (max-width: 799px){
    embed, iframe, object {
        width: 100%!important;
    }
    .fb-page[data-width] {
        width: 100%;
        padding: 1.5rem 0!important;
        overflow: hidden;
    }
    .fb_iframe_widget span {
        width: 100%!important;
    }
}

/** page Templates **/
body.page-template-page-navy {
    background-color: var(--wp--preset--color--blue-navy-1);
}
body.page-template-page-navy .ticker-container {
    background-color: var(--wp--preset--color--blue-navy-2);
}
body.page-template-page-navy .entry-content > * {
    color: white;
}

/** mobile spacing **/
@media (max-width: 599px){
    .mobileSpace p {
        padding: 0 1rem;
    }
    .mobileSpace .wp-block-spacer {
        max-height: 120px;
    }

    .p1 p, .p1 form {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 1199px) {
    figure.mobileSpace {
        padding: 1rem;
    }
}


/** pops **/
.popBG {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popRoot {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popRoot .popData {
    width: auto;
    height: 85%;
    position: relative;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 799px){
    .popRoot .popData {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .popRoot .popData img {
        object-fit: cover;
    }
}

.popRoot .popData .inner {
    border: 8px solid var(--wp--preset--color--blue-navy-1);
    padding: 0;
    position: relative;
    background-color: white;
    height: 100%;
    width: 100%;
}
.popRoot .popData .topPop {
    display: flex;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
@media (max-width: 799px){
    .popRoot .topPop {
        flex-direction: column;
    }
}

.popRoot .popData svg {
    cursor: pointer;
}
.popRoot .popData .topPop .r {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    justify-content: center;
    width: 100%;
}
@media (max-width: 799px){
    .popRoot .popData .topPop .r {
        padding: 1rem 0;
    }
}
.popRoot .popData .topPop .r h2 {
    line-height: 1.1;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.popRoot .popData .topPop .r span {
    letter-spacing: 1px;
}
.popRoot .popData .topPop img {
    width: 100%;
    pointer-events: none;
}
@media (max-width: 799px){
    .popRoot .popData .topPop img {
        width: 100%;
        height: 100%;
    }
}
.popRoot .popData .bottomPop {
    padding: 2rem 0 0;
    max-height: 200px;
    overflow: scroll;
}
.popRoot .popData .bottomPop > * {
    padding: 2rem 0;
}
@media (max-width: 799px){
    .popRoot .popData .bottomPop {
        padding: 0;
        margin-top: 0;
    }
}
.popRoot .popData svg {
    width: 50px;
    position: absolute;
    z-index: 1;
    right: 2px;
    top: 2px;
}

.instagram-media, .fb-page {
    padding: 0 1rem!important;
}

.ticker-item a {
    color: white;
}

.filterbgtxt1 {
	filter: drop-shadow(2px 4px 6px black);
}

@media (max-width: 599px){
	.is-style-top-right-img-abs:before {
		content: none;
	}
}