/*
 * Responsive Font Mixin
 *
 * This mixin generates a responsive font size using CSS clamp().
 * The font size scales dynamically between a minimum and maximum value
 * based on the viewport width.
 *
 * @param {Length} $max_font_size - The maximum font size (e.g., 32px, 18px).
 * @param {Number} $ratio [0.8] - The ratio used to calculate the minimum font size (ignored if $min_font_size is provided).
 * @param {Length | String} $min_viewport [map.get($breakpoints, 'xs')] - Viewport width for the minimum font size.
 *        Can be a length (e.g., 500px) or a key from $breakpoints (e.g., "sm").
 * @param {Length | String} $max_viewport [1920px] - Viewport width for the maximum font size.
 *        Can be a length (e.g., 1440px) or a key from $breakpoints (e.g., "xl").
 * @param {Length} $base_font_size [16px] - The base font size used for rem conversion.
 * @param {Length | Null} $min_font_size [null] - Optional explicit minimum font size. If provided, it overrides $ratio.
 *
 * Usage examples:
 *
 * h1 {
 *   @include responsive-font(32px); // min: 25.6px (80% ratio), max: 32px
 * }
 *
 * .subtitle {
 *   @include responsive-font(24px, 0.9); // min: 21.6px, max: 24px
 * }
 *
 * .title {
 *   @include responsive-font(48px, $min_font_size: 28px); // min: 28px (explicit), max: 48px
 * }
 */
:root {
  --color-black: #101210;
  --color-white: #fff;
  --color-brand: #d82b27;
  --color-sand-stone: #e9ded3;
  --color-deep-taupe: #9f8b77;
  --color-lake-blue: #294878;
  --color-gray-1: #f9f5f2;
  --color-gray-3: #d4cfce;
  --color-gray-6: #b0abab;
  --color-gray-8: #8d898a;
  --color-gray-10: #6a6869;
  --color-gray-dark: #4a484a;
}

:root {
  --font-inter: "Inter", sans-serif;
  --font-libre: "Libre Caslon Text", serif;
  --font-archivo: "Archivo", sans-serif;
  --line-height-default: 1.333;
}
@media (max-width: 768px) {
  :root {
    --line-height-default: 1.285;
  }
}
:root {
  --font-weight-light: 300;
  --font-weight-default: 400;
  --font-weight-light-bold: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
}

:root {
  --page-spacing: 40px;
  --page-spacing-zero: 40px;
  --widget-spacing: 120px;
  --text-spacing: 24px;
}
@media (max-width: 992px) {
  :root {
    --page-spacing: 20px;
    --page-spacing-zero: 0;
    --widget-spacing: 60px;
  }
}

:root {
  --icon-close-white: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGQ9Ik0zLjUgMy41IDEyIDEybTguNSA4LjVMMTIgMTJtMCAwIDguNS04LjVNMTIgMTJsLTguNSA4LjUiIHN0cm9rZT0iI0U5REVEMyIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGgyNHYyNEgweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjwvc3ZnPg==");
  --icon-close: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGQ9Ik0zLjUgMy41IDEyIDEybTguNSA4LjVMMTIgMTJtMCAwIDguNS04LjVNMTIgMTJsLTguNSA4LjUiIHN0cm9rZT0iIzlGOEI3NyIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGgyNHYyNEgweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjwvc3ZnPg==");
  --icon-favorite: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxNCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMiAuNjVoMTBBMS4zNSAxLjM1IDAgMCAxIDEzLjM1IDJ2MTYuNTIybC01Ljk5NS0zLjkxNUw3IDE0LjM3NmwtLjM1NS4yMzFMLjY1IDE4LjUyMlYyQTEuMzUgMS4zNSAwIDAgMSAyIC42NVoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz48L3N2Zz4=");
  --icon-favorite-active: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxNCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMiAuNjVoMTBBMS4zNSAxLjM1IDAgMCAxIDEzLjM1IDJ2MTYuNTIybC01Ljk5NS0zLjkxNUw3IDE0LjM3NmwtLjM1NS4yMzFMLjY1IDE4LjUyMlYyQTEuMzUgMS4zNSAwIDAgMSAyIC42NVoiIGZpbGw9IiNmZmYiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz48L3N2Zz4=");
  --icon-plus: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOSAwdjltMCA5VjltMCAwaDlNOSA5SDAiIHN0cm9rZT0iI0Q4MkIyNyIgc3Ryb2tlLXdpZHRoPSIxLjMiLz48L3N2Zz4=");
  --icon-minus: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDE4IDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE4IDFIMCIgc3Ryb2tlPSIjRDgyQjI3IiBzdHJva2Utd2lkdGg9IjEuMyIvPjwvc3ZnPg==");
  --icon-progress: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOS4xNjYgMy4zMzMgOC43NSAyLjVsLS40MTcuODMzLS44MzMuMTA0LjY5NS41OUw3LjkxNiA1bC44MzQtLjU1NS44MzMuNTU1LS4yNzgtLjk3My42OTUtLjU5em02Ljk0NSA4Ljg4OS0uNjk1LTEuMzg5LS42OTUgMS4zODktMS4zODguMTc0IDEuMTU4Ljk4NC0uNDYzIDEuNjIgMS4zODgtLjkyNiAxLjM4OS45MjYtLjQ2My0xLjYyIDEuMTU4LS45ODR6TTUuNTU2IDUuMjc4IDUgNC4xNjdsLS41NTYgMS4xMS0xLjExLjE0LjkyNS43ODYtLjM3IDEuMjk3IDEuMTEtLjc0IDEuMTEyLjc0LS4zNy0xLjI5Ny45MjUtLjc4NnptLTIuNzExIDguODg5YzAgLjQ0NS4xNzMuODYzLjQ4OCAxLjE3OGwxLjMyMiAxLjMyMmMuMzE1LjMxNS43MzMuNDg4IDEuMTc4LjQ4OHMuODYzLS4xNzMgMS4xNzgtLjQ4OGw5LjY1NS05LjY1NWMuMzE1LS4zMTUuNDg5LS43MzQuNDg5LTEuMTc5cy0uMTc0LS44NjMtLjQ4OS0xLjE3OGwtMS4zMjEtMS4zMjJjLS42My0uNjMtMS43MjctLjYzLTIuMzU3IDBsLTkuNjU1IDkuNjU1YTEuNjYgMS42NiAwIDAgMC0uNDg4IDEuMTc5bTExLjMyMS05LjY1NSAxLjMyMiAxLjMyMUwxMi41IDguODIyIDExLjE3OCA3LjV6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
  --icon-chevron-black-left: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxMiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOC45NTggMCAuNSA4bDguNDU4IDggMi41NDItMi40MDRMNS41ODIgOCAxMS41IDIuNDA0eiIgZmlsbD0iIzAwMCIvPjwvc3ZnPg==");
  --icon-chevron-white-left: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxMiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOC45NTggMCAuNSA4bDguNDU4IDggMi41NDItMi40MDRMNS41ODIgOCAxMS41IDIuNDA0eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
  --icon-chevron-red-bottom: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTEgMSA2IDYgNi02IiBzdHJva2U9IiNEODJCMjciIHN0cm9rZS13aWR0aD0iMS4zIi8+PC9zdmc+");
  --icon-flame-white: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOSAzLjYwMWMwIDEtLjMzMyAyLjMzNC0xLjkzMyAyLjg2Ny40NjYtMS4xMzMuNTMzLTIuMjY3LjItMy4zMzNDNi44IDEuNzM1IDUuMjY3LjY2OCA0LjIuMDY4Yy0uMjY3LS4yLS43MzMuMDY3LS42NjcuNDY3IDAgLjczMy0uMiAxLjgtMS4zMzMgMi45MzNDLjczMyA0LjkzNSAwIDYuNDY4IDAgNy45MzVjMCAxLjkzMyAxLjMzMyA0LjMzMyA0IDQuMzMzLTIuNjY3LTIuNjY3LS42NjctNS0uNjY3LTUgLjUzNCAzLjkzMyAzLjMzNCA1IDQuNjY3IDUgMS4xMzMgMCAzLjMzMy0uOCAzLjMzMy00LjI2NyAwLTIuMDY2LS44NjYtMy42NjYtMS42LTQuNi0uMi0uMzMzLS42NjYtLjEzMy0uNzMzLjIiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
  --icon-arrow-white-bottom: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgOSA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik01LjMzMiA3LjVhMSAxIDAgMCAxLTEuNzMyIDBsLTMuNDY0LTZBMSAxIDAgMCAxIDEuMDAyIDBINy45M2ExIDEgMCAwIDEgLjg2NiAxLjV6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
  --icon-arrow-blue-bottom: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgOSA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik01LjMzMiA3LjVhMSAxIDAgMCAxLTEuNzMyIDBsLTMuNDY0LTZBMSAxIDAgMCAxIDEuMDAyIDBINy45M2ExIDEgMCAwIDEgLjg2NiAxLjV6IiBmaWxsPSIjMjk0ODc4Ii8+PC9zdmc+");
  --icon-date: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNSAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTMuMzMzIDEuNjY3aC0xLjY2NlYwSDEwdjEuNjY3SDVWMEgzLjMzM3YxLjY2N0gxLjY2N0MuNzQ3IDEuNjY3IDAgMi40MTQgMCAzLjMzM1YxNWMwIC45Mi43NDggMS42NjcgMS42NjcgMS42NjdoMTEuNjY2Yy45MiAwIDEuNjY3LS43NDggMS42NjctMS42NjdWMy4zMzNjMC0uOTE5LS43NDgtMS42NjYtMS42NjctMS42NjZtLS44MzMgMTIuNWgtNXYtNWg1em0uODMzLTguMzM0SDEuNjY3VjQuMTY3aDExLjY2NnoiIGZpbGw9IiMyOTQ4NzgiLz48L3N2Zz4=");
}

:root {
  --transition: 0.3s ease-in-out;
  --inactive-opacity: 0.6;
}

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted #000000;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
html.scroll-locked {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}
html.scroll-locked-ios {
  position: fixed;
  top: var(--scroll-lock-top, 0px);
  width: 100%;
}

html > body {
  font-family: var(--font-inter);
  background-color: var(--color-white);
  font-weight: var(--font-weight-default);
  color: var(--color-black);
  position: relative;
  font-size: clamp(0.875rem, 0.875rem + 0.0056818182 * (100vw - 576px), 1.125rem);
  line-height: var(--line-height-default);
  overflow-x: hidden;
  overflow-wrap: break-word;
}
html > body.scroll-locked {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}
html > body.scroll-locked-ios {
  position: fixed;
  top: var(--scroll-lock-top, 0px);
  width: 100%;
}

a:not([href])[id][name] {
  scroll-margin-top: 64px;
}

p {
  margin: 0 0 var(--text-spacing);
}
p:last-child {
  margin-bottom: 0;
}

.no-touch button, .no-touch button:link, .no-touch button:visited, .no-touch button:hover, .no-touch button:active, .supports-touch button, .supports-touch button:link, .supports-touch button:visited, .supports-touch button:hover, .supports-touch button:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
}

ul {
  padding: 0;
  margin: var(--text-spacing) 0 var(--text-spacing) 10px;
  list-style-position: inside;
}

ol {
  padding: 0;
  margin: var(--text-spacing) 0 var(--text-spacing) 10px;
  list-style-position: inside;
}

li {
  padding-left: 0;
}

img {
  width: auto;
  height: auto;
}

.no-scroll {
  overflow: hidden;
}

.hide {
  display: none !important;
}

.hide-accessibility {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.scroll-locked {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

.scroll-locked-ios {
  position: fixed;
  top: var(--scroll-lock-top, 0px);
  width: 100%;
}

wbm-accordion:not(:defined),
wbm-accordion-item:not(:defined),
wbm-dropdown-menu:not(:defined),
wbm-header:not(:defined),
wbm-sticky-block:not(:defined),
wbm-slide-toggle-block:not(:defined),
wbm-tabs:not(:defined) {
  display: none !important;
}

#c_header,
#global,
.css,
.js,
.c_site-header,
.c_site-footer {
  display: none;
}

#c_siteWrapper.cr {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
}

#c_page.cr {
  max-width: none;
  padding: 0;
}

#content {
  padding: 0;
}

.fixed.one_column > tbody > tr > td {
  padding: 0 !important;
  margin: 0;
}

.part_rows_container {
  position: relative;
}
.part_rows_container > div.part {
  margin-bottom: 0;
}

#c_footer,
#c_header-outer,
#c_header-space,
#c_footer-outer,
#c_page-header-wrap {
  display: none;
}

.c_container-wrap.cr {
  padding-top: 0;
  min-height: 0 !important;
}

.c_container.cr {
  max-width: 100% !important;
  padding: 0;
}

p + div {
  margin-top: 0;
}

div + p,
div.indent + table,
div.action + p,
div.action + table,
div + table,
p + div,
h1 + div,
h1 + form,
h1 + h2,
h1 + p,
h1 + table,
h2 + table,
h3 + table,
table + h1,
table + h2,
table + h3,
table + p,
p + p,
ul + h2,
ul + table.mixed,
ul + table.plain,
ul + table.table,
table.mixed + table.mixed,
table.mixed + table.plain,
table.mixed + table.table,
table.plain + table.mixed,
table.plain + table.plain,
table.plain + table.table,
table.table + table.mixed,
table.table + table.plain,
table.table + table.table,
table.table + div,
table.plain + div,
table.mixed + div {
  margin-top: 0;
}

.c_slab.cr {
  padding: 0 !important;
}

.c_slab__wrapper.cr {
  max-width: none !important;
}

