@charset "UTF-8";

.wp-block-site-search {
    --c-site-search-toggle-icon-size: 1rem;
    --c-site-search-toggle-text-color: var(--wp--preset--color--white);
    --c-site-search-toggle-background-color: transparent;
    --c-site-search-toggle-outline-color: transparent;
    --c-site-search-toggle-border-color: transparent;
    align-items: center;
    display: flex
}

.is-search-open .wp-block-site-search {
    display: flex;
    gap: var(--wp--custom--spacing--24);
    justify-content: space-between;
    min-width: 0;
    width: 100%
}

@media (min-width: 64em) {
    .is-search-open .wp-block-site-search {
        gap: var(--wp--custom--spacing--40)
    }
}

.wp-block-site-search__inner {
    display: none
}

@media (min-width: 64em) {
    .wp-block-site-search__inner {
        position: relative
    }
}

.is-search-open .wp-block-site-search__inner {
    width: 100%;
    max-width: 800px;
    margin: auto;
    display: block;
}

.is-search-open .wp-block-main-navigation {
    display: none;
}

.wp-block-site-search__toggle {
    align-items: center;
    background-color: var(--c-site-search-toggle-background-color);
    border: 1px solid var(--c-site-search-toggle-border-color);
    border-radius: 50%;
    color: var(--c-site-search-toggle-text-color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    outline: 2px dashed var(--c-site-search-toggle-outline-color);
    outline-offset: 2px;
    padding: var(--wp--custom--spacing--12);
    transition-duration: var(--wp--custom--transition--duration--base);
    transition-property: background-color, outline;
}

.wp-block-site-search__toggle:hover {
    --c-site-search-toggle-border-color: var(--wp--preset--color--white)
}

.wp-block-site-search__toggle:focus-visible {
    --c-site-search-toggle-outline-color: var(--wp--preset--color--white)
}

.wp-block-site-search__toggle:before {
    background-color: currentColor;
    content: "";
    display: block;
    mask-image: url(/image/search.png);
    background-image: url(/image/search.png);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    min-height: var(--c-site-search-toggle-icon-size);
    min-width: var(--c-site-search-toggle-icon-size);
    position: relative;
    transition-duration: var(--wp--custom--transition--duration--base);
    transition-property: background-color;
}


.is-search-open .wp-block-site-search__toggle, .is-menu-open .wp-block-mega-menu {
    background: #ffffffd9;
}

.is-search-open .wp-block-site-search__toggle:before, .is-menu-open .wp-block-mega-menu__toggle:before {
    mask-image: url(/image/close.png);
    background-image: url(/image/close.png);
    background-color: rgb(79 78 78);
}

.wp-block-site-search__toggle[aria-expanded=true] {
    --c-site-search-toggle-border-color: var(--wp--preset--color--green-500)
}

.wp-block-site-search__toggle[aria-expanded=true]:hover {
    --c-site-search-toggle-background-color: var(--wp--preset--color--white);
    --c-site-search-toggle-text-color: var(--wp--custom--color--black-900);
    --c-site-search-toggle-border-color: var(--wp--custom--color--white)
}

.wp-block-search__inside-wrapper {
    background-color: transparent
}

.is-search-open .wp-block-search__inside-wrapper {
    border-bottom: 1px solid var(--wp--preset--color--gray-700);
    border-left: none;
    border-right: none;
    border-top: none;
    padding-bottom: var(--wp--custom--spacing--8);
    padding-left: 0;
    padding-right: 0
}

.is-search-open .wp-block-search__inside-wrapper:has(>input:focus) {
    border-bottom: 2px solid var(--wp--custom--color--white)
}

.wp-block-search__input {
    color: var(--wp--custom--color--white);
    font-size: var(--wp--preset--font-size--body-2);
    font-weight: var(--wp--custom--font--weight--reg)
}

.wp-block-search__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 70%;
    border: 1px solid var(--wp--preset--color--white);
    border-radius: 100%;
    color: var(--wp--preset--color--white);
    height: 1rem;
    width: 1em
}

.wp-block-search__input::-moz-placeholder {
    color: var(--wp--custom--color--gray-500)
}

.wp-block-search__input::placeholder {
    color: var(--wp--custom--color--gray-500)
}

.is-search-open .wp-block-search__input {
    background-color: transparent;
    outline: none;
    padding: 0
}

.is-search-open .wp-block-search__button {
    background-color: transparent;
    padding: 0;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #b3b3b3;
}

.wp-block-mega-menu {
    --c-mega-menu-toggle-icon-size: 1rem;
    --c-mega-menu-toggle-text-color: var(--wp--preset--color--white);
    --c-mega-menu-toggle-background-color: transparent;
    --c-mega-menu-toggle-outline-color: transparent;
    --c-mega-menu-toggle-border-color: transparent;
    --c-mega-menu-top-offset: var(--c-mega-menu-top-offset-start);
    --c-mega-menu-top-offset-start: calc((var(--c-site-header-top-padding) + 1px) * -1 - 20px);
    --c-mega-menu-top-offset-end: calc((var(--c-site-header-top-padding) + 1px) * -1);
    --c-mega-menu-content-height: calc(100dvh - var(--c-site-header-height, 0px) - 0px);
    border-radius: 99px;
}

.wp-block-mega-menu__toggle {
    align-items: center;
    background-color: var(--c-mega-menu-toggle-background-color);
    border: 1px solid var(--c-mega-menu-toggle-border-color);
    border-radius: 50%;
    color: var(--c-mega-menu-toggle-text-color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    outline: 2px dashed var(--c-mega-menu-toggle-outline-color);
    outline-offset: 2px;
    padding: var(--wp--custom--spacing--12);
    transition-duration: var(--wp--custom--transition--duration--base);
    transition-property: background-color, outline, border-color, color;
}

.wp-block-mega-menu__toggle:hover {
    --c-mega-menu-toggle-border-color: var(--wp--preset--color--white)
}

.wp-block-mega-menu__toggle:focus-visible {
    --c-mega-menu-toggle-outline-color: var(--wp--preset--color--white)
}

.wp-block-mega-menu__toggle:before {
    background-color: currentColor;
    content: "";
    display: block;
    mask-image: url(/image/menu.png);
    background-image: url(/image/menu.png);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    min-height: var(--c-mega-menu-toggle-icon-size);
    min-width: var(--c-mega-menu-toggle-icon-size);
    position: relative;
    transition-duration: var(--wp--custom--transition--duration--base);
    transition-property: background-color;
}

.wp-block-mega-menu__content {
    background-color: var(--wp--preset--color--green-500);
    color: var(--wp--custom--color--white);
    display: block;
    height: auto;
    left: 50%;
    margin-left: calc(-50vw - var(--scrollbar-width, 0px) / 2);
    max-height: 100dvh;
    opacity: 0;
    overflow-y: auto;
    padding-left: var(--c-site-header-gutter);
    padding-right: var(--c-site-header-gutter);
    pointer-events: none;
    position: absolute;
    top: var(--c-mega-menu-top-offset);
    transition-duration: var(--wp--custom--transition--duration--fast);
    transition-property: opacity, top;
    transition-timing-function: var(--wp--custom--transition--timing-function--base);
    width: 100vw;
    min-height: 100vh;
    z-index: -1
}

@media (min-width: 64em) {
    .wp-block-mega-menu__content {
        max-height: none;
        overflow-y: initial
    }
}

.wp-block-mega-menu__content * {
    color: inherit
}

.is-menu-open .wp-block-mega-menu__content {
    --c-mega-menu-top-offset: var(--c-mega-menu-top-offset-end);
    opacity: 1;
    pointer-events: auto
}

.headroom--not-top .is-menu-open .wp-block-mega-menu__content {
    margin-left: -50vw
}

.wp-block-mega-menu__content-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--wp--custom--content--width--wide);
    padding-bottom: var(--wp--custom--spacing--40);
    padding-left: var(--wp--custom--spacing--24);
    padding-right: var(--wp--custom--spacing--24);
    padding-top: var(--wp--custom--spacing--40)
}

@media (min-width: 48em) {
    .wp-block-mega-menu__content-inner {
        padding-bottom: var(--wp--custom--spacing--80)
    }
}

.wp-block-mega-menu__content-inner a:not(.wp-block-sign-in__login):not(.wp-block-sign-in__profile) {
    --link-color: inherit !important;
    display: block;
    position: relative;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    width: max-content
}

.wp-block-mega-menu__content-inner a:not(.wp-block-sign-in__login):not(.wp-block-sign-in__profile):focus, .wp-block-mega-menu__content-inner a:not(.wp-block-sign-in__login):not(.wp-block-sign-in__profile):focus-visible {
    outline: 2px dashed currentcolor;
    outline-offset: 1px
}

.wp-block-mega-menu__content-inner a:not(.wp-block-sign-in__login):not(.wp-block-sign-in__profile):hover {
    background-color: transparent !important
}

.wp-block-mega-menu__content-inner a:not(.wp-block-sign-in__login):not(.wp-block-sign-in__profile):hover:after {
    opacity: 1;
    width: 100%
}

.wp-block-mega-menu__content-inner a:not(.wp-block-sign-in__login):not(.wp-block-sign-in__profile):not(.wp-block-sign-in__login):not(.wp-block-sign-in__profile):after {
    background-color: currentColor;
    bottom: calc(var(--wp--custom--spacing--8) * -1);
    content: "";
    height: 2px;
    left: 0;
    opacity: 0;
    position: absolute;
    transition-duration: var(--wp--custom--transition--duration--base);
    transition-property: width, opacity;
    transition-timing-function: var(--wp--custom--transition--timing-function--base);
    width: 1px
}

.wp-block-mega-menu__content-inner .mega-menu-scroll-area {
    height: auto;
    overflow-y: initial
}

@media (min-width: 64em) {
    .wp-block-mega-menu__content-inner .mega-menu-scroll-area {
        height: calc(var(--c-mega-menu-content-height) - var(--wp--custom--spacing--40));
        overflow-y: auto;
        padding-left: 3px;
        padding-top: 3px
    }
}

.wp-block-mega-menu__content-inner :has(>.mega-menu-scroll-area) {
    position: relative
}

.wp-block-mega-menu__heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.wp-block-mega-menu__content-inner p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

[class*=hero-package] > .wp-block-card {
    height: 100%
}

@media (min-width: 64em) {
    .hero-package-1__featured {
        margin-left: calc(var(--wp--custom--spacing--40) * -1);
        margin-right: calc(var(--wp--custom--spacing--40) * -1)
    }
}

@media (max-width: 63.9375em) {
    .hero-package-1__featured .loop-card__figure {
        margin-left: calc(var(--gutter) * -1);
        margin-right: calc(var(--gutter) * -1)
    }
}

.hero-package-1__featured .loop-card__title {
    line-height: var(--wp--custom--font--lh--1-1)
}

.hero-package-1__list {
    display: grid;
    margin-top: var(--wp--custom--spacing--32)
}

@media (min-width: 64em) {
    .hero-package-1__list {
        gap: var(--wp--custom--spacing--24);
        grid-template-columns:repeat(4, 1fr);
        margin-top: var(--wp--custom--spacing--40)
    }
}

@media (min-width: 90em) {
    .hero-package-1__list {
        padding-left: var(--wp--custom--spacing--40);
        padding-right: var(--wp--custom--spacing--40)
    }
}

.hero-package-1__list .loop-card.loop-card--default.loop-card--vertical {
    border-color: var(--wp--custom--color--gray-300)
}

