/* roboto-300 - latin_latin-ext */
@font-face {
font-display: swap;
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url('../fonts/roboto-v32-latin_latin-ext-300.woff2') format('woff2');
}
/* roboto-300italic - latin_latin-ext */
@font-face {
font-display: swap;
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
src: url('../fonts/roboto-v32-latin_latin-ext-300italic.woff2') format('woff2');
}
/* roboto-regular - latin_latin-ext */
@font-face {
font-display: swap;
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('../fonts/roboto-v32-latin_latin-ext-regular.woff2') format('woff2');
}
/* roboto-italic - latin_latin-ext */
@font-face {
font-display: swap;©
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: url('../fonts/roboto-v32-latin_latin-ext-italic.woff2') format('woff2');
}
/* roboto-700 - latin_latin-ext */
@font-face {
font-display: swap;
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url('../fonts/roboto-v32-latin_latin-ext-700.woff2') format('woff2');
}
/* roboto-700italic - latin_latin-ext */
@font-face {
font-display: swap;
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
src: url('../fonts/roboto-v32-latin_latin-ext-700italic.woff2') format('woff2');
}
/* oswald-300 - latin_latin-ext */
@font-face {
font-display: swap;
font-family: 'Oswald';
font-style: normal;
font-weight: 300;
src: url('../fonts/oswald-v53-latin_latin-ext-300.woff2') format('woff2');
}
/* oswald-regular - latin_latin-ext */
@font-face {
font-display: swap;
font-family: 'Oswald';
font-style: normal;
font-weight: 400;
src: url('../fonts/oswald-v53-latin_latin-ext-regular.woff2') format('woff2');
}
/* oswald-700 - latin_latin-ext */
@font-face {
font-display: swap;
font-family: 'Oswald';
font-style: normal;
font-weight: 700;
src: url('../fonts/oswald-v53-latin_latin-ext-700.woff2') format('woff2');
}

:root {
    --max-width: 1800px;
    --base-font-size: 18px;
    --base-font-family: Roboto,sans-serif;
    --heading-font-family: Oswald,sans-serif;
    --body-bg-color: #ffffff;
    --hhm-red: #cc0502;
    --hhm-blue: #003063;
    --hhm-light-blue: #00b6ed;
    --hhm-lighter-blue: #7fdaf6;
    --hhm-dark-gray: #333333;
    --hhm-mid-gray: #666666;
    --hhm-light-gray: #cccccc;
    --hhm-lightest-gray: #f6f6f6;
    --hhm-shadow-gray: rgba(30, 30, 30, 0.2);
    --box-shadow-x: 0;
    --box-shadow-y: 2px;
    --box-shadow-blur: 2px;
    --box-shadow-spread: 1px;
    --box-shadow-color: rgba(30,30,30,.5);
    --hhm-gradient-top: rgb(0,151,220);
    --hhm-gradient-bottom: rgb(0,94,171);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: auto;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: auto;
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    background-color: var(--body-bg-color);
    color: var(--hhm-mid-gray);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family);
    font-weight: normal;
    padding: 0;
    margin: 0;
    color: var(--hhm-blue);
    text-align: initial;
}

a, a:link, a:visited {
    color: currentColor;
    text-decoration: none;
}

.page-builder-wrapper a, 
.page-builder-wrapper a:link, 
.page-builder-wrapper a:visited {
    color: var(--hhm-red);
    text-decoration: none;
}

.page-builder-wrapper .pb2-anchors a,
.page-builder-wrapper .pb2-anchors a:link,
.page-builder-wrapper .pb2-anchors a:visited  {
    color: currentColor;
}

a.btn-default {
    color: white;
}

select, input {
    font-family: var(--heading-font-family);
    font-size: 1rem;
    border: 1px solid var(--hhm-light-gray);
    background-color: var(--hhm-lightest-gray);
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--max-width);
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
    container-type: inline-size;
}