#content,
p,
label,
.form_label,
.form_label strong,
#form_description,
p a {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

body main.cr {
  padding-bottom: 0 !important;
}
body main.cr a, body main.cr a:link, body main.cr a:visited, body main.cr a:hover, body main.cr a:active {
  color: var(--color-lake-blue) !important;
  text-decoration: underline;
  cursor: pointer;
}
body main.cr a:hover {
  color: var(--color-lake-blue) !important;
  text-decoration: none;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border: 1px solid var(--color-gray-6);
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: var(--font-inter);
  font-size: 12px;
  line-height: 1em;
}

.daterangepicker:before,
.daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid var(--color-gray-6);
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid var(--color-gray-6);
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next:hover,
.daterangepicker .calendar-table .prev:hover {
  background-color: transparent;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 40px;
  height: 32px;
  line-height: 32px;
  font-size: 12px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table th {
  color: var(--color-gray-6);
  text-transform: uppercase;
}

.daterangepicker .calendar-table th.month {
  color: var(--color-black);
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: var(--color-sand-stone);
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #c1d4f2;
  border-color: transparent;
  color: #000;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--color-lake-blue);
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid var(--color-gray-6);
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

.no-touch .daterangepicker .btn-default, .no-touch .daterangepicker .btn-default:link, .no-touch .daterangepicker .btn-default:visited, .no-touch .daterangepicker .btn-default:hover, .no-touch .daterangepicker .btn-default:active, .supports-touch .daterangepicker .btn-default, .supports-touch .daterangepicker .btn-default:link, .supports-touch .daterangepicker .btn-default:visited, .supports-touch .daterangepicker .btn-default:hover, .supports-touch .daterangepicker .btn-default:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  font-size: 15px;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo) !important;
  box-sizing: border-box;
  text-align: center;
  margin: 0;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
  width: fit-content;
  letter-spacing: 0.5px;
  min-height: 40px;
}
.daterangepicker .btn-default:disabled {
  cursor: auto;
  opacity: var(--inactive-opacity);
}
.no-touch .daterangepicker .btn-default, .no-touch .daterangepicker .btn-default:link, .no-touch .daterangepicker .btn-default:visited, .no-touch .daterangepicker .btn-default:hover, .no-touch .daterangepicker .btn-default:active, .supports-touch .daterangepicker .btn-default, .supports-touch .daterangepicker .btn-default:link, .supports-touch .daterangepicker .btn-default:visited, .supports-touch .daterangepicker .btn-default:hover, .supports-touch .daterangepicker .btn-default:active {
  color: var(--color-lake-blue) !important;
  box-shadow: 0 0 0 1px inset var(--color-lake-blue);
}
.daterangepicker .btn-default {
  border-radius: 0;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }
  .daterangepicker .ranges ul {
    width: 140px;
  }
  .daterangepicker.single .ranges ul {
    width: 100%;
  }
  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }
  .daterangepicker.single .ranges,
  .daterangepicker.single .drp-calendar {
    float: left;
  }
  .daterangepicker {
    direction: ltr;
    text-align: left;
  }
  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }
  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }
  .daterangepicker .ranges,
  .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }
  .daterangepicker .ranges {
    float: left;
  }
  .daterangepicker.rtl .ranges {
    float: right;
  }
  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}
.page-section {
  padding: 1px 0;
}
.page-section .page-wrapper,
.page-section .page-wrapper-zero {
  margin-top: 0;
  margin-bottom: 0;
}

.page-wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-spacing);
  padding-right: var(--page-spacing);
  margin-top: var(--widget-spacing);
  margin-bottom: var(--widget-spacing);
}
.page-wrapper-zero {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-spacing-zero);
  padding-right: var(--page-spacing-zero);
  margin-top: var(--widget-spacing);
  margin-bottom: var(--widget-spacing);
}

.no-touch button.button, .no-touch button.button:link, .no-touch button.button:visited, .no-touch button.button:hover, .no-touch button.button:active, .supports-touch button.button, .supports-touch button.button:link, .supports-touch button.button:visited, .supports-touch button.button:hover, .supports-touch button.button:active,
.no-touch a.button,
.no-touch a.button:link,
.no-touch a.button:visited,
.no-touch a.button:hover,
.no-touch a.button:active,
.supports-touch a.button,
.supports-touch a.button:link,
.supports-touch a.button:visited,
.supports-touch a.button:hover,
.supports-touch a.button:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  font-size: 15px;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo) !important;
  box-sizing: border-box;
  text-align: center;
  margin: 0;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
  width: fit-content;
  letter-spacing: 0.5px;
  min-height: 40px;
}
button.button:disabled,
a.button:disabled {
  cursor: auto;
  opacity: var(--inactive-opacity);
}
.no-touch button.button--primary-red, .no-touch button.button--primary-red:link, .no-touch button.button--primary-red:visited, .no-touch button.button--primary-red:hover, .no-touch button.button--primary-red:active, .supports-touch button.button--primary-red, .supports-touch button.button--primary-red:link, .supports-touch button.button--primary-red:visited, .supports-touch button.button--primary-red:hover, .supports-touch button.button--primary-red:active,
.no-touch a.button--primary-red,
.no-touch a.button--primary-red:link,
.no-touch a.button--primary-red:visited,
.no-touch a.button--primary-red:hover,
.no-touch a.button--primary-red:active,
.supports-touch a.button--primary-red,
.supports-touch a.button--primary-red:link,
.supports-touch a.button--primary-red:visited,
.supports-touch a.button--primary-red:hover,
.supports-touch a.button--primary-red:active {
  background-color: var(--color-brand);
  color: var(--color-white) !important;
}
.no-touch button.button--primary-blue, .no-touch button.button--primary-blue:link, .no-touch button.button--primary-blue:visited, .no-touch button.button--primary-blue:hover, .no-touch button.button--primary-blue:active, .supports-touch button.button--primary-blue, .supports-touch button.button--primary-blue:link, .supports-touch button.button--primary-blue:visited, .supports-touch button.button--primary-blue:hover, .supports-touch button.button--primary-blue:active,
.no-touch a.button--primary-blue,
.no-touch a.button--primary-blue:link,
.no-touch a.button--primary-blue:visited,
.no-touch a.button--primary-blue:hover,
.no-touch a.button--primary-blue:active,
.supports-touch a.button--primary-blue,
.supports-touch a.button--primary-blue:link,
.supports-touch a.button--primary-blue:visited,
.supports-touch a.button--primary-blue:hover,
.supports-touch a.button--primary-blue:active {
  background-color: var(--color-lake-blue);
  color: var(--color-white) !important;
}
.no-touch button.button--secondary-light, .no-touch button.button--secondary-light:link, .no-touch button.button--secondary-light:visited, .no-touch button.button--secondary-light:hover, .no-touch button.button--secondary-light:active, .supports-touch button.button--secondary-light, .supports-touch button.button--secondary-light:link, .supports-touch button.button--secondary-light:visited, .supports-touch button.button--secondary-light:hover, .supports-touch button.button--secondary-light:active,
.no-touch a.button--secondary-light,
.no-touch a.button--secondary-light:link,
.no-touch a.button--secondary-light:visited,
.no-touch a.button--secondary-light:hover,
.no-touch a.button--secondary-light:active,
.supports-touch a.button--secondary-light,
.supports-touch a.button--secondary-light:link,
.supports-touch a.button--secondary-light:visited,
.supports-touch a.button--secondary-light:hover,
.supports-touch a.button--secondary-light:active {
  color: var(--color-white) !important;
  box-shadow: 0 0 0 1px inset var(--color-white);
}
.no-touch button.button--secondary-dark, .no-touch button.button--secondary-dark:link, .no-touch button.button--secondary-dark:visited, .no-touch button.button--secondary-dark:hover, .no-touch button.button--secondary-dark:active, .supports-touch button.button--secondary-dark, .supports-touch button.button--secondary-dark:link, .supports-touch button.button--secondary-dark:visited, .supports-touch button.button--secondary-dark:hover, .supports-touch button.button--secondary-dark:active,
.no-touch a.button--secondary-dark,
.no-touch a.button--secondary-dark:link,
.no-touch a.button--secondary-dark:visited,
.no-touch a.button--secondary-dark:hover,
.no-touch a.button--secondary-dark:active,
.supports-touch a.button--secondary-dark,
.supports-touch a.button--secondary-dark:link,
.supports-touch a.button--secondary-dark:visited,
.supports-touch a.button--secondary-dark:hover,
.supports-touch a.button--secondary-dark:active {
  color: var(--color-lake-blue) !important;
  box-shadow: 0 0 0 1px inset var(--color-lake-blue);
}
.no-touch button.button--secondary-black, .no-touch button.button--secondary-black:link, .no-touch button.button--secondary-black:visited, .no-touch button.button--secondary-black:hover, .no-touch button.button--secondary-black:active, .supports-touch button.button--secondary-black, .supports-touch button.button--secondary-black:link, .supports-touch button.button--secondary-black:visited, .supports-touch button.button--secondary-black:hover, .supports-touch button.button--secondary-black:active,
.no-touch a.button--secondary-black,
.no-touch a.button--secondary-black:link,
.no-touch a.button--secondary-black:visited,
.no-touch a.button--secondary-black:hover,
.no-touch a.button--secondary-black:active,
.supports-touch a.button--secondary-black,
.supports-touch a.button--secondary-black:link,
.supports-touch a.button--secondary-black:visited,
.supports-touch a.button--secondary-black:hover,
.supports-touch a.button--secondary-black:active {
  color: var(--color-black) !important;
  box-shadow: 0 0 0 1px inset var(--color-black);
}
.no-touch button.button--link, .no-touch button.button--link:link, .no-touch button.button--link:visited, .no-touch button.button--link:hover, .no-touch button.button--link:active, .supports-touch button.button--link, .supports-touch button.button--link:link, .supports-touch button.button--link:visited, .supports-touch button.button--link:hover, .supports-touch button.button--link:active,
.no-touch a.button--link,
.no-touch a.button--link:link,
.no-touch a.button--link:visited,
.no-touch a.button--link:hover,
.no-touch a.button--link:active,
.supports-touch a.button--link,
.supports-touch a.button--link:link,
.supports-touch a.button--link:visited,
.supports-touch a.button--link:hover,
.supports-touch a.button--link:active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.no-touch button.button--link:hover, .supports-touch button.button--link:hover,
.no-touch a.button--link:hover,
.supports-touch a.button--link:hover {
  color: var(--color-white) !important;
  text-decoration: none;
}

