    @keyframes slide-horizontal-new {
        0% {
            transform: translate(100%)
        }
    }
    
    @keyframes slide-horizontal-old {
        80% {
            opacity: 1
        }
        to {
            opacity: 0;
            transform: translate(-100%)
        }
    }
    
    @keyframes slide-vertical-new {
        0% {
            transform: translateY(-100%)
        }
    }
    
    @keyframes slide-vertical-old {
        80% {
            opacity: 1
        }
        to {
            opacity: 0;
            transform: translateY(100%)
        }
    }
    
    @keyframes out-in-new {
        0% {
            opacity: 0
        }
    }
    
    @keyframes out-in-old {
        to {
            opacity: 0
        }
    }
    
     :root:active-view-transition {
        view-transition-name: none
    }
    
     :root:active-view-transition::view-transition-group(*) {
        animation: none
    }
    
     :root:active-view-transition::view-transition-old(*) {
        animation: none
    }
    
     :root:active-view-transition::view-transition-new(*) {
        animation: none
    }
    
     ::view-transition {
        pointer-events: none
    }
    
     :root:active-view-transition #SITE_HEADER {
        view-transition-name: header-group
    }
    
     :root:active-view-transition #WIX_ADS {
        view-transition-name: wix-ads-group
    }
    
     :root:active-view-transition #SITE_FOOTER {
        view-transition-name: footer-group
    }
    
     :root:active-view-transition #BACKGROUND_GROUP_TRANSITION_GROUP>div {
        view-transition-name: background-group
    }
    
     :root:active-view-transition::view-transition-group(page-group) {
        pointer-events: all;
        cursor: wait;
        animation: revert;
        animation-duration: .6s
    }
    
     :root:active-view-transition::view-transition-old(page-group) {
        pointer-events: all;
        cursor: wait;
        animation: revert;
        animation-duration: .6s
    }
    
     :root:active-view-transition::view-transition-new(page-group) {
        pointer-events: all;
        cursor: wait;
        animation: revert;
        animation-duration: .6s
    }
    
     :root:active-view-transition-type(SlideHorizontal)::view-transition-old(page-group) {
        mix-blend-mode: normal;
        animation: .6s cubic-bezier(.83, 0, .17, 1) forwards slide-horizontal-old
    }
    
     :root:active-view-transition-type(SlideHorizontal)::view-transition-new(page-group) {
        mix-blend-mode: normal;
        animation: .6s cubic-bezier(.83, 0, .17, 1) backwards slide-horizontal-new
    }
    
     :root:active-view-transition-type(SlideVertical)::view-transition-old(page-group) {
        mix-blend-mode: normal;
        animation: .6s cubic-bezier(.83, 0, .17, 1) forwards slide-vertical-old
    }
    
     :root:active-view-transition-type(SlideVertical)::view-transition-new(page-group) {
        mix-blend-mode: normal;
        animation: .6s cubic-bezier(.83, 0, .17, 1) backwards slide-vertical-new
    }
    
     :root:active-view-transition-type(OutIn)::view-transition-old(page-group) {
        animation: .35s cubic-bezier(.22, 1, .36, 1) forwards out-in-old
    }
    
     :root:active-view-transition-type(OutIn)::view-transition-new(page-group) {
        animation: .35s cubic-bezier(.64, 0, .78, 0) .35s backwards out-in-new
    }
    
    @media (prefers-reduced-motion:reduce) {
         ::view-transition-group(*) {
            animation: none!important
        }
         ::view-transition-old(*) {
            animation: none!important
        }
         ::view-transition-new(*) {
            animation: none!important
        }
    }
    
    html,
    body {
        vertical-align: baseline;
        background: 0 0;
        border: 0;
        outline: 0;
        margin: 0;
        padding: 0
    }
    
    body {
        --scrollbar-width: 0px;
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px
    }
    
    html,
    body {
        height: 100%
    }
    
    body {
        overflow-x: auto;
        overflow-y: scroll
    }
    
    body:not(.responsive) #site-root {
        width: 100%;
        min-width: var(--site-width)
    }
    
    #SITE_CONTAINER {
        position: relative
    }
    
     :root {
        --one-unit: 1vw;
        --section-max-width: 9999px;
        --spx-stopper-max: 9999px;
        --spx-stopper-min: 0px;
        --browser-zoom: 1
    }
    
    @supports ((-webkit-appearance:none)) and (stroke-color:transparent) {
         :root {
            --safari-sticky-fix: opacity;
            --experimental-safari-sticky-fix: translateZ(0)
        }
    }
    
    @supports (container-type:inline-size) {
         :root {
            --one-unit: 1cqw
        }
    }
    
    div,
    span,
    iframe,
    h1,
    h2,
    h6,
    p,
    a,
    img,
    ul,
    li,
    nav,
    button,
    section,
    header,
    footer,
    title {
        vertical-align: baseline;
        background: 0 0;
        border: 0;
        outline: 0;
        margin: 0;
        padding: 0
    }
    
    ul {
        list-style: none
    }
    
    a {
        cursor: pointer;
        text-decoration: none
    }
    
     :focus {
        outline: none
    }
    
    #site-root {
        top: var(--wix-ads-height);
        min-height: 100%;
        margin: 0 auto;
        position: relative
    }
    
    #SCROLL_TO_TOP,
    #SCROLL_TO_BOTTOM {
        height: 0
    }
    
    [data-mesh-id$=inlineContent] {
        pointer-events: none;
        position: relative
    }
    
    [data-mesh-id$=-gridContainer]>* {
        pointer-events: auto
    }
    
    #masterPage.mesh-layout {
        -ms-grid-rows: max-content max-content min-content max-content;
        -ms-grid-columns: 100%;
        grid-template-rows: max-content max-content min-content max-content;
        grid-template-columns: 100%;
        justify-content: stretch;
        align-items: start;
        display: grid
    }
    
    #masterPage.mesh-layout #PAGES_CONTAINER,
    #masterPage.mesh-layout #soapAfterPagesContainer {
        -ms-grid-column: 1;
        -ms-grid-row-align: start;
        -ms-grid-column-align: start
    }
    
    #masterPage.mesh-layout #PAGES_CONTAINER,
    #masterPage.mesh-layout #soapAfterPagesContainer {
        -ms-grid-row: 3;
        grid-area: 3/1/4/2
    }
    
    #masterPage.mesh-layout #soapAfterPagesContainer {
        width: 100%
    }
    
    #masterPage.mesh-layout #PAGES_CONTAINER {
        align-self: stretch
    }
    
    #masterPage.mesh-layout main#PAGES_CONTAINER {
        display: block
    }
    
    #masterPage.mesh-layout #SITE_PAGES {
        height: 100%
    }
    
    #masterPage.mesh-layout #SITE_PAGES,
    #masterPage.mesh-layout #PAGES_CONTAINER,
    #masterPage.mesh-layout #SITE_FOOTER,
    #masterPage.mesh-layout #SITE_HEADER {
        position: relative
    }
    
    #masterPage.mesh-layout #SITE_HEADER {
        grid-area: 1/1/2/2
    }
    
    #masterPage.mesh-layout #SITE_FOOTER {
        grid-area: 4/1/5/2
    }
    
     :root {
        --wst-button-color-fill-primary: rgb(var(--color_48));
        --wst-button-color-border-primary: rgb(var(--color_49));
        --wst-button-color-text-primary: rgb(var(--color_50));
        --wst-button-color-fill-primary-hover: rgb(var(--color_51));
        --wst-button-color-border-primary-hover: rgb(var(--color_52));
        --wst-button-color-text-primary-hover: rgb(var(--color_53));
        --wst-button-color-fill-primary-disabled: rgb(var(--color_54));
        --wst-button-color-border-primary-disabled: rgb(var(--color_55));
        --wst-button-color-text-primary-disabled: rgb(var(--color_56));
        --wst-button-color-fill-secondary: rgb(var(--color_57));
        --wst-button-color-border-secondary: rgb(var(--color_58));
        --wst-button-color-text-secondary: rgb(var(--color_59));
        --wst-button-color-fill-secondary-hover: rgb(var(--color_60));
        --wst-button-color-border-secondary-hover: rgb(var(--color_61));
        --wst-button-color-text-secondary-hover: rgb(var(--color_62));
        --wst-button-color-fill-secondary-disabled: rgb(var(--color_63));
        --wst-button-color-border-secondary-disabled: rgb(var(--color_64));
        --wst-button-color-text-secondary-disabled: rgb(var(--color_65));
        --wst-color-fill-base-1: rgb(var(--color_36));
        --wst-color-fill-base-2: rgb(var(--color_37));
        --wst-color-fill-base-shade-1: rgb(var(--color_38));
        --wst-color-fill-base-shade-2: rgb(var(--color_39));
        --wst-color-fill-base-shade-3: rgb(var(--color_40));
        --wst-color-fill-accent-1: rgb(var(--color_41));
        --wst-color-fill-accent-2: rgb(var(--color_42));
        --wst-color-fill-accent-3: rgb(var(--color_43));
        --wst-color-fill-accent-4: rgb(var(--color_44));
        --wst-color-fill-background-primary: rgb(var(--color_11));
        --wst-color-fill-background-secondary: rgb(var(--color_12));
        --wst-color-text-primary: rgb(var(--color_15));
        --wst-color-text-secondary: rgb(var(--color_14));
        --wst-color-action: rgb(var(--color_18));
        --wst-color-disabled: rgb(var(--color_39));
        --wst-color-title: rgb(var(--color_45));
        --wst-color-subtitle: rgb(var(--color_46));
        --wst-color-line: rgb(var(--color_47));
        --wst-font-style-h2: var(--font_2);
        --wst-font-style-h3: var(--font_3);
        --wst-font-style-h4: var(--font_4);
        --wst-font-style-h5: var(--font_5);
        --wst-font-style-h6: var(--font_6);
        --wst-font-style-body-large: var(--font_7);
        --wst-font-style-body-medium: var(--font_8);
        --wst-font-style-body-small: var(--font_9);
        --wst-font-style-body-x-small: var(--font_10);
        --wst-color-custom-1: rgb(var(--color_13));
        --wst-color-custom-2: rgb(var(--color_16));
        --wst-color-custom-3: rgb(var(--color_17));
        --wst-color-custom-4: rgb(var(--color_19));
        --wst-color-custom-5: rgb(var(--color_20));
        --wst-color-custom-6: rgb(var(--color_21));
        --wst-color-custom-7: rgb(var(--color_22));
        --wst-color-custom-8: rgb(var(--color_23));
        --wst-color-custom-9: rgb(var(--color_24));
        --wst-color-custom-10: rgb(var(--color_25));
        --wst-color-custom-11: rgb(var(--color_26));
        --wst-color-custom-12: rgb(var(--color_27));
        --wst-color-custom-13: rgb(var(--color_28));
        --wst-color-custom-14: rgb(var(--color_29));
        --wst-color-custom-15: rgb(var(--color_30));
        --wst-color-custom-16: rgb(var(--color_31));
        --wst-color-custom-17: rgb(var(--color_32));
        --wst-color-custom-18: rgb(var(--color_33));
        --wst-color-custom-19: rgb(var(--color_34));
        --wst-color-custom-20: rgb(var(--color_35))
    }
    
    ._pfxlW:active,
    ._pfxlW:focus {
        clip-path: unset;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }
    
    .pr7XQM[data-state~=link]:hover .VCJeT5 {
        border-top-color: rgba(var(--brdh, var(--color_15, color_15)), var(--alpha-brdh, 1));
        border-top-width: 4px
    }
    
    .pr7XQM[data-state~=link]:hover .xYGmQj {
        color: rgb(var(--txth, var(--color_15, color_15)));
        display: inline-block;
        padding-top: 5px
    }
    
    body:not(.responsive) .JsJXaX {
        overflow-x: clip
    }
    
     :root:active-view-transition .JsJXaX {
        view-transition-name: page-group
    }
    
    .AnQkDU {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        height: 100%
    }
    
    .AnQkDU>div {
        align-self: stretch!important;
        justify-self: stretch!important
    }
    
    .StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor {
        background-color: var(--corvid-background-color)!important
    }
    
    .StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor {
        background-color: var(--corvid-hover-background-color)!important
    }
    
    .StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor {
        background-color: var(--corvid-disabled-background-color)!important
    }
    
    .StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor {
        border-color: var(--corvid-border-color)!important
    }
    
    .StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor {
        border-color: var(--corvid-hover-border-color)!important
    }
    
    .StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor {
        border-color: var(--corvid-disabled-border-color)!important
    }
    
    .StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,
    .StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label {
        color: var(--corvid-color)!important
    }
    
    .StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,
    .StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label {
        color: var(--corvid-hover-color)!important
    }
    
    .StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,
    .StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label {
        color: var(--corvid-disabled-color)!important
    }
    
    .StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg {
        fill: var(--corvid-icon-color)!important;
        stroke: var(--corvid-icon-color)!important
    }
    
    .StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg {
        fill: var(--corvid-hover-icon-color)!important;
        stroke: var(--corvid-hover-icon-color)!important
    }
    
    .StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg {
        fill: var(--corvid-disabled-icon-color)!important;
        stroke: var(--corvid-disabled-icon-color)!important
    }
    
    .aeyn4z {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }
    
    .VDJedC {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        fill: var(--corvid-fill-color, var(--fill));
        fill-opacity: var(--fill-opacity);
        stroke: var(--corvid-stroke-color, var(--stroke));
        stroke-opacity: var(--stroke-opacity);
        stroke-width: var(--stroke-width);
        filter: var(--drop-shadow, none);
        opacity: var(--opacity);
        transform: var(--flip)
    }
    
    .VDJedC,
    .VDJedC svg {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }
    
    .VDJedC svg {
        height: var(--svg-calculated-height, 100%);
        margin: auto;
        padding: var(--svg-calculated-padding, 0);
        width: var(--svg-calculated-width, 100%)
    }
    
    .VDJedC svg:not([data-type=ugc]) {
        overflow: visible
    }
    
    .l4CAhn * {
        vector-effect: non-scaling-stroke
    }
    
    .zQ9jDz [data-attr-richtext-marker=true] table td:after {
        border-bottom: 1px solid currentColor;
        border-left: 1px solid currentColor;
        bottom: 0;
        content: "";
        left: 0;
        opacity: .2;
        position: absolute;
        right: 0;
        top: 0
    }
    
    .zQ9jDz [data-attr-richtext-marker=true] table tr td:last-child:after {
        border-right: 1px solid currentColor
    }
    
    .zQ9jDz [data-attr-richtext-marker=true] table tr:first-child td:after {
        border-top: 1px solid currentColor
    }
    
    @supports (-webkit-appearance:none) and (stroke-color:transparent) {
        .qvSjx3>*>:first-child {
            vertical-align: top
        }
    }
    
    @supports (-webkit-touch-callout:none) {
        .qvSjx3>*>:first-child {
            vertical-align: top
        }
    }
    
    .MMl86N p {
        letter-spacing: normal
    }
    
    .MMl86N,
    .ku3DBC {
        word-wrap: break-word;
        direction: var(--text-direction);
        min-height: var(--min-height);
        min-width: var(--min-width);
        mix-blend-mode: var(--blendMode, normal);
        overflow-wrap: break-word;
        pointer-events: none;
        text-align: start;
        text-shadow: var(--textOutline, 0 0 transparent), var(--textShadow, 0 0 transparent);
        text-transform: var(--textTransform, "none")
    }
    
    .MMl86N>*,
    .ku3DBC>* {
        pointer-events: auto
    }
    
    .MMl86N p,
    .ku3DBC h1,
    .ku3DBC h2,
    .ku3DBC h6,
    .ku3DBC p {
        margin-block: 0;
        margin: 0
    }
    
    .ku3DBC a {
        color: inherit
    }
    
    .Vd6aQZ {
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        white-space: nowrap
    }
    
     :host(:not(.device-mobile-optimized)) .vlM3HR {
        margin-left: calc((100% - var(--site-width))/2);
        width: var(--site-width)
    }
    
    .AT7o0U[data-focuscycled=active]:not(:focus-within) {
        outline: 2px solid transparent;
        transition: outline .01s ease
    }
    
     :host(.device-mobile-optimized) .WzbAF8 .mpGTIt {
        white-space: normal
    }
    
    .GRu5Ra .TD54YK {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }
    
    .uDW_Qe:before {
        max-width: var(--margin-start, 0)
    }
    
    .uDW_Qe:after,
    .uDW_Qe:before {
        align-self: stretch;
        content: "";
        flex-grow: 1
    }
    
    .uDW_Qe:after {
        max-width: var(--margin-end, 0)
    }
    
    .FubTgk .uDW_Qe:link,
    .FubTgk .uDW_Qe:visited {
        border-color: transparent
    }
    
     :host(.device-mobile-optimized) .FubTgk[aria-disabled=false]:active .uDW_Qe,
    body.device-mobile-optimized .FubTgk[aria-disabled=false]:active .uDW_Qe {
        background-color: var(--corvid-hover-background-color, rgba(var(--bgh, var(--color_18, color_18)), var(--alpha-bgh, 1)));
        border-color: var(--corvid-hover-border-color, rgba(var(--brdh, var(--color_15, color_15)), var(--alpha-brdh, 1)))
    }
    
     :host(.device-mobile-optimized) .FubTgk[aria-disabled=false]:active .l7_2fn,
    body.device-mobile-optimized .FubTgk[aria-disabled=false]:active .l7_2fn {
        color: var(--corvid-hover-color, rgb(var(--txth, var(--color_15, color_15))))
    }
    
     :host(:not(.device-mobile-optimized)) .FubTgk[aria-disabled=false]:hover .uDW_Qe,
    body:not(.device-mobile-optimized) .FubTgk[aria-disabled=false]:hover .uDW_Qe {
        background-color: var(--corvid-hover-background-color, rgba(var(--bgh, var(--color_18, color_18)), var(--alpha-bgh, 1)));
        border-color: var(--corvid-hover-border-color, rgba(var(--brdh, var(--color_15, color_15)), var(--alpha-brdh, 1)))
    }
    
     :host(:not(.device-mobile-optimized)) .FubTgk[aria-disabled=false]:hover .l7_2fn,
    body:not(.device-mobile-optimized) .FubTgk[aria-disabled=false]:hover .l7_2fn {
        color: var(--corvid-hover-color, rgb(var(--txth, var(--color_15, color_15))))
    }
    
    .uUxqWY:before {
        max-width: var(--margin-start, 0)
    }
    
    .uUxqWY:after,
    .uUxqWY:before {
        align-self: stretch;
        content: "";
        flex-grow: 1
    }
    
    .uUxqWY:after {
        max-width: var(--margin-end, 0)
    }
    
     :host(.device-mobile-optimized) .Vq4wYb[aria-disabled=false]:active .wJVzSK,
    body.device-mobile-optimized .Vq4wYb[aria-disabled=false]:active .wJVzSK {
        color: var(--corvid-hover-color, rgb(var(--txth, var(--color_15, color_15))));
        transition: var(--trans, color .4s ease 0s)
    }
    
     :host(:not(.device-mobile-optimized)) .Vq4wYb[aria-disabled=false]:hover .wJVzSK,
    body:not(.device-mobile-optimized) .Vq4wYb[aria-disabled=false]:hover .wJVzSK {
        color: var(--corvid-hover-color, rgb(var(--txth, var(--color_15, color_15))));
        transition: var(--trans, color .4s ease 0s)
    }
    
     :host(:not(.device-mobile-optimized)) .CohWsy,
    body:not(.device-mobile-optimized) .CohWsy {
        display: flex
    }
    
     :host(:not(.device-mobile-optimized)) .V5AUxf,
    body:not(.device-mobile-optimized) .V5AUxf {
        -moz-column-gap: var(--margin);
        column-gap: var(--margin);
        direction: var(--direction);
        display: flex;
        margin: 0 auto;
        position: relative;
        width: calc(100% - var(--padding)*2)
    }
    
     :host(:not(.device-mobile-optimized)) .V5AUxf>*,
    body:not(.device-mobile-optimized) .V5AUxf>* {
        direction: ltr;
        flex: var(--column-flex)1 0%;
        left: 0;
        margin-bottom: var(--padding);
        margin-top: var(--padding);
        min-width: 0;
        position: relative;
        top: 0
    }
    
     :host(.device-mobile-optimized) .V5AUxf {
        display: block;
        padding-bottom: var(--padding-y);
        padding-left: var(--padding-x, 0);
        padding-right: var(--padding-x, 0);
        padding-top: var(--padding-y);
        position: relative
    }
    
     :host(.device-mobile-optimized) .V5AUxf>* {
        margin-bottom: var(--margin);
        position: relative
    }
    
     :host(.device-mobile-optimized) .V5AUxf>:first-child {
        margin-top: var(--firstChildMarginTop, 0)
    }
    
     :host(.device-mobile-optimized) .V5AUxf>:last-child {
        margin-bottom: var(--lastChildMarginBottom)
    }
    
    .YzqVVZ {
        overflow: visible
    }
    
     :host(:not(.device-mobile-optimized)) .G5K6X8 {
        margin-left: calc((100% - var(--site-width))/2);
        width: var(--site-width)
    }
    
    .xU8fqS[data-focuscycled=active]:not(:focus-within) {
        outline: 2px solid transparent;
        transition: outline .01s ease
    }
    
     :host(.device-mobile-optimized) .xU8fqS .G5K6X8 {
        left: 10px;
        right: 10px
    }
    
    .SPY_vo {
        pointer-events: none
    }
    
    .BmZ5pC {
        min-height: calc(100vh - var(--wix-ads-height));
        min-width: var(--site-width);
        position: var(--bg-position);
        top: var(--wix-ads-height)
    }
    
    .BmZ5pC {
        height: 100%;
        width: 100%
    }
    
    .nTOEE9.sqUyGm:hover {
        cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAAH6ji2bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODM3MEUzMUU4OTAyMTFFMzk3Q0FCMkFEODdDNzUzMjQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODM3MEUzMUQ4OTAyMTFFMzk3Q0FCMkFEODdDNzUzMjQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk0ZTkyMTRlLThiNDQtNjc0My04MWZiLTZlYjIzYTA2ZjcwNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4bqsJgAAACF0lEQVR42mJgQAd8fHz/gdRvRigfxGEACCA4YvwPBMgCbgABBGOAJP6LiooiZBUUFMCC7969Awk6AQQQA1bAxMTUOnXq1P8/f/78j2zdf5BDQDgoKAgiyMgItv0/1AkozlgJlHwPpDWB+AhAACFL1EJVwvBPIGZHd8P/OXPmgI0F2YdmxXQUhX///sVQqK2tDVL4DFkhF8zK2NjY/4aGhshOOMJAJAB5ZjdAADGQCpiB4Cear3uwKQR74vv372BPLFq0CKZ4GnLcdMGiFtnXmzZtQo0Bdnb2r/b29nBFMIwUjkxghby8vHfFxMQwTMQWp0YggZcvX/5HBpqamhgKQdafAQnq6en9j4+P/4/me150nzsCPfYOKrkWKvYCymcjJozPgqIYIMAYcUjKAnEcELsDbVECOpkNiO8B+buAeCEQ3yUqFllYWNYh+4Obm/u/ubn5f0tLy//QPIqM90ATHVagDHTJH5BCfn7+/xcvXvyPC9y7d+8/KHqghv4FYj0M04BxeAOkQEhI6P+vX79QDECOeBj49+/ffzk5OZih91FyP4gAGiIDooH5hIGVlRUsAXQpGMMAMh+Y1xksLCzg5QxGrAFzwAxY2GzYsIGgC48cOYIclsuwBiIbG9sCmCJFRcX/+/fvxwi/EydOwIoDGH6JLQEiA26ga1egxSY2vAUpkcKKEV5iCwVOIObBU8w8RzLYgYHaAAACg5CxaxSLgwAAAABJRU5ErkJggg==), auto
    }
    
    .nTOEE9.C_JY0G:hover {
        cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAAH6ji2bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6N0I4QkNGQTI4OTAyMTFFMzg0RDlBRkM5NDA5QjczRTEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6N0I4QkNGQTE4OTAyMTFFMzg0RDlBRkM5NDA5QjczRTEiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk0ZTkyMTRlLThiNDQtNjc0My04MWZiLTZlYjIzYTA2ZjcwNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpmMWUzNTlkMS1hYjZhLTNkNDctYmM0ZC03MWMyZDYyMWNmNDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7hiSPZAAACGklEQVR42mJgQAd8fHz/gdRvRigfxGEACCA4YvwPBMgCbgABBGOAJP6LiooiZBUUFMCC7969Awk6AQQQA1bAxMTUOnXq1P8/f/78j2zdf5BDQDgoKAgiyMgItv0/1AkozlgJlHwPpDWB+AhAACFL1EJVwvBPIGZHd8P/OXPm/EcHUA3TURT+/fsXQ6G2tjZI4TNkhVwwK2NjY/8bGhoiO+EIA5EA5JndAAHEQCpgBoKfaL7uwaYQHLrfv38He2LRokUwxdOQ46YLFrXIYNOmTagxwM7O/tXe3h4sCYs3EEYKRyawQl5e3rtiYmL/sQH0ODUCCbx8+RJFkaamJoZCkPVnQIJ6enr/4+Pj/6P5nhfd545Aj72DSq6Fir2A8tmICeOzoCgGCDBGHJKyQBwHxO5AW5SATmYD4ntA/i4gXgjEd4mKRRYWlnXI/uDm5v5vbm7+39LS8j80jyLjPdBEhxUoA13yB6SQn5///8WLF//jAvfu3fsPih6ooX+BWA/DNGAc3gApEBIS+v/r16//hMC/f//+y8nJwQy9j2wWC4gAGiIDooH5hIGVlRUsAXQpVq98/PgRVBAwWFhYMDx69AhczkBj7RdyFpgBC5sNGzYQdOGRI0eQw3IZVpvZ2NgWwBQpKir+379/P4ZBJ06cgBUHMPwSWwJEBtxA165Ai01seAtSIoUVI7zEFgqcQMyDp5h5jmSwAwO1AQBU5q033XYWQwAAAABJRU5ErkJggg==), auto
    }
    
    .RZQnmg:focus {
        cursor: auto;
        opacity: 1;
        pointer-events: auto
    }
    
    .OJQ_3L:focus {
        cursor: auto;
        opacity: 1;
        pointer-events: auto
    }
    
    .j7pOnl {
        box-sizing: border-box;
        height: 100%;
        width: 100%
    }
    
    .BI8PVQ {
        min-height: var(--image-min-height);
        min-width: var(--image-min-width)
    }
    
    img.BI8PVQ {
        filter: var(--filter-effect-svg-url);
        -webkit-mask-image: var(--mask-image, none);
        mask-image: var(--mask-image, none);
        -webkit-mask-position: var(--mask-position, 0);
        mask-position: var(--mask-position, 0);
        -webkit-mask-repeat: var(--mask-repeat, no-repeat);
        mask-repeat: var(--mask-repeat, no-repeat);
        -webkit-mask-size: var(--mask-size, 100% 100%);
        mask-size: var(--mask-size, 100% 100%);
        -o-object-position: var(--object-position);
        object-position: var(--object-position)
    }
    
    .MazNVa {
        top: var(--top, auto);
        z-index: var(--z-index, auto)
    }
    
    .MazNVa .j7pOnl {
        display: block;
        overflow: hidden
    }
    
    .MazNVa .BI8PVQ {
        overflow: hidden
    }
    
     :host(:not(.device-mobile-optimized)) .c7cMWz {
        margin-left: calc((100% - var(--site-width))/2);
        width: var(--site-width)
    }
    
     :host(.device-mobile-optimized) .c7cMWz {
        left: 10px;
        right: 10px
    }
    
    .PFkO7r {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }
    
    .HT5ybB {
        height: auto;
        position: relative;
        width: 100%
    }
    
    body:not(.responsive) .dBAkHi {
        grid-area: 1/1/1/1;
        height: 100%;
        position: relative
    }
    
     :host(:not(.device-mobile-optimized)) .PFkO7r,
    body:not(.device-mobile-optimized) .PFkO7r {
        margin-left: calc((100% - var(--site-width))/2);
        width: var(--site-width)
    }
    
     :host(.device-mobile-optimized) .PFkO7r {
        left: 10px;
        right: 10px
    }
    
    .SsY_2i .UGHfip {
        border-left: var(--lnw, 3px) solid rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1));
        height: 100%;
        width: 100%
    }
    
    ._pfxlW:active,
    ._pfxlW:focus {
        clip-path: unset;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }
    
    .ULfND1 {
        box-sizing: border-box;
        width: auto
    }
    
    [data-state~=header].ULfND1 div {
        cursor: default!important
    }
    
    .ULfND1 .piclkP {
        display: inline-block;
        height: 100%;
        width: 100%
    }
    
    .ULfND1 {
        --display: inline-block;
        background-color: transparent;
        cursor: pointer;
        transition: var(--trans, background-color .4s ease 0s)
    }
    
    .ULfND1 .ktxcLB {
        border-left: 1px solid rgba(var(--sep, var(--color_15, color_15)), var(--alpha-sep, 1));
        padding: 0 var(--pad, 5px)
    }
    
    .ULfND1 .JghqhY {
        color: rgb(var(--txt, var(--color_15, color_15)));
        display: inline-block;
        font: var(--fnt, var(--font_1));
        padding: 0 10px;
        transition: var(--trans2, color .4s ease 0s)
    }
    
    .ULfND1[data-listposition=left] {
        border-radius: var(--rd, 10px);
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }
    
    .ULfND1[data-listposition=left] .ktxcLB {
        border: 0;
        border-left: none
    }
    
    .ULfND1[data-listposition=right] {
        border-radius: var(--rd, 10px);
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }
    
    .ULfND1[data-state~=link]:hover {
        background-color: rgba(var(--bgh, var(--color_17, color_17)), var(--alpha-bgh, 1));
        transition: var(--trans, background-color .4s ease 0s)
    }
    
    .ULfND1[data-state~=link]:hover .JghqhY {
        color: rgb(var(--txth, var(--color_15, color_15)));
        transition: var(--trans2, color .4s ease 0s)
    }
    
    .eK3b7p .dX73bf {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%
    }
    
    .eK3b7p .dX73bf .LtxuwL {
        height: calc(100% - (var(--menuTotalBordersY, 0px)));
        overflow: visible;
        white-space: nowrap;
        width: calc(100% - (var(--menuTotalBordersX, 0px)))
    }
    
    .eK3b7p .dX73bf .LtxuwL .SUHLli,
    .eK3b7p .dX73bf .LtxuwL .xu0rO4 {
        direction: var(--menu-direction);
        display: inline-block;
        text-align: var(--menu-align, var(--align))
    }
    
    .eK3b7p .QQFha4 {
        direction: var(--submenus-direction);
        opacity: 1;
        text-align: var(--submenus-align, var(--align));
        z-index: 99999
    }
    
    .HYblus>nav {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }
    
    .HYblus .LtxuwL {
        background-color: rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1));
        border: solid var(--brw, 0) rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1));
        border-radius: var(--rd, 10px);
        box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
        position: absolute
    }
    
    .HYblus .QQFha4 {
        box-sizing: border-box;
        margin-top: 7px;
        position: absolute;
        visibility: hidden
    }
    
    .wxjDyf .LoinW8 .SLABZ6 {
        justify-content: flex-start
    }
    
    .LoinW8 .SLABZ6 .P1lgnS img {
        display: block;
        height: var(--iconSize)
    }
    
    .LoinW8 .AgcguT:hover,
    .LoinW8 .SLABZ6:hover,
    .WfZwmg>button:hover {
        background-color: rgba(var(--backgroundColorHover, var(--color_4, color_4)), var(--alpha-backgroundColorHover, 1));
        color: rgb(var(--itemTextColorHover, var(--color_1, color_1)))
    }
    
    .LoinW8 .AgcguT:hover path,
    .LoinW8 .SLABZ6:hover path,
    .WfZwmg>button:hover path {
        fill: rgb(var(--itemTextColorHover, var(--color_1, color_1)))
    }
    
    .LoinW8 .AgcguT:active,
    .LoinW8 .SLABZ6:active,
    .WfZwmg>button:active {
        background-color: rgba(var(--backgroundColorActive, var(--color_4, color_4)), var(--alpha-backgroundColorActive, 1));
        color: rgb(var(--itemTextColorActive, var(--color_1, color_1)));
        cursor: default
    }
    
    .LoinW8 .AgcguT:active path,
    .LoinW8 .SLABZ6:active path,
    .WfZwmg>button:active path {
        fill: rgb(var(--itemTextColorActive, var(--color_1, color_1)))
    }
    
    .q6zugB {
        width: var(--width)
    }
    
     :host(.device-mobile-optimized) .q6zugB {
        --display: table;
        display: var(--display)
    }
    
    .q6zugB.L1JKAI:active {
        pointer-events: none
    }
    
    .LoinW8 .SLABZ6 {
        align-items: center;
        display: flex
    }
    
    .LoinW8 .SLABZ6 .FeuKbY {
        line-height: 0
    }
    
    .wxjDyf .LoinW8 .SLABZ6 .FeuKbY {
        margin: 0 14px 0 20px
    }
    
    .wxjDyf .LoinW8 .SLABZ6 .Z9uI84 {
        flex-grow: 1
    }
    
    .LoinW8 .SLABZ6 svg {
        height: auto;
        width: 12px
    }
    
    .LoinW8 .SLABZ6 path {
        fill: rgb(var(--itemTextColor, var(--color_9, color_9)))
    }
    
    .LoinW8 .SLABZ6,
    .LoinW8 ._YBogd {
        background-color: rgba(var(--backgroundColor, var(--color_4, color_4)), var(--alpha-backgroundColor, 1));
        border-color: rgba(var(--borderColor, 32, 32, 32), var(--alpha-borderColor, 1));
        border-radius: var(--borderRadius, 5px);
        border-style: solid;
        border-width: var(--borderWidth, 1px);
        box-shadow: var(--boxShadow, 0 1px 3px rgba(0, 0, 0, .5));
        overflow: hidden
    }
    
    .LoinW8 .SLABZ6 .P1lgnS {
        margin: 0-6px 0 14px
    }
    
    .LoinW8,
    .q6zugB {
        height: 100%
    }
    
    .LoinW8 {
        color: rgb(var(--itemTextColor, var(--color_9, color_9)));
        cursor: pointer;
        font: var(--itemFont, var(--font_0));
        position: relative;
        width: var(--width)
    }
    
    .LoinW8 * {
        box-sizing: border-box
    }
    
    .LoinW8 .SLABZ6 {
        height: 100%;
        position: relative;
        z-index: 1
    }
    
    .LoinW8 ._YBogd {
        flex-direction: column;
        max-height: calc(var(--height)*5.5);
        min-width: 100%;
        overflow-y: auto;
        position: absolute;
        z-index: 1
    }
    
    .LoinW8 ._YBogd:not(.qUhEZJ) {
        --itemBorder: 1px 0 0;
        top: 0
    }
    
    #SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .LoinW8 .AgcguT:focus {
        box-shadow: 0 0 1px 2px #fff;
        outline: 2px solid #116dff;
        outline-offset: 1px;
        outline-offset: -2px
    }
    
     :host(.device-mobile-optimized) .s0VQNf {
        display: table;
        width: 100%
    }
    
    .g0gp_6 {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%
    }
    
    .FMMxqJ {
        opacity: 1;
        transition: .2s
    }
    
    .zhNF6t {
        height: auto
    }
    
    .voBs59,
    .zhNF6t {
        position: relative;
        width: 100%
    }
    
     :host(:not(.device-mobile-optimized)) .HXn_o9,
    body:not(.device-mobile-optimized) .HXn_o9 {
        margin-left: calc((100% - var(--site-width))/2);
        width: var(--site-width)
    }
    
    .HQKBpn[data-focuscycled=active]:not(:focus-within) {
        outline: 2px solid transparent;
        transition: outline .01s ease
    }
    
    .HQKBpn .HXn_o9 {
        background: var(--screenwidth-corvid-border-color, rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1)));
        bottom: 0;
        left: 0;
        right: 0;
        top: 0
    }
    
    .HQKBpn .HXn_o9,
    .HQKBpn .nArNFR {
        border-radius: var(--rd, 0);
        position: absolute
    }
    
    .HQKBpn .nArNFR {
        background-color: var(--screenwidth-corvid-background-color, rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1)));
        bottom: var(--brw, 0);
        box-shadow: var(--shd, inset 0 1px 2px rgba(0, 0, 0, .6), inset 0-1px 1px hsla(0, 0%, 100%, .75));
        left: var(--brw, 0);
        right: var(--brw, 0);
        top: var(--brw, 0)
    }
    
     :host(.device-mobile-optimized) .HQKBpn .HXn_o9 {
        left: 10px;
        right: 10px
    }
    
    .TMFrcJ {
        width: 100%
    }
    
    .kn76TK {
        height: auto
    }
    
    .kn76TK {
        position: relative;
        width: 100%
    }
    
     :host(:not(.device-mobile-optimized)) .EwS2PT {
        margin-left: calc((100% - var(--site-width))/2);
        width: var(--site-width)
    }
    
    .x4zVYf[data-focuscycled=active]:not(:focus-within) {
        outline: 2px solid transparent;
        transition: outline .01s ease
    }
    
    .x4zVYf .TMFrcJ {
        bottom: 0;
        left: 0;
        overflow: hidden;
        position: absolute;
        right: 0;
        top: 0;
        transition: all .3s ease
    }
    
    .x4zVYf .zxR1mn.TMFrcJ {
        background-color: rgba(var(--bg-scrl, 0, 0, 0), var(--alpha-bg-scrl, 0));
        border-bottom: var(--brwb-scrl, var(--brwb, 0)) solid var(--screenwidth-corvid-border-color, rgba(var(--brd-scrl, var(--brd, color_15)), var(--alpha-brd-scrl, 1)));
        border-radius: var(--rd-scrl, var(--rd, 0));
        border-top: var(--brwt-scrl, var(--brwt, 0)) solid var(--screenwidth-corvid-border-color, rgba(var(--brd-scrl, var(--brd, color_15)), var(--alpha-brd-scrl, 1)));
        box-shadow: var(--shd-scrl, var(--shd, 0 0 5px rgba(0, 0, 0, .5)))
    }
    
    .x4zVYf .mTQGgy {
        box-sizing: border-box;
        height: 100%;
        transition: all .3s ease
    }
    
    .x4zVYf .zxR1mn>.mTQGgy {
        opacity: var(--alpha-bg, 1)
    }
    
    .x4zVYf .QijXjn {
        background-color: var(--screenwidth-corvid-background-color, transparent);
        height: 100%;
        position: relative;
        transition: all .3s ease
    }
    
    .x4zVYf .zxR1mn>.QijXjn {
        opacity: var(--alpha-bg, 1)
    }
    
     :host(:not(.device-mobile-optimized)) .CohWsy,
    body:not(.device-mobile-optimized) .CohWsy {
        display: flex
    }
    
     :host(:not(.device-mobile-optimized)) .V5AUxf,
    body:not(.device-mobile-optimized) .V5AUxf {
        -moz-column-gap: var(--margin);
        column-gap: var(--margin);
        direction: var(--direction);
        display: flex;
        margin: 0 auto;
        position: relative;
        width: calc(100% - var(--padding)*2)
    }
    
     :host(:not(.device-mobile-optimized)) .V5AUxf>*,
    body:not(.device-mobile-optimized) .V5AUxf>* {
        direction: ltr;
        flex: var(--column-flex)1 0%;
        left: 0;
        margin-bottom: var(--padding);
        margin-top: var(--padding);
        min-width: 0;
        position: relative;
        top: 0
    }
    
     :host(.device-mobile-optimized) .V5AUxf {
        display: block;
        padding-bottom: var(--padding-y);
        padding-left: var(--padding-x, 0);
        padding-right: var(--padding-x, 0);
        padding-top: var(--padding-y);
        position: relative
    }
    
     :host(.device-mobile-optimized) .V5AUxf>* {
        margin-bottom: var(--margin);
        position: relative
    }
    
     :host(.device-mobile-optimized) .V5AUxf>:first-child {
        margin-top: var(--firstChildMarginTop, 0)
    }
    
     :host(.device-mobile-optimized) .V5AUxf>:last-child {
        margin-bottom: var(--lastChildMarginBottom)
    }
    
    .if7Vw2 {
        height: 100%;
        left: 0;
        -webkit-mask-image: var(--mask-image, none);
        mask-image: var(--mask-image, none);
        -webkit-mask-position: var(--mask-position, 0);
        mask-position: var(--mask-position, 0);
        -webkit-mask-repeat: var(--mask-repeat, no-repeat);
        mask-repeat: var(--mask-repeat, no-repeat);
        -webkit-mask-size: var(--mask-size, 100%);
        mask-size: var(--mask-size, 100%);
        overflow: hidden;
        pointer-events: var(--fill-layer-background-media-pointer-events);
        position: absolute;
        top: 0;
        width: 100%
    }
    
    .if7Vw2 .i1tH8h {
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%
    }
    
    .wG8dni {
        height: 100%
    }
    
    .tcElKx {
        background-color: var(--bg-overlay-color);
        background-image: var(--bg-gradient);
        transition: var(--inherit-transition)
    }
    
    .LHrbPP {
        background: #fff;
        border-radius: 24px;
        color: #116dff;
        cursor: pointer;
        font-family: Helvetica, Arial, メイリオ, meiryo, ヒラギノ角ゴ pro w3, hiragino kaku gothic pro, sans-serif;
        font-size: 14px;
        height: 0;
        left: 50%;
        margin-left: -94px;
        opacity: 0;
        padding: 0 24px 0 24px;
        pointer-events: none;
        position: absolute;
        top: 60px;
        width: 0;
        z-index: 9999
    }
    
    .LHrbPP:focus {
        border: 2px solid;
        height: 40px;
        opacity: 1;
        pointer-events: auto;
        width: auto
    }
    
    .aVng1S {
        border-top: var(--lnw, 2px) solid rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1));
        box-sizing: border-box
    }
    
    .MW5IWV {
        height: 100%;
        left: 0;
        -webkit-mask-image: var(--mask-image, none);
        mask-image: var(--mask-image, none);
        -webkit-mask-position: var(--mask-position, 0);
        mask-position: var(--mask-position, 0);
        -webkit-mask-repeat: var(--mask-repeat, no-repeat);
        mask-repeat: var(--mask-repeat, no-repeat);
        -webkit-mask-size: var(--mask-size, 100%);
        mask-size: var(--mask-size, 100%);
        overflow: hidden;
        pointer-events: var(--fill-layer-background-media-pointer-events);
        position: absolute;
        top: 0;
        width: 100%
    }
    
    .MW5IWV .Kv1aVt {
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%
    }
    
    .MW5IWV .dLPlxY {
        height: var(--fill-layer-image-height, 100%);
        opacity: var(--fill-layer-image-opacity)
    }
    
    .VgO9Yg {
        height: 100%
    }
    
    .LWbAav {
        background-color: var(--bg-overlay-color);
        background-image: var(--bg-gradient);
        transition: var(--inherit-transition)
    }
    
    .mNGsUM {
        transform: scale(var(--scale, 1));
        transition: var(--transform-duration, transform 0s)
    }
    
    .Oqnisf {
        overflow: visible
    }
    
    .Oqnisf>.MW5IWV .LWbAav {
        background-color: var(--section-corvid-background-color, var(--bg-overlay-color))
    }
    
    .mj3xJ8:active,
    .mj3xJ8:focus {
        clip: auto;
        pointer-events: auto
    }
    
    .Tj01hh,
    .jhxvbR {
        display: block;
        height: 100%;
        width: 100%
    }
    
    .jhxvbR img {
        max-width: var(--wix-img-max-width, 100%)
    }
    
    .m4khSP {
        height: 100%;
        top: 0;
        width: 100%
    }
    
    .m4khSP {
        background-color: var(--fill-layer-background-overlay-color);
        opacity: var(--fill-layer-background-overlay-blend-opacity-fallback, 1);
        position: var(--fill-layer-background-overlay-position);
        transform: var(--fill-layer-background-overlay-transform)
    }
    
    @supports (mix-blend-mode:overlay) {
        .m4khSP {
            mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
            opacity: var(--fill-layer-background-overlay-blend-opacity, 1)
        }
    }
    
    @view-transition {
        navigation: auto;
        types: OutIn
    }
    
    .KeZzT6:after,
    .KeZzT6:before {
        animation: DjtvJd .5s linear infinite alternate;
        border: 1px solid currentColor;
        border-color: currentColor transparent transparent currentColor;
        border-radius: 50%;
        bottom: 0;
        color: currentColor;
        content: "";
        inset-inline-end: -100%;
        inset-inline-start: 0;
        position: absolute;
        top: 0;
        transform: rotate(-45deg)
    }
    
    .KeZzT6:after {
        opacity: 0
    }
    
    @keyframes DjtvJd {
        to {
            opacity: 1;
            transform: rotate(115deg)
        }
    }
    
    @keyframes U4gKpz {
        0% {
            transform: rotate(180deg)
        }
        45% {
            transform: rotate(198deg)
        }
        55% {
            transform: rotate(234deg)
        }
        to {
            transform: rotate(540deg)
        }
    }
    
    @font-face {
        font-family: "helvetica-w01-roman";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/0.woff2)format("woff2");
        unicode-range: U+0000, U+000D, U+0020-007E, U+00A0, U+00A4, U+00A6-00A7, U+00A9, U+00AB-00AE, U+00B0-00B1, U+00B5-00B7, U+00BB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2116, U+2122
    }
    
    @font-face {
        font-family: "helvetica-w01-roman";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/1.woff2)format("woff2");
        unicode-range: U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2113, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E301-E304, U+E306-E30D, U+FB01-FB02
    }
    
    @font-face {
        font-family: "helvetica-w01-roman";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/2.woff2)format("woff2");
        unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+04D9, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+20B9-20BA, U+20BC-20BD, U+2113, U+2116, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E300-E30D, U+F6C5, U+F6C9-F6D8, U+F8FF, U+FB01-FB02
    }
    
    @font-face {
        font-family: "helvetica-w01-bold";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/3.woff2)format("woff2");
        unicode-range: U+0000, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2116
    }
    
    @font-face {
        font-family: "helvetica-w01-bold";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/4.woff2)format("woff2");
        unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2122
    }
    
    @font-face {
        font-family: "helvetica-w01-light";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/5.woff2)format("woff2");
        unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2122
    }
    
    @font-face {
        font-family: "nobile";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/6.woff2)format("woff2");
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }
    
    @font-face {
        font-family: "nobile";
        font-style: italic;
        font-weight: 400;
        src: url(fonts/7.woff2)format("woff2");
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }
    
    @font-face {
        font-family: "josefin-sans";
        font-style: italic;
        font-weight: 400;
        src: url(fonts/8.woff2)format("woff2");
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }
    
    @font-face {
        font-family: "josefin-sans";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/9.woff2)format("woff2");
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }
    
    @font-face {
        font-family: "josefin sans";
        font-style: italic;
        font-weight: 400;
        src: url(fonts/10.woff2)format("woff2");
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }
    
    @font-face {
        font-family: "josefin sans";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/11.woff2)format("woff2");
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }
    
    #masterPage:not(.landingPage) #PAGES_CONTAINER {
        margin-top: 0px;
        margin-bottom: 0px
    }
    
    #SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus,
    #SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus~.wixSdkShowFocusOnSibling {
        --focus-ring-box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #116dff;
        box-shadow: var(--focus-ring-box-shadow)!important;
        z-index: 1
    }
    
    #masterPage {
        left: 0;
        margin-left: 0;
        width: 100%;
        min-width: 0
    }
    
    #SITE_HEADER {
        z-index: 50;
        --above-all-in-container: 10000
    }
    
    #PAGES_CONTAINER {
        --pinned-layer-in-container: 51;
        --above-all-in-container: 49
    }
    
    #CONTROLLER_COMP_CUSTOM_ID {
        --pinned-layer-in-container: 52;
        --above-all-in-container: 49
    }
    
    #SITE_FOOTER {
        --pinned-layer-in-container: 54;
        --above-all-in-container: 49
    }
    
    [id="soapAfterPagesContainer"].page-without-sosp [data-mesh-id=soapAfterPagesContainerinlineContent] {
        height: auto;
        width: 100%;
        position: static;
        min-height: auto;
        padding-bottom: 0px;
        box-sizing: border-box
    }
    
    [id="soapAfterPagesContainer"].page-without-sosp [data-mesh-id=soapAfterPagesContainerinlineContent-gridContainer]>[id="CONTROLLER_COMP_CUSTOM_ID"] {
        position: absolute;
        top: 15px;
        left: 20px;
        margin-left: calc((100% - 980px)*0.5)
    }
    
     :root,
     :host {
        --full-viewport: 100*var(--one-unit)*var(--browser-zoom);
        --scaling-factor: clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));
        --theme-spx-ratio: 1px;
        --color_0: 255, 255, 255;
        --color_1: 255, 255, 255;
        --color_2: 0, 0, 0;
        --color_3: 237, 28, 36;
        --color_4: 0, 136, 203;
        --color_5: 255, 203, 5;
        --color_6: 114, 114, 114;
        --color_7: 176, 176, 176;
        --color_8: 255, 255, 255;
        --color_9: 114, 114, 114;
        --color_10: 176, 176, 176;
        --color_11: 246, 249, 245;
        --color_12: 224, 253, 44;
        --color_13: 128, 135, 125;
        --color_14: 68, 77, 65;
        --color_15: 9, 20, 5;
        --color_16: 188, 209, 205;
        --color_17: 142, 163, 159;
        --color_18: 3, 87, 114;
        --color_19: 30, 51, 47;
        --color_20: 17, 31, 28;
        --color_21: 220, 173, 173;
        --color_22: 185, 126, 126;
        --color_23: 224, 253, 44;
        --color_24: 165, 200, 212;
        --color_25: 50, 18, 18;
        --color_26: 234, 245, 255;
        --color_27: 171, 204, 255;
        --color_28: 47, 109, 204;
        --color_29: 16, 53, 109;
        --color_30: 5, 18, 38;
        --color_31: 255, 199, 245;
        --color_32: 255, 161, 239;
        --color_33: 204, 73, 181;
        --color_34: 122, 6, 102;
        --color_35: 51, 3, 43;
        --color_36: 246, 249, 245;
        --color_37: 9, 20, 5;
        --color_38: 187, 192, 185;
        --color_39: 128, 135, 125;
        --color_40: 68, 77, 65;
        --color_41: 3, 87, 114;
        --color_42: 224, 253, 44;
        --color_43: 165, 200, 212;
        --color_44: 161, 39, 103;
        --color_45: 9, 20, 5;
        --color_46: 9, 20, 5;
        --color_47: 3, 87, 114;
        --color_48: 3, 87, 114;
        --color_49: 3, 87, 114;
        --color_50: 246, 249, 245;
        --color_51: 246, 249, 245;
        --color_52: 3, 87, 114;
        --color_53: 3, 87, 114;
        --color_54: 68, 77, 65;
        --color_55: 68, 77, 65;
        --color_56: 246, 249, 245;
        --color_57: 246, 249, 245;
        --color_58: 3, 87, 114;
        --color_59: 3, 87, 114;
        --color_60: 3, 87, 114;
        --color_61: 3, 87, 114;
        --color_62: 246, 249, 245;
        --color_63: 68, 77, 65;
        --color_64: 68, 77, 65;
        --color_65: 246, 249, 245;
        --wix-ads-height: 0px;
        --sticky-offset: 0px;
        --wix-ads-top-height: 0px;
        --site-width: 980px;
        --above-all-z-index: 100000;
        --portals-z-index: 100001;
        --wix-opt-in-direction: ltr;
        --wix-opt-in-direction-multiplier: 1;
        --font_0: normal normal normal 58px/1.4em helvetica-w01-roman, sans-serif;
        --font_1: normal normal normal 16px/1.4em din-next-w01-light, sans-serif;
        --font_2: normal normal normal 37px/1.4em helvetica-w01-roman, sans-serif;
        --font_3: normal normal normal 16px/1.4em helvetica-w01-bold, sans-serif;
        --font_4: normal normal normal 27px/1.4em helvetica-w01-bold, sans-serif;
        --font_5: normal normal normal 25px/1.4em helvetica-w01-roman, sans-serif;
        --font_6: normal normal normal 22px/1.4em helvetica-w01-light, sans-serif;
        --font_7: normal normal normal 16px/1.4em helvetica-w01-light, sans-serif;
        --font_8: normal normal normal 15px/1.4em helvetica-w01-light, sans-serif;
        --font_9: normal normal normal 12px/1.4em helvetica-w01-bold, sans-serif;
        --font_10: normal normal normal 12px/1.4em din-next-w01-light, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        --minViewportSize: 320;
        --maxViewportSize: 1920;
        --customScaleViewportLimit: clamp(var(--minViewportSize)*1px, var(--full-viewport), min(var(--section-max-width), var(--maxViewportSize)*1px))
    }
    
    .theme-vars {
        --full-viewport: 100*var(--one-unit)*var(--browser-zoom);
        --scaling-factor: clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));
        --theme-spx-ratio: 1px
    }
    
    .font_0 {
        font: var(--font_0);
        color: rgb(var(--color_45));
        letter-spacing: 0em
    }
    
    .font_3 {
        font: var(--font_3);
        color: rgb(var(--color_45));
        letter-spacing: 0em
    }
    
    .font_4 {
        font: var(--font_4);
        color: rgb(var(--color_45));
        letter-spacing: 0em
    }
    
    .font_6 {
        font: var(--font_6);
        color: rgb(var(--color_45));
        letter-spacing: 0em
    }
    
    .font_7 {
        font: var(--font_7);
        color: rgb(var(--color_15));
        letter-spacing: 0em
    }
    
    .font_8 {
        font: var(--font_8);
        color: rgb(var(--color_15));
        letter-spacing: 0em
    }
    
    .font_9 {
        font: var(--font_9);
        color: rgb(var(--color_15));
        letter-spacing: 0em
    }
    
    .color_37 {
        color: rgb(var(--color_37))
    }
    
    #masterPage:not(.landingPage) {
        --top-offset: var(--header-height);
        --header-height: 202px
    }
    
    #SITE_HEADER {
        --brd: var(--color_37);
        --rd: 0px;
        --brw: 0px;
        --bg: var(--color_11);
        --shd: none;
        --alpha-brd: 0;
        --alpha-bg: 0;
        --boxShadowToggleOn-shd: none;
        --backdrop-filter: none;
        --brwt: 0;
        --brwb: 0
    }
    
    #SITE_HEADER {
        left: 0;
        margin-left: 0;
        width: 100%;
        min-width: 0
    }
    
    [data-mesh-id=SITE_HEADERinlineContent] {
        height: auto;
        width: 100%
    }
    
    [data-mesh-id=SITE_HEADERinlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: auto;
        grid-template-rows: 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=SITE_HEADERinlineContent-gridContainer]>[id="comp-kdmzor73"] {
        position: relative;
        margin: 0px 0px 0px calc((100% - 980px)*0.5);
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    #SITE_HEADER {
        --bg-overlay-color: transparent;
        --bg-gradient: none;
        --shc-mutated-brightness: 123, 125, 123;
        position: sticky!important;
        top: var(--wix-ads-height)
    }
    
    #comp-kdmzor73 {
        left: 0;
        margin-left: 0;
        width: 100%
    }
    
    [data-mesh-id=comp-kdmzoraainlineContent] {
        height: auto;
        width: 100%
    }
    
    [data-mesh-id=comp-kdmzoraainlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: auto;
        grid-template-rows: repeat(2, min-content) 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=comp-kdmzoraainlineContent-gridContainer]>[id="comp-m0citlyv"] {
        position: relative;
        margin: 16px 0px 0 calc((100% - 327px)*0);
        left: 69px;
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-kdmzoraainlineContent-gridContainer]>[id="comp-m17v2zzt"] {
        position: relative;
        margin: 0px 0px 30px calc((100% - 327px)*0);
        left: 36px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-kdmzoraainlineContent-gridContainer]>[id="comp-kdn1jqbk"] {
        position: relative;
        margin: 12px 0px 38px calc((100% - 327px)*0);
        left: 152px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-kdmzoraainlineContent-gridContainer]>[id="comp-m17v3007"] {
        position: relative;
        margin: 4px 0px 29px calc((100% - 327px)*0);
        left: 191px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-kdmzoraainlineContent-gridContainer]>[id="comp-m17vhxp5"] {
        position: relative;
        margin: 16px 0px 5px calc((100% - 327px)*0);
        left: 27px;
        grid-area: 1/1/4/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-kdmzpktrinlineContent] {
        height: auto;
        width: 100%
    }
    
    [data-mesh-id=comp-kdmzpktrinlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: auto;
        grid-template-rows: min-content 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=comp-kdmzpktrinlineContent-gridContainer]>[id="comp-kdn2zzk1"] {
        position: relative;
        margin: 57px 0px 19px calc((100% - 653px)*1);
        left: 391px;
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-kdmzpktrinlineContent-gridContainer]>[id="comp-m17t4dau"] {
        position: relative;
        margin: 0px 0px 63px calc((100% - 653px)*1);
        left: 445px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    #comp-kdmzor73 {
        --bg-overlay-color: rgb(var(--color_39));
        --bg-gradient: none;
        --padding: 0px;
        --margin: 0px;
        min-width: 980px;
        --firstChildMarginTop: -1px;
        --lastChildMarginBottom: -1px;
        --direction: ltr
    }
    
    #comp-kdmzoraa {
        --bg-overlay-color: rgb(var(--color_36));
        --bg-gradient: none;
        width: 100%;
        --column-width: 327px;
        --column-flex: 327
    }
    
    #comp-m0citlyv {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-m0citlyv {
        width: 154px;
        height: 102px
    }
    
    #comp-m0citlyv {
        --height: 102px;
        --width: 154px;
        --mask-image: url(data:image/svg+xml,%3Csvg\ preserveAspectRatio=\'none\'\ data-bbox=\'20\ 20\ 160\ 160\'\ viewBox=\'20\ 20\ 160\ 160\'\ height=\'200\'\ width=\'200\'\ xmlns=\'http://www.w3.org/2000/svg\'\ data-type=\'shape\'%3E%3Cg%3E%3Cpath\ d=\'M180\ 20v160H20V20h160z\'/%3E%3C/g%3E%3C/svg%3E%0A);
        --mask-position: 0% 0%;
        --mask-size: 100% 100%;
        --mask-repeat: no-repeat
    }
    
    #comp-m17v2zzt {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-m17v2zzt {
        width: 141px;
        height: auto
    }
    
    #comp-m17v2zzt {
        --min-height: 48px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-kdn1jqbk {
        --lnw: 1px;
        --brd: var(--color_41);
        --mrg: 3px;
        --alpha-brd: 1
    }
    
    #comp-kdn1jqbk {
        width: 1px;
        height: 34px
    }
    
    #comp-m17v3007 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-m17v3007 {
        width: 141px;
        height: auto
    }
    
    #comp-m17v3007 {
        --min-height: 48px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-m17vhxp5 {
        width: 253px;
        height: 181px
    }
    
    #comp-m17vhxp5 {
        --fill-opacity: 0.02;
        --stroke-width: 0;
        --stroke: #091405;
        --stroke-opacity: 1;
        --fill: #282626
    }
    
    #comp-kdmzpktr {
        --bg-overlay-color: rgb(var(--color_36));
        --bg-gradient: none;
        width: 100%;
        --column-width: 653px;
        --column-flex: 653
    }
    
    #comp-kdn2zzk1 {
        --menuTotalBordersX: 0px;
        --menuTotalBordersY: 0px;
        --bg: var(--color_11);
        --rd: 0px;
        --shd: none;
        --brw: 0px;
        --brd: var(--color_11);
        --bgDrop: var(--color_36);
        --rdDrop: 0px;
        --trans: background-color 0.4s ease 0s;
        --pad: 5px;
        --sep: var(--color_40);
        --fnt: var(--font_8);
        --txt: var(--color_37);
        --trans2: color 0.4s ease 0s;
        --bgh: var(--color_18);
        --txth: var(--color_11);
        --bgs: var(--color_18);
        --txts: var(--color_11);
        --boxShadowToggleOn-shd: none;
        --alpha-txt: 1;
        --alpha-bgDrop: 0.74;
        --alpha-brd: 0;
        --alpha-txth: 1;
        --alpha-sep: 1;
        --alpha-txts: 1;
        --alpha-bg: 0.39;
        --alpha-bgh: 1;
        --alpha-bgs: 1
    }
    
    #comp-kdn2zzk1 {
        width: 204px;
        height: 20px
    }
    
    #comp-kdn2zzk1 {
        --menuTotalBordersY: 0px;
        --menuTotalBordersX: 0px;
        --submenus-direction: inherit;
        --menu-direction: inherit;
        --align: center;
        --menu-align: inherit;
        --submenus-align: inherit
    }
    
    #comp-m17t4dau {
        --borderColor: 217, 217, 217;
        --alpha-borderColor: 1;
        --borderWidth: 0px;
        --borderRadius: 24px 24px 24px 24px;
        --boxShadow: 0.00px 6.00px 12px 0px rgba(0, 0, 0, 0.1);
        --separatorColor: 254, 254, 254;
        --alpha-separatorColor: 1;
        --backgroundColor: var(--color_11);
        --borderRadiusValue: 24px 24px 24px 24px;
        --itemFont: normal normal normal 14px/1.4em cormorantgaramond-semibold, cormorantgaramond, "cormorant garamond", serif;
        --itemTextColor: 149, 149, 149;
        --itemTextColorHover: var(--color_41);
        --backgroundColorHover: var(--color_11);
        --itemTextColorActive: var(--color_41);
        --alpha-itemTextColorActive: 1;
        --backgroundColorActive: var(--color_11);
        --alpha-backgroundColor: 1;
        --alpha-backgroundColorActive: 1;
        --alpha-backgroundColorHover: 1;
        --alpha-itemTextColor: 1;
        --alpha-itemTextColorHover: 1;
        --borderColorActive: rgba(32, 32, 32, 1);
        --borderColorHover: rgba(32, 32, 32, 1);
        --borderSides: none;
        --itemSpacing: 5px
    }
    
    #comp-m17t4dau {
        width: 86px;
        height: 43px
    }
    
    #comp-m17t4dau {
        --itemFont: normal normal normal 14px/1.4em cormorantgaramond-semibold, cormorantgaramond, "cormorant garamond", serif;
        --height: 43px;
        --iconSize: 19px
    }
    
    #PAGES_CONTAINER {
        left: 0;
        margin-left: 0;
        width: 100%;
        min-width: 0
    }
    
    #SITE_PAGES {
        left: 0;
        margin-left: 0;
        width: 100%;
        min-width: 0
    }
    
    #SITE_PAGES {
        --transition-duration: 700ms
    }
    
    #CONTROLLER_COMP_CUSTOM_ID {
        --alpha-bg: 1;
        --bg: 61, 155, 233;
        --bgh: 43, 104, 156;
        --brd: 43, 104, 156;
        --brdh: 61, 155, 233;
        --brw: 0px;
        --fnt: normal normal normal 14px/1.4em raleway;
        --rd: 20px;
        --txt: 255, 255, 255;
        --txth: 255, 255, 255;
        --alpha-bgh: 1;
        --alpha-brd: 1;
        --alpha-brdh: 1;
        --alpha-txt: 1;
        --alpha-txth: 1;
        --boxShadowToggleOn-shd: none;
        --shd: 0 1px 4px rgba(0, 0, 0, 0.6)
    }
    
    #SITE_FOOTER {
        --brd: var(--color_37);
        --brwt: 0px;
        --brwb: 0px;
        --shd: none;
        --rd: 0px;
        --alpha-brd: 1;
        --backdrop-filter: none;
        --boxShadowToggleOn-shd: none
    }
    
    #SITE_FOOTER {
        left: 0;
        margin-left: 0;
        width: 100%;
        min-width: 0
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent] {
        height: auto;
        width: 100%
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: auto;
        grid-template-rows: repeat(6, min-content) 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="comp-lv2fufdb"] {
        position: relative;
        margin: 18px 0px 6px calc((100% - 980px)*0.5);
        left: 7px;
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="comp-m011uwhh"] {
        position: relative;
        margin: 0px 0px 63px calc((100% - 980px)*0.5);
        left: 7px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="comp-lv2fufcy"] {
        position: relative;
        margin: 18px 0px 63px calc((100% - 980px)*0.5);
        left: 342px;
        grid-area: 1/1/4/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="comp-lv2fufdk"] {
        position: relative;
        margin: 18px 0px 32px calc((100% - 980px)*0.5);
        left: 668px;
        grid-area: 1/1/5/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="comp-lv2hbgli"] {
        position: relative;
        margin: 0px 0px 10px calc((100% - 980px)*0.5);
        left: 0px;
        grid-area: 5/1/6/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent-gridContainer]>[id="comp-kdr4yc71"] {
        position: relative;
        margin: 0px 0px 0px calc((100% - 980px)*0.5);
        grid-area: 7/1/8/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=SITE_FOOTERinlineContent-wedge-7] {
        visibility: hidden;
        height: 583px;
        width: 0;
        grid-area: 1/1/7/2
    }
    
    #SITE_FOOTER {
        --bg-overlay-color: rgb(var(--color_41));
        --bg-gradient: none
    }
    
    #comp-lv2fufdb {
        width: 290px
    }
    
    [data-mesh-id=comp-lv2fufdbinlineContent] {
        height: auto;
        width: 290px
    }
    
    [data-mesh-id=comp-lv2fufdbinlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: auto;
        grid-template-rows: min-content 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=comp-lv2fufdbinlineContent-gridContainer]>[id="comp-lv2fufg9"] {
        position: relative;
        margin: 0px 0px 21px 0;
        left: 0px;
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lv2fufdbinlineContent-gridContainer]>[id="comp-lv2fufgc"] {
        position: relative;
        margin: 0px 0px 0px 0;
        left: 0px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    #comp-lv2fufg9 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufg9 {
        width: 280px;
        height: auto
    }
    
    #comp-lv2fufg9 {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufgc {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufgc {
        width: 290px;
        height: auto
    }
    
    #comp-lv2fufgc {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-m011uwhh {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-m011uwhh {
        width: 290px;
        height: auto
    }
    
    #comp-m011uwhh {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufcy {
        width: 280px
    }
    
    [data-mesh-id=comp-lv2fufcyinlineContent] {
        height: auto;
        width: 280px
    }
    
    [data-mesh-id=comp-lv2fufcyinlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: auto;
        grid-template-rows: min-content 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=comp-lv2fufcyinlineContent-gridContainer]>[id="comp-lv2fufep"] {
        position: relative;
        margin: 0px 0px 22px 0;
        left: 0px;
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lv2fufcyinlineContent-gridContainer]>[id="comp-lv2fufex"] {
        position: relative;
        margin: 0px 0px 0px 0;
        left: 0px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    #comp-lv2fufep {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufep {
        width: 280px;
        height: auto
    }
    
    #comp-lv2fufep {
        --min-height: 35px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufex {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufex {
        width: 268px;
        height: auto
    }
    
    #comp-lv2fufex {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufdk {
        width: 303px
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent] {
        height: auto;
        width: 303px
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: auto;
        grid-template-rows: repeat(3, min-content) 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent-gridContainer]>[id="comp-lv2fufhf3"] {
        position: relative;
        margin: 0px 0px 19px 0;
        left: 11px;
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent-gridContainer]>[id="comp-lv2fufhh2"] {
        position: relative;
        margin: 0px 0px 3px 0;
        left: 0px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent-gridContainer]>[id="comp-lv2fufhj"] {
        position: relative;
        margin: 0px 0px 7px 0;
        left: 0px;
        grid-area: 3/1/4/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent-gridContainer]>[id="comp-lv2fufhl"] {
        position: relative;
        margin: 0px 0px 0px 0;
        left: 0px;
        grid-area: 4/1/5/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent-gridContainer]>[id="comp-lv2fufhm2"] {
        position: relative;
        margin: 0px 0px 3px 0;
        left: 103px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent-gridContainer]>[id="comp-lv2fufho1"] {
        position: relative;
        margin: 0px 0px 7px 0;
        left: 103px;
        grid-area: 3/1/4/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lv2fufdkinlineContent-gridContainer]>[id="comp-lv2fufhq"] {
        position: relative;
        margin: 0px 0px 0px 0;
        left: 103px;
        grid-area: 4/1/5/2;
        justify-self: start;
        align-self: start
    }
    
    #comp-lv2fufhf3 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufhf3 {
        width: 280px;
        height: auto
    }
    
    #comp-lv2fufhf3 {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufhh2 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufhh2 {
        width: 90px;
        height: auto
    }
    
    #comp-lv2fufhh2 {
        --min-height: 29px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufhj {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufhj {
        width: 90px;
        height: auto
    }
    
    #comp-lv2fufhj {
        --min-height: -196px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufhl {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufhl {
        width: 90px;
        height: auto
    }
    
    #comp-lv2fufhl {
        --min-height: -196px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufhm2 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufhm2 {
        width: 200px;
        height: auto
    }
    
    #comp-lv2fufhm2 {
        --min-height: -196px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufho1 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufho1 {
        width: 200px;
        height: auto
    }
    
    #comp-lv2fufho1 {
        --min-height: -196px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2fufhq {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lv2fufhq {
        width: 200px;
        height: auto
    }
    
    #comp-lv2fufhq {
        --min-height: -196px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lv2hbgli {
        width: 980px;
        height: 306px
    }
    
    #comp-kdr4yc71 {
        left: 0;
        margin-left: 0;
        width: 100%
    }
    
    [data-mesh-id=comp-kdr4ycb6inlineContent] {
        height: auto;
        width: 100%;
        position: static;
        min-height: 0px
    }
    
    #comp-kdr4yc71 {
        --bg-overlay-color: transparent;
        --bg-gradient: none;
        --padding: 0px;
        --margin: 0px;
        min-width: 980px;
        --firstChildMarginTop: -1px;
        --lastChildMarginBottom: -1px;
        --direction: ltr
    }
    
    #comp-kdr4ycb6 {
        --bg-overlay-color: transparent;
        --bg-gradient: none;
        width: 100%;
        --column-width: 980px;
        --column-flex: 980
    }
    
    @font-face {
        font-family: "helvetica-w01-light";
        font-style: normal;
        font-weight: 400;
        src: url(fonts/5.woff2)format("woff2");
        unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2122
    }
    
    #h5rx5 {
        left: 0;
        margin-left: 0;
        min-width: 0
    }
    
    #masterPage {
        --pinned-layers-in-page: 0
    }
    
    [data-mesh-id=Containerh5rx5inlineContent] {
        height: auto;
        width: 100%
    }
    
    [data-mesh-id=Containerh5rx5inlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: 40px;
        grid-template-rows: 1fr;
        grid-template-columns: 100%;
        padding-bottom: 0px;
        box-sizing: border-box
    }
    
    [data-mesh-id=Containerh5rx5inlineContent-gridContainer]>[id="comp-ln1wdfmg"] {
        position: relative;
        margin: 0px 0px 0 calc((100% - 980px)*0.5);
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    #comp-ln1wdfmg {
        left: 0;
        margin-left: 0;
        width: 100%
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent] {
        height: auto;
        width: 100%
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: auto;
        grid-template-rows: repeat(41, min-content) 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu73hmry"] {
        position: relative;
        margin: 0px 0px 18px calc((100% - 980px)*0.5);
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2r3r0m"] {
        position: relative;
        margin: 0px 0px 60px calc((100% - 980px)*0.5);
        left: 207px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2quf1n"] {
        position: relative;
        margin: 0px 0px 13px calc((100% - 980px)*0.5);
        left: 79px;
        grid-area: 3/1/4/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2quf1y"] {
        position: relative;
        margin: 0px 0px 7px calc((100% - 980px)*0.5);
        left: 62px;
        grid-area: 4/1/5/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2quf2b"] {
        position: relative;
        margin: 0px 0px 29px calc((100% - 980px)*0.5);
        left: 62px;
        grid-area: 5/1/6/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2quf2m"] {
        position: relative;
        margin: 0px 0px 69px calc((100% - 980px)*0.5);
        left: 62px;
        grid-area: 6/1/7/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2r6kdb"] {
        position: relative;
        margin: 13px 0px 50px calc((100% - 980px)*0.5);
        left: 508px;
        grid-area: 3/1/8/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qvg4n"] {
        position: relative;
        margin: 0px 0px 8px calc((100% - 980px)*0.5);
        left: 843px;
        grid-area: 8/1/9/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2r70pj"] {
        position: relative;
        margin: 0px 0px 65px calc((100% - 980px)*0.5);
        left: 41px;
        grid-area: 9/1/13/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qtrt5"] {
        position: relative;
        margin: 28px 0px 14px calc((100% - 980px)*0.5);
        left: 59px;
        grid-area: 13/1/14/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qtrte"] {
        position: relative;
        margin: 0px 0px 7px calc((100% - 980px)*0.5);
        left: 41px;
        grid-area: 14/1/15/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qtrtn"] {
        position: relative;
        margin: 0px 0px 32px calc((100% - 980px)*0.5);
        left: 41px;
        grid-area: 15/1/16/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qtrtu"] {
        position: relative;
        margin: 0px 0px 49px calc((100% - 980px)*0.5);
        left: 41px;
        grid-area: 16/1/17/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2r9ux6"] {
        position: relative;
        margin: 0px 0px 10px calc((100% - 980px)*0.5);
        left: 41px;
        grid-area: 18/1/23/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qs6dc"] {
        position: relative;
        margin: 0px 0px 12px calc((100% - 980px)*0.5);
        left: 76px;
        grid-area: 23/1/24/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qs6dk"] {
        position: relative;
        margin: 0px 0px 7px calc((100% - 980px)*0.5);
        left: 62px;
        grid-area: 24/1/25/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qs6ds"] {
        position: relative;
        margin: 0px 0px 32px calc((100% - 980px)*0.5);
        left: 62px;
        grid-area: 25/1/26/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qs6dz"] {
        position: relative;
        margin: 0px 0px 32px calc((100% - 980px)*0.5);
        left: 53px;
        grid-area: 26/1/27/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iyes1"] {
        position: relative;
        margin: 0px 0px 10px calc((100% - 980px)*0.5);
        left: 52px;
        grid-area: 28/1/33/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iz759"] {
        position: relative;
        margin: 0px 0px 12px calc((100% - 980px)*0.5);
        left: 102px;
        grid-area: 33/1/34/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iz75j"] {
        position: relative;
        margin: 0px 0px 7px calc((100% - 980px)*0.5);
        left: 88px;
        grid-area: 34/1/35/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iz75r"] {
        position: relative;
        margin: 0px 0px 32px calc((100% - 980px)*0.5);
        left: 88px;
        grid-area: 35/1/36/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iz75z"] {
        position: relative;
        margin: 0px 0px 13px calc((100% - 980px)*0.5);
        left: 79px;
        grid-area: 36/1/37/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8j04c4"] {
        position: relative;
        margin: 0px 0px 10px calc((100% - 980px)*0.5);
        left: 52px;
        grid-area: 38/1/43/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qvg4w"] {
        position: relative;
        margin: 12px 0px 7px calc((100% - 980px)*0.5);
        left: 479px;
        grid-area: 9/1/10/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qvg56"] {
        position: relative;
        margin: 0px 0px 37px calc((100% - 980px)*0.5);
        left: 752px;
        grid-area: 10/1/11/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qvg5c"] {
        position: relative;
        margin: 0px 0px 10px calc((100% - 980px)*0.5);
        left: 479px;
        grid-area: 11/1/12/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2r8wru"] {
        position: relative;
        margin: 0px 0px 20px calc((100% - 980px)*0.5);
        left: 500px;
        grid-area: 13/1/18/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qsjvx"] {
        position: relative;
        margin: 33px 0px 14px calc((100% - 980px)*0.5);
        left: 871px;
        grid-area: 18/1/19/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qsjw6"] {
        position: relative;
        margin: 0px 0px 9px calc((100% - 980px)*0.5);
        left: 486px;
        grid-area: 19/1/20/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qsjwf"] {
        position: relative;
        margin: 0px 0px 24px calc((100% - 980px)*0.5);
        left: 751px;
        grid-area: 20/1/21/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2qsjwm"] {
        position: relative;
        margin: 0px 0px 43px calc((100% - 980px)*0.5);
        left: 486px;
        grid-area: 21/1/22/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu2rala6"] {
        position: relative;
        margin: 0px 0px 29px calc((100% - 980px)*0.5);
        left: 500px;
        grid-area: 23/1/28/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iyes9"] {
        position: relative;
        margin: 33px 0px 14px calc((100% - 980px)*0.5);
        left: 882px;
        grid-area: 28/1/29/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iyesg"] {
        position: relative;
        margin: 0px 0px 9px calc((100% - 980px)*0.5);
        left: 497px;
        grid-area: 29/1/30/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iyesp"] {
        position: relative;
        margin: 0px 0px 24px calc((100% - 980px)*0.5);
        left: 742px;
        grid-area: 30/1/31/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iyesw"] {
        position: relative;
        margin: 0px 0px 43px calc((100% - 980px)*0.5);
        left: 497px;
        grid-area: 31/1/32/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8iz768"] {
        position: relative;
        margin: 0px 0px 10px calc((100% - 980px)*0.5);
        left: 527px;
        grid-area: 33/1/38/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8j04ce"] {
        position: relative;
        margin: 33px 0px 14px calc((100% - 980px)*0.5);
        left: 882px;
        grid-area: 38/1/39/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8j04cl"] {
        position: relative;
        margin: 0px 0px 9px calc((100% - 980px)*0.5);
        left: 497px;
        grid-area: 39/1/40/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8j04cu"] {
        position: relative;
        margin: 0px 0px 24px calc((100% - 980px)*0.5);
        left: 762px;
        grid-area: 40/1/41/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-ln1wdfmginlineContent-gridContainer]>[id="comp-lu8j04d1"] {
        position: relative;
        margin: 0px 0px 43px calc((100% - 980px)*0.5);
        left: 497px;
        grid-area: 41/1/42/2;
        justify-self: start;
        align-self: start
    }
    
    #comp-lu73hmry {
        left: 0;
        margin-left: 0;
        width: 100%
    }
    
    [data-mesh-id=comp-lu73hmtcinlineContent] {
        height: auto;
        width: 100%
    }
    
    [data-mesh-id=comp-lu73hmtcinlineContent-gridContainer] {
        position: static;
        display: grid;
        height: auto;
        width: 100%;
        min-height: 466px;
        grid-template-rows: min-content 1fr;
        grid-template-columns: 100%
    }
    
    [data-mesh-id=comp-lu73hmtcinlineContent-gridContainer]>[id="comp-lu73iay3"] {
        position: relative;
        margin: 111px 0px 11px calc((100% - 980px)*0.5);
        left: 200px;
        grid-area: 1/1/2/2;
        justify-self: start;
        align-self: start
    }
    
    [data-mesh-id=comp-lu73hmtcinlineContent-gridContainer]>[id="comp-lu73iayf"] {
        position: relative;
        margin: 0px 0px 10px calc((100% - 980px)*0.5);
        left: 335px;
        grid-area: 2/1/3/2;
        justify-self: start;
        align-self: start
    }
    
    #comp-lu73iay3 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu73iay3 {
        width: 580px;
        height: auto
    }
    
    #comp-lu73iayf {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu73iayf {
        width: 310px;
        height: auto
    }
    
    #comp-lu2r3r0m {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2r3r0m {
        width: 565px;
        height: auto
    }
    
    #comp-lu2quf1n {
        width: 30px;
        height: 35px
    }
    
    #comp-lu2quf1y {
        --lnw: 1px;
        --brd: var(--color_37);
        --alpha-brd: 1
    }
    
    #comp-lu2quf1y {
        width: 375px;
        height: 5px
    }
    
    #comp-lu2quf2b {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2quf2b {
        width: 375px;
        height: auto
    }
    
    #comp-lu2quf2m {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2quf2m {
        width: 375px;
        height: auto
    }
    
    #comp-lu2r6kdb {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-lu2r6kdb {
        width: 407px;
        height: 272px
    }
    
    #comp-lu2qvg4n {
        width: 35px;
        height: 21px
    }
    
    #comp-lu2r70pj {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-lu2r70pj {
        width: 407px;
        height: 272px
    }
    
    #comp-lu2qtrt5 {
        width: 35px;
        height: 25px
    }
    
    #comp-lu2qtrte {
        --lnw: 1px;
        --brd: var(--color_37);
        --alpha-brd: 1
    }
    
    #comp-lu2qtrte {
        width: 375px;
        height: 5px
    }
    
    #comp-lu2qtrtn {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2qtrtn {
        width: 375px;
        height: auto
    }
    
    #comp-lu2qtrtu {
        width: 375px;
        height: auto
    }
    
    #comp-lu2r9ux6 {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-lu2r9ux6 {
        width: 407px;
        height: 266px
    }
    
    #comp-lu2qs6dc {
        width: 28px;
        height: 35px
    }
    
    #comp-lu2qs6dk {
        --lnw: 1px;
        --brd: var(--color_37);
        --alpha-brd: 1
    }
    
    #comp-lu2qs6dk {
        width: 375px;
        height: 5px
    }
    
    #comp-lu2qs6ds {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2qs6ds {
        width: 366px;
        height: auto
    }
    
    #comp-lu2qs6dz {
        width: 384px;
        height: auto
    }
    
    #comp-lu8iyes1 {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-lu8iyes1 {
        width: 407px;
        height: 266px
    }
    
    #comp-lu8iz759 {
        width: 28px;
        height: 35px
    }
    
    #comp-lu8iz75j {
        --lnw: 1px;
        --brd: var(--color_37);
        --alpha-brd: 1
    }
    
    #comp-lu8iz75j {
        width: 375px;
        height: 5px
    }
    
    #comp-lu8iz75r {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu8iz75r {
        width: 366px;
        height: auto
    }
    
    #comp-lu8iz75z {
        width: 384px;
        height: auto
    }
    
    #comp-lu8j04c4 {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-lu8j04c4 {
        width: 407px;
        height: 266px
    }
    
    #comp-lu2qvg4w {
        --lnw: 1px;
        --brd: var(--color_37);
        --alpha-brd: 1
    }
    
    #comp-lu2qvg4w {
        width: 436px;
        height: 5px
    }
    
    #comp-lu2qvg56 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2qvg56 {
        width: 163px;
        height: auto
    }
    
    #comp-lu2qvg5c {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2qvg5c {
        width: 436px;
        height: auto
    }
    
    #comp-lu2r8wru {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-lu2r8wru {
        width: 407px;
        height: 272px
    }
    
    #comp-lu2qsjvx {
        width: 35px;
        height: 14px
    }
    
    #comp-lu2qsjw6 {
        --lnw: 1px;
        --brd: var(--color_37);
        --alpha-brd: 1
    }
    
    #comp-lu2qsjw6 {
        width: 436px;
        height: 5px
    }
    
    #comp-lu2qsjwf {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2qsjwf {
        width: 171px;
        height: auto
    }
    
    #comp-lu2qsjwm {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu2qsjwm {
        width: 436px;
        height: auto
    }
    
    #comp-lu2rala6 {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-lu2rala6 {
        width: 407px;
        height: 266px
    }
    
    #comp-lu8iyes9 {
        width: 35px;
        height: 14px
    }
    
    #comp-lu8iyesg {
        --lnw: 1px;
        --brd: var(--color_37);
        --alpha-brd: 1
    }
    
    #comp-lu8iyesg {
        width: 436px;
        height: 5px
    }
    
    #comp-lu8iyesp {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu8iyesp {
        width: 191px;
        height: auto
    }
    
    #comp-lu8iyesw {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu8iyesw {
        width: 436px;
        height: auto
    }
    
    #comp-lu8iz768 {
        --contentPaddingLeft: 0px;
        --contentPaddingRight: 0px;
        --contentPaddingTop: 0px;
        --contentPaddingBottom: 0px
    }
    
    #comp-lu8iz768 {
        width: 407px;
        height: 266px
    }
    
    #comp-lu8j04ce {
        width: 35px;
        height: 14px
    }
    
    #comp-lu8j04cl {
        --lnw: 1px;
        --brd: var(--color_37);
        --alpha-brd: 1
    }
    
    #comp-lu8j04cl {
        width: 436px;
        height: 5px
    }
    
    #comp-lu8j04cu {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu8j04cu {
        width: 171px;
        height: auto
    }
    
    #comp-lu8j04d1 {
        --backgroundColor: 0, 0, 0;
        --alpha-backgroundColor: 0;
        --blendMode: normal;
        --textShadow: 0px 0px transparent;
        --textOutline: 0px 0px transparent
    }
    
    #comp-lu8j04d1 {
        width: 436px;
        height: auto
    }
    
    #h5rx5 {
        width: auto;
        min-height: 40px
    }
    
    #pageBackground_h5rx5 {
        --bg-position: absolute;
        --fill-layer-background-overlay-color: transparent;
        --fill-layer-background-overlay-position: absolute;
        --bg-overlay-color: rgb(var(--color_11));
        --bg-gradient: none
    }
    
    #comp-ln1wdfmg {
        --bg-overlay-color: transparent;
        --bg-gradient: none;
        min-width: 980px
    }
    
    #comp-lu73hmry {
        --bg-overlay-color: transparent;
        --bg-gradient: none;
        --padding: 0px;
        --margin: 0px;
        min-width: 980px;
        --firstChildMarginTop: -1px;
        --lastChildMarginBottom: -1px;
        --direction: ltr
    }
    
    #comp-lu73hmtc {
        --fill-layer-image-opacity: 1;
        --bg-overlay-color: rgb(var(--color_41));
        --bg-gradient: none;
        width: 100%;
        --column-width: 980px;
        --column-flex: 980
    }
    
    #comp-lu73iay3 {
        --min-height: 68px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu73iayf {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2r3r0m {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2quf1n {
        --opacity: 1
    }
    
    #comp-lu2quf1y {
        transform-origin: center 0.5px
    }
    
    #comp-lu2quf2b {
        --min-height: 14px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2quf2m {
        --min-height: 112px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2r6kdb {
        --height: 272px;
        --width: 407px
    }
    
    #comp-lu2qvg4n {
        --opacity: 1
    }
    
    #comp-lu2r70pj {
        --height: 272px;
        --width: 407px
    }
    
    #comp-lu2qtrt5 {
        --opacity: 1
    }
    
    #comp-lu2qtrte {
        transform-origin: center 0.5px
    }
    
    #comp-lu2qtrtn {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2qtrtu {
        --min-height: 106px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2r9ux6 {
        --height: 266px;
        --width: 407px
    }
    
    #comp-lu2qs6dc {
        --opacity: 1
    }
    
    #comp-lu2qs6dk {
        transform-origin: center 0.5px
    }
    
    #comp-lu2qs6ds {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2qs6dz {
        --min-height: 153px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu8iyes1 {
        --height: 266px;
        --width: 407px
    }
    
    #comp-lu8iz759 {
        --opacity: 1
    }
    
    #comp-lu8iz75j {
        transform-origin: center 0.5px
    }
    
    #comp-lu8iz75r {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu8iz75z {
        --min-height: 153px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu8j04c4 {
        --height: 266px;
        --width: 407px
    }
    
    #comp-lu2qvg4w {
        transform-origin: center 0.5px
    }
    
    #comp-lu2qvg56 {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2qvg5c {
        --min-height: 86px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2r8wru {
        --height: 272px;
        --width: 407px
    }
    
    #comp-lu2qsjvx {
        --opacity: 1
    }
    
    #comp-lu2qsjw6 {
        transform-origin: center 0.5px
    }
    
    #comp-lu2qsjwf {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2qsjwm {
        --min-height: 115px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu2rala6 {
        --height: 266px;
        --width: 407px
    }
    
    #comp-lu8iyes9 {
        --opacity: 1
    }
    
    #comp-lu8iyesg {
        transform-origin: center 0.5px
    }
    
    #comp-lu8iyesp {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu8iyesw {
        --min-height: 115px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu8iz768 {
        --height: 266px;
        --width: 407px
    }
    
    #comp-lu8j04ce {
        --opacity: 1
    }
    
    #comp-lu8j04cl {
        transform-origin: center 0.5px
    }
    
    #comp-lu8j04cu {
        --text-direction: var(--wix-opt-in-direction)
    }
    
    #comp-lu8j04d1 {
        --min-height: 115px;
        --text-direction: var(--wix-opt-in-direction)
    }
    
    .sf-hidden {
        display: none!important
    }