ul.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    position: relative;
}

ul.nav li {
    list-style-type: none;
    margin: 0;
    padding: 0 16px;
    transition: background-color .3s ease-in-out;
}

ul.nav li a {
    display: block;
}

ul.nav > li > ul {
    list-style-type: none;
    margin: 0;
    padding: 8px 0;
    gap: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
}

ul.nav > li > ul > li {
    list-style-type: none;
    margin: 0;
    padding: 8px 16px;
    display: block;
    width: 100%;
    background-color: var(--body-bg-color);
    transition: background-color .3s ease-in-out;;
}

ul.nav > li > ul > li:hover {
    background-color: var(--hhm-lightest-gray);
}

ul.nav > li > ul > li > ul,
ul.nav > li > ul > li > ul > li {
    padding: 8px 0;
}

ul.nav > li > ul.hidden {
    display: none;
}

section.header {
    z-index: 100;
    position: relative;
    font-family: var(--heading-font-family);
}

section.menu {
    z-index: 99;
    position: relative;
    font-family: var(--heading-font-family);
    font-size: 1.5rem;
    background-color: var(--hhm-blue);
    color: var(--body-bg-color);
    position: sticky;
    top: 0;
}

section.menu ul a {
    padding-left: 24px;
    position: relative;
}
section.menu ul a:before {
    content: '❯';
    position: absolute;
    left: 0;
    top: 0;
}

section.menu ul.nav > li {
    padding: 16px;
    cursor: pointer;
}

section.menu ul.nav li:hover {
    background-color: var(--hhm-gradient-top);
}

section.menu ul.nav > li > ul > li > ul > li {
    padding: 16px;
}

section.menu ul.nav > li > ul > li span {
    padding: 16px 16px 0;
    display: block;
}

section.menu ul.nav > li > ul > li span:after {
    display: block;
    content: '';
    height: 2px;
    width: 10%;
    background-color: currentColor;
    margin-top: 10px;
}

section.menu ul.nav > li > ul,
section.menu ul.nav > li > ul > li {
    background-color: var(--hhm-gradient-top);
    padding: 0;
}

section.menu ul.nav > li > ul > li > ul > li:hover {
    background-color: var(--hhm-blue);
}

.boebbels {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 0;
    align-content: space-around;
    width: 66%;
    justify-content: center;
    text-transform: uppercase;
    font-family: var(--heading-font-family);
    margin: -30px auto 0;
}

.boebbels > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.boebbels > div:hover img, 
.boebbels > div:hover svg {
    transform: scale(1.05);
    box-shadow: 0 4px 10px 0 rgba(150,150,150,.7);
}

.boebbels div img,
.boebbels div svg {
    height: 100px;
    width: 100px;
    padding: 10px;
    aspect-ratio: 1 / 1;
    background-color: var(--body-bg-color);
    border-radius: 10%;
    /* border: 1px solid var(--hhm-mid-gray); */
    transition: .2s ease-in-out;
    box-shadow: 0 1px 8px 0 rgba(150,150,150,.4);
}

.boebbels div span {
    margin-top: 2px;
}

.quote {
    padding: 100px 32px 128px;
    position: relative;
    transition: .3s ease-in-out;
}
.quote h1,
.quote h2 {
    color: var(--body-bg-color);
    font-size: 2em;
}
.quote p {
    color: var(--body-bg-color);
}
.quote:before {
    position: absolute;
    top: 0;
    left: 32px;
    content: "“";
    font-size: 10rem;
    color: var(--body-bg-color);
    font-family: var(--heading-font-family);
    transition: .3s ease-in-out;
    text-shadow: 0 0 0 var(--hhm-dark-gray);
}
.quote:after {
    position: absolute;
    bottom: -64px;
    right: 32px;
    content: "”";
    font-size: 10rem;
    color: var(--body-bg-color);
    font-family: var(--heading-font-family);
    transition: .3s ease-in-out;
    text-shadow: 0 0 0 var(--hhm-dark-gray);
}
.quote:hover {
    transform:scale(1.02);
}
.quote:hover::before {
    top: -8px;
    left:24px;
    text-shadow: 8px 8px 0 var(--hhm-shadow-gray);
}
.quote:hover::after {
    bottom:-76px;
    right: 24px;
    text-shadow: -8px -8px 0 var(--hhm-shadow-gray);
}