.no-touch .close-button, .no-touch .close-button:link, .no-touch .close-button:visited, .no-touch .close-button:hover, .no-touch .close-button:active, .supports-touch .close-button, .supports-touch .close-button:link, .supports-touch .close-button:visited, .supports-touch .close-button:hover, .supports-touch .close-button:active {
  text-indent: -9999px;
  overflow: hidden;
  background-image: var(--icon-close);
  background-position: center;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  background-size: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-touch .close-button--white, .no-touch .close-button--white:link, .no-touch .close-button--white:visited, .no-touch .close-button--white:hover, .no-touch .close-button--white:active, .supports-touch .close-button--white, .supports-touch .close-button--white:link, .supports-touch .close-button--white:visited, .supports-touch .close-button--white:hover, .supports-touch .close-button--white:active {
  text-indent: -9999px;
  overflow: hidden;
  background-image: var(--icon-close-white);
  background-position: center;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  background-size: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-touch .icon-button, .no-touch .icon-button:link, .no-touch .icon-button:visited, .no-touch .icon-button:hover, .no-touch .icon-button:active, .supports-touch .icon-button, .supports-touch .icon-button:link, .supports-touch .icon-button:visited, .supports-touch .icon-button:hover, .supports-touch .icon-button:active {
  text-indent: -9999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.buttons {
  display: flex;
  gap: 20px;
}

.small-link {
  font-size: clamp(0.875rem, 0.875rem + 0.0028409091 * (100vw - 576px), 1rem);
}

.has-icon {
  display: inline-block;
}
.has-icon svg {
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 4px;
}

.top-title {
  font-size: clamp(2rem, 2rem + 0.0454545455 * (100vw - 576px), 4rem);
  margin: 0;
  font-weight: var(--font-weight-light-bold);
  font-family: var(--font-libre);
  color: inherit;
}

.main-title {
  font-size: clamp(2rem, 2rem + 0.0227272727 * (100vw - 576px), 3rem);
  margin: 0 0 20px;
  font-weight: var(--font-weight-light-bold);
  font-family: var(--font-libre);
  line-height: 1.166;
  color: inherit;
}

.sub-title-responsive {
  font-size: clamp(2rem, 2rem + 0.0113636364 * (100vw - 576px), 2.5rem);
  margin: 0;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 3px;
  color: inherit;
}
@media (max-width: 768px) {
  .sub-title-responsive {
    line-height: 1;
  }
}

.sub-title {
  font-size: 32px;
  margin: 0;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: inherit;
}

.tertiary-title {
  font-size: clamp(1.375rem, 1.375rem + 0.0085227273 * (100vw - 576px), 1.75rem);
  line-height: 1.142;
  font-weight: var(--font-weight-bold);
  color: inherit;
  font-family: var(--font-archivo);
  margin: 0 0 12px;
  letter-spacing: 2px;
}

.small-title {
  font-size: clamp(1.375rem, 1.375rem + 0.0028409091 * (100vw - 576px), 1.5rem);
  line-height: 1.166;
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: inherit;
  font-family: var(--font-archivo);
  letter-spacing: 2px;
}

.splide__arrows {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.splide__arrows .splide__arrow, .splide__arrows .splide__arrow:link, .splide__arrows .splide__arrow:visited, .splide__arrows .splide__arrow:hover, .splide__arrows .splide__arrow:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  text-indent: -9999px;
  overflow: hidden;
  width: 48px;
  height: 48px;
  border-radius: 0;
  position: static;
  top: 0;
  transform: none;
  background-image: var(--icon-chevron-black-left);
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .splide__arrows .splide__arrow {
    visibility: hidden;
  }
}
.splide__arrows .splide__arrow {
  opacity: 1;
}
.splide__arrows .splide__arrow.splide__arrow--next {
  transform: rotate(180deg);
}
.splide__arrows .splide__arrow:disabled {
  cursor: auto;
  opacity: var(--inactive-opacity);
}
.splide__arrows--alt .splide__arrow, .splide__arrows--alt .splide__arrow:link, .splide__arrows--alt .splide__arrow:visited, .splide__arrows--alt .splide__arrow:hover, .splide__arrows--alt .splide__arrow:active {
  background-image: var(--icon-chevron-white-left);
}
.no-touch .splide__arrows--alt .splide__pagination__page, .no-touch .splide__arrows--alt .splide__pagination__page:link, .no-touch .splide__arrows--alt .splide__pagination__page:visited, .no-touch .splide__arrows--alt .splide__pagination__page:hover, .no-touch .splide__arrows--alt .splide__pagination__page:active, .supports-touch .splide__arrows--alt .splide__pagination__page, .supports-touch .splide__arrows--alt .splide__pagination__page:link, .supports-touch .splide__arrows--alt .splide__pagination__page:visited, .supports-touch .splide__arrows--alt .splide__pagination__page:hover, .supports-touch .splide__arrows--alt .splide__pagination__page:active {
  background-color: var(--color-gray-3);
}
@media (max-width: 768px) {
  .no-touch .splide__arrows--alt .splide__pagination__page, .no-touch .splide__arrows--alt .splide__pagination__page:link, .no-touch .splide__arrows--alt .splide__pagination__page:visited, .no-touch .splide__arrows--alt .splide__pagination__page:hover, .no-touch .splide__arrows--alt .splide__pagination__page:active, .supports-touch .splide__arrows--alt .splide__pagination__page, .supports-touch .splide__arrows--alt .splide__pagination__page:link, .supports-touch .splide__arrows--alt .splide__pagination__page:visited, .supports-touch .splide__arrows--alt .splide__pagination__page:hover, .supports-touch .splide__arrows--alt .splide__pagination__page:active {
    background-color: var(--color-gray-6);
  }
}
.no-touch .splide__arrows--alt .splide__pagination__page.is-active, .supports-touch .splide__arrows--alt .splide__pagination__page.is-active {
  background-color: var(--color-white);
}
@media (max-width: 768px) {
  .no-touch .splide__arrows--alt .splide__pagination__page.is-active, .supports-touch .splide__arrows--alt .splide__pagination__page.is-active {
    background-color: var(--color-lake-blue);
  }
}
.splide__pagination {
  position: static;
  padding: 0;
  gap: 8px;
}
.splide__pagination li {
  display: block;
}
.no-touch .splide__pagination__page, .no-touch .splide__pagination__page:link, .no-touch .splide__pagination__page:visited, .no-touch .splide__pagination__page:hover, .no-touch .splide__pagination__page:active, .supports-touch .splide__pagination__page, .supports-touch .splide__pagination__page:link, .supports-touch .splide__pagination__page:visited, .supports-touch .splide__pagination__page:hover, .supports-touch .splide__pagination__page:active {
  width: 8px;
  height: 8px;
  display: block;
  opacity: 1;
  border-radius: 50%;
  padding: 0;
  background-color: var(--color-gray-6);
}
.splide__pagination__page.is-active {
  transform: none;
}
.no-touch .splide__pagination__page.is-active, .supports-touch .splide__pagination__page.is-active {
  background-color: var(--color-lake-blue);
}

select {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  border: 1px solid var(--color-deep-taupe);
  color: var(--color-black);
  width: 100%;
  font-size: 16px;
  min-height: 46px;
  font-family: var(--font-inter);
  padding: 0 30px 0 10px;
  font-weight: var(--font-weight-semi-bold);
  background-image: var(--icon-chevron-red-bottom);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: calc(100% - 10px) 50%;
  background-color: var(--color-white);
  border-radius: 0;
  white-space: normal;
}
select:focus-visible {
  outline: none;
}

textarea {
  box-sizing: border-box;
  width: 100%;
  font: inherit;
  width: 100%;
  padding: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-deep-taupe);
  color: var(--color-black);
  height: 86px;
  font-size: 16px;
  font-family: var(--font-inter);
  font-weight: var(--font-weight-semi-bold);
  outline: none;
}

input[type=text], input[type=password], input[type=search], input[type=email], input[type=tel], input[type=url] {
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  min-height: 46px;
  font-family: var(--font-inter);
  font-weight: var(--font-weight-semi-bold);
  width: 100%;
  padding: 11px 10px;
  background: var(--color-white);
  border: 1px solid var(--color-deep-taupe);
  color: var(--color-black);
  outline: none;
}
input[type=text]::placeholder, input[type=password]::placeholder, input[type=search]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=url]::placeholder {
  color: var(--color-gray-8);
}

form {
  text-align: left;
}

.modal {
  margin-bottom: 0px !important;
  position: fixed;
  top: 0;
  left: -200vw;
  width: 100vw;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(41, 72, 120, 0.3);
  z-index: 5000;
  opacity: 0;
  transition: all var(--transition);
  padding: 0;
}
@media (max-width: 576px) {
  .modal {
    min-height: 100dvh;
    height: 100dvh;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
  }
}
.modal.visible {
  opacity: 1;
  left: 0;
  transition: all var(--transition);
}
.modal .close-button {
  position: absolute;
  top: 8px;
  right: 8px;
}
.modal__wrapper {
  position: relative;
  display: inline-block;
  max-width: 480px;
  position: relative;
  width: 100%;
  background-color: var(--color-gray-1);
}
.modal__wrapper {
  max-height: 100vh;
  padding: 40px var(--page-spacing);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (max-width: 576px) {
  .modal__wrapper {
    max-height: 100dvh;
    max-height: calc(100dvh - 20px);
    overscroll-behavior: contain;
    touch-action: pan-y;
    overflow-x: hidden;
  }
}
.modal__wrapper::-webkit-scrollbar {
  width: 6px;
}
.modal__wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.modal__wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.modal__wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.modal__title {
  font-size: clamp(1.25rem, 1.25rem + 0.0113636364 * (100vw - 576px), 1.75rem);
  font-family: var(--font-archivo);
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .modal__title {
    text-align: center;
  }
}
.modal__sub-title {
  font-size: 20px;
  text-align: center;
  font-family: var(--font-archivo);
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
}
.modal td,
.modal th {
  padding: 0 !important;
}
.modal tr.header {
  background-color: transparent;
}
.modal tr.header > td {
  font-weight: var(--bold-font-weight) !important;
  font-size: 24px;
  background-color: transparent;
  padding-bottom: 20px !important;
  text-align: center;
  line-height: 1.25;
}
.modal tr.column {
  background-color: transparent;
}
.modal tr.column > th, .modal tr.column > td {
  background-color: transparent;
  padding-bottom: 20px !important;
}
.modal--events .modal__wrapper {
  max-width: 472px;
  background-color: var(--color-white);
  padding-left: var(--page-spacing);
  padding-right: var(--page-spacing);
}

div.form_question {
  font-size: 16px;
  margin-bottom: 25px;
  padding: 0 !important;
}
div.form_question .form_label,
div.form_question label {
  display: inline-block;
}
div.form_question.required {
  background-color: transparent;
}
div.form_question.required input[type=text], div.form_question.required input[type=password], div.form_question.required input[type=search], div.form_question.required input[type=email], div.form_question.required input[type=tel], div.form_question.required input[type=url] {
  border-color: var(--color-brand) !important;
  color: var(--color-brand) !important;
}
div.form_question.required textarea,
div.form_question.required select {
  border-color: var(--color-brand) !important;
  color: var(--color-brand) !important;
}
div.form_question:has(+ .form_p) {
  margin-bottom: 5px;
}

div + div.form_h1 {
  margin-top: 80px;
}

div.form_h1 .form_label {
  font-size: clamp(1.25rem, 1.25rem + 0.0113636364 * (100vw - 576px), 1.75rem);
  line-height: 1.142;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo);
  margin: 0 0 6px;
  letter-spacing: 2px;
}

div.form_page + div.form_page {
  margin-top: 15px;
}

.form_label {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: var(--font-weight-semi-bold);
}

.form_responses {
  margin-bottom: 0;
}

.form_response {
  margin-bottom: 25px;
}

.form_text[data-required] .form_label::after,
.form_select[data-required] .form_label::after,
.form_birthdate[data-required] .form_label::after {
  content: "*";
  color: var(--color-brand);
  margin-left: 4px;
}

.form_birthdate .form_responses {
  display: flex;
  gap: 5px;
}
.form_birthdate .form_responses select {
  margin: 0 !important;
}
.form_birthdate .form_responses select[aria-label=Month] {
  flex: 0 0 auto;
  width: 50%;
}

.form_p .form_label {
  font-size: 14px;
  color: var(--color-gray-10);
}

div.form_address {
  margin-bottom: 0;
}
div.form_address > fieldset > div {
  margin-bottom: 25px;
}
div.form_address select {
  max-width: 362px;
}
div.form_address + .form_select select {
  max-width: 362px;
}

div.action {
  margin-top: 35px;
}
.no-touch div.action button.default, .no-touch div.action button.default:link, .no-touch div.action button.default:visited, .no-touch div.action button.default:hover, .no-touch div.action button.default:active, .supports-touch div.action button.default, .supports-touch div.action button.default:link, .supports-touch div.action button.default:visited, .supports-touch div.action button.default:hover, .supports-touch div.action button.default:active, .no-touch div.action button.default:link, .no-touch div.action button.default:link:link, .no-touch div.action button.default:link:visited, .no-touch div.action button.default:link:hover, .no-touch div.action button.default:link:active, .supports-touch div.action button.default:link, .supports-touch div.action button.default:link:link, .supports-touch div.action button.default:link:visited, .supports-touch div.action button.default:link:hover, .supports-touch div.action button.default:link:active, .no-touch div.action button.default:visited, .no-touch div.action button.default:visited:link, .no-touch div.action button.default:visited:visited, .no-touch div.action button.default:visited:hover, .no-touch div.action button.default:visited:active, .supports-touch div.action button.default:visited, .supports-touch div.action button.default:visited:link, .supports-touch div.action button.default:visited:visited, .supports-touch div.action button.default:visited:hover, .supports-touch div.action button.default:visited:active, .no-touch div.action button.default:hover, .no-touch div.action button.default:hover:link, .no-touch div.action button.default:hover:visited, .no-touch div.action button.default:hover:hover, .no-touch div.action button.default:hover:active, .supports-touch div.action button.default:hover, .supports-touch div.action button.default:hover:link, .supports-touch div.action button.default:hover:visited, .supports-touch div.action button.default:hover:hover, .supports-touch div.action button.default:hover:active, .no-touch div.action button.default:active, .no-touch div.action button.default:active:link, .no-touch div.action button.default:active:visited, .no-touch div.action button.default:active:hover, .no-touch div.action button.default:active:active, .supports-touch div.action button.default:active, .supports-touch div.action button.default:active:link, .supports-touch div.action button.default:active:visited, .supports-touch div.action button.default:active:hover, .supports-touch div.action button.default:active:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  font-size: 15px;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo) !important;
  box-sizing: border-box;
  text-align: center;
  margin: 0;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
  width: fit-content;
  letter-spacing: 0.5px;
  min-height: 40px;
}
div.action button.default:disabled, div.action button.default:link:disabled, div.action button.default:visited:disabled, div.action button.default:hover:disabled, div.action button.default:active:disabled {
  cursor: auto;
  opacity: var(--inactive-opacity);
}
.no-touch div.action button.default, .no-touch div.action button.default:link, .no-touch div.action button.default:visited, .no-touch div.action button.default:hover, .no-touch div.action button.default:active, .supports-touch div.action button.default, .supports-touch div.action button.default:link, .supports-touch div.action button.default:visited, .supports-touch div.action button.default:hover, .supports-touch div.action button.default:active, .no-touch div.action button.default:link, .no-touch div.action button.default:link:link, .no-touch div.action button.default:link:visited, .no-touch div.action button.default:link:hover, .no-touch div.action button.default:link:active, .supports-touch div.action button.default:link, .supports-touch div.action button.default:link:link, .supports-touch div.action button.default:link:visited, .supports-touch div.action button.default:link:hover, .supports-touch div.action button.default:link:active, .no-touch div.action button.default:visited, .no-touch div.action button.default:visited:link, .no-touch div.action button.default:visited:visited, .no-touch div.action button.default:visited:hover, .no-touch div.action button.default:visited:active, .supports-touch div.action button.default:visited, .supports-touch div.action button.default:visited:link, .supports-touch div.action button.default:visited:visited, .supports-touch div.action button.default:visited:hover, .supports-touch div.action button.default:visited:active, .no-touch div.action button.default:hover, .no-touch div.action button.default:hover:link, .no-touch div.action button.default:hover:visited, .no-touch div.action button.default:hover:hover, .no-touch div.action button.default:hover:active, .supports-touch div.action button.default:hover, .supports-touch div.action button.default:hover:link, .supports-touch div.action button.default:hover:visited, .supports-touch div.action button.default:hover:hover, .supports-touch div.action button.default:hover:active, .no-touch div.action button.default:active, .no-touch div.action button.default:active:link, .no-touch div.action button.default:active:visited, .no-touch div.action button.default:active:hover, .no-touch div.action button.default:active:active, .supports-touch div.action button.default:active, .supports-touch div.action button.default:active:link, .supports-touch div.action button.default:active:visited, .supports-touch div.action button.default:active:hover, .supports-touch div.action button.default:active:active {
  background-color: var(--color-brand);
  color: var(--color-white) !important;
}
div.action button.default, div.action button.default:link, div.action button.default:visited, div.action button.default:hover, div.action button.default:active {
  width: 100% !important;
}

.form_radio input[type=radio][data-text="Add One More"], .form_radio input[type=radio][data-text="Add Another Family Member"] {
  display: none;
}
.no-touch .form_radio input[type=radio][data-text="Add One More"] + label, .no-touch .form_radio input[type=radio][data-text="Add One More"] + label:link, .no-touch .form_radio input[type=radio][data-text="Add One More"] + label:visited, .no-touch .form_radio input[type=radio][data-text="Add One More"] + label:hover, .no-touch .form_radio input[type=radio][data-text="Add One More"] + label:active, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label:link, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label:visited, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label:hover, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label:active, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:link, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:visited, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:hover, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:active, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:link, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:visited, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:hover, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  font-size: 15px;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo) !important;
  box-sizing: border-box;
  text-align: center;
  margin: 0;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
  width: fit-content;
  letter-spacing: 0.5px;
  min-height: 40px;
}
.form_radio input[type=radio][data-text="Add One More"] + label:disabled, .form_radio input[type=radio][data-text="Add Another Family Member"] + label:disabled {
  cursor: auto;
  opacity: var(--inactive-opacity);
}
.no-touch .form_radio input[type=radio][data-text="Add One More"] + label, .no-touch .form_radio input[type=radio][data-text="Add One More"] + label:link, .no-touch .form_radio input[type=radio][data-text="Add One More"] + label:visited, .no-touch .form_radio input[type=radio][data-text="Add One More"] + label:hover, .no-touch .form_radio input[type=radio][data-text="Add One More"] + label:active, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label:link, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label:visited, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label:hover, .supports-touch .form_radio input[type=radio][data-text="Add One More"] + label:active, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:link, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:visited, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:hover, .no-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:active, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:link, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:visited, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:hover, .supports-touch .form_radio input[type=radio][data-text="Add Another Family Member"] + label:active {
  color: var(--color-lake-blue) !important;
  box-shadow: 0 0 0 1px inset var(--color-lake-blue);
}