.hero-package-2 {
    display: grid;
    grid-gap: var(--wp--custom--spacing--24);
    gap: var(--wp--custom--spacing--24);
    /*margin-top: var(--wp--custom--spacing--32)*/
}

@media (min-width: 64em) {
    .hero-package-2 {
        grid-template-columns:2fr 1fr 1fr
    }
}

.hero-package-2__featured .loop-card__title {
    --title-size: 2.4rem;
}

.hero-package-2__upnext {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--24)
}

.hero-package-2__list {
    display: grid
}

.hero-package-2__list .ad-slot-container {
    height: 266px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--wp--custom--spacing--8);
    width: 316px
}

@media (min-width: 64em) {
    .hero-package-2__list .ad-slot-container {
        margin-top: 0;
        z-index: 0
    }
}

.hero-package-2__list .loop-card--list:last-child {
    border-color: transparent
}

.hero-package-3 {
    display: grid
}

@media (min-width: 64em) {
    .hero-package-3 {
        gap: var(--wp--custom--spacing--24);
        grid-template-columns:repeat(2, 1fr)
    }
}

.hero-package-3 .loop-card {
    border-color: hsla(0, 0%, 100%, .45)
}

.has-yellow-700-background-color .hero-package-3 .loop-card {
    border-color: #b3b85b
}

@media (min-width: 64em) {
    .has-green-500-background-color .hero-package-3 .loop-card {
        border-color: var(--wp--custom--color--white)
    }
}

.hero-package-3__list {
    display: grid
}

.hero-package-3__list .ad-slot-container {
    height: 266px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--wp--custom--spacing--8);
    width: 316px
}

@media (min-width: 64em) {
    .hero-package-3__list .ad-slot-container {
        margin-top: calc(var(--wp--custom--spacing--64) * -1 - 1px);
        z-index: 0
    }

    .hero-package-3__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

.hero-package-3__featured .loop-card__title {
    font-size: var(--wp--custom--font--size--23)
}

@media (min-width: 64em) {
    .hero-package-3__featured .loop-card__title {
        font-size: var(--wp--custom--font--size--40)
    }
}

.hero-package-4 .loop-card {
    border-color: var(--wp--custom--color--gray-300)
}

@media (min-width: 64em) {
    .hero-package-4 .loop-card {
        height: 100%
    }
}

.hero-package-4__featured {
    display: grid;
    grid-gap: var(--wp--custom--spacing--24);
    gap: var(--wp--custom--spacing--24)
}

@media (min-width: 64em) {
    .hero-package-4__featured {
        grid-template-columns:repeat(2, 1fr)
    }
}

.hero-package-4__featured .loop-card--featured-bg .loop-card__title {
    font-size: var(--wp--custom--font--size--28-40);
    line-height: var(--wp--custom--font--lh--1-1)
}

.hero-package-4__featured .loop-card--default .loop-card__title {
    font-size: var(--wp--custom--font--size--23)
}

@media (min-width: 64em) {
    .hero-package-4__featured .loop-card--default .loop-card__title {
        font-size: var(--wp--custom--font--size--28-40)
    }
}

.hero-package-4__featured .loop-card--default.loop-card--vertical .loop-card__figure {
    width: 100%
}

.hero-package-4__list {
    display: grid
}

.hero-package-4__list .ad-slot-container {
    height: 266px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--wp--custom--spacing--8);
    width: 316px
}

@media (min-width: 64em) {
    .hero-package-4__list .ad-slot-container {
        margin-top: 0
    }

    .hero-package-4__list {
        gap: var(--wp--custom--spacing--24);
        grid-template-columns:repeat(4, 1fr);
        margin-top: var(--wp--custom--spacing--40)
    }
}

.hero-package-5 .loop-card {
    border-color: transparent
}

.hero-package-5__list {
    display: grid
}

@media (max-width: 63.9375em) {
    .hero-package-5__list {
        margin-top: var(--wp--custom--spacing--24)
    }
}

@media (min-width: 64em) {
    .hero-package-5__list {
        gap: var(--wp--custom--spacing--24);
        grid-template-columns:repeat(3, 1fr)
    }

    .hero-package-5__featured {
        margin-left: calc(var(--wp--custom--spacing--40) * -1);
        margin-right: calc(var(--wp--custom--spacing--40) * -1)
    }
}

@media (max-width: 63.9375em) {
    .hero-package-5__featured .loop-card__figure {
        margin-left: calc(var(--gutter) * -1);
        margin-right: calc(var(--gutter) * -1)
    }
}

@media (min-width: 64em) {
    .hero-package-5__featured .loop-card--post-type-tc_event .loop-card__content {
        padding-top: 140px
    }
}

.hero-package-5__featured .loop-card--post-type-post, .hero-package-5__featured .loop-card--post-type-tc_storyline {
    align-items: center;
    flex-direction: row-reverse
}

