/**
 * Base
 * - Reset the browser
 */
body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

* {
  box-sizing: border-box;
}

/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
/**
 * Breakpoints & Media Queries
 */
@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .tk-theme-frontend .l-desktop-only {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .tk-theme-frontend .l-above-mobile-only {
    display: none !important;
  }
  .mobile-text-align-left {
    text-align: left !important;
  }
  .mobile-is-content-justification-left {
    justify-content: flex-start !important;
  }
  .l-columns-vertical-spacing--mobile .wp-block-column + .wp-block-column {
    margin-top: 30px;
  }
}

@media (max-width: 991px) and (hover: none) {
  .tk-theme-frontend .l-tablet-portrait-above {
    display: none !important;
  }
  .on-tablet-portrait-text-align-left {
    text-align: left !important;
  }
  .wp-block-buttons.button-align-on-tablet-portrait---left {
    justify-content: flex-start;
  }
  .wp-block-buttons.button-align-on-tablet-portrait---left.is-vertical {
    align-items: flex-start;
  }
  .wp-block-buttons.button-align-on-tablet-portrait---center {
    justify-content: center;
  }
  .wp-block-buttons.button-align-on-tablet-portrait---center.is-vertical {
    align-items: center;
  }
  .wp-block-buttons.button-align-on-tablet-portrait---right {
    justify-content: flex-end;
  }
  .wp-block-buttons.button-align-on-tablet-portrait---right.is-vertical {
    align-items: flex-end;
  }
}

@media (min-width: 1025px) and (hover: hover) {
  .tk-theme-frontend .l-touch-only {
    display: none !important;
  }
}

@media (min-width: 601px) and (orientation: portrait), (min-width: 992px) and (orientation: landscape) {
  .tk-theme-frontend .l-mobile-only {
    display: none !important;
  }
}

.l-center-margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.background-color--transparent {
  background-color: transparent !important;
}

