:root {
    --zero-px: 0px;
    --primary-ff: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --secondary-ff: var(--primary-ff);
    --body-font-family: var(--primary-ff);
    --body-font-size: 15px;
    --font-weight-bold: 600;
    --h-text-transform: uppercase;
    --system-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --h4-font-size: 1rem;
    --body-bg-color: HSL(var(--neutral-0));
    --body-color: HSL(var(--neutral-7));
    --link-color: HSL(var(--neutral-10));
    --accent-color: HSL(var(--neutral-8));
    --accent-text-color: HSL(var(--neutral-0));
    --header-default--height: 150px;
    --container-max-width: 1440px;
    --half-gutter-size: 15px;
    --main-gutter-size: var(--half-gutter-size);
    --content-padding-top: 3.125rem;
    --content-padding-bottom: 5.625rem;
    --admin-bar: 46px;
    --site-width: 100vw;
    --sidebar-size: 27%;
    --sidebar-margin: 2%;
    --neutral-hue: 210;
    --neutral-0: var(--neutral-hue), var(--nst, 0%), 100%;
    --neutral-1: var(--neutral-hue), var(--nst, 17%), 98%;
    --neutral-2: var(--neutral-hue), var(--nst, 16%), 93%;
    --neutral-3: var(--neutral-hue), var(--nst, 14%), 89%;
    --neutral-4: var(--neutral-hue), var(--nst, 14%), 83%;
    --neutral-5: var(--neutral-hue), var(--nst, 11%), 71%;
    --neutral-6: var(--neutral-hue), var(--nst, 7%), 46%;
    --neutral-7: var(--neutral-hue), var(--nst, 9%), 31%;
    --neutral-8: var(--neutral-hue), var(--nst, 10%), 23%;
    --neutral-9: var(--neutral-hue), var(--nst, 11%), 15%;
    --neutral-10: var(--neutral-hue), var(--nst, 0%), 0%;
}

@media (min-width: 1025px) {
    :root {
        --site-width: calc(100vw - var(--scrollbar-width, 0px));
    }
}

@media (min-width: 1025px) and (max-width: 1440px) and (min-height: 480px) and (max-height: 768px) {
    :root {
        --full-vp-height: 780px;
    }
}

:root[data-xl="1"] {
    --sidebar-size: 30%;
    --sidebar-margin: 0%;
    --container-max-width: var(--site-width, 100vw);
}

:root[data-admin-bar="0"] {
    --admin-bar: var(--zero-px);
}

:root[data-theme="dark"] {
    --neutral-0: var(--neutral-hue), var(--nst, 0%), 0%;
    --neutral-1: var(--neutral-hue), var(--nst, 11%), 15%;
    --neutral-2: var(--neutral-hue), var(--nst, 10%), 23%;
    --neutral-3: var(--neutral-hue), var(--nst, 9%), 31%;
    --neutral-4: var(--neutral-hue), var(--nst, 7%), 46%;
    --neutral-5: var(--neutral-hue), var(--nst, 11%), 71%;
    --neutral-6: var(--neutral-hue), var(--nst, 14%), 83%;
    --neutral-7: var(--neutral-hue), var(--nst, 14%), 89%;
    --neutral-8: var(--neutral-hue), var(--nst, 16%), 93%;
    --neutral-9: var(--neutral-hue), var(--nst, 17%), 98%;
    --neutral-10: var(--neutral-hue), var(--nst, 0%), 100%;
}

@media (min-width: 768px) {
    :root {
        --body-font-size: 16px;
        --h1-font-size: 3rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.5rem;
        --h4-font-size: 1.25rem;
        --admin-bar: 32px;
    }
}

@media (max-width: 1024px) {
    :root {
        --sidebar-size: 38%;
        --sidebar-margin: 0%;
    }
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    font-size: var(--body-font-size, 16px);
}

body {
    margin: 0;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight, 400);
    line-height: var(--body-line-height, 1.7);
    color: var(--body-color);
    text-align: start;
    background-color: var(--body-bg-color);
    background-image: var(--body-bg-image, none);
    background-repeat: var(--body-bg-repeat, repeat);
    background-attachment: var(--body-bg-attachment, scroll);
    background-position: var(--body-bg-posx, 50%) var(--body-bg-posy, 50%);
    background-size: var(--body-bg-size, auto);
    overflow-y: scroll;
}

body.rtl {
    direction: rtl;
    unicode-bidi: embed;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 1.375rem;
    text-rendering: optimizeSpeed;
    word-break: break-word;
    font-family: inherit;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: inherit;
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: var(--body-font-size);
}

p {
    margin-top: 0;
    margin-bottom: var(--paragraph-spacing, 1.25rem);
}

address {
    line-height: inherit;
    margin: 0 0 1.5625rem;
}

dl {
    margin: 0 0 1rem;
}

dd {
    margin-bottom: 0.625rem;
    margin-left: 0.9375rem;
}

blockquote {
    border: none;
    margin: 1.5625rem 0;
    padding: 1em 0 1em 2em;
}

blockquote p {
    margin-bottom: 1rem;
}

blockquote p:last-child {
    margin-bottom: 0;
}

blockquote > :last-child {
    margin-bottom: 0;
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

.small,
small {
    font-size: 80%;
    font-weight: 400;
}

mark {
    padding: 0 0.2em;
    background-color: HSL(var(--neutral-2));
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-color-hover);
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

form {
    margin-bottom: 0;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    line-height: inherit;
    font-size: 1em;
    vertical-align: baseline;
}

@media screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 0) {
    input,
    textarea {
        font-size: 16px;
    }
}

button,
input {
    overflow: visible;
}

select {
    text-indent: 0.3125rem;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
    -webkit-appearance: listbox;
}