@media (max-width: 63.9375em) {
    .hero-package-5__featured .loop-card--post-type-post, .hero-package-5__featured .loop-card--post-type-tc_storyline {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media (min-width: 48em) {
    .hero-package-5__featured .loop-card--post-type-post, .hero-package-5__featured .loop-card--post-type-tc_storyline {
        padding-left: var(--wp--custom--spacing--80)
    }
}

.hero-package-5__featured .loop-card--post-type-post .loop-card__figure, .hero-package-5__featured .loop-card--post-type-tc_storyline .loop-card__figure {
    --image-size: 100%
}

.hero-package-5__featured .loop-card--post-type-post .loop-card__title, .hero-package-5__featured .loop-card--post-type-tc_storyline .loop-card__title {
    font-size: var(--wp--custom--font--size--28-40)
}

.wp-block-main-navigation {
    display: none;
    margin-bottom: var(--wp--custom--spacing--32)
}

@media (min-width: 64em) {
    .wp-block-main-navigation {
        display: block;
        margin-bottom: 0
    }
}

.wp-block-main-navigation[aria-hidden=true] {
    display: none
}

.wp-block-main-navigation[aria-hidden=false] {
    display: block
}

@media (min-width: 64em) {
    .wp-block-main-navigation ul.wp-block-navigation {
        --navigation-layout-direction: row;
        --navigation-layout-align: center;
        display: flex;
        font-size: var(--wp--custom--font--size--16);
        font-weight: var(--wp--custom--font--weight--bold)
    }

    .wp-block-main-navigation nav.wp-block-navigation:last-child {
        display: none
    }
}

@media (min-width: 1200px) {
    .wp-block-main-navigation nav.wp-block-navigation:last-child {
        display: flex
    }
}

.header-list {
    padding: 0;
    list-style: none;
    text-decoration: auto;
    gap: 1rem;
}

.wp-block-main-navigation .wp-block-navigation-link a {
    color: inherit;
    position: relative;
    transition-duration: var(--wp--custom--transition--duration--base);
    transition-property: color;
    transition-timing-function: var(--wp--custom--transition--timing-function--base);
    text-decoration: auto;
}

@media (min-width: 64em) {
    .wp-block-main-navigation .wp-block-navigation-link a:hover {
        color: var(--wp--preset--color--green-100) !important;
    }

    .wp-block-main-navigation .wp-block-navigation-link a:hover:after {
        opacity: 1;
        width: 100%
    }

    .wp-block-main-navigation .wp-block-navigation-link a:after {
        background-color: currentColor;
        bottom: calc(var(--wp--custom--spacing--8) * -1);
        content: "";
        height: 2px;
        left: 0;
        opacity: 0;
        position: absolute;
        transition-duration: var(--wp--custom--transition--duration--base);
        transition-property: width, opacity;
        transition-timing-function: var(--wp--custom--transition--timing-function--base);
        width: 1px
    }
}

.wp-block-search__button {
    margin-left: 10px;
    word-break: normal
}

.wp-block-search__button svg {
    height: 1.25em;
    min-height: 24px;
    min-width: 24px;
    width: 1.25em;
    fill: currentColor;
    vertical-align: text-bottom
}

:where(.wp-block-search__button) {
    border: 1px solid #ccc;
    padding: 6px 10px
}

.wp-block-search__inside-wrapper {
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%
}

.wp-block-search__label {
    width: 100%
}

.wp-block-search.wp-block-search__button-only .wp-block-search__button {
    box-sizing: border-box;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    margin-left: 0;
    max-width: 100%
}

.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper {
    min-width: 0 !important;
    transition-property: width
}

.wp-block-search.wp-block-search__button-only .wp-block-search__input {
    flex-basis: 100%;
    transition-duration: .3s
}

:where(.wp-block-search__input) {
    appearance: none;
    border: 1px solid #949494;
    flex-grow: 1;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin-left: 0;
    margin-right: 0;
    min-width: 3rem;
    padding: 8px;
    text-decoration: unset !important;
    text-transform: inherit
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    background-color: #fff;
    border: 1px solid #949494;
    box-sizing: border-box;
    padding: 4px
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {
    border: none;
    border-radius: 0;
    padding: 0 4px
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus {
    outline: none
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button) {
    padding: 4px 8px
}

.wp-block-search.aligncenter .wp-block-search__inside-wrapper {
    margin: auto
}

.wp-block-columns {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap !important
}

@media (min-width: 782px) {
    .wp-block-columns {
        flex-wrap: nowrap !important
    }
}

.wp-block-columns {
    align-items: normal !important
}

@media (max-width: 781px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
        flex-basis: 100% !important
    }
}

@media (min-width: 782px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
        flex-grow: 1
    }

    .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column[style*=flex-basis] {
        flex-grow: 0
    }
}

.wp-block-column {
    flex-grow: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word
}

.wp-block-group {
    box-sizing: border-box
}

.wp-block-group:where(.has-background) {
    padding: var(--wp--custom--spacing--16-32)
}

.is-search-open .wp-block-menu-utility {
    margin-left: auto;
    width: 100%
}

.wp-block-menu-utility__inner {
    display: flex;
    gap: var(--wp--custom--spacing--4)
}

.wp-block-separator {
    border: none;
    border-top: 2px solid
}

.wp-block-button__link {
    align-content: center;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    height: 100%;
    text-align: center;
    word-break: break-word
}

:where(.wp-block-button__link) {
    border-radius: 9999px;
    box-shadow: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    text-decoration: none
}

.wp-block-button[style*=text-decoration] .wp-block-button__link {
    text-decoration: inherit
}

.wp-block-post-template {
    box-sizing: border-box;
    list-style: none;
    margin-bottom: 0;
    margin-top: 0;
    max-width: 100%;
    padding: 0
}

.wp-block-paragraph {
    --drop-cap-background: var(--wp--preset--color--green-500);
    --drop-cap-color: var(--wp--custom--color--white);
    --drop-cap-size: 54px;
    --drop-cap-weight: var(--wp--custom--font--weight--extra-bold);
    --drop-cap-spacing: 14px;
    --drop-cap-padding: 30px;
    --paragraph-color: var(--wp--custom--color--black-500);
    --event-content-tabs-text-color: var(--paragraph-color);
    color: var(--paragraph-color);
    font-size: var(--wp--preset--font-size--body-1)
}

.wp-block-paragraph a {
    --link-color: var(--wp--custom--color--green-500);
    --link-hover-background-color: var(--wp--custom--color--green-500);
    --link-hover-color: var(--wp--custom--color--white);
    color: var(--link-color);
    -webkit-text-decoration: underline;
    text-decoration: underline;
    text-decoration-color: currentcolor;
    transition: background-color var(--wp--custom--transition--duration--base) ease, color var(--wp--custom--transition--duration--base) ease
}

.wp-block-paragraph a:hover {
    background-color: var(--link-hover-background-color);
    color: var(--link-hover-color)
}

.wp-block-paragraph a:visited {
    --link-color: var(--wp--custom--color--green-900)
}

.has-green-500-background-color .wp-block-paragraph a, .has-purple-500-background-color .wp-block-paragraph a {
    --link-color: var(--wp--custom--color--white);
    --link-hover-background-color: var(--wp--custom--color--black-500);
    --link-hover-color: var(--wp--custom--color--white)
}

.has-black-500-background-color .wp-block-paragraph a {
    --link-color: var(--wp--custom--color--green-100);
    --link-hover-background-color: var(--wp--custom--color--green-100);
    --link-hover-color: var(--wp--custom--color--black-500)
}

.has-green-500-background-color .wp-block-paragraph, .has-purple-500-background-color .wp-block-paragraph, .wp-block-paragraph.has-green-500-background-color {
    --drop-cap-background: var(--wp--custom--color--white);
    --drop-cap-color: var(--wp--preset--color--green-500);
    --paragraph-color: var(--wp--preset--color--white)
}

.wp-block-cate-post-compact {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--24);
    position: relative
}

.wp-block-term-query-pagination.wp-block-term-query-pagination .wp-block-button__link {
    --button-font-size: var(--wp--preset--font-size--body-3);
    --button-padding: var(--wp--custom--spacing--12) 20px;
    align-items: center;
    display: flex;
    gap: var(--wp--custom--spacing--4)
}

.wp-block-term-query-pagination.wp-block-term-query-pagination .wp-block-button__link svg {
    height: auto !important;
    width: 1.5rem !important
}

:root {
    --wp-block-synced-color: #7a00df;
    --wp-block-synced-color--rgb: 122, 0, 223;
    --wp-bound-block-color: var(--wp-block-synced-color);
    --wp-editor-canvas-background: #ddd;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color--rgb: 0, 124, 186;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-10--rgb: 0, 107, 160.5;
    --wp-admin-theme-color-darker-20: #005a87;
    --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
    --wp-admin-border-width-focus: 2px
}

@media (min-resolution: 192dpi) {
    :root {
        --wp-admin-border-width-focus: 1.5px
    }
}

.wp-element-button {
    cursor: pointer
}

:root {
    --wp--preset--font-size--normal: 16px;
    --wp--preset--font-size--huge: 42px
}

.items-justified-left {
    justify-content: flex-start
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important
}

.screen-reader-text:focus {
    background-color: #ddd;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

html :where([style*=border-top-color]) {
    border-top-style: solid
}

html :where([style*=border-right-color]) {
    border-right-style: solid
}

html :where([style*=border-bottom-color]) {
    border-bottom-style: solid
}

html :where([style*=border-left-color]) {
    border-left-style: solid
}

html :where([style*=border-width]) {
    border-style: solid
}

html :where([style*=border-top-width]) {
    border-top-style: solid
}

html :where([style*=border-right-width]) {
    border-right-style: solid
}

html :where([style*=border-bottom-width]) {
    border-bottom-style: solid
}

html :where([style*=border-left-width]) {
    border-left-style: solid
}

:where(figure) {
    margin: 0 0 1em
}

:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: var(--wp--custom--color--white);
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--color--black-900: var(--wp--custom--color--black-900);
    --wp--preset--color--black-700: var(--wp--custom--color--black-700);
    --wp--preset--color--black-500: var(--wp--custom--color--black-500);
    --wp--preset--color--black-300: var(--wp--custom--color--black-300);
    --wp--preset--color--black-100: var(--wp--custom--color--black-100);
    --wp--preset--color--gray-900: var(--wp--custom--color--gray-900);
    --wp--preset--color--gray-700: var(--wp--custom--color--gray-700);
    --wp--preset--color--gray-500: var(--wp--custom--color--gray-500);
    --wp--preset--color--gray-300: var(--wp--custom--color--gray-300);
    --wp--preset--color--gray-100: var(--wp--custom--color--gray-100);
    --wp--preset--color--green-900: var(--wp--custom--color--green-900);
    --wp--preset--color--green-700: var(--wp--custom--color--green-700);
    --wp--preset--color--green-500: var(--wp--custom--color--green-500);
    --wp--preset--color--green-300: var(--wp--custom--color--green-300);
    --wp--preset--color--green-100: var(--wp--custom--color--green-100);
    --wp--preset--color--red-500: var(--wp--custom--color--red-500);
    --wp--preset--color--red-300: var(--wp--custom--color--red-300);
    --wp--preset--color--blue-900: var(--wp--custom--color--blue-900);
    --wp--preset--color--blue-500: var(--wp--custom--color--blue-500);
    --wp--preset--color--blue-300: var(--wp--custom--color--blue-300);
    --wp--preset--color--blue-100: var(--wp--custom--color--blue-100);
    --wp--preset--color--orange-500: var(--wp--custom--color--orange-500);
    --wp--preset--color--orange-300: var(--wp--custom--color--orange-300);
    --wp--preset--color--orange-100: var(--wp--custom--color--orange-100);
    --wp--preset--color--purple-500: var(--wp--custom--color--purple-500);
    --wp--preset--color--purple-900: var(--wp--custom--color--purple-900);
    --wp--preset--color--yellow-700: var(--wp--custom--color--yellow-700);
    --wp--preset--color--yellow-300: var(--wp--custom--color--yellow-300);
    --wp--preset--color--cream-300: var(--wp--custom--color--cream-300);
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgb(252, 185, 0) 0%, rgb(255, 105, 0) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgb(255, 105, 0) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--font-size--display-1: var(--wp--custom--font--size--48-83);
    --wp--preset--font-size--h-1: var(--wp--custom--font--size--33-57);
    --wp--preset--font-size--h-2: var(--wp--custom--font--size--28-40);
    --wp--preset--font-size--display-large-fixed: var(--wp--custom--font--size--32);
    --wp--preset--font-size--numbers-1: var(--wp--custom--font--size--83-99);
    --wp--preset--font-size--numbers-2: var(--wp--custom--font--size--69-83);
    --wp--preset--font-size--numbers-3: var(--wp--custom--font--size--48-69);
    --wp--preset--font-size--h-3: var(--wp--custom--font--size--23-33);
    --wp--preset--font-size--h-4: var(--wp--custom--font--size--19-28);
    --wp--preset--font-size--h-5: var(--wp--custom--font--size--16-23);
    --wp--preset--font-size--h-6: var(--wp--custom--font--size--13-19);
    --wp--preset--font-size--33-40: var(--wp--custom--font--size--33-40);
    --wp--preset--font-size--24-28: var(--wp--custom--font--size--24-28);
    --wp--preset--font-size--23: var(--wp--custom--font--size--23);
    --wp--preset--font-size--body-1: var(--wp--custom--font--size--19);
    --wp--preset--font-size--body-2: var(--wp--custom--font--size--16);
    --wp--preset--font-size--body-3: var(--wp--custom--font--size--13);
    --wp--preset--font-size--body-4: var(--wp--custom--font--size--11);
    --wp--preset--font-family--base: nb_international_proregular, sans-serif;
    --wp--preset--font-family--mono: nb_international_promono, sans-serif;
    --wp--preset--font-family--secondary: yellix, sans-serif;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--spacing--auto: auto;
    --wp--preset--spacing--spacing-4: var(--wp--custom--spacing--4);
    --wp--preset--spacing--spacing-8: var(--wp--custom--spacing--8);
    --wp--preset--spacing--spacing-12: var(--wp--custom--spacing--12);
    --wp--preset--spacing--spacing-16: var(--wp--custom--spacing--16);
    --wp--preset--spacing--spacing-24: var(--wp--custom--spacing--24);
    --wp--preset--spacing--spacing-32: var(--wp--custom--spacing--32);
    --wp--preset--spacing--spacing-40: var(--wp--custom--spacing--40);
    --wp--preset--spacing--spacing-48: var(--wp--custom--spacing--48);
    --wp--preset--spacing--spacing-56: var(--wp--custom--spacing--56);
    --wp--preset--spacing--spacing-64: var(--wp--custom--spacing--64);
    --wp--preset--spacing--spacing-72: var(--wp--custom--spacing--72);
    --wp--preset--spacing--spacing-80: var(--wp--custom--spacing--80);
    --wp--preset--spacing--spacing-88: var(--wp--custom--spacing--88);
    --wp--preset--spacing--spacing-96: var(--wp--custom--spacing--96);
    --wp--preset--spacing--spacing-125: var(--wp--custom--spacing--125);
    --wp--preset--spacing--spacing-8-16: var(--wp--custom--spacing--8-16);
    --wp--preset--spacing--spacing-16-24: var(--wp--custom--spacing--16-24);
    --wp--preset--spacing--spacing-16-32: var(--wp--custom--spacing--16-32);
    --wp--preset--spacing--spacing-16-40: var(--wp--custom--spacing--16-40);
    --wp--preset--spacing--spacing-16-56: var(--wp--custom--spacing--16-56);
    --wp--preset--spacing--spacing-24-32: var(--wp--custom--spacing--24-32);
    --wp--preset--spacing--spacing-24-40: var(--wp--custom--spacing--24-40);
    --wp--preset--spacing--spacing-32-40: var(--wp--custom--spacing--32-40);
    --wp--preset--spacing--spacing-32-56: var(--wp--custom--spacing--32-56);
    --wp--preset--spacing--spacing-40-56: var(--wp--custom--spacing--40-56);
    --wp--preset--spacing--spacing-40-64: var(--wp--custom--spacing--40-64);
    --wp--preset--spacing--spacing-40-80: var(--wp--custom--spacing--40-80);
    --wp--preset--spacing--spacing-56-96: var(--wp--custom--spacing--56-96);
    --wp--preset--spacing--spacing-80-120: var(--wp--custom--spacing--80-120);
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);
    --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);
    --wp--custom--uikit--separator-height: 1;
    --wp--custom--uikit--animation: 1;
    --wp--custom--color--white: #fff;
    --wp--custom--color--white-20-a: #ffffff20;
    --wp--custom--color--white-45-a: #ffffff45;
    --wp--custom--color--white-80-a: #ffffff80;
    --wp--custom--color--black-40-a: #00000066;
    --wp--custom--color--black-60-a: #00000099;
    --wp--custom--color--black-900: #050505;
    --wp--custom--color--black-700: #0c0d0d;
    --wp--custom--color--black-500: #212623;
    --wp--custom--color--black-300: #151a17;
    --wp--custom--color--black-100: #2c312e;
    --wp--custom--color--gray-sb-100: #dddddd;
    --wp--custom--color--gray-sb-200: #333333;
    --wp--custom--color--gray-sb-300: #F5F5F5;
    --wp--custom--color--gray-sb-400-80: #EBF0EE80;
    --wp--custom--color--gray-900: #535554;
    --wp--custom--color--gray-700: #6c7571;
    --wp--custom--color--gray-500: #b5c0bc;
    --wp--custom--color--gray-300: #d2dcd7;
    --wp--custom--color--gray-100: #edf1ef;
    --wp--custom--color--green-900: #012800;
    --wp--custom--color--green-700: #014600;
    --wp--custom--color--green-500: #0a8935;
    --wp--custom--color--green-300: #0aa43e;
    --wp--custom--color--green-300-30-a: #0aa43e30;
    --wp--custom--color--green-100: #68f176;
    --wp--custom--color--red-500: #e21c1c;
    --wp--custom--color--red-300: #eb6060;
    --wp--custom--color--blue-900: #145bc5;
    --wp--custom--color--blue-500: #2372e9;
    --wp--custom--color--blue-300: #4b93ff;
    --wp--custom--color--blue-100: #7BB0FF;
    --wp--custom--color--orange-500: #cb4925;
    --wp--custom--color--orange-300: #f57956;
    --wp--custom--color--orange-100: #FFB300;
    --wp--custom--color--purple-300: #CE9EFD;
    --wp--custom--color--purple-500: #5631ea;
    --wp--custom--color--purple-900: #9980fe;
    --wp--custom--color--yellow-700: #f2f673;
    --wp--custom--color--yellow-300: #FFE082;
    --wp--custom--color--cream-300: #FFF8E1;
    --wp--custom--content--width--default: 63.375rem;
    --wp--custom--content--width--wide: 1280px;
    --wp--custom--content--width--full: calc(100vw - var(--scrollbar-width, 0px));
    --wp--custom--content--width--article-content: 41.5625rem;
    --wp--custom--content--width--article-default: 52.5625rem;
    --wp--custom--content--width--article-wide: 74.1875rem;
    --wp--custom--content--width--author-archive: 85.69rem;
    --wp--custom--content--width--single-event-content: 1280px;
    --wp--custom--font--family--base: nb_international_proregular, sans-serif;
    --wp--custom--font--family--secondary: "yellix", sans-serif;
    --wp--custom--font--family--mono: nb_international_promono, sans-serif;
    --wp--custom--font--lh--1: 1;
    --wp--custom--font--lh--1-1: 1.1;
    --wp--custom--font--lh--1-15: 1.15;
    --wp--custom--font--lh--1-2: 1.2;
    --wp--custom--font--lh--1-3: 1.3;
    --wp--custom--font--lh--1-4: 1.4;
    --wp--custom--font--line-height--01: var(--wp--custom--font--lh--1);
    --wp--custom--font--line-height--02: var(--wp--custom--font--lh--1-1);
    --wp--custom--font--line-height--03: var(--wp--custom--font--lh--1-15);
    --wp--custom--font--line-height--04: var(--wp--custom--font--lh--1-2);
    --wp--custom--font--line-height--05: var(--wp--custom--font--lh--1-3);
    --wp--custom--font--line-height--06: var(--wp--custom--font--lh--1-4);
    --wp--custom--font--ls--neg-2: -0.5px;
    --wp--custom--font--ls--neg-1: -0.25px;
    --wp--custom--font--ls--normal: 0;
    --wp--custom--font--ls--plus-2: 0.5px;
    --wp--custom--font--ls--plus-3: 1px;
    --wp--custom--font--letter-spacing--01: var(--wp--custom--font--ls--neg-2);
    --wp--custom--font--letter-spacing--02: var(--wp--custom--font--ls--neg-1);
    --wp--custom--font--letter-spacing--03: 0;
    --wp--custom--font--letter-spacing--05: var(--wp--custom--font--ls--plus-2);
    --wp--custom--font--size--83-99: clamp(5.1875rem, 4.8068rem + 1.6244vi, 6.1875rem);
    --wp--custom--font--size--69-83: clamp(4.3125rem, 3.9794rem + 1.4213vi, 5.1875rem);
    --wp--custom--font--size--48-83: clamp(3rem, 2.1672rem + 3.5533vi, 5.1875rem);
    --wp--custom--font--size--28-83: clamp(1.75rem, 0.5543rem + 5.9783vw, 5.1875rem);
    --wp--custom--font--size--48-69: clamp(3rem, 2.5003rem + 2.132vi, 4.3125rem);
    --wp--custom--font--size--48-57: clamp(3rem, 2.5rem + 1.5vw, 3.5625rem);
    --wp--custom--font--size--33-57: clamp(2.0625rem, 1.4914rem + 2.4365vi, 3.5625rem);
    --wp--custom--font--size--33-40: clamp(2.0625rem, 1.8959rem + 0.7107vi, 2.5rem);
    --wp--custom--font--size--28-40: clamp(1.75rem, 1.4645rem + 1.2183vi, 2.5rem);
    --wp--custom--font--size--23-57: clamp(1.4375rem, 0.6984rem + 3.6957vw, 3.5625rem);
    --wp--custom--font--size--23-40: clamp(1.4375rem, 1.0679rem + 1.8478vw, 2.5rem);
    --wp--custom--font--size--23-33: clamp(1.4375rem, 1.1996rem + 1.0152vi, 2.0625rem);
    --wp--custom--font--size--24-28: clamp(1.5rem, 1.4048rem + 0.4061vi, 1.75rem);
    --wp--custom--font--size--19-28: clamp(1.1875rem, 0.9734rem + 0.9137vi, 1.75rem);
    --wp--custom--font--size--19-23: clamp(1.1875rem, 1rem + 0.5vw, 1.4375rem);
    --wp--custom--font--size--16-23: clamp(1rem, 0.8334rem + 0.7107vi, 1.4375rem);
    --wp--custom--font--size--16-19: clamp(1rem, 0.9286rem + 0.3046vi, 1.1875rem);
    --wp--custom--font--size--13-19: clamp(0.8125rem, 0.6697rem + 0.6091vi, 1.1875rem);
    --wp--custom--font--size--11-16: clamp(0.6875rem, 0.5685rem + 0.5076vi, 1rem);
    --wp--custom--font--size--64: 4rem;
    --wp--custom--font--size--40: 2.5rem;
    --wp--custom--font--size--32: 2rem;
    --wp--custom--font--size--28: 1.75rem;
    --wp--custom--font--size--23: 1.4375rem;
    --wp--custom--font--size--19: 1.1875rem;
    --wp--custom--font--size--16: 1rem;
    --wp--custom--font--size--14: 0.88rem;
    --wp--custom--font--size--13: 0.8125rem;
    --wp--custom--font--size--11: 0.6875rem;
    --wp--custom--font--weight--light: 300;
    --wp--custom--font--weight--reg: 400;
    --wp--custom--font--weight--med: 500;
    --wp--custom--font--weight--bold: 700;
    --wp--custom--font--weight--extra-bold: 800;
    --wp--custom--spacing--4: 4px;
    --wp--custom--spacing--8: calc(var(--wp--custom--spacing--4) * 2);
    --wp--custom--spacing--12: calc(var(--wp--custom--spacing--4) * 3);
    --wp--custom--spacing--16: calc(var(--wp--custom--spacing--4) * 4);
    --wp--custom--spacing--24: calc(var(--wp--custom--spacing--4) * 6);
    --wp--custom--spacing--32: calc(var(--wp--custom--spacing--4) * 8);
    --wp--custom--spacing--40: calc(var(--wp--custom--spacing--4) * 10);
    --wp--custom--spacing--48: calc(var(--wp--custom--spacing--4) * 12);
    --wp--custom--spacing--56: calc(var(--wp--custom--spacing--4) * 14);
    --wp--custom--spacing--64: calc(var(--wp--custom--spacing--4) * 16);
    --wp--custom--spacing--72: calc(var(--wp--custom--spacing--4) * 18);
    --wp--custom--spacing--80: calc(var(--wp--custom--spacing--4) * 20);
    --wp--custom--spacing--88: calc(var(--wp--custom--spacing--4) * 22);
    --wp--custom--spacing--96: calc(var(--wp--custom--spacing--4) * 24);
    --wp--custom--spacing--125: calc(var(--wp--custom--spacing--4) * 31.25);
    --wp--custom--spacing--8-16: clamp(0.5rem, 0.3261rem + 0.8696vw, 1rem);
    --wp--custom--spacing--16-24: clamp(1rem, 0.769vw + 0.846rem, 1.5rem);
    --wp--custom--spacing--16-32: clamp(1rem, 1.538vw + 0.692rem, 2rem);
    --wp--custom--spacing--16-40: clamp(1rem, 0.4783rem + 2.6087vw, 2.5rem);
    --wp--custom--spacing--16-56: clamp(1rem, 0.1304rem + 4.3478vw, 3.5rem);
    --wp--custom--spacing--24-32: clamp(1.5rem, 1.3261rem + 0.8696vw, 2rem);
    --wp--custom--spacing--24-40: clamp(1.5rem, 1.538vw + 1.192rem, 2.5rem);
    --wp--custom--spacing--32-40: clamp(2rem, 1.8261rem + 0.8696vw, 2.5rem);
    --wp--custom--spacing--32-56: clamp(2rem, 1.4783rem + 2.6087vw, 3.5rem);
    --wp--custom--spacing--40-56: clamp(2.5rem, 1.79vw + 1.352rem, 3.5rem);
    --wp--custom--spacing--40-64: clamp(2.5rem, 1.9783rem + 2.6087vw, 4rem);
    --wp--custom--spacing--40-80: clamp(2.5rem, 3.846vw + 1.731rem, 5rem);
    --wp--custom--spacing--56-96: clamp(3.5rem, 2.6304rem + 4.3478vw, 6rem);
    --wp--custom--spacing--80-120: clamp(5rem, 4.1304rem + 4.3478vw, 7.5rem);
    --wp--custom--transition--duration--base: 200ms;
    --wp--custom--transition--duration--fast: 100ms;
    --wp--custom--transition--duration--medium: 300ms;
    --wp--custom--transition--duration--slow: 400ms;
    --wp--custom--transition--timing-function--base: ease-in-out;
    --wp--custom--transition--timing-function--ease-out-circ: cubic-bezier(0, 0.55, 0.45, 1);;
    --wp--custom--tenup--icon-position: right;
    --wp--custom--tenup--icon--icon-name: arrow-down;
    --wp--custom--tenup--expanded--icon--icon-name: arrow-up;
}

