/* blocks/global/css/zz_reset.css */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
hr,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  appearance: none;
  border: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}

/* blocks/global/css/z_acf-style-vars.css */
.acf-style-vars {
  color: var(--color-text, var(--wp--preset--color--black));
  background-color: var(--color-background, transparent);
  padding-top: var(--padding-top, 0);
  padding-right: var(--padding-right, 0);
  padding-bottom: var(--padding-bottom, 0);
  padding-left: var(--padding-left, 0);
  margin-top: var(--margin-top, 0);
  margin-right: var(--margin-right, 0);
  margin-bottom: var(--margin-bottom, 0);
  margin-left: var(--margin-left, 0);
  background-blend-mode: var(--background-blend-mode, normal);
  background-image: var(--background-image, linear-gradient(to var(--background-gradient-direction), var(--background-gradient-start), var(--background-gradient-end)), none);
  background-position: var(--background-position, center);
  background-size: var(--background-size, cover);
  background-repeat: var(--background-repeat, no-repeat);
  position: relative;
  @media (max-width: 768px) {
    padding-top: var(--mobile-padding-top, var(--padding-top, 0));
    padding-right: var(--mobile-padding-right, var(--padding-right, 0));
    padding-bottom: var(--mobile-padding-bottom, var(--padding-bottom, 0));
    padding-left: var(--mobile-padding-left, var(--padding-left, 0));
    margin-top: var(--mobile-margin-top, var(--margin-top, 0));
    margin-right: var(--mobile-margin-right, var(--margin-right, 0));
    margin-bottom: var(--mobile-margin-bottom, var(--margin-bottom, 0));
    margin-left: var(--mobile-margin-left, var(--margin-left, 0));
    background-blend-mode: var(--mobile-background-blend-mode, var(--background-blend-mode, normal));
    background-image: var(--mobile-background-image, var(--background-image, none));
    background-position: var(--mobile-background-position, var(--background-position, cover));
    background-size: var(--mobile-background-size, var(--background-size, cover));
    background-repeat: var(--mobile-background-repeat, var(--background-repeat, no-repeat));
  }
  a:not(.button) {
    color: var(--color-links, inherit);
    &:hover {
      color: var(--color-links_hover, inherit);
    }
  }
  &.has-background-overlay {
    &:before {
      content: "";
      position: absolute;
      pointer-events: none;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--color-overlay, transparent);
      z-index: 1;
      @media (max-width: 768px) {
        background-color: var(--mobile-color-overlay, var(--color-overlay, transparent));
      }
    }
    & > * {
      position: relative;
      z-index: 2;
    }
  }
}

/* blocks/global/css/wrapper.css */
.wrapper {
  max-width: var(--max-width, var(--default-wrapper-width));
  margin: var(--margin, 0 auto);
  @media (max-width:768px) {
    max-width: var(--mobile-max-width, var(--max-width, var(--default-wrapper-width)));
    margin: var(--mobile-margin, var(--margin, 0 auto));
  }
  &.wrapper--default {
    width: var(--default-wrapper-width);
    max-width: calc(100% - var(--default-wrapper-gap));
    margin: 0 auto;
    @media (max-width:768px) {
      max-width: calc(100% - var(--small-wrapper-gap));
      margin: 0 auto;
    }
  }
  &.wrapper--small {
    width: var(--small-wrapper-width);
    max-width: calc(100% - var(--small-wrapper-gap));
    margin: 0 auto;
    @media (max-width:768px) {
      max-width: calc(100% - var(--small-wrapper-gap));
      margin: 0 auto;
    }
  }
}

/* blocks/global/css/wp-wysiwyg-inline.css */
.alignright {
  float: right;
  margin: 1rem 0 1rem 1rem;
}
.alignleft {
  float: left;
  margin: 1rem 1rem 1rem 0;
}
.aligncenter {
  margin: 1rem auto;
  clear: both;
}
.rich-text p,
.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4,
.rich-text h5,
.rich-text h6 {
  span[style^="background-color: "] {
    padding: 0.25rem;
  }
}

/* blocks/global/css/wp-fixes.css */
p.has-background,
h1.has-background,
h2.has-background,
h3.has-background,
h4.has-background,
h5.has-background,
h6.has-background {
  padding: inherit;
}
.post-password-form {
  padding: 4rem 0;
  max-width: 768px;
}
@media (max-width:1100px) {
  #wp-admin-bar-top-secondary {
    display: none !important;
  }
}

/* blocks/global/css/woocommerce.css */
.woocommerce-page main {
  flex: 1;
  width: var(--default-wrapper-width);
  max-width: calc(100% - var(--default-wrapper-gap));
  margin: 0 auto;
}
.woocommerce-Tabs-panel--description {
  & > * + * {
    margin-top: var(--default-rich-text-gap, 1.6rem);
  }
}
.woocommerce div.product form.cart div.quantity .qty {
  width: 100px;
}
.pswp {
  z-index: 99999999;
}