input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
select,
textarea {
    outline: 0;
    display: block;
    width: 100%;
    height: var(--inp-h, calc(2.5625rem + 2px));
    padding: var(--inp-p, 0.625rem 0.8125rem);
    font-size: var(--inp-fz, 0.875rem);
    font-weight: var(--inp-fw, 400);
    line-height: var(--inp-lh, 1.5);
    color: var(--inp-c, HSL(var(--neutral-7)));
    background-color: var(--inp-bgc, HSL(var(--neutral-0)));
    background-clip: padding-box;
    border: var(--inp-bw, 1px) var(--inp-bs, solid)
        var(--inp-bc, HSL(var(--neutral-4)));
    border-radius: var(--inp-br, 2px);
    transition: 0.15s var(--easeoutcubic, ease-out);
    transition-property: border-color, box-shadow, background-color;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
select:focus,
textarea:focus {
    --inp-bc: HSL(var(--neutral-6));
    outline: 0;
    box-shadow: var(--inp-bxs, 0 3px 10px HSLa(var(--neutral-4), 0.25));
}

textarea {
    resize: vertical;
    height: auto;
}

input[type="checkbox"],
input[type="radio"] {
    margin-right: 0.375rem;
}

[type="search"] {
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

menu,
ol,
ul {
    margin: 1.25rem 0;
    padding: 0 0 0 1.875rem;
}

ul li ul {
    list-style-type: circle;
}

nav ol,
nav ul {
    list-style: none;
    list-style-image: none;
}

li > ol,
li > ul {
    margin: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    vertical-align: middle;
    width: 100%;
    margin: 0 0 1.5625rem;
}

th {
    border: 0;
    padding: 0.5rem 0.625rem;
    text-align: inherit;
}

td {
    padding: 0.5rem 0.75rem;
}

tbody tr,
thead tr {
    border: 1px solid HSL(var(--neutral-2));
}

tbody th {
    background: HSL(var(--neutral-1));
}

tbody td,
tbody th {
    border-right: 1px solid HSL(var(--neutral-2));
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: start;
    caption-side: bottom;
}

.btn,
button,
button[type="button"],
button[type="submit"],
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: var(--btn-dsp, inline-flex);
    border-radius: var(--btn-br, initial);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    color: var(--body-color);
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: 0.2s var(--easeoutcubic, ease-out);
    transition-property: color, background-color, border-color;
}

.rey-siteWrapper {
    position: relative;
    min-height: calc(100vh - var(--admin-bar));
    overflow: var(--site-wrapper-overflow, hidden);
}

@media (min-width: 1025px) {
    .rey-siteWrapper {
        padding-top: var(--page-padding-top, var(--zero-px));
        padding-right: var(--page-padding-right, var(--zero-px));
        padding-bottom: var(--page-padding-bottom, var(--zero-px));
        padding-left: var(--page-padding-left, var(--zero-px));
    }
}

.rey-siteContainer {
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
    padding-right: var(--main-gutter-size);
    padding-left: var(--main-gutter-size);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: var(--container-max-width);
}

@media (min-width: 1025px) {
    [data-xl="2"] .rey-siteContainer {
        padding-top: var(--content-padding-top);
        padding-bottom: var(--content-padding-bottom);
        padding-right: calc(
            var(--content-padding-right, 0px) + var(--main-gutter-size)
        );
        padding-left: calc(
            var(--content-padding-left, 0px) + var(--main-gutter-size)
        );
    }
}

.rey-siteRow {
    display: flex;
    flex-wrap: wrap;
}

.rey-siteMain {
    position: relative;
    width: 100%;
    flex: 0 1 100%;
    max-width: 100%;
}

.rey-siteMain-inner {
    margin: 0 auto;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.rey-pageTitle {
    margin-bottom: 3.125rem;
    font-size: 2.375rem;
    font-weight: var(--font-weight-bold);
}

.rey-pageTitle:not(:only-child) {
    margin-bottom: 0;
}

.--invisible {
    visibility: hidden;
}

.--hidden {
    display: none !important;
}

[data-lazy-hidden] {
    display: none;
}

[data-transparent] {
    opacity: 0;
}

[data-abs] {
    --i-pos: absolute;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

@media (max-width: 767px) {
    .--dnone-sm {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1025px) {
    .--dnone-md {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .--dnone-lg {
        display: none !important;
    }
}

.rey-siteHeader {
    position: var(--hdr-p, relative);
    top: var(--hdr-t, initial);
    color: var(--header-text-color, HSL(var(--neutral-9)));
    background-color: var(--header-bgcolor, transparent);
    transition-property: var(--hdr-trp, background-color);
    transition-timing-function: var(--hdr-trtf, var(--easeoutcubic, ease-out));
    transition-duration: var(--hdr-trd, 0.3s);
    box-shadow: var(--hdr-bs, initial);
}

.rey-logoTitle {
    font-size: calc(var(--h1-font-size) * 0.85);
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--logo-mb, 0);
}

.rey-logoTitle a {
    text-decoration: none;
}

.rey-siteLogo a {
    display: block;
}

.rey-siteLogo .custom-logo {
    display: var(--logo-ds, inline-block);
    height: auto;
    width: var(--logo--width, auto);
    max-width: var(--logo--max-width, 150px);
    min-width: var(--logo--min-width, 40px);
    max-height: var(--logo--max-height, initial);
}

.rey-siteLogo .custom-logo:not(:only-of-type) {
    display: none;
}

.rey-siteHeader--default .rey-siteLogo {
    --logo--min-width: 70px;
    --logo--max-height: calc(
        var(--header-default--height) - (var(--v-spacing, 15px) * 2)
    );
    --logo-ds: block;
    --logo--width: 100%;
}

@media (min-width: 1025px) {
    .rey-siteLogo .custom-logo:not(:only-of-type) {
        display: inline-block;
    }

    .rey-siteLogo .rey-mobileLogo {
        display: none;
    }
}

.rey-headerIcon {
    margin-inline-start: var(--hi-m, initial);
}

.rey-headerIcon>: is(span,a) {
    color: inherit;
    background-color: inherit;
}

@media (max-width: 767px) {
    .rey-headerIcon svg {
        overflow: visible;
    }
}

.rey-headerIcon-btn {
    font-size: var(--hib-fz, 0.875rem);
    display: var(--hib-d, flex);
    text-transform: var(--hib-ttr, uppercase);
    color: var(--hib-c, inherit);
    position: var(--hib-p, relative);
    flex-wrap: var(--hib-fw, initial);
    z-index: var(--hib-z, initial);
}

.rey-headerIcon-icon {
    position: relative;
    font-size: var(--icon-size, 1.25rem);
    display: var(--hicon-d, block);
}

.rey-headerIcon-icon .rey-icon {
    font-size: inherit;
    display: var(--hibi-d, block);
}

.rey-headerIcon-btnText {
    display: var(--hibt-d, none);
    flex: var(--hibt-f, initial);
    align-items: center;
    justify-content: center;
    order: var(--hibt-o, initial);
    gap: 0.2em;
    font-size: 0.8rem;
    line-height: 1;
    margin-left: var(--hibt-ml, initial);
    margin-right: var(--hibt-mr, var(--text-distance, 0.5em));
    margin-top: var(--hibt-mt, initial);
}

@media (min-width: 1025px) {
    .rey-headerIcon-btnText {
        --hibt-d: flex;
    }
}

.rey-headerIcon-btnText.--show-mobile {
    --hibt-d: flex;
}

.--hit-text {
    --text-distance: 0px;
}

@media (min-width: 1025px) {
    .--hit-text {
        --hibi-d: none;
    }
}

.ltr .--hit-after,
.rtl .--hit-before {
    --hibt-ml: var(--text-distance, 0.5em);
    --hibt-mr: 0;
}

.--hit-after {
    --hibt-o: 1;
}

.--hit-under {
    --hib-fw: wrap;
    --hibt-o: 1;
    --hibt-f: 1 0 100%;
    --hibt-mt: var(--text-distance, 0.5em);
    --hibt-ml: 0;
    --hibt-mr: 0;
}

@media (min-width: 1025px) {
    .--hicon-lg {
        --hicon-d: none;
    }
}

.rey-headerIcon-counter {
    --loader-d: none;
    font-family: var(--system-font, sans-serif);
    font-size: var(--hibtc-fz, 8px);
    line-height: 1;
    position: relative;
    top: var(--hibtc-t, initial);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: var(--hibtc-as, initial);
}

.rey-headerIcon-counter.--bubble {
    width: var(--hibtc-w, 1rem);
    height: var(--hibtc-h, 1rem);
    background: var(--hibtc-bgc, HSL(var(--neutral-8)));
    color: #fff;
    border-radius: 3em;
    margin-left: var(--hibtc-ml, initial);
    margin-right: var(--hibtc-mr, initial);
    --hibtc-ml: var(--c-dist, -3px);
    --hibtc-mr: 0;
}

.rtl .rey-headerIcon-counter.--bubble {
    --hibtc-ml: 0;
    --hibtc-mr: var(--c-dist, -3px);
}

@media (min-width: 1025px) {
    .rey-headerIcon-counter.--bubble {
        --c-dist: 3px;
        --hibtc-fz: 9px;
        --hibtc-w: 1.25rem;
        --hibtc-h: 1.25rem;
        --hibtc-ml: var(--c-dist);
        --hibtc-mr: 0;
    }

    .rtl .rey-headerIcon-counter.--bubble {
        --hibtc-ml: 0;
        --hibtc-mr: var(--c-dist);
    }
}

.rey-headerIcon-counter.--out {
    width: var(--hibtc-w, 1rem);
    height: var(--hibtc-h, 1rem);
    background: 0 0;
    color: inherit;
    border-radius: 3em;
    margin-left: var(--hibtc-ml, initial);
    margin-right: var(--hibtc-mr, initial);
    border: 1px solid currentColor;
    --hibtc-ml: var(--c-dist, -1px);
    --hibtc-mr: 0;
}

.rtl .rey-headerIcon-counter.--out {
    --hibtc-ml: 0;
    --hibtc-mr: var(--c-dist, -3px);
}

@media (min-width: 1025px) {
    .rey-headerIcon-counter.--out {
        --c-dist: 3px;
        --hibtc-fz: 8px;
        --hibtc-w: calc(1.25rem - 2px);
        --hibtc-h: calc(1.25rem - 2px);
        --hibtc-ml: var(--c-dist);
        --hibtc-mr: 0;
    }

    .rtl .rey-headerIcon-counter.--out {
        --hibtc-ml: 0;
        --hibtc-mr: var(--c-dist);
    }
}

.rey-headerIcon-counter.--minimal {
    --hibtc-fz: 9px;
    --hibtc-t: -2px;
    --hibtc-as: flex-start;
    --hibtc-ml: var(--c-dist, 0px);
    --hibtc-mr: 0;
}

@media (min-width: 1025px) {
    .rey-headerIcon-counter.--minimal {
        --c-dist: 3px;
    }
}

.rtl .rey-headerIcon-counter.--minimal {
    --hibtc-ml: 0;
    --hibtc-mr: var(--c-dist, 0px);
}

.rey-headerIcon-counter.--minimal : is(.rey-icon,span) {
    margin-left: var(--hibtc-ml, initial);
    margin-right: var(--hibtc-mr, initial);
}

.rey-headerIcon-counter.--text {
    --hibtc-fz: 1em;
    font-weight: 400;
}

.rey-headerIcon-counter.--text: before {
    content: "(";
}

.rey-headerIcon-counter.--text: after {
    content: ")";
}

.rey-headerIcon-counter [data-count]:not([data-count=""]):before {
    content: attr(data-count);
}

.rey-icon,
:is(.rey-wicon, .rey-arrowSvg) svg {
    font-size: var(--i-fz, 1rem);
    height: 1em;
    width: 1em;
    display: var(--i-ds, inline-block);
    fill: currentColor;
    position: var(--i-pos, relative);
    vertical-align: middle;
    top: var(--i-top, initial);
    transition: var(--i-trs, initial);
    transform: var(--i-tr, initial);
}

.rey-icon + span,
:is(.rey-wicon, .rey-arrowSvg) svg + span {
    display: inline-block;
    vertical-align: middle;
    margin-inline-start: var(--i-gap, 0.5em);
}

.btn .rey-icon,.btn : is(.rey-wicon,.rey-arrowSvg) svg,button .rey-icon,button :is(.rey-wicon,.rey-arrowSvg) svg {
    --i-fz: 1em;
}

.rey-arrowSvg {
    --i-fz: 1.875rem;
    --i-top: 0;
    --i-trs: transform 0.3s var(--easeoutcubic, ease-out);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: var(--i-arr-tr, initial);
}

@media (min-width: 1025px) {
    .rey-arrowSvg:hover .--default {
        --i-tr: translateX(-5px);
        --i-dsh-tr: scaleX(0.7);
    }
}

.ltr .rey-arrowSvg--left,
.rtl .rey-arrowSvg--right {
    --i-arr-tr: rotate(180deg);
}

.rey-mainNavigation-mobileBtn {
    display: var(--nav-breakpoint-mobile, none);
    background-color: var(--nav-mobile-btn--bg-color, transparent);
    margin-left: var(--hbg-ml, initial);
    margin-right: var(--hbg-mr, initial);
}

.--panel-dir--right .rey-mainNavigation-mobileBtn {
    --hbg-bars-tro: 0% 50%;
}

.--mobileNav--active .rey-mainNavigation-mobileBtn {
    --hbg-bars-tr: scaleX(0);
}

.rey-mainNavigation-mobileBtn .rey-icon-close {
    --stroke-width: 16px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s var(--easeoutcubic, ease-out) 0s;
    transition-property: opacity, transform;
    position: absolute;
    top: calc(50% - 0.5em);
    left: calc(50% - 0.5em);
    transform: rotate(45deg);
    font-size: 0.8em;
}

.rey-mainNavigation-mobileBtn.--active {
    --hbg-bars-tr: scaleX(0);
}

.rey-mainNavigation-mobileBtn.--active .rey-icon-close {
    opacity: 1;
    transition-delay: 0.3s;
    transform: rotate(0);
}

.rey-mainNavigation {
    --logo-mb: 0.9375rem;
    position: relative;
    flex-grow: var(--nav-fg, initial);
    padding-left: var(--nav-pl, initial);
    padding-right: var(--nav-pr, initial);
}

.rey-mainNavigation:is(.--active,: hover) {
    z-index: 1050;
}

.rey-mainMenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rey-mainMenu a {
    text-decoration: none;
}

.rey-mainMenu > .menu-item > a {
    position: relative;
    color: inherit;
    display: inline-block;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 500;
    transition: 0.25s var(--easeoutcubic, ease-out);
    transition-property: background-color, color, border-color, opacity;
}

.rey-mainMenu .menu-item-has-children {
    --padding-factor: 1.5;
    --distance-factor: 0.55;
    --indicator-distance: Max(var(--indicator-padding, 12px), 16px);
    position: relative;
}

[data-sm-indicator="none"] .rey-mainMenu .menu-item-has-children {
    --indicator-distance: 0px;
}

@media (min-width: 1025px) {
    .ltr .rey-mainMenu.--has-indicators .menu-item-has-children > a {
        padding-right: var(--indicator-distance) !important;
    }

    .rtl .rey-mainMenu.--has-indicators .menu-item-has-children > a {
        padding-left: var(--indicator-distance) !important;
    }
}

.rey-mainMenu .depth--0 > .sub-menu {
    display: none;
}

.rey-mainNavigation.rey-mainNavigation--desktop {
    display: var(--nav-breakpoint-desktop, flex);
}

.rey-mainMenu--desktop {
    display: inline-flex;
    gap: calc(var(--header-nav-x-spacing, 1rem) * 2);
}

.rey-mainMenu--desktop .menu-item.depth--0.--separated {
    position: relative;
    padding-left: 0;
    margin-left: var(--header-nav-x-spacing, 1rem);
}

.rey-mainMenu--desktop .menu-item.depth--0.--bold > a {
    font-weight: 800 !important;
}

@media (min-width: 1025px) {
    .rey-mainMenu--desktop .menu-item.--mobile-only {
        display: none;
    }
}

.rey-mainMenu--desktop .menu-item-has-children > a > span {
    position: relative;
    display: inline-block;
}

.rey-mainNavigation--desktop.--style-default .menu-item.depth--0 > a {
    position: relative;
    color: inherit;
    --btn-line-w: calc(100% - var(--indicator-distance, 0px));
    --btn-line-l: 0px;
}

.rtl .rey-mainNavigation--desktop.--style-default .menu-item.depth--0 > a {
    --btn-line-to-x: left;
}

.rey-mainNavigation--desktop.--style-default .menu-item.depth--0>a: after {
    content: "";
    position: absolute;
    display: block;
    opacity: var(--btn-line-o, 1);
    width: var(--btn-line-w, 100%);
    height: var(--btn-line-size, 2px);
    bottom: var(--btn-line-b, 0);
    top: var(--btn-line-t, initial);
    background-color: var(--btn-line-bgc, currentColor);
    transition: 0.4s var(--easeoutcubic, ease-out);
    transition-property: transform, opacity;
    transform: var(--btn-line-tr, scaleX(0));
    transform-origin: center var(--btn-line-to-x, right);
    right: var(--btn-line-r, initial);
    inset-inline-start: var(--btn-line-l, initial);
}

.rey-mainNavigation--desktop.--style-default .menu-item.depth--0: is([aria-expanded=true],:hover,.current-menu-item)>a {
    --btn-line-tr: scaleX(1);
    --btn-line-to-x: left;
}

.rtl .rey-mainNavigation--desktop.--style-default .menu-item.depth--0: is([aria-expanded=true],:hover,.current-menu-item)>a {
    --btn-line-to-x: right;
}

.rey-mainNavigation--mobile,
.rey-mega-gs {
    display: none;
}

.form-row,
.rey-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.3125rem;
    margin-left: -0.3125rem;
}

.form-row > .col,
.form-row > [class*="col-"],
.rey-form-row > .col,
.rey-form-row > [class*="col-"] {
    padding-right: 0.3125rem;
    padding-left: 0.3125rem;
    flex-basis: 0%;
    flex-grow: 1;
    max-width: 100%;
}

.rey-form-row {
    position: relative;
    margin-top: 25px;
}

.rey-form-row .rey-label {
    font-size: 0.8125rem;
    color: HSL(var(--neutral-8));
    margin-bottom: 0;
}

.rey-form-row.rey-form-row--text .rey-label {
    position: absolute;
    top: calc(50% - 0.5em);
    left: 15px;
    transition: transform 0.2s var(--easeoutcubic, ease-out);
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

.rey-form-row.rey-form-row--text.--has-value .rey-label {
    pointer-events: auto;
    transform: translate(0, -1.7em);
    color: HSL(var(--neutral-9));
    opacity: 1;
    background-color: HSL(var(--neutral-0));
    font-size: 12px;
    padding-left: 0.2em;
    padding-right: 0.2em;
}

@media (max-width: 767px) {
    .rey-form-row.rey-form-row--reset-mobile {
        display: block;
    }

    .rey-form-row.rey-form-row--reset-mobile > .col {
        text-align: start !important;
    }
}

.rey-label--checkbox {
    cursor: pointer;
}

.rey-label--checkbox input[type="checkbox"]:not(:only-child) {
    display: none;
}

.rey-label--checkbox input[type="checkbox"]:not(:only-child) + label,
.rey-label--checkbox input[type="checkbox"]:not(:only-child) + span {
    --radio-size: 18px;
    --radio-bw: 2px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-left: calc(2 * var(--radio-size));
}

.rey-label--checkbox input[type="checkbox"]:not(:only-child) + label:before,
.rey-label--checkbox input[type="checkbox"]:not(:only-child) + span:before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5em);
    width: 1em;
    height: 1em;
    color: HSL(var(--neutral-5));
    color: inherit;
    border: var(--radio-bw) solid currentColor;
    transition: color 0.3s var(--easeoutcubic, ease-out);
    font-size: var(--radio-size);
    left: 0;
}

.rey-label--checkbox input[type="checkbox"]:not(:only-child) + label:after,
.rey-label--checkbox input[type="checkbox"]:not(:only-child) + span:after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5em);
    background-color: currentColor;
    width: 1em;
    height: 1em;
    transition: transform 0.15s var(--easeoutcubic, ease-out);
    transform: scale(0);
    font-size: var(--radio-size);
    left: 0;
}