.wp-block-query {
    --wp--custom--uikit--animation: ;
}

.wp-block-site-header {
    --wp--preset--color--white: var(--wp--custom--color--white);
    --wp--preset--color--green-500: var(--wp--custom--color--green-500);
    --wp--preset--color--black-500: var(--wp--custom--color--black-500);
}

:root {
    --wp--style--global--content-size: var(--wp--custom--content--width--default);
    --wp--style--global--wide-size: var(--wp--custom--content--width--wide);
}

:where(body) {
    margin: 0;
}

:where(.wp-site-blocks) > :first-child {
    margin-block-start: 0;
}

:where(.wp-site-blocks) > :last-child {
    margin-block-end: 0;
}

:root {
    --wp--style--block-gap: 24px;
}

:root :where(.is-layout-flex) {
    gap: 24px;
}

:root :where(.is-layout-grid) {
    gap: 24px;
}

.is-layout-constrained > :where(:not(.align-left):not(.align-right):not(.align-full)) {
    margin-left: auto !important;
    margin-right: auto !important;
}

.is-layout-constrained > .align-wide {
    max-width: var(--wp--style--global--wide-size);
}

body .is-layout-flex {
    display: flex;
    align-items: center;
}

.is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

.is-layout-flex > :is(*, div) {
    margin: 0;
}

body .is-layout-grid {
    display: grid;
}

.is-layout-grid > :is(*, div) {
    margin: 0;
}

body {
    color: var(--wp--custom--color--black-500);
    font-family: var(--wp--custom--font--family--base);
    font-size: var(--wp--custom--font--size--19);
    font-weight: var(--wp--custom--font--weight--reg);
    line-height: var(--wp--custom--font--lh--1-4);
    padding: 0;
}

h1 {
    font-family: var(--wp--custom--font--family--base);
    font-size: var(--wp--custom--font--size--33-57);
    font-weight: var(--wp--custom--font--weight--bold);
    letter-spacing: var(--wp--custom--font--ls--neg-2);
    line-height: var(--wp--custom--font--lh--1-15);
}