/* blocks/global/css/typography.css */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.font-bold {
  font-weight: bold;
}
.font-normal {
  font-weight: normal;
}
.font-light {
  font-weight: light;
}
.font-weight-100,
.font-weight-thin {
  font-weight: 100;
}
.font-weight-200,
.font-weight-extra-light {
  font-weight: 200;
}
.font-weight-300,
.font-weight-light {
  font-weight: 300;
}
.font-weight-400,
.font-weight-regular {
  font-weight: 400;
}
.font-weight-500,
.font-weight-medium {
  font-weight: 500;
}
.font-weight-600,
.font-weight-semi-bold {
  font-weight: 600;
}
.font-weight-700,
.font-weight-bold {
  font-weight: 700;
}
.font-weight-800,
.font-weight-extra-bold {
  font-weight: 800;
}
.font-weight-900,
.font-weight-black {
  font-weight: 900;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-md {
  font-size: 1.25rem;
}
.text-lg {
  font-size: 2rem;
}
.text-xl {
  font-size: 3rem;
}
.text-xxl {
  font-size: 4rem;
}
.text-size-2 {
  font-size: 0.5rem;
}
.text-size-4 {
  font-size: 1rem;
}
.text-size-6 {
  font-size: 1.5rem;
}
.text-size-8 {
  font-size: 2rem;
}
.text-size-10 {
  font-size: 2.5rem;
}
.text-size-12 {
  font-size: 3rem;
}
.text-size-14 {
  font-size: 3.5rem;
}
.text-size-16 {
  font-size: 4rem;
}
.no-underline {
  text-decoration: none;
}
.underline {
  text-decoration: underline;
}
.inherit {
  color: inherit;
}
.text-size-12px {
  font-size: 12px;
}
.text-size-14px {
  font-size: 14px;
}
.text-size-16px {
  font-size: 16px;
}
.text-size-18px {
  font-size: 18px;
}
.text-size-20px {
  font-size: 20px;
}
.text-size-22px {
  font-size: 22px;
}
.text-size-24px {
  font-size: 24px;
}
.text-size-26px {
  font-size: 26px;
}
.text-size-28px {
  font-size: 28px;
}
.text-size-30px {
  font-size: 30px;
}
.text-size-32px {
  font-size: 32px;
}
.text-size-40px {
  font-size: 40px;
}
.text-size-42px {
  font-size: 42px;
}
.text-size-44px {
  font-size: 44px;
}
.text-size-46px {
  font-size: 46px;
}
.text-size-48px {
  font-size: 48px;
}
.line-height-1 {
  line-height: 1;
}
.line-height-1-125 {
  line-height: 1.125;
}
.line-height-1-2 {
  line-height: 1.2;
}
.line-height-1-3 {
  line-height: 1.3;
}
.line-height-1-4 {
  line-height: 1.4;
}
.line-height-1-5 {
  line-height: 1.5;
}
.line-height-1-6 {
  line-height: 1.6;
}
.line-height-2 {
  line-height: 2;
}
.font-style-normal {
  font-style: normal;
}

/* blocks/global/css/transition-utilities.css */
.ease-in {
  transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
}
.linear {
  transition-timing-function: linear;
}
.duration-75 {
  transition-duration: 75ms;
}
.duration-100 {
  transition-duration: 100ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-250 {
  transition-duration: 250ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}

/* blocks/global/css/text-helpers.css */
.has-text-align-right,
.text-right {
  text-align: right;
}
.has-text-align-left,
.text-left {
  text-align: left;
}
.has-text-align-center,
.text-center {
  text-align: center;
}
.text-nowrap,
.nowrap,
.no-wrap {
  white-space: nowrap;
}
.white-space-pre-line {
  white-space: pre-line;
}
.white-space-pre {
  white-space: pre;
}
.text-overflow-ellipsis,
.text-overflow-ellipse {
  text-overflow: ellipsis;
  overflow: hidden;
}
.text-wrap-balance {
  text-wrap: balance;
}
.text-wrap-pretty {
  text-wrap: pretty;
}
.letter-spacing-xs {
  letter-spacing: -0.05em;
}
.letter-spacing-sm {
  letter-spacing: -0.01em;
}
.letter-spacing-md {
  letter-spacing: 0;
}
.letter-spacing-lg {
  letter-spacing: 0.05em;
}
.letter-spacing-xl {
  letter-spacing: 0.1em;
}
.letter-spacing-2xl {
  letter-spacing: 0.25em;
}

/* blocks/global/css/spacing-utilities.css */
.m-0 {
  margin: 0;
}
.m-1 {
  margin: 0.25rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pr-1 {
  padding-right: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.m-3 {
  margin: 0.75rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.p-3 {
  padding: 0.75rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.m-4 {
  margin: 1rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-4 {
  margin-right: 1rem;
}
.p-4 {
  padding: 1rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-4 {
  padding-right: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.m-5 {
  margin: 1.25rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pr-5 {
  padding-right: 1.25rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.m-6 {
  margin: 1.5rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.p-6 {
  padding: 1.5rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.m-8 {
  margin: 2rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-8 {
  margin-left: 2rem;
}
.mr-8 {
  margin-right: 2rem;
}
.p-8 {
  padding: 2rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pr-8 {
  padding-right: 2rem;
}
.m-12 {
  margin: 3rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.ml-12 {
  margin-left: 3rem;
}
.mr-12 {
  margin-right: 3rem;
}
.p-12 {
  padding: 3rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pr-12 {
  padding-right: 3rem;
}
.m-16 {
  margin: 4rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.ml-16 {
  margin-left: 4rem;
}
.mr-16 {
  margin-right: 4rem;
}
.p-16 {
  padding: 4rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pl-16 {
  padding-left: 4rem;
}
.pr-16 {
  padding-right: 4rem;
}
.m-20 {
  margin: 5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.ml-20 {
  margin-left: 5rem;
}
.mr-20 {
  margin-right: 5rem;
}
.p-20 {
  padding: 5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pl-20 {
  padding-left: 5rem;
}
.pr-20 {
  padding-right: 5rem;
}
.m-24 {
  margin: 6rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.ml-24 {
  margin-left: 6rem;
}
.mr-24 {
  margin-right: 6rem;
}
.p-24 {
  padding: 6rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pl-24 {
  padding-left: 6rem;
}
.pr-24 {
  padding-right: 6rem;
}
.m-28 {
  margin: 7rem;
}
.mt-28 {
  margin-top: 7rem;
}
.mb-28 {
  margin-bottom: 7rem;
}
.ml-28 {
  margin-left: 7rem;
}
.mr-28 {
  margin-right: 7rem;
}
.p-28 {
  padding: 7rem;
}
.pt-28 {
  padding-top: 7rem;
}
.pb-28 {
  padding-bottom: 7rem;
}
.pl-28 {
  padding-left: 7rem;
}
.pr-28 {
  padding-right: 7rem;
}
.m-32 {
  margin: 8rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mb-32 {
  margin-bottom: 8rem;
}
.ml-32 {
  margin-left: 8rem;
}
.mr-32 {
  margin-right: 8rem;
}
.p-32 {
  padding: 8rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pl-32 {
  padding-left: 8rem;
}
.pr-32 {
  padding-right: 8rem;
}
.ml-auto,
.mx-auto {
  margin-left: auto;
}
.mr-auto,
.mx-auto {
  margin-right: auto;
}
.mt-auto,
.my-auto {
  margin-top: auto;
}
.mb-auto,
.my-auto {
  margin-bottom: auto;
}
.m-auto {
  margin: auto;
}
@media (max-width:768px) {
  .mobile\:m-0 {
    margin: 0;
  }
}

/* blocks/global/css/slick-slider.css */
.slick-track {
  display: flex;
  align-items: var(--slide-vertical-alignment, center);
}
.slick-slide {
  margin-left: var(--gap-between-slides, 0);
  margin-right: var(--gap-between-slides, 0);
  height: auto;
  display: flex;
  & > div {
    display: flex;
    width: 100%;
    height: 100%;
  }
}

/* blocks/global/css/sizing-utilities.css */
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.w-auto {
  width: auto;
}
.h-auto {
  height: auto;
}
.w-100vw {
  width: 100vw;
}
.h-100vh {
  height: 100vh;
}
.max-w-full,
.max-w-100 {
  max-width: 100%;
}
.max-h-full,
.max-h-100 {
  max-height: 100%;
}
.min-w-full,
.min-w-100 {
  min-width: 100%;
}
.min-h-full,
.min-h-100 {
  min-height: 100%;
}
.w-1 {
  width: 0.25rem;
}
.w-2 {
  width: 0.5rem;
}
.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.h-1 {
  height: 0.25rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}

/* blocks/global/css/show-hide-helpers.css */
.huge-screen-only {
  @media (max-width:1200px) {
    display: none !important;
  }
}
.large-screen-only {
  @media (max-width:1024px) {
    display: none !important;
  }
}
.desktop-only {
  @media (max-width:768px) {
    display: none !important;
  }
}
.mobile-only {
  @media (min-width:769px) {
    display: none !important;
  }
}
.visually-hidden,
.sr-only {
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/* blocks/global/css/shape-and-emphasis.css */
.circle {
  border-radius: 100%;
}
.strong {
  font-weight: 700;
}

/* blocks/global/css/row-column-grids.css */
.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-left: calc(-1 * calc(var(--gap, 16px) / 2));
  margin-right: calc(-1 * calc(var(--gap, 16px) / 2));
  row-gap: var(--gap, 16px);
}
@media (max-width: 768px) {
  .row--reverse-mobile {
    flex-direction: row-reverse;
  }
  .row--reverse-mobile:has(.col-xs-12) {
    flex-direction: column-reverse;
  }
}
.col {
  padding-left: calc(var(--gap, 16px) / 2);
  padding-right: calc(var(--gap, 16px) / 2);
}
@media (max-width: 768px) {
  .row {
    margin-left: calc(-1 * calc(var(--mobile-gap, var(--gap, 16px)) / 2));
    margin-right: calc(-1 * calc(var(--mobile-gap, var(--gap, 16px)) / 2));
    row-gap: var(--mobile-gap, var(--gap, 16px));
    .col {
      padding-left: calc(var(--mobile-gap, var(--gap, 16px)) / 2);
      padding-right: calc(var(--mobile-gap, var(--gap, 16px)) / 2);
    }
  }
}
.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}
@media (max-width: 500px) {
  .col-xxs-6 {
    flex-basis: 50% !important;
    max-width: 50% !important;
  }
  .col-xxs-12 {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}
.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}
.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}
.col-xs-2 {
  -ms-flex-preferred-size: 16.666%;
  flex-basis: 16.666%;
  max-width: 16.666%;
}
.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}
.col-xs-5 {
  -ms-flex-preferred-size: 41.666%;
  flex-basis: 41.666%;
  max-width: 41.666%;
}
.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}
.col-xs-8 {
  -ms-flex-preferred-size: 66.666%;
  flex-basis: 66.666%;
  max-width: 66.666%;
}
.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}
.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}
.col-xs-11 {
  -ms-flex-preferred-size: 91.666%;
  flex-basis: 91.666%;
  max-width: 91.666%;
}
.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.col-xs-offset-1 {
  margin-left: 8.333%;
}
.col-xs-offset-2 {
  margin-left: 16.666%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-4 {
  margin-left: 33.333%;
}
.col-xs-offset-5 {
  margin-left: 41.666%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-7 {
  margin-left: 58.333%;
}
.col-xs-offset-8 {
  margin-left: 66.666%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-10 {
  margin-left: 83.333%;
}
.col-xs-offset-11 {
  margin-left: 91.666%;
}
.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}
.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}
.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}
.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}
@media only screen and (min-width: 769px) {
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.666%;
    flex-basis: 16.666%;
    max-width: 16.666%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.666%;
    flex-basis: 41.666%;
    max-width: 41.666%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.666%;
    flex-basis: 66.666%;
    max-width: 66.666%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.666%;
    flex-basis: 91.666%;
    max-width: 91.666%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.666%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.666%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.666%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.666%;
  }
  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 993px) {
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.666%;
    flex-basis: 16.666%;
    max-width: 16.666%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.666%;
    flex-basis: 41.666%;
    max-width: 41.666%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.666%;
    flex-basis: 66.666%;
    max-width: 66.666%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.666%;
    flex-basis: 91.666%;
    max-width: 91.666%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.666%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.666%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.666%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.666%;
  }
  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 1201px) {
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.666%;
    flex-basis: 16.666%;
    max-width: 16.666%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.666%;
    flex-basis: 41.666%;
    max-width: 41.666%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.666%;
    flex-basis: 66.666%;
    max-width: 66.666%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.666%;
    flex-basis: 91.666%;
    max-width: 91.666%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.666%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.666%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.666%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.666%;
  }
  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media (min-width: 1600px) {
  .col-xl-4 {
    flex-basis: 33% !important;
    max-width: 33% !important;
  }
}
@media (min-width: 1201px) {
  .col-lg-20-percent {
    flex-basis: 20% !important;
    max-width: 20% !important;
  }
}

/* blocks/global/css/rich-text-helpers.css */
.rich-text {
  &::after {
    content: "";
    clear: both;
    display: block;
  }
  & > * + * {
    margin-top: var(--default-rich-text-gap, 1.6rem);
  }
  & > ul {
    list-style: disc;
    padding-left: 1rem;
    & > li {
      padding-left: 0.25rem;
    }
  }
  & > ol {
    list-style: auto;
    padding-left: 1rem;
    & > li {
      padding-left: 0.5rem;
    }
  }
  & > figure {
    max-width: 100%;
  }
  & > iframe[src*=youtu],
  & > iframe[src*=vimeo],
  & > p > iframe[src*=youtu],
  & > p > iframe[src*=vimeo] {
    aspect-ratio: 16/9;
    height: auto;
    margin-top: 20px;
  }
}

/* blocks/global/css/positioning-utilities.css */
.static {
  position: static;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.t-0 {
  top: 0;
}
.r-0 {
  right: 0;
}
.b-0 {
  bottom: 0;
}
.l-0 {
  left: 0;
}
.t-100 {
  top: 100%;
}
.r-100 {
  right: 100%;
}
.b-100 {
  bottom: 100%;
}
.l-100 {
  left: 100%;
}
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-4 {
  z-index: 4;
}
.z-5 {
  z-index: 5;
}
.z-high {
  z-index: 21474836;
}
.z-very-high {
  z-index: 214748364;
}
.z-max {
  z-index: 2147483646;
}
.z-max-1 {
  z-index: 2147483647;
}
.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.absolute-top-right {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.fill-parent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* blocks/global/css/pagination.css */
.pagination--input {
  &.pagination--current,
  &[disabled] {
    pointer-events: none;
  }
}

/* blocks/global/css/overflow-helpers.css */
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-x-visible {
  overflow-x: visible;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-y-visible {
  overflow-y: visible;
}
.overflow-y-scroll {
  overflow-y: scroll;
}

/* blocks/global/css/outline-opacity.css */
.hover\:outline-solid:hover,
.hover\:outline-solid:focus,
.hover\:outline:hover,
.hover\:outline:focus {
  outline: 1px solid;
}
.outline-0,
.outline-none {
  outline: none;
}
.opacity-0 {
  opacity: 0;
}
.opacity-point-1,
.opacity-1 {
  opacity: 0.1;
}
.opacity-point-2,
.opacity-2 {
  opacity: 0.2;
}
.opacity-point-3,
.opacity-3 {
  opacity: 0.3;
}
.opacity-point-4,
.opacity-4 {
  opacity: 0.4;
}
.opacity-point-5,
.opacity-5 {
  opacity: 0.5;
}
.opacity-point-6,
.opacity-6 {
  opacity: 0.6;
}
.opacity-point-7,
.opacity-7 {
  opacity: 0.7;
}
.opacity-point-8,
.opacity-8 {
  opacity: 0.8;
}
.opacity-point-9,
.opacity-9 {
  opacity: 0.9;
}
.hover\:opacity-0 {
  &:hover,
  &:focus {
    opacity: 0;
  }
}
.hover\:opacity-1 {
  &:hover,
  &:focus {
    opacity: 0.1;
  }
}
.hover\:opacity-2 {
  &:hover,
  &:focus {
    opacity: 0.2;
  }
}
.hover\:opacity-3 {
  &:hover,
  &:focus {
    opacity: 0.3;
  }
}
.hover\:opacity-4 {
  &:hover,
  &:focus {
    opacity: 0.4;
  }
}
.hover\:opacity-5 {
  &:hover,
  &:focus {
    opacity: 0.5;
  }
}
.hover\:opacity-6 {
  &:hover,
  &:focus {
    opacity: 0.6;
  }
}
.hover\:opacity-7 {
  &:hover,
  &:focus {
    opacity: 0.7;
  }
}
.hover\:opacity-8 {
  &:hover,
  &:focus {
    opacity: 0.8;
  }
}
.hover\:opacity-9 {
  &:hover,
  &:focus {
    opacity: 0.9;
  }
}

/* blocks/global/css/order-utilities.css */
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.list-style-none {
  list-style: none;
}

/* blocks/global/css/misc-utilities.css */
.highlight {
  background: rgba(255, 255, 0, 0.35);
}
.arrow-link {
  &:after {
    content: "\2192" / "";
    margin-left: 0.5rem;
    display: inline-block;
    transition: 250ms;
  }
  &:hover:after {
    transform: translateX(10px);
  }
}
.pointer-events-none {
  pointer-events: none;
}
.two-column-list {
  columns: 2;
  column-gap: 2rem;
  li {
    break-inside: avoid;
  }
  @media (max-width: 768px) {
    columns: 1;
  }
}

/* blocks/global/css/loader.css */
.big-loading-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: var(--wp--preset--color--black);
  opacity: 0.25;
  color: transparent;
  &:after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-color: #fff transparent #fff transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: full-page-loader 1.2s linear infinite;
  }
}
@keyframes full-page-loader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* blocks/global/css/layout.css */
.layout {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 0px) 0;
  align-items: var(--alignment, center);
  justify-content: var(--justification, center);
  @media (max-width:768px) {
    flex-wrap: var(--mobile-flex-wrap, wrap);
  }
  & > * {
    width: calc(var(--child-width) - var(--gap, 0px));
    @media (max-width:768px) {
      width: calc(var(--mobile-child-width) - var(--gap, 0px));
    }
    @media (max-width:320px) {
      width: 100%;
    }
  }
}

/* blocks/global/css/image-text-utilities.css */
img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.object-fit-contain {
  object-fit: contain;
}
.object-fit-cover {
  object-fit: cover;
}
.uppercase {
  text-transform: uppercase;
}
.text-transform-none {
  text-transform: none;
}
.brightness-9 {
  filter: brightness(0.9);
}
.brightness-8 {
  filter: brightness(0.8);
}
.brightness-7 {
  filter: brightness(0.7);
}
.brightness-6 {
  filter: brightness(0.6);
}
.brightness-5 {
  filter: brightness(0.5);
}
.brightness-4 {
  filter: brightness(0.4);
}
.brightness-3 {
  filter: brightness(0.3);
}
.brightness-2 {
  filter: brightness(0.2);
}
.brightness-1 {
  filter: brightness(0.1);
}

/* blocks/global/css/hover-focus-animations.css */
.focus\:scale-1:focus,
.focus\:scale-1:hover,
.hover\:scale-1:focus,
.hover\:scale-1:hover {
  transform: scale(1.1);
}
.focus\:scale-child:focus,
.focus\:scale-child:hover,
.hover\:scale-child:focus,
.hover\:scale-child:hover {
  .focus\:scale-1,
  .hover\:scale-1 {
    transform: scale(1.1);
  }
}
.hover\:underline:focus,
.hover\:underline:hover {
  text-decoration: underline;
}
.hover\:no-underline:focus,
.hover\:no-underline:hover {
  text-decoration: none;
}
.hover\:fade:hover,
.hover\:fade:focus {
  opacity: 0.65;
}
.hover\:underline:hover {
  text-decoration: underline;
}
.hover\:animated-underline {
  --animated-underline-color: var(--wp--preset--color--black);
  --animated-underline-height: 1px;
  text-decoration: none;
  background-image: linear-gradient(var(--animated-underline-color), var(--animated-underline-color));
  background-size: 0 var(--animated-underline-height);
  background-position: 0 100%;
  background-repeat: no-repeat;
  &:focus,
  &:hover {
    background-size: 100% var(--animated-underline-height);
  }
}
.hover:outline:hover,
.hover:outline:focus {
  outline: 1px solid;
}

/* blocks/global/css/grid-col-helpers.css */
.twelve-col-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.col-span-1 {
  grid-column: span 1;
}
.col-span-2 {
  grid-column: span 2;
}
.col-span-3 {
  grid-column: span 3;
}
.col-span-4 {
  grid-column: span 4;
}
.col-span-5 {
  grid-column: span 5;
}
.col-span-6 {
  grid-column: span 6;
}
.col-span-7 {
  grid-column: span 7;
}
.col-span-8 {
  grid-column: span 8;
}
.col-span-9 {
  grid-column: span 9;
}
.col-span-10 {
  grid-column: span 10;
}
.col-span-11 {
  grid-column: span 11;
}
.col-span-12 {
  grid-column: span 12;
}
@media (max-width: 1024px) {
  .tablet\:col-span-1 {
    grid-column: span 1;
  }
  .tablet\:col-span-2 {
    grid-column: span 2;
  }
  .tablet\:col-span-3 {
    grid-column: span 3;
  }
  .tablet\:col-span-4 {
    grid-column: span 4;
  }
  .tablet\:col-span-5 {
    grid-column: span 5;
  }
  .tablet\:col-span-6 {
    grid-column: span 6;
  }
  .tablet\:col-span-7 {
    grid-column: span 7;
  }
  .tablet\:col-span-8 {
    grid-column: span 8;
  }
  .tablet\:col-span-9 {
    grid-column: span 9;
  }
  .tablet\:col-span-10 {
    grid-column: span 10;
  }
  .tablet\:col-span-11 {
    grid-column: span 11;
  }
  .tablet\:col-span-12 {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .mobile\:col-span-1 {
    grid-column: span 1;
  }
  .mobile\:col-span-2 {
    grid-column: span 2;
  }
  .mobile\:col-span-3 {
    grid-column: span 3;
  }
  .mobile\:col-span-4 {
    grid-column: span 4;
  }
  .mobile\:col-span-5 {
    grid-column: span 5;
  }
  .mobile\:col-span-6 {
    grid-column: span 6;
  }
  .mobile\:col-span-7 {
    grid-column: span 7;
  }
  .mobile\:col-span-8 {
    grid-column: span 8;
  }
  .mobile\:col-span-9 {
    grid-column: span 9;
  }
  .mobile\:col-span-10 {
    grid-column: span 10;
  }
  .mobile\:col-span-11 {
    grid-column: span 11;
  }
  .mobile\:col-span-12 {
    grid-column: span 12;
  }
}

/* blocks/global/css/font-families.css */
.font-family-main {
  font-family: var(--font-family-main);
}
.font-family-accent {
  font-family: var(--font-family-accent);
}
.font-family-mono {
  font-family: monospace;
}

/* blocks/global/css/flex-utilities.css */
.flex-1 {
  flex: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-11 {
  gap: 2.75rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-13 {
  gap: 3.25rem;
}
.gap-14 {
  gap: 3.5rem;
}
.gap-15 {
  gap: 3.75rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-17 {
  gap: 4.25rem;
}
.gap-18 {
  gap: 4.5rem;
}
.gap-19 {
  gap: 4.75rem;
}
.gap-20 {
  gap: 5rem;
}

/* blocks/global/css/display-helpers.css */
.block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.none {
  display: none;
}

/* blocks/global/css/cursor-utilities.css */
.cursor-auto {
  cursor: auto;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-grab {
  cursor: grab;
}
.cursor-wait {
  cursor: wait;
}
.cursor-move {
  cursor: move;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-text {
  cursor: text;
}
.cursor-crosshair {
  cursor: crosshair;
}
.cursor-help {
  cursor: help;
}

/* blocks/global/css/column-count-utilities.css */
.cols-1 {
  columns: 1;
}
.cols-2 {
  columns: 2;
}
.cols-3 {
  columns: 3;
}
.cols-4 {
  columns: 4;
}
.cols-5 {
  columns: 5;
}
.cols-6 {
  columns: 6;
}
.cols-7 {
  columns: 7;
}
.cols-8 {
  columns: 8;
}
.cols-9 {
  columns: 9;
}
.cols-10 {
  columns: 10;
}
.cols-11 {
  columns: 11;
}
.cols-12 {
  columns: 12;
}
@media (max-width: 768px) {
  .sm\:cols-1 {
    columns: 1;
  }
  .sm\:cols-2 {
    columns: 2;
  }
  .sm\:cols-3 {
    columns: 3;
  }
  .sm\:cols-4 {
    columns: 4;
  }
  .sm\:cols-5 {
    columns: 5;
  }
  .sm\:cols-6 {
    columns: 6;
  }
  .sm\:cols-7 {
    columns: 7;
  }
  .sm\:cols-8 {
    columns: 8;
  }
  .sm\:cols-9 {
    columns: 9;
  }
  .sm\:cols-10 {
    columns: 10;
  }
  .sm\:cols-11 {
    columns: 11;
  }
  .sm\:cols-12 {
    columns: 12;
  }
}

/* blocks/global/css/button.css */
.wp-core-ui .is-root-container .button:not(.acf-block-fields .button),
.button {
  appearance: none;
  display: inline-block;
  text-decoration: none;
  transition: 250ms;
  border: 1px solid;
  background-color: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
  padding: 0.5rem 1rem;
  &:hover,
  &:focus {
    color: var(--wp--preset--color--black);
    background-color: var(--wp--preset--color--white);
    text-decoration: underline;
  }
}
.wp-core-ui .acf-block-preview * ~ .button {
  margin-top: 1.3rem !important;
}

/* blocks/global/css/border-utilities.css */
.br-0 {
  border-radius: 0rem;
}
.br-1 {
  border-radius: 0.25rem;
}
.br-2 {
  border-radius: 0.5rem;
}
.br-3 {
  border-radius: 0.75rem;
}
.br-4 {
  border-radius: 1rem;
}
.br-6 {
  border-radius: 1.5rem;
}
.br-8 {
  border-radius: 2rem;
}
.br-10 {
  border-radius: 2.5rem;
}
.br-12 {
  border-radius: 3rem;
}
.br-50 {
  border-radius: 50%;
}
.border-solid {
  border-style: solid;
}
.border-1 {
  border-width: 1px;
}
.border-top-1 {
  border-top-width: 1px;
}
.border-right-1 {
  border-right-width: 1px;
}
.border-bottom-1 {
  border-bottom-width: 1px;
}
.border-left-1 {
  border-left-width: 1px;
}
.border-top-2 {
  border-top-width: 2px;
}
.border-right-2 {
  border-right-width: 2px;
}
.border-bottom-2 {
  border-bottom-width: 2px;
}
.border-left-2 {
  border-left-width: 2px;
}
.border-2 {
  border-width: 2px;
}
.border-bottom-right-radius-0 {
  border-bottom-right-radius: 0;
}
.border-bottom-left-radius-0 {
  border-bottom-left-radius: 0;
}
.border-top-right-radius-0 {
  border-top-right-radius: 0;
}
.border-top-left-radius-0 {
  border-top-left-radius: 0;
}
.border-top-radius-0 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.border-bottom-radius-0 {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.border-left-radius-0 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.border-right-radius-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.border-3 {
  border-width: 3px;
}
.border-4 {
  border-width: 4px;
}
.border-5 {
  border-width: 5px;
}

/* blocks/global/css/block-gap-helpers.css */
.block-gap--xs {
  display: flex;
  flex-flow: column;
  gap: var(--wp--preset--spacing--20);
}
.block-gap--s {
  display: flex;
  flex-flow: column;
  gap: var(--wp--preset--spacing--30);
}
.block-gap--m {
  display: flex;
  flex-flow: column;
  gap: var(--wp--preset--spacing--40);
}
.block-gap--l {
  display: flex;
  flex-flow: column;
  gap: var(--wp--preset--spacing--50);
}
.block-gap--xl {
  display: flex;
  flex-flow: column;
  gap: var(--wp--preset--spacing--60);
}

/* blocks/global/css/blend-mode-background.css */
.is-style-background-blend-multiply {
  background-blend-mode: multiply;
}
.is-style-background-blend-screen {
  background-blend-mode: screen;
}
.is-style-background-blend-overlay {
  background-blend-mode: overlay;
}
.is-style-background-blend-darken {
  background-blend-mode: darken;
}
.is-style-background-blend-lighten {
  background-blend-mode: lighten;
}
.is-style-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}
.is-style-background-blend-color-burn {
  background-blend-mode: color-burn;
}
.is-style-background-blend-hard-light {
  background-blend-mode: hard-light;
}
.is-style-background-blend-soft-light {
  background-blend-mode: soft-light;
}

/* blocks/global/css/base.css */
:root {
  --font-family-main: var(--wp--preset--font-family--poppins);
  --font-family-accent: var(--wp--preset--font-family--poppins);
  --default-wrapper-width: 1024px;
  --small-wrapper-width: 768px;
  --default-wrapper-gap: 32px;
  --default-rich-text-gap: 1.4rem;
  --gap: 1rem;
}
#wpadminbar {
  position: relative !important;
  z-index: 2147483647;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  margin: 0 !important;
  text-wrap: pretty;
}
#tinymce {
  padding: 1rem;
  font-family: sans-serif;
  & > * + * {
    margin-top: 1.4rem;
  }
}
body:not(#tinymce) {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  & .wp-site-blocks {
    display: flex;
    flex-flow: column;
    width: 100%;
    min-height: 100vh;
  }
}
html,
body,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
input,
select,
textarea,
p,
pre,
code,
blockquote,
ul,
ol,
li,
dl,
dt,
dd,
a,
button,
label,
table,
th,
td {
  font-family: var(--font-family-main);
}
iframe {
  width: 100%;
}
h1,
.h1 {
  font-family: var(--font-family-accent);
  font-size: 3.3rem;
  line-height: 1.3;
}
h2,
.h2 {
  font-family: var(--font-family-accent);
  font-size: 2.5rem;
  line-height: 1.3;
}
h3,
.h3 {
  font-family: var(--font-family-accent);
  font-size: 1.8rem;
  line-height: 1.3;
}
h4,
.h4 {
  font-family: var(--font-family-accent);
  font-size: 1.4rem;
  line-height: 1.3;
}
h5,
.h5 {
  font-family: var(--font-family-accent);
  font-size: 1.2rem;
  line-height: 1.3;
}
h6,
.h6 {
  font-family: var(--font-family-main);
  font-size: 1rem;
  line-height: 1.3;
}
@media (max-width:768px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
  h2,
  .h2 {
    font-size: 2rem;
  }
  h3,
  .h3 {
    font-size: 1.6rem;
  }
  h4,
  .h4 {
    font-size: 1.2rem;
  }
  h5,
  .h5 {
    font-size: 1rem;
  }
  h6,
  .h6 {
    font-size: 0.8rem;
  }
}
p {
  line-height: 1.6;
}
a {
  text-decoration: underline;
  color: inherit;
  transition: 250ms ease-out;
  &:hover {
    text-decoration: none;
  }
}
hr {
  --color: var(--wp--preset--color--black);
  display: block;
  width: 100%;
  border: 0;
  height: 1px;
  background: var(--color);
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
strong,
b {
  font-weight: 700;
}
small {
  font-size: 0.8em;
}
em {
  font-style: italic;
}
sup {
  vertical-align: super;
  font-size: smaller;
}
sub {
  vertical-align: sub;
  font-size: smaller;
}
table {
  &.responsive {
    width: 100%;
    @media (max-width: 768px) {
      thead {
        display: none;
      }
      tr {
        display: block;
        & + tr {
          border-top: 0;
        }
      }
      td {
        display: block;
        border: 0;
        &:before {
          content: attr(th-name);
          display: block;
          font-weight: 700;
        }
      }
      td + td {
        padding-top: 0;
      }
    }
  }
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=date],
input[type=time],
select,
textarea {
  appearance: none;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  &:disabled {
    cursor: no-drop;
    opacity: 0.65;
  }
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 407.437 407.437' style='enable-background:new 0 0 407.437 407.437' xml:space='preserve'%3E%3Cpath d='m386.258 91.567-182.54 181.945L21.179 91.567 0 112.815 203.718 315.87l203.719-203.055z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
  background-size: 18px;
  padding-right: 30px;
}
select[multiple] {
  background-image: none;
}
input[type=reset],
input[type=submit] {
  cursor: pointer;
}
[v-cloak] {
  display: none !important;
}
ada-modal-backdrop {
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.65);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  overflow: auto;
  padding: 5vh 5vw;
}
ada-modal {
  margin: 0 auto auto;
  display: none;
  max-width: 100%;
  button[is=ada-modal-toggler] {
    &:hover,
    &:focus {
      outline: 2px solid;
    }
  }
}
animate-on-scroll {
  display: block;
  &:not([animation=none]) {
    opacity: 0;
  }
}
@media (prefers-reduced-motion) {
  animate-on-scroll {
    opacity: 1 !important;
  }
}
ada-slider:not(:has(.slick-list)) > *:not(:first-child) {
  display: none !important;
}
button[is=ada-slider-page]:not([aria-current]) {
  display: none !important;
}
ada-slider-pagination-text {
  font-family: var(--font-family-main);
}
image-compare button {
  background: #48aed6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.646' height='10.166'%3E%3Cpath fill='%23fff' d='M0 5.083 5.927 0v10.166Z' data-name='Triangle 1'/%3E%3Cpath fill='%23fff' d='m24.646 5.083-5.927 5.083V0Z' data-name='Triangle 1 copy'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
image-compare .image-compare--handle {
  height: 100%;
  width: 9px;
  background: #48aed6;
  position: relative;
}
tool-tip {
  position: relative;
  [role=tooltip] {
    position: absolute;
    color: var(--wp--preset--color--white);
    background: var(--wp--preset--color--black);
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem;
    z-index: 999;
    &:before {
      content: "";
      border-bottom: 10px solid var(--wp--preset--color--black);
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      position: absolute;
      bottom: calc(100% - 1px);
      left: 50%;
      transform: translateX(-50%);
    }
    &:after {
      content: "";
      position: absolute;
      display: block;
      top: -10px;
      left: 0;
      width: 100%;
      height: 10px;
    }
    &.tooltip-above {
      bottom: calc(100% + 0.5rem);
      top: unset;
      &:before {
        top: calc(100% - 1px);
        bottom: unset;
        border-bottom: 0;
        border-top: 10px solid var(--wp--preset--color--black);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
      }
      &:after {
        top: unset;
        bottom: -10px;
      }
    }
    &.tooltip-push-right {
      left: 0;
      transform: none;
      &:before {
        left: 10px;
        transform: none;
      }
    }
    &.tooltip-push-left {
      left: unset;
      right: 0;
      transform: none;
      &:before {
        left: unset;
        right: 10px;
        transform: none;
      }
    }
  }
}
animated-element {
  display: block;
}
seamless-marquee {
  display: flex;
  align-items: center;
}
g-marker {
  display: none;
}

/* blocks/global/css/background-utilities.css */
.bg-cover {
  background-size: cover;
}
.bg-contain {
  background-size: contain;
}
.bg-auto {
  background-size: auto;
}
.bg-center {
  background-position: center;
}
.bg-top {
  background-position: top;
}
.bg-bottom {
  background-position: bottom;
}
.bg-left {
  background-position: left;
}
.bg-right {
  background-position: right;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.bg-repeat {
  background-repeat: repeat;
}
.bg-repeat-x {
  background-repeat: repeat-x;
}
.bg-repeat-y {
  background-repeat: repeat-y;
}
.bg-repeat-round {
  background-repeat: round;
}
.bg-repeat-space {
  background-repeat: space;
}

/* blocks/global/css/aspect-ratio.css */
.aspect-ratio-21-9 {
  aspect-ratio: 21/9;
}
.aspect-ratio-16-9 {
  aspect-ratio: 16/9;
}
.aspect-ratio-4-3 {
  aspect-ratio: 4/3;
}
.aspect-ratio-3-4 {
  aspect-ratio: 3/4;
}
.aspect-ratio-1 {
  aspect-ratio: 1;
}

/* blocks/components/video/video.css */
.video-component {
  .video-component--play-button {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    &:hover {
      transform: translate(-50%, -50%) scale(1.1);
    }
  }
}

/* blocks/components/slider-alt/slider-alt.css */
.slider-alt {
  padding: 0 1.5rem;
  button[is=ada-slider-next],
  button[is=ada-slider-prev] {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 1rem;
    &.no-icon:before {
      content: "";
      border-right: 2px solid;
      border-bottom: 2px solid;
      display: block;
      height: 42%;
      position: relative;
      width: 42%;
    }
  }
  button[is=ada-slider-prev] {
    left: -1.5rem;
    &:before {
      left: 8%;
      transform: rotate(135deg);
    }
  }
  button[is=ada-slider-next] {
    right: -1.5rem;
    &:before {
      left: -3%;
      transform: rotate(-45deg);
    }
  }
  button[is=ada-slider-page] {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 100%;
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--wp--preset--color--black);
    background: var(--wp--preset--color--white);
    &:hover,
    &:focus,
    &[aria-current=true] {
      background: var(--wp--preset--color--black);
    }
  }
}
@media (max-width: 768px) {
  .slider-alt {
    button[is=ada-slider-next],
    button[is=ada-slider-prev],
    button[is=ada-slider-page] {
      width: 2rem;
      height: 2rem;
    }
  }
}
.slider-alt--image-caption {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* blocks/components/slider/slider.css */
.slider {
  button[is=ada-slider-prev] {
    position: relative;
    left: 0.5rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(135deg);
    @media (max-width:768px) {
      width: 2rem;
      height: 2rem;
    }
  }
  button[is=ada-slider-next] {
    position: relative;
    right: 0.5rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    @media (max-width:768px) {
      width: 2rem;
      height: 2rem;
    }
  }
  button[is=ada-slider-page] {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 100%;
    width: 1rem;
    height: 1rem;
    border: 2px solid;
    background: var(--wp--preset--color--white);
    &:hover,
    &:focus,
    &[aria-current=true] {
      background: var(--wp--preset--color--black);
    }
    @media (max-width:768px) {
      width: 2rem;
      height: 2rem;
    }
  }
}

/* blocks/components/share/share.css */
.share {
  button[is=ada-toggler] {
    &:hover,
    &:focus {
      text-decoration: underline;
    }
  }
}

/* blocks/components/favorite-button/favorite-button.css */
button[is=favorite-post] {
  color: pink;
  display: inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  &:hover,
  &:focus {
    background: pink;
    color: red;
    outline: 2px dashed;
  }
  &.favorited {
    .favorited {
      display: flex;
    }
    .not-favorited {
      display: none;
    }
  }
  .favorited {
    display: none;
  }
  .not-favorited {
    display: flex;
  }
}

/* blocks/components/calendar/calendar.css */
.cool-calendar {
  --calendar-border-color: #ccc;
  --calendar-ignore-opacity: 0.35;
  --calendar-mobile-indicator-color: black;
  --calendar-mobile-indicator-active-color: white;
  --border-width: 1px;
  display: flex;
  flex-flow: wrap;
}
.cool-calendar--cell {
  display: flex;
  flex-flow: column;
  width: calc(100% / 7);
  border-right: var(--border-width) solid var(--calendar-border-color);
  border-bottom: var(--border-width) solid var(--calendar-border-color);
}
.cool-calendar--heading {
  border-top: var(--border-width) solid var(--calendar-border-color);
}
.cool-calendar--ignore {
  opacity: var(--calendar-ignore-opacity);
}
.cool-calendar--cell:nth-of-type(7n+1) {
  border-left: var(--border-width) solid var(--calendar-border-color);
}

/* blocks/components/background-video/background-video.css */
.background-video {
  pointer-events: none;
  min-width: 100vw;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: none;
  width: auto;
}
*:has(> .background-video) {
  position: relative;
  overflow: hidden;
  & > *:not(.background-video) {
    position: relative;
    z-index: 2;
  }
}

/* blocks/components/accordion/accordion.css */
.accordion-component {
  button[is=ada-toggler] {
    &:after {
      content: "+" / "";
      display: block;
      font-size: 1.5rem;
      margin-left: 0.5rem;
    }
    &[aria-expanded=true]:after {
      content: "-" / "";
    }
  }
}

/* blocks/gutenberg/stats/stats.css */

/* blocks/gutenberg/tabs/tabs.css */
.tabs {
  .wrapper {
    border: 2px solid var(--wp--preset--color--black);
  }
  .tabs--controls {
    align-items: stretch;
  }
  button[is=ada-toggler] {
    background: var(--wp--preset--color--white);
    color: var(--wp--preset--color--black);
    border-radius: 0;
    border-bottom: 2px solid var(--wp--preset--color--black);
    &[aria-selected=true] {
      background: var(--wp--preset--color--black) !important;
      border-color: var(--wp--preset--color--black) !important;
      color: var(--wp--preset--color--white) !important;
      text-decoration: underline;
    }
  }
}
@media (max-width: 768px) {
  .tabs {
    .tabs--controls {
      flex-direction: column;
    }
    .tabs--content {
      padding: 20px 35px 35px;
    }
  }
}
.wp-core-ui .acf-block-preview .tabs * ~ .button[is=ada-toggler] {
  margin-top: 0 !important;
}

/* blocks/gutenberg/spacer/spacer.css */
.spacer {
  height: var(--desktop-height, 0);
  @media (max-width: 1024px) {
    height: var(--tablet-height, var(--desktop-height, 0));
  }
  @media (max-width: 768px) {
    height: var(--mobile-height, var(--tablet-height, var(--desktop-height, 0)));
  }
}

/* blocks/components/breadcrumbs/breadcrumbs.css */
.breadcrumbs li {
  max-width: var(--breadcrumb-max-width, 9999px);
}

/* blocks/gutenberg/main-footer/main-footer.css */
.main-footer {
  margin-top: auto;
}

/* blocks/gutenberg/main-search/main-search.css */
.main-search {
  form {
    button[type=submit] {
      &:hover,
      &:focus {
        outline: 2px solid var(--wp--preset--color--blue);
      }
    }
  }
}

/* blocks/gutenberg/image/image.css */
.wp-block-acf-image .wrapper[style*="--max-width:100%"] .image {
  width: 100%;
}

/* blocks/gutenberg/columns/columns.css */
@media (max-width:768px) {
  .columns > div > .row.reverse-on-mobile {
    flex-wrap: wrap-reverse;
  }
}

/* blocks/components/share/toggle/toggle.css */
.share.type-toggle {
  .share--content {
    background: white;
    border: 2px solid;
    padding: 5px;
    position: absolute;
    top: 100%;
    right: 0;
    width: 238px;
  }
}

/* blocks/components/share/modal/modal.css */
.share--content.modal {
  background: white;
  padding: 40px 20px 20px;
  position: relative;
  button[is=ada-modal-toggler] {
    line-height: 1;
    text-align: right;
    position: absolute;
    top: 0;
    right: 5px;
  }
}

/* blocks/components/share/links/links.css */
.share--links {
  a.share--link {
    .copied-notice {
      bottom: calc(100% + 1rem);
      background: white;
      box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.25);
      opacity: 0;
      transition: opacity 250ms;
      &.active {
        opacity: 1;
      }
    }
  }
  a {
    outline-offset: 2px;
  }
}

/* blocks/gutenberg/main-header/main-menu/main-menu.css */
.main-menu {
  --sub-menu-background-color: var(--wp--preset--color--gray);
  --sub-menu-desktop-width: 280px;
  --nav-mobile-background-color: var(--wp--preset--color--white);
  & > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 99;
  }
  [ada-menu--toggle-indicator] {
    pointer-events: none;
    &:after {
      content: "+" / "";
      margin-left: 0.5rem;
      display: inline-block;
    }
    [aria-expanded=true] &:after {
      transform: rotate(45deg);
    }
  }
  .menu-item.menu-item-has-children {
    position: relative;
  }
  .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-flow: column;
    background: var(--sub-menu-background-color);
    width: var(--sub-menu-desktop-width);
    &.push-left {
      left: unset !important;
      right: 0 !important;
    }
    .sub-menu {
      top: 0;
      left: 100%;
      &.push-left {
        left: unset !important;
        right: 100% !important;
      }
    }
  }
}
@media (max-width:768px) {
  .main-menu {
    display: none;
    width: 100vw;
    position: absolute;
    top: 100%;
    background: var(--nav-mobile-background-color);
    z-index: 99999;
    left: 0;
    overflow: auto;
    padding-bottom: 100px;
    & > ul {
      flex-flow: column;
      align-items: stretch;
    }
    .sub-menu {
      position: static;
      width: 100%;
    }
  }
}

/* blocks/gutenberg/main-header/main-menu-button/main-menu-button.css */
button[ada-menu--nav-toggler][aria-controls=main-menu] {
  --span-spacing: 3px;
  --span-height: 4px;
  --span-border-radius: 8px;
  --span-width: 36px;
  --color: var(--wp--preset--color--black);
  width: var(--span-width);
  height: calc(var(--span-height) * 1 + var(--span-spacing) * 6);
  position: relative;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
  cursor: pointer;
  display: none;
  @media (prefers-reduced-motion) {
    transition: none !important;
    span {
      transition: none !important;
    }
  }
  span {
    display: block;
    position: absolute;
    height: var(--span-height);
    width: 100%;
    background: var(--color);
    border-radius: var(--span-border-radius);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    &:nth-child(1) {
      top: calc(var(--span-spacing) * 0);
    }
    &:nth-child(2),
    &:nth-child(3) {
      top: calc(var(--span-spacing) * 3);
    }
    &:nth-child(4) {
      top: calc(var(--span-spacing) * 6);
    }
  }
  &[aria-expanded=true] span:nth-child(1) {
    top: calc(var(--span-spacing) * 3);
    width: 0%;
    left: 50%;
  }
  &[aria-expanded=true] span:nth-child(2) {
    transform: rotate(45deg);
  }
  &[aria-expanded=true] span:nth-child(3) {
    transform: rotate(-45deg);
  }
  &[aria-expanded=true] span:nth-child(4) {
    top: calc(var(--span-spacing) * 3);
    width: 0%;
    left: 50%;
  }
}
button[ada-menu--nav-toggler][aria-controls=main-menu] {
  @media (max-width:768px) {
    display: block;
  }
}

/* blocks/gutenberg/main-footer/back-to-top/back-to-top.css */
.back-to-top {
  transform: translateY(100%);
  &.show {
    transform: none;
  }
}

/* blocks/gutenberg/basic-image-grid/image/image.css */
.basic-image-grid--image {
  grid-column: span var(--grid-span);
  @media (max-width: 768px) {
    grid-column: span var(--mobile-grid-span);
  }
}

/* blocks/gutenberg/columns/column/column.css */
.column {
  animate-on-scroll {
    background-color: var(--background-color);
    color: var(--text-color);
  }
  a:not(.button) {
    color: var(--link-color);
  }
  .column--image {
    aspect-ratio: var(--image-aspect-ratio);
  }
}
.align-stretch .column animate-on-scroll {
  height: 100%;
}

/* temp.css */
/*# sourceMappingURL=style.css.map */