.accordion wbm-accordion-item {
  border: 1px solid var(--color-brand);
  position: relative;
  margin-top: 10px;
  padding: 23px 30px 23px 55px;
}
@media (max-width: 768px) {
  .accordion wbm-accordion-item {
    padding: 20px 10px 20px 15px;
  }
}
.accordion wbm-accordion-item:first-child {
  margin-top: 0;
}
.accordion wbm-accordion-item:before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 24px;
  height: 24px;
  background-image: var(--icon-plus);
  background-size: 18px auto;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .accordion wbm-accordion-item:before {
    top: 16px;
  }
}
.accordion wbm-accordion-item[open] {
  border-color: var(--color-gray-1);
  background-color: var(--color-gray-1);
}
.accordion wbm-accordion-item[open]:before {
  background-image: var(--icon-minus);
}
.accordion wbm-accordion-item::part(header) {
  font-weight: var(--font-weight-semi-bold);
  color: var(--color-lake-blue);
}
@media (max-width: 768px) {
  .accordion wbm-accordion-item::part(header) {
    padding-left: 40px;
  }
}
.accordion__content {
  padding-top: 30px;
}
@media (max-width: 768px) {
  .accordion__content {
    padding-top: 22px;
  }
}

.contact-us {
  font-size: 14px;
}
@media (max-width: 768px) {
  .contact-us {
    text-align: center;
  }
}
.contact-us__head {
  margin-bottom: 10px;
}
.contact-us__footer {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .no-touch .contact-us__footer .button, .no-touch .contact-us__footer .button:link, .no-touch .contact-us__footer .button:visited, .no-touch .contact-us__footer .button:hover, .no-touch .contact-us__footer .button:active, .supports-touch .contact-us__footer .button, .supports-touch .contact-us__footer .button:link, .supports-touch .contact-us__footer .button:visited, .supports-touch .contact-us__footer .button:hover, .supports-touch .contact-us__footer .button:active {
    width: 100%;
  }
}

.col-with-aside {
  display: flex;
  gap: 55px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .col-with-aside {
    flex-direction: column;
  }
}
.col-with-aside__col {
  flex: 1;
  max-width: 594px;
  min-width: 0;
}
@media (max-width: 768px) {
  .col-with-aside__col {
    max-width: 100%;
  }
}
.col-with-aside__aside {
  flex: 1;
  max-width: 392px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .col-with-aside__aside {
    max-width: 100%;
  }
}
.col-with-aside__aside .tertiary-title {
  margin-bottom: 0;
}

.js-collapsible.expanded .js-collapsible-content::after {
  display: none;
}
.js-collapsible .js-collapsible-content {
  position: relative;
}
.js-collapsible .js-collapsible-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color-white) 100%);
}
@media (max-width: 768px) {
  .js-collapsible .js-collapsible-content::after {
    display: none;
  }
}

.inner-page-holder {
  max-width: 1096px;
}
.inner-page-holder--today {
  margin-left: 80px;
}
@media (max-width: 768px) {
  .inner-page-holder--today {
    margin-left: 0;
  }
}
.inner-page-holder--favorites {
  margin-left: 100px;
  margin-right: 100px;
}
@media (max-width: 1200px) {
  .inner-page-holder--favorites {
    margin-left: var(--page-spacing);
    margin-right: var(--page-spacing);
  }
}
@media (max-width: 768px) {
  .inner-page-holder--favorites {
    margin-left: 0;
    margin-right: 0;
  }
}

body .sticky-top-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  z-index: 99;
}
@media (max-width: 768px) {
  body .sticky-top-header.is-fixed {
    background-color: var(--color-gray-1);
  }
  body .sticky-top-header.is-fixed .main-header__logo, body .sticky-top-header.is-fixed .main-header__user, body .sticky-top-header.is-fixed .main-header__hamburger {
    display: none;
  }
  body .sticky-top-header.is-fixed .main-header__hamburger.is-visible-on-desktop {
    display: none;
  }
  body .sticky-top-header.is-fixed .main-header__nav {
    justify-content: initial;
    margin-left: 0;
    padding: 0;
  }
  body .sticky-top-header.is-fixed .main-header__nav ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  body .sticky-top-header.is-fixed .main-header__nav ul li {
    flex: 1;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  body .sticky-top-header.is-fixed .main-header__nav a {
    flex-direction: column;
    gap: 4px;
  }
  body .sticky-top-header.is-fixed .main-header__nav a.active, body .sticky-top-header.is-fixed .main-header__nav a:hover {
    color: var(--color-black);
    text-decoration: none;
  }
  body .sticky-top-header.is-fixed .main-header__nav a.active svg path, body .sticky-top-header.is-fixed .main-header__nav a:hover svg path {
    fill: var(--color-brand);
  }
  body .sticky-top-header.is-fixed .main-header__nav a svg {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }
  body .sticky-top-header.is-fixed .main-header__nav a svg path {
    fill: var(--color-deep-taupe);
  }
}
body .sticky-top-header .main-header {
  position: relative;
}
body .sticky-top-header .main-header__wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-spacing);
  padding-right: var(--page-spacing);
  padding-left: 0;
  padding-right: 0;
}
body .sticky-top-header .main-header__item {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
body .sticky-top-header .main-header__logo {
  width: 142px;
}
body .sticky-top-header .main-header__nav {
  flex: 1;
  justify-content: center;
  margin-left: 80px;
}
body .sticky-top-header .main-header__nav ul {
  margin: 0;
  list-style: none;
  font-size: clamp(0.75rem, 0.75rem + 0.0028409091 * (100vw - 576px), 0.875rem);
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  body .sticky-top-header .main-header__nav ul {
    display: none;
  }
}
body .sticky-top-header .main-header__nav ul li {
  margin-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .sticky-top-header .main-header__nav a {
  display: flex;
  text-decoration: none !important;
  color: var(--color-gray-10) !important;
  align-items: center;
}
body .sticky-top-header .main-header__nav a:visited {
  text-decoration: none !important;
  color: var(--color-gray-10) !important;
}
body .sticky-top-header .main-header__nav a.active, body .sticky-top-header .main-header__nav a:hover {
  color: var(--color-brand) !important;
  text-decoration: underline !important;
}
body .sticky-top-header .main-header__nav a svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
body .sticky-top-header .main-header__nav a svg path {
  fill: var(--color-brand);
}
body .sticky-top-header .main-header__user a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .sticky-top-header .main-header__hamburger {
  position: relative;
  display: none;
}
@media (max-width: 992px) {
  body .sticky-top-header .main-header__hamburger {
    display: none;
  }
}
body .sticky-top-header .main-header__hamburger.is-visible-on-desktop {
  display: block;
}
@media (max-width: 992px) {
  body .sticky-top-header .main-header__hamburger.is-visible-on-desktop {
    display: none;
  }
}
body .sticky-top-header .main-header__hamburger wbm-dropdown-menu::part(button) {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  body .sticky-top-header .main-header__hamburger wbm-dropdown-menu::part(dropdown) {
    position: absolute;
    left: 0;
    right: 0;
  }
}
body .sticky-top-header .main-header__hamburger-lines {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  display: flex;
  height: 18px;
  width: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
body .sticky-top-header .main-header__hamburger-lines span {
  width: 100%;
  height: 2px;
  background: var(--color-brand);
  transition: all var(--transition);
}
body .sticky-top-header .main-header__dropdown {
  width: 290px;
  background: var(--color-black);
  color: var(--color-white);
}
body .sticky-top-header .main-header__dropdown a:not(.button), body .sticky-top-header .main-header__dropdown a:not(.button):link, body .sticky-top-header .main-header__dropdown a:not(.button):visited, body .sticky-top-header .main-header__dropdown a:not(.button):hover, body .sticky-top-header .main-header__dropdown a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: none;
  cursor: pointer;
}
body .sticky-top-header .main-header__dropdown a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: underline;
}
body .sticky-top-header .main-header__dropdown {
  padding: 30px 50px 40px 40px;
  font-size: 18px;
}
@media (max-width: 768px) {
  body .sticky-top-header .main-header__dropdown {
    width: 100%;
    padding: 20px;
    font-size: 22px;
  }
}
body .sticky-top-header .main-header__dropdown-nav {
  list-style: none;
  font-family: var(--font-archivo);
  letter-spacing: 1px;
  font-weight: var(--font-weight-bold);
  margin: 0;
}
@media (max-width: 768px) {
  body .sticky-top-header .main-header__dropdown-nav {
    padding: 10px 20px;
  }
}
body .sticky-top-header .main-header__dropdown-nav li {
  padding: 32px 0 0;
}
@media (max-width: 768px) {
  body .sticky-top-header .main-header__dropdown-nav li {
    padding-top: 28px;
  }
}
body .sticky-top-header .main-header__dropdown-logo {
  width: 142px;
  display: none;
}
@media (max-width: 768px) {
  body .sticky-top-header .main-header__dropdown-logo {
    display: block;
  }
}
body .sticky-top-header .main-header__dropdown-links {
  margin: 0 20px;
  padding: 50px 0 40px;
  border-bottom: 2px solid var(--color-white);
  display: none;
}
@media (max-width: 768px) {
  body .sticky-top-header .main-header__dropdown-links {
    display: block;
  }
}
body .sticky-top-header .main-header__dropdown-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  font-size: 12px;
  width: 100%;
  justify-content: space-between;
}
body .sticky-top-header .main-header__dropdown-links ul li {
  display: flex;
}
body .sticky-top-header .main-header__dropdown-links ul a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 70px;
}
body .sticky-top-header .main-header__dropdown-links ul a.active svg path {
  fill: var(--color-white);
}
body .sticky-top-header .main-header__dropdown .close-button {
  position: absolute;
  top: 8px;
  right: 8px;
}
body .sticky-top-header .main-header wbm-header::part(header-wrapper) {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.footer {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
}
.footer p {
  margin: 0;
}
.footer__cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 55px var(--page-spacing);
  gap: 75px;
}
@media (max-width: 576px) {
  .footer__cols {
    flex-direction: column;
    padding: 45px 0;
  }
}
.footer__logo {
  width: 130px;
}
@media (max-width: 576px) {
  .footer__logo {
    width: 116px;
  }
}
.footer__contacts {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: end;
}
@media (max-width: 576px) {
  .footer__contacts {
    align-items: center;
  }
}
.footer a:not(.button) {
  font-size: 14px;
}
.footer a:not(.button), .footer a:not(.button):link, .footer a:not(.button):visited, .footer a:not(.button):hover, .footer a:not(.button):active {
  color: var(--color-sand-stone) !important;
  text-decoration: underline;
  cursor: pointer;
}
.footer a:not(.button):hover {
  color: var(--color-sand-stone) !important;
  text-decoration: none;
}
.footer__social {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 32px;
}
.footer .page-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