.card-full {
    position: relative;
    cursor: pointer;
}
.card-full:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0), var(--hhm-blue) 70%);
    /* background: linear-gradient(rgba(0,0,0,0), var(--hhm-gradient-bottom) 100%); */
    background-size: 1px 150%;
    transition: .3s ease-in-out;
}
.card-full:hover::before {
    background-position: 100px;
}
.card-full > div {
    padding: 16px;
    color: var(--body-bg-color);
}
.card-full:hover > div h3,
.card-full:hover > div h2 {
    transform: scale(1.02);
}
.card-full > div h3,
.card-full > div h2 {
    padding-inline: 64px;
    transition: .3s ease-in-out;
    color: var(--body-bg-color);
    line-height: 1.25em;
}
.card-full > div h3 {
    font-size: 1.5em;
}
.card-full > div h2 {
    font-size: 3em;
}

.card-2col {
    display: grid;
    grid-template-columns: 42% 58%;
    /*height:100%;display:flex;flex-direction:row;*/
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: var(--hhm-dark-gray);
    background-color: white;
}
.card-2col orca-gallery {
    z-index: 2;
}
.card-2col > div:nth-child(2) {
    flex-grow: 1;
    position: relative;
}
.card-2col > div:nth-child(3) {
    position: absolute;
    bottom: 16px;
    right: 16px;
}
.card-2col > div > div {
    position: relative;
    height: 100%;
}
.card-2col > div.gradient-light-dark > div:first-child > div > div {
    opacity: 0;
    transition: opacity .3s ease-in-out;
    display: -webkit-box;
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-2col h3 {
    font-size: 1em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.card-2col h2 {
    font-size: 1.7em;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-2col > div.gradient-light-dark > div:first-child > div {
    transition: transform .3s ease-in-out;
    padding: 16px;
}
.card-2col > div > div:first-child > div p,
.card-2col > div > div:first-child > div h2,
.card-2col > div > div:first-child > div h3 {
    padding-inline: 16px;
}
.card-2col:hover > div.gradient-light-dark > div:first-child > div {
    transform: translateY(-110%);
}
.card-2col:hover > div.gradient-light-dark > div > div > div {
    opacity: 1;
}
.card-2col.no-scroll-on-hover:hover > div.gradient-light-dark > div:first-child > div {
    transform: translateY(0%);
}
.card-2col.no-scroll-on-hover:hover > div.gradient-light-dark > div > div > div {
    opacity: 0;
}

.border-box {
    border-top: 1px solid var(--hhm-mid-gray);
    border-right: 1px solid var(--hhm-mid-gray);
    border-bottom: 1px solid var(--hhm-mid-gray);
    border-left: 1px solid var(--hhm-mid-gray);
    text-align: center;
    transition: .3s ease-in-out;
    cursor: pointer;
    background-color: white;
    height: 100%;
}
.border-box.left-border {
    border-left: 20px solid var(--hhm-gradient-top);
}
.border-box > img,
.border-box > svg {
    margin: 0 auto;
    padding: 10% 25%;
    display: block;
}
.border-box > a {
    display: block;
    font-family: var(--heading-font-family);
    color: var(--hhm-dark-blue);
    padding: 0 16px 16px;
}
.border-box:hover {
    transform: scale(1.025);
    /* border-left-color: var(--hhm-gradient-bottom); */
}
.border-box.left-border:hover {
    border-left-color: var(--hhm-red);
    border-left-width: 25px;
}

.box-gradient {
    /* background-color: var(--hhm-light-blue); */
    background: linear-gradient(var(--hhm-gradient-top), var(--hhm-gradient-bottom) 100%);
    color:var(--body-bg-color);
}

.gradient-light-dark {
    /* background: linear-gradient(var(--hhm-light-blue), var(--hhm-blue) 100%); */
    background: linear-gradient(var(--hhm-gradient-top), var(--hhm-gradient-bottom) 100%);
    background-size: 1px 200%;
    transition: .3s ease-in-out;
}
.gradient-light-dark:hover {
    background-position: 100%;
}
.gradient-light-dark,
.gradient-light-dark h1,
.gradient-light-dark h2,
.gradient-light-dark h3 {
    color: var(--body-bg-color);
}

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

.read-more a {
    padding: 8px 28px 8px 12px;
    background-color: var(--hhm-red);
    color: var(--body-bg-color);
    display: inline-block;
    position: relative;
    transition: .2s ease-in-out;
    /* box-shadow: -2px 4px 0 2px black; */
}
.read-more a:after {
    content: '❯';
    position: absolute;
    right: 8px;
    top: 6px;
    transition: .2s ease-in-out;
}
.read-more a:hover {
    transform: translateY(1px) translateX(-1px);
    /* box-shadow: -1px 2px 0 2px black; */
}
.read-more a:hover::after {
    right: 6px;
}

.parallax {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    overflow: hidden;
}

_::-webkit-full-page-media, _:future, :root .parallax {
    background-attachment: initial;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
}

.parallax > div {
    position: absolute;
    bottom: -200%;
    left: 0;
    width: 100%;
    text-align: center;
}
.parallax h2 {
    font-family: var(--heading-font-family);
    font-size: 10em;
    text-transform: uppercase;
    color: black;
    mix-blend-mode: lighten;
    background-color: var(--body-bg-color);
    display: inline-block;
    padding: 0 128px;
    line-height: 1.25em;
    border-radius: 16px;
    opacity: 0;
    transform: scale(0.8);
    outline: 2px solid #aaa;
    text-shadow: 0 0 3px #333;
    user-select: none;
}

.photo-overlay {
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color:var(--hhm-light-blue);
    color: var(--body-bg-color);
    padding: 8px 16px 8px 32px;
    transition: .2s ease-in-out;
    box-shadow: 0 0 0 0 var(--hhm-dark-gray);
    pointer-events: none;
}

.jf-card {
    background-color: white;
}

.jf-card .jf-card-photo-wrapper:hover .photo-overlay {
    transform: scale(1.25);
    box-shadow: 4px 4px 0 2px var(--hhm-dark-gray);
}

.jf-card-text table {
    width: 100%;
    padding: 8px 0;
}

.jf-card a {color:white;}
.accordion-item-body-content table tbody tr td, .jf-card-text table tbody tr td {
    padding: 2px 0;
}

.shadow {
    box-shadow: var(--box-shadow-x) var(--box-shadow-y) var(--box-shadow-blur) var(--box-shadow-spread) var(--box-shadow-color);
}

ul.icon-list {
    margin: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    font-family: var(--heading-font-family);
    font-size: 1.75em;
}
ul.icon-list li {
    margin: 16px 0 0 2em;
    padding: 0;
    list-style: none;
}
ul.icon-list li img {
    height: 1em;
    padding-right: 1em;
}

.blue-bg {
    padding: 8px 16px;
    background-color: var(--hhm-blue);
    font-size: 2em;
    font-family: var(--heading-font-family);
    color: white;
}

#content {
    min-height: 80%;
    height: auto;
    padding-top: 0;
    margin-bottom: 0;
}
.page-builder-wrapper {
    padding-top:0 !important;
}

.hide-lg {
    display: none;
}

.offscreen {
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    transition: left 0.5s ease-out;
    padding: 32px 16px 128px 16px;
    background-color: var(--hhm-blue);
    font-family: var(--heading-font-family);
    color: white;
    font-size: 0.8em;
}

.menu .offscreen ul.nav {
    flex-direction: column;
    /*max-height: 800px;*/
}

.menu .offscreen ul.nav > li > ul {
    position: relative;
    top: 0;
}

.menu .offscreen .mobile-show {
    display: block;
}

.menu .offscreen ul.nav li,
.menu .offscreen ul.nav > li > ul > li {
    transition: none;
}

.menu .offscreen .nav .hidden {
    display: block;
}

section.menu .offscreen ul.nav > li > ul, section.menu .offscreen ul.nav > li > ul > li {
    background-color: inherit;
}

section.menu .offscreen ul.nav li:hover {
    background-color: inherit;
}

.pb2-custom-card {
    grid-template-rows: 1fr 1fr;
}

.light-border {
    border: 1px solid var(--hhm-lightest-gray);
}

.pb2-anchors {
    position: fixed;
    margin: 0;
    padding: 16px;
    z-index: 10;
    display: grid;
    /* height: 100vh; */
    top: 0;
    align-items: center;
}

.pb2-anchors > div {
    background-color: white;
    padding: 16px;
    width: 290px;
    font-size: 1.1em;
}

.pb2-anchors > div h3 {
    margin: 16px 0;
}

.pb2-anchors > div a {
    color: var(--hhm-blue);
    font-family: var(--heading-font-family);
}

.pb2-anchors > div span {
    display: inline-block;
    color: #cc0502;
    transform: rotate(0deg);
}

.pb2-filter-element {
    padding: 0 16px 1em 16px;
    min-height: 100px;
}

.clamped-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.header-logo {
    width: 150px;
}

section.menu.mobile {
    font-size: 1.25em;
}

@media(max-width: 1366px) {
    .pb2-anchors {
        display: none;
    }
    .page_builder_container {
        margin-left: 0 !important;
    }
    .pb1-resp {
        grid-template-columns: 100vw !important;
    }
    body {
        width: 100vw;
        overflow-x: hidden;
    }
    .hide-sm {
        display: none;
    }
    .hide-lg {
        display: block;
    }
    footer {
        font-size: 0.8em;
    }
    .pb2-rich-text-wrapper,
    .parallax h2 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .parallax h2 {
        font-size: 4em;
        padding-bottom: 20px;
    }
    .boebbels {
        display: none;
    }
    .card-full > div h2 {
        font-size: 2.5rem;
    }
    .pb2-custom-card {
        grid-template-rows: auto 1fr;
    }
    /*
    .card-full .read-more,
    .pb2-custom-card .read-more,
    .card-2col .read-more {
        display: none;
    }
    */
    .container {
        padding-inline: 16px;
    }
    .header-logo {
        width: 120px;
    }
}

@container (min-inline-size: 450px) {
    .jf-card {
    }
}

@container (max-inline-size: 1200px) {
    .card-2col {
        grid-template-columns: 42% 58%;
    }
    .jf-cards-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@container (max-inline-size: 800px) {
    .card-2col,
    .jf-cards-container {
        grid-template-columns: 1fr !important;
    }
    .card-2col {
        grid-template-rows: max-content;
        /*flex-direction:column;*/
    }
    .card-2col h2 {
        font-size: 1.4em;
    }
    .card-2col:hover > div.gradient-light-dark > div:first-child > div {
        transform: translateY(-90%);
    }
    .card-2col.no-scroll-on-hover:hover > div.gradient-light-dark > div:first-child > div {
        transform: translateY(0%);
    }
    .card-full > div h3,
    .card-full > div h2 {
        padding-inline: 16px;
    }.card-full > div h2 {
        font-size: 2.5em;
    }
    ul.icon-list {
        font-size: 1.2em;
    }
}

/* Clean up 
.pb-horizontal-scroller {
    padding: 0 !important;
}*/