h2 {
    font-family: var(--wp--custom--font--family--base);
    font-size: var(--wp--custom--font--size--28-40);
    font-weight: var(--wp--custom--font--weight--bold);
    letter-spacing: var(--wp--custom--font--ls--neg-2);
    line-height: var(--wp--custom--font--lh--1-15);
}

h3 {
    font-family: var(--wp--custom--font--family--base);
    font-size: var(--wp--custom--font--size--23-33);
    font-weight: var(--wp--custom--font--weight--bold);
    letter-spacing: var(--wp--custom--font--ls--neg-2);
    line-height: var(--wp--custom--font--lh--1-2);
}

h4 {
    font-family: var(--wp--custom--font--family--base);
    font-size: var(--wp--custom--font--size--19-28);
    font-weight: var(--wp--custom--font--weight--bold);
    letter-spacing: var(--wp--custom--font--ls--neg-2);
    line-height: var(--wp--custom--font--lh--1-2);
}

h5 {
    font-family: var(--wp--custom--font--family--base);
    font-size: var(--wp--custom--font--size--16-23);
    font-weight: var(--wp--custom--font--weight--bold);
    letter-spacing: var(--wp--custom--font--ls--neg-2);
    line-height: var(--wp--custom--font--lh--1-2);
}

h6 {
    font-family: var(--wp--custom--font--family--base);
    font-size: var(--wp--custom--font--size--13-19);
    font-weight: var(--wp--custom--font--weight--bold);
    letter-spacing: var(--wp--custom--font--ls--neg-2);
    line-height: var(--wp--custom--font--lh--1-2);
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-green-500-color {
    color: var(--wp--preset--color--green-500) !important;
}

.has-black-500-background-color {
    background-color: var(--wp--preset--color--black-500) !important;
}

.has-green-500-background-color {
    background-color: var(--wp--preset--color--green-500) !important;
}

.has-yellow-700-background-color {
    background-color: var(--wp--preset--color--yellow-700) !important;
}

.has-display-1-font-size {
    font-size: 3rem;
}

.has-h-5-font-size {
    font-size: var(--wp--preset--font-size--h-5) !important;
}

.has-body-3-font-size {
    font-size: var(--wp--preset--font-size--body-3) !important;
}

.has-secondary-font-family {
    font-family: var(--wp--preset--font-family--secondary) !important;
}

.wp-block-site-header.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.wp-block-site-header.has-green-500-color {
    color: var(--wp--preset--color--green-500) !important;
}

.wp-block-site-header.has-green-500-background-color {
    background-color: var(--wp--preset--color--green-500) !important;
}

:root :where(.wp-block-navigation) {
    font-size: var(--wp--custom--font--size--16);
    font-weight: var(--wp--custom--font--weight--reg);
    letter-spacing: var(--wp--custom--font--ls--plus-3);
    line-height: var(--wp--custom--font--lh--1-4);
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

@font-face {
    font-family: nb_international_proregular;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/nbinternationalproreg-webfont.woff2') format('woff2');
}

@font-face {
    font-family: nb_international_proregular;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./fonts/nbinternationalpromed-webfont.woff2') format('woff2');
}

@font-face {
    font-family: nb_international_proregular;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/nbinternationalprobol-webfont.woff2') format('woff2');
}

@font-face {
    font-family: yellix;
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('./fonts/Yellix-ExtraBold.woff2') format('woff2');
}

@keyframes fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

html {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4
}

body {
    margin: 0
}

hr {
    color: inherit;
    height: 0
}

abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b, strong {
    font-weight: bolder
}

code, kbd, pre, samp {
    font-family: ui-monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    border-color: inherit;
    text-indent: 0
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, select {
    text-transform: none
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

::-moz-focus-inner {
    border-style: none;
    padding: 0
}

:-moz-focusring {
    outline: 1px dotted ButtonText
}

:-moz-ui-invalid {
    box-shadow: none
}

legend {
    padding: 0
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

.wp-site-blocks {
    isolation: isolate
}

*, :after, :before {
    box-sizing: border-box
}

blockquote:where(:not(.wp-block)), body, dd, dl, figure:where(:not(.wp-block)), h1, h2, h3, h4, h5, h6, p {
    margin: 0
}

ol[role=list], ul[role=list] {
    list-style: none
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed
}

img, picture {
    display: block;
    height: auto;
    max-width: 100%
}

button, input, select, textarea {
    font: inherit
}

fieldset {
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0
}

:where(:not(form)) .d-flex {
    display: flex
}

:where(:not(form)) .flex-column {
    flex-direction: column
}

@media (min-width: 48em) {
    :where(:not(form)) .flex-md-row {
        flex-direction: row
    }
}

:where(:not(form)) .d-grid {
    display: grid;
    grid-gap: var(--wp--custom--spacing--16);
    gap: var(--wp--custom--spacing--16);
    grid-template-columns: repeat(var(--columns, 12), 1fr);
    grid-template-rows: repeat(1, 1fr)
}

:where(:not(form)) .d-grid .g-col-12 {
    grid-column: auto/span 12
}

@media (min-width: 30em) {
    :where(:not(form)) .d-grid .g-col-sm-6 {
        grid-column: auto/span 6
    }
}


@media (min-width: 64em) {
    :where(:not(form)) .d-grid .g-col-lg-3 {
        grid-column: auto/span 3
    }
}

:where(:not(form)) .gap-8 {
    gap: var(--wp--custom--spacing--8)
}

:where(:not(form)) .gap-30 {
    gap: 30px
}

:where(form) {
    container-name: cate-main-container;
    container-type: inline-size
}

:where(form) .d-flex {
    display: flex
}

:where(form) .flex-column {
    flex-direction: column
}

@container cate-main-container (min-width: 48em) {
    :where(form) .flex-md-row {
        flex-direction: row
    }
}

:where(form) .d-grid {
    display: grid;
    grid-gap: var(--wp--custom--spacing--16);
    gap: var(--wp--custom--spacing--16);
    grid-template-columns: repeat(var(--columns, 12), 1fr);
    grid-template-rows: repeat(1, 1fr)
}

:where(form) .d-grid .g-col-12 {
    grid-column: auto/span 12
}

@container cate-main-container (min-width: 30em) {

    :where(form) .d-grid .g-col-sm-6 {
        grid-column: auto/span 6
    }
}

:where(form) .gap-8 {
    gap: var(--wp--custom--spacing--8)
}

:where(form) .gap-30 {
    gap: 30px
}

:root {
    --wp--preset--spacing--base: calc(var(--wp--custom--spacing--16) * 0.875);
    --wp--preset--spacing--2: var(--wp--custom--spacing--4);
    --wp--preset--spacing--4: var(--wp--custom--spacing--4);
    --wp--preset--spacing--8: var(--wp--custom--spacing--8);
    --wp--preset--spacing--12: var(--wp--custom--spacing--12);
    --wp--preset--spacing--16: var(--wp--custom--spacing--16);
    --wp--preset--spacing--20: var(--wp--custom--spacing--24);
    --wp--preset--spacing--24: var(--wp--custom--spacing--24);
    --wp--preset--spacing--32: var(--wp--custom--spacing--32);
    --wp--preset--spacing--40: var(--wp--custom--spacing--40);
    --wp--preset--spacing--48: var(--wp--custom--spacing--48);
    --wp--preset--spacing--56: var(--wp--custom--spacing--56)
}

@media (prefers-reduced-motion: reduce) {
    *, :after, :before {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important
    }
}

a:where(:not(.components-external-link)):focus-visible {
    outline: 2px dashed currentcolor;
    outline-offset: 2px
}

h1, h2, h3, h4, h5, h6 {
    --font-color: var(--wp--custom--color--black-500);
    color: var(--font-color)
}

p {
    --font-color: var(--wp--custom--color--black-500);
    color: var(--font-color)
}

.has-black-500-background-color p, .has-green-500-background-color p, .has-purple-500-background-color p {
    --font-color: var(--wp--custom--color--white)
}

html {
    scroll-padding-top: 7rem
}

body {
    display: flex;
    flex-direction: column
}

@media (min-width: 64em) {
    h1, h2 {
        line-height: var(--wp--custom--font--lh--1-1)
    }

    h4, h5 {
        line-height: var(--wp--custom--font--lh--1-15)
    }
}

:where(em) {
    font-style: italic
}

:where(strong) {
    font-weight: var(--wp--custom--font--weight--bold)
}

p {
    margin-bottom: 0;
    margin-top: 0
}

svg {
    height: auto;
    vertical-align: middle;
    width: 1em
}

svg path[fill]:where(:not([fill=none])) {
    fill: var(--c-svg, currentColor)
}

svg path[stroke]:where(:not([stroke=none])) {
    stroke: var(--c-svg, currentColor)
}

.wp-block-post-content :where(ul,ol):not(.wp-block-post-template) {
    list-style: none;
    padding-left: 0
}

.wp-block-post-content :where(ul,ol):not(.wp-block-post-template) > :where(li) {
    position: relative
}

.wp-block-post-content :where(ul,ol):not(.wp-block-post-template) > :where(li):where(:not(:first-child)) {
    margin-top: var(--wp--custom--spacing--24)
}

.wp-block-post-content :where(ul,ol):not(.wp-block-post-template) > :where(li) > :where(ol), .wp-block-post-content :where(ul,ol):not(.wp-block-post-template) > :where(li) > :where(ul) {
    margin-top: var(--wp--custom--spacing--24)
}

.wp-block-post-content :where(ul,ol):not(.wp-block-post-template) > :where(li) > :where(ul) {
    padding-left: var(--wp--custom--spacing--8)
}

form {
    --form-color: var(--wp--custom--color--black-500);
    --label-color: var(--wp--custom--color--gray-900);
    --border-color: var(--wp--custom--color--gray-700);
    --placeholder-color: var(--wp--custom--color--gray-700);
    --error-color: var(--wp--custom--color--red-500);
    --select-bg: transparent;
    --form-radius: 2px;
    --disabled-color: var(--wp--custom--color--gray-700);
    --disabled-bg-color: var(--wp--custom--color--gray-100);
    --disabled-border-color: var(--wp--custom--color--gray-300);
    --disabled-placeholder-color: var(--wp--custom--color--gray-700);
    --focus-outline-color: var(--wp--custom--color--green-700);
    --radio-color: var(--wp--custom--color--green-500);
    --radio-outline-color: var(--wp--custom--color--green-500);
    color: var(--form-color)
}

.has-black-500-background-color form, .has-green-500-background-color form, .has-purple-500-background-color form {
    --form-color: var(--wp--custom--color--white);
    --label-color: var(--wp--custom--color--white);
    --border-color: var(--wp--custom--color--gray-700);
    --placeholder-color: var(--wp--custom--color--gray-500);
    --error-color: var(--wp--custom--color--red-300);
    --disabled-color: var(--wp--custom--color--gray-500);
    --disabled-bg-color: var(--wp--custom--color--gray-100);
    --disabled-border-color: var(--wp--custom--color--gray-300);
    --disabled-placeholder-color: var(--wp--custom--color--gray-700);
    --focus-outline-color: var(--wp--custom--color--green-100);
    --radio-color: var(--wp--custom--color--green-500);
    --radio-outline-color: var(--wp--custom--color--green-500)
}





.wp-site-blocks > .seamless-scroll-container main, .wp-site-blocks > footer, .wp-site-blocks > main {
    --template-width: var(--wp--custom--content--width--article-wide);
    --gutter: var(--wp--custom--spacing--16);
    --block-spacing: var(--wp--custom--spacing--24);
    padding-left: 0;
    padding-right: 0
}

.wp-block-event-banner-countdown-holder :where(.align-wide), .wp-site-blocks > .seamless-scroll-container main :where(.align-wide), .wp-site-blocks > footer :where(.align-wide), .wp-site-blocks > main :where(.align-wide) {
    max-width: var(--wp--custom--content--width--wide)
}

.wp-site-blocks > main > .entry-content > :where(:not(.align-left):not(.align-right)) {
    padding-left: var(--gutter);
    padding-right: var(--gutter)
}

.site-footer {
    padding-bottom: var(--wp--custom--spacing--40);
    padding-top: var(--wp--custom--spacing--40)
}

@media (max-width: 47.9375em) {
    .site-footer .copyright {
        border-top: 1px solid var(--wp--custom--color--gray-700);
        margin-top: var(--wp--custom--spacing--16);
        padding-top: var(--wp--custom--spacing--16)
    }
}

.archive .wp-site-blocks > footer, .archive .wp-site-blocks > main.template-content.is-layout-constrained, .home .wp-site-blocks > footer, .home .wp-site-blocks > main.template-content.is-layout-constrained, .page-template-latest-news .wp-site-blocks > footer, .page-template-latest-news .wp-site-blocks > main.template-content.is-layout-constrained {
    --template-width: var(--wp--style--global--wide-size)
}

.post-template-default .wp-site-blocks > footer, .post-template-default .wp-site-blocks > main.template-content.is-layout-constrained, .tc_sponsored_post-template-default .wp-site-blocks > footer, .tc_sponsored_post-template-default .wp-site-blocks > main.template-content.is-layout-constrained {
    --template-width: var(--wp--custom--content--width--article-wide)
}

.page-template-contact .wp-site-blocks > footer, .page-template-contact .wp-site-blocks > main.template-content.is-layout-constrained, .page-template-default .wp-site-blocks > footer, .page-template-default .wp-site-blocks > main.template-content.is-layout-constrained, .page-template-my-account .wp-site-blocks > footer, .page-template-my-account .wp-site-blocks > main.template-content.is-layout-constrained, .page-template-page-videos .wp-site-blocks > footer, .page-template-page-videos .wp-site-blocks > main.template-content.is-layout-constrained, .post-type-archive-tc_event .wp-site-blocks > footer, .post-type-archive-tc_event .wp-site-blocks > main.template-content.is-layout-constrained, .post-type-archive-tc_podcast .wp-site-blocks > footer, .post-type-archive-tc_podcast .wp-site-blocks > main.template-content.is-layout-constrained, .post-type-archive-tc_storyline .wp-site-blocks > footer, .post-type-archive-tc_storyline .wp-site-blocks > main.template-content.is-layout-constrained, .post-type-archive-tc_video .wp-site-blocks > footer, .post-type-archive-tc_video .wp-site-blocks > main.template-content.is-layout-constrained {
    --template-width: var(--wp--style--global--wide-size)
}

.wp-site-blocks > footer > :where(:not(.align-left):not(.align-right):not(.align-full):not(.entry-content)), .wp-site-blocks > main.template-content.is-layout-constrained > :where(:not(.align-left):not(.align-right):not(.align-full):not(.entry-content)) {
    max-width: var(--template-width)
}

.wp-site-blocks > footer > :where(.align-full.is-layout-constrained) > *, .wp-site-blocks > main.template-content.is-layout-constrained > :where(.align-full.is-layout-constrained) > * {
    max-width: var(--template-width)
}

footer.wp-block-template-part {
    margin-bottom: 0 !important
}

.upcoming-events-container {
    flex-wrap: wrap !important
}

.upcoming-events-container > div.wp-block-column:first-child {
    flex-basis: 100%
}

@media (min-width: 64em) {
    .upcoming-events-container > div.wp-block-column:first-child {
        flex-basis: 0
    }
}

.upcoming-events-container > div.wp-block-column:last-child {
    margin-left: auto;
    margin-right: auto
}

.home .wp-block-cate-post-compact {
    margin-top: 0
}

.cate-post-item {
    --c-signup-item-background-color: var(--wp--preset--color--white);
    --c-signup-item-border-color: var(--wp--custom--color--gray-300);
    --c-signup-item-border-radius: 2px;
    --c-signup-item-border-width: 1px;
    --c-signup-item-min-height: auto;
    --c-signup-item-padding-x: 13px;
    --c-signup-item-padding-y: 11px;
    --c-signup-item-background-color-selected: rgba(104, 241, 118, .102);
    --c-signup-item-border-color-selected: var(--wp--custom--color--green-500);
    --c-signup-item-border-width-selected: 2px;
    --c-signup-item-padding-x-selected: 12px;
    --c-signup-item-padding-y-selected: 10px;
    --c-signup-item-select-icon-background: transparent;
    --c-signup-item-select-icon-border: var(--wp--custom--color--green-500);
    --c-signup-item-select-icon-color: var(--wp--custom--color--green-500);
    --c-signup-item-select-icon-size: var(--wp--custom--spacing--24);
    --c-signup-item-select-icon-position: var(--wp--custom--spacing--8);
    --c-signup-item-select-icon-background-selected: var(--wp--custom--color--green-500);
    --c-signup-item-select-icon-border-selected: var(--wp--custom--color--green-500);
    --c-signup-item-select-icon-color-selected: var(--wp--preset--color--white);
    --c-signup-item-text-color: var(--wp--custom--color--black-500);
    --c-signup-item-title-b-spacing: 4px;
    --c-signup-item-title-padding-right: calc(var(--c-signup-item-select-icon-size) + var(--c-signup-item-select-icon-position) + var(--c-signup-item-padding-x));
    --c-signup-item-title-size: var(--wp--custom--font--size--19-23);
    --c-signup-item-title-weight: var(--wp--custom--font--weight--bold);
    --c-signup-items-gap: var(--wp--custom--spacing--8)
}

.cate-post-item .cate-post-item__title {
    color: var(--c-signup-item-text-color);
    font-weight: var(--c-signup-item-title-weight);
    margin: 0 0 var(--c-signup-item-title-b-spacing);
}

.cate-post-item .cate-post-item__select {
    background-color: var(--c-signup-item-background-color);
    border: var(--c-signup-item-border-width) solid var(--c-signup-item-border-color);
    border-radius: var(--c-signup-item-border-radius);
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: var(--c-signup-item-min-height);
    padding: var(--c-signup-item-padding-y) var(--c-signup-item-padding-x);
    position: relative;
    text-align: left;
    transition-duration: .15s;
    transition-property: background-color, border-color;
    transition-timing-function: var(--wp--custom--transition--timing-function--ease-out-circ);
    width: 100%;
    text-decoration: auto;
}

.cate-post-item .cate-post-item__description {
    color: var(--c-signup-item-text-color);
    font-size: var(--wp--preset--font-size--body-2);
    margin: 0
}

.cate-post-item.cate-post-item--selected .cate-post-item__select {
    background-color: var(--c-signup-item-background-color-selected);
    border-color: var(--c-signup-item-border-color-selected);
    border-width: var(--c-signup-item-border-width-selected);
    padding: var(--c-signup-item-padding-y-selected) var(--c-signup-item-padding-x-selected)
}

.has-black-500-background-color .cate-post-item {
    --c-signup-item-background-color: transparent;
    --c-signup-item-border-color: var(--wp--custom--color--gray-700);
    --c-signup-item-border-color-selected: var(--wp--custom--color--green-300);
    --c-signup-item-select-icon-border: var(--wp--custom--color--green-100);
    --c-signup-item-select-icon-color: var(--wp--custom--color--green-100);
    --c-signup-item-select-icon-border-selected: var(--wp--custom--color--green-100);
    --c-signup-item-select-icon-background-selected: var(--wp--custom--color--green-100);
    --c-signup-item-select-icon-color-selected: var(--wp--custom--color--black-500);
    --c-signup-item-text-color: var(--wp--custom--color--white)
}

.has-green-500-background-color .cate-post-item {
    --c-signup-item-background-color: transparent;
    --c-signup-item-border-color: var(--wp--custom--color--white);
    --c-signup-item-border-color-selected: var(--wp--custom--color--white);
    --c-signup-item-select-icon-border: var(--wp--custom--color--white);
    --c-signup-item-select-icon-color: var(--wp--custom--color--white);
    --c-signup-item-select-icon-border-selected: var(--wp--custom--color--white);
    --c-signup-item-select-icon-background-selected: var(--wp--custom--color--white);
    --c-signup-item-select-icon-color-selected: var(--wp--custom--color--green-500);
    --c-signup-item-text-color: var(--wp--custom--color--white)
}

.wp-block-card:has(>.loop-card) {
    container-name: loop-card-container;
    container-type: inline-size
}

.loop-card {
    --border-bottom-color: var(--wp--custom--color--gray-300);
    --title-size: var(--wp--custom--font--size--19);
    --title-color: var(--wp--custom--color--black-500);
    --meta-size: var(--wp--custom--font--size--16);
    --meta-color: var(--wp--custom--color--gray-700);
    --icon-bg-color: var(--wp--custom--color--green-500);
    --icon-color: var(--wp--custom--color--white);
    --gap: var(--wp--custom--spacing--16);
    --cat-color: var(--wp--custom--color--green-500);
    --desc-font-size: var(--wp--custom--font--size--13);
    --desc-color: var(--wp--custom--color--gray-700);
    --event-spots-color: var(--wp--custom--color--red-500);
    --image-size: auto;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-bottom-color);
    display: flex;
    gap: var(--gap);
    margin-bottom: var(--wp--custom--spacing--16);
    padding-bottom: var(--wp--custom--spacing--16);
    position: relative
}

@container loop-card-container (min-width: 48em) {
    .loop-card {
        --gap: var(--wp--custom--spacing--24)
    }
}

.has-black-500-background-color .loop-card, .has-green-500-background-color .loop-card, .has-purple-500-background-color .loop-card {
    --meta-color: var(--wp--custom--color--white)
}

.has-black-500-background-color .loop-card, .has-green-500-background-color .loop-card, .has-purple-500-background-color .loop-card {
    --title-color: var(--wp--custom--color--white);
    --icon-bg-color: var(--wp--custom--color--white);
    --icon-color: var(--wp--custom--color--green-500);
    --border-bottom-color: hsla(0, 0%, 100%, .2);
    --cat-color: var(--wp--custom--color--white);
    --desc-color: var(--wp--custom--color--white);
    --event-spots-color: var(--wp--custom--color--white)
}

.has-yellow-700-background-color .loop-card {
    --border-bottom-color: #d2d76d;
    --meta-color: var(--wp--custom--color--black-500);
    --icon-bg-color: var(--wp--custom--color--black-900)
}

.loop-card.loop-card--default.loop-card--horizontal {
    --image-size: 200px;
}

.loop-card.loop-card--simple {
    --image-size: 80px;
    padding-top: var(--wp--custom--spacing--32)
}

@media (min-width: 64em) {
    .loop-card.loop-card--simple {
        --border-bottom-color: transparent;
        --gap: var(--wp--custom--spacing--12);
        --image-size: 90px;
        display: block;
        padding-top: 0
    }
}

.loop-card.loop-card--featured-bg {
    --border-bottom-color: transparent;
    --title-size: 1.2rem;
    --title-color: var(--wp--custom--color--white);
    --meta-color: var(--wp--custom--color--gray-500);
    --icon-bg-color: var(--wp--custom--color--white);
    --icon-color: var(--wp--custom--color--green-500);
    display: block;
    margin-bottom: 0;
    overflow: hidden;
    padding-bottom: 0;
    position: relative
}

.loop-card.loop-card--featured-bg.loop-card--horizontal {
    --title-size: var(--wp--custom--font--size--33-57)
}

.loop-card.loop-card--list:not(.loop-card--post-type-tc_event) {
    --title-size: var(--wp--custom--font--size--16);
    margin-left: var(--wp--custom--spacing--24)
}

.loop-card.loop-card--list:not(.loop-card--post-type-tc_event):before {
    background-color: var(--icon-bg-color);
    content: "";
    height: var(--wp--custom--spacing--8);
    left: calc(var(--wp--custom--spacing--24) * -1);
    position: absolute;
    top: 5px;
    width: var(--wp--custom--spacing--8)
}

.loop-card.loop-card--list:not(.loop-card--post-type-tc_event) .loop-card__content > :not(.loop-card__title), .loop-card.loop-card--list:not(.loop-card--post-type-tc_event) .loop-card__figure {
    display: none;
}

.loop-card:has(.loop-card__title a:focus-visible) .loop-card__figure img, .loop-card:has(.loop-card__title a:hover) .loop-card__figure img {
    transform: scale(1.03)
}

.loop-card :where(a) {
    color: currentColor;
    -webkit-text-decoration: none;
    text-decoration: none
}

.loop-card :where(a):focus-within, .loop-card :where(a):hover {
    -webkit-text-decoration: underline;
    text-decoration: underline
}

.loop-card--default.loop-card--horizontal .loop-card__cat-group {
    align-items: flex-start;
    display: flex;
    gap: var(--wp--custom--spacing--12);
    height: var(--wp--custom--spacing--32);
    justify-self: flex-start;

}

@container loop-card-container (min-width: 48em) {
    .loop-card--default.loop-card--horizontal .loop-card__cat-group {
        height: auto;
        position: relative
    }
}

.loop-card--simple .loop-card__cat-group {
    align-items: flex-start;
    bottom: 0;
    display: flex;
    gap: var(--wp--custom--spacing--12);
    height: var(--wp--custom--spacing--32);
    justify-self: flex-start;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

@media (min-width: 64em) {
    .loop-card--simple .loop-card__cat-group {
        flex-direction: column;
        gap: 0;
        height: auto;
        position: relative
    }
}

.loop-card__cat {
    --cat-color: var(--wp--custom--color--green-500);
    --border-color: var(--wp--custom--color--gray-300);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -1px 0 transparent;
    font-size: var(--wp--custom--font--size--13);
    letter-spacing: var(--wp--custom--font--ls--plus-2);
    line-height: var(--wp--custom--font--lh--1-3);
    padding-top: 6px;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: uppercase;
    transition-duration: var(--wp--custom--transition--duration--base);
    transition-property: box-shadow, color;
    --cat-sponsored-color: var(--wp--custom--color--blue-500);
    align-self: flex-start;
    color: var(--cat-color);
    position: relative;
    z-index: 3
}

.loop-card__cat:focus-within, .loop-card__cat:hover {
    box-shadow: 0 -1px 0 var(--border-color);
    -webkit-text-decoration: none;
    text-decoration: none
}

.has-black-500-background-color .loop-card__cat, .has-green-500-background-color .loop-card__cat, .has-purple-500-background-color .loop-card__cat {
    --border-color: hsla(0, 0%, 100%, .2);
    --cat-color: var(--wp--custom--color--white)
}

.has-black-500-background-color .loop-card__cat:focus-within, .has-black-500-background-color .loop-card__cat:hover, .has-green-500-background-color .loop-card__cat:focus-within, .has-green-500-background-color .loop-card__cat:hover, .has-purple-500-background-color .loop-card__cat:focus-within, .has-purple-500-background-color .loop-card__cat:hover {
    --border-color: var(--wp--custom--color--white)
}

.has-yellow-700-background-color .loop-card__cat {
    --border-color: rgba(84, 90, 87, .4)
}

.has-yellow-700-background-color .loop-card__cat:focus-within, .has-yellow-700-background-color .loop-card__cat:hover {
    --border-color: var(--wp--custom--color--black-500)
}

.article--brief .loop-card__cat:focus-within, .article--brief .loop-card__cat:hover {
    box-shadow: none;
    color: var(--cat-color);
    -webkit-text-decoration: none;
    text-decoration: none
}

.loop-card--featured-bg .loop-card__cat:focus-within, .loop-card--featured-bg .loop-card__cat:hover {
    --border-color: hsla(0, 0%, 100%, .2);
    box-shadow: none;
    color: var(--cat-color);
    -webkit-text-decoration: none;
    text-decoration: none
}

@media (max-width: 63.9375em) {
    .loop-card__cat {
        --border-color: transparent
    }
}

.loop-card--featured-bg .loop-card__cat {
    --cat-color: var(--wp--custom--color--white);
    --cat-sponsored-color: var(--wp--custom--color--white)
}

.loop-card--default.loop-card--horizontal .loop-card__cat, .loop-card--simple .loop-card__cat {
    border-top-color: transparent
}

@media (min-width: 48em) {
    .loop-card--simple .loop-card__cat {
        border-top-color: hsla(0, 0%, 100%, .2)
    }
}

.loop-card--brief.loop-card--wide .loop-card__cat {
    border-top: 0 !important;
    box-shadow: none;
    display: block;
    padding-top: 0
}

.has-yellow-700-background-color .loop-card__cat {
    --cat-color: var(--wp--custom--color--black-500);
    --cat-sponsored-color: var(--wp--custom--color--blue-900)
}

@media (min-width: 64em) {
    .has-yellow-700-background-color .loop-card--simple .loop-card__cat {
        border-top-color: rgba(84, 90, 87, .4)
    }
}

.loop-card__figure {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-basis: var(--image-size);
    position: relative;
    display: flex;
}

.loop-card--square .loop-card__figure {
    aspect-ratio: 5/3
}

.loop-card--none .loop-card__figure {
    display: none
}

.loop-card--standard .loop-card__figure {
    --image-size: 80px;
    aspect-ratio: 4/3
}

.loop-card--ultra-wide .loop-card__figure {
    aspect-ratio: 2/3
}

@media (min-width: 48em) {
    .loop-card--ultra-wide .loop-card__figure {
        aspect-ratio: 21/9
    }
}

.loop-card__figure img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .6s ease;
    width: 100%
}

.loop-card--featured-bg .loop-card__figure img {
    mask-image: linear-gradient(180deg, #000 70%, transparent)
}

.loop-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--8)
}

@media (min-width: 48em) {
    .loop-card--simple .loop-card__content {
        display: block;
    }

    .loop-card--simple .loop-card__content > :not(:last-child) {
        margin-bottom: var(--wp--custom--spacing--8)
    }
}

.loop-card--featured-bg .loop-card__content {
    background: linear-gradient(0deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .25));
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--12);
    justify-content: flex-end;
    left: 0;
    padding: var(--wp--custom--spacing--24);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
}

.loop-card--featured-bg.loop-card--horizontal .loop-card__content {
    justify-content: flex-end;
    padding-bottom: var(--wp--custom--spacing--24);
    padding-left: var(--wp--custom--spacing--16);
    padding-right: var(--wp--custom--spacing--16)
}

@media (min-width: 48em) {
    .loop-card--featured-bg.loop-card--horizontal .loop-card__content {
        gap: var(--wp--custom--spacing--24);
        justify-content: center;
        padding: 8%
    }
}

.hero-package-5__featured .loop-card__content {
    gap: var(--wp--custom--spacing--16)
}

.loop-card__title {
    align-items: flex-start;
    color: var(--title-color);
    display: flex;
    font-size: var(--title-size);
    gap: var(--wp--custom--spacing--8);
    margin-bottom: 0;
    margin-top: 0
}

.loop-card--list .loop-card__title {
    font-weight: var(--wp--custom--font--weight--med);
    letter-spacing: var(--wp--custom--font--ls--plus-2)
}

@media (min-width: 64em) {
    .loop-card--simple .loop-card__title {
        -webkit-box-orient: vertical;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

.loop-card__meta {
    color: var(--meta-color);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: var(--meta-size);
    gap: var(--wp--custom--spacing--4)
}

@media (min-width: 48em) {
    .loop-card__meta {
        flex-direction: row;
        gap: var(--wp--custom--spacing--4)
    }
}

.loop-card--featured-bg .loop-card__meta {
    flex-direction: row;
    gap: var(--wp--custom--spacing--4)
}

@media (min-width: 64em) {
    .loop-card--simple .loop-card__meta {
        padding-top: var(--wp--custom--spacing--4)
    }
}

.loop-card__date {
    flex-basis: 100%
}

@media (min-width: 48em) {
    .loop-card__date {
        flex-basis: auto
    }
}

.wp-block-post:has(.loop-card) {
    margin-top: 0
}

@keyframes live-pulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .1
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes logo-mark {
    0% {
        fill: transparent
    }

    50% {
        fill: transparent
    }

    to {
        fill: #fff
    }
}

@keyframes logo-mark-reverse {
    0% {
        fill: hsla(0, 0%, 100%, .9)
    }

    50% {
        fill: hsla(0, 0%, 100%, .9)
    }

    to {
        fill: transparent
    }
}

@media (max-width: 47.9375em) {
    .heading-cta-pattern {
        justify-content: space-between
    }
}

:root :where(.wp-element-button, .wp-block-button__link) {
    background: none;
    color: #000;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    border-radius: 99px;
    border: 1px solid green;
    text-decoration: none;
    text-transform: inherit;
    padding: 5px 15px;
}

.heading-cta-pattern .wp-block-button__link {
    align-items: center;
    display: flex;
    gap: var(--wp--custom--spacing--4)
}

.heading-cta-pattern .wp-block-button__link:hover {
    background: green;
    color: #fff;
}

.heading-cta-pattern .wp-block-button__link img {
    filter: var(--c-heading-cta-pattern-button-img-filter);
    width: 16px
}

.has-black-500-background-color .heading-cta-pattern .wp-block-button__link {
    --c-heading-cta-pattern-button-img-filter: invert(1)
}

.has-black-500-background-color .heading-cta-pattern .wp-block-button__link:hover {
    --c-heading-cta-pattern-button-img-filter: invert(0)
}

.more-events-pattern .loop-card__title {
    font-size: var(--wp--custom--font--size--19)
}

.more-events-pattern .loop-card__figure {
    flex-basis: 100px
}

.latest-news-pattern .wp-block-query .wp-block-post:last-child .loop-card {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.wp-block-cate-post-compact {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--24);
    position: relative
}

:root {
    --c-black: #000;
    --c-white: #fff;
    --c-red: red
}


.wp-site-blocks > header {
    margin-top: 0
}

header {
    position: relative;
    z-index: 99
}

.wp-block-site-header {
    --c-site-header-inner-background-color: var(--wp--custom--color--black-500);
    --c-site-header-border-color: var(--wp--custom--color--black-100);
    --c-site-header-gutter: var(--wp--custom--spacing--16);
    --c-site-header-height: 8.625rem;
    --c-site-header-top-padding: 0;
    max-width: none !important;
    padding-top: var(--c-site-header-top-padding);
    position: relative;
    transition-duration: var(--wp--custom--transition--duration--fast);
    transition-property: background-color;
    transition-timing-function: var(--wp--custom--transition--timing-function--base);
    width: 100%;
    z-index: 999
}

@media (min-width: 48em) {
    .wp-block-site-header {
        --c-site-header-gutter: var(--wp--custom--spacing--32)
    }
}

@media (min-width: 64em) {
    .wp-block-site-header {
        --c-site-header-gutter: var(--wp--custom--spacing--40)
    }
}

@media (min-width: 90em) {
    .wp-block-site-header {
        --c-site-header-gutter: 0
    }
}

.wp-block-site-header.has-background.is-menu-open .wp-block-site-header__inner, .wp-block-site-header.is-menu-open .wp-block-site-header__inner {
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

.wp-block-site-header__inner-container {
    background-color: #01671c;
    /*border: 1px solid var(--c-site-header-border-color);*/
    padding-left: var(--c-site-header-gutter);
    padding-right: var(--c-site-header-gutter)
}

.wp-block-site-header__inner {
    align-items: center;
    color: var(--wp--custom--color--white);
    display: flex;
    justify-content: space-between;
    max-width: var(--wp--custom--content--width--wide);
    padding-bottom: var(--wp--custom--spacing--12);
    padding-top: var(--wp--custom--spacing--12);
    position: relative;
    transition-property: border-color;
    transition-timing-function: var(--wp--custom--transition--timing-function--base)
}

.wp-block-site-header__inner {
    margin-left: auto;
    margin-right: auto;
    transition-duration: var(--wp--custom--transition--duration--fast)
}

.logo-img {
    height: 50px;
    max-width: 200px;
}

.wp-block-card-collection {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--16);
    position: relative
}

.wp-block-card-collection__title-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--8)
}

.wp-block-card-collection__title {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
}

.wp-block-card-collection__description {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    color: var(--wp--custom--color--gray-900);
    font-size: var(--wp--custom--font--size--19);
    line-height: var(--wp--custom--font--lh--1-4);
    overflow: hidden
}

.wp-block-card-collection .wp-block-button__link {
    --button-font-color: var(--wp--custom--color--black-500);
    --button-text-decoration: underline !important;
    align-items: center;
    display: flex;
    gap: var(--wp--custom--spacing--4)
}

.wp-block-card-collection .wp-block-button__link:hover {
    -webkit-text-decoration: none !important;
    text-decoration: none !important
}

.wp-block-card-collection .wp-block-button__link:after {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

@keyframes live-pulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .1
    }

    to {
        opacity: 1
    }
}