@font-face {
  font-family: "nimbus-sans";
  src: url("https://use.typekit.net/af/da0c19/00000000000000000001518d/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/da0c19/00000000000000000001518d/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/da0c19/00000000000000000001518d/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@font-face {
  font-family: "nimbus-sans";
  src: url("https://use.typekit.net/af/360cf4/000000000000000000012544/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/360cf4/000000000000000000012544/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/360cf4/000000000000000000012544/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}
@font-face {
  font-family: "nimbus-sans";
  src: url("https://use.typekit.net/af/50ea52/00000000000000000001011c/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"), url("https://use.typekit.net/af/50ea52/00000000000000000001011c/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"), url("https://use.typekit.net/af/50ea52/00000000000000000001011c/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
}
.brandingFooter {
  background-color: #0f1012;
  padding: 80px 0 0 0;
}

.brandingFooter__logo svg {
  width: 200px !important;
  fill: #fff;
}

.brandingFooter__logo .black,
.brandingFooter__logo .red {
  fill: #fff;
  -webkit-transition: fill 0.3s cubic-bezier(1, 0.63, 0.47, 0.8);
  transition: fill 0.3s cubic-bezier(1, 0.63, 0.47, 0.8);
}

.brandingFooter__bottom {
  padding: 40px 0;
  border-top: 1px solid #6a6869;
}

.brandingFooter__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  justify-content: center;
  list-style: none;
}

.brandingFooter__bottom-links li,
.brandingFooter__bottom-links li a {
  color: #fff;
  text-decoration: unset;
}

.brandingFooter__bottom-links li:not(:last-child)::after {
  content: " | ";
}

.brandingFooter__bottom-links li + li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 4px;
  position: relative;
  top: -2px;
}

.brandingFooter * {
  font-family: "nimbus-sans", verdana, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.brandingFooter__top-grid {
  display: flex;
  justify-content: space-between;
  gap: 10px 30px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.brandingFooter__logo span {
  display: none;
}

.brandingFooter__bottom-links {
  margin: 0;
}

.brandingFooter__top-links ul {
  list-style: none;
  margin: 0;
}

.brandingFooter__logo:hover .red {
  fill: #d42121;
  -webkit-transition: fill 0.3s cubic-bezier(1, 0.63, 0.47, 0.8);
  transition: fill 0.3s cubic-bezier(1, 0.63, 0.47, 0.8);
}

.brandingFooter__top-links a {
  color: #fff !important;
  font-size: 17px;
  line-height: 24px;
  text-decoration: unset;
}

.brandingFooter__top-links li {
  margin-bottom: 16px;
  position: relative;
  margin-left: 13px;
  padding-left: 5px;
}

.brandingFooter__top-links li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -13px;
  top: 0;
  width: 10px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMzExLjEgMjMzLjRjMTIuNSAxMi41IDEyLjUgMzIuOCAwIDQ1LjNsLTE5MiAxOTJjLTEyLjUgMTIuNS0zMi44IDEyLjUtNDUuMyAwcy0xMi41LTMyLjggMC00NS4zTDI0My4yIDI1NiA3My45IDg2LjZjLTEyLjUtMTIuNS0xMi41LTMyLjggMC00NS4zczMyLjgtMTIuNSA0NS4zIDBsMTkyIDE5MnoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px auto;
}

.brandingFooter__top-address p {
  font-family: signifier, georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
  color: #fff;
  margin: 0 0 5px 0;
}

.brandingFooter__top-address p a {
  font-family: signifier, georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
  color: #fff;
  margin: 0 0 5px 0;
  text-decoration: underline;
}

.brandingFooter__top-social-media-links {
  display: flex;
  width: 260px;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 40px 0;
}

.brandingFooter__top-social-media-links .show-for-sr {
  display: none;
}

.brandingFooter__top-social-media-links svg {
  height: 32px;
  fill: #fff;
  transition: 0.5s all;
}

.brandingFooter__top-social-media-links svg:hover {
  fill: #d42121;
}

@media (max-width: 575.98px) {
  .brandingFooter__top-grid {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .brandingFooter {
    padding: 40px 0 0 0;
  }
  .brandingFooter__top-left-logo {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .brandingFooter__bottom {
    padding: 20px 0;
  }
  .brandingFooter__bottom-links {
    justify-content: flex-start;
  }
}
.brandingFooter .container {
  width: 1150px;
  max-width: unset;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1199.98px) {
  .brandingFooter .container {
    width: calc(100% - 40px);
  }
}
@media (max-width: 575.98px) {
  .brandingFooter .container {
    width: calc(100% - 40px);
  }
}
.brandingFooter__top-social-media-links a,
.brandingFooter__top-social-media-links a:hover {
  text-decoration: unset;
}

.brandingFooter__top-links a:hover,
.brandingFooter__bottom-links li a:hover {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px;
}

.hero-landing {
  background-color: var(--color-brand);
  background-image: var(--dc-bg);
  background-size: 950px auto;
  background-position: 100% center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--color-white);
}
.hero-landing a:not(.button), .hero-landing a:not(.button):link, .hero-landing a:not(.button):visited, .hero-landing a:not(.button):hover, .hero-landing a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.hero-landing a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.hero-landing {
  min-height: 440px;
  display: flex;
  padding: 140px 0 30px;
}
@media (max-width: 768px) {
  .hero-landing {
    min-height: auto;
    padding: 0;
    background: none;
    margin-top: 30px;
  }
}
.hero-landing .main-title {
  font-size: clamp(2rem, 2rem + 0.0113636364 * (100vw - 576px), 2.5rem);
}
@media (max-width: 768px) {
  .hero-landing .main-title {
    margin-bottom: 15px;
  }
}
.hero-landing__img {
  --clip-angle: 40px;
  position: absolute;
  top: 0;
  width: calc(50% + var(--clip-angle) / 2) !important;
  height: 100% !important;
  object-fit: cover;
  left: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--clip-angle)) 100%, 0 100%);
}
.hero-landing__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3019607843);
}
.hero-landing__img img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 768px) {
  .hero-landing__img {
    display: none;
  }
}
.hero-landing__cols {
  display: flex;
  margin-left: 3.5%;
  margin-right: 3.5%;
  position: relative;
  z-index: 2;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero-landing__cols {
    flex-direction: column;
    margin: 0;
    gap: 35px;
  }
}
.hero-landing__left {
  width: 34%;
  font-size: 18px;
}
@media (max-width: 768px) {
  .hero-landing__left {
    width: 100%;
    color: var(--color-black);
  }
  .hero-landing__left a:not(.button), .hero-landing__left a:not(.button):link, .hero-landing__left a:not(.button):visited, .hero-landing__left a:not(.button):hover, .hero-landing__left a:not(.button):active {
    color: var(--color-black) !important;
    text-decoration: underline;
    cursor: pointer;
  }
  .hero-landing__left a:not(.button):hover {
    color: var(--color-black) !important;
    text-decoration: none;
  }
  .hero-landing__left {
    padding-left: var(--page-spacing);
    padding-right: var(--page-spacing);
  }
}
.hero-landing__right {
  width: 39%;
}
@media (max-width: 768px) {
  .hero-landing__right {
    width: 100%;
  }
}
.hero-landing__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}
@media (max-width: 768px) {
  .hero-landing__content {
    background-color: var(--color-brand);
    background-image: var(--dc-bg);
    background-size: 816px auto;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 410px;
    align-items: center;
    text-align: center;
    justify-content: center;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 30px);
    padding: 120px var(--page-spacing) 80px;
  }
}
.hero-landing .page-wrapper-zero {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.hero-post-registration {
  background-color: var(--color-brand);
  background-image: var(--dc-bg);
  background-size: 816px auto;
  background-position: 83% center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--color-white);
}
.hero-post-registration a:not(.button), .hero-post-registration a:not(.button):link, .hero-post-registration a:not(.button):visited, .hero-post-registration a:not(.button):hover, .hero-post-registration a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.hero-post-registration a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.hero-post-registration {
  min-height: 440px;
  display: flex;
  padding: 55px 0 25px;
}
@media (max-width: 768px) {
  .hero-post-registration {
    min-height: auto;
    flex-direction: column;
    padding: 0;
    background: none;
    margin-top: 30px;
  }
}
.hero-post-registration .main-title {
  font-size: clamp(2rem, 2rem + 0.0113636364 * (100vw - 576px), 2.5rem);
}
@media (max-width: 768px) {
  .hero-post-registration .main-title {
    margin-bottom: 15px;
  }
}
.hero-post-registration__cols {
  display: flex;
  margin-left: 3.5%;
  position: relative;
  z-index: 2;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-post-registration__cols {
    margin-left: 0;
  }
}
.hero-post-registration__left {
  width: 45%;
  font-size: 18px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .hero-post-registration__left {
    width: 100%;
    color: var(--color-black);
  }
  .hero-post-registration__left a:not(.button), .hero-post-registration__left a:not(.button):link, .hero-post-registration__left a:not(.button):visited, .hero-post-registration__left a:not(.button):hover, .hero-post-registration__left a:not(.button):active {
    color: var(--color-black) !important;
    text-decoration: underline;
    cursor: pointer;
  }
  .hero-post-registration__left a:not(.button):hover {
    color: var(--color-black) !important;
    text-decoration: none;
  }
  .hero-post-registration__left {
    padding-left: var(--page-spacing);
    padding-right: var(--page-spacing);
    padding-bottom: 0;
  }
}
.hero-post-registration__left .buttons {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .hero-post-registration__left .buttons {
    display: none;
  }
}
.hero-post-registration .page-wrapper-zero {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  display: flex;
}
.hero-post-registration__carousel {
  margin-left: -50%;
  width: 50%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-post-registration__carousel {
    width: 100%;
    margin-left: 0;
    background-color: var(--color-brand);
    background-image: var(--dc-bg);
    background-size: 816px auto;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 410px;
    align-items: center;
    text-align: center;
    justify-content: center;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 30px);
    padding: 65px 0 35px var(--page-spacing);
    flex-direction: column;
    gap: 40px;
  }
}
.hero-post-registration__carousel .splide {
  margin-left: 12%;
  width: 88%;
}
.hero-post-registration__carousel .splide__slide {
  display: flex;
  flex-direction: column;
}
.hero-post-registration__carousel .splide__slide:last-child {
  padding-right: 10px;
}
@media (max-width: 768px) {
  .hero-post-registration__carousel .splide__slide .event--carousel {
    flex: 1;
  }
}
@media (max-width: 992px) {
  .hero-post-registration__carousel .splide {
    margin-left: 0;
    width: 100%;
  }
}
.hero-post-registration__carousel .splide__arrows {
  width: 394px;
  margin-top: 25px;
}
@media (max-width: 992px) {
  .hero-post-registration__carousel .splide__arrows {
    width: 385px;
  }
}
.hero-post-registration__carousel .buttons {
  display: none;
}
@media (max-width: 768px) {
  .hero-post-registration__carousel .buttons {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}

.hero-today {
  padding-top: 10px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-spacing);
  padding-right: var(--page-spacing);
}
@media (max-width: 768px) {
  .hero-today {
    padding-top: 30px;
  }
}
.hero-today__wrapper {
  background: var(--color-gray-1);
  min-height: 436px;
  display: flex;
  align-items: stretch;
}
@media (max-width: 992px) {
  .hero-today__wrapper {
    min-height: 380px;
  }
}
@media (max-width: 768px) {
  .hero-today__wrapper {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .hero-today__wrapper {
    min-height: 0;
    background: none;
  }
}
.hero-today__content {
  width: 50%;
  display: flex;
  justify-content: center;
  padding: 6.66%;
  flex-direction: column;
}
@media (max-width: 768px) {
  .hero-today__content {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-today__content {
    padding: 28px 0;
    text-align: center;
  }
}
.hero-today__map {
  width: 50%;
}
@media (max-width: 768px) {
  .hero-today__map {
    min-height: 300px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-today__map {
    display: none;
  }
}
.hero-today__sub-title {
  color: var(--color-brand);
  margin-bottom: 10px;
}
.hero-today .top-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero-today .top-title {
    margin-bottom: 18px;
  }
}

.hero-inner {
  padding-top: 10px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-spacing);
  padding-right: var(--page-spacing);
}
@media (max-width: 768px) {
  .hero-inner {
    padding-top: 30px;
  }
}
.hero-inner__wrapper {
  background: var(--color-gray-1);
  padding: 6.66%;
  min-height: 392px;
  display: flex;
  align-items: center;
}
.hero-inner__wrapper p {
  font-size: clamp(1rem, 1rem + 0.0028409091 * (100vw - 576px), 1.125rem);
}
@media (max-width: 992px) {
  .hero-inner__wrapper {
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  .hero-inner__wrapper {
    min-height: 250px;
  }
}
@media (max-width: 576px) {
  .hero-inner__wrapper {
    min-height: 0;
    background: none;
    padding: 28px 0;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
}
.hero-inner__content {
  max-width: 600px;
}
.hero-inner .top-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero-inner .top-title {
    margin-bottom: 18px;
  }
}

.hero-v2-variant-1 {
  margin-top: 10px;
  background-color: var(--color-brand);
  position: relative;
  color: var(--color-white);
}
.hero-v2-variant-1 a:not(.button), .hero-v2-variant-1 a:not(.button):link, .hero-v2-variant-1 a:not(.button):visited, .hero-v2-variant-1 a:not(.button):hover, .hero-v2-variant-1 a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.hero-v2-variant-1 a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.hero-v2-variant-1 {
  min-height: 350px;
  display: flex;
  padding: 45px;
}
@media (max-width: 768px) {
  .hero-v2-variant-1 {
    min-height: auto;
    padding: 0;
    background: none;
    margin-top: 30px;
  }
}
.hero-v2-variant-1 .main-title {
  font-size: clamp(2rem, 2rem + 0.0113636364 * (100vw - 576px), 2.5rem);
}
@media (max-width: 768px) {
  .hero-v2-variant-1 .main-title {
    margin-bottom: 15px;
  }
}
.hero-v2-variant-1__img {
  --clip-angle: 32px;
  position: absolute;
  top: 0;
  left: 82px;
  right: 82px;
  height: 100% !important;
  object-fit: cover;
  clip-path: polygon(var(--clip-angle) 0, 100% 0, calc(100% - var(--clip-angle)) 100%, 0 100%);
}
.hero-v2-variant-1__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4509803922);
}
.hero-v2-variant-1__img img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 992px) {
  .hero-v2-variant-1__img {
    left: 52px;
    right: 52px;
  }
}
@media (max-width: 768px) {
  .hero-v2-variant-1__img {
    display: none;
  }
}
.hero-v2-variant-1__content {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 600px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .hero-v2-variant-1__content {
    color: var(--color-black);
  }
  .hero-v2-variant-1__content a:not(.button), .hero-v2-variant-1__content a:not(.button):link, .hero-v2-variant-1__content a:not(.button):visited, .hero-v2-variant-1__content a:not(.button):hover, .hero-v2-variant-1__content a:not(.button):active {
    color: var(--color-black) !important;
    text-decoration: underline;
    cursor: pointer;
  }
  .hero-v2-variant-1__content a:not(.button):hover {
    color: var(--color-black) !important;
    text-decoration: none;
  }
  .hero-v2-variant-1__content {
    text-align: left;
    max-width: none;
  }
}
.hero-v2-variant-1 .page-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-v2-variant-2 {
  margin-top: 10px;
  background-color: var(--color-brand);
  background-image: var(--dc-bg);
  background-size: 950px auto;
  background-position: 100% center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--color-white);
}
.hero-v2-variant-2 a:not(.button), .hero-v2-variant-2 a:not(.button):link, .hero-v2-variant-2 a:not(.button):visited, .hero-v2-variant-2 a:not(.button):hover, .hero-v2-variant-2 a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.hero-v2-variant-2 a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.hero-v2-variant-2 {
  display: flex;
  padding: 45px 0;
}
@media (max-width: 768px) {
  .hero-v2-variant-2 {
    padding: 0;
    background: none;
    margin-top: 30px;
  }
}
.hero-v2-variant-2 .main-title {
  font-size: clamp(2rem, 2rem + 0.0113636364 * (100vw - 576px), 2.5rem);
}
@media (max-width: 768px) {
  .hero-v2-variant-2 .main-title {
    margin-bottom: 15px;
  }
}
.hero-v2-variant-2__cols {
  display: flex;
  position: relative;
  z-index: 2;
  min-height: 218px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-v2-variant-2__cols {
    min-height: auto;
  }
}
.hero-v2-variant-2__left {
  width: 50%;
  font-size: 18px;
}
@media (max-width: 992px) {
  .hero-v2-variant-2__left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-v2-variant-2__left {
    color: var(--color-black);
  }
  .hero-v2-variant-2__left a:not(.button), .hero-v2-variant-2__left a:not(.button):link, .hero-v2-variant-2__left a:not(.button):visited, .hero-v2-variant-2__left a:not(.button):hover, .hero-v2-variant-2__left a:not(.button):active {
    color: var(--color-black) !important;
    text-decoration: underline;
    cursor: pointer;
  }
  .hero-v2-variant-2__left a:not(.button):hover {
    color: var(--color-black) !important;
    text-decoration: none;
  }
}
.hero-v2-variant-2 .page-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.hero-parallax {
  position: relative;
  min-height: calc(100dvh - 180px - 64px);
  overflow: hidden;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .hero-parallax {
    min-height: calc(100dvh - 48px);
  }
}
.hero-parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero-parallax .page-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.hero-parallax__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-parallax__container:first-child {
  --height: calc(100dvh - 180px - 64px);
  margin-top: calc(var(--height) / 4);
  min-height: calc(var(--height) / 2);
  padding-top: 0;
}
@media (max-width: 768px) {
  .hero-parallax__container:first-child {
    --height: calc(100dvh - 48px);
  }
}
.hero-parallax h2 {
  opacity: 0;
  text-align: center;
  will-change: transform;
  font-size: clamp(2rem, 2rem + 0.0397727273 * (100vw - 576px), 3.75rem);
  margin: 0;
  font-weight: var(--font-weight-light-bold);
  font-family: var(--font-libre);
  line-height: 2;
  color: var(--color-white);
  text-wrap: balance;
}
.hero-parallax * {
  will-change: transform;
}
.hero-parallax__spacer {
  height: 20vh;
}

