:root {
    /* Typography */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Source Sans 3", sans-serif;

    /* Brand — Orange (CTAs, accents, emphasis) */
    --color-orange: #e87722;
    --color-orange-bright: #f08832;
    --color-orange-deep: #c05a28;
    --color-orange-rgb: 232, 119, 34;

    /* Brand — Dark surfaces (header, footer, stats, testimonials) */
    --color-ink: #121820;
    --color-ink-soft: #1c1c1c;
    --color-ink-elevated: #242b3a;
    --color-ink-rgb: 18, 24, 32;

    /* Brand — Light surfaces */
    --color-white: #ffffff;
    --color-surface: #f9f9f9;
    --color-surface-warm: #f5f3ef;

    /* Text */
    --color-text: #121820;
    --color-text-muted: #555555;
    --color-text-light: #8b93a7;
    --color-text-inverse: #ffffff;
    --color-text-inverse-muted: #d1d1d1;

    /* Feature pillars */
    --color-schools: #1b365d;
    --color-quests: #3e5c45;
    --color-self-mastery: #c05a28;
    --color-teal: #2a6b6b;

    /* Borders & overlays */
    --color-border: #d8dde6;
    --color-border-muted: #cccccc;
    --color-border-dark: rgba(255, 255, 255, 0.12);
    --color-border-ghost: rgba(255, 255, 255, 0.22);
    --color-overlay-light: rgba(255, 255, 255, 0.88);
    --color-overlay-dark: rgba(0, 0, 0, 0.5);
    --color-orange-tint: rgba(var(--color-orange-rgb), 0.12);
    --color-orange-tint-strong: rgba(var(--color-orange-rgb), 0.16);

    /* Semantic */
    --color-success: #3e5c45;
    --color-danger: #c62828;

    /* Layout */
    --top-bar-height: 48px;
    --radius-ui: 4px;
    --site-inline-pad: 2%;

    /* Shared left/right edge alignment for full-width sections (content
       boxes, icon boxes, latest news, inserts, footer). Mirrors the
       content-boxes.css --cbox-edge-gutter formula so text/copy edges line
       up across every section at every breakpoint. */
    --section-content-max: 1200px;
    --section-edge-pad: clamp(24px, 6vw, 96px);
    --section-edge-gutter: max(var(--section-edge-pad), calc((100% - var(--section-content-max)) / 2 + var(--section-edge-pad)));
    --shadow-header: 0 10px 28px rgba(var(--color-ink-rgb), 0.28);
    --shadow-dropdown: 0 16px 34px rgba(var(--color-ink-rgb), 0.14);
    --shadow-menu: 0 18px 40px rgba(var(--color-ink-rgb), 0.18);
    --gradient-cta: linear-gradient(135deg, #e87722 0%, #8b3a62 100%);
}

body.has_top_info_bar {
    --top-bar-height: 48px;
}

@media screen and (max-width: 1200px) {
    :root {
        --section-edge-pad: clamp(24px, 5vw, 72px);
    }
}

@media screen and (max-width: 1080px) {
    :root {
        --section-edge-pad: clamp(22px, 4vw, 48px);
    }
}

@media screen and (max-width: 767px) {
    :root {
        --section-edge-pad: var(--site-inline-pad, 24px);
        --section-edge-gutter: var(--site-inline-pad, 24px);
    }
}

@media screen and (max-width: 440px) {
    :root {
        --section-edge-pad: 14px;
        --section-edge-gutter: 14px;
    }
}

html {
    width: 100%;
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
}

@media screen and (max-width: 440px) {
    body {
        min-width: 0;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 30px 0 10px 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: 2.8em;
}

h2 {
    font-size: 2.4em;
}

h3 {
    font-size: 2em;
}

h4 {
    font-size: 1.6em;
}

h5 {
    font-size: 1.2em;
}

h6 {
    font-size: 1em;
}

table {
    border-collapse: collapse;
    border-color: var(--color-border-muted);
}

table tr th {
    background-color: var(--color-text-muted);
    border-color: var(--color-border-muted);
    color: var(--color-text-inverse);
}

table tr td {
    border-color: var(--color-border-muted);
}

img {
    border: 0;
}

hr {
    background-color: var(--color-border-muted);
    border: 0;
    height: 1px;
}

iframe {
    border: 0;
}

.hide_meta {
    display: none;
}

.top_notice {
    width: 100%;
    height: auto;
    padding: 5px 0;
    margin: 0 auto;
    position: relative;
    display: none;
    clear: both;
}

.jump_anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

.red_notice {
    width: calc(100% - 20px);
    height: auto;
    padding: 10px;
    margin: 10px auto;
    position: relative;
    display: table;
    clear: both;
    background-color: var(--color-danger);
    color: var(--color-text-inverse);
    font-family: var(--font-body);
    text-align: center;
}

*:focus {
    outline: none;
}

.gen_btn {
    width: auto;
    height: auto;
    padding: 10px 35px;
    background-color: var(--color-orange);
    color: var(--color-text-inverse);
    font-size: 1em;
    text-transform: uppercase;
    border-radius: var(--radius-ui);
    border: 0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.gen_btn:hover {
    background-color: var(--color-orange-deep);
}

@media only screen and (max-width: 440px) {
    .gen_btn {
        width: 100%;
    }
}

.gen_btn_right {
    float: right;
}

.gen_btn.disabled {
    background-color: #ccc; /* Grey out the button */
    cursor: not-allowed; /* Show a not-allowed cursor */
}

.grecaptcha-badge {
    display: none !important;
}

.hfield {
    display: none !important;
}

/* TOP INFO BAR */
.top_info_bar {
    --top-bar-inline-pad: var(--site-inline-pad);
    width: 100%;
    height: var(--top-bar-height);
    padding: 0 var(--top-bar-inline-pad);
    margin: 0;
    position: relative;
    top: auto;
    z-index: 100;
    display: block;
    box-sizing: border-box;
    background-color: #0f141c;
    color: var(--color-text-inverse);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    animation: topBarReveal 0.55s ease-out both;
}

@media screen and (max-width: 1200px) {
    .top_info_bar {
        --top-bar-inline-pad: 3%;
    }
}

@media screen and (max-width: 1080px) {
    .top_info_bar {
        --top-bar-inline-pad: 4%;
    }
}

@media screen and (max-width: 767px) {
    .top_info_bar {
        --top-bar-inline-pad: 20px;
    }
}

@media screen and (max-width: 560px) {
    .top_info_bar {
        --top-bar-inline-pad: 16px;
        height: auto;
        min-height: 44px;
    }
}

@media screen and (max-width: 440px) {
    .top_info_bar {
        --top-bar-inline-pad: 14px;
    }
}

.top_info_bar_inner {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: var(--top-bar-height);
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
}

@media screen and (max-width: 560px) {
    .top_info_bar_inner {
        min-height: 44px;
        gap: 12px;
    }
}

.top_info_bar_left,
.top_info_bar_right {
    display: flex;
    align-items: center;
    min-width: 0;
}

.top_info_bar_left {
    flex: 1 1 auto;
    gap: 0;
}

.top_info_bar_right {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 22px;
}

@media screen and (max-width: 1080px) {
    .top_info_bar_right {
        gap: 18px;
    }
}

@media screen and (max-width: 767px) {
    .top_info_bar_right {
        gap: 14px;
    }
}

.top_info_bar_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--color-text-inverse);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.top_info_bar_link .top_info_bar_icon,
.top_info_bar_link svg {
    width: 14px;
    height: 14px;
    min-width: 14px;
    max-width: 14px;
    min-height: 14px;
    max-height: 14px;
    flex: 0 0 14px;
    display: block;
    overflow: hidden;
}

.top_info_bar_icon {
    flex: 0 0 auto;
    color: currentColor;
}

.top_info_bar_text {
    flex: 0 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top_info_bar_divider {
    width: 1px;
    height: 14px;
    margin: 0 16px;
    background-color: rgba(255, 255, 255, 0.28);
    flex: 0 0 auto;
}

@media screen and (max-width: 1080px) {
    .top_info_bar_divider {
        margin: 0 12px;
    }
}

@media screen and (max-width: 767px) {
    .top_info_bar_email,
    .top_info_bar_divider {
        display: none;
    }
}

@media screen and (max-width: 560px) {
    .top_info_bar_link {
        font-size: 12px;
        gap: 6px;
    }
}

.top_info_bar_socials {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

@media screen and (max-width: 1080px) {
    .top_info_bar_socials {
        gap: 12px;
    }
}

@media screen and (max-width: 560px) {
    .top_info_bar_socials {
        gap: 10px;
    }
}

@media screen and (max-width: 440px) {
    .top_info_bar_socials {
        display: none;
    }
}

.top_info_bar_social_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: var(--color-text-inverse);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.top_info_bar_social_link .top_info_bar_icon,
.top_info_bar_social_link svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    flex: 0 0 16px;
    display: block;
    overflow: hidden;
}

.top_info_bar_link:hover,
.top_info_bar_link:focus-visible {
    color: var(--color-orange-bright);
    outline: none;
}

.top_info_bar_social_link:hover,
.top_info_bar_social_link:focus-visible {
    color: var(--color-orange-bright);
    transform: translateY(-1px);
    outline: none;
}

.top_info_bar_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin: 6px 0;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius-ui);
    background-color: var(--color-orange);
    color: var(--color-text-inverse);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-sizing: border-box;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.top_info_bar_btn:hover,
.top_info_bar_btn:focus-visible {
    background-color: var(--color-orange-deep);
    color: var(--color-text-inverse);
    transform: translateY(-1px);
    outline: none;
}

@media screen and (max-width: 1080px) {
    .top_info_bar_btn {
        min-height: 34px;
        padding: 0 18px;
        font-size: 11px;
    }
}

@media screen and (max-width: 560px) {
    .top_info_bar_btn {
        min-height: 32px;
        margin: 5px 0;
        padding: 0 14px;
        font-size: 10px;
        letter-spacing: 0.06em;
    }
}

@media screen and (max-width: 440px) {
    .top_info_bar_btn {
        padding: 0 12px;
    }
}

/* HEADER */
.header .header_menu_link.is-active,
.header .header_dropdown_link.is-active {
    color: var(--color-ink) !important;
}

.header .header_menu_link.is-active:hover,
.header .header_menu_link.is-active:focus-visible,
.header .header_dropdown_link.is-active:hover,
.header .header_dropdown_link.is-active:focus-visible {
    color: var(--color-orange) !important;
}

.header.sticky .header_menu_link.is-active,
.header.sticky .header_dropdown_link.is-active {
    color: var(--color-text-inverse) !important;
}

.header.sticky .header_menu_link.is-active:hover,
.header.sticky .header_menu_link.is-active:focus-visible,
.header.sticky .header_dropdown_link.is-active:hover,
.header.sticky .header_dropdown_link.is-active:focus-visible {
    color: var(--color-orange) !important;
}

@media screen and (max-width: 1080px) {
    .header .header_menu_link.is-active,
    .header .header_dropdown_link.is-active {
        color: var(--color-ink) !important;
    }

    .header.sticky .header_menu_link.is-active,
    .header.sticky .header_dropdown_link.is-active {
        color: var(--color-text-inverse) !important;
    }
}

.header {
    --header-inline-pad: var(--site-inline-pad);
    --header-scrollbar-compensate: 0px;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 88px;
    padding: 0 var(--header-inline-pad);
    margin: 0;
    position: absolute;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    z-index: 4000;
    display: block;
    box-sizing: border-box;
    background-color: transparent;
    pointer-events: auto;
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.header.header_no_banner {
    position: sticky;
    top: var(--top-bar-height);
    left: auto;
    right: auto;
    background-color: var(--color-surface);
}

.header.sticky {
    position: fixed;
    top: var(--top-bar-height);
    background-color: var(--color-ink);
    box-shadow: var(--shadow-header);
    pointer-events: auto;
}

.header.header_no_banner.sticky {
    position: sticky;
    top: var(--top-bar-height);
    left: auto;
    right: auto;
    background-color: var(--color-ink);
    box-shadow: var(--shadow-header);
}

.header.nav_open {
    right: max(0px, var(--header-scrollbar-compensate));
    width: auto !important;
    max-width: none;
    padding-right: var(--header-inline-pad);
}

@media screen and (max-width: 1080px) {
    .header {
        --header-inline-pad: 4%;
        padding: 0 var(--header-inline-pad);
        min-height: 78px;
    }

    .header.header_has_banner {
        position: sticky;
        top: var(--top-bar-height);
        left: auto;
        right: auto;
        background-color: var(--color-surface);
    }

    .header.header_has_banner.sticky {
        position: sticky;
        top: var(--top-bar-height);
        left: auto;
        right: auto;
        background-color: var(--color-ink);
        box-shadow: var(--shadow-header);
    }
}

@media screen and (max-width: 560px) {
    .header {
        --header-inline-pad: 20px;
        padding: 0 var(--header-inline-pad);
        min-height: 70px;
    }
}

.header_inner {
    width: 100%;
    height: auto;
    min-height: inherit;
    padding: 0;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
    pointer-events: auto;
}

@media screen and (max-width: 1080px) {
    .header_inner {
        padding: 0;
        gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    .header_inner {
        padding: 5px 0;
        gap: 16px;
    }
}

@media screen and (max-width: 560px) {
    .header_inner {
        padding: 10px 0;
        gap: 16px;
    }
}

.header_inner.sticky {
    padding: 0;
}

.header_logo {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    z-index: 2;
    text-decoration: none;
    pointer-events: auto;
}

.header_logo_full,
.header_logo_sticky {
    width: auto;
    height: 80px;
    max-width: 280px;
    padding: 0;
    margin: 0;
    display: block;
    object-fit: contain;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

@media screen and (max-width: 1080px) {
    .header_logo_full,
    .header_logo_sticky {
        height: 65px;
        max-width: 260px;
    }
}

@media screen and (max-width: 767px) {
    .header_logo_full,
    .header_logo_sticky {
        height: 55px;
        max-width: 250px;
    }
}

@media screen and (max-width: 560px) {
    .header_logo_full,
    .header_logo_sticky {
        height: 50px;
        max-width: 220px;
    }
}

@media screen and (max-width: 440px) {
    .header_logo_full,
    .header_logo_sticky {
        height: 45px;
        max-width: 210px;
    }
}

.header_logo_sticky {
    position: absolute;
    left: 0;
    top: 50%;
    height: 65px;
    width: auto;
    max-width: 65px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.88);
    pointer-events: none;
}

@media (max-width: 1080px) {
    .header_logo_sticky {
        height: 55px;
        max-width: 55px;
    }
}

.header.sticky .header_logo_full {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.92);
}

.header.sticky .header_logo_sticky {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.header_toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0 0 0 auto;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--color-ink-rgb), 0.14);
    border-radius: 12px;
    background-color: var(--color-overlay-light);
    cursor: pointer;
    z-index: 3;
    pointer-events: auto;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.header.sticky .header_toggle {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-border-ghost);
}

@media screen and (max-width: 1080px) {
    .header_toggle {
        display: inline-flex;
    }
}

.header_toggle_bars {
    width: 20px;
    height: 14px;
    position: relative;
    display: block;
}

.header_toggle_bars span {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    display: block;
    border-radius: 2px;
    background-color: var(--color-ink);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        top 0.3s ease,
        background-color 0.3s ease;
}

.header.sticky .header_toggle_bars span {
    background-color: var(--color-white);
}

.header_toggle_bars span:nth-child(1) {
    top: 0;
}

.header_toggle_bars span:nth-child(2) {
    top: 6px;
}

.header_toggle_bars span:nth-child(3) {
    top: 12px;
}

.header.nav_open .header_toggle_bars span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.header.nav_open .header_toggle_bars span:nth-child(2) {
    opacity: 0;
}

.header.nav_open .header_toggle_bars span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.header_nav {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 28px;
    pointer-events: auto;
}

@media screen and (max-width: 1080px) {
    .header_nav {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 88px);
        padding: 18px 18px 22px 18px;
        margin: 0;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        overflow-x: hidden;
        overflow-y: auto;
        border: 1px solid rgba(var(--color-ink-rgb), 0.1);
        border-radius: 16px;
        background-color: var(--color-white);
        box-shadow: var(--shadow-menu);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
        box-sizing: border-box;
        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
        z-index: 5;
    }

    .header.sticky .header_nav {
        background-color: var(--color-ink);
        border-color: var(--color-border-dark);
    }

    .header.nav_open .header_nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media screen and (max-width: 560px) {
    .header_nav {
        position: fixed;
        top: 78px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        max-height: calc(100vh - 94px);
        box-sizing: border-box;
    }

    .header.sticky .header_nav,
    .header.header_no_banner .header_nav {
        top: 72px;
        max-height: calc(100vh - 88px);
    }
}

.header_menu {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
}

@media screen and (max-width: 1080px) {
    .header_menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }
}