.rey-label--checkbox input[type="checkbox"]:not(:only-child):checked + label,
.rey-label--checkbox input[type="checkbox"]:not(:only-child):checked + span {
    color: var(--checked-color, HSL(var(--neutral-7)));
    font-weight: var(--checked-fw, 600);
}

.rey-label--checkbox
    input[type="checkbox"]:not(:only-child):checked
    + label:after,
.rey-label--checkbox
    input[type="checkbox"]:not(:only-child):checked
    + span:after {
    transform: scale(0.5);
}

.woocommerce-invalid .rey-label--checkbox input[type="checkbox"] + span:before {
    border-color: #dc3545;
}

.rey-label--checkbox .rey-label-text {
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    margin-bottom: 5px;
    color: HSL(var(--neutral-6));
}

.rey-commentForm__form .form-row {
    margin-bottom: 1.25rem;
}

.wp-block-separator {
    margin: 2.1875rem auto;
    border-top: 0;
    border-bottom: 2px solid HSL(var(--neutral-4));
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    width: 100px;
}

.wp-block-separator.is-style-wide {
    border-color: HSL(var(--neutral-4));
}

.wp-block-separator.is-style-dots {
    border: none;
}

.wp-block-quote[style*="text-align:right"],
.wp-block-quote[style*="text-align:right"] {
    padding-left: auto;
    padding-right: 2em;
}

.wp-block-quote[style*="text-align:right"]:before,
.wp-block-quote[style*="text-align:right"]:before {
    left: auto;
    right: 0;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
    padding: 1em 0 1em 2em;
}

.wp-block-embed {
    margin-bottom: 1.6em;
}

.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text {
    line-height: 1.25;
}

twitter-widget {
    margin-left: auto;
    margin-right: auto;
}

.rey-postContent p {
    margin-bottom: 1.5625rem;
}

@media (min-width: 1025px) {
    .alignfull {
        margin-left: calc(50% - var(--site-width) / 2);
        margin-right: calc(50% - var(--site-width) / 2);
        width: var(--site-width);
        max-width: none;
        margin-bottom: 1.5625rem;
    }

    .--has-sidebar .alignfull {
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .alignwide {
        margin-left: calc(25% - var(--post-align-wide-size, 25vw));
        margin-right: calc(25% - var(--post-align-wide-size, 25vw));
        width: auto;
        max-width: 1000%;
        margin-bottom: 1.5625rem;
    }

    .--has-sidebar .alignwide {
        margin-left: auto;
        margin-right: auto;
    }

    .alignfull img,
    .alignwide img {
        display: block;
        margin: 0 auto;
    }
}

pre.wp-block-verse {
    font-family: var(--primary-ff);
    border: none;
    font-size: 100%;
}

.wp-block-image {
    margin-bottom: 1.5625rem;
}

.wp-block-image img {
    max-width: 100%;
}

.wp-block-image.aligncenter {
    text-align: center;
}

.wp-block-image.alignfull > a,
.wp-block-image.alignwide > a {
    display: block;
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
    width: 100%;
}

.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image .is-resized {
    display: table;
    margin-left: 0;
    margin-right: 0;
}

.wp-block-image .aligncenter > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image .is-resized > figcaption {
    display: table-caption;
    caption-side: bottom;
}

.wp-block-image .alignleft {
    margin-right: 1em;
}

.wp-block-image .alignright {
    margin-left: 1em;
}

.wp-block-image .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.wp-block-image figcaption {
    margin-top: 0.7em;
    margin-bottom: 0;
    color: HSL(var(--neutral-7));
    text-align: center;
    font-size: 13px;
}

.wp-block-image a {
    box-shadow: none;
}

.wp-block-latest-posts {
    list-style: none;
    padding: 0;
}

.wp-block-latest-posts > li {
    margin-bottom: 0.75rem;
}

.wp-block-latest-posts > li > a {
    display: block;
    font-weight: var(--font-weight-bold);
}

.wp-block-latest-posts.alignleft {
    margin-right: 1.5625rem;
}

.wp-block-latest-posts.alignright {
    margin-left: 1.5625rem;
}

.wp-block-latest-posts.alignfull > li > a,
.wp-block-latest-posts.alignfull > li > time {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.wp-block-button {
    margin-bottom: 1.5em;
}

.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    transition: color 0.15s var(--easeoutcubic, ease-out),
        background-color 0.15s var(--easeoutcubic, ease-out),
        border-color 0.15s var(--easeoutcubic, ease-out);
    position: var(--btn-pos, relative);
    display: var(--btn-dsp, inline-flex);
    font-size: var(--btn-font-size, 15px);
    font-weight: var(--btn-fw, 600);
    color: var(--btn-color, var(--link-color));
    background-color: var(--btn-bg-color, transparent);
    text-transform: var(--btn-ttr, initial);
    letter-spacing: var(--btn-lts, initial);
    border: var(--btn-bd-w, 0) var(--btn-bs-s, solid)
        var(--btn-bd-c, transparent);
    padding: var(--btn-padding, 0);
    line-height: var(--btn-lh, 1);
    border-radius: var(--btn-br, 0);
    transition: var(--btn-tr, 0.2s var(--easeoutcubic, ease-out));
    transition-property: var(
        --btn-trp,
        color,
        background-color,
        border-color,
        opacity
    );
    text-decoration: var(--btn-td, none);
    text-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    --btn-font-size: 13px;
    --btn-color: var(--accent-text-color);
    --btn-bg-color: var(--accent-color);
    --btn-padding: 0.75em 1.25em;
    --btn-bd-w: 1px;
    --btn-lh: var(--btn-fw, 400);
    --btn-lh: 1.2;
    --btn-br: 2px;
    border-radius: 28px;
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.9375rem 1.875rem;
}

@media screen and (prefers-reduced-motion: reduce) {
    .wp-block-button__link {
        transition: none;
    }
}

.wp-block-button__link:hover {
    text-decoration: none;
}

.wp-block-button__link:hover {
    --btn-color: var(--accent-text-hover-color);
    --btn-bg-color: var(--accent-hover-color);
}

.wp-block-button__link:after {
    display: none !important;
}

.is-style-outline .wp-block-button__link {
    color: var(--accent-color);
}

.is-style-outline .wp-block-button__link:hover {
    background-color: transparent;
}

.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

.wp-block-file__button:after {
    display: none !important;
}

.wp-block-embed-vimeo {
    margin-bottom: 1.25rem;
}

.wp-block-embed-vimeo.alignfull,
.wp-block-embed-vimeo.alignwide {
    margin-bottom: 2.5rem;
}

.wp-block-embed__wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.wp-block-embed__wrapper:before {
    display: block;
    content: "";
}

.wp-block-embed__wrapper embed,
.wp-block-embed__wrapper iframe,
.wp-block-embed__wrapper object,
.wp-block-embed__wrapper video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
    padding-top: 42.8571428571%;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
    padding-top: 56.25%;
}

.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
    padding-top: 75%;
}

.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
    padding-top: 100%;
}

.wp-block-cover,
.wp-block-cover-image {
    margin-bottom: 1.5625rem;
}

.wp-block-cover p:last-child,
.wp-block-cover-image p:last-child {
    margin-bottom: 0;
}

.wp-block-gallery {
    margin-bottom: calc(1.5625rem - 16px);
}

.wp-block-gallery.alignfull {
    clear: both;
    margin-left: 0;
    margin-right: 0;
    width: auto;
}

@media (min-width: 1025px) {
    .wp-block-gallery.alignfull {
        margin-left: calc(50% - var(--site-width) / 2 + 3rem);
        margin-right: calc(50% - var(--site-width) / 2 + 3rem);
        width: calc(var(--site-width) - 6rem);
    }
}

.--has-sidebar .wp-block-gallery.alignfull {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-gallery.alignwide {
    clear: both;
}

.--has-sidebar .wp-block-gallery.alignwide {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    padding: 2em 1.4em 2em;
}

@media (max-width: 767px) {
    .wp-block-gallery.columns-2 .blocks-gallery-image,
    .wp-block-gallery.columns-2 .blocks-gallery-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-block-gallery.columns-2 .blocks-gallery-image,
    .wp-block-gallery.columns-2 .blocks-gallery-item {
        width: calc(50% - 16px);
        margin-right: 16px !important;
    }

    .wp-block-gallery.columns-2 .blocks-gallery-image:last-child,
    .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-2 .blocks-gallery-item:last-child,
    .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .wp-block-gallery.columns-3 .blocks-gallery-image,
    .wp-block-gallery.columns-3 .blocks-gallery-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-block-gallery.columns-3 .blocks-gallery-image,
    .wp-block-gallery.columns-3 .blocks-gallery-item {
        width: calc(50% - 16px);
        margin-right: 16px !important;
    }

    .wp-block-gallery.columns-3 .blocks-gallery-image:last-child,
    .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-3 .blocks-gallery-item:last-child,
    .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .wp-block-gallery.columns-4 .blocks-gallery-image,
    .wp-block-gallery.columns-4 .blocks-gallery-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-block-gallery.columns-4 .blocks-gallery-image,
    .wp-block-gallery.columns-4 .blocks-gallery-item {
        width: calc(50% - 16px);
        margin-right: 16px !important;
    }

    .wp-block-gallery.columns-4 .blocks-gallery-image:last-child,
    .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-4 .blocks-gallery-item:last-child,
    .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .wp-block-gallery.columns-5 .blocks-gallery-image,
    .wp-block-gallery.columns-5 .blocks-gallery-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-block-gallery.columns-5 .blocks-gallery-image,
    .wp-block-gallery.columns-5 .blocks-gallery-item {
        width: calc(50% - 16px);
        margin-right: 16px !important;
    }

    .wp-block-gallery.columns-5 .blocks-gallery-image:last-child,
    .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-5 .blocks-gallery-item:last-child,
    .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .wp-block-gallery.columns-6 .blocks-gallery-image,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-block-gallery.columns-6 .blocks-gallery-image,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
        width: calc(50% - 16px);
        margin-right: 16px !important;
    }

    .wp-block-gallery.columns-6 .blocks-gallery-image:last-child,
    .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-6 .blocks-gallery-item:last-child,
    .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .wp-block-gallery.columns-7 .blocks-gallery-image,
    .wp-block-gallery.columns-7 .blocks-gallery-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-block-gallery.columns-7 .blocks-gallery-image,
    .wp-block-gallery.columns-7 .blocks-gallery-item {
        width: calc(50% - 16px);
        margin-right: 16px !important;
    }

    .wp-block-gallery.columns-7 .blocks-gallery-image:last-child,
    .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-7 .blocks-gallery-item:last-child,
    .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .wp-block-gallery.columns-8 .blocks-gallery-image,
    .wp-block-gallery.columns-8 .blocks-gallery-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-block-gallery.columns-8 .blocks-gallery-image,
    .wp-block-gallery.columns-8 .blocks-gallery-item {
        width: calc(50% - 16px);
        margin-right: 16px !important;
    }

    .wp-block-gallery.columns-8 .blocks-gallery-image:last-child,
    .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-8 .blocks-gallery-item:last-child,
    .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .wp-block-gallery.columns-9 .blocks-gallery-image,
    .wp-block-gallery.columns-9 .blocks-gallery-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-block-gallery.columns-9 .blocks-gallery-image,
    .wp-block-gallery.columns-9 .blocks-gallery-item {
        width: calc(50% - 16px);
        margin-right: 16px !important;
    }

    .wp-block-gallery.columns-9 .blocks-gallery-image:last-child,
    .wp-block-gallery.columns-9 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-9 .blocks-gallery-item:last-child,
    .wp-block-gallery.columns-9 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .wp-block-gallery.alignleft,
    .wp-block-gallery.alignright {
        max-width: none;
    }
}