.aspect-16-9 {
    width: 100%;
    aspect-ratio: 16/9;
}

.flex-direction {
    flex-direction: column;
}


.max-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}

.line-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.max-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.max-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.page-size {
    display: flex;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.page-size a {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
    float: left;
    background: transparent;
    border: solid 1px #ececec;
    color: #111;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-decoration: auto;
    border-radius: 99px;
    padding: 0 10px;
}

.page-size a.is-current {
    background: #2b5663;
    border: solid 1px #2b5663;
    color: #fff;
}

.page-size span {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
    float: left;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background: #2b5663;
    border: solid 1px #2b5663;
    color: #fff;
    border-radius: 99px;
}

.page-size a:hover, .page-size span:hover {
    background: #2b5663;
    border-color: #2b5663;
    color: #fff;
}

.page-size ul {
    display: flex;
    gap: 1.5rem;
    justify-content: start;
    align-items: center;
}

.page-size ul, .page-size li {
    list-style: none;
    margin: 0;
}

.article-info p, .article-info li {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-info ul, .article-info li {
    list-style: disc;
}

.article-info ul {
    padding-left: 2rem;
}

.article-info table {
    width: 100%;
    font-size: 10px;
}

.article-info h1, .article-info h2, .article-info h3, .article-info h4, .article-info h5, .article-info h6 {
    font-weight: 700;
    margin: 10px 0;
    color: #000;
    line-height: 1.1;
}

.article-info h1 {
    font-size: 30px;
}

.article-info h2 {
    font-size: 28px;
}

.article-info h3 {
    font-size: 25px;
}

.article-info h4 {
    font-size: 22px;
}

.article-info h5, .article-info h6 {
    font-size: 19px;
}

.article-info a {
    color: green;
    text-decoration: underline;
}

.article-info img {
    max-width: 450px;
    width: 100%;
}

.footer-list {
    display: flex;
    gap: 1rem;
}

.footer-item a {
    color: #fff !important;
    margin-bottom: 1rem;
    display: flex;
}

.align-full {
    max-width: 100% !important;
}

.margin-b-1 {
    margin-bottom: 1rem;
}

.padding-b-1 {
    padding-bottom: 1rem;
}

.margin-b-2 {
    margin-bottom: .5rem;
}

.margin-0 {
    margin: 0;
}

.justify-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    border-radius: 999px;
    border: 1px solid #fff;
    background: green;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.more-btn a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: auto;
}

.more-btn:hover {
    background: #34cc34;
}

@media screen and (max-width: 768px) {
    .more-btn {
        display: none !important;
    }

    .is-search-open .logo-img {
        display: none;
    }

    .mb-width-60 {
        width: 60%;
    }

    .hero-package-2__featured .loop-card__title {
        --title-size: 1.5rem;
    }

    .has-display-1-font-size {
        font-size: 2.2rem;
    }

    .mb-img .loop-card__figure {
        width: 40%;
        flex-basis: auto;
    }

    .mb-img .loop-card__content {
        width: 70%;
    }
}

.border-bottom-1 {
    border-bottom: 1px solid #d2dcd7;
}

.loop-card-none {
    border: none;
    margin: 0;
    padding: 0;
}

.margin-1 {
    margin: 1.5rem 0;
}


.to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: green;
    font-size: 2rem;
    color: #fff;
    z-index: 50;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    border: none;
}