.header_menu_item {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    list-style: none;
}

.header_menu_item_main {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

@media screen and (max-width: 1080px) {
    .header_menu_item {
        width: 100%;
    }

    .header_menu_item_main {
        width: 100%;
        display: flex;
        align-items: stretch;
        gap: 2px;
    }
}

.header_menu_link {
    width: auto;
    height: auto;
    padding: 10px 14px;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 0.92em;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2em;
    text-decoration: none;
    transition: color 0.25s ease;
    pointer-events: auto;
}

.has_dropdown > .header_menu_item_main > .header_menu_link {
    padding-right: 2px;
}

.header_dropdown_toggle {
    width: auto;
    height: auto;
    min-width: 1.1em;
    min-height: 1.1em;
    padding: 10px 6px 10px 2px;
    margin: 0 0 0 -2px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    line-height: 1;
    pointer-events: auto;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.header_dropdown_toggle .mc-svg,
.header_dropdown_toggle svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.header_dropdown_toggle:hover,
.header_dropdown_toggle:focus-visible {
    color: var(--color-orange);
    outline: none;
}

.header.sticky .header_dropdown_toggle {
    color: var(--color-text-inverse);
}

.header.sticky .header_dropdown_toggle:hover,
.header.sticky .header_dropdown_toggle:focus-visible {
    color: var(--color-orange);
}

.header_menu_link::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 14px;
    bottom: 4px;
    background-color: var(--color-orange);
    transition: width 0.3s ease;
}

.header_menu_link:hover,
.header_menu_link:focus-visible {
    color: var(--color-orange);
    outline: none;
}

.header_menu_link:hover::after,
.header_menu_link:focus-visible::after,
.header_menu_link.is-active::after {
    width: calc(100% - 28px);
}

.header_menu_link.is-active {
    color: var(--color-ink);
}

.header.sticky .header_menu_link {
    color: var(--color-text-inverse);
}

.header.sticky .header_menu_link:hover,
.header.sticky .header_menu_link:focus-visible {
    color: var(--color-orange);
}

.header.sticky .header_menu_link.is-active {
    color: var(--color-text-inverse);
}

.header_menu_chevron {
    font-size: 0.72em;
    transition: transform 0.3s ease;
}

.has_dropdown:hover .header_menu_chevron,
.has_dropdown.is_open .header_menu_chevron {
    transform: rotate(180deg);
}

@media screen and (max-width: 1080px) {
    .header_menu_link {
        width: auto;
        flex: 1 1 auto;
        justify-content: flex-start;
        padding: 14px 12px;
        box-sizing: border-box;
        border-radius: 10px;
    }

    .header_menu_link::after {
        display: none;
    }

    .header_dropdown_toggle {
        flex: 0 0 46px;
        width: 46px;
        min-height: 46px;
        padding: 0;
        border-radius: 10px;
    }

    .header.sticky .header_menu_link:hover,
    .header.sticky .header_menu_link:focus-visible,
    .header.sticky .header_menu_link.is-active,
    .header.sticky .header_dropdown_toggle:hover,
    .header.sticky .header_dropdown_toggle:focus-visible {
        background-color: var(--color-orange-tint);
    }

    .header:not(.sticky) .header_menu_link:hover,
    .header:not(.sticky) .header_menu_link.is-active,
    .header:not(.sticky) .header_dropdown_toggle:hover,
    .header:not(.sticky) .header_dropdown_toggle:focus-visible {
        background-color: rgba(var(--color-orange-rgb), 0.1);
    }
}

.header_dropdown {
    width: 240px;
    min-width: 220px;
    height: auto;
    padding: 10px;
    margin: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    display: block;
    list-style: none;
    border: 1px solid rgba(var(--color-ink-rgb), 0.1);
    border-radius: 14px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
    z-index: 20;
}

.has_dropdown:hover .header_dropdown,
.has_dropdown:focus-within .header_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.header.sticky .header_dropdown {
    background-color: var(--color-ink-elevated);
    border-color: rgba(255, 255, 255, 0.08);
}

@media screen and (max-width: 1080px) {
    .header_dropdown {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 4px 0 8px 0;
        margin: 0;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        display: none;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        pointer-events: auto;
        overflow: visible;
    }

    .has_dropdown:hover .header_dropdown,
    .has_dropdown:focus-within .header_dropdown {
        left: auto;
        right: auto;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        pointer-events: auto;
    }

    .has_dropdown.is_open .header_dropdown {
        display: block;
        transform: none !important;
    }

    .header.sticky .header_dropdown {
        background: transparent;
        border: 0;
    }

    .header_dropdown li {
        width: 100%;
    }

    .header_dropdown_link {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        transform: none !important;
        margin: 0;
        left: auto;
    }
}

.header_dropdown li {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header_dropdown_link {
    width: 100%;
    height: auto;
    padding: 11px 12px;
    margin: 0;
    position: relative;
    display: block;
    box-sizing: border-box;
    border-radius: 10px;
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 0.88em;
    font-weight: 500;
    line-height: 1.35em;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
    pointer-events: auto;
}

.header_dropdown_link:hover,
.header_dropdown_link:focus-visible,
.header_dropdown_link.is-active {
    background-color: var(--color-orange-tint);
    color: var(--color-orange-deep);
    outline: none;
}

.header.sticky .header_dropdown_link {
    color: #f3f4f6;
}

.header.sticky .header_dropdown_link:hover,
.header.sticky .header_dropdown_link:focus-visible,
.header.sticky .header_dropdown_link.is-active {
    background-color: var(--color-orange-tint-strong);
    color: var(--color-orange);
}

.header_cta {
    width: auto;
    height: auto;
    padding: 13px 20px;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    border: 1px solid var(--color-orange);
    border-radius: var(--radius-ui);
    background-color: var(--color-orange);
    color: var(--color-text-inverse);
    font-family: var(--font-heading);
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
    pointer-events: auto;
    z-index: 2;
}

.header_cta i {
    transition: transform 0.3s ease;
}

.header_cta:hover,
.header_cta:focus-visible {
    background-color: var(--color-orange-deep);
    border-color: var(--color-orange-deep);
    color: var(--color-text-inverse);
    transform: translateY(-1px);
    outline: none;
}

.header_cta:hover i,
.header_cta:focus-visible i {
    transform: translateX(3px);
}

.header.sticky .header_cta {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-text-inverse);
}

.header.sticky .header_cta:hover,
.header.sticky .header_cta:focus-visible {
    background-color: var(--color-orange-deep);
    border-color: var(--color-orange-deep);
}

.header_cta_mobile {
    display: none;
}

/* Social icons at the foot of the mobile menu — hidden on desktop. */
.header_nav_socials {
    display: none;
}

@media screen and (max-width: 1080px) {
    .header_cta_desktop {
        display: none;
    }

    .header_cta_mobile {
        width: 100%;
        display: inline-flex;
        box-sizing: border-box;
        margin-top: 6px;
    }

    .header_nav_socials {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 14px;
        padding-top: 16px;
        border-top: 1px solid rgba(var(--color-ink-rgb), 0.1);
    }

    .header.sticky .header_nav_socials {
        border-top-color: var(--color-border-dark);
    }

    .header_nav_social_link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        border-radius: 50%;
        border: 1px solid rgba(var(--color-orange-rgb), 0.35);
        background-color: var(--color-orange-tint);
        color: var(--color-orange);
        text-decoration: none;
        transition:
            color 0.25s ease,
            background-color 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease;
    }

    .header.sticky .header_nav_social_link {
        border-color: rgba(var(--color-orange-rgb), 0.5);
        background-color: rgba(var(--color-orange-rgb), 0.14);
        color: var(--color-orange-bright);
    }

    .header_nav_social_link svg {
        width: 18px;
        height: 18px;
        display: block;
    }

    .header_nav_social_link:hover,
    .header_nav_social_link:focus-visible {
        color: var(--color-white);
        background-color: var(--color-orange);
        border-color: var(--color-orange);
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(var(--color-ink-rgb), 0.22);
        outline: none;
    }
}