.wp-block-gallery .blocks-gallery-caption {
    margin-top: 0.7em;
    margin-bottom: 0;
    color: HSL(var(--neutral-7));
    text-align: center;
    font-size: 13px;
}

@media (min-width: 1025px) {
    .wp-block-columns.alignfull {
        margin-left: calc(50% - var(--site-width) / 2 + 3rem);
        margin-right: calc(50% - var(--site-width) / 2 + 3rem);
        width: calc(var(--site-width) - 6rem);
    }
}

.--has-sidebar .wp-block-columns.alignfull {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.--has-sidebar .wp-block-columns.alignwide {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-pullquote {
    border-top: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
}

.wp-block-pullquote blockquote {
    margin: 1em;
    padding: 0;
    border: none;
    font-style: initial;
}

.wp-block-pullquote blockquote:before {
    display: none;
}

.wp-block-pullquote p {
    font-size: 28px;
    line-height: 1.4;
}

.wp-block-pullquote.is-style-solid-color blockquote {
    border-left: none;
    background-color: transparent;
}

.wp-block-media-text {
    display: block;
}

@media (min-width: 1025px) {
    .wp-block-media-text {
        display: grid;
    }
}

.wp-block-media-text .wp-block-media-text__content {
    padding: 5% 0 0 0;
}

@media (min-width: 768px) {
    .wp-block-media-text .wp-block-media-text__content {
        padding: 2% 0 0 0;
    }
}

@media (min-width: 1025px) {
    .wp-block-media-text .wp-block-media-text__content {
        padding: 0 8% 0 8%;
    }
}

@media (max-width: 1024px) {
    .wp-block-media-text[style*="background-color"]
        .wp-block-media-text__content {
        padding: 5%;
    }

    .wp-block-media-text[style*="background-color"] p:last-child {
        margin-bottom: 0;
    }
}

.wp-block-archives-dropdown {
    margin-bottom: 1.25rem;
}

.wp-block-latest-posts li > a {
    display: inline-block;
}

.wp-block-latest-posts.is-grid li a:after {
    display: none;
}

.wp-block-latest-posts .has-dates time {
    display: block;
}

.wp-block-latest-comments__comment {
    line-height: 1.5;
}

.wp-block-media-text.alignfull,
.wp-block-media-text.alignwide {
    margin-bottom: 1.5625rem;
}

.has-text-align-center {
    text-align: center;
}

.wp-block-latest-comments {
    padding-left: 0;
    list-style: none;
    word-break: break-all;
}

@charset "UTF-8";
.rey-postList {
    --blog-gutter-size: 2.5rem;
}

@media (min-width: 1025px) {
    .rey-postList {
        --blog-gutter-size: 4.0625rem;
    }
}

@media (min-width: 1025px) {
    .rey-postList {
        margin-right: calc(-1 * var(--blog-gutter-size));
        margin-left: calc(-1 * var(--blog-gutter-size));
    }
}

.--has-sidebar .rey-postList {
    margin-right: auto;
    margin-left: auto;
}

.rey-postList .rey-postItem {
    position: relative;
    margin-bottom: 3.125rem;
}

@media (min-width: 768px) {
    .rey-postList .rey-postItem {
        padding-right: var(--blog-gutter-size);
        padding-left: var(--blog-gutter-size);
    }
}

.--has-sidebar.blog--columns-1 .rey-postList .rey-postItem {
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 1025px) {
    .rey-postList .rey-postItem {
        margin-bottom: 5rem;
    }
}

@media (min-width: 1025px) {
    .rey-postList .rey-postItem.is-animated-entry {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        transition: opacity 0.3s var(--easeoutcubic, ease-out),
            transform 0.3s var(--easeoutcubic, ease-out);
    }

    .rey-postList .rey-postItem.is-animated-entry.--animated-in {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rey-postItem {
    position: relative;
}

.rey-postHeader {
    margin-bottom: 1.875rem;
}

.rey-postCategories {
    margin-bottom: 1.875rem;
}

.rey-postMedia + .rey-postHeader .rey-postCategories {
    display: none;
}

.rey-postCategories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rey-postCategories li {
    display: inline-block;
    margin: 0 0.3125rem 0.625rem 0;
}

.rey-postCategories a {
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    line-height: 1;
    padding: 0.5rem 0.625rem;
    background-color: HSL(var(--neutral-6));
    color: HSL(var(--neutral-0));
    border-radius: 2px;
    display: block;
    transition: 0.2s var(--easeoutcubic, ease-out);
}

.rey-postCategories a:hover {
    text-decoration: none;
    background-color: HSL(var(--neutral-8));
}

.rey-postTitle {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
    letter-spacing: -0.7px;
}

@media (min-width: 1025px) {
    .rey-postTitle {
        font-size: 2.125rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.rey-postTitle a {
    text-decoration: none;
}

.rey-postTitle.entry-title {
    display: block;
}

.rey-postTitle .rey-postContent-more,
.rey-postTitle .rey-postInfo {
    margin-top: 1em;
}

.rey-postContent-more,
.rey-postInfo {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    opacity: 0.7;
}

.rey-postContent-more > span,
.rey-postInfo > span {
    display: inline-block;
}

@media (min-width: 1025px) {
    .post-width--c .rey-siteMain-inner,
    .search.search-results .rey-siteMain-inner {
        --post-width: calc(var(--container-max-width) * 0.65);
        max-width: var(--post-width);
    }

    .post-width--c .rey-siteMain-inner .rey-section-stretched,
    .search.search-results .rey-siteMain-inner .rey-section-stretched {
        --container-max-width: var(--post-width);
    }
}

.rey-entryDate:not(:first-child) {
    margin-left: 0.9375rem;
}

.rey-postAuthor + .rey-entryDate {
    margin-left: 0;
}

.rey-postAuthor + .rey-entryDate:before {
    content: ",";
    display: inline-block;
    margin-right: 0.75rem;
}

.rey-editLink {
    margin-left: 0.9375rem;
}

.rey-editLink:before {
    content: "•";
    display: inline-block;
    font-size: 10px;
    vertical-align: middle;
    top: -1px;
    position: relative;
    margin-right: 0.75rem;
    left: -2px;
}

.rey-entryComment {
    margin-left: 0.9375rem;
}

.rey-entryComment:before {
    content: "•";
    display: inline-block;
    font-size: 10px;
    vertical-align: middle;
    top: -1px;
    position: relative;
    margin-right: 0.75rem;
    left: -2px;
}

.rey-entryComment .rey-icon {
    font-size: 1em;
    margin-right: 0.25rem;
}

.rey-postContent {
    font-size: 1.125rem;
}

.rey-postContent::after {
    display: block;
    clear: both;
    content: "";
}

.rey-postContent > p > a,
.rey-postContent > p > em > a,
.rey-postContent > p > small > a,
.rey-postContent > p > strong > a {
    --animlink-height: 3px;
    position: relative;
    --btn-padding: 0 0 7px;
    --btn-td: underline;
    color: var(--post-content-links-color, var(--link-color));
}

@media (min-width: 768px) {
    .rey-postContent > p > a,
    .rey-postContent > p > em > a,
    .rey-postContent > p > small > a,
    .rey-postContent > p > strong > a {
        --btn-td: none;
        --animlink-d: block;
    }
}

.rey-postContent > p > a:after,
.rey-postContent > p > em > a:after,
.rey-postContent > p > small > a:after,
.rey-postContent > p > strong > a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    display: var(--animlink-d, none);
    top: calc(100% - 0.1em);
    left: 0;
    background-color: var(--deco-color, currentColor);
    opacity: 0.2;
    transition: 0.15s var(--easeoutcubic, ease-out);
    transition-property: height, opacity;
}

.rey-postContent > p > a:hover:after,
.rey-postContent > p > em > a:hover:after,
.rey-postContent > p > small > a:hover:after,
.rey-postContent > p > strong > a:hover:after {
    opacity: 0.8;
    height: var(--animlink-height, 4px);
}

.rey-postContent > p > a:hover,
.rey-postContent > p > em > a:hover,
.rey-postContent > p > small > a:hover,
.rey-postContent > p > strong > a:hover {
    color: var(--post-content-links-hover-color, var(--link-color-hover));
}

.rey-postContent.--links-clean>p>a: after,.rey-postContent.--links-clean>p>em>a:after,.rey-postContent.--links-clean>p>small>a:after,.rey-postContent.--links-clean>p>strong>a:after {
    display: none;
}

.rey-postContent img {
    max-width: 100%;
    height: auto;
}

.rey-postContent .wp-block-image img {
    border-radius: var(--img-blocks-radius, 0);
}

.rey-postContent table {
    table-layout: fixed;
}

@media (min-width: 1025px) {
    .rey-postContent table {
        table-layout: auto;
    }
}

.single .rey-postDuration {
    margin-left: 0.9375rem;
}

.single .rey-postDuration:before {
    content: "•";
    display: inline-block;
    font-size: 10px;
    vertical-align: middle;
    top: -1px;
    position: relative;
    margin-right: 0.75rem;
    left: -2px;
}

.rey-postContent-more {
    margin-top: 1.875rem;
}

.rey-postContent-more .rey-postDuration {
    text-transform: uppercase;
    display: inline-block;
    margin-left: 0.9375rem;
}

.rey-postContent-more .rey-postDuration:before {
    content: "•";
    display: inline-block;
    font-size: 10px;
    vertical-align: middle;
    top: -1px;
    position: relative;
    margin-right: 0.75rem;
    left: -2px;
}

.rey-postContent-more .rey-post-moreLink {
    --btn-font-size: 1em;
    text-decoration: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.rey-postContent-more .rey-post-moreLink:hover {
    box-shadow: none;
}

.rey-postContent-more .rey-post-moreLink.--arrow {
    transition: margin 0.25s var(--easeoutcubic, ease-out);
}

.rey-postContent-more .rey-post-moreLink.--arrow .rey-arrowSvg {
    display: none;
}

@media (min-width: 1025px) {
    .rey-postContent-more .rey-post-moreLink.--arrow .rey-arrowSvg {
        display: block;
        font-size: 30px;
        position: absolute;
        right: 0;
        opacity: 0;
        transition: 0.25s var(--easeoutcubic, ease-out);
        transition-property: opacity, transform;
    }

    .rey-postContent-more .rey-post-moreLink.--arrow .rey-arrowSvg svg {
        font-size: inherit;
        display: block;
    }
}

.rey-postContent-more .rey-post-moreLink.--arrow: hover {
    margin-right: 20px;
    margin-left: -20px;
}

@media (min-width: 1025px) {
    .rey-postContent-more .rey-post-moreLink.--arrow:hover .rey-arrowSvg {
        opacity: 1;
        transform: translateX(130%);
    }
}

.rey-postMedia {
    position: relative;
    margin-bottom: 1.875rem;
}

.rey-postMedia .rey-postCategories {
    position: absolute;
    bottom: calc(1rem + 2%);
    z-index: 2;
    margin-bottom: 0;
    left: calc(1rem + 2%);
}

@media (min-width: 1025px) {
    .rey-postMedia .rey-postCategories {
        bottom: calc(2.5rem + 2%);
        left: calc(2.5rem + 2%);
    }

    .--has-sidebar .rey-postMedia .rey-postCategories {
        bottom: calc(1.2rem + 2%);
        left: calc(1.2rem + 2%);
    }
}

.rey-postMedia .rey-postCategories a {
    background-color: HSL(var(--neutral-0));
    color: HSL(var(--neutral-7));
}

.rey-postMedia .rey-postCategories a:hover {
    background-color: HSLa(var(--neutral-0), 0.7);
}

.single-post .rey-postMedia .rey-postCategories {
    display: none;
}

.rey-postMedia:after {
    pointer-events: none;
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        to bottom left,
        transparent 20%,
        rgba(0, 0, 0, 0.4) 100%
    );
    transition: opacity 0.3s var(--easeoutcubic, ease-out);
    opacity: 0.2;
}

.rey-postMedia:hover:after {
    opacity: 0.7;
}

.rey-postMedia img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

@media (min-width: 1025px) {
    .single .rey-postItem .rey-postMedia {
        margin-left: calc(25% - var(--post-align-wide-size, 25vw));
        margin-right: calc(25% - var(--post-align-wide-size, 25vw));
        width: auto;
        max-width: 1000%;
    }
}

@media (min-width: 1025px) {
    .single .--has-sidebar .rey-postItem .rey-postMedia {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

.rey-postItem-catText {
    font-size: 14vw;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    opacity: 0.02;
    color: HSL(var(--neutral-10));
    top: -50px;
    text-transform: uppercase;
    display: none;
    white-space: nowrap;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
}

@supports (-webkit-text-stroke-color: currentColor) and
    (-webkit-text-fill-color: transparent) {
    .rey-postItem-catText {
        opacity: 0.04;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-color: currentColor;
        -webkit-text-stroke-width: 2px;
    }
}

[data-xl="2"] .rey-postItem-catText {
    display: flex;
    justify-content: center;
    max-width: var(--site-width, 100vw);
    overflow: hidden;
}

[data-xl="2"] .rey-postItem-catText + .rey-postHeader {
    padding-top: 80px;
}

.--has-sidebar .rey-postItem-catText {
    left: calc(100% - var(--sidebar-size) - var(--sidebar-margin));
}

@media (min-width: 1025px) {
    .rey-postItem.format-image.--content-e.has-postImage,
    .rey-postItem.sticky.format-standard {
        position: relative;
        padding-top: 15.625rem;
        padding-bottom: 4.0625rem;
        color: HSL(var(--neutral-2));
        padding-left: calc(
            var(--blog-gutter-size) + var(--blog-gutter-size) / 2
        );
        padding-right: calc(
            var(--blog-gutter-size) + var(--blog-gutter-size) / 2
        );
    }

    .--has-sidebar .rey-postItem.format-image.--content-e.has-postImage,
    .--has-sidebar .rey-postItem.sticky.format-standard {
        padding-left: var(--blog-gutter-size);
        padding-right: var(--blog-gutter-size);
    }

    .rey-postItem.format-image.--content-e.has-postImage a,
    .rey-postItem.sticky.format-standard a {
        color: HSL(var(--neutral-0));
    }

    .rey-postItem.format-image.--content-e.has-postImage .rey-postMedia,
    .rey-postItem.sticky.format-standard .rey-postMedia {
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 0;
        height: 100%;
        margin-left: 0;
        left: calc(var(--blog-gutter-size) / 2);
        right: calc(var(--blog-gutter-size) / 2);
        width: calc(100% - var(--blog-gutter-size));
    }

    .--has-sidebar
        .rey-postItem.format-image.--content-e.has-postImage
        .rey-postMedia,
    .--has-sidebar .rey-postItem.sticky.format-standard .rey-postMedia {
        left: 0;
        right: 0;
        width: 100%;
    }

    .rey-postItem.format-image.--content-e.has-postImage .rey-postMedia img,
    .rey-postItem.sticky.format-standard .rey-postMedia img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .rey-postItem.format-image.--content-e.has-postImage .rey-postMedia: after,.rey-postItem.sticky.format-standard .rey-postMedia:after {
        background: linear-gradient(
            to bottom left,
            rgba(0, 0, 0, 0.3) 20%,
            rgba(0, 0, 0, 0.9) 100%
        );
        opacity: 1;
    }

    .rey-postItem.format-image.--content-e.has-postImage
        .rey-postMedia
        .rey-postCategories,
    .rey-postItem.sticky.format-standard .rey-postMedia .rey-postCategories {
        display: none;
    }

    .rey-postItem.format-image.--content-e.has-postImage .rey-postContent,
    .rey-postItem.format-image.--content-e.has-postImage .rey-postHeader,
    .rey-postItem.sticky.format-standard .rey-postContent,
    .rey-postItem.sticky.format-standard .rey-postHeader {
        position: relative;
        color: inherit;
    }

    .rey-postItem.format-image.--content-e.has-postImage .rey-postContent-more,
    .rey-postItem.format-image.--content-e.has-postImage .rey-postInfo,
    .rey-postItem.sticky.format-standard .rey-postContent-more,
    .rey-postItem.sticky.format-standard .rey-postInfo {
        color: HSL(var(--neutral-2));
    }

    .rey-postItem.format-image.--content-e.has-postImage .rey-postCategories,
    .rey-postItem.sticky.format-standard .rey-postCategories {
        display: block;
    }

    .rey-postItem.format-image.--content-e.has-postImage .rey-postCategories a,
    .rey-postItem.sticky.format-standard .rey-postCategories a {
        background-color: HSL(var(--neutral-0));
        color: HSL(var(--neutral-7));
    }

    .rey-postItem.format-image.--content-e.has-postImage .rey-postCategories a: hover,.rey-postItem.sticky.format-standard .rey-postCategories a:hover {
        background-color: HSLa(var(--neutral-0), 0.7);
    }
}

@media (min-width: 1025px) {
    .rey-postItem.sticky.format-standard:not(.has-post-thumbnail) {
        padding-top: 4.5em;
    }

    .--has-sidebar .rey-postItem.sticky.format-standard: not(.has-post-thumbnail) {
        padding-left: var(--blog-gutter-size);
        padding-right: var(--blog-gutter-size);
    }

    .rey-postItem.sticky.format-standard:not(.has-post-thumbnail):before {
        content: "";
        background-image: linear-gradient(
            175.9deg,
            HSL(var(--neutral-7)) 7%,
            HSL(var(--neutral-8)) 93.8%
        );
        position: absolute;
        border-radius: 3px;
        top: 0;
        height: 100%;
        left: calc(var(--blog-gutter-size) / 2);
        right: calc(var(--blog-gutter-size) / 2);
        width: calc(100% - var(--blog-gutter-size));
        transition: transform 0.5s var(--easeoutcubic, ease-out);
        transform: scale(1);
    }

    .--has-sidebar .rey-postItem.sticky.format-standard: not(.has-post-thumbnail):before {
        left: 0;
        right: 0;
        width: 100%;
    }
}

@media (min-width: 1025px) {
    .rey-postItem.format-audio .rey-postMedia,
    .rey-postItem.format-gallery .rey-postMedia,
    .rey-postItem.format-video .rey-postMedia {
        width: calc(100% + var(--blog-gutter-size));
        margin-left: calc(-1 * var(--blog-gutter-size) / 2);
    }

    .--has-sidebar .rey-postItem.format-audio .rey-postMedia,
    .--has-sidebar .rey-postItem.format-gallery .rey-postMedia,
    .--has-sidebar .rey-postItem.format-video .rey-postMedia {
        width: 100%;
        margin-left: 0;
    }
}

.rey-postFormat__content-bg {
    position: absolute;
    background-color: HSL(var(--neutral-1));
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    transition: transform 0.5s var(--easeoutcubic, ease-out);
    transform: scale(1);
}

@media (min-width: 1025px) {
    .rey-postFormat__content-bg {
        left: calc(var(--blog-gutter-size) / 2);
        right: calc(var(--blog-gutter-size) / 2);
        width: calc(100% - var(--blog-gutter-size));
    }

    .--has-sidebar .rey-postFormat__content-bg {
        left: 0;
        right: 0;
        width: 100%;
    }
}

.rey-postFormat__content-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.rey-postItem.rey-postMedia--expanded.rey-postMedia--animated
    .rey-postFormat__content-bg {
    transition: -webkit-clip-path 0.5s var(--easeoutcubic, ease-out);
    transition: clip-path 0.5s var(--easeoutcubic, ease-out);
    transition: clip-path 0.5s var(--easeoutcubic, ease-out),
        -webkit-clip-path 0.5s var(--easeoutcubic, ease-out);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

.rey-postItem.rey-postMedia--expanded.rey-postMedia--animated
    .rey-postFormat__content-bg
    img {
    transform: scale(1);
    transition: transform 0.5s var(--easeoutcubic, ease-out);
}

.rey-postItem.rey-postMedia--expanded.rey-postMedia--animated:hover
    .rey-postFormat__content-bg {
    -webkit-clip-path: inset(10px);
    clip-path: inset(10px);
}

.rey-postItem.rey-postMedia--expanded.rey-postMedia--animated:hover
    .rey-postFormat__content-bg
    img {
    transform: scale(1.05);
}

.format-quote.--content-e .rey-postFormat__content {
    padding: 1.875rem;
    font-size: 1.25rem;
    position: relative;
}

@media (min-width: 1025px) {
    .format-quote.--content-e .rey-postFormat__content {
        padding: 3.75rem 1.25rem 3.75rem 3.4375rem;
    }
}

.format-quote.--content-e .rey-postFormat__content .rey-icon-quote {
    left: -5.625rem;
    color: HSL(var(--neutral-3));
}

.format-quote.--content-e .rey-postFormat__content-inner {
    margin-bottom: 1.875rem;
}

.format-quote.--content-e .rey-postContent-more,
.format-quote.--content-e .rey-postInfo {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .format-quote.--content-e .rey-postItem-inner {
        position: relative;
    }
}

.format-quote.--content-e blockquote {
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: var(--font-weight-bold);
    background: 0 0;
    padding: 0;
    border: 0;
    margin: 0;
    font-style: initial;
}

.format-quote.--content-e blockquote: before {
    display: none;
}

@media (min-width: 768px) {
    .format-quote.--content-e blockquote {
        font-size: 1.75rem;
    }
}

.format-quote.--content-e blockquote > p {
    margin-bottom: 0;
}

.format-quote.--content-e blockquote svg.rey-icon-quote {
    font-size: 32px;
}

@media (max-width: 767px) {
    .format-quote.--content-e blockquote svg.rey-icon-quote {
        position: relative;
        top: auto;
        left: auto !important;
        margin-bottom: 1.25rem;
    }
}

.format-quote.--content-e cite {
    margin-top: 1.25rem;
}

.format-quote.--content-e cite a {
    color: HSL(var(--neutral-6));
}

.format-quote.--content-e.has-post-thumbnail,
.format-quote.--content-e.has-post-thumbnail a {
    color: HSL(var(--neutral-0));
}

.format-quote.--content-e.has-post-thumbnail .rey-postFormat__content-bg {
    background-color: HSL(var(--neutral-8));
}

.format-quote.--content-e.has-post-thumbnail cite a {
    color: HSL(var(--neutral-4));
}

.format-quote.--content-e.has-post-thumbnail .rey-postContent-more,
.format-quote.--content-e.has-post-thumbnail .rey-postInfo {
    color: HSL(var(--neutral-4));
}

.format-link.--content-e .rey-postFormat__content {
    padding: 1.875rem;
    font-size: 1.25rem;
    position: relative;
}

@media (min-width: 1025px) {
    .format-link.--content-e .rey-postFormat__content {
        padding: 5rem 5rem 5rem 10rem;
    }

    .--has-sidebar .format-link.--content-e .rey-postFormat__content {
        padding: 3.75rem 3.75rem 3.75rem 6.25rem;
    }
}

.format-link.--content-e .rey-postFormat__content > .rey-icon {
    font-size: 40px;
    color: HSL(var(--neutral-3));
}

@media (min-width: 1025px) {
    .format-link.--content-e .rey-postFormat__content > .rey-icon {
        position: absolute;
        top: calc(50% - 20px);
        left: 4.375rem;
    }

    .--has-sidebar
        .format-link.--content-e
        .rey-postFormat__content
        > .rey-icon {
        left: 2.1875rem;
    }
}

@media (max-width: 1024px) {
    .format-link.--content-e .rey-postItem-inner {
        position: relative;
    }
}

.format-link.--content-e .rey-postFormat__content-inner {
    margin-bottom: 1.875rem;
}

.format-link.--content-e .rey-postFormat__content-inner a {
    text-decoration: underline;
}

.format-link.--content-e .rey-postFormat__content-inner a: hover {
    text-decoration: none;
}

.format-link.--content-e .rey-postFormat__content-inner p: last-child {
    margin-bottom: 0;
}

.format-link.--content-e .rey-postContent-more,
.format-link.--content-e .rey-postInfo {
    margin-bottom: 0;
}

.format-status.--content-e .rey-postFormat__content-inner {
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.875rem;
}

.rey-postThumbnail .rey-postThumbnail-inner {
    display: block;
}

.rey-postThumbnail .wp-post-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: var(--post-thumbnail-radius, 0);
}

.rey-hvLine {
    background: linear-gradient(to right, currentColor 0, currentColor 100%)
        no-repeat 0 95%;
    background-size: 0 2px;
    transition: background-size 0.25s var(--easeoutcubic, ease-out);
    padding: 0.1% 0;
    background-position: 0 95%;
}

.rey-hvLine-parent:hover .rey-hvLine {
    background-size: 100% 2px;
}

.--disable-hover-line .rey-hvLine {
    background: 0 0;
}

@media (min-width: 1025px) {
    .rey-postMedia--expanded.rey-postMedia--animated .rey-postMedia {
        transition: -webkit-clip-path 0.5s var(--easeoutcubic, ease-out);
        transition: clip-path 0.5s var(--easeoutcubic, ease-out);
        transition: clip-path 0.5s var(--easeoutcubic, ease-out),
            -webkit-clip-path 0.5s var(--easeoutcubic, ease-out);
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .rey-postMedia--expanded.rey-postMedia--animated .rey-postMedia img {
        transform: scale(1);
        transition: transform 0.5s var(--easeoutcubic, ease-out);
    }

    .rey-postMedia--expanded.rey-postMedia--animated:hover .rey-postMedia {
        -webkit-clip-path: inset(10px);
        clip-path: inset(10px);
    }

    .rey-postMedia--expanded.rey-postMedia--animated:hover .rey-postMedia img {
        transform: scale(1.05);
    }
}

@media (min-width: 1025px) {
    .rey-postMedia--expanded .rey-postMedia {
        width: calc(100% + var(--blog-gutter-size));
        margin-left: calc(-1 * var(--blog-gutter-size) / 2);
    }
}

.--has-sidebar .rey-postMedia--expanded .rey-postMedia {
    width: 100%;
    margin-left: 0;
}

.blog--columns-3 .rey-postMedia--expanded .rey-postMedia .rey-postCategories,
.blog--columns-4 .rey-postMedia--expanded .rey-postMedia .rey-postCategories {
    display: none;
}

.blog--columns-3
    .rey-postMedia--expanded
    .rey-postMedia
    + .rey-postHeader
    .rey-postCategories,
.blog--columns-4
    .rey-postMedia--expanded
    .rey-postMedia
    + .rey-postHeader
    .rey-postCategories {
    display: block;
}

.rey-siteMain.--is-bloglist .rey-postList {
    display: flex;
    flex-wrap: wrap;
}

.rey-siteMain.--is-bloglist .rey-postList .rey-postItem {
    width: 100%;
    flex: 0 0 calc(100% / var(--blog-columns, 1));
    max-width: calc(100% / var(--blog-columns, 1));
}

.rey-siteMain.--is-bloglist.blog--columns-1 .rey-siteMain-inner {
    max-width: var(--blog-single-width, 800px);
}

[data-xl="2"] .rey-siteMain.--is-bloglist.blog--columns-1 .rey-siteMain-inner {
    max-width: var(
        --blog-single-width,
        calc(var(--container-max-width) * 0.65)
    );
}

.rey-siteMain.--is-bloglist.--has-sidebar .rey-siteMain-inner {
    max-width: none;
}

.blog--columns-2 .rey-postTitle,
.blog--columns-3 .rey-postTitle,
.blog--columns-4 .rey-postTitle {
    margin-bottom: 1.5625rem;
}

.blog--columns-2 .rey-siteMain-inner,
.blog--columns-3 .rey-siteMain-inner,
.blog--columns-4 .rey-siteMain-inner {
    max-width: none;
}

.blog--columns-2 .rey-postTitle {
    font-size: 2rem;
}

.blog--columns-3 .rey-postList {
    --blog-gutter-size: 1.875rem;
}

@media (min-width: 1025px) {
    .blog--columns-3 .rey-postList {
        --blog-gutter-size: 2.5rem;
    }
}

[data-xl="2"] .blog--columns-3 .rey-postTitle {
    font-size: 1.625rem;
    margin-bottom: 1.125rem;
}

.blog--columns-4 .rey-postList {
    --blog-gutter-size: 1.25rem;
}

.blog--columns-4 .rey-postTitle {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
}

[data-xl="2"] .blog--columns-4 .rey-postTitle {
    font-size: 1.875rem;
}

[data-xl="1"]
    .rey-siteMain.--is-bloglist.blog--columns-4
    .rey-postList
    .rey-postItem {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

@media (min-width: 1025px) {
    .blog--columns-3 .rey-postContent,
    .blog--columns-4 .rey-postContent {
        font-size: 0.9375rem;
    }
}

.blog--columns-3 .format-link .rey-postFormat__content,
.blog--columns-4 .format-link .rey-postFormat__content {
    padding: 1.25rem;
}

.blog--columns-3 .format-link .rey-postFormat__content > .rey-icon,
.blog--columns-4 .format-link .rey-postFormat__content > .rey-icon {
    margin-bottom: 0.625rem;
    position: static;
}

.blog--columns-3 .format-quote .rey-postFormat__content,
.blog--columns-4 .format-quote .rey-postFormat__content {
    padding: 1.875rem;
}

.blog--columns-3 .format-quote .rey-postFormat__content .rey-icon-quote,
.blog--columns-4 .format-quote .rey-postFormat__content .rey-icon-quote {
    position: static;
    margin-bottom: 0.625rem;
}

.rey-postFooter {
    display: flex;
    justify-content: space-between;
    margin: 2.5rem 0;
    padding-top: 2.5rem;
    position: relative;
}

@media (min-width: 1025px) {
    .rey-postFooter {
        margin: 3.125rem 0;
        padding-top: 3.125rem;
    }
}

.rey-postFooter:before {
    content: "";
    height: 1px;
    background-color: HSL(var(--neutral-2));
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

.rey-postFooter.--empty {
    margin: 0;
    margin-top: 2.5rem;
    padding: 0;
}

@media (min-width: 1025px) {
    .rey-postFooter.--empty {
        margin: 0;
        margin-top: 3.125rem;
    }
}

.rey-postTags a {
    font-size: 0.875rem;
}

@media (min-width: 1025px) {
    .rey-postTags a {
        font-size: 1rem;
    }
}

.rey-postTags a {
    margin-right: 0.375rem;
    margin-bottom: 0.375rem;
}

.rey-postAuthor {
    display: flex;
}

.rey-siteMain-inner > .rey-postAuthor {
    background: HSL(var(--neutral-1));
    padding: 3em 3em 2em;
    margin-left: -3em;
    margin-right: -3em;
}

.rey-postAuthor__avatar .avatar {
    margin-right: 2.1875rem;
    border-radius: 3px;
}

.rey-postAuthor__content {
    flex-grow: 1;
}

.rey-postAuthor__by {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
    display: block;
    line-height: 1;
}

.rey-postAuthor__title {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
    font-weight: var(--font-weight-bold);
}

.rey-postAuthor__description {
    margin-bottom: 0.9375rem;
}

.rey-postAuthor__more,
.rey-postAuthor__url {
    font-size: 0.8125rem;
    font-weight: var(--font-weight-bold);
}

.rey-postAuthor__url {
    margin-left: 1.25rem;
}

.rey-postNav {
    margin: 1.25rem 0;
    position: relative;
    display: block;
}

.rey-postNav .nav-links {
    display: flex;
    justify-content: space-between;
}

.rey-postNav .nav-next,
.rey-postNav .nav-previous {
    flex-basis: 50%;
}

.rey-postNav a {
    text-decoration: none;
}

.rey-postNav a:hover .rey-postNav__title {
    text-decoration: underline;
}

.rey-postNav .nav-next {
    padding-left: 0.3em;
    text-align: end;
}

.rey-postNav .nav-next:only-child {
    margin-left: auto;
}

.rey-postNav .nav-prev {
    padding-right: 0.3em;
}

.rey-postNav .nav-prev:only-child {
    margin-left: auto;
}

.rey-postNav.post-navigation {
    margin: 2.5rem 0 0;
}

@media (min-width: 1025px) {
    .rey-postNav.post-navigation {
        margin: 3.125rem 0 0;
    }
}

.rey-postNav.post-navigation:after {
    top: auto;
    bottom: 0;
}

.rey-postNav.post-navigation br {
    display: none;
}

.rey-postNav__meta {
    font-size: 0.75rem;
    color: HSL(var(--neutral-5));
    font-weight: var(--font-weight-bold);
    display: block;
    text-transform: uppercase;
}

.rey-postNav__title {
    font-size: 0.9375rem;
    word-break: break-word;
}

@media (min-width: 1025px) {
    .rey-postNav__title {
        font-size: 1.125rem;
    }
}

.rey-postComments {
    margin-top: 1.875rem;
}

@media (min-width: 1025px) {
    .rey-postComments {
        margin-left: auto;
        margin-right: auto;
        max-width: 800px;
        max-width: calc(var(--container-max-width) * 0.65);
        margin-top: 3.125rem;
    }
}

.rey-postComments__title {
    margin-bottom: 2.5rem;
    color: HSL(var(--neutral-6));
    font-size: 1.25rem;
}

@media (min-width: 1025px) {
    .rey-postComments__title {
        font-size: 1.5rem;
        letter-spacing: -1px;
    }
}

.rey-postComments__commentList {
    padding-left: 0;
}

.rey-postComments__commentList,
.rey-postComments__commentList ol.children {
    list-style: none;
}

.rey-postComments__commentList ol,
.rey-postComments__commentList ol.children ol,
.rey-postComments__commentList ol.children ul,
.rey-postComments__commentList ul {
    margin-bottom: 1.25rem;
}

.rey-postComments__commentList > .comment {
    background-color: transparent;
}

.rey-postComments__commentList ol.children {
    border-left: 2px solid HSL(var(--neutral-1));
}

.rey-comment {
    margin-bottom: 1.875rem;
    background: HSL(var(--neutral-1));
    padding: 1.875rem;
    border-radius: 3px;
}

.rey-comment__header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 1.25rem;
}

.rey-comment__authorAvatar {
    width: 2.25rem;
    margin-right: 1.25rem;
}

.rey-comment__authorAvatar img {
    max-width: 100%;
    display: block;
    height: auto;
    border-radius: 3px;
}

.rey-comment__author {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
    text-transform: capitalize;
}

.rey-comment__author .url {
    vertical-align: middle;
}

.rey-comment__byAuthor {
    font-weight: 400;
    font-size: 14px;
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
}

.rey-comment__content {
    margin-bottom: 1.25rem;
}

.rey-comment__commentText a {
    --animlink-height: 3px;
    position: relative;
    --btn-padding: 0 0 7px;
    --btn-td: underline;
}

@media (min-width: 768px) {
    .rey-comment__commentText a {
        --btn-td: none;
        --animlink-d: block;
    }
}

.rey-comment__commentText a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    display: var(--animlink-d, none);
    top: calc(100% - 0.1em);
    left: 0;
    background-color: var(--deco-color, currentColor);
    opacity: 0.2;
    transition: 0.15s var(--easeoutcubic, ease-out);
    transition-property: height, opacity;
}

.rey-comment__commentText a:hover:after {
    opacity: 0.8;
    height: var(--animlink-height, 4px);
}

.rey-comment__footer {
    color: HSL(var(--neutral-7));
    font-size: 0.875rem;
}

.rey-comment__footer .comment-edit-link {
    display: inline-block;
    margin-left: 0.9375rem;
}

.rey-comment__footer .comment-edit-link:before {
    content: "•";
    display: inline-block;
    font-size: 10px;
    vertical-align: middle;
    top: -1px;
    position: relative;
    margin-right: 0.75rem;
    left: -2px;
}

.rey-comment__date {
    display: inline-block;
}

.rey-comment__reply {
    display: inline-block;
}

.rey-comment__reply:not(:empty) {
    margin-left: 0.9375rem;
}

.rey-comment__reply:not(:empty):before {
    content: "•";
    display: inline-block;
    font-size: 10px;
    vertical-align: middle;
    top: -1px;
    position: relative;
    margin-right: 0.75rem;
    left: -2px;
}

.form-submit .btn.rey-commentForm__submit {
    font-weight: var(--font-weight-bold);
    font-size: 13px;
}

.rey-postNav.comment-navigation {
    margin: 1.25rem 0 2.1875rem;
}

.rey-commentForm__replyTitle {
    padding-top: 1.25rem;
    margin-bottom: 1.5625rem;
    font-size: 1.75rem;
    color: HSL(var(--neutral-6));
    display: flex;
    align-items: center;
}

.rey-commentForm__replyTitle small {
    margin-left: auto;
    font-size: 1rem;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.comment-form-cookies-consent label {
    font-size: 0.875rem;
    margin-inline-start: 10px;
    margin-bottom: 0;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin: 0.3em 0 0 0;
}

.rey-commentForm__submit {
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
}

.comment .rey-comment {
    margin-bottom: 1.25rem;
}

.comment .comment-respond {
    margin-bottom: 1.5rem;
}

.comment .comment-respond .rey-commentForm__replyTitle {
    padding-top: 0;
}

.rey-commentsBtn.btn {
    margin-top: 40px;
    margin-left: calc(25% - var(--post-align-wide-size, 25vw));
    margin-right: calc(25% - var(--post-align-wide-size, 25vw));
    width: auto;
    max-width: 1000%;
    border-color: HSL(var(--neutral-5));
}

.rey-commentsBtn.btn span:after {
    content: "+";
    display: inline-block;
    margin-left: 10px;
}

.rey-commentsBtn.btn:hover {
    border-color: HSL(var(--neutral-7));
}

.rey-commentsBtn.btn.--toggled,.rey-commentsBtn.btn.--toggled: hover {
    border-color: HSL(var(--neutral-4));
}

.rey-commentsBtn.btn.--toggled span: after {
    content: "-";
}

.rey-commentsBtn.btn:not(.--toggled) ~ .rey-postComments {
    display: none;
}

.rey-commentsBtn.btn.btn-primary {
    border: 0;
    padding: 0.9375rem 1.25rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.15s var(--easeoutcubic, ease-out),
        background-color 0.15s var(--easeoutcubic, ease-out),
        border-color 0.15s var(--easeoutcubic, ease-out);
}

@media screen and (prefers-reduced-motion: reduce) {
    .rey-commentsBtn.btn.btn-primary {
        transition: none;
    }
}

.rey-pageLinks {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    margin: 2.5rem 0;
    clear: both;
}

.rey-pageLinks > span {
    display: inline-block;
    margin: 0 10px;
}

.rey-pageLinks .post-page-numbers:after {
    display: none;
}

.rey-pageLinks a,
.rey-postNav.comment-navigation a,
.rey-postTags a,
.u-borderedPill {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1;
    padding: 0.625rem 0.875rem;
    background-color: HSL(var(--neutral-0));
    border: 1px solid HSL(var(--neutral-2));
    color: HSL(var(--neutral-8));
    border-radius: 2px;
}

.rey-pageLinks a:hover,
.rey-postNav.comment-navigation a:hover,
.rey-postTags a:hover,
.u-borderedPill:hover {
    text-decoration: none;
    background-color: HSL(var(--neutral-1));
}

.rey-siteContainer.--use-theme-container,
.elementor-page .rey-siteContainer {
    padding-top: 0;
    padding-right: var(--content-padding-right, 0);
    padding-bottom: 0;
    padding-left: var(--content-padding-left, 0);
}

body.elementor-page .rey-siteContainer {
    --content-padding-top: 0px;
    --content-padding-bottom: 0px;
}

.rey-siteContainer.rey-pbTemplate {
    --content-padding-top: 0px;
    --content-padding-bottom: 0px;
}

.elementor-page .rey-pageHeader {
    margin-right: calc(
        var(--content-padding-right, 0px) + var(--main-gutter-size)
    );
    margin-left: calc(
        var(--content-padding-left, 0px) + var(--main-gutter-size)
    );
}

.elementor-page.single-post .rey-siteMain {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: var(--main-gutter-size);
    padding-left: var(--main-gutter-size);
    margin-left: calc(-1 * var(--main-gutter-size));
    margin-right: calc(-1 * var(--main-gutter-size));
}

.elementor-page.single-post .--tpl-template-compact-php .rey-siteMain {
    margin-left: auto;
    margin-right: auto;
}

.elementor[data-disable-padding] :is(.elementor-top-section, .e-con),
.rey-pbTemplate--gs[data-disable-padding] :is(.elementor-top-section, .e-con),
.elementor
    .elementor[data-elementor-type="section"]
    :is(.elementor-top-section, .e-con),
.rey-template
    > .elementor[data-elementor-type]
    :is(.elementor-top-section, .e-con),
.page-template-elementor_canvas
    > .elementor
    :is(.elementor-top-section, .e-con),
.page-template-elementor_header_footer
    > .elementor
    :is(.elementor-top-section, .e-con) {
    --main-gutter-size: 0px;
}

div.product:not(.rey-template) > .elementor,
div.product .elementor-widget-container > .elementor {
    margin-left: calc(-1 * var(--main-gutter-size));
}

.m-auto--top {
    margin-top: auto !important;
}

.m-auto--right {
    margin-right: auto !important;
}

.m-auto--bottom {
    margin-bottom: auto !important;
}

.m-auto--left {
    margin-left: auto !important;
}

.u-ov-hidden > :is(.elementor-widget-container, .elementor-widget-wrap) {
    overflow: hidden;
}

@media (min-width: 1025px) {
    :is(.p-ani--show, .p-ani--slide_in) .elementor-heading-title {
        opacity: 0;
    }
}

@media (min-width: 1025px) {
    .--il--left {
        margin-right: auto;
    }

    .--il--stretch {
        margin-left: auto;
        margin-right: auto;
    }

    .--il--right {
        margin-left: auto;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .--il--tablet-left {
        margin-right: auto;
    }

    .--il--tablet-stretch {
        margin-left: auto;
        margin-right: auto;
    }

    .--il--tablet-right {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .--il--mobile-left {
        margin-right: auto;
    }

    .--il--mobile-stretch {
        margin-left: auto;
        margin-right: auto;
    }

    .--il--mobile-right {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    :is(.elementor-absolute, .elementor-fixed).rey-default-position-yes {
        position: static !important;
    }
}

.elementor-widget-image img[src$=".svg"] {
    width: auto;
    height: auto;
}

.elementor-widget-image :is(.elementor-widget-container, .elementor-image) > a,
.elementor-widget-image
    :is(.elementor-widget-container, .elementor-image)
    figure
    > a {
    display: block;
}

.elementor-heading-title {
    padding: 0;
    margin: 0;
    line-height: 1;
}

.elementor-heading-title a {
    color: inherit;
}

.elementor-button {
    font-weight: var(--btn-fw, 500);
}

.elementor-button.elementor-size-xs {
    --btn-font-size: 13px;
    --btn-padding: 10px 20px;
}

.elementor-button.elementor-size-md {
    --btn-font-size: 16px;
    --btn-padding: 15px 30px;
}

.elementor-button.elementor-size-lg {
    --btn-font-size: 18px;
    --btn-padding: 20px 40px;
}

.elementor-button.elementor-size-xl {
    --btn-font-size: 20px;
    --btn-padding: 25px 50px;
}

.elementor-widget-button:is(
        .elementor-button-underline-hover,
        .elementor-button-underline,
        .elementor-button-underline-1,
        .elementor-button-underline-2
    )
    .elementor-button {
    background-color: var(--btn-bg-color, transparent);
    padding: 0 0 0.45em;
}

.elementor-widget-button .elementor-button-content-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.elementor-headline {
    word-break: normal;
}

.elementor-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.elementor-section .elementor-container {
    --col-gap: calc(2 * var(--half-gutter-size));
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
}

.elementor-section .elementor-column {
    padding-left: var(--column-dir-left, var(--col-gap));
    padding-right: var(--column-dir-right, 0);
}

.rtl .elementor-section .elementor-column {
    --column-dir-left: 0px;
    --column-dir-right: var(--col-gap);
}

.elementor-section .elementor-column > .elementor-element-populated {
    padding: 0;
}

.elementor-column-gap-no {
    --half-gutter-size: var(--zero-px);
}

.elementor-column-gap-narrow {
    --half-gutter-size: 5px;
}

.elementor-column-gap-line {
    --half-gutter-size: 1px;
}

.elementor-column-gap-narrow {
    --half-gutter-size: 5px;
}

.elementor-column-gap-default {
    --half-gutter-size: 15px;
}

.elementor-column-gap-extended {
    --half-gutter-size: 25px;
}

.elementor-column-gap-wide {
    --half-gutter-size: 35px;
}

.elementor-column-gap-wider {
    --half-gutter-size: 50px;
}

.elementor-top-section.rey-section-stretched.elementor-section-boxed
    > .elementor-container {
    max-width: calc(
        var(--container-max-width) + var(--col-gap) - var(--main-gutter-size) *
            2
    );
}

:is(
        .rey-pbTemplate--gs-hfc,
        .rey-pageCover,
        .rey-siteHeader--custom,
        .rey-siteFooter--custom,
        .rey-noSp
    )
    .elementor-top-section.elementor-section-boxed
    > .elementor-container {
    --ec-max-width: calc(
        var(--container-max-width) - (var(--main-gutter-size) * 2)
    );
    --ec-gap: var(--col-gap);
    max-width: calc(
        var(--container-max-width) + var(--col-gap) - var(--main-gutter-size) *
            2
    );
}

.elementor-section .elementor-container {
    margin-left: var(--section-container-dir-left, calc(-1 * var(--col-gap)));
    margin-right: var(--section-container-dir-right, 0);
}

.rtl .elementor-section .elementor-container {
    --section-container-dir-left: 0px;
    --section-container-dir-right: calc(-1 * var(--col-gap));
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: calc(var(--container-max-width) + var(--col-gap));
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--boxed-max-width, var(--container-max-width));
}

@media (min-width: 768px) {
    .elementor-section.elementor-section-height-full {
        height: auto;
        min-height: calc(var(--full-vp-height, 100vh) - var(--admin-bar));
    }

    .elementor-section.elementor-section-height-full > .elementor-container {
        min-height: inherit;
    }
}

.rey-flexWrap > .elementor-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.elementor-top-section {
    margin-right: var(--main-gutter-size);
    margin-left: var(--main-gutter-size);
}

:is(
        .rey-pbTemplate--gs-hfc,
        .rey-pageCover,
        .rey-siteHeader--custom,
        .rey-siteFooter--custom,
        .rey-noSp
    )
    .elementor-top-section {
    padding-right: var(--main-gutter-size);
    padding-left: var(--main-gutter-size);
    margin-left: 0;
    margin-right: 0;
}

.rey-section-stretched {
    --push-back: 0px;
}

:is(
        .rey-siteHeader,
        .rey-siteFooter,
        [data-elementor-gstype]:not(.--do-stretch),
        .rey-pbTemplate--gs,
        [data-elementor-type*="product"],
        [data-elementor-type="archive"],
        [data-elementor-type="single"],
        [data-elementor-type="single-post"],
        .--tpl-elementor_canvas,
        .--tpl-elementor_header_footer,
        .--tpl-template-builder-stretch-php,
        .--tpl-template-canvas-php
    )
    .rey-section-stretched {
    --main-gutter-size: var(--zero-px);
    --strchd-w: 100%;
    --push-back: auto;
}

@media (max-width: 1024px) {
    .rey-section-stretched {
        --push-back: calc(
            -1 * var(--section-left-margin, var(--main-gutter-size))
        );
    }
}

@media (min-width: 1025px) {
    .rey-section-stretched {
        --push-back: calc(
            -1 * (((var(--site-width, 100vw) - var(--container-max-width)) / 2) +
                        var(--section-left-margin, var(--main-gutter-size)))
        );
    }
}

.rtl .rey-section-stretched {
    --push-back: 0px;
    --l-push-back: auto;
    --r-push-back: var(--push-back);
}

@media (max-width: 1024px) {
    .rtl .rey-section-stretched {
        --push-back: calc(
            -1 * var(--section-right-margin, var(--main-gutter-size))
        );
    }
}

@media (min-width: 1025px) {
    .rtl .rey-section-stretched {
        --push-back: calc(
            -1 * (((var(--site-width, 100vw) - var(--container-max-width)) / 2) +
                        var(--section-right-margin, var(--main-gutter-size)))
        );
    }
}

.elementor-top-section.rey-section-stretched {
    left: var(--l-push-back, var(--push-back));
    right: var(--r-push-back, auto);
    width: var(--strchd-w, var(--site-width, 100vw));
}

@media (min-width: 1025px) {
    .rey-pageCover .elementor-top-section.rey-section-stretched {
        right: auto;
        left: auto;
    }
}

.rey-siteContent:is(
        .--tpl-elementor_canvas,
        .--tpl-elementor_header_footer,
        .--tpl-template-builder-stretch-php
    )
    .elementor-top-section,
.rey-siteContent > .elementor[data-elementor-type] .elementor-top-section {
    margin-right: unset;
    margin-left: unset;
}

.rey-siteContent:is(
        .--tpl-elementor_canvas,
        .--tpl-elementor_header_footer,
        .--tpl-template-builder-stretch-php
    )
    .elementor-section-boxed
    > .elementor-container,
.rey-siteContent
    > .elementor[data-elementor-type]
    .elementor-section-boxed
    > .elementor-container {
    max-width: calc(
        var(--container-max-width) + var(--col-gap 0px) -
            var(--main-gutter-size) * 2
    );
}

.column-flex-grow-1 > :is(.elementor-widget-wrap, .elementor-column-wrap) {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.__hamburger {
    position: relative;
    color: inherit;
}

.__hamburger:hover {
    color: inherit;
}

.__hamburger:focus {
    box-shadow: none;
}

.__hamburger:before {
    content: "";
    position: absolute;
    left: -0.3rem;
    top: -0.3rem;
    width: calc(100% + 0.6rem);
    height: calc(100% + 0.6rem);
}

.__hamburger .__bars {
    display: flex;
    flex-direction: column;
    margin-top: calc(-1 * var(--hbg-bars-distance, 4px));
}

.__hamburger span {
    display: var(--hbg-bars-d, block);
    overflow: hidden;
    width: var(--hbg-bars-width, 20px);
    height: var(--hbg-bars-thick, 2px);
    border-radius: var(--hbg-bars-roundness, 4px);
    background-color: currentColor;
    transition: transform 0.3s var(--easeoutcubic, ease-out);
    transition-delay: var(--hbg-bars-trd, 0s);
    transform-origin: var(--hbg-bars-tro, 100% 50%);
    transform: var(--hbg-bars-tr, scaleX(1));
    margin-top: var(--hbg-bars-distance, 4px);
}

.__hamburger span:nth-child(2) {
    transition-delay: var(--hbg-bars-trd, 0.075s);
    width: var(--hbg-bars-w2, var(--hbg-bars-width, 20px));
    transform: var(--hbg-bars-tr2, var(--hbg-bars-tr, scaleX(1)));
}

.__hamburger span:nth-child(3) {
    --hbg-bars-d: var(--hbg-bars-d3, block);
    transition-delay: var(--hbg-bars-trd, 0.15s);
    width: var(--hbg-bars-w3, var(--hbg-bars-width, 20px));
}

.__hamburger .rey-icon-close {
    --stroke-width: 16px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s var(--easeoutcubic, ease-out) 0s;
    transition-property: opacity, transform;
    position: absolute;
    top: calc(50% - 0.5em);
    left: calc(50% - 0.5em);
    transform: rotate(45deg);
    font-size: 0.8em;
}

.__hamburger.--active {
    --hbg-bars-tr: scaleX(0);
}

.__hamburger.--active .rey-icon-close {
    opacity: 1;
    transition-delay: 0.3s;
    transform: rotate(0);
}

:root {
    --woocommerce-summary-size: 36%;
    --woocommerce-products-gutter: 15px;
    --woocommerce-products-gutter-topFactor: 1.3;
    --woocommerce-discount-color: var(--colors-red);
    --woocommerce-swatches-width: 15px;
    --woocommerce-swatches-height: 15px;
    --woocommerce-swatches-padding: 1px;
    --woocommerce-grid-columns: 4;
    --woocommerce-gallery-thumbs-size: 90px;
    --woocommerce-fullscreen-top-padding: calc(
        90px + var(--content-padding-top)
    );
    --header-cart-width: var(--side-panels-mobile-width, 100vw);
    --woocommerce-form-comp-heights: 40px;
    --woocommerce-product-thumbs-radius: 0px;
    --woocommerce-product-img-radius: 0px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    :root {
        --woocommerce-grid-columns: 3;
    }
}

@media (max-width: 767px) {
    :root {
        --woocommerce-grid-columns: 2;
    }
}

@media (min-width: 768px) {
    :root {
        --woocommerce-products-gutter: 30px;
        --header-cart-width: 470px;
    }
}

@media (min-width: 1025px) {
    :root {
        --woocommerce-form-comp-heights: 45px;
        --woocommerce-products-gutter-topFactor: 1.6;
    }
}

.woocommerce img {
    height: auto;
    max-width: 100%;
}

.woocommerce .col2-set {
    display: grid;
    gap: calc(var(--half-gutter-size) * 2);
    grid-template-columns: 1fr;
}

@media (min-width: 1025px) {
    .woocommerce .col2-set {
        grid-template-columns: 1fr 1fr;
    }
}

.products ul,
ul.products {
    list-style: none outside;
}

ul.products {
    --cols: var(--woocommerce-grid-columns, 4);
    --gap: var(--woocommerce-products-gutter);
    --v-gap: var(
        --woocommerce-products-gutter-v,
        calc(var(--gap) * var(--woocommerce-products-gutter-topFactor))
    );
    padding: 0;
    margin: 0;
    display: grid;
    grid-gap: var(--v-gap) var(--gap);
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    grid-auto-flow: row dense;
}

ul.products.--flex,
ul.products.splide__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap);
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    --size: calc(
        (100% + var(--gap)) / (var(--cols) + var(--size-threshold, 0)) -
            var(--gap)
    );
    --prod-f: 0 0 calc(var(--size));
    --prod-mw: calc(var(--size));
}

ul.products.splide__list {
    gap: unset;
    --prod-mr: var(--gap);
}

.rtl ul.products.splide__list {
    --prod-mr: 0;
    --prod-ml: var(--gap);
}

ul.products > .splide__list {
    width: 100%;
}

@media (max-width: 767px) {
    ul.products[data-cols-mobile="1"] {
        --woocommerce-grid-columns: 1;
    }

    ul.products[data-cols-mobile="2"] {
        --woocommerce-grid-columns: 2;
    }

    ul.products[data-cols-mobile="3"] {
        --woocommerce-grid-columns: 3;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    ul.products[data-cols-tablet="1"] {
        --woocommerce-grid-columns: 1;
    }

    ul.products[data-cols-tablet="2"] {
        --woocommerce-grid-columns: 2;
    }

    ul.products[data-cols-tablet="3"] {
        --woocommerce-grid-columns: 3;
    }

    ul.products[data-cols-tablet="4"] {
        --woocommerce-grid-columns: 4;
    }

    ul.products[data-cols-tablet="5"] {
        --woocommerce-grid-columns: 5;
    }
}

@media (min-width: 1025px) {
    ul.products[data-cols="1"] {
        --woocommerce-grid-columns: 1;
    }

    ul.products[data-cols="2"] {
        --woocommerce-grid-columns: 2;
    }

    ul.products[data-cols="3"] {
        --woocommerce-grid-columns: 3;
    }

    ul.products[data-cols="4"] {
        --woocommerce-grid-columns: 4;
    }

    ul.products[data-cols="5"] {
        --woocommerce-grid-columns: 5;
    }

    ul.products[data-cols="6"] {
        --woocommerce-grid-columns: 6;
    }
}

li.product {
    position: relative;
    width: 100%;
    grid-column: span min(var(--cols), var(--colspan-size, 1));
    -webkit-box-flex: var(--prod-f, initial);
    -ms-flex: var(--prod-f, initial);
    flex: var(--prod-f, initial);
    max-width: var(--prod-mw, initial);
    margin-left: var(--prod-ml, initial);
    margin-right: var(--prod-mr, initial);
    text-align: var(--components-align, start);
    color: var(--body-color);
    --components-spacing: 9px;
    --product-links-distance: 0.9375rem;
}

@media (min-width: 1025px) {
    li.product {
        --product-links-distance: 1.5625rem;
        --components-spacing: 15px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) and (min-height: 480px) and (max-height: 768px) {
    li.product {
        --product-links-distance: 0.9375rem;
    }
}

@media (min-width: 1025px) {
    li.product.is-animated-entry {
        opacity: 0;
        -webkit-transform: translateY(50px) scale(0.95);
        transform: translateY(50px) scale(0.95);
        -webkit-transition: opacity 0.3s var(--easeoutcubic, ease-out),
            -webkit-transform 0.3s var(--easeoutcubic, ease-out);
        transition: opacity 0.3s var(--easeoutcubic, ease-out),
            -webkit-transform 0.3s var(--easeoutcubic, ease-out);
        transition: opacity 0.3s var(--easeoutcubic, ease-out),
            transform 0.3s var(--easeoutcubic, ease-out);
        transition: opacity 0.3s var(--easeoutcubic, ease-out),
            transform 0.3s var(--easeoutcubic, ease-out),
            -webkit-transform 0.3s var(--easeoutcubic, ease-out);
    }

    li.product.is-animated-entry.--animated-in {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

li.product:not(.is-animated-entry) {
    max-height: var(--lp-mh, 300px);
    overflow: var(--lp-ov, hidden);
}

li.product:not(.is-animated-entry):before {
    content: "";
    width: 100%;
    display: var(--lp-ds, block);
    height: var(--lp-mh, 300px);
}

@media (min-width: 768px) {
    .woocommerce .rey-siteContainer {
        --sidebar-size: var(--woocommerce-sidebar-size, 16%);
        --sidebar-margin: var(--woocommerce-sidebar-margin, 2%);
    }
}

.woocommerce .button {
    --btn-font-size: 13px;
    --btn-color: var(--accent-text-color);
    --btn-bg-color: var(--accent-color);
    --btn-padding: 0.75em 1.25em;
    --btn-bd-w: 1px;
    --btn-lh: var(--btn-fw, 400);
    --btn-lh: 1.2;
    --btn-br: 2px;
    --btn-color: HSL(var(--neutral-8));
    --btn-bg-color: HSL(var(--neutral-2));
    --btn-ttr: uppercase;
    --btn-lts: 0.5px;
    --btn-padding: 0.75em 1.25rem;
}

.woocommerce .button:hover {
    --btn-color: var(--accent-text-hover-color);
    --btn-bg-color: var(--accent-hover-color);
}

.woocommerce .button:hover {
    --btn-color: HSL(var(--neutral-8));
    --btn-bg-color: HSL(var(--neutral-3));
}

.woocommerce .button.loading {
    opacity: 0.25;
    pointer-events: none;
}

.woocommerce .button.loading-spin {
    opacity: 0.5;
    pointer-events: none;
}

.woocommerce .button.loading-spin:after {
    content: "";
    display: inline-block;
    font-size: 13px;
    width: 1em;
    height: 1em;
    border: 2px solid rgba(0, 0, 0, 0);
    border-bottom-color: currentColor;
    border-right-color: currentColor;
    border-radius: 50%;
    -webkit-animation: spinner-border 0.75s linear infinite;
    animation: spinner-border 0.75s linear infinite;
    -webkit-margin-start: 0.5em;
    margin-inline-start: 0.5em;
}

.woocommerce .button.alt {
    --btn-color: var(--accent-text-color);
    --btn-bg-color: var(--accent-color, HSL(var(--neutral-9)));
}

.woocommerce .button.alt:hover {
    --btn-color: var(--accent-text-hover-color);
    --btn-bg-color: var(--accent-hover-color, HSL(var(--neutral-8)));
}

:is(
        .woocommerce .button:disabled,
        .woocommerce .button.disabled,
        .woocommerce .button:disabled[disabled]
    ) {
    cursor: not-allowed;
    opacity: 0.8;
}

.button.rey-btn--primary {
    --btn-color: var(--accent-text-color);
    --btn-bg-color: var(--accent-color);
}

.button.rey-btn--primary-out {
    --btn-color: var(--accent-color);
    --btn-bg-color: transparent;
    --btn-bd-w: 1px;
    --btn-bd-s: solid;
    margin-bottom: var(--btn-bd-w);
}

.button:is(.rey-btn--under, .rey-btn--hover) {
    --btn-color: var(--link-color);
    --btn-bg-color: transparent;
}

@media (max-width: 767px) {
    .button:is(.rey-btn--under, .rey-btn--hover) {
        --btn-line-size: 1px;
    }
}

.button.rey-btn--clean {
    --btn-bg-color: transparent;
    --btn-padding: 0;
}

.quantity .qty {
    text-align: center;
    min-width: 5rem;
}

.pswp {
    display: none;
}

.pswp--open {
    display: block;
}