.to-top img {
    font-size: 1rem;
    height: 1rem;
    width: 1rem;
}

.to-top.show {
    opacity: 1;
    visibility: visible
}

.to-top:hover {
    opacity: .9;
    background: #4fb74f;
}

.article-hero {
    --article-hero-background-color: var(--wp--preset--color--green-500);
    --article-hero-accent-color: var(--wp--preset--color--green-300);
    --article-hero-meta-color: var(--wp--custom--color--gray-100);
    --article-hero-meta-separator-color: hsla(0,0%,100%,.3);
    background-color: var(--article-hero-background-color);
    display: flex;
    flex-direction: column;
    margin-bottom: 10px
}

.article-hero .article-hero__title {
    font-size: var(--wp--preset--font-size--h-2);
    font-weight: bold;
    letter-spacing: var(--wp--custom--font--ls--plus-2);
    margin-bottom: 10px;
    color:#fff;
}

.article-hero .article-hero__date {
    color: var(--article-hero-meta-color);
    font-size: var(--wp--custom--font--size--16);
    position: relative
}

.article-hero.article-hero--image-and-text .article-hero__second-section {
    position: relative
}

.article-hero.article-hero--image-and-text .article-hero__bottom {
    align-items: baseline;
    display: flex;
    gap: calc(var(--wp--custom--spacing--16)*1.125)
}