.padding--horizontal-default {
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 600px) {
  .padding--horizontal-default {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .no-padding--horizontal-on-touch {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .wp-block-buttons.button-align-on-touch--left {
    justify-content: flex-start;
  }
  .wp-block-buttons.button-align-on-touch--left.is-vertical {
    align-items: flex-start;
  }
  .wp-block-buttons.button-align-on-touch--center {
    justify-content: center;
  }
  .wp-block-buttons.button-align-on-touch--center.is-vertical {
    align-items: center;
  }
  .wp-block-buttons.button-align-on-touch--right {
    justify-content: flex-end;
  }
  .wp-block-buttons.button-align-on-touch--right.is-vertical {
    align-items: flex-end;
  }
}

@media (max-width: 600px) {
  .no-padding--horizontal-on-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.clear:before, .clear:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after {
  clear: both;
}

@media (max-width: 600px) {
  .wp-block-buttons.button-align-on-mobile--left {
    justify-content: flex-start;
  }
  .wp-block-buttons.button-align-on-mobile--left.is-vertical {
    align-items: flex-start;
  }
  .wp-block-buttons.button-align-on-mobile--center {
    justify-content: center;
  }
  .wp-block-buttons.button-align-on-mobile--center.is-vertical {
    align-items: center;
  }
  .wp-block-buttons.button-align-on-mobile--right {
    justify-content: flex-end;
  }
  .wp-block-buttons.button-align-on-mobile--right.is-vertical {
    align-items: flex-end;
  }
  .l-mobile-padding,
  body .wp-block-columns:not(.is-not-stacked-on-mobile) > .l-mobile-padding {
    padding: 40px 30px !important;
  }
  .l-mobile-padding--top,
  body .wp-block-columns:not(.is-not-stacked-on-mobile) > .l-mobile-padding--top {
    padding-top: 40px !important;
  }
  .l-mobile-padding--bottom,
  body .wp-block-columns:not(.is-not-stacked-on-mobile) > .l-mobile-padding--bottom {
    padding-bottom: 40px !important;
  }
}

.l-no-margin-top,
[class*="wp-block"].l-no-margin-top {
  margin-top: 0 !important;
}

.l-no-margin-bottom,
[class*="wp-block"].l-no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-padding--top,
[class*="wp-block"].no-padding--top {
  padding-top: 0 !important;
}

.no-padding--bottom,
[class*="wp-block"].no-padding--bottom {
  padding-bottom: 0 !important;
}

.no-padding--horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.postion--relative {
  position: relative;
}

.add-bullet {
  position: relative;
  padding-left: 1.8em;
}

.add-bullet:before {
  content: "\00b7";
  font-size: 5em;
  line-height: 0;
  position: absolute;
  top: 0.01em;
  left: 0;
}

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

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

.list-style-checkmark li {
  padding-left: 2em;
  position: relative;
}

.list-style-checkmark li:before {
  background-color: var(--wp--custom--color--secondary);
  border-radius: 2em;
  box-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.1);
  color: var(--wp--custom--color--primary);
  font-size: 0.5em;
  padding: 0.5em;
  position: absolute;
  top: 0.7em;
  left: 0;
  vertical-align: middle;
}

.l-no-gap {
  gap: 0 !important;
}

.is-nowrap {
  white-space: nowrap;
}

.wp-block-columns--with-border > .wp-block-column {
  border: 1px solid;
  border-color: var(--wp--custom--color--selection);
}

@media (min-width: 992px) {
  .wp-block-columns--with-border > .wp-block-column:not(:last-of-type) {
    border-right-width: 0;
  }
  .wp-block-columns--with-border + .wp-block-columns--with-border > .wp-block-column {
    border-top-width: 0;
  }
}

.l-flex--space-between {
  justify-content: space-between;
}

@font-face {
  font-family: 'icomoon';
  src: url("icons/icomoon.eot?ihm5n9");
  src: url("icons/icomoon.eot?ihm5n9#iefix") format("embedded-opentype"), url("icons/icomoon.ttf?ihm5n9") format("truetype"), url("icons/icomoon.woff?ihm5n9") format("woff"), url("icons/icomoon.svg?ihm5n9#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"],
.list-style-checkmark li:before,
.is-style-button-arrow.wp-block-button__link:after,
.is-style-button-arrow .wp-block-button__link:after,
.is-style-button-arrow-plain.wp-block-button__link:after,
.is-style-button-arrow-plain .wp-block-button__link:after,
.nextend-arrow:before,
#slyPrev a:before,
#slyNext a:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before,
.is-style-button-arrow.wp-block-button__link:after,
.is-style-button-arrow .wp-block-button__link:after,
.is-style-button-arrow-plain.wp-block-button__link:after,
.is-style-button-arrow-plain .wp-block-button__link:after,
.nextend-arrow:before,
#slyPrev a:before,
#slyNext a:before {
  content: "\e900";
}

.icon-checkmark:before,
.list-style-checkmark li:before {
  content: "\e901";
}

@font-face {
  font-family: 'Gambarino';
  src: url("fonts/Gambarino-Regular/Gambarino-Regular.woff2") format("woff2"), url("fonts/Gambarino-Regular/Gambarino-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'GeneralSans';
  src: url("fonts/GeneralSans-Regular/GeneralSans-Regular.woff2") format("woff2"), url("fonts/GeneralSans-Regular/GeneralSans-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'GeneralSans';
  src: url("fonts/GeneralSans-Italic/GeneralSans-Italic.woff2") format("woff2"), url("fonts/GeneralSans-Italic/GeneralSans-Italic.woff") format("woff");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: 'GeneralSans';
  src: url("fonts/GeneralSans-Medium/GeneralSans-Medium.woff2") format("woff2"), url("fonts/GeneralSans-Medium/GeneralSans-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'GeneralSans';
  src: url("fonts/GeneralSans-MediumItalic/GeneralSans-MediumItalic.woff2") format("woff2"), url("fonts/GeneralSans-MediumItalic/GeneralSans-MediumItalic.woff") format("woff");
  font-style: italic;
  font-weight: 500;
}

@font-face {
  font-family: 'GeneralSans';
  src: url("fonts/GeneralSans-Semibold/GeneralSans-Semibold.woff2") format("woff2"), url("fonts/GeneralSans-Semibold/GeneralSans-Semibold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'GeneralSans';
  src: url("fonts/GeneralSans-SemiboldItalic/GeneralSans-SemiboldItalic.woff2") format("woff2"), url("fonts/GeneralSans-SemiboldItalic/GeneralSans-SemiboldItalic.woff") format("woff");
  font-style: italic;
  font-weight: 600;
}

@font-face {
  font-family: 'GeneralSans';
  src: url("fonts/GeneralSans-Bold/GeneralSans-Bold.woff2") format("woff2"), url("fonts/GeneralSans-Bold/GeneralSans-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'GeneralSans';
  src: url("fonts/GeneralSans-BoldItalic/GeneralSans-BoldItalic.woff2") format("woff2"), url("fonts/GeneralSans-BoldItalic/GeneralSans-BoldItalic.woff") format("woff");
  font-style: italic;
  font-weight: 700;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-Book/Gotham-Book.woff2") format("woff2"), url("fonts/Gotham-Book/Gotham-Book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-BookItalic/Gotham-BookItalic.woff2") format("woff2"), url("fonts/Gotham-BookItalic/Gotham-BookItalic.woff") format("woff");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-Medium/Gotham-Medium.woff2") format("woff2"), url("fonts/Gotham-Medium/Gotham-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-MediumItalic/Gotham-MediumItalic.woff2") format("woff2"), url("fonts/Gotham-MediumItalic/Gotham-MediumItalic.woff") format("woff");
  font-style: italic;
  font-weight: 500;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-Bold/Gotham-Bold.woff2") format("woff2"), url("fonts/Gotham-Bold/Gotham-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-BoldItalic/Gotham-BoldItalic.woff2") format("woff2"), url("fonts/Gotham-BoldItalic/Gotham-BoldItalic.woff") format("woff");
  font-style: italic;
  font-weight: 700;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-Black/Gotham-Black.woff2") format("woff2"), url("fonts/Gotham-Black/Gotham-Black.woff") format("woff");
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-BlackItalic/Gotham-BlackItalic.woff2") format("woff2"), url("fonts/Gotham-BlackItalic/Gotham-BlackItalic.woff") format("woff");
  font-style: italic;
  font-weight: 900;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-Ultra/Gotham-Ultra.woff2") format("woff2"), url("fonts/Gotham-Ultra/Gotham-Ultra.woff") format("woff");
  font-style: normal;
  font-weight: 950;
}

@font-face {
  font-family: 'Gotham';
  src: url("fonts/Gotham-UltraItalic/Gotham-UltraItalic.woff2") format("woff2"), url("fonts/Gotham-UltraItalic/Gotham-UltraItalic.woff") format("woff");
  font-style: italic;
  font-weight: 950;
}

@font-face {
  font-family: 'Hauora';
  src: url("fonts/Hauora-Light/Hauora-Light.woff2") format("woff2"), url("fonts/Hauora-Light/Hauora-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Hauora';
  src: url("fonts/Hauora-Regular/Hauora-Regular.woff2") format("woff2"), url("fonts/Hauora-Regular/Hauora-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Hauora';
  src: url("fonts/Hauora-Medium/Hauora-Medium.woff2") format("woff2"), url("fonts/Hauora-Medium/Hauora-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Hauora';
  src: url("fonts/Hauora-SemiBold/Hauora-SemiBold.woff2") format("woff2"), url("fonts/Hauora-SemiBold/Hauora-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'Hauora';
  src: url("fonts/Hauora-Bold/Hauora-Bold.woff2") format("woff2"), url("fonts/Hauora-Bold/Hauora-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'Krylon';
  src: url("fonts/Krylon-Regular/Krylon-Regular.woff2") format("woff2"), url("fonts/Krylon-Regular/Krylon-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'MeshedDisplay';
  src: url("fonts/MeshedDisplay-ExtraLight/MeshedDisplay-ExtraLight.woff2") format("woff2"), url("fonts/MeshedDisplay-ExtraLight/MeshedDisplay-ExtraLight.woff") format("woff");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'MeshedDisplay';
  src: url("fonts/MeshedDisplay-ExtLtSlant/MeshedDisplay-ExtLtSlant.woff2") format("woff2"), url("fonts/MeshedDisplay-ExtLtSlant/MeshedDisplay-ExtLtSlant.woff") format("woff");
  font-style: italic;
  font-weight: 300;
}

@font-face {
  font-family: 'MeshedDisplay';
  src: url("fonts/MeshedDisplay-Regular/MeshedDisplay-Regular.woff2") format("woff2"), url("fonts/MeshedDisplay-Regular/MeshedDisplay-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'MeshedDisplay';
  src: url("fonts/MeshedDisplay-Medium/MeshedDisplay-Medium.woff2") format("woff2"), url("fonts/MeshedDisplay-Medium/MeshedDisplay-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Satoshi';
  src: url("fonts/Satoshi-Regular/Satoshi-Regular.woff2") format("woff2"), url("fonts/Satoshi-Regular/Satoshi-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Satoshi';
  src: url("fonts/Satoshi-Italic/Satoshi-Italic.woff2") format("woff2"), url("fonts/Satoshi-Italic/Satoshi-Italic.woff") format("woff");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: 'Satoshi';
  src: url("fonts/Satoshi-Medium/Satoshi-Medium.woff2") format("woff2"), url("fonts/Satoshi-Medium/Satoshi-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Satoshi';
  src: url("fonts/Satoshi-MediumItalic/Satoshi-MediumItalic.woff2") format("woff2"), url("fonts/Satoshi-MediumItalic/Satoshi-MediumItalic.woff") format("woff");
  font-style: italic;
  font-weight: 500;
}

@font-face {
  font-family: 'Satoshi';
  src: url("fonts/Satoshi-Bold/Satoshi-Bold.woff2") format("woff2"), url("fonts/Satoshi-Bold/Satoshi-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'Satoshi';
  src: url("fonts/Satoshi-BoldItalic/Satoshi-BoldItalic.woff2") format("woff2"), url("fonts/Satoshi-BoldItalic/Satoshi-BoldItalic.woff") format("woff");
  font-style: italic;
  font-weight: 700;
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .has-regular-font-size {
    font-size: 18px !important;
  }
}

@media (max-width: 600px) {
  .has-gigantic-font-size {
    font-size: 42px !important;
    letter-spacing: -0.1rem !important;
  }
  .has-larger-font-size {
    font-size: 32px !important;
  }
  .has-regular-font-size {
    font-size: 16px !important;
  }
  .has-extra-large-font-size {
    font-size: 26px !important;
  }
}

.wp-site-blocks,
.is-root-container {
  padding-left: var(--wp--custom--gap--horizontal);
  padding-right: var(--wp--custom--gap--horizontal);
}

@media (max-width: 991px) and (hover: none) {
  .wp-site-blocks,
  .is-root-container {
    --wp--custom--gap--horizontal: 30px !important;
  }
}

.wp-site-blocks .alignfull,
.is-root-container .alignfull {
  margin-left: calc(-1 * var(--wp--custom--gap--horizontal)) !important;
  margin-right: calc(-1 * var(--wp--custom--gap--horizontal)) !important;
  width: unset;
}

@media (max-width: 991px) and (hover: none) {
  .wp-site-blocks .alignfull.wp-block-separator,
  .is-root-container .alignfull.wp-block-separator {
    padding: 0;
  }
  .wp-site-blocks .alignfull.wp-block-media-text,
  .is-root-container .alignfull.wp-block-media-text {
    grid-template-columns: 100% !important;
  }
  .wp-site-blocks .alignfull.wp-block-media-text .wp-block-media-text__content,
  .wp-site-blocks .alignfull.wp-block-media-text .wp-block-media-text__media,
  .is-root-container .alignfull.wp-block-media-text .wp-block-media-text__content,
  .is-root-container .alignfull.wp-block-media-text .wp-block-media-text__media {
    grid-column: 1;
  }
  .wp-site-blocks .alignfull.wp-block-media-text .wp-block-media-text__content:first-child,
  .wp-site-blocks .alignfull.wp-block-media-text .wp-block-media-text__media:first-child,
  .is-root-container .alignfull.wp-block-media-text .wp-block-media-text__content:first-child,
  .is-root-container .alignfull.wp-block-media-text .wp-block-media-text__media:first-child {
    grid-row: 1;
  }
  .wp-site-blocks .alignfull.wp-block-media-text .wp-block-media-text__content:last-child,
  .wp-site-blocks .alignfull.wp-block-media-text .wp-block-media-text__media:last-child,
  .is-root-container .alignfull.wp-block-media-text .wp-block-media-text__content:last-child,
  .is-root-container .alignfull.wp-block-media-text .wp-block-media-text__media:last-child {
    grid-row: 2;
  }
}

.wp-site-blocks .alignfull.wp-block-template-part, .wp-site-blocks .alignfull.wp-block-columns, .wp-site-blocks .alignfull.wp-block-group,
.is-root-container .alignfull.wp-block-template-part,
.is-root-container .alignfull.wp-block-columns,
.is-root-container .alignfull.wp-block-group {
  padding-left: var(--wp--custom--gap--horizontal);
  padding-right: var(--wp--custom--gap--horizontal);
}

.edit-post-visual-editor__post-title-wrapper + .is-root-container > *:not(.alignfull):not(.alignwide) {
  max-width: 800px;
}

.block-editor-block-list__layout.is-root-container {
  padding-left: var(--wp--custom--gap--horizontal);
  padding-right: var(--wp--custom--gap--horizontal);
}

.block-editor-block-list__layout.is-root-container .wp-block[data-align="full"],
.block-editor-block-list__layout.is-root-container .alignfull {
  margin-left: calc(-1 * var(--wp--custom--gap--horizontal)) !important;
  margin-right: calc(-1 * var(--wp--custom--gap--horizontal)) !important;
  width: unset;
}

.block-editor-block-list__layout.is-root-container .wp-block[data-align="full"] > .wp-block-group,
.block-editor-block-list__layout.is-root-container .alignfull > .wp-block-group {
  padding-left: var(--wp--custom--gap--horizontal);
  padding-right: var(--wp--custom--gap--horizontal);
}

@media (min-width: 480px) {
  .wp-block[data-align="left"],
  .wp-block[data-align="right"],
  .wp-site-blocks .alignleft,
  .wp-site-blocks .alignright,
  .is-root-container .alignleft,
  .is-root-container .alignright {
    max-width: var(--wp--custom--alignment--aligned-max-width);
  }
}

.aligncenter,
.has-text-align-center {
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wp-block[data-align=left],
.wp-site-blocks .alignleft,
.is-root-container .alignleft {
  float: left;
  margin-right: 2em;
}

.wp-block[data-align=right],
.wp-site-blocks .alignright,
.is-root-container .alignright {
  float: right;
  margin-left: 2em;
}

:root {
  --wpadmin-bar--height: 46px;
  --contentWidth: 1920px;
  --wideWidth: 1920px;
}

.wp-site-blocks {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

img.alignleft,
img.alignright {
  margin-bottom: 1em;
}

.site-footer-container,
footer.wp-block-template-part {
  margin-top: auto;
}

@media (min-width: 601px) {
  body.admin-bar {
    --wpadmin-bar--height: 32px;
  }
}

body.admin-bar .wp-site-blocks {
  min-height: calc( 100vh - var(--wpadmin-bar--height));
}

.wp-block-spacer {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 600px) {
  .wp-block-spacer {
    max-height: 7vh;
  }
}

.wp-site-blocks > header + .entry-content {
  margin-top: 0;
}

.edit-post-visual-editor__post-title-wrapper {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.l-fullwidth-inner-1920:not(.wp-block-cover) > * {
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}

.l-fullwidth-inner-1920.wp-block-cover > .wp-block-cover__inner-container {
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}

@media (min-width: 1921px) {
  .l-padding-left-12vw {
    padding-left: 12vw !important;
  }
}

.h-badge {
  font-size: 13px;
}

::selection {
  background-color: var(--wp--custom--color--selection);
  color: var(--wp--custom--color--secondary);
}

@media (min-width: 601px) and (orientation: portrait), (min-width: 992px) and (orientation: landscape) {
  body p, body h1, body h2, body h3, body h4, body h5, body h6 {
    margin-top: var(--wp--custom--margin--vertical);
    margin-bottom: var(--wp--custom--margin--vertical);
  }
}

@media (max-width: 600px) {
  body p, body h1, body h2, body h3, body h4, body h5, body h6 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

body {
  font-feature-settings: "liga" 1;
}

.entry-content p:first-child, .entry-content h1:first-child, .entry-content h2:first-child, .entry-content h3:first-child, .entry-content h4:first-child, .entry-content h5:first-child, .entry-content h6:first-child,
.is-root-container p:first-child,
.is-root-container h1:first-child,
.is-root-container h2:first-child,
.is-root-container h3:first-child,
.is-root-container h4:first-child,
.is-root-container h5:first-child,
.is-root-container h6:first-child {
  margin-top: 0;
}

.entry-content p:last-child, .entry-content h1:last-child, .entry-content h2:last-child, .entry-content h3:last-child, .entry-content h4:last-child, .entry-content h5:last-child, .entry-content h6:last-child,
.is-root-container p:last-child,
.is-root-container h1:last-child,
.is-root-container h2:last-child,
.is-root-container h3:last-child,
.is-root-container h4:last-child,
.is-root-container h5:last-child,
.is-root-container h6:last-child {
  margin-bottom: 0;
}

.font-family--heading {
  font-family: var(--wp--custom--heading--typography--font-family);
}

.marquee {
  font-weight: 900;
}

@media (min-width: 1025px) and (hover: hover) {
  .tk-theme-frontend:before {
    content: "";
    background-color: var(--wp--custom--color--primary);
    height: 100vh;
    position: fixed;
    right: 0;
    left: 0;
    transition: 1s cubic-bezier(0.53, 0.16, 0, 1);
    z-index: 100000;
  }
  .tk-theme-frontend:before {
    top: 0;
  }
  .tk-theme-frontend.show:not(.closing):before {
    transition-delay: 0.5s;
  }
  .tk-theme-frontend.show:before {
    transform: translateY(100%);
  }
  .tk-theme-frontend.closing:before, .tk-theme-frontend.closing:after {
    transform: translateY(0);
  }
}

.tk-theme-frontend .h-animate--from-top,
.tk-theme-frontend .h-animate--from-left,
.tk-theme-frontend .h-animate--from-right,
.tk-theme-frontend .h-animate--from-bottom,
.tk-theme-frontend .h-animate--opacity {
  transition: 0.4s cubic-bezier(0, 0, 0.3, 1.2);
  will-change: opacity;
}

.tk-theme-frontend .h-animate--from-top:not(.scrolled-to),
.tk-theme-frontend .h-animate--from-left:not(.scrolled-to),
.tk-theme-frontend .h-animate--from-right:not(.scrolled-to),
.tk-theme-frontend .h-animate--from-bottom:not(.scrolled-to),
.tk-theme-frontend .h-animate--opacity:not(.scrolled-to) {
  opacity: 0;
}

.tk-theme-frontend .h-animate--from-top:not(.scrolled-to).scrolled-to,
.tk-theme-frontend .h-animate--from-left:not(.scrolled-to).scrolled-to,
.tk-theme-frontend .h-animate--from-right:not(.scrolled-to).scrolled-to,
.tk-theme-frontend .h-animate--from-bottom:not(.scrolled-to).scrolled-to,
.tk-theme-frontend .h-animate--opacity:not(.scrolled-to).scrolled-to {
  opacity: 1;
}

.tk-theme-frontend .h-animate--opacity {
  transition: 1s;
}

.tk-theme-frontend .js-reveal--from-top,
.tk-theme-frontend .js-reveal--from-bottom {
  display: block;
  overflow: hidden;
}

.tk-theme-frontend .js-reveal--from-top:not(.scrolled-to) > *,
.tk-theme-frontend .js-reveal--from-bottom:not(.scrolled-to) > * {
  opacity: 0;
}

.tk-theme-frontend .js-reveal--from-top.scrolled-to > *,
.tk-theme-frontend .js-reveal--from-bottom.scrolled-to > * {
  opacity: 1;
}

.tk-theme-frontend .js-reveal--from-top > *,
.tk-theme-frontend .js-reveal--from-bottom > * {
  display: inline-block;
  transition: 0.6s cubic-bezier(0.31, 0, 0.05, 0.93);
  will-change: opacity;
}

.tk-theme-frontend .js-reveal--from-top:nth-of-type(1) > *,
.tk-theme-frontend .js-reveal--from-bottom:nth-of-type(1) > * {
  transition-delay: 0s;
}

.tk-theme-frontend .js-reveal--from-top:nth-of-type(2) > *,
.tk-theme-frontend .js-reveal--from-bottom:nth-of-type(2) > * {
  transition-delay: 0.4s;
}

.tk-theme-frontend .js-reveal--from-top:nth-of-type(3) > *,
.tk-theme-frontend .js-reveal--from-bottom:nth-of-type(3) > * {
  transition-delay: 0.8s;
}

.tk-theme-frontend .js-reveal--from-top:nth-of-type(4) > *,
.tk-theme-frontend .js-reveal--from-bottom:nth-of-type(4) > * {
  transition-delay: 1.2s;
}

.tk-theme-frontend .js-reveal--from-top > a,
.tk-theme-frontend .js-reveal--from-top > p,
.tk-theme-frontend .js-reveal--from-bottom > a,
.tk-theme-frontend .js-reveal--from-bottom > p {
  display: block;
}

.tk-theme-frontend .h-animate--from-top:not(.scrolled-to) {
  transform: translateY(-10%);
}

.tk-theme-frontend .h-animate--from-left:not(.scrolled-to) {
  transform: translateX(-10%);
}

.tk-theme-frontend .h-animate--from-right:not(.scrolled-to) {
  transform: translateX(10%);
}

.tk-theme-frontend .h-animate--from-bottom:not(.scrolled-to) {
  transform: translateY(10%);
}

.tk-theme-frontend .js-reveal--from-top:not(.scrolled-to) > * {
  transform: translateY(-100%);
}

.tk-theme-frontend .js-reveal--from-bottom:not(.scrolled-to) > * {
  transform: translateY(100%);
}

.tk-theme-frontend header.wp-block-template-part + div > *:first-child .h-animate--from-top,
.tk-theme-frontend header.wp-block-template-part + div > *:first-child .h-animate--from-left,
.tk-theme-frontend header.wp-block-template-part + div > *:first-child .h-animate--from-right,
.tk-theme-frontend header.wp-block-template-part + div > *:first-child .h-animate--from-bottom,
.tk-theme-frontend header.wp-block-template-part + div > *:first-child .h-animate--opacity {
  transition-delay: 1s;
}

.tk-theme-frontend .h-badge {
  align-items: center;
  background-color: var(--wp--custom--color--accent-3);
  border-radius: 45px;
  color: var(--wp--custom--color--secondary);
  display: flex;
  font-family: var(--wp--custom--heading--typography--font-family);
  font-weight: 700;
  height: 90px;
  justify-content: center;
  width: 90px;
  opacity: 0;
  position: fixed;
  pointer-events: none;
  text-transform: uppercase;
  transform-origin: center center;
  transform: scale(0.8);
}

.tk-theme-frontend .h-badge .h-hidden {
  display: none;
}

.tk-theme-frontend .h-badge i {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1.2;
  margin-top: 0.2em;
}

.tk-theme-frontend .h-badge i:first-child {
  transform: translateX(-4px) rotate(180deg);
}

.tk-theme-frontend .h-badge i:nth-child(2) {
  transform: translateX(4px);
}

.tk-theme-frontend .sly-slider:active .h-badge {
  animation-name: stop-rollaround;
  transform: none !important;
}

.tk-theme-frontend .sly-slider:active .h-badge .h-hidden {
  display: block;
}

.tk-theme-frontend .sly-slider:active .h-badge__text {
  display: none;
}

.tk-theme-frontend .sly-slider:hover .h-badge {
  animation: rollaround 4s linear .3s infinite forwards;
  opacity: 1;
  transform: scale(1);
}

@keyframes rollaround {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes stop-rollaround {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.image-no-margin {
  margin: 0;
}

.image-no-margin * {
  vertical-align: bottom;
}

.has-background-no-padding.wp-block-columns.has-background {
  padding: 0;
}

.h-transition--default {
  transition: .3s;
}

.sly-slider li,
.sly-slider img {
  transition: 0.3s cubic-bezier(0, 0, 0.3, 1.2);
}

.sly-slider img {
  transition: 0.4s cubic-bezier(0, 0, 0.3, 1.2);
}

.h-badge {
  transition: opacity 0.3s cubic-bezier(0.45, 1.16, 0.85, 1.2), transform 0.3s;
}

/**
 * Elements
 * - Styles for basic HTML elemants
 */
p a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.wp-block-navigation a,
.wp-block-post-title a {
  position: relative;
  text-decoration: none;
}

@media (min-width: 1025px) and (hover: hover) {
  p a:after,
  h1 a:after,
  h2 a:after,
  h3 a:after,
  h4 a:after,
  h5 a:after,
  h6 a:after,
  .wp-block-navigation a:after,
  .wp-block-post-title a:after {
    content: "";
    background: currentColor;
    bottom: -2px;
    height: 1px;
    left: 0;
    position: absolute;
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
    width: 100%;
    will-change: transform;
  }
  p a:hover:after, p a:focus:after,
  h1 a:hover:after,
  h1 a:focus:after,
  h2 a:hover:after,
  h2 a:focus:after,
  h3 a:hover:after,
  h3 a:focus:after,
  h4 a:hover:after,
  h4 a:focus:after,
  h5 a:hover:after,
  h5 a:focus:after,
  h6 a:hover:after,
  h6 a:focus:after,
  .wp-block-navigation a:hover:after,
  .wp-block-navigation a:focus:after,
  .wp-block-post-title a:hover:after,
  .wp-block-post-title a:focus:after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.social-opacity a {
  opacity: 0.2;
  transition: 0.3s cubic-bezier(0, 0, 0.3, 1.2);
}

.social-opacity a:hover, .social-opacity a:focus, .social-opacity a.has-focus {
  opacity: 1;
}

:root {
  --inputHeight: 50px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
.wp-block-search__input,
textarea,
select,
.select2-container--default .select2-selection--single .select2-selection__rendered {
  appearance: none;
  background: var(--wp--custom--form--color--background);
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  border-radius: var(--wp--custom--form--border--radius);
  box-shadow: var(--wp--custom--form--color--box-shadow);
  color: var(--wp--custom--form--color--text);
  font-family: var(--wp--custom--body--typography--font-family);
  font-size: var(--wp--preset--font-size--regular);
  outline: none;
  padding: var(--wp--custom--form--padding);
}

input[type="text"]:focus,
input[type="text"][type="search"]:focus + button,
input[type="email"]:focus,
input[type="email"][type="search"]:focus + button,
input[type="url"]:focus,
input[type="url"][type="search"]:focus + button,
input[type="password"]:focus,
input[type="password"][type="search"]:focus + button,
input[type="search"]:focus,
input[type="search"][type="search"]:focus + button,
input[type="number"]:focus,
input[type="number"][type="search"]:focus + button,
input[type="tel"]:focus,
input[type="tel"][type="search"]:focus + button,
input[type="range"]:focus,
input[type="range"][type="search"]:focus + button,
input[type="date"]:focus,
input[type="date"][type="search"]:focus + button,
input[type="month"]:focus,
input[type="month"][type="search"]:focus + button,
input[type="week"]:focus,
input[type="week"][type="search"]:focus + button,
input[type="time"]:focus,
input[type="time"][type="search"]:focus + button,
input[type="datetime"]:focus,
input[type="datetime"][type="search"]:focus + button,
input[type="datetime-local"]:focus,
input[type="datetime-local"][type="search"]:focus + button,
input[type="color"]:focus,
input[type="color"][type="search"]:focus + button,
.wp-block-search__input:focus,
.wp-block-search__input[type="search"]:focus + button,
textarea:focus,
textarea[type="search"]:focus + button,
select:focus,
select[type="search"]:focus + button,
.select2-container--default .select2-selection--single .select2-selection__rendered:focus,
.select2-container--default .select2-selection--single .select2-selection__rendered[type="search"]:focus + button {
  color: var(--wp--custom--form--color--text);
  border-color: var(--custom--form--color--border);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  min-height: var(--inputHeight);
  line-height: 35px;
  padding-right: 34px;
}

form label,
.wp-block-jetpack-contact-form label,
div[aria-label="Label text"] {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-transform: uppercase;
  margin-bottom: 5px;
}

textarea {
  width: 100%;
  padding-top: 1.4em;
  padding-bottom: 1.4em;
}

select {
  color: var(--wp--custom--form--color--text);
  background: transparent;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDExIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNS41IDZMMTAgMSIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: right 1.1em top 50%, 0 0;
  background-size: 0.8em auto, 100%;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  padding-right: 2.2em;
}

input[type=checkbox],
input[type=radio],
input[type=checkbox] + label,
input[type=radio] + label {
  cursor: pointer;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  margin-left: 0.5em;
  line-height: 1em;
  vertical-align: middle;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDExIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNS41IDZMMTAgMSIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: center center;
  top: 13px;
  right: 13px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: rotate(180deg);
}

.tk-theme-frontend fieldset {
  border: none;
}

.tk-theme-frontend fieldset legend {
  font-family: var(--wp--preset--font-family--heading-font);
  font-size: var(--wp--preset--font-size--medium);
  float: left;
  margin-bottom: 0.8em;
}

input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  /* For iOS < 15 */
  align-items: center;
  background-color: var(--form-background);
  border-radius: 1em;
  border: 1px solid #c3c5c0;
  color: currentColor;
  display: inline-flex;
  flex: 0 0 1.35em;
  height: 1.35em;
  margin: 0;
  place-content: center;
  text-align: center;
  vertical-align: middle;
  transform: translateY(-0.075em);
  width: 1.35em;
}

input[type="checkbox"] + label,
input[type="checkbox"] + span,
input[type="radio"] + label,
input[type="radio"] + span {
  margin-left: 1em;
}

input[type="checkbox"]::before,
input[type="radio"]::before {
  content: "";
  display: inline-block;
  height: 0.8em;
  width: 0.8em;
  transform: scale(0);
  transform-origin: center;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: var(--wp--custom--color--primary);
  border-color: var(--wp--custom--color--primary);
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  background-color: var(--wp--custom--color--secondary);
  transform: scale(1);
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

input[type="checkbox"]::before {
  clip-path: polygon(0 61%, 16% 41%, 42% 59%, 78% 2%, 100% 16%, 48% 96%);
}

input[type="radio"]::before {
  clip-path: circle(45%);
}

.required {
  color: var(--wp--custom--color--primary);
}

.site-header > .wp-block-group {
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
  overflow: inherit;
}

.site-header .wp-block-site-title a {
  text-decoration: none;
}

.site-header + .wp-block-group .wp-block-separator,
.site-header + .wp-block-separator {
  margin-bottom: 0 !important;
}

header.wp-block-template-part {
  margin-top: 0;
}

h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
  padding: var(--wp--custom--padding--vertical) var(--wp--custom--padding--horizontal);
}

.site-header--center > * {
  flex: 1;
}

.site-header--center > *.aligncenter > * {
  margin-left: auto;
  margin-right: auto;
}

.site-header--center > *:last-child {
  text-align: right;
}

@media (max-width: 600px) {
  .site-footer-container > .wp-block-group {
    padding-top: 12px;
    padding-bottom: 40px;
  }
}

.site-footer-container .wp-block-navigation__container {
  gap: 0.3em;
}

/**
 * Button
 */
/**
 * Block Options
 */
.wp-block-button.wp-block-button__link,
.wp-block-button .wp-block-button__link {
  padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
  padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
  padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
  padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  text-transform: uppercase;
  border-style: var(--wp--custom--button--border--style);
  border-radius: var(--wp--custom--button--border--radius);
  border-width: var(--wp--custom--button--border--width);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  transition: .3s;
}

.wp-block-button.wp-block-button__link svg,
.wp-block-button .wp-block-button__link svg {
  fill: var(--wp--custom--button--color--text);
}

@media (max-width: 991px) and (hover: none) {
  .wp-block-button.wp-block-button__link,
  .wp-block-button .wp-block-button__link {
    padding-left: 2.6em;
    padding-right: 1.8em;
  }
}

.wp-block-button.wp-block-button__link[type="submit"],
.wp-block-button .wp-block-button__link[type="submit"] {
  appearance: none;
}

.wp-block-button.wp-block-button__link:not(.has-custom-font-size),
.wp-block-button .wp-block-button__link:not(.has-custom-font-size) {
  font-size: calc(13.51px + 0.129vw);
}

.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link {
  border: none;
}

.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link:hover, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link:focus, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link.has-focus, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link.has-background:hover, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link.has-background:focus, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link.has-background.has-focus, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link.has-text-color:hover, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link.has-text-color:focus, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link.has-text-color.has-focus,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link:focus,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link.has-focus,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link.has-background:hover,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link.has-background:focus,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link.has-background.has-focus,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link.has-text-color:hover,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link.has-text-color:focus,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link.has-text-color.has-focus {
  background-color: var(--wp--custom--color--primary) !important;
  color: var(--wp--custom--color--secondary) !important;
}

.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}

.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain).wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
.wp-block-button:not(.is-style-outline):not(.is-style-button-arrow):not(.is-style-button-arrow-plain) .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}

.wp-block-button.is-style-outline.wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
  border-style: var(--wp--custom--button--border--style);
  border-radius: var(--wp--custom--button--border--radius);
  border-width: var(--wp--custom--button--border--width);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  padding-top: calc( var(--wp--custom--button--spacing--padding--top));
  padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom));
}

.wp-block-button.is-style-outline.wp-block-button__link svg,
.wp-block-button.is-style-outline .wp-block-button__link svg {
  fill: var(--wp--custom--button--color--text);
}

.wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link.has-focus {
  background-color: var(--wp--custom--button--color--background) !important;
  color: var(--wp--custom--button--color--text) !important;
}

.wp-block-button.is-style-outline.wp-block-button__link:not(:hover):not(:focus):not(.has-focus),
.wp-block-button.is-style-outline .wp-block-button__link:not(:hover):not(:focus):not(.has-focus) {
  --wp--custom--button--color--text: var(--wp--preset--color--primary);
  --wp--custom--button--border--color: var(--wp--preset--color--primary);
  --wp--custom--button--color--background: transparent;
}

.wp-block-button.is-style-button-arrow.wp-block-button__link,
.wp-block-button.is-style-button-arrow .wp-block-button__link, .wp-block-button.is-style-button-arrow-plain.wp-block-button__link,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link {
  border: none;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.wp-block-button.is-style-button-arrow.wp-block-button__link:hover:after, .wp-block-button.is-style-button-arrow.wp-block-button__link:focus:after, .wp-block-button.is-style-button-arrow.wp-block-button__link.has-focus:after,
.wp-block-button.is-style-button-arrow .wp-block-button__link:hover:after,
.wp-block-button.is-style-button-arrow .wp-block-button__link:focus:after,
.wp-block-button.is-style-button-arrow .wp-block-button__link.has-focus:after, .wp-block-button.is-style-button-arrow-plain.wp-block-button__link:hover:after, .wp-block-button.is-style-button-arrow-plain.wp-block-button__link:focus:after, .wp-block-button.is-style-button-arrow-plain.wp-block-button__link.has-focus:after,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link:hover:after,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link:focus:after,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link.has-focus:after {
  left: 0.3em;
}

.wp-block-button.is-style-button-arrow.wp-block-button__link:after,
.wp-block-button.is-style-button-arrow .wp-block-button__link:after, .wp-block-button.is-style-button-arrow-plain.wp-block-button__link:after,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link:after {
  margin-left: 0.5em;
  position: relative;
  top: 0.05em;
  left: 0;
  transition: left .3s;
}

.wp-block-button.is-style-button-arrow-plain.wp-block-button__link,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link {
  padding-left: 0;
  padding-right: 1em;
}

.wp-block-button.is-style-button-arrow-plain.wp-block-button__link:not(.has-text-color),
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link:not(.has-text-color) {
  color: var(--wp--custom--color--primary);
}

.wp-block-button.is-style-button-arrow-plain.wp-block-button__link:not(.has-background),
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link:not(.has-background) {
  background-color: transparent;
}

.wp-block-button.is-style-button-arrow-plain.wp-block-button__link:hover, .wp-block-button.is-style-button-arrow-plain.wp-block-button__link:focus, .wp-block-button.is-style-button-arrow-plain.wp-block-button__link.has-focus,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link:hover,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link:focus,
.wp-block-button.is-style-button-arrow-plain .wp-block-button__link.has-focus {
  background-color: transparent !important;
  color: var(--wp--custom--color--accent-3) !important;
}

.has-accent-1-background-color .wp-block-button.is-style-button-arrow-plain.wp-block-button__link:hover, .has-accent-1-background-color .wp-block-button.is-style-button-arrow-plain.wp-block-button__link:focus, .has-accent-1-background-color .wp-block-button.is-style-button-arrow-plain.wp-block-button__link.has-focus,
.has-accent-1-background-color .wp-block-button.is-style-button-arrow-plain .wp-block-button__link:hover,
.has-accent-1-background-color .wp-block-button.is-style-button-arrow-plain .wp-block-button__link:focus,
.has-accent-1-background-color .wp-block-button.is-style-button-arrow-plain .wp-block-button__link.has-focus {
  color: var(--wp--custom--color--foreground) !important;
}

.wp-block-button.is-style-button-arrow {
  white-space: nowrap;
}

.wp-block-button.is-style-button-arrow.wp-block-button__link,
.wp-block-button.is-style-button-arrow .wp-block-button__link {
  padding-right: 3.4em;
}

.wp-block-button.is-style-button-arrow.wp-block-button__link span,
.wp-block-button.is-style-button-arrow .wp-block-button__link span {
  position: relative;
  z-index: 1;
}

.wp-block-button.is-style-button-arrow.wp-block-button__link:hover:before, .wp-block-button.is-style-button-arrow.wp-block-button__link:focus:before, .wp-block-button.is-style-button-arrow.wp-block-button__link.has-focus:before,
.wp-block-button.is-style-button-arrow .wp-block-button__link:hover:before,
.wp-block-button.is-style-button-arrow .wp-block-button__link:focus:before,
.wp-block-button.is-style-button-arrow .wp-block-button__link.has-focus:before {
  transform: scale(13);
}

.wp-block-button.is-style-button-arrow.wp-block-button__link:hover:after, .wp-block-button.is-style-button-arrow.wp-block-button__link:focus:after, .wp-block-button.is-style-button-arrow.wp-block-button__link.has-focus:after,
.wp-block-button.is-style-button-arrow .wp-block-button__link:hover:after,
.wp-block-button.is-style-button-arrow .wp-block-button__link:focus:after,
.wp-block-button.is-style-button-arrow .wp-block-button__link.has-focus:after {
  left: 2.4em;
}

.wp-block-button.is-style-button-arrow.wp-block-button__link:before,
.wp-block-button.is-style-button-arrow .wp-block-button__link:before {
  content: "";
  position: absolute;
  top: 0.4em;
  right: 0.4em;
  height: 3.2em;
  width: 3.2em;
  border-radius: 2em;
  background-color: var(--wp--custom--color--secondary);
  opacity: 0.2;
  transition: 0.4s cubic-bezier(0.74, 0.02, 0, 1.13);
}

.wp-block-button.is-style-button-arrow.wp-block-button__link:after,
.wp-block-button.is-style-button-arrow .wp-block-button__link:after {
  margin-left: 0.5em;
  top: 0.1em;
  left: 2em;
}

.wp-block-button.is-style-button-arrow.is-style-button-arrow--white.wp-block-button__link,
.wp-block-button.is-style-button-arrow.is-style-button-arrow--white .wp-block-button__link {
  background-color: var(--wp--custom--color--secondary) !important;
  color: var(--wp--custom--color--primary) !important;
}

.wp-block-button.is-style-button-arrow.is-style-button-arrow--white.wp-block-button__link:before,
.wp-block-button.is-style-button-arrow.is-style-button-arrow--white .wp-block-button__link:before {
  background-color: var(--wp--custom--color--primary);
}

.wp-block-button.is-style-button-arrow.is-style-button-arrow--brick.wp-block-button__link,
.wp-block-button.is-style-button-arrow.is-style-button-arrow--brick .wp-block-button__link {
  background-color: var(--wp--custom--color--accent-3) !important;
}

.wp-block-button.is-style-button-arrow.is-style-button-arrow--brick.wp-block-button__link:before,
.wp-block-button.is-style-button-arrow.is-style-button-arrow--brick .wp-block-button__link:before {
  background-color: var(--wp--custom--color--primary);
}

.wp-block-button.has-body-font-font-family .wp-block-button__link,
.wp-block-button.has-heading-font-font-family .wp-block-button__link {
  font-family: inherit;
}

.has-background .wp-block-button:not(.is-style-outline).wp-block-button__link,
.has-background .wp-block-button:not(.is-style-outline) .wp-block-button__link,
.wp-block-cover .wp-block-button:not(.is-style-outline).wp-block-button__link,
.wp-block-cover .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  border-color: var(--wp--custom--button--color--background);
}

.has-background .wp-block-button:not(.is-style-outline).wp-block-button__link.has-primary-background-color:not(:hover),
.has-background .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-background-color:not(:hover),
.wp-block-cover .wp-block-button:not(.is-style-outline).wp-block-button__link.has-primary-background-color:not(:hover),
.wp-block-cover .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-background-color:not(:hover) {
  border-color: var(--wp--preset--color--primary);
}

.has-background .wp-block-button:not(.is-style-outline).wp-block-button__link.has-secondary-background-color:not(:hover),
.has-background .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-background-color:not(:hover),
.wp-block-cover .wp-block-button:not(.is-style-outline).wp-block-button__link.has-secondary-background-color:not(:hover),
.wp-block-cover .wp-block-button:not(.is-style-outline) .wp-block-button__link.has-secondary-background-color:not(:hover) {
  border-color: var(--wp--preset--color--secondary);
}

.wp-block-buttons .wp-block-button:last-child {
  margin-bottom: 0;
}

[data-type="coblocks/form"] .coblocks-form__submit.wp-block-button .wp-block-button__link.is-style-outline,
.block-editor-block-preview__container .wp-block-button__link.is-style-outline {
  border-width: 1px;
}

.wp-block-button__link.is-style-outline,
[data-type="coblocks/form"] .coblocks-form__submit.wp-block-button .wp-block-button__link.is-style-outline,
.block-editor-block-preview__container .wp-block-button__link.is-style-outline {
  background-color: transparent;
}

.wp-block-code code {
  font-family: var(--wp--custom--code--typography--font-family);
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  font-size: var(--wp--custom--gallery--caption--font-size);
}

.block-library-html__edit .block-editor-plain-text {
  color: var(--wp--custom--form--color--text);
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
}

.wp-block-image {
  /*
	From what I can tell the below are styles regularly used by themes
	to fix the image block.  I believe these should go into the block's
	default styles.  It's difficult to say how this will land, however
	based on discussion found in (many) related issues here:
	https://github.com/WordPress/gutenberg/issues/28923
	*/
  justify-content: center;
  text-align: center;
}

.wp-block-image.aligncenter > figcaption,
.wp-block-image .aligncenter > figcaption,
.wp-block-image.alignleft > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image.alignright > figcaption,
.wp-block-image .alignright > figcaption {
  display: block;
}

img {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.wp-block-latest-posts .wp-block-latest-posts__post-date,
.wp-block-latest-posts .wp-block-latest-posts__post-author {
  color: var(--wp--custom--latest-posts--meta--color--text);
}

ul,
ol {
  padding-left: 1em;
}

.wp-block-media-text {
  position: relative;
}

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

@media (max-width: 600px) {
  .wp-block-media-text .wp-block-media-text__content:first-child {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .wp-block-media-text .wp-block-media-text__media {
    height: 100%;
    overflow: hidden;
  }
  .wp-block-media-text .wp-block-media-text__media img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .wp-block-media-text .wp-block-media-text__media + .wp-block-media-text__content {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .wp-block-media-text:not(.has-background) .wp-block-media-text__content {
    padding-left: 0;
    padding-right: 0;
  }
}

.wp-block-more input[type=text] {
  background: var(--wp--custom--color--background);
  border: none;
  box-shadow: none;
  color: var(--wp--custom--color--primary);
  font-size: 13px;
  font-weight: 600;
  height: 24px;
  margin: 0;
  max-width: 100%;
  padding: 6px 8px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.wp-block-navigation {
  z-index: 2;
}

.wp-block-navigation .wp-block-navigation-link__container {
  font-size: 0.8em;
  padding: 0.4em;
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .wp-block-navigation .wp-block-navigation-link__container {
    margin-bottom: 1em;
  }
}

.wp-block-navigation :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content {
  font-size: 0.9em;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .wp-block-navigation :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content {
    font-size: 0.7em;
  }
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .wp-block-navigation:not(.is-responsive) {
    font-size: 16px;
  }
}

.wp-block-navigation .has-child:where(:not(.open-on-click)):hover > .wp-block-navigation__submenu-container {
  min-width: 235px;
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .is-responsive {
    z-index: 3;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
    gap: 0.3em;
  }
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  border-radius: 20px;
  padding: 15px 32px;
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  line-height: 1.1;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.wp-block-navigation:not(.has-background) .has-secondary-color .wp-block-navigation__submenu-container {
  background-color: #999;
}

.site-header > * + .wp-block-navigation {
  margin-top: 0;
}

.wp-block-navigation.is-responsive .wp-block-navigation__container > li {
  padding-top: 20px;
  padding-bottom: 20px;
}

.wp-block-navigation.is-responsive .hidden-by-default {
  display: flex;
  opacity: 0;
  overflow: auto;
  visibility: hidden;
  transform: translateX(-30%);
  /* Hide scrollbar for IE, Edge add Firefox */
}

.wp-block-navigation.is-responsive .hidden-by-default::-webkit-scrollbar {
  display: none;
}

.wp-block-navigation.is-responsive .hidden-by-default {
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Firefox */
}

.wp-block-navigation.is-responsive .hidden-by-default,
.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation-item {
  transition: 0.3s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation-item {
  opacity: 0;
  transform: translateX(-20%);
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(1) {
  transition-delay: 0.4s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(2) {
  transition-delay: 0.5s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(3) {
  transition-delay: 0.6s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(4) {
  transition-delay: 0.7s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(5) {
  transition-delay: 0.8s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(6) {
  transition-delay: 0.9s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(7) {
  transition-delay: 1s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(8) {
  transition-delay: 1.1s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(9) {
  transition-delay: 1.2s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(10) {
  transition-delay: 1.3s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(11) {
  transition-delay: 1.4s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(12) {
  transition-delay: 1.5s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(13) {
  transition-delay: 1.6s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(14) {
  transition-delay: 1.7s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(15) {
  transition-delay: 1.8s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(16) {
  transition-delay: 1.9s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(17) {
  transition-delay: 2s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(18) {
  transition-delay: 2.1s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__container > .wp-block-navigation-item:nth-child(19) {
  transition-delay: 2.2s;
}

.wp-block-navigation.is-responsive .hidden-by-default.is-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.wp-block-navigation.is-responsive .hidden-by-default.is-menu-open .wp-block-navigation-item,
.wp-block-navigation.is-responsive .hidden-by-default.is-menu-open .wp-block-navigation__responsive-container-close {
  opacity: 1;
}

.wp-block-navigation.is-responsive .hidden-by-default.is-menu-open .wp-block-navigation-item {
  transform: translateX(0);
}

.wp-block-navigation.is-responsive .hidden-by-default.is-menu-open .wp-block-navigation__responsive-container-close {
  transform: scale(1);
  transition-delay: .6s;
}

.wp-block-navigation.is-responsive .hidden-by-default .wp-block-navigation__responsive-container-close {
  position: fixed;
  right: 3vw;
  top: 9vh;
  opacity: 0;
  transition: .3s;
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    overflow: auto;
    padding: 24px;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-30px);
    z-index: 100000;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: var(--wp--custom--heading--typography--font-family);
    font-size: 32px;
    font-weight: 900;
    gap: 0;
    line-height: 1;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 100%;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .submenu-container a,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation-link__container a {
    padding-top: 0;
    padding-bottom: 0;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation-item {
    transition: 0.3s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation-item {
    opacity: 0;
    transform: translateX(-20px);
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(1) {
    transition-delay: 0.4s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(2) {
    transition-delay: 0.5s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(3) {
    transition-delay: 0.6s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(4) {
    transition-delay: 0.7s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(5) {
    transition-delay: 0.8s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(6) {
    transition-delay: 0.9s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(7) {
    transition-delay: 1s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(8) {
    transition-delay: 1.1s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(9) {
    transition-delay: 1.2s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(10) {
    transition-delay: 1.3s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(11) {
    transition-delay: 1.4s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(12) {
    transition-delay: 1.5s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(13) {
    transition-delay: 1.6s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(14) {
    transition-delay: 1.7s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(15) {
    transition-delay: 1.8s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(16) {
    transition-delay: 1.9s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(17) {
    transition-delay: 2s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(18) {
    transition-delay: 2.1s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__container > .wp-block-navigation-item:nth-child(19) {
    transition-delay: 2.2s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open {
    background-color: var(--wp--custom--color--primary);
    color: var(--wp--custom--color--secondary);
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
    opacity: 1;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    transform: translateX(0);
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
    transform: scale(1);
    transition-delay: .6s;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
    align-items: center;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container-close {
    position: fixed;
    right: 30px;
    top: 30px;
    opacity: 0;
    transition: .3s;
    transform: scale(0.9);
  }
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-close, .wp-block-navigation.is-responsive .wp-block-navigation__responsive-close:hover, .wp-block-navigation.is-responsive .wp-block-navigation__responsive-close:focus, .wp-block-navigation.is-responsive .wp-block-navigation__responsive-close:focus-visible,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-dialog,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-dialog:hover,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-dialog:focus,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-dialog:focus-visible,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container-content,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container-content:hover,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container-content:focus,
  .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container-content:focus-visible,
  .wp-block-navigation.is-responsive .wp-block-navigation__container,
  .wp-block-navigation.is-responsive .wp-block-navigation__container:hover,
  .wp-block-navigation.is-responsive .wp-block-navigation__container:focus,
  .wp-block-navigation.is-responsive .wp-block-navigation__container:focus-visible {
    outline: none !important;
  }
  .wp-block-navigation.is-responsive .wp-block-navigation-item__content {
    text-align: center;
  }
}

.wp-block-navigation.is-responsive .wp-block-navigation-item__content {
  font-weight: inherit;
}

.wp-block-navigation.is-responsive .wp-block-navigation-link__content {
  color: var(--wp--custom--color--foreground) !important;
}

.wp-block-navigation.is-responsive .has-child .wp-block-navigation-link__container {
  display: revert;
}

.wp-block-navigation__responsive-close {
  outline: none;
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .admin-bar .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container {
    padding-top: calc( 24px + var(--wpadmin-bar--height));
  }
  .admin-bar .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-close {
    top: calc( 30px + var(--wpadmin-bar--height));
  }
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }
}

p.has-drop-cap:not(:focus):first-letter {
  font-size: var(--wp--custom--paragraph--dropcap--typography--font-size);
  font-family: var(--wp--custom--paragraph--dropcap--typography--font-family);
  font-weight: var(--wp--custom--paragraph--dropcap--typography--font-weight);
  margin: var(--wp--custom--paragraph--dropcap--margin);
}

p.has-background {
  padding: var(--wp--custom--padding--vertical) var(--wp--custom--padding--horizontal);
}

.wp-block-post-author__name {
  font-weight: var(--wp--custom--post-author--font-weight);
}

.wp-block-post-comments .comment-author .avatar {
  margin-top: 0;
  margin-right: 20px;
}

.wp-block-post-comments label,
.wp-block-post-comments .comment-meta {
  font-size: calc(13.51px + 0.129vw);
}

.wp-block-post-comments .comment-meta {
  opacity: 0.8;
}

.wp-block-post-comments .comment-body .commentmetadata {
  font-size: var(--wp--preset--font-size--tiny);
  margin-bottom: 1.2em;
}

.wp-block-post-comments input[type="submit"],
.wp-block-post-comments .reply a {
  padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
  padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
  padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
  padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  text-transform: uppercase;
  border-style: var(--wp--custom--button--border--style);
  border-radius: var(--wp--custom--button--border--radius);
  border-width: var(--wp--custom--button--border--width);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  transition: .3s;
}

.wp-block-post-comments input[type="submit"] svg,
.wp-block-post-comments .reply a svg {
  fill: var(--wp--custom--button--color--text);
}

.wp-block-post-comments input[type="submit"]:hover, .wp-block-post-comments input[type="submit"]:focus, .wp-block-post-comments input[type="submit"].has-focus, .wp-block-post-comments input[type="submit"].has-background:hover, .wp-block-post-comments input[type="submit"].has-background:focus, .wp-block-post-comments input[type="submit"].has-background.has-focus, .wp-block-post-comments input[type="submit"].has-text-color:hover, .wp-block-post-comments input[type="submit"].has-text-color:focus, .wp-block-post-comments input[type="submit"].has-text-color.has-focus,
.wp-block-post-comments .reply a:hover,
.wp-block-post-comments .reply a:focus,
.wp-block-post-comments .reply a.has-focus,
.wp-block-post-comments .reply a.has-background:hover,
.wp-block-post-comments .reply a.has-background:focus,
.wp-block-post-comments .reply a.has-background.has-focus,
.wp-block-post-comments .reply a.has-text-color:hover,
.wp-block-post-comments .reply a.has-text-color:focus,
.wp-block-post-comments .reply a.has-text-color.has-focus {
  background-color: var(--wp--custom--color--primary) !important;
  color: var(--wp--custom--color--secondary) !important;
}

.wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):hover, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):focus, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color).has-focus,
.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):hover,
.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):focus,
.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}

.wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):hover svg, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):focus svg, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color).has-focus svg,
.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):hover svg,
.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):focus svg,
.wp-block-post-comments .reply a:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}

.wp-block-post-comments .reply a {
  display: inline-block;
}

.wp-block-post-comments .comment-form input[type="text"] {
  width: 100%;
}

.wp-block-post-comments .comment-reply-title small {
  float: right;
  font-size: 14px;
}

.wp-block-post-comments .comment-form-cookies-consent input[type="checkbox"] {
  margin-left: 0;
}

.wp-block-post-comments .commentlist .comment p {
  font-size: var(--wp--custom--post-comment--typography--font-size);
  line-height: var(--wp--custom--post-comment--typography--line-height);
}

.wp-block-post-comments .commentlist .children {
  margin-top: 2.5em;
}

.logged-in-as,
.comment-notes {
  font-size: var(--wp--preset--font-size--tiny);
}

.comment-respond {
  margin-top: 70px;
}

.wp-block-pullquote.is-style-solid-color,
.wp-block-pullquote {
  font-style: inherit;
}

.wp-block-pullquote.is-style-solid-color blockquote,
.wp-block-pullquote blockquote {
  padding: 0;
  margin: 0;
}

.wp-block-pullquote.is-style-solid-color blockquote p,
.wp-block-pullquote blockquote p {
  font-size: 1em;
  padding: 0;
  margin: 0;
  line-height: inherit;
}

.wp-block-pullquote.is-style-solid-color blockquote .wp-block-pullquote__citation,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-pullquote blockquote .wp-block-pullquote__citation,
.wp-block-pullquote blockquote cite {
  display: block;
  font-size: var(--wp--custom--pullquote--citation--typography--font-size);
  font-family: var(--wp--custom--pullquote--citation--typography--font-family);
  font-style: var(--wp--custom--pullquote--citation--typography--font-style);
  font-weight: var(--wp--custom--pullquote--citation--typography--font-weight);
  margin-top: var(--wp--custom--pullquote--citation--spacing--margin--top);
}

.wp-block-pullquote.is-style-solid-color.is-style-solid-color,
.wp-block-pullquote.is-style-solid-color {
  background-color: var(--wp--custom--color--foreground);
  color: var(--wp--custom--color--background);
}

.wp-block-pullquote.is-style-solid-color.has-text-align-left, .wp-block-pullquote.is-style-solid-color.has-text-align-right,
.wp-block-pullquote.has-text-align-left,
.wp-block-pullquote.has-text-align-right {
  max-width: 800px;
}

.wp-block-query-pagination {
  display: grid;
  font-family: var(--wp--custom--heading--typography--font-family);
  grid-template-areas: "prev numbers next";
  grid-template-columns: 1fr 2fr 1fr;
  justify-content: space-between;
  padding-top: 1.5em;
}

@media (max-width: 600px) {
  .wp-block-query-pagination {
    grid-template-areas: "prev next";
    grid-template-columns: 1fr 1fr;
  }
}

.wp-block-query-pagination .wp-block-query-pagination-previous {
  justify-self: start;
  grid-area: prev;
  margin-right: 1em;
}

.wp-block-query-pagination .wp-block-query-pagination-next {
  justify-self: end;
  grid-area: next;
  margin-left: 1em;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: flex;
  gap: 1em;
  grid-area: numbers;
  justify-self: center;
}

@media (max-width: 600px) {
  .wp-block-query-pagination .wp-block-query-pagination-numbers {
    display: none;
  }
}

.wp-block-query-pagination a {
  transition: .3s;
  text-decoration: none;
  opacity: 0.2;
}

.wp-block-query-pagination a:hover, .wp-block-query-pagination a:focus, .wp-block-query-pagination a.has-focus {
  opacity: 1;
}

.wp-block-query .wp-block-post-title {
  font-size: var(--wp--preset--font-size--large);
}

@media (min-width: 601px) {
  .wp-block-post-template.is-flex-container.is-flex-container,
  .wp-block-query-loop.is-flex-container.is-flex-container {
    gap: 3em;
  }
  .wp-block-post-template.is-flex-container.is-flex-container > li,
  .wp-block-query-loop.is-flex-container.is-flex-container > li {
    margin-left: 0;
    margin-right: 0;
  }
  .wp-block-post-template.is-flex-container.is-flex-container.columns-2 > li,
  .wp-block-query-loop.is-flex-container.is-flex-container.columns-2 > li {
    width: calc(50% - 1.5em);
  }
}

@media (min-width: 992px) {
  .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li,
  .wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li {
    width: calc(33.33333% - 2em);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li,
  .wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li {
    width: calc(50% - 1.5em);
  }
}

@media (min-width: 1025px) and (hover: hover) {
  .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li,
  .wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li {
    width: calc(25% - 2.25em);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li,
  .wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li {
    width: calc(50% - 1.5em);
  }
}

.wp-block-quote.is-style-large p,
.wp-block-quote p {
  font-style: unset;
  margin-top: 0;
}

.wp-block-quote.is-style-large p:last-child,
.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.wp-block-quote.is-style-large .wp-block-quote__citation,
.wp-block-quote.is-style-large cite,
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite {
  font-size: var(--wp--custom--quote--citation--typography--font-size);
  font-style: var(--wp--custom--quote--citation--typography--font-style);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  padding: var(--wp--custom--form--padding);
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  border-radius: var(--wp--custom--form--border--radius);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  padding: 0;
}

.wp-block-search .wp-block-search__input {
  padding: var(--wp--custom--form--padding);
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button,
.wp-block-search .wp-block-search__button {
  padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
  padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
  padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
  padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  text-transform: uppercase;
  border-style: var(--wp--custom--button--border--style);
  border-radius: var(--wp--custom--button--border--radius);
  border-width: var(--wp--custom--button--border--width);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  transition: .3s;
  padding-left: 0.8em;
  padding-right: 0.8em;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button svg,
.wp-block-search .wp-block-search__button svg {
  fill: var(--wp--custom--button--color--text);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-background:hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-background:focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-background.has-focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-text-color:hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-text-color:focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-text-color.has-focus,
.wp-block-search .wp-block-search__button:hover,
.wp-block-search .wp-block-search__button:focus,
.wp-block-search .wp-block-search__button.has-focus,
.wp-block-search .wp-block-search__button.has-background:hover,
.wp-block-search .wp-block-search__button.has-background:focus,
.wp-block-search .wp-block-search__button.has-background.has-focus,
.wp-block-search .wp-block-search__button.has-text-color:hover,
.wp-block-search .wp-block-search__button.has-text-color:focus,
.wp-block-search .wp-block-search__button.has-text-color.has-focus {
  background-color: var(--wp--custom--color--primary) !important;
  color: var(--wp--custom--color--secondary) !important;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon,
.wp-block-search .wp-block-search__button.has-icon {
  line-height: 0;
}

.no-results {
  display: none;
}

.wp-block-query:empty + .no-results {
  display: block;
}

.wp-block-separator {
  margin: var(--wp--custom--separator--margin) !important;
  opacity: var(--wp--custom--separator--opacity);
  width: 100%;
}

.wp-block-separator.is-style-default {
  max-width: 100%;
  width: var(--contentWidth);
}

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

.tk-theme-frontend .wp-block-separator.animate-separator {
  transform: scale(0);
  transform-origin: 0 0;
  transition: 1s;
}

.tk-theme-frontend .wp-block-separator.animate-separator.scrolled-to {
  transform: scale(1);
}

.wp-block-file .wp-block-file__button {
  padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
  padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
  padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
  padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  text-transform: uppercase;
  border-style: var(--wp--custom--button--border--style);
  border-radius: var(--wp--custom--button--border--radius);
  border-width: var(--wp--custom--button--border--width);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  transition: .3s;
  display: inline-block;
}

.wp-block-file .wp-block-file__button svg {
  fill: var(--wp--custom--button--color--text);
}

.wp-block-file .wp-block-file__button:hover, .wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button.has-focus, .wp-block-file .wp-block-file__button.has-background:hover, .wp-block-file .wp-block-file__button.has-background:focus, .wp-block-file .wp-block-file__button.has-background.has-focus, .wp-block-file .wp-block-file__button.has-text-color:hover, .wp-block-file .wp-block-file__button.has-text-color:focus, .wp-block-file .wp-block-file__button.has-text-color.has-focus {
  background-color: var(--wp--custom--color--primary) !important;
  color: var(--wp--custom--color--secondary) !important;
}

.wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}

.wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}

.wp-block-table.is-style-stripes,
.wp-block-table {
  margin-bottom: 1em;
  border-bottom: none;
}

.wp-block-table.is-style-stripes figcaption,
.wp-block-table figcaption {
  font-size: var(--wp--custom--table--figcaption--typography--font-size);
  text-align: center;
}

.wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th,
.wp-block-table td,
.wp-block-table th {
  border: 1px solid;
  padding: calc(0.5*var(--wp--custom--margin--vertical)) calc(0.5*var(--wp--custom--margin--horizontal));
}

.wp-block-video figcaption {
  margin: var(--wp--custom--video--caption--margin);
  text-align: var(--wp--custom--video--caption--text-align);
}

.wp-block-columns {
  margin-bottom: unset;
}

@media (max-width: 600px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile):not(.inherit-horizontal-padding) .wp-block-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .wp-block-columns .wp-block-image {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (min-width: 601px) and (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > :not(:only-child):empty {
    flex-basis: auto !important;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .l-desktop-only.wp-block-column:nth-child(2n) + .wp-block-column {
    margin-left: 2em;
  }
}

@media (min-width: 601px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    flex-wrap: nowrap !important;
  }
}

@media (max-width: 991px) and (hover: none) {
  .wp-block-columns.stack-on-tablet--portrait:not(.is-not-stacked-on-mobile):not(.inherit-horizontal-padding) > .wp-block-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .wp-block-columns.stack-on-tablet--portrait:not(.is-not-stacked-on-mobile).column-no-margin-top > .wp-block-column + .wp-block-column {
    margin-top: 0;
  }
}

@media (min-width: 601px) and (max-width: 1024px) and (hover: none) {
  .wp-block-columns.stack-on-tablet--landscape:not(.is-not-stacked-on-mobile) {
    flex-wrap: wrap !important;
  }
  .wp-block-columns.stack-on-tablet--landscape:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .wp-block-columns.stack-on-tablet--portrait:not(.is-not-stacked-on-mobile) {
    flex-wrap: wrap !important;
  }
  .wp-block-columns.stack-on-tablet--portrait:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}

.wp-block-cover-image,
.wp-block-cover {
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 991px) and (hover: none) {
  .wp-block-cover-image,
  .wp-block-cover {
    padding-top: 40px;
    padding-right: 30px !important;
    padding-bottom: 40px;
    padding-left: 30px !important;
    min-height: 50vh !important;
  }
}

@media (max-width: 600px) {
  .wp-block-cover-image.cover-full-on-mobile,
  .wp-block-cover.cover-full-on-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

.wp-block-cover-image.background-clip--content-box,
.wp-block-cover.background-clip--content-box {
  background-clip: content-box;
}

.wp-block-cover-image.background-clip--content-box img.wp-block-cover__image-background,
.wp-block-cover-image.background-clip--content-box video.wp-block-cover__video-background,
.wp-block-cover.background-clip--content-box img.wp-block-cover__image-background,
.wp-block-cover.background-clip--content-box video.wp-block-cover__video-background {
  left: 50px;
  right: 50px;
  width: calc(100% - 100px);
}

@media (max-width: 991px) and (hover: none) {
  .wp-block-cover-image.background-clip--content-box img.wp-block-cover__image-background,
  .wp-block-cover-image.background-clip--content-box video.wp-block-cover__video-background,
  .wp-block-cover.background-clip--content-box img.wp-block-cover__image-background,
  .wp-block-cover.background-clip--content-box video.wp-block-cover__video-background {
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
  }
}

@media (max-width: 600px) {
  .wp-block-cover-image.cover-full-on-mobile img.wp-block-cover__image-background,
  .wp-block-cover-image.cover-full-on-mobile video.wp-block-cover__video-background,
  .wp-block-cover.cover-full-on-mobile img.wp-block-cover__image-background,
  .wp-block-cover.cover-full-on-mobile video.wp-block-cover__video-background {
    left: 0;
    right: 0;
    width: 100%;
  }
}

.post-meta {
  display: flex;
}

.post-meta .wp-block-post-author,
.post-meta .wp-block-post-date,
.post-meta .wp-block-post-tags,
.post-meta .wp-block-post-hierarchical-terms {
  display: flex;
  margin-right: calc(2 * var(--wp--custom--margin--baseline));
}

.post-meta .wp-block-post-author:before,
.post-meta .wp-block-post-date:before,
.post-meta .wp-block-post-tags:before,
.post-meta .wp-block-post-hierarchical-terms:before {
  align-self: center;
  content: '';
  display: inline-block;
  margin-right: calc(0.5 * var(--wp--custom--margin--baseline));
  height: 16px;
  width: 16px;
  background-color: currentColor;
}

.post-meta .wp-block-post-author:before {
  mask-image: url(svg/post-author.svg);
}

.post-meta .wp-block-post-date:before {
  mask-image: url(svg/post-date.svg);
}

.post-meta .wp-block-post-hierarchical-terms:before {
  mask-image: url(svg/post-category.svg);
}

.post-meta .wp-block-post-tags:before {
  mask-image: url(svg/post-tag.svg);
}

.blog .wp-block-post-title a {
  transition: .3s;
}

.blog .wp-block-post-title a:hover, .blog .wp-block-post-title a:focus, .blog .wp-block-post-title a.has-focus {
  color: var(--wp--custom--color--accent-3);
}

.blog .wp-block-post-title a:after {
  display: none;
}

.blog .wp-block-post-featured-image {
  border-radius: 4px;
  overflow: hidden;
}

.blog .wp-block-column:empty {
  display: none;
}

.blog .wp-block-column:empty + .wp-block-column {
  padding-left: 0 !important;
}

@media (max-width: 600px) {
  .home-hero {
    min-height: 80vh !important;
  }
}

.benefits > .wp-block-column {
  transition: .3s;
}

@media (max-width: 991px) and (hover: none) {
  .benefits > .wp-block-column {
    margin-bottom: 2em;
  }
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .benefits > .wp-block-column p {
    margin-top: 0;
    max-width: 60%;
  }
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .rooms-archive-row > .wp-block-column {
    padding-right: 0 !important;
  }
}

.rooms-archive-row > .wp-block-column > .wp-block-group {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .rooms-archive-row .wp-block-image img {
    min-height: 20vh;
    object-fit: cover;
  }
}

.rooms-archive-row .wp-block-image + .wp-block-group {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  padding-top: 20px;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.rooms-archive-row .wp-block-image + .wp-block-group .wp-block-columns:last-child {
  margin-top: auto;
}

@media (min-width: 992px) and (max-width: 1440px) {
  .steps-to-success--steps .wp-block-column .wp-block-columns .wp-block-column {
    position: relative;
  }
  .steps-to-success--steps .wp-block-image {
    width: max-content;
    position: absolute;
    right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .franchise-opportunity--numbers {
    flex-basis: 62em !important;
  }
}

@media (max-width: 991px) and (hover: none) {
  .franchise-opportunity .franchise-opportunity--numbers {
    margin-top: 30px;
  }
  .steps-to-success--steps .wp-block-image {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .steps-to-success--steps:not(.is-not-stacked-on-mobile) {
    flex-wrap: wrap !important;
  }
  .steps-to-success--steps:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 48% !important;
  }
  .partner .wp-block-image {
    max-width: 300px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .partners-columns > .wp-block-columns > .wp-block-column:first-of-type {
    flex-basis: 55% !important;
  }
  .partners-columns > .wp-block-columns > .wp-block-column:nth-of-type(2) {
    flex-basis: 45% !important;
  }
}

@media (max-width: 991px) and (hover: none) {
  .partners-columns > .wp-block-columns > .wp-block-column:first-child > .wp-block-group {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .partners-columns .wp-block-cover.l-mobile-padding {
    min-height: 70vh !important;
  }
  .partners-columns .wp-block-cover__inner-container {
    padding-top: 0;
  }
}

@media (max-width: 991px) and (hover: none) {
  .about-us-hero.is-image-fill .wp-block-media-text__media,
  .about-us-products.is-image-fill .wp-block-media-text__media {
    min-height: 40vh;
  }
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .about-us-hero .wp-block-media-text__content {
    max-width: 90vw;
  }
}

@media (max-width: 991px) and (hover: none) {
  .about-us-products .wp-block-media-text__content {
    padding-top: 0;
  }
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .why-fox-hero .wp-block-column:nth-child(2) .wp-block-cover {
    justify-content: flex-start;
  }
  .why-fox-hero .wp-block-column:nth-child(2) .wp-block-cover__inner-container {
    max-width: 76vw;
  }
  .why-fox-about .wp-block-cover {
    justify-content: flex-start;
  }
  .why-fox-about .wp-block-cover__inner-container {
    max-width: 62vw;
  }
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .onboarding-process .wp-block-cover {
    justify-content: flex-start;
  }
  .onboarding-process .wp-block-cover__inner-container {
    max-width: 80vw;
  }
}

@media (max-width: 600px) {
  .review-stars > .wp-block-group:first-child {
    padding-right: 24px !important;
  }
}

.marquee-div span {
  margin-left: 0.3em;
}

@media (min-width: 1025px) and (hover: hover) {
  .room-nav .wp-block-image a {
    transition: 0.3s;
  }
  .room-nav .wp-block-image a:hover, .room-nav .wp-block-image a:focus {
    opacity: 0.7;
  }
}

.ui-accordion > .wp-block-group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1em;
  padding-bottom: 2em;
}

.ui-accordion-header {
  cursor: pointer;
  outline: none;
  position: relative;
}

.ui-accordion-header:before, .ui-accordion-header:after {
  content: "";
  background-color: var(--wp--custom--color--primary);
  backface-visibility: hidden;
  height: 4px;
  width: 1.2em;
  position: absolute;
  top: 0.5em;
  right: 1em;
  transition: .3s;
}

.ui-accordion-header:not(.ui-state-active):after {
  transform: rotate(90deg);
}

.ui-accordion-header:not(.ui-state-active):hover:before {
  transform: rotate(180deg);
}

.ui-accordion-header:not(.ui-state-active):hover:after {
  transform: rotate(270deg);
}

.ui-accordion-header + .ui-accordion-content {
  margin-top: 0;
  padding-top: 20px;
}

.tab-map .ui-accordion-header {
  transition: .3s;
}

.tab-map .ui-accordion-header:not(.ui-state-active) {
  opacity: 0.2;
}

.tab-map .ui-accordion-header:not(.ui-state-active):hover {
  opacity: 1;
}

@media (max-width: 991px) and (hover: none) {
  .tab-map .ui-accordion-content .wp-block-buttons.is-content-justification-right {
    justify-content: flex-start;
  }
}

.success-accordion .ui-accordion-header:not(.ui-state-active):before, .success-accordion .ui-accordion-header:not(.ui-state-active):after {
  background-color: #b2b2b2;
}

.success-accordion .ui-accordion-header:not(.ui-state-active):hover:before, .success-accordion .ui-accordion-header:not(.ui-state-active):hover:after {
  background-color: var(--wp--custom--color--primary);
}

.success-accordion .ui-accordion-header:before, .success-accordion .ui-accordion-header:after {
  top: calc(50% - 2px);
  width: 2em;
}

@media (max-width: 600px) {
  .success-accordion .ui-accordion-header:before, .success-accordion .ui-accordion-header:after {
    display: none;
  }
}

@media (max-width: 600px) {
  .success-accordion .ui-accordion-header h3 {
    font-size: 16px !important;
  }
}

.success-accordion .ui-accordion-header + .ui-accordion-content {
  padding-top: 0;
}

.success-accordion > .wp-block-group {
  padding-top: 2em;
}

.success-accordion > .wp-block-group:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .success-accordion > .wp-block-group > .wp-block-columns + .wp-block-group {
    padding-top: 2.3em;
  }
}

.success-accordion ul {
  list-style-position: inside;
}

.success-accordion figure {
  text-align: left;
}

@media (max-width: 991px) and (hover: none) {
  .success-accordion > .wp-block-group .wp-block-columns:not(.is-not-stacked-on-mobile) {
    flex-wrap: wrap !important;
  }
}

.tk-theme-frontend .sly-slider {
  max-width: none !important;
}

.tk-theme-frontend .sly-slider .slidee {
  max-width: none;
  white-space: nowrap;
  width: auto;
}

.tk-theme-frontend .sly-slider .slide,
.tk-theme-frontend .sly-slider .wp-block-media-text,
.tk-theme-frontend .sly-slider .wp-block-hyperlink-group {
  display: inline-grid;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  vertical-align: middle;
  white-space: normal;
}

.tk-theme-frontend .sly-slider .slide .wp-block-media-text__content,
.tk-theme-frontend .sly-slider .wp-block-media-text .wp-block-media-text__content,
.tk-theme-frontend .sly-slider .wp-block-hyperlink-group .wp-block-media-text__content {
  background-color: var(--wp--custom--color--secondary);
  height: 100%;
}

.tk-theme-frontend .sly-slider.sly-drag {
  cursor: none;
  margin-left: calc(var(--wp--custom--gap--horizontal) * -1) !important;
  margin-right: calc(var(--wp--custom--gap--horizontal) * -1) !important;
  padding-left: var(--wp--custom--gap--horizontal);
  padding-right: var(--wp--custom--gap--horizontal);
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .tk-theme-frontend .sly-slider.sly-drag {
    padding-top: 20px;
    padding-bottom: 20px;
    overflow-x: auto;
  }
}

.tk-theme-frontend .sly-slider.sly-drag .slide,
.tk-theme-frontend .sly-slider.sly-drag .wp-block-media-text {
  border-radius: 4px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.03);
  margin-right: 3vw;
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-slider.sly-drag .slide,
  .tk-theme-frontend .sly-slider.sly-drag .wp-block-media-text {
    max-width: 80vw;
  }
}

.tk-theme-frontend .sly-slider.sly-drag .slidee {
  height: 100%;
}

.tk-theme-frontend .sly-slider.sly-drag .wp-block-media-text {
  width: 50em;
}

@media (max-width: 991px) and (hover: none) {
  .tk-theme-frontend .sly-slider.sly-drag .wp-block-media-text {
    max-width: 80vw;
  }
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-slider.sly-drag .wp-block-media-text {
    grid-template-rows: max-content;
  }
}

.tk-theme-frontend .sly-slider.sly-drag .slide {
  width: 34em;
}

.tk-theme-frontend .sly-slider.sly-drag .wp-block-media-text__content {
  padding: 3.3em 3em 1.6em;
}

@media (max-width: 991px) and (hover: none) {
  .tk-theme-frontend .sly-slider.sly-drag .wp-block-media-text__content {
    padding: 2.3em 2em 1.5em;
  }
}

.tk-theme-frontend .sly-slider.sly-testimonials .wp-block-media-text__media {
  border-radius: 4px;
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-slider.sly-testimonials .wp-block-media-text__media {
    margin-right: 10px;
    min-height: 44vh;
  }
}

.tk-theme-frontend .sly-slider.sly-testimonials .wp-block-media-text__content {
  padding: 1em 3.8vw 0;
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-slider.sly-testimonials .wp-block-media-text__content {
    padding-left: 0;
  }
}

@media (min-width: 601px) {
  .tk-theme-frontend .sly-slider.sly-testimonials + .sly-pages {
    position: absolute;
    left: calc(45% + 3.8vw);
    bottom: 0;
  }
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-slider.sly-testimonials + .sly-pages {
    margin-top: 0;
  }
}

.tk-theme-frontend .sly-slider.sly-other-rooms .slidee {
  font-size: 0;
}

.tk-theme-frontend .sly-slider.sly-other-rooms .wp-block-hyperlink-group {
  margin-right: 3.6vw;
  text-decoration: none;
  vertical-align: top;
  transition: .3s;
}

@media (min-width: 1025px) and (hover: hover) {
  .tk-theme-frontend .sly-slider.sly-other-rooms .wp-block-hyperlink-group {
    width: calc(77.1vw / 4 - 4px);
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .tk-theme-frontend .sly-slider.sly-other-rooms .wp-block-hyperlink-group {
    width: calc(77vw / 4);
  }
}

@media (min-width: 601px) and (max-width: 991px) and (hover: none) {
  .tk-theme-frontend .sly-slider.sly-other-rooms .wp-block-hyperlink-group {
    width: calc(84.3vw / 3);
  }
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-slider.sly-other-rooms .wp-block-hyperlink-group {
    margin-right: 10px;
    width: calc((100vw - 60px) / 2 - 5px);
  }
}

.tk-theme-frontend .sly-slider.sly-other-rooms .wp-block-hyperlink-group:hover {
  opacity: 0.6;
}

.tk-theme-frontend .sly-slider.sly-other-rooms .wp-block-hyperlink-group h3 {
  margin: 0;
  text-decoration: none;
}

.tk-theme-frontend .sly-slider.sly-other-rooms .wp-block-image {
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: left;
}

.tk-theme-frontend .sly-slider .wp-block-columns {
  white-space: nowrap;
}

.tk-theme-frontend #slyPrev a,
.tk-theme-frontend #slyNext a {
  background-color: transparent;
  color: var(--wp--custom--color--primary);
  font-size: 0;
  opacity: 0.2;
  transition: .3s;
}

.tk-theme-frontend #slyPrev a:hover, .tk-theme-frontend #slyPrev a:focus,
.tk-theme-frontend #slyNext a:hover,
.tk-theme-frontend #slyNext a:focus {
  background-color: transparent !important;
  color: var(--wp--custom--color--primary) !important;
}

.tk-theme-frontend #slyPrev a:before,
.tk-theme-frontend #slyNext a:before {
  font-size: 30px;
}

@media (max-width: 600px) {
  .tk-theme-frontend #slyPrev a:before,
  .tk-theme-frontend #slyNext a:before {
    font-size: 20px;
  }
}

.tk-theme-frontend #slyPrev:not(.disabled) a:hover, .tk-theme-frontend #slyPrev:not(.disabled) a:focus,
.tk-theme-frontend #slyNext:not(.disabled) a:hover,
.tk-theme-frontend #slyNext:not(.disabled) a:focus {
  opacity: 1;
}

.tk-theme-frontend #slyPrev a {
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-other-rooms-nav h2 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-other-rooms-nav {
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .tk-theme-frontend .sly-other-rooms-arrows {
    margin-left: auto;
  }
}

.tk-theme-frontend .sly-pages {
  display: flex;
  font-weight: 900;
}

.tk-theme-frontend .sly-pages li {
  border-radius: 2em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: calc(14.5px + 0.388vw);
  height: 2.2em;
  justify-content: center;
  opacity: 0.2;
  text-align: center;
  width: 2.2em;
  transition: .3s;
}

.tk-theme-frontend .sly-pages li:hover, .tk-theme-frontend .sly-pages li:focus, .tk-theme-frontend .sly-pages li.active {
  opacity: 1;
}

.tk-theme-frontend .sly-pages li.active {
  background-color: var(--wp--custom--color--background);
}

.tk-theme-frontend .scrollbar {
  background-color: rgba(0, 0, 0, 0.1);
  height: 1px;
  margin-top: 7vw;
  padding: 0;
}

@media (max-width: 1024px), (orientation: landscape) and (max-width: 1366px) and (hover: none) {
  .tk-theme-frontend .scrollbar {
    display: none;
  }
}

.tk-theme-frontend .handle {
  background-color: var(--wp--custom--color--accent-3);
  cursor: grab;
  height: 3px;
  width: 235px;
  position: relative;
  top: -1px;
}

.tk-theme-frontend .handle:active {
  cursor: grabbing;
}

.n2-section-smartslider .n2-ss-slider,
.n2-section-smartslider .n2-ss-slider .n2-ss-widget {
  font-size: 1em;
}

.nextend-arrow {
  --widget-offset: 2.3vw !important;
}

.nextend-arrow:before {
  display: block;
  font-size: 1.6em;
}

.nextend-arrow img {
  display: none !important;
}

.nextend-arrow-previous:before {
  transform: rotate(180deg);
}

.n2-ss-slider-3 {
  border-radius: 4px;
}

.tabs__nav .map-tab-switcher {
  align-items: normal;
}

.map-tab-switcher .wp-block-hyperlink-group {
  border: 1px solid;
  border-color: var(--wp--custom--color--background);
  cursor: pointer;
  text-decoration: none;
  transition: .3s;
}

.map-tab-switcher .wp-block-hyperlink-group:not(:last-of-type) {
  border-right-width: 0;
}

@media (min-width: 601px) {
  .map-tab-switcher .wp-block-hyperlink-group {
    width: 25%;
  }
}

@media (max-width: 600px) {
  .map-tab-switcher .wp-block-hyperlink-group {
    border-width: 0 0 1px 0;
    width: 100%;
  }
}

.map-tab-switcher .wp-block-hyperlink-group .active, .map-tab-switcher .wp-block-hyperlink-group:hover {
  background-color: #f8f8f8;
}

.map-tab-switcher .wp-block-hyperlink-group .active .wp-block-image, .map-tab-switcher .wp-block-hyperlink-group:hover .wp-block-image {
  filter: grayscale(0);
}

@media (max-width: 991px) and (hover: none) {
  .map-tab-switcher h3 {
    margin-bottom: 20px;
  }
}

.map-tab-switcher .wp-block-image {
  transition: .3s;
  filter: grayscale(1);
}

@media (max-width: 991px) and (hover: none) {
  .map-tab-switcher .wp-block-image {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .map-tab-switcher .wp-block-image img {
    max-width: 30vw;
  }
}

.tk-theme-frontend .tab-map {
  display: none;
}

.tk-theme-frontend .tab-map.active {
  display: block;
}
/*# sourceMappingURL=ponyfill.css.map */