.testimonials__item {
  display: flex;
}
@media (max-width: 768px) {
  .testimonials__item {
    flex-direction: column-reverse;
  }
}
.testimonials__user {
  flex: 0 0 auto;
  width: 42%;
  padding: 0 12px 48px 0;
}
@media (max-width: 768px) {
  .testimonials__user {
    width: 100%;
    padding: 0;
  }
}
.testimonials__quote {
  background: var(--color-gray-1);
  box-shadow: 4px 4px 0px 0px var(--color-sand-stone);
  padding: 40px;
  margin: 0 4px 4px 0;
  flex: 0 0 auto;
  flex: 1;
  font-style: italic;
  font-weight: var(--font-weight-light);
  line-height: 1.428;
}
@media (max-width: 768px) {
  .testimonials__quote {
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
  }
  .testimonials__quote:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 4px;
    width: 24px;
    height: 24px;
    background-color: var(--color-sand-stone);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
}
.testimonials .splide__arrows {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  padding-right: 12px;
}
@media (max-width: 768px) {
  .testimonials .splide__arrows {
    position: static;
    width: 100%;
    padding-right: 0;
  }
}
.testimonials .main-title {
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .testimonials .main-title {
    text-align: center;
    margin-bottom: 30px;
  }
}

.faq__cols {
  display: flex;
  gap: 55px;
}
@media (max-width: 768px) {
  .faq__cols {
    flex-direction: column;
  }
}
.faq__accordion {
  flex: 1;
}
.faq__contacts {
  flex: 0 0 auto;
  width: 350px;
  align-self: flex-end;
  padding-right: 50px;
}
@media (max-width: 992px) {
  .faq__contacts {
    width: 300px;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .faq__contacts {
    padding-right: 0;
    align-self: center;
  }
}
@media (max-width: 576px) {
  .faq__contacts {
    width: 100%;
  }
}

.schedule-now {
  margin-top: var(--widget-spacing);
  background-color: var(--color-brand);
  background-image: var(--dc-bg);
  background-size: 950px auto;
  background-position: 0 center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--color-white);
}
.schedule-now a:not(.button), .schedule-now a:not(.button):link, .schedule-now a:not(.button):visited, .schedule-now a:not(.button):hover, .schedule-now a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.schedule-now a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.schedule-now {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .schedule-now {
    min-height: 410px;
    padding-bottom: 40px;
    background-position: center;
    background-size: 816px auto;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 30px);
  }
}
.schedule-now .main-title {
  margin-bottom: 0;
}
.schedule-now__img {
  --clip-angle: 40px;
  position: absolute;
  top: 0;
  width: calc(50% + var(--clip-angle) / 2) !important;
  height: 100% !important;
  object-fit: cover;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--clip-angle) 100%);
}
@media (max-width: 768px) {
  .schedule-now__img {
    display: none;
  }
}
.schedule-now__content {
  width: 45%;
  margin-left: 3.5%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media (max-width: 768px) {
  .schedule-now__content {
    margin-left: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.schedule-now .page-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.main-carousel {
  --spacing: 40px;
  --clip-angle: 25px;
  --image-mobile-height: 376px;
}
@media (max-width: 768px) {
  .main-carousel {
    --spacing: 25px;
  }
}
@media (max-width: 576px) {
  .main-carousel .main-title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .main-carousel .splide {
    margin-right: calc(var(--page-spacing) * -1);
  }
}
.main-carousel__item {
  background-color: var(--color-sand-stone);
  padding: var(--spacing) calc(50% + var(--spacing) + var(--clip-angle) / 2) calc(var(--spacing) * 2) var(--spacing);
  position: relative;
  min-height: 400px;
  color: var(--color-black);
}
.main-carousel__item a:not(.button), .main-carousel__item a:not(.button):link, .main-carousel__item a:not(.button):visited, .main-carousel__item a:not(.button):hover, .main-carousel__item a:not(.button):active {
  color: var(--color-black) !important;
  text-decoration: underline;
  cursor: pointer;
}
.main-carousel__item a:not(.button):hover {
  color: var(--color-black) !important;
  text-decoration: none;
}
@media (max-width: 768px) {
  .main-carousel__item {
    min-height: 0;
    padding-right: var(--spacing);
    padding-bottom: calc(var(--image-mobile-height) + var(--spacing) + var(--clip-angle) / 2);
  }
}
.main-carousel__item--lake-blue {
  background-color: var(--color-lake-blue);
  color: var(--color-white);
}
.main-carousel__item--lake-blue a:not(.button), .main-carousel__item--lake-blue a:not(.button):link, .main-carousel__item--lake-blue a:not(.button):visited, .main-carousel__item--lake-blue a:not(.button):hover, .main-carousel__item--lake-blue a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.main-carousel__item--lake-blue a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.main-carousel__item--brand-red {
  background-color: var(--color-brand);
  color: var(--color-white);
}
.main-carousel__item--brand-red a:not(.button), .main-carousel__item--brand-red a:not(.button):link, .main-carousel__item--brand-red a:not(.button):visited, .main-carousel__item--brand-red a:not(.button):hover, .main-carousel__item--brand-red a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.main-carousel__item--brand-red a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.main-carousel__item--black {
  background-color: var(--color-black);
  color: var(--color-white);
}
.main-carousel__item--black a:not(.button), .main-carousel__item--black a:not(.button):link, .main-carousel__item--black a:not(.button):visited, .main-carousel__item--black a:not(.button):hover, .main-carousel__item--black a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.main-carousel__item--black a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.main-carousel__item--deep-taupe {
  background-color: var(--color-deep-taupe);
  color: var(--color-white);
}
.main-carousel__item--deep-taupe a:not(.button), .main-carousel__item--deep-taupe a:not(.button):link, .main-carousel__item--deep-taupe a:not(.button):visited, .main-carousel__item--deep-taupe a:not(.button):hover, .main-carousel__item--deep-taupe a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.main-carousel__item--deep-taupe a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
@media (max-width: 768px) {
  .main-carousel__item--shrink {
    --image-mobile-height: 200px;
  }
}
.main-carousel__img {
  position: absolute;
  top: 0;
  width: calc(50% + var(--clip-angle) / 2) !important;
  height: 100% !important;
  object-fit: cover;
  right: 0;
  clip-path: polygon(var(--clip-angle) 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 768px) {
  .main-carousel__img {
    position: absolute;
    bottom: 0;
    top: auto;
    width: 100% !important;
    height: var(--image-mobile-height) !important;
    clip-path: polygon(0 0, 100% var(--clip-angle), 100% 100%, 0 100%);
  }
}
.main-carousel .splide__arrows {
  width: auto;
  position: absolute;
  bottom: 30px;
  left: var(--spacing);
  right: calc(50% + var(--spacing) + var(--clip-angle) / 2);
}
@media (max-width: 768px) {
  .main-carousel .splide__arrows {
    position: static;
  }
}

.user {
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .user {
    gap: 12px;
    align-items: center;
  }
}

.user-photo img {
  width: 111px !important;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .user-photo img {
    width: 56px !important;
  }
}

.user-info__name {
  font-size: clamp(1.125rem, 1.125rem + 0.03125 * (100vw - 576px), 2.5rem);
  font-family: var(--font-archivo);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 768px) {
  .user-info__name {
    margin-bottom: 5px;
  }
}

.ambassador-left {
  display: flex;
  gap: 25px;
}
@media (max-width: 992px) {
  .ambassador-left {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .ambassador-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.ambassador-right {
  display: flex;
  flex-direction: column;
  margin-left: 70px;
  gap: 30px;
}
@media (max-width: 1200px) {
  .ambassador-right {
    margin-left: 40px;
  }
}
@media (max-width: 992px) {
  .ambassador-right {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .ambassador-right {
    margin-left: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.ambassador-content {
  max-width: 390px;
}
@media (max-width: 1200px) {
  .ambassador-content {
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .ambassador-content {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .ambassador-content {
    max-width: 100%;
  }
}
.ambassador-content__head {
  color: var(--color-white);
}
.ambassador-content__head a:not(.button), .ambassador-content__head a:not(.button):link, .ambassador-content__head a:not(.button):visited, .ambassador-content__head a:not(.button):hover, .ambassador-content__head a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.ambassador-content__head a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.ambassador-photo {
  width: 280px;
  margin-top: -55px;
  margin-bottom: -55px;
}
@media (max-width: 1200px) {
  .ambassador-photo {
    max-width: 220px;
  }
}
@media (max-width: 768px) {
  .ambassador-photo {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 200px;
  }
}
.ambassador-photo img {
  object-fit: cover;
  height: 100%;
}
.ambassador-highlight {
  color: var(--color-white);
}
.ambassador-highlight a:not(.button), .ambassador-highlight a:not(.button):link, .ambassador-highlight a:not(.button):visited, .ambassador-highlight a:not(.button):hover, .ambassador-highlight a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.ambassador-highlight a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.ambassador-info {
  flex: 1;
}
.ambassador-info .user-info {
  color: var(--color-white);
}
.ambassador-info .user-info a:not(.button), .ambassador-info .user-info a:not(.button):link, .ambassador-info .user-info a:not(.button):visited, .ambassador-info .user-info a:not(.button):hover, .ambassador-info .user-info a:not(.button):active {
  color: var(--color-white) !important;
  text-decoration: underline;
  cursor: pointer;
}
.ambassador-info .user-info a:not(.button):hover {
  color: var(--color-white) !important;
  text-decoration: none;
}
.ambassador-info .user-info {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .ambassador-info .user-info {
    margin-bottom: 15px;
  }
}
.ambassador-info .user-info__name {
  font-size: clamp(2rem, 2rem + 0.0227272727 * (100vw - 576px), 3rem);
}
@media (max-width: 768px) {
  .ambassador-info .user-info__name {
    margin-bottom: 10px;
  }
}

.blue-box {
  --clip-angle: 40px;
  background: var(--color-lake-blue);
  display: flex;
  min-height: 440px;
  color: var(--color-sand-stone);
}
.blue-box a:not(.button), .blue-box a:not(.button):link, .blue-box a:not(.button):visited, .blue-box a:not(.button):hover, .blue-box a:not(.button):active {
  color: var(--color-sand-stone) !important;
  text-decoration: none;
  cursor: pointer;
}
.blue-box a:not(.button):hover {
  color: var(--color-sand-stone) !important;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .blue-box {
    flex-direction: column;
  }
}
.blue-box__left {
  background-color: color-mix(in srgb, var(--color-lake-blue) 84%, var(--color-black));
  background-image: var(--dc-black-bg);
  background-size: 816px auto;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(calc(100% - var(--clip-angle)) 0, 100% 100%, 0 100%, 0 0);
  padding: 55px 0 55px var(--page-spacing);
  display: flex;
}
@media (max-width: 768px) {
  .blue-box__left {
    background-size: 766px auto;
    background-position: center -10%;
    padding: 55px var(--page-spacing) 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
    display: block;
  }
}
.blue-box__right {
  flex: 1;
  padding: 55px var(--page-spacing) 55px 0;
  display: flex;
}
@media (max-width: 768px) {
  .blue-box__right {
    padding: 15px var(--page-spacing) 45px;
  }
}

.blue-box-wide {
  --clip-angle: 40px;
  background: var(--color-lake-blue);
  position: relative;
  color: var(--color-sand-stone);
}
.blue-box-wide a:not(.button), .blue-box-wide a:not(.button):link, .blue-box-wide a:not(.button):visited, .blue-box-wide a:not(.button):hover, .blue-box-wide a:not(.button):active {
  color: var(--color-sand-stone) !important;
  text-decoration: none;
  cursor: pointer;
}
.blue-box-wide a:not(.button):hover {
  color: var(--color-sand-stone) !important;
  text-decoration: underline;
}
.blue-box-wide {
  margin-top: var(--widget-spacing);
  margin-bottom: var(--widget-spacing);
}
.blue-box-wide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + var(--clip-angle) / 2);
  bottom: 0;
  background-color: color-mix(in srgb, var(--color-lake-blue) 84%, var(--color-black));
  background-image: var(--dc-black-bg);
  background-size: 816px auto;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(calc(100% - var(--clip-angle)) 0, 100% 100%, 0 100%, 0 0);
}
@media (max-width: 768px) {
  .blue-box-wide:before {
    display: none;
  }
}
.blue-box-wide__wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-spacing);
  padding-right: var(--page-spacing);
  position: relative;
  padding-top: 55px;
  padding-bottom: 55px;
}
@media (max-width: 768px) {
  .blue-box-wide__wrapper {
    padding: 0;
  }
}

.coupon {
  background-color: var(--color-deep-taupe);
  padding: 40px var(--page-spacing);
  color: var(--color-white);
}
.coupon a:not(.button), .coupon a:not(.button):link, .coupon a:not(.button):visited, .coupon a:not(.button):hover, .coupon a:not(.button):active {
  color: var(--color-sand-stone) !important;
  text-decoration: underline;
  cursor: pointer;
}
.coupon a:not(.button):hover {
  color: var(--color-sand-stone) !important;
  text-decoration: none;
}
.coupon {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--page-spacing);
  min-height: 390px;
  box-shadow: 4px 4px 0px 0px var(--color-lake-blue);
}
@media (max-width: 768px) {
  .coupon {
    flex-direction: column;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.coupon__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 20px;
}
@media (max-width: 768px) {
  .coupon__left {
    display: contents;
  }
}
.coupon__right {
  flex: 0 0 auto;
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .coupon__right {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .coupon__right {
    display: contents;
  }
}
@media (max-width: 768px) {
  .coupon__head {
    order: 1;
  }
}
.coupon__head .sub-title-responsive {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .coupon__head .sub-title-responsive {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.coupon__photo {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .coupon__photo {
    order: 2;
    margin-bottom: 20px;
  }
}
.coupon__photo img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 768px) {
  .coupon__photo img {
    aspect-ratio: 1/0.75;
  }
}
@media (max-width: 768px) {
  .coupon__footer {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.coupon__footer p {
  margin-bottom: 15px;
}

.timeline-header {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .timeline-header {
    text-align: center;
    margin-bottom: 30px;
  }
}
.timeline-header__title {
  font-size: clamp(2rem, 2rem + 0.0227272727 * (100vw - 576px), 3rem);
  margin: 0 0 20px;
  font-weight: var(--font-weight-light-bold);
  font-family: var(--font-libre);
  line-height: 1.166;
  color: inherit;
}
.timeline-header__sub-title {
  font-size: clamp(1.25rem, 1.25rem + 0.0113636364 * (100vw - 576px), 1.75rem);
  line-height: 1.142;
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  font-family: var(--font-archivo);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.timeline-header--with-splide {
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .timeline-header--with-splide {
    margin-bottom: 6px;
  }
}
.timeline-header-sub-title {
  font-size: clamp(1.25rem, 1.25rem + 0.0113636364 * (100vw - 576px), 1.75rem);
  line-height: 1.142;
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  font-family: var(--font-archivo);
  letter-spacing: 1px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .timeline-header-sub-title {
    margin-bottom: 30px;
  }
}

.timeline {
  --top-dot-position: 5px;
}
@media (max-width: 992px) {
  .timeline {
    --top-dot-position: 4px;
  }
}
@media (max-width: 768px) {
  .timeline {
    --top-dot-position: 3px;
  }
}
@media (max-width: 576px) {
  .timeline {
    --top-dot-position: 1px;
  }
}
.timeline__item {
  position: relative;
  overflow: hidden;
}
.timeline__item::after {
  content: "";
  width: 2px;
  background: var(--color-sand-stone);
  position: absolute;
  top: var(--top-dot-position);
  bottom: -99999px;
  left: 5px;
}
.timeline__item::before {
  content: "";
  width: 2px;
  background: var(--color-sand-stone);
  position: absolute;
  top: -99999px;
  bottom: calc(100% - var(--top-dot-position));
  left: 5px;
}
.timeline__item:first-child::before {
  display: none;
}
.timeline__item:last-child::after {
  display: none;
}
.timeline__item:last-child .timeline__item-inner {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.timeline__item-inner {
  margin: 0 0 18px 36px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--color-gray-1);
}
@media (max-width: 768px) {
  .timeline__item-inner {
    margin-left: 24px;
  }
}
.timeline__item-inner::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--color-brand);
  border-radius: 50%;
  position: absolute;
  top: var(--top-dot-position);
  left: 0;
  z-index: 2;
}
.timeline__item time {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(0.75rem, 0.75rem + 0.0085227273 * (100vw - 576px), 1.125rem);
  font-family: var(--font-inter);
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .timeline__item time {
    margin-bottom: 18px;
  }
}
.timeline__item-title {
  font-size: clamp(1.25rem, 1.25rem + 0.0113636364 * (100vw - 576px), 1.75rem);
  line-height: 1.142;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  font-family: var(--font-archivo);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.js-timeline-carousel .splide__arrows {
  margin-top: 20px;
}

.timeline-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 36px 36px 0;
}
@media (max-width: 768px) {
  .timeline-footer {
    padding: 50px calc(var(--page-spacing) + 24px) 34px;
    background-color: var(--color-sand-stone);
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
  }
}

.timeline-v2 {
  --top-dot-position: 5px;
  font-size: 16px;
}
@media (max-width: 992px) {
  .timeline-v2 {
    --top-dot-position: 4px;
  }
}
@media (max-width: 768px) {
  .timeline-v2 {
    --top-dot-position: 3px;
  }
}
@media (max-width: 576px) {
  .timeline-v2 {
    --top-dot-position: 1px;
  }
}
.timeline-v2__item {
  position: relative;
  overflow: hidden;
}
.timeline-v2__item::after {
  content: "";
  width: 2px;
  background: var(--color-sand-stone);
  position: absolute;
  top: var(--top-dot-position);
  bottom: -99999px;
  left: 5px;
}
.timeline-v2__item::before {
  content: "";
  width: 2px;
  background: var(--color-sand-stone);
  position: absolute;
  top: -99999px;
  bottom: calc(100% - var(--top-dot-position));
  left: 5px;
}
.timeline-v2__item:first-child::before {
  display: none;
}
.timeline-v2__item:last-child::after {
  display: none;
}
.timeline-v2__item:last-child .timeline-v2__item-inner {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.timeline-v2__item-inner {
  margin: 0 0 18px 36px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--color-gray-3);
}
@media (max-width: 768px) {
  .timeline-v2__item-inner {
    margin-left: 24px;
  }
}
.timeline-v2__item-inner::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--color-brand);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  position: absolute;
  top: var(--top-dot-position);
  left: 0;
  z-index: 2;
}
.timeline-v2__item-head {
  margin-bottom: 6px;
}
.timeline-v2__item-head time {
  display: block;
  font-family: var(--font-inter);
  font-weight: var(--font-weight-bold);
  color: var(--color-brand);
  margin-bottom: 5px;
}
.timeline-v2__item-head small {
  display: block;
  font-family: var(--font-inter);
  font-weight: var(--font-weight-light-bold);
  color: var(--color-black);
  font-size: 12px;
  margin-bottom: 17px;
}
.timeline-v2__item-event {
  margin-bottom: 12px;
}
.timeline-v2__item-event:last-child {
  margin-bottom: 0;
}
.timeline-v2__item-event p {
  margin-bottom: 8px;
}
.timeline-v2__item-event wbm-accordion-item {
  padding-bottom: 6px;
}
.timeline-v2__item-event wbm-accordion-item[open]:before {
  background-image: var(--icon-minus);
}
.timeline-v2__item-event wbm-accordion-item[open]::part(header)::after {
  content: "-";
}
.timeline-v2__item-event wbm-accordion-item::part(header) {
  color: var(--color-gray-8);
  display: inline-block;
}
.timeline-v2__item-event wbm-accordion-item::part(header)::after {
  content: "+";
}
.timeline-v2__item-event wbm-accordion-item p {
  margin: 8px 0 0;
}
.timeline-v2__item-title {
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  font-family: var(--font-archivo);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.event {
  container-type: inline-size;
  container-name: event;
  color: var(--color-gray-10);
}
.event a:not(.button), .event a:not(.button):link, .event a:not(.button):visited, .event a:not(.button):hover, .event a:not(.button):active {
  color: var(--color-lake-blue) !important;
  text-decoration: underline;
  cursor: pointer;
}
.event a:not(.button):hover {
  color: var(--color-lake-blue) !important;
  text-decoration: none;
}
.event {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  font-size: 14px;
  min-height: 264px;
  padding: 0 !important;
}
@media (max-width: 768px) {
  .event {
    flex-direction: column;
    text-align: center;
    background-color: var(--color-gray-1);
    padding: 20px !important;
  }
}
.event__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--color-gray-1);
  gap: 20px;
}
@media (max-width: 768px) {
  .event__left {
    display: contents;
  }
}
.event__right {
  flex: 0 0 auto;
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@container event (max-width: 576px) {
  .event__right {
    display: none;
  }
}
@media (max-width: 768px) {
  .event__right {
    display: contents;
  }
}
.event__top {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .event__top {
    order: 1;
  }
}
.event__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-black);
  font-size: 12px;
  text-transform: uppercase;
}
.event__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.event__body p {
  margin-bottom: 16px;
}
.event__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-black);
  gap: 10px;
}
@media (max-width: 768px) {
  .event__footer {
    order: 3;
  }
}
.event__photo {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .event__photo {
    order: 2;
    margin-top: 20px;
    margin-bottom: 35px;
  }
}
.event__photo img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 768px) {
  .event__photo img {
    aspect-ratio: 1/0.65;
  }
}
.event__title {
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-brand);
  overflow-wrap: anywhere;
  line-height: var(--line-height-default);
}
.event__spots {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 4px;
  text-align: center;
}
.event__spots-value {
  text-transform: uppercase;
}
.event__spots-stats {
  height: 4px;
  width: 98px;
  background-color: var(--color-lake-blue);
  border-radius: 2px;
  position: relative;
}
.event__spots-stats div {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--color-gray-3);
  border-radius: 2px;
}
.no-touch .event__button, .no-touch .event__button:link, .no-touch .event__button:visited, .no-touch .event__button:hover, .no-touch .event__button:active, .supports-touch .event__button, .supports-touch .event__button:link, .supports-touch .event__button:visited, .supports-touch .event__button:hover, .supports-touch .event__button:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  font-size: 15px;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo) !important;
  box-sizing: border-box;
  text-align: center;
  margin: 0;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
  width: fit-content;
  letter-spacing: 0.5px;
  min-height: 40px;
}
.event__button:disabled {
  cursor: auto;
  opacity: var(--inactive-opacity);
}
.no-touch .event__button, .no-touch .event__button:link, .no-touch .event__button:visited, .no-touch .event__button:hover, .no-touch .event__button:active, .supports-touch .event__button, .supports-touch .event__button:link, .supports-touch .event__button:visited, .supports-touch .event__button:hover, .supports-touch .event__button:active {
  color: var(--color-lake-blue) !important;
  box-shadow: 0 0 0 1px inset var(--color-lake-blue);
}
.event__button {
  text-decoration: none !important;
}
.event__today {
  background-color: var(--color-brand);
  padding: 5px 6px 3px;
  text-transform: uppercase;
  color: var(--color-white);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  border-radius: 2px;
}
.event__today::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: var(--icon-flame-white);
  margin-right: 3px;
}
.no-touch .event__favorite-button, .no-touch .event__favorite-button:link, .no-touch .event__favorite-button:visited, .no-touch .event__favorite-button:hover, .no-touch .event__favorite-button:active, .supports-touch .event__favorite-button, .supports-touch .event__favorite-button:link, .supports-touch .event__favorite-button:visited, .supports-touch .event__favorite-button:hover, .supports-touch .event__favorite-button:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  text-indent: -9999px;
  overflow: hidden;
  width: 24px;
  height: 24px;
  background-image: var(--icon-favorite);
  background-size: 14px auto;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-touch .event__favorite-button.active, .no-touch .event__favorite-button.active:link, .no-touch .event__favorite-button.active:visited, .no-touch .event__favorite-button.active:hover, .no-touch .event__favorite-button.active:active, .supports-touch .event__favorite-button.active, .supports-touch .event__favorite-button.active:link, .supports-touch .event__favorite-button.active:visited, .supports-touch .event__favorite-button.active:hover, .supports-touch .event__favorite-button.active:active {
  background-image: var(--icon-favorite-active);
}
.event--special {
  color: var(--color-white);
}
.event--special a:not(.button), .event--special a:not(.button):link, .event--special a:not(.button):visited, .event--special a:not(.button):hover, .event--special a:not(.button):active {
  color: var(--color-sand-stone) !important;
  text-decoration: underline;
  cursor: pointer;
}
.event--special a:not(.button):hover {
  color: var(--color-sand-stone) !important;
  text-decoration: none;
}
@media (max-width: 768px) {
  .event--special {
    background-color: var(--color-brand);
    background-image: var(--dc-bg);
    background-size: 816px auto;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.event--special .event__left {
  background-color: var(--color-brand);
  background-image: var(--dc-bg);
  background-size: 678px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.event--special .event__head {
  color: var(--color-white);
}
.event--special .event__title {
  color: var(--color-white);
}
.event--special .event__footer {
  color: var(--color-white);
  justify-content: center;
}
.event--special .event__footer:has(> :nth-child(2)) {
  justify-content: space-between;
}
.no-touch .event--special .event__button, .no-touch .event--special .event__button:link, .no-touch .event--special .event__button:visited, .no-touch .event--special .event__button:hover, .no-touch .event--special .event__button:active, .supports-touch .event--special .event__button, .supports-touch .event--special .event__button:link, .supports-touch .event--special .event__button:visited, .supports-touch .event--special .event__button:hover, .supports-touch .event--special .event__button:active {
  color: var(--color-white) !important;
  box-shadow: 0 0 0 1px inset var(--color-white);
}
.event--special .event__spots-stats {
  background-color: var(--color-gray-1);
}
.event--special .event__spots-stats div {
  background-color: var(--color-gray-dark);
}
.event--card {
  box-shadow: 0 0 0 1px var(--color-brand) inset;
  min-height: 298px;
  background-color: var(--color-white);
}
@media (max-width: 768px) {
  .event--card {
    background: none;
  }
}
.event--card .event__left {
  background: none;
}
.event--card .event__footer {
  font-size: 16px;
}
.event--card .event__footer .event__footer-action {
  display: flex;
  align-items: center;
  gap: 20px;
}
.event--card .event__footer .event__user-number {
  color: var(--color-brand);
}
.event--card .event__footer .event__edit-button, .event--card .event__footer .event__edit-button:link, .event--card .event__footer .event__edit-button:visited, .event--card .event__footer .event__edit-button:hover, .event--card .event__footer .event__edit-button:active {
  color: var(--color-deep-taupe) !important;
  text-decoration: underline;
  cursor: pointer;
}
.event--card .event__footer .event__edit-button:hover {
  color: var(--color-deep-taupe) !important;
  text-decoration: none;
}
.event--carousel {
  box-shadow: 0 0 0 1px var(--color-brand) inset;
  min-height: 252px;
  background-color: var(--color-white);
  flex: 1;
}
.event--carousel .event__left {
  background: none;
}
.event--carousel .event__footer {
  font-size: 16px;
}
.event--carousel .event__footer .event__footer-action {
  display: flex;
  align-items: center;
  gap: 20px;
}
.event--carousel .event__footer .event__user-number {
  color: var(--color-brand);
}
.event--carousel .event__footer .event__edit-button, .event--carousel .event__footer .event__edit-button:link, .event--carousel .event__footer .event__edit-button:visited, .event--carousel .event__footer .event__edit-button:hover, .event--carousel .event__footer .event__edit-button:active {
  color: var(--color-deep-taupe) !important;
  text-decoration: underline;
  cursor: pointer;
}
.event--carousel .event__footer .event__edit-button:hover {
  color: var(--color-deep-taupe) !important;
  text-decoration: none;
}

.my-events {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.hub {
  background-color: var(--color-lake-blue);
  padding: 25px 20px 30px;
  box-shadow: 4px 4px 0px 0px var(--color-black);
  color: var(--color-white);
}
.hub a:not(.button), .hub a:not(.button):link, .hub a:not(.button):visited, .hub a:not(.button):hover, .hub a:not(.button):active {
  color: var(--color-sand-stone) !important;
  text-decoration: underline;
  cursor: pointer;
}
.hub a:not(.button):hover {
  color: var(--color-sand-stone) !important;
  text-decoration: none;
}
.hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: clamp(0.875rem, 0.875rem + 0.0028409091 * (100vw - 576px), 1rem);
  gap: 10px;
}
@media (max-width: 768px) {
  .hub {
    padding: 35px 20px;
  }
}
.hub__title {
  font-size: 32px;
  margin: 0;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-archivo);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.hub__body {
  margin-bottom: 10px;
}

.personal-info-form {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-spacing);
  padding-right: var(--page-spacing);
  margin-top: calc(var(--widget-spacing) / 2);
  margin-bottom: var(--widget-spacing) !important;
}
.personal-info-form > .form_container {
  max-width: 594px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .personal-info-form div.hidden + div.form_h1 {
    margin-top: 0 !important;
  }
}

.parent-share-form div + div.form_h1 {
  margin-top: 0;
}
@media (max-width: 576px) {
  .parent-share-form div + div.form_h1 {
    text-align: center;
  }
}

.tell-us-more {
  display: flex;
  justify-content: space-between;
  padding-right: 102px;
}
@media (max-width: 1200px) {
  .tell-us-more {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .tell-us-more {
    flex-direction: column;
  }
}
.tell-us-more__left {
  width: 40%;
}
@media (max-width: 992px) {
  .tell-us-more__left {
    width: 43%;
  }
}
@media (max-width: 768px) {
  .tell-us-more__left {
    width: 100%;
    text-align: center;
    min-height: 300px;
    padding: 40px var(--page-spacing);
    position: relative;
    background-color: color-mix(in srgb, var(--color-lake-blue) 84%, var(--color-black));
    background-image: var(--dc-black-bg);
    background-size: 767px auto;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.tell-us-more__right {
  width: 40%;
  max-width: 392px;
  margin-top: 45px;
}
@media (max-width: 992px) {
  .tell-us-more__right {
    width: 43%;
  }
}
@media (max-width: 768px) {
  .tell-us-more__right {
    width: 100%;
    margin-top: 0;
    max-width: none;
    text-align: center;
    padding: 20px var(--page-spacing) 40px;
  }
}
.tell-us-more__progress {
  background-color: var(--color-brand);
  padding: 4px;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 25px;
}
.tell-us-more__progress::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: var(--icon-progress);
}
.tell-us-more__form {
  margin-bottom: 30px;
}
.tell-us-more .main-title {
  color: var(--color-white);
}
.tell-us-more .form_label {
  font-size: clamp(1.375rem, 1.375rem + 0.0028409091 * (100vw - 576px), 1.5rem);
  line-height: 1.166;
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  font-family: var(--font-archivo);
  letter-spacing: 2px;
  font-size: 24px;
  margin-bottom: 20px;
}
.tell-us-more select {
  border-color: var(--color-white);
  font-size: 18px;
  min-height: 56px;
  font-family: var(--font-archivo) !important;
  padding: 0 40px 0 20px;
  font-weight: var(--font-weight-bold);
  background-image: var(--icon-arrow-white-bottom);
  background-size: 9px auto;
  background-position: calc(100% - 20px) 50%;
  background-color: transparent;
  color: var(--color-white);
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .tell-us-more .form_select {
    text-align: center;
  }
}
.tell-us-more__question-answer {
  margin-bottom: 40px;
}
.tell-us-more__question {
  line-height: 1.166;
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  font-family: var(--font-archivo);
  letter-spacing: 2px;
  font-size: 24px;
  margin-bottom: 15px;
}
.tell-us-more__answer {
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  font-family: var(--font-archivo);
  font-size: 20px;
}

.grid-events__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 992px) {
  .grid-events__head {
    flex-direction: column;
  }
}
.grid-events__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .grid-events__filters {
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }
}
.grid-events__filters select {
  border: none;
  font-size: clamp(0.875rem, 0.875rem + 0.0056818182 * (100vw - 576px), 1.125rem);
  line-height: var(--line-height-default);
  color: var(--color-lake-blue);
  font-family: var(--font-archivo) !important;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  min-height: auto;
  width: auto;
  padding: 0 18px 0 0;
  background-image: var(--icon-arrow-blue-bottom);
  background-size: 9px auto;
  background-position: 100% center;
  background-repeat: no-repeat;
  text-align: right;
}
@media (max-width: 992px) {
  .grid-events__filters select {
    text-align: left;
  }
}
.grid-events__filters input {
  border: none;
  font-size: clamp(0.875rem, 0.875rem + 0.0056818182 * (100vw - 576px), 1.125rem);
  line-height: var(--line-height-default);
  color: var(--color-lake-blue);
  font-family: var(--font-archivo) !important;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  min-height: auto;
  width: 255px;
  padding: 0 25px 0 0;
  background-image: var(--icon-date);
  background-repeat: no-repeat;
  background-position: 100% center;
  background-size: 15px auto;
  text-align: right;
}
.grid-events__filters input::placeholder {
  color: var(--color-lake-blue);
}
.grid-events .main-title {
  margin-bottom: 0;
}
.grid-events .no-event-results {
  display: none;
  margin-top: 40px;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 992px) {
  .grid-events .no-event-results {
    margin-top: 20px;
  }
}
.grid-events .no-event-results.visible {
  display: block;
}

.filter-cat-results {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .filter-cat-results {
    margin-top: 20px;
  }
}
.filter-cat-results .card.coming-soon {
  opacity: var(--inactive-opacity);
  pointer-events: none;
}
.filter-cat-results .show-more {
  margin-top: 40px !important;
}
@media (max-width: 992px) {
  .filter-cat-results .show-more {
    width: 100% !important;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.grid .grid-sizer,
.grid .gutter-sizer {
  display: none;
}
.grid .grid-item {
  display: flex;
}
.grid .grid-item .event {
  flex: 1;
  width: 100%;
}

.stacked-slide {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.daterangepicker.auto-apply .drp-buttons {
  display: block;
}
.daterangepicker.auto-apply .drp-buttons > * {
  display: none;
}
.daterangepicker.auto-apply .drp-buttons > .cancelBtn {
  display: inline-block;
}

.events-calendar {
  margin-top: 10px;
}
.events-calendar .portal_datepicker_container {
  margin-top: 0;
  display: block;
}
.events-calendar .portal_events,
.events-calendar .portal_datepicker_sidebar {
  width: 100%;
}
.events-calendar .portal_datepicker_sidebar .portal_events + div {
  margin: 30px 0 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.events-calendar .portal_datepicker_sidebar .portal_events + div > div {
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.events-calendar .portal_datepicker_sidebar .portal_events + div > div:nth-child(1) {
  display: none;
}
.events-calendar .portal_datepicker_sidebar .portal_events + div > div .calendar_legend {
  margin: 0 8px 0 0;
  width: 20px;
  height: 20px;
  border: none;
}
.events-calendar .portal_datepicker_sidebar .portal_events + div > div:nth-child(4) .calendar_legend {
  border: 1px solid var(--color-gray-3);
}
.events-calendar .ui-datepicker {
  width: 100%;
  color: var(--color-black);
  padding: 0;
}
.events-calendar .ui-datepicker .ui-datepicker-header {
  padding: 0;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.events-calendar .ui-datepicker .ui-datepicker-title {
  order: 2;
  font-size: 12px;
  padding: 0;
  text-align: center;
  margin: 0;
  flex: 1;
  text-transform: uppercase;
}
.events-calendar .ui-datepicker .ui-datepicker-prev,
.events-calendar .ui-datepicker .ui-datepicker-next {
  position: relative;
  width: 48px;
  height: 48px;
  background-position: center;
  background-size: 11px auto;
  background-repeat: no-repeat;
}
.events-calendar .ui-datepicker .ui-datepicker-prev span,
.events-calendar .ui-datepicker .ui-datepicker-next span {
  display: none;
}
.events-calendar .ui-datepicker .ui-datepicker-prev {
  order: 1;
  background-image: var(--icon-chevron-black-left);
}
.events-calendar .ui-datepicker .ui-datepicker-next {
  order: 3;
  background-image: var(--icon-chevron-black-left);
  transform: rotate(180deg);
}
.events-calendar .ui-datepicker table.ui-datepicker-calendar {
  table-layout: fixed;
  background-color: transparent !important;
  margin-bottom: 0 !important;
  font-size: 12px;
}
.events-calendar .ui-datepicker table.ui-datepicker-calendar th {
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-6);
  text-transform: uppercase;
  padding: 9px 3px !important;
}
.events-calendar .ui-datepicker table.ui-datepicker-calendar td {
  background-color: transparent !important;
  color: var(--color-black);
  padding: 1px !important;
}
.events-calendar .ui-datepicker table.ui-datepicker-calendar td a,
.events-calendar .ui-datepicker table.ui-datepicker-calendar td span {
  display: block;
  padding: 9px 3px;
  display: flex;
  justify-content: center;
  text-align: center;
  background: var(--color-white);
  align-items: center;
  color: inherit !important;
  text-decoration: none !important;
  position: relative;
}
.events-calendar .ui-datepicker table.ui-datepicker-calendar td.past-date {
  opacity: var(--inactive-opacity);
}
.events-calendar .ui-datepicker table.ui-datepicker-calendar td.available a,
.events-calendar .ui-datepicker table.ui-datepicker-calendar td.available span {
  background: #c1d4f2;
}
.events-calendar .ui-datepicker table.ui-datepicker-calendar td.ui-datepicker-current-day.available a,
.events-calendar .ui-datepicker table.ui-datepicker-calendar td.ui-datepicker-current-day.available span {
  background-color: var(--color-lake-blue) !important;
  color: var(--color-white) !important;
}
.event_list_display {
  padding-left: 0;
  margin-top: 40px;
}
.event_list_display .item {
  margin-bottom: 12px;
}
.event_list_display .item:last-child {
  margin-bottom: 0;
}
.event_list_display .item > div.event {
  all: unset;
  padding: 0 !important;
  width: 100%;
}

.calendar_legend.available {
  background-color: #c1d4f2 !important;
}

.calendar_legend.unavailable {
  background-color: #e9ded3 !important;
}

.places-widget-wrapper .tertiary-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .places-widget-wrapper .tertiary-title {
    text-align: center;
    margin-bottom: 25px;
  }
}

.places-widget__desktop {
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .places-widget__desktop {
    display: none;
  }
}
.places-widget__desktop .places-widget__list {
  flex: 0 0 auto;
  display: flex;
  width: 42%;
}
@media (max-width: 992px) {
  .places-widget__desktop .places-widget__list {
    width: 50%;
  }
}
.places-widget__desktop .places-widget__list .splide {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.places-widget__desktop .places-widget__list .splide__track {
  flex: 1;
}
.places-widget__desktop .places-widget__map-placeholder {
  overflow: hidden;
  flex: 0 0 auto;
  width: calc(58% - 25px);
  height: 552px;
}
@media (max-width: 992px) {
  .places-widget__desktop .places-widget__map-placeholder {
    width: calc(50% - 25px);
  }
}
.places-widget__tabs [data-tabs] {
  display: flex;
  border: 1px solid var(--color-deep-taupe);
}
.no-touch .places-widget__tabs [data-tabs] button, .no-touch .places-widget__tabs [data-tabs] button:link, .no-touch .places-widget__tabs [data-tabs] button:visited, .no-touch .places-widget__tabs [data-tabs] button:hover, .no-touch .places-widget__tabs [data-tabs] button:active, .supports-touch .places-widget__tabs [data-tabs] button, .supports-touch .places-widget__tabs [data-tabs] button:link, .supports-touch .places-widget__tabs [data-tabs] button:visited, .supports-touch .places-widget__tabs [data-tabs] button:hover, .supports-touch .places-widget__tabs [data-tabs] button:active {
  -webkit-appearance: none;
  appearance: button;
  padding: 0;
  margin: 0;
  color: inherit;
  box-sizing: border-box;
  background: none;
  font-family: var(--font-inter) !important;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  text-align: left;
  line-height: 1.5;
  flex: 1;
  text-align: center;
  color: var(--color-deep-taupe);
  font-family: var(--font-archivo);
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  padding: 8px;
}
.no-touch .places-widget__tabs [data-tabs] button.active, .no-touch .places-widget__tabs [data-tabs] button.active:link, .no-touch .places-widget__tabs [data-tabs] button.active:visited, .no-touch .places-widget__tabs [data-tabs] button.active:hover, .no-touch .places-widget__tabs [data-tabs] button.active:active, .supports-touch .places-widget__tabs [data-tabs] button.active, .supports-touch .places-widget__tabs [data-tabs] button.active:link, .supports-touch .places-widget__tabs [data-tabs] button.active:visited, .supports-touch .places-widget__tabs [data-tabs] button.active:hover, .supports-touch .places-widget__tabs [data-tabs] button.active:active {
  background-color: var(--color-deep-taupe);
  color: var(--color-white);
}
.places-widget__tabs [data-content] {
  padding-top: 15px;
}
.places-widget__tabs .places-widget__map-placeholder {
  overflow: hidden;
  height: 70vh;
}
.places-widget__tabs .splide__pagination {
  display: flex !important;
}
.places-widget__popup {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-gray-1);
  z-index: 1000;
  padding: 40px var(--page-spacing);
}
.places-widget__popup.hidden {
  transform: translateY(110%);
}
.places-widget__popup .close-button {
  position: absolute;
  top: 8px;
  right: 8px;
}
.places-widget__view-on-map {
  justify-content: center;
  margin-top: 16px;
  display: none;
}
@media (max-width: 768px) {
  .places-widget__view-on-map {
    display: flex;
  }
}

.place-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.place-item {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
.place-item__img {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  position: relative;
  box-shadow: 4px 4px 0px 0px var(--color-sand-stone);
}
.place-item__img img:not([class]) {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
.place-item__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.place-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--color-gray-10);
  color: var(--color-gray-10);
}
.place-item__info a:not(.button), .place-item__info a:not(.button):link, .place-item__info a:not(.button):visited, .place-item__info a:not(.button):hover, .place-item__info a:not(.button):active {
  color: var(--color-brand) !important;
  text-decoration: underline;
  cursor: pointer;
}
.place-item__info a:not(.button):hover {
  color: var(--color-brand) !important;
  text-decoration: none;
}
.place-item__info-footer {
  margin-top: 5px;
}
.place-item__info-head {
  flex: 1;
}
.place-item__info-title {
  font-size: clamp(1.125rem, 1.125rem + 0.0056818182 * (100vw - 576px), 1.375rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  font-family: var(--font-archivo);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.place-item.hovered-from-map {
  background-color: var(--color-gray-1);
  box-shadow: 0 0 0 4px var(--color-gray-1);
}

.places-widget-list .place-cols {
  display: flex;
  gap: 16px;
}
.places-widget-list .place-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.places-widget-list .splide__slide {
  height: auto;
}

.map-wrapper {
  width: 100%;
  height: 80dvh;
}
@media (max-width: 768px) {
  .map-wrapper {
    height: 70dvh;
  }
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