.article-hero.article-hero--image-and-text .article-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-left: var(--wp--custom--spacing--16);
    margin-right: var(--wp--custom--spacing--16);
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
}

@media (min-width: 48em) {
    .article-hero.article-hero--image-and-text .article-hero__content {
        margin-left: var(--wp--custom--spacing--40);
        margin-right: var(--wp--custom--spacing--24);
    }
}


.article-hero.article-hero--text-only .article-hero__second-section {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--wp--custom--content--width--article-wide);
    padding-left: var(--wp--custom--spacing--16);
    padding-right: var(--wp--custom--spacing--16);
    padding-top: 136px
}

.article-hero.article-hero--text-only .article-hero__bottom {
    margin-bottom: var(--wp--custom--spacing--80)
}

@media (min-width: 48em) {
    .article-hero.article-hero--text-only .article-hero__bottom {
        float:right;
        margin-bottom: 0;
        max-width: 30%;
        width: 320px
    }
}

.article-hero.article-hero--text-only .article-hero__content {
    padding-bottom: 1px
}

.article-hero.article-hero--text-only .article-hero__content:after {
    clear: both;
    content: "";
    display: block
}

.article-hero.article-hero--text-only .article-hero__date {
    display: flex;
    gap: calc(var(--wp--custom--spacing--16)*1.125)
}


.article-hero.article-hero--text-over-image .article-hero__second-section {
    background-color: var(--article-hero-background-color);
    left: 0;
    margin-top: 320px;
    max-width: calc(50% + 593px);
    padding-bottom: var(--wp--custom--spacing--80);
    padding-left: var(--wp--custom--spacing--24);
    padding-top: var(--wp--custom--spacing--24);
    position: relative
}

@media (min-width: 48em) {
    .article-hero.article-hero--text-over-image .article-hero__second-section {
        margin-top:530px;
        padding-left: var(--wp--custom--spacing--80);
        padding-top: var(--wp--custom--spacing--80)
    }
}

@media (min-width: 74em) {
    .article-hero.article-hero--text-over-image .article-hero__second-section {
        left:calc(50% - 593px)
    }
}

.article-hero.article-hero--text-over-image .article-hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--40)
}

.article-hero.article-hero--text-over-image .article-hero__bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1100px
}

@media (min-width: 48em) {
    .article-hero.article-hero--text-over-image .article-hero__bottom {
        flex-direction:row
    }
}

.article-hero.article-hero--text-over-image .article-hero__date:before {
    background: var(--article-hero-meta-separator-color);
    content: "";
    height: 1px;
    left: -14px;
    position: absolute;
    top: 10px;
    width: 10px
}

.article-hero.article-hero--text-over-image .article-hero__title {
    font-size: var(--wp--custom--font--size--28-40)
}

.article-hero.article-hero--featured .article-hero__second-section {
    bottom: 0;
    left: var(--wp--custom--spacing--16)
}

@media (min-width: 48em) {
    .article-hero.article-hero--featured .article-hero__second-section {
        flex-basis:49%;
        position: static
    }
}

.article-hero.article-hero--featured .article-hero__bottom {
    align-items: baseline;
    background-color: var(--article-hero-background-color);
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: calc(var(--wp--custom--spacing--16)*1.125);
    left: var(--wp--custom--spacing--16);
    padding: var(--wp--custom--spacing--24);
    position: absolute;
    width: calc(100% - var(--wp--custom--spacing--16))
}

@media (min-width: 48em) {
    .article-hero.article-hero--featured .article-hero__bottom {
        background-color:transparent;
        margin-left: calc(100% - 332px);
        max-width: 332px;
        padding: 0;
        position: static
    }
}

.article-hero.article-hero--featured .article-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    left: 0;
    max-width: 1184px;
    padding: var(--wp--custom--spacing--16);
    width: 100%
}

@media (min-width: 48em) {
    .article-hero.article-hero--featured .article-hero__content {
        height:640px;
        margin-top: 152px;
        position: absolute
    }
}

@media (min-width: 74em) {
    .article-hero.article-hero--featured .article-hero__content {
        left:calc(50% - 593px);
        padding: 0
    }
}

.article-hero.article-hero--featured .article-hero__title {
    font-size: var(--wp--custom--font--size--28-40)
}

@media (min-width: 48em) {
    .article-hero.article-hero--featured .article-hero__title {
        font-size:var(--wp--custom--font--size--48-69)
    }
}

.article-hero.article-hero--featured .article-hero__date:before {
    background: var(--article-hero-meta-separator-color);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: -10px;
    width: 24px
}

.article-hero__category {
    margin-bottom: 10px;
}

.article-hero__category a {
    font-weight: bold;
    text-decoration: auto;
    color: #fff;
    padding-top: 5px;
    border-top: 1px solid #dfdfdf6b;
}

@media screen and (max-width: 568px) {
    .wp-block-group:where(.has-background) {
        padding: 1rem 0;
    }

    .is-layout-constrained > :where(:not(.align-left):not(.align-right):not(.align-full)){
        margin: 0 12px!important;
    }

    .hero-package-2 {
        display: block;
    }
}