body.header_nav_open {
    overflow: hidden;
    padding-right: var(--header-scrollbar-compensate, 0px);
}

/* .content — see stylesheets/main-content.css */

.is-active {
    color: #ff0000 !important;
}

@media screen and (max-width: 1080px) {
    .is-active {
        color: #c4c4c4 !important;
    }
}

.link_no_click {
    pointer-events: none;
}

@media screen and (max-width: 1080px) {
    .link_no_click {
        pointer-events: all;
    }
}

body.admin-edit-mode .admin-div {
    outline: 2px dashed rgba(22, 93, 150, 0.55);
    outline-offset: 4px;
    transition:
        outline-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

body.admin-edit-mode .admin-div:hover,
body.admin-edit-mode .admin-div.admin-div-active {
    outline-color: rgba(22, 93, 150, 0.95);
    box-shadow: 0 0 0 6px rgba(22, 93, 150, 0.14);
}

.admin-edit-badge {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(13, 35, 58, 0.18);
    background: rgba(13, 35, 58, 0.96);
    color: var(--color-text-inverse);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.16s ease-in-out,
        visibility 0.16s ease-in-out;
}

.admin-edit-badge.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.admin-edit-badge:hover,
.admin-edit-badge:focus {
    color: var(--color-text-inverse);
    text-decoration: none;
    background: rgba(22, 93, 150, 0.98);
}

.admin-edit-badge i,
.admin-edit-badge .mc {
    font-size: 14px;
}

.admin-edit-toggle {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2147483647;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    background: rgba(22, 93, 150, 0.98);
    color: var(--color-text-inverse);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    transition:
        background 0.16s ease-in-out,
        transform 0.16s ease-in-out;
}

.admin-edit-toggle:hover,
.admin-edit-toggle:focus-visible {
    background: rgba(13, 35, 58, 0.98);
    outline: none;
    transform: translateY(-1px);
}

.admin-edit-toggle.is-off {
    background: rgba(70, 70, 70, 0.94);
}

.admin-edit-toggle i,
.admin-edit-toggle .mc {
    font-size: 20px;
    line-height: 1;
}

@media screen and (max-width: 560px) {
    .admin-edit-toggle {
        top: 10px;
        left: 10px;
        width: 42px;
        height: 42px;
    }
}

/* CONTACT DETAILS BLOCKS */
.contact_blocks {
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin: 0 auto;
    position: relative;
    clear: both;
    display: table;
}

.contact_blocks_left {
    width: calc(50% - 10px);
    height: auto;
    padding: 0 10px 0 0;
    margin: 0;
    position: relative;
    clear: none;
    float: left;
}

@media screen and (max-width: 560px) {
    .contact_blocks_left {
        width: 100%;
        clear: both;
        float: none;
        padding: 0;
    }
}

.contact_blocks_right {
    width: calc(50% - 10px);
    height: auto;
    padding: 0 0 0 10px;
    margin: 0;
    position: relative;
    clear: none;
    float: left;
}

@media screen and (max-width: 560px) {
    .contact_blocks_right {
        width: 100%;
        clear: both;
        float: none;
        padding: 0;
    }
}

.contact_block_holder {
    width: calc(100% - 10px);
    height: auto;
    padding: 0;
    margin: 10px 5px;
    position: relative;
    clear: none;
    float: left;
    display: table;
}

.contact_block_icon {
    width: 40px;
    height: auto;
    padding: 0;
    display: table-cell;
    vertical-align: middle;
    font-family: "Mycons", sans-serif;
}

.contact_block_icon_svg {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #61716a;
}

.contact_block_info {
    width: calc(100% - 40px);
    height: auto;
    padding: 0 0 0 10px;
    display: table-cell;
    vertical-align: middle;
}

.contact_block_title {
    width: 100%;
    height: auto;
    padding: 0 0 4px 0;
    margin: 0;
    clear: both;
    display: table;
    font-size: 1.2em;
    font-weight: 500;
    color: var(--color-ink-soft);
    line-height: 1em;
}

.contact_block_description {
    width: 100%;
    height: auto;
    padding: 0 0 4px 0;
    margin: 0;
    clear: both;
    display: table;
    font-size: 1em;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1em;
}

.contact_block_content {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    clear: both;
    display: table;
    font-size: 1em;
    font-weight: 400;
    color: #000000;
}

.contact_block_content a,
.contact_block_content a:visited {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.contact_block_content a:hover,
.contact_block_content a:visited:hover {
    color: #000000;
    text-decoration: underline;
}

/* SLIDER IMAGES */
.slider {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    display: table;
    position: relative;
    clear: both;
    z-index: 1;
    overflow-x: hidden;
}

.slider_holder {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clear: both;
    background-size: cover !important;
}

.bxslider {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.slider .bx-wrapper,
.slider .bx-viewport {
    height: auto !important;
}

.slider .bx-viewport {
    position: relative;
}

@media screen and (max-width: 767px) {
    .bxslider {
        padding-bottom: 70% !important;
    }
}

@media screen and (max-width: 560px) {
    .bxslider {
        padding-bottom: 80% !important;
    }
}

.slider_info {
    width: 70%;
    height: auto;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.slider_info_centered {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slider_info_centered .slider_title,
.slider_info_centered .slider_main_title,
.slider_info_centered .slider_description {
    text-align: center;
    float: none;
}

.slider_info_centered .slider_button {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: table;
}

.slider_info .slider_button,
.slider_info .slider_button a {
    pointer-events: auto;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1080px) {
    .slider_info {
        width: calc(80% - 100px);
    }
}

@media screen and (max-width: 767px) {
    .slider_info {
        width: calc(90% - 40px);
    }
}

@media screen and (max-width: 560px) {
    .slider_info {
        width: calc(90% - 40px);
    }
}

.slider_title,
.slider_main_title {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    clear: both;
    font-size: 2.8em;
    line-height: 1em;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-text-inverse);
}

@media screen and (max-width: 1200px) {
    .slider_title,
    .slider_main_title {
        font-size: 2.6em;
    }
}

@media screen and (max-width: 1080px) {
    .slider_title,
    .slider_main_title {
        font-size: 2em;
    }
}

@media screen and (max-width: 767px) {
    .slider_title,
    .slider_main_title {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 560px) {
    .slider_title,
    .slider_main_title {
        font-size: 1.6em;
    }
}

@media screen and (max-width: 440px) {
    .slider_title,
    .slider_main_title {
        font-size: 1.4em;
    }
}

.slider_info_left .slider_main_title {
    text-align: left;
    opacity: 0;
    transform: translateX(-100%);
    animation: animateSliderMainTitleLeft 1s ease-in-out 0s 1 forwards;
}

@keyframes animateSliderMainTitleLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

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

.slider_info_right .slider_main_title {
    text-align: right;
    opacity: 0;
    transform: translateX(100%);
    animation: animateSliderMainTitleRight 1s ease-in-out 0s 1 forwards;
}

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

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

.slider_description {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 5px 0;
    position: relative;
    clear: both;
    color: var(--color-text-inverse);
    font-size: 1em;
    line-height: 1.3em;
}

@media screen and (max-width: 1080px) {
    .slider_description {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 560px) {
    .slider_description {
        display: none;
    }
}

.slider_info_centered .slider_main_title,
.slider_info_centered .slider_title {
    opacity: 0;
    transform: translateY(28px);
    animation: heroContentRise 0.95s ease-out 0.15s forwards;
}

.slider_info_centered .slider_description {
    opacity: 0;
    transform: translateY(22px);
    animation: heroContentRise 0.95s ease-out 0.4s forwards;
}

.slider_info_centered .slider_button {
    opacity: 0;
    filter: blur(10px);
    animation: animateSliderButton 0.9s ease-out 0.6s forwards;
}

@keyframes heroContentRise {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes topBarReveal {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider_info_left .slider_description {
    text-align: left;
    opacity: 0;
    transform: translateX(-100%);
    animation: animateSliderDescriptionLeft 1s ease-in-out 0.4s 1 forwards;
}

@keyframes animateSliderDescriptionLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

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

.slider_info_right .slider_description {
    text-align: right;
    opacity: 0;
    transform: translateX(100%);
    animation: animateSliderDescriptionRight 1s ease-in-out 0.4s 1 forwards;
}

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

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

.slider_button {
    width: auto;
    height: auto;
    padding: 0;
    margin: 10px 0 0 0;
    position: relative;
    clear: both;
    display: table;
    opacity: 0;
    filter: blur(15px);
    animation: animateSliderButton 1s ease-in-out 0.5s 1 forwards;
}

@keyframes animateSliderButton {
    0% {
        opacity: 0;
        filter: blur(15px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.slider_info_left .slider_button {
    float: left;
}

.slider_info_right .slider_button {
    float: right;
}

.slider_button a,
.slider_button a:visited {
    width: auto;
    height: auto;
    padding: 8px 20px;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    color: var(--color-orange);
    background-color: var(--color-overlay-dark);
    border: 2px solid var(--color-orange);
    transition: all 0.3s ease-in-out;
    display: table;
}

@media screen and (max-width: 767px) {
    .slider_button a,
    .slider_button a:visited {
        padding: 5px 12px;
        font-size: 1em;
    }
}

.slider_button a:hover,
.slider_button a:visited:hover {
    background-color: rgba(0, 0, 0, 1);
}

.slider_filter {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.slider .bx-wrapper {
    border: 0;
    box-shadow: none;
    background: transparent;
    margin-bottom: 0;
}

.slider .bx-controls {
    z-index: 10;
}

.slider .bx-wrapper .bx-controls-direction a,
.slider .bx-controls-direction a {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.45) !important;
    background-image: none !important;
    border: 1px solid rgba(var(--color-orange-rgb), 0.55);
    text-indent: 0 !important;
    text-decoration: none !important;
    overflow: visible;
    color: var(--color-orange);
    font-size: 0;
    line-height: 1;
    text-align: center;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

@media (max-width: 1080px) {
    .slider .bx-wrapper .bx-controls-direction a,
    .slider .bx-controls-direction a {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
}

.slider .bx-wrapper .bx-controls-direction a:hover,
.slider .bx-wrapper .bx-controls-direction a:focus,
.slider .bx-controls-direction a:hover,
.slider .bx-controls-direction a:focus {
    background-color: rgba(0, 0, 0, 0.85) !important;
    background-image: none !important;
    border-color: var(--color-orange);
    color: var(--color-text-inverse);
    text-decoration: none !important;
    transform: scale(1.05);
}

.slider .bx-wrapper .bx-controls-direction a:link,
.slider .bx-wrapper .bx-controls-direction a:visited,
.slider .bx-controls-direction a:link,
.slider .bx-controls-direction a:visited {
    text-decoration: none !important;
}

.slider .bx-wrapper .bx-controls-direction a i,
.slider .bx-controls-direction a i {
    display: block;
    font-size: 1rem;
    line-height: 1;
    text-indent: 0 !important;
    text-decoration: none !important;
    color: inherit;
    pointer-events: none;
}

.slider .bx-wrapper .bx-prev,
.slider .bx-prev {
    left: 16px;
    background-position: initial !important;
}

.slider .bx-wrapper .bx-next,
.slider .bx-next {
    right: 16px;
    background-position: initial !important;
}

.slider .bx-pager {
    bottom: 18px;
    padding-top: 0;
    z-index: 10;
}

.slider .bx-pager.bx-default-pager a {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.slider .bx-pager.bx-default-pager a:hover,
.slider .bx-pager.bx-default-pager a.active,
.slider .bx-pager.bx-default-pager a:focus {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: scale(1.15);
}

@media screen and (max-width: 767px) {
    .slider .bx-controls-direction {
        display: none !important;
    }

    .slider .bx-pager {
        display: block !important;
    }
}

@media screen and (min-width: 768px) {
    .slider .bx-controls-direction {
        display: block !important;
    }
}

.slider_scroll_cue {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 48px;
    z-index: 12;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--color-text-inverse);
    cursor: pointer;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

.slider_has_scroll_cue .slider_scroll_cue {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: sliderScrollCueIn 0.7s ease both;
}

.slider_scroll_cue:hover,
.slider_scroll_cue:focus-visible {
    color: var(--color-orange);
    outline: none;
}

.slider_scroll_cue_mouse {
    width: 32px;
    height: 44px;
    padding: 0;
    margin: 0;
    position: relative;
    display: block;
    border: 2px solid #000000;
    background-color: var(--color-white);
    border-radius: 32px;
    box-sizing: border-box;
    opacity: 0.95;
}

.slider_scroll_cue_wheel {
    width: 3px;
    height: 14px;
    position: absolute;
    top: 7px;
    left: 50%;
    color: #000000;
    border-radius: 999px;
    background-color: currentColor;
    transform: translateX(-50%);
    animation: sliderScrollCueWheel 1.6s ease-in-out infinite;
}

.slider_scroll_cue_chevrons {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.55;
    font-size: 1.3em;
    color: var(--color-ink-soft);
    animation: sliderScrollCueBounce 1.6s ease-in-out infinite;
}

.slider_scroll_cue_chevrons i:first-child {
    opacity: 0.45;
    color: #000000;
}

@media screen and (max-width: 767px) {
    .slider_scroll_cue {
        bottom: 22px;
    }
}

@media screen and (max-width: 560px) {
    .slider_scroll_cue {
        bottom: 18px;
        gap: 6px;
    }

    .slider_scroll_cue_mouse {
        width: 18px;
        height: 28px;
        border-radius: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slider_has_scroll_cue .slider_scroll_cue,
    .slider_scroll_cue_wheel,
    .slider_scroll_cue_chevrons {
        animation: none;
    }
}

@keyframes sliderScrollCueIn {
    0% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes sliderScrollCueWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    55% {
        opacity: 0.15;
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes sliderScrollCueBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.85;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

/* CONTENT BOXES */
.content_boxes {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: relative;
    clear: both;
}

.content_box_holder {
    width: calc(100% - 30px - 2px);
    height: auto;
    padding: 15px;
    margin: 10px auto;
    position: relative;
    clear: both;
    display: table;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.content_box_holder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-dropdown);
}

.content_box_photo {
    width: 260px;
    height: 260px;
    padding: 0;
    margin: 0;
    position: relative;
    clear: none;
    float: left;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover !important;
}

@media screen and (max-width: 767px) {
    .content_box_photo {
        width: 230px;
        height: 230px;
    }
}

@media screen and (max-width: 560px) {
    .content_box_photo {
        display: none;
    }
}

.content_box_photo_top {
    display: block;
}

.content_box_photo_bottom {
    display: none;
}

@media screen and (max-width: 560px) {
    .content_box_photo_bottom {
        display: block;
        width: 100%;
        height: auto;
        padding-bottom: 50%;
        margin: 10px auto 0 auto;
    }
}

@media screen and (max-width: 560px) {
    .content_box_photo_top {
        display: none;
    }
}

.content_box_info {
    width: calc(100% - 25px - 260px);
    height: 260px;
    padding: 0 10px 0 15px;
    margin: 0;
    position: relative;
    clear: none;
    float: right;
    overflow-x: hidden;
    overflow-y: scroll;
}

@media screen and (max-width: 767px) {
    .content_box_info {
        width: calc(100% - 25px - 230px);
        height: 230px;
    }
}

@media screen and (max-width: 560px) {
    .content_box_info {
        width: 100%;
        height: auto;
        overflow: hidden;
        padding: 0;
    }
}

/* width */
.content_box_info::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.content_box_info::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.content_box_info::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.content_box_info::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.content_box_info_full {
    width: calc(100% - 10px);
    height: auto;
    overflow: auto;
    padding: 0 10px 0 0;
}

.content_box_main_title {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0 5px 0;
    position: relative;
    clear: both;
    font-size: 1.6em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1.1em;
    font-family: var(--font-heading);
}

@media screen and (max-width: 1080px) {
    .content_box_main_title {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 767px) {
    .content_box_main_title {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 560px) {
    .content_box_main_title {
        font-size: 1.3em;
        text-align: center;
    }
}

.content_box_sub_title {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0 5px 0;
    position: relative;
    clear: both;
    font-size: 1.2em;
    color: var(--color-text-light);
    line-height: 1.1em;
    font-family: var(--font-heading);
}

@media screen and (max-width: 1080px) {
    .content_box_sub_title {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 767px) {
    .content_box_sub_title {
        font-size: 1em;
    }
}

@media screen and (max-width: 560px) {
    .content_box_sub_title {
        font-size: 1em;
        text-align: center;
    }
}

.content_box_content {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    clear: both;
}

.content_box_content p {
    text-align: justify;
    line-height: 1.4em;
    font-size: 0.9em;
    padding: 0;
    margin: 0 0 5px 0;
}

/* PHOTO GALLERY */
.portfolio {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 20px auto 0 auto;
    position: relative;
    clear: both;
    display: table;
}

.album_gallery,
.photo_gallery {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: relative;
    clear: both;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 10px;
    grid-auto-flow: dense;
}

@media screen and (max-width: 767px) {
    .album_gallery,
    .photo_gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 440px) {
    .album_gallery,
    .photo_gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

.album_header_name {
    width: calc(100% - 20px);
    height: auto;
    padding: 10px 10px;
    margin: 0 auto 15px auto;
    position: relative;
    clear: both;
    color: var(--color-text-inverse);
    background-color: var(--color-ink-soft);
    text-align: center;
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: "Font Awesome 6 Pro", "Noto Sans", sans-serif;
    line-height: 1em;
}

@media screen and (max-width: 767px) {
    .album_header_name {
        font-size: 1em;
    }
}

.album_header_name a,
.album_header_name a:visited {
    color: var(--color-text-inverse);
    text-decoration: none;
}

.album_header_name a:hover,
.album_header_name a:visited:hover {
    color: var(--color-text-inverse-muted);
    text-decoration: none;
}

.album_header_name svg {
    width: 28px;
    height: 28px;
}

.album_holder {
    width: 100%;
    height: auto;
    padding-bottom: 100%;
    position: relative;
    background-attachment: scroll;
    background-color: #eeeeee;
    background-repeat: no-repeat;
    background-size: cover !important;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.album_holder_1 {
    grid-column: span 1;
    grid-row: span 1;
}

.album_holder_2 {
    grid-column: span 2;
    grid-row: span 2;
}

@media screen and (max-width: 560px) {
    .album_holder_2 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.album_holder_3 {
    grid-column: span 3;
    grid-row: span 3;
}

@media screen and (max-width: 767px) {
    .album_holder_3 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media screen and (max-width: 560px) {
    .album_holder_3 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.album_title {
    background-color: var(--color-overlay-dark);
    bottom: 0;
    color: var(--color-text-inverse);
    font-family: "Noto Sans", sans-serif;
    height: 20px;
    left: 0;
    margin: 0 auto;
    padding: 5px 10px;
    font-size: 0.9em;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    width: calc(100% - 20px);
}

.album_holder:hover .album_title {
    height: calc(100% - 10px);
}

.album_icon {
    color: var(--color-orange);
    display: none;
    font-size: 50px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.6s ease-in-out;
    -moz-transition: opacity 0.6s ease-in-out;
    -o-transition: opacity 0.6s ease-in-out;
    -webkit-transition: opacity 0.6s ease-in-out;
    width: 100%;
    z-index: 3;
    font-family: "Font Awesome 6 Pro", sans-serif;
}

.album_holder:hover .album_icon {
    display: table;
    opacity: 1;
}

.album_button {
    clear: both;
    display: table;
    height: auto;
    margin: 0 auto;
    padding: 40px 0 20px 0;
    position: relative;
    text-align: center;
    width: auto;
}

.album_button a,
.album_button a:visited {
    border: 1px solid #afb374;
    color: #afb374;
    font-family: "Font Awesome 6 Pro", "Noto Sans", sans-serif;
    font-size: 1.2em;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.album_button a:hover,
.album_button a:visited:hover {
    border: 1px solid #4e502e;
    color: #4e502e;
}

/* VIDEO GALLERY */
.video_gallery {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: relative;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--color-white);
    clear: both;
}

@media screen and (max-width: 1080px) {
    .video_gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 560px) {
    .video_gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

.video_gallery_holder {
    width: 100%;
    height: auto;
    padding-bottom: 56%;
    margin: 0;
    position: relative;
    display: table;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.video_icon {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.video_icon i {
    text-align: center;
    font-size: 5vw;
    color: var(--color-text-inverse);
    transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 1080px) {
    .video_icon i {
        font-size: 7vw;
    }
}

@media screen and (max-width: 560px) {
    .video_icon i {
        font-size: 14vw;
    }
}

.video_gallery_holder:hover i {
    color: #ff0000;
}

/* INSERTS */
.inserts {
    width: calc(100% - 10%);
    height: auto;
    padding: 50px 5%;
    margin: 10px auto 0 auto;
    position: relative;
    clear: both;
    display: table;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.insert_header {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 10px auto;
    position: relative;
    clear: both;
    display: table;
    color: var(--color-text-inverse);
    font-family: var(--font-heading);
    font-size: 3.2em;
    font-weight: 400;
    text-align: center;
    line-height: 1em;
}

@media screen and (max-width: 1200px) {
    .insert_header {
        font-size: 3em;
    }
}

@media screen and (max-width: 1080px) {
    .insert_header {
        font-size: 2.8em;
    }
}

@media screen and (max-width: 767px) {
    .insert_header {
        font-size: 2.4em;
    }
}

@media screen and (max-width: 560px) {
    .insert_header {
        font-size: 2em;
    }
}

@media screen and (max-width: 440px) {
    .insert_header {
        font-size: 1.8em;
    }
}

.insert_description {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 10px auto;
    position: relative;
    display: table;
    clear: both;
    color: var(--color-text-inverse);
    font-family: var(--font-heading);
    font-size: 1.1em;
    text-align: center;
    line-height: 1.4em;
}

@media screen and (max-width: 1080px) {
    .insert_description {
        font-size: 1em;
    }
}

@media screen and (max-width: 560px) {
    .insert_description {
        font-size: 0.9em;
    }
}

.insert_button {
    width: auto;
    height: auto;
    padding: 0;
    margin: 20px auto;
    position: relative;
    display: table;
    clear: both;
}

.insert_button a,
.insert_button a:visited {
    width: auto;
    height: auto;
    padding: 10px 25px;
    margin: 0 auto;
    position: relative;
    display: table;
    clear: both;
    background-color: var(--color-overlay-dark);
    border: 2px solid var(--color-white);
    border-radius: 4px;
    color: var(--color-text-inverse);
    font-family: var(--font-heading);
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 560px) {
    .insert_button a,
    .insert_button a:visited {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

.insert_button a:hover,
.insert_button a:visited:hover {
    background-color: rgba(0, 0, 0, 1);
    border: 2px solid #afb374;
    color: #afb374;
}

.inserts_icon_svg {
    width: 1em;
    height: 1em;
    line-height: 1em;
}

/* LOGO SLIDER — see stylesheets/logo-slider.css */

/* MAP */
.mapouter {
    text-align: right;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 10px auto 0 auto;
    position: relative;
    clear: both;
    overflow: hidden;
}

.gmap_canvas {
    background: none !important;
    overflow: hidden;
    width: 100%;
}

#gmap_canvas {
    padding: 0;
    margin: 0;
    display: table;
}

/* PAGE IMAGES */
.page_images {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 20px 0;
    position: relative;
    clear: both;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 5px;
    grid-auto-flow: dense;
}

@media screen and (max-width: 767px) {
    .page_images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 440px) {
    .page_images {
        grid-template-columns: repeat(1, 1fr);
    }
}

.page_image_link {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-decoration: none;
    display: block;
    z-index: 2;
}

.page_images_container {
    width: 100%;
    height: auto;
    padding-bottom: 60%;
    margin: 0;
    position: relative;
    clear: both;
    display: table;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.page_images_container_1 {
    grid-column: span 1;
    grid-row: span 1;
}

.page_images_container_2 {
    grid-column: span 2;
    grid-row: span 2;
}

.page_images_container_portrait {
    grid-column: span 1;
    grid-row: span 2;
    padding-bottom: calc(120% + 5px);
}

@media screen and (max-width: 767px) {
    .page_images_container_portrait {
        grid-row: span 2;
        padding-bottom: calc(120% + 5px);
    }
}

@media screen and (max-width: 440px) {
    .page_images_container_2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .page_images_container_portrait {
        grid-column: span 1;
        grid-row: span 1;
        padding-bottom: 60%;
    }
}

.page_images_container_3 {
    grid-column: span 3;
    grid-row: span 3;
}

@media screen and (max-width: 767px) {
    .page_images_container_3 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media screen and (max-width: 440px) {
    .page_images_container_3 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.page_image_title {
    width: calc(100% - 20px);
    height: auto;
    padding: 0 10px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    display: table;
    transition: all 0.4s ease-in-out;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text-inverse);
    z-index: 2;
}

.page_image_link:hover .page_image_title {
    display: none;
}

.page_image_filter {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.page_image_link:hover .page_image_filter {
    background-color: rgba(0, 0, 0, 0);
}

/* PAGE BUTTONS */
.page_buttons {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 10px auto;
    position: relative;
    clear: both;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    text-align: center;
}

.pg_btn {
    min-width: 220px;
    height: auto;
    padding: 10px 16px;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    border: 1px solid var(--color-orange);
    border-radius: var(--radius-ui);
    text-transform: uppercase;
    color: var(--color-orange);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9em;
    font-weight: 600;
    transition:
        background-color 0.3s ease-in-out,
        color 0.3s ease-in-out,
        transform 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
    .pg_btn {
        min-width: 180px;
        font-size: 0.8em;
    }
}

@media screen and (max-width: 560px) {
    .pg_btn {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}

.pg_btn:hover {
    background-color: var(--color-orange);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
}

/* FOOTER */
.footer {
    width: calc(100% - 10%);
    height: auto;
    padding-top: 60px;
    padding-right: 5%;
    padding-left: 5%;
    margin: 10px auto 0 auto;
    position: relative;
    display: table;
    clear: both;
    overflow: hidden;
    background-color: var(--color-ink-soft);
}

@media screen and (max-width: 1080px) {
    .footer {
        width: calc(100% - 40px);
        padding-right: 20px;
        padding-left: 20px;
    }
}

.footer_nowapp {
    padding: 60px 5% !important;
}

@media screen and (max-width: 1080px) {
    .footer_nowapp {
        padding: 60px 20px !important;
    }
}

.footer_socials {
    display: table;
    height: auto;
    margin: 0 auto;
    padding: 0 0 30px 0;
    position: relative;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

.footer_socials a {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
}

.footer_socials i,
.footer_socials .mc-svg,
.footer_socials svg {
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    padding: 10px;
    margin: 0 2px;
    border: 1px solid #ffffff;
    color: var(--color-text-inverse);
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.footer_socials .mc-svg,
.footer_socials svg {
    line-height: 0;
}

@media only screen and (max-width: 767px) {
    .footer_socials i,
    .footer_socials .mc-svg,
    .footer_socials svg {
        width: 30px;
        height: 30px;
        margin: 0 1px;
        padding: 7px;
        font-size: 14px;
    }
}

.footer_socials i:hover,
.footer_socials a:hover .mc-svg,
.footer_socials a:hover svg {
    background-color: var(--color-white);
    color: var(--color-ink-soft);
}

.footer_addresses {
    width: 100%;
    height: auto;
    padding: 0 0 30px 0;
    margin: 0 auto;
    position: relative;
    clear: both;
    display: table;
}

@media only screen and (max-width: 767px) {
    .footer_addresses {
        padding: 0;
    }
}

.footer_address_holder {
    width: 50%;
    height: auto;
    padding: 0;
    display: table-cell;
    vertical-align: middle;
    color: var(--color-text-inverse);
    font-size: 1em;
    line-height: 1.2em;
}

@media only screen and (max-width: 767px) {
    .footer_address_holder {
        width: 100%;
        display: table;
        padding: 0 0 10px 0;
        position: relative;
        clear: both;
        font-size: 0.9em;
        text-align: center;
    }
}

.footer_address_header {
    font-size: 1.2em;
    font-weight: 500;
    padding: 0 0 5px 0;
    font-family: var(--font-heading);
}

.footer_address_holder img {
    width: auto;
    height: 140px;
    display: table;
    text-align: right;
    float: right;
}

@media only screen and (max-width: 767px) {
    .footer_address_holder img {
        width: 60%;
        height: auto;
        padding: 0 0 20px 0;
        margin: 0 auto;
        display: table;
        text-align: center;
        float: none;
    }
}

.footer_address_info {
    width: 100%;
    height: auto;
    padding: 0 0 20px 0;
    margin: 0;
    position: relative;
    clear: both;
    display: table;
    font-weight: 400;
    font-size: 1em;
}

.privacy_policy {
    width: 100%;
    height: auto;
    padding: 0 0 30px 0;
    margin: 0 auto;
    position: relative;
    clear: both;
    text-align: center;
    display: table;
    color: #e9e9e9;
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1em;
}

@media screen and (max-width: 560px) {
    .privacy_policy {
        font-size: 1em;
    }
}

.privacy_policy a,
.privacy_policy a:visited {
    color: #e9e9e9;
    text-decoration: none;
    padding: 0 15px;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 560px) {
    .privacy_policy a,
    .privacy_policy a:visited {
        width: 100%;
        padding: 5px 0;
        clear: both;
        display: table;
    }
}

.privacy_policy a:hover,
.privacy_policy a:visited:hover {
    color: var(--color-text-inverse);
}

.credentials {
    clear: both;
    color: var(--color-text-inverse);
    display: table;
    font-size: 0.9em;
    font-weight: 500;
    height: auto;
    margin: 0 auto;
    padding: 0 0 5px 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.credits {
    clear: both;
    color: var(--color-text-inverse);
    display: table;
    font-size: 0.9em;
    font-weight: 500;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.credits a,
.credits a:visited {
    color: #c4c4d4;
    text-decoration: none;
}

.credits a:hover,
.credits a:visited:hover {
    color: var(--color-text-inverse);
    text-decoration: underline;
}

/* WHATSAPP BUTTON — see stylesheets/whatsapp.css for the floating action button */
.whatsapp_popup {
    width: auto;
    white-space: nowrap;
    height: auto;
    padding: 5px 10px;
    margin: 0 0 5px 0;
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 5;
    background-color: var(--color-white);
    border: 2px solid var(--color-text-muted);
    border-radius: 6px 6px 0 6px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9em;
    color: var(--color-text);
    opacity: 0;
    animation: animateWhatsappPopup 1.5s ease-in-out 5s 1 forwards;
}

@keyframes animateWhatsappPopup {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* PRELOADER */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader img {
    width: 180px;
    height: auto;
    animation: pulse 1.2s infinite ease-in-out;
}

@media screen and (max-width: 1080px) {
    #preloader img {
        width: 160px;
    }
}

@media screen and (max-width: 767px) {
    #preloader img {
        width: 140px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

/* GLOBAL RESPONSIVE & MOTION */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
}

table {
    width: 100%;
    max-width: 100%;
}

.content_box_holder {
    box-sizing: border-box;
}

@media screen and (max-width: 767px) {
    .content_box_holder {
        display: block;
    }

    .content_box_photo,
    .content_box_info {
        float: none;
    }
}

@media screen and (max-width: 560px) {
    .top_info_bar_inner {
        flex-wrap: nowrap;
    }

    .top_info_bar_left {
        flex: 1 1 auto;
        min-width: 0;
    }

    .top_info_bar_right {
        flex: 0 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .footer_addresses,
    .privacy_policy,
    .credentials,
    .credits {
        text-align: center;
    }
}

@media screen and (max-width: 440px) {
    .credentials,
    .credits {
        font-size: 0.82em;
        line-height: 1.45;
    }
}

html.motion-reduced [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    .top_info_bar {
        animation: none;
    }

    .content_box_holder:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Keep submenu indicators close to their page labels. */
.header_menu_item_main .header_dropdown_toggle {
    margin-left: -8px;
    padding-left: 0;
    padding-right: 4px;
}

/* Fine-tune submenu indicator spacing. */
.header_menu_item_main .header_dropdown_toggle {
    margin-left: -11px;
    padding-right: 2px;
}
