@charset "UTF-8";
/*
 * StoneCrete-inspired theme tokens.
 * These values are fallback variables. Redux Theme Options can override the
 * --hecm-* variables at runtime through PHP inline CSS.
 */
:root {
  --hecm-color-primary: #cba24a;
  --hecm-color-secondary: #a97f2f;
  --hecm-color-accent: #cba24a;
  --hecm-color-gold: #cba24a;
  --hecm-color-gold-hover: #a97f2f;
  --hecm-color-black: #0b0b0b;
  --hecm-color-deep-black: #050505;
  --hecm-color-soft-black: #111111;
  --hecm-color-charcoal: #171717;
  --hecm-color-white: #ffffff;
  --hecm-color-off-white: #f5f5f5;
  --hecm-color-light-grey: #d9d9d9;
  --hecm-color-muted-grey: #a8a8a8;
  --hecm-body-color: #d9d9d9;
  --hecm-color-text: #d9d9d9;
  --hecm-color-heading: #ffffff;
  --hecm-color-link: #cba24a;
  --hecm-color-link-hover: #a97f2f;
  --hecm-color-border: rgba(203, 162, 74, 0.55);
  --hecm-color-surface: #111111;
  --hecm-body-bg-color: #0b0b0b;
  --hecm-color-overlay-dark: rgba(0, 0, 0, 0.65);
  --hecm-color-overlay-strong: rgba(0, 0, 0, 0.78);
  --hecm-site-background-color: #0B0B0B;
  --hecm-font-heading: "Bebas Neue", "Oswald", sans-serif;
  --hecm-font-subheading: "Oswald", "Montserrat", sans-serif;
  --hecm-font-body: "Montserrat", "Inter", Arial, sans-serif;
  --hecm-p-font-family: var(--hecm-font-body);
  --hecm-p-font-weight: 400;
  --hecm-p-font-size: 15px;
  --hecm-p-line-height: 1.75;
  --hecm-p-color: var(--hecm-color-text);
  --hecm-h1-font-family: var(--hecm-font-heading);
  --hecm-h1-font-weight: 400;
  --hecm-h1-font-size: 72px;
  --hecm-h1-line-height: 0.95;
  --hecm-h1-letter-spacing: 3px;
  --hecm-h1-color: var(--hecm-color-heading);
  --hecm-h2-font-family: var(--hecm-font-heading);
  --hecm-h2-font-weight: 400;
  --hecm-h2-font-size: 42px;
  --hecm-h2-line-height: 1.08;
  --hecm-h2-letter-spacing: 3px;
  --hecm-h2-color: var(--hecm-color-heading);
  --hecm-h3-font-family: var(--hecm-font-heading);
  --hecm-h3-font-weight: 400;
  --hecm-h3-font-size: 34px;
  --hecm-h3-line-height: 1.15;
  --hecm-h3-letter-spacing: 2.5px;
  --hecm-h3-color: var(--hecm-color-heading);
  --hecm-h4-font-family: var(--hecm-font-subheading);
  --hecm-h4-font-weight: 600;
  --hecm-h4-font-size: 22px;
  --hecm-h4-line-height: 1.3;
  --hecm-h4-letter-spacing: 1.8px;
  --hecm-h4-color: var(--hecm-color-heading);
  --hecm-h5-font-family: var(--hecm-font-subheading);
  --hecm-h5-font-weight: 700;
  --hecm-h5-font-size: 17px;
  --hecm-h5-line-height: 1.4;
  --hecm-h5-letter-spacing: 1.6px;
  --hecm-h5-color: var(--hecm-color-heading);
  --hecm-h6-font-family: var(--hecm-font-body);
  --hecm-h6-font-weight: 800;
  --hecm-h6-font-size: 13px;
  --hecm-h6-line-height: 1.4;
  --hecm-h6-letter-spacing: 1.8px;
  --hecm-h6-color: var(--hecm-color-primary);
  --hecm-container-width: 1200px;
  --hecm-container-gutter: 32px;
  --hecm-section-padding-y: 88px;
  --hecm-radius-sm: 4px;
  --hecm-radius-md: 8px;
  --hecm-transition-default: all 300ms ease-in-out;
}

@media (max-width: 1023.98px) {
  :root {
    --hecm-p-font-size: 16px;
    --hecm-p-line-height: 1.3;
    --hecm-h1-font-size: 46px;
    --hecm-h1-line-height: 46px;
    --hecm-h1-letter-spacing: 2.4px;
    --hecm-h2-font-size: 32px;
    --hecm-h2-line-height: 1.12;
    --hecm-h2-letter-spacing: 1px;
    --hecm-h3-font-size: 28px;
    --hecm-h3-line-height: 28px;
    --hecm-h3-letter-spacing: 1px;
    --hecm-h4-font-size: 24px;
    --hecm-h4-letter-spacing: 24px;
    --hecm-h5-font-size: 20px;
    --hecm-h5-letter-spacing: 22px;
    --hecm-h6-font-size: 18px;
    --hecm-h6-letter-spacing: 0.5;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.hecm-theme-typography {
  background-color: var(--hecm-site-background-color, #0B0B0B);
  color: var(--hecm-body-color, #D9D9D9);
  font-family: var(--hecm-p-font-family);
  font-size: var(--hecm-p-font-size);
  font-weight: var(--hecm-p-font-weight);
  font-style: var(--hecm-p-font-style, normal);
  line-height: var(--hecm-p-line-height);
  letter-spacing: var(--hecm-p-letter-spacing, normal);
  word-spacing: var(--hecm-p-word-spacing, normal);
  text-rendering: optimizeLegibility;
}

.site,
#page,
.site-main,
#content,
.elementor-page,
.elementor {
  background-color: var(--hecm-site-background-color, #0B0B0B);
}

body.hecm-theme-typography p,
body.hecm-theme-typography .elementor-widget-text-editor,
body.hecm-theme-typography .elementor-widget-text-editor p,
body.hecm-theme-typography .elementor-widget-container,
body.hecm-theme-typography .elementor-widget-container p {
  color: var(--hecm-p-color, var(--hecm-body-color));
  font-family: var(--hecm-p-font-family);
  font-size: var(--hecm-p-font-size);
  font-weight: var(--hecm-p-font-weight);
  font-style: var(--hecm-p-font-style, normal);
  line-height: var(--hecm-p-line-height);
  letter-spacing: var(--hecm-p-letter-spacing, normal);
  word-spacing: var(--hecm-p-word-spacing, normal);
  text-align: var(--hecm-p-text-align, inherit);
}
body.hecm-theme-typography p {
  margin-block: 0 1.35em;
}

body.hecm-theme-typography h1,
body.hecm-theme-typography .h1,
body.hecm-theme-typography h1.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-heading h1.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-theme-post-title h1.elementor-heading-title {
  color: var(--hecm-h1-color);
  font-family: var(--hecm-h1-font-family);
  font-size: var(--hecm-h1-font-size);
  font-weight: var(--hecm-h1-font-weight);
  font-style: var(--hecm-h1-font-style, normal);
  line-height: var(--hecm-h1-line-height);
  letter-spacing: var(--hecm-h1-letter-spacing, normal);
  word-spacing: var(--hecm-h1-word-spacing, normal);
  text-align: var(--hecm-h1-text-align, inherit);
  text-transform: uppercase;
  margin-block: 0 0.35em;
}

body.hecm-theme-typography h2,
body.hecm-theme-typography .h2,
body.hecm-theme-typography h2.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-heading h2.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-theme-post-title h2.elementor-heading-title {
  color: var(--hecm-h2-color);
  font-family: var(--hecm-h2-font-family);
  font-size: var(--hecm-h2-font-size);
  font-weight: var(--hecm-h2-font-weight);
  font-style: var(--hecm-h2-font-style, normal);
  line-height: var(--hecm-h2-line-height);
  letter-spacing: var(--hecm-h2-letter-spacing, normal);
  word-spacing: var(--hecm-h2-word-spacing, normal);
  text-align: var(--hecm-h2-text-align, inherit);
  text-transform: uppercase;
  margin-block: 0 0.35em;
}

body.hecm-theme-typography h3,
body.hecm-theme-typography .h3,
body.hecm-theme-typography h3.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-heading h3.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-theme-post-title h3.elementor-heading-title {
  color: var(--hecm-h3-color);
  font-family: var(--hecm-h3-font-family);
  font-size: var(--hecm-h3-font-size);
  font-weight: var(--hecm-h3-font-weight);
  font-style: var(--hecm-h3-font-style, normal);
  line-height: var(--hecm-h3-line-height);
  letter-spacing: var(--hecm-h3-letter-spacing, normal);
  word-spacing: var(--hecm-h3-word-spacing, normal);
  text-align: var(--hecm-h3-text-align, inherit);
  text-transform: uppercase;
  margin-block: 0 0.35em;
}

body.hecm-theme-typography h4,
body.hecm-theme-typography .h4,
body.hecm-theme-typography h4.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-heading h4.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-theme-post-title h4.elementor-heading-title {
  color: var(--hecm-h4-color);
  font-family: var(--hecm-h4-font-family);
  font-size: var(--hecm-h4-font-size);
  font-weight: var(--hecm-h4-font-weight);
  font-style: var(--hecm-h4-font-style, normal);
  line-height: var(--hecm-h4-line-height);
  letter-spacing: var(--hecm-h4-letter-spacing, normal);
  word-spacing: var(--hecm-h4-word-spacing, normal);
  text-align: var(--hecm-h4-text-align, inherit);
  text-transform: uppercase;
  margin-block: 0 0.35em;
}

body.hecm-theme-typography h5,
body.hecm-theme-typography .h5,
body.hecm-theme-typography h5.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-heading h5.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-theme-post-title h5.elementor-heading-title {
  color: var(--hecm-h5-color);
  font-family: var(--hecm-h5-font-family);
  font-size: var(--hecm-h5-font-size);
  font-weight: var(--hecm-h5-font-weight);
  font-style: var(--hecm-h5-font-style, normal);
  line-height: var(--hecm-h5-line-height);
  letter-spacing: var(--hecm-h5-letter-spacing, normal);
  word-spacing: var(--hecm-h5-word-spacing, normal);
  text-align: var(--hecm-h5-text-align, inherit);
  text-transform: uppercase;
  margin-block: 0 0.35em;
}

body.hecm-theme-typography h6,
body.hecm-theme-typography .h6,
body.hecm-theme-typography h6.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-heading h6.elementor-heading-title,
body.hecm-theme-typography .elementor-widget-theme-post-title h6.elementor-heading-title {
  color: var(--hecm-h6-color);
  font-family: var(--hecm-h6-font-family);
  font-size: var(--hecm-h6-font-size);
  font-weight: var(--hecm-h6-font-weight);
  font-style: var(--hecm-h6-font-style, normal);
  line-height: var(--hecm-h6-line-height);
  letter-spacing: var(--hecm-h6-letter-spacing, normal);
  word-spacing: var(--hecm-h6-word-spacing, normal);
  text-align: var(--hecm-h6-text-align, inherit);
  text-transform: uppercase;
  margin-block: 0 0.35em;
}

a {
  color: var(--hecm-color-link);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
a:hover, a:focus {
  color: var(--hecm-color-link-hover);
}

.hecm-kicker,
.hecm-section-kicker,
.hecm-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--hecm-color-primary);
  font-family: var(--hecm-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 1.35;
  text-transform: uppercase;
}
.hecm-kicker::after,
.hecm-section-kicker::after,
.hecm-hero-kicker::after {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.hecm-section-kicker-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--hecm-color-primary);
  font-family: var(--hecm-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 1.35;
  text-transform: uppercase;
}
.hecm-section-kicker-center::before {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}
.hecm-section-kicker-center::after {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}
@media (max-width: 47.99em) {
  .hecm-section-kicker-center::before, .hecm-section-kicker-center::after {
    display: none;
  }
}

.hecm-hero-kicker {
  font-size: 14px;
  letter-spacing: 2.2px;
}

.hecm-hero-title {
  color: var(--hecm-h1-color);
  font-family: var(--hecm-h1-font-family);
  font-size: var(--hecm-h1-font-size);
  font-weight: var(--hecm-h1-font-weight);
  line-height: var(--hecm-h1-line-height);
  letter-spacing: var(--hecm-h1-letter-spacing, 3px);
  text-transform: uppercase;
}

.hecm-section-title {
  color: var(--hecm-h2-color);
  font-family: var(--hecm-h2-font-family);
  font-size: var(--hecm-h2-font-size);
  font-weight: var(--hecm-h2-font-weight);
  line-height: var(--hecm-h2-line-height);
  letter-spacing: var(--hecm-h2-letter-spacing, 3px);
  text-transform: uppercase;
}

.hecm-center-title {
  color: var(--hecm-h2-color);
  font-family: var(--hecm-h2-font-family);
  font-size: 38px;
  font-weight: var(--hecm-h2-font-weight);
  line-height: 1.15;
  letter-spacing: var(--hecm-h2-letter-spacing, 3px);
  text-transform: uppercase;
  text-align: center;
}

.hecm-lead,
.hecm-hero-text {
  color: var(--hecm-p-color);
  font-family: var(--hecm-p-font-family);
  font-size: var(--hecm-p-font-size);
  font-weight: var(--hecm-p-font-weight);
  line-height: var(--hecm-p-line-height);
}

.hecm-small-uppercase {
  font-family: var(--hecm-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.45;
  text-transform: uppercase;
}

@media (max-width: 63.99em) {
  .hecm-hero-title {
    font-size: 56px;
  }
}
@media (max-width: 47.99em) {
  body.hecm-theme-typography {
    font-size: 14px;
  }
  .hecm-hero-title,
  body.hecm-theme-typography h1,
  body.hecm-theme-typography .h1 {
    font-size: 42px;
    letter-spacing: 2px;
  }
  .hecm-section-title,
  body.hecm-theme-typography h2,
  body.hecm-theme-typography .h2 {
    font-size: 34px;
    letter-spacing: 2px;
  }
  .hecm-center-title,
  body.hecm-theme-typography h3,
  body.hecm-theme-typography .h3 {
    font-size: 28px;
  }
  .hecm-kicker,
  .hecm-section-kicker,
  .hecm-hero-kicker {
    font-size: 11px;
    letter-spacing: 1.8px;
  }
}
.hecm-container {
  width: min(100% - var(--hecm-container-gutter), var(--hecm-container-width));
  margin-inline: auto;
}
@media (min-width: 48em) {
  .hecm-container {
    --hecm-container-gutter: 48px;
  }
}

.hecm-section {
  padding-block: var(--hecm-section-padding-y);
  background-color: var(--hecm-color-black);
  color: var(--hecm-color-light-grey);
}
@media (max-width: 47.99em) {
  .hecm-section {
    --hecm-section-padding-y: 56px;
  }
}

.hecm-btn,
.elementor-button.hecm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 15px 26px;
  border: 1px solid var(--hecm-color-primary);
  border-radius: 0;
  background: transparent;
  color: var(--hecm-color-primary);
  font-family: var(--hecm-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.hecm-btn::after,
.elementor-button.hecm-btn::after {
  content: "›";
  font-size: 24px;
  font-weight: 400;
  line-height: 0.75;
}
.hecm-btn:hover, .hecm-btn:focus,
.elementor-button.hecm-btn:hover,
.elementor-button.hecm-btn:focus {
  border-color: var(--hecm-color-gold-hover);
  background: var(--hecm-color-primary);
  color: var(--hecm-color-black);
  transform: translateY(-1px);
}

.hecm-btn--light {
  color: var(--hecm-color-white);
}

.hecm-divider-gold {
  width: 1px;
  min-height: 90px;
  background: var(--hecm-color-border);
}

.hecm-card-dark {
  background: var(--hecm-color-soft-black);
  border: 1px solid rgba(203, 162, 74, 0.18);
  color: var(--hecm-color-light-grey);
}

.hecm-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.button a {
  display: inline-block;
  font-size: 15px;
  line-height: 15.75px;
  padding: 12px 24px;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--hecm-color-black);
  color: var(--hecm-color-gold);
  transition: var(--hecm-transition-default);
  border: 1px solid var(--hecm-color-gold);
  border-radius: 0;
  text-decoration: unset;
}
@media (min-width: 48em) {
  .button a {
    font-size: 14px;
  }
}
.button a i, .button a span, .button a svg {
  transition: var(--hecm-transition-default);
  color: var(--hecm-color-gold);
  fill: var(--hecm-color-gold);
}
.button a:hover {
  background: var(--hecm-color-soft-black);
  color: var(--hecm-color-gold);
}
.button.dark a {
  background: var(--hecm-color-darkgrey);
  color: var(--hecm-color-whitesand) !important;
  border-color: var(--hecm-color-darkgrey);
}
.button.dark a:hover {
  background: var(--hecm-color-gold);
  border-color: var(--hecm-color-gold);
}
.button.transparent a {
  background: transparent;
  color: var(--hecm-color-white) !important;
  border: 1px solid var(--hecm-color-white);
}
.button.transparent a:hover {
  background: var(--hecm-color-gold);
  border-color: var(--hecm-color-gold);
}
.button.full a {
  display: block;
  width: 100%;
  text-align: center;
}

.link a {
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  padding: 0;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: var(--hecm-color-white);
  position: relative;
  transition: var(--hecm-transition-default);
  background: transparent;
  border: none;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
}
.link a:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--hecm-color-white);
  height: 1px;
  transition: var(--hecm-transition-default);
}
.link a:hover {
  color: var(--hecm-color-gold);
  background: transparent;
}
.link a:hover:after {
  background: var(--hecm-color-gold);
}
.link.white a {
  color: var(--hecm-color-white);
}
.link.white a:after {
  background: var(--hecm-color-white);
}
.link.white a:hover {
  color: var(--hecm-color-gold);
  background: transparent;
}
.link.white a:hover:after {
  background: var(--hecm-color-gold);
}
.link.arrow-right a {
  color: var(--hecm-color-darkgrey);
}
.link.arrow-right a:after {
  content: "";
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(15px) !important;
  transition: opacity 0.5s ease, transform 0.5s ease !important;
  transition-delay: 300ms !important;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) !important;
}

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}

.menu-toggle {
  cursor: pointer;
}
.menu-toggle .close-icon {
  display: none;
}
.menu-toggle.active .close-icon {
  display: block;
}
.menu-toggle.active .main-icon {
  display: none;
}

.hecm-mobile-menu {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100vh !important;
  z-index: 88;
  transform: translateX(100%) !important;
  transition: all 300ms ease !important;
  overflow: hidden !important;
}
.hecm-mobile-menu.active {
  transform: translateX(0) !important;
}

@media (max-width: 64em) {
  .bg-black {
    background: var(--hecm-color-black) !important;
  }
}

#wpadminbar {
  bottom: 0;
  top: unset;
  transition: all 500ms;
  position: fixed;
}

.loader, .wpcf7-form .wpcf7-spinner {
  position: absolute;
  bottom: -65px;
  left: calc(50% - 25px);
  z-index: 9;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--hecm-color-secondary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
.loader.meta-loader, .wpcf7-form .meta-loader.wpcf7-spinner {
  bottom: -2px;
  left: unset;
  right: 320px;
  border-width: 4px;
  width: 25px;
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wpcf7-form .field-wrap {
  flex: 100%;
  max-width: 100%;
  margin-bottom: 0;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-wrap {
    margin-bottom: 0;
  }
}
.wpcf7-form .field-wrap.submit-wrap {
  margin-bottom: 0;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-wrap.submit-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .wpcf7-form .field-wrap.submit-wrap p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .wpcf7-form .field-wrap.submit-wrap p .wpcf7-spinner {
    order: 3;
    position: absolute !important;
    bottom: -50px;
    left: calc(50% - 25px);
  }
}
.wpcf7-form .field-wrap.field-half {
  flex: calc(50% - 8px);
  max-width: calc(50% - 8px);
}
@media (max-width: 767.98px) {
  .wpcf7-form .field-wrap.field-half {
    flex: 100%;
    max-width: 100%;
  }
}
.wpcf7-form .field-wrap.field-half-3 {
  flex: calc(33.33% - 10px);
  max-width: calc(33.33% - 10px);
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-wrap.field-half-3 {
    flex: 100%;
    max-width: 100%;
  }
}
.wpcf7-form .field-wrap-required-label {
  color: var(--hecm-color-white) !important;
  display: inline-block;
  font-size: 12px !important;
  transform: translate(2px, -2px);
}
.wpcf7-form .field-wrap.other-citizenship, .wpcf7-form .field-wrap.other-know {
  display: none;
}
.wpcf7-form .field-wrap.show {
  display: block;
}
.wpcf7-form .field-wrap label {
  font-size: 16px !important;
  margin-bottom: 8px;
  line-height: 23px !important;
  color: var(--hecm-color-white) !important;
  font-weight: 400 !important;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-wrap label {
    font-size: 14px !important;
    line-height: 18px !important;
  }
}
.wpcf7-form .field-wrap br {
  display: none;
}
.wpcf7-form .field-wrap.last-field {
  margin-bottom: 0;
}
.wpcf7-form .field-wrap input[type=text], .wpcf7-form .field-wrap input[type=email], .wpcf7-form .field-wrap input[type=tel], .wpcf7-form .field-wrap [type=number], .wpcf7-form .field-wrap textarea, .wpcf7-form .field-wrap select {
  width: 100% !important;
  padding: 14px 16px !important;
  background: transparent !important;
  border-radius: 0 !important;
  border-width: 1px;
  border-style: solid;
  border-color: var(--hecm-color-white) !important;
  color: var(--hecm-color-white) !important;
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 400 !important;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-wrap input[type=text], .wpcf7-form .field-wrap input[type=email], .wpcf7-form .field-wrap input[type=tel], .wpcf7-form .field-wrap [type=number], .wpcf7-form .field-wrap textarea, .wpcf7-form .field-wrap select {
    font-size: 14px !important;
    line-height: 14px !important;
    padding: 13px 12px !important;
  }
}
.wpcf7-form .field-wrap input[type=text]::-moz-placeholder, .wpcf7-form .field-wrap input[type=email]::-moz-placeholder, .wpcf7-form .field-wrap input[type=tel]::-moz-placeholder, .wpcf7-form .field-wrap [type=number]::-moz-placeholder, .wpcf7-form .field-wrap textarea::-moz-placeholder, .wpcf7-form .field-wrap select::-moz-placeholder {
  color: #8c8c8c !important;
  opacity: 0.5;
}
.wpcf7-form .field-wrap input[type=text]::placeholder, .wpcf7-form .field-wrap input[type=email]::placeholder, .wpcf7-form .field-wrap input[type=tel]::placeholder, .wpcf7-form .field-wrap [type=number]::placeholder, .wpcf7-form .field-wrap textarea::placeholder, .wpcf7-form .field-wrap select::placeholder {
  color: #8c8c8c !important;
  opacity: 0.5;
}
.wpcf7-form .field-wrap input[type=text]::-webkit-input-placeholder, .wpcf7-form .field-wrap input[type=email]::-webkit-input-placeholder, .wpcf7-form .field-wrap input[type=tel]::-webkit-input-placeholder, .wpcf7-form .field-wrap [type=number]::-webkit-input-placeholder, .wpcf7-form .field-wrap textarea::-webkit-input-placeholder, .wpcf7-form .field-wrap select::-webkit-input-placeholder {
  color: #8c8c8c !important;
  opacity: 0.5;
}
.wpcf7-form .field-wrap input[type=text]:focus, .wpcf7-form .field-wrap input[type=email]:focus, .wpcf7-form .field-wrap input[type=tel]:focus, .wpcf7-form .field-wrap [type=number]:focus, .wpcf7-form .field-wrap textarea:focus, .wpcf7-form .field-wrap select:focus {
  box-shadow: unset;
  border-color: var(--hecm-color-muted-grey) !important;
}
.wpcf7-form .field-wrap textarea {
  max-height: 112px !important;
}
.wpcf7-form .field-wrap input[type=radio] {
  width: 28px !important;
  height: 28px !important;
  background: var(--hecm-color-muted-grey) !important;
  border-radius: 50% !important;
  position: relative;
  margin-right: 12px !important;
}
.wpcf7-form .field-wrap input[type=radio]:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hecm-color-white);
  opacity: 0;
  visibility: hidden;
}
.wpcf7-form .field-wrap input[type=radio]:checked {
  border: none !important;
}
.wpcf7-form .field-wrap input[type=radio]:checked:after {
  opacity: 1;
  visibility: visible;
  border: none !important;
}
.wpcf7-form .field-wrap .wpcf7-radio .wpcf7-list-item {
  display: block;
}
.wpcf7-form .field-wrap .wpcf7-radio .wpcf7-list-item label {
  margin: 0;
}
.wpcf7-form .field-wrap .wpcf7-radio .wpcf7-list-item.first {
  margin-bottom: 12px;
}
.wpcf7-form .field-wrap .wpcf7-radio .wpcf7-list-item.last {
  margin-bottom: 0;
  margin-left: 0;
}
.wpcf7-form .field-wrap .wpcf7-acceptance {
  margin-top: 40px !important;
  display: block;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-wrap .wpcf7-acceptance {
    margin-top: 0px !important;
  }
}
.wpcf7-form .field-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0 !important;
}
.wpcf7-form .field-wrap .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  flex-wrap: wrap;
}
.wpcf7-form .field-wrap .wpcf7-acceptance .wpcf7-list-item label input {
  flex: 28px;
  max-width: 28px;
}
@media (max-width: 767.98px) {
  .wpcf7-form .field-wrap .wpcf7-acceptance .wpcf7-list-item label input {
    transform: none;
    flex: 24px;
    max-width: 24px;
  }
}
.wpcf7-form .field-wrap .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: var(--hecm-color-white) !important;
  flex: calc(100% - 50px);
  max-width: calc(100% - 50px);
}
.wpcf7-form .field-wrap .wpcf7-acceptance .wpcf7-list-item-label a {
  color: var(--hecm-color-white) !important;
  text-decoration: underline !important;
}
.wpcf7-form .field-wrap input[type=checkbox] {
  width: 28px !important;
  height: 28px !important;
  border: 1px solid #898989 !important;
  background: transparent !important;
  border-radius: 2px !important;
}
@media (max-width: 767.98px) {
  .wpcf7-form .field-wrap input[type=checkbox] {
    width: 26px !important;
    aspect-ratio: 1/1;
    height: 24px !important;
  }
}
@media (max-width: 479.98px) {
  .wpcf7-form .field-wrap input[type=checkbox] {
    transform: translateY(-26px);
    width: 40px !important;
    aspect-ratio: 1/1;
  }
}
.wpcf7-form .field-wrap input[type=checkbox]:before {
  background: transparent !important;
}
.wpcf7-form .field-wrap input[type=checkbox]:checked:before {
  content: "\ea09";
  font-family: "bbteam" !important;
  color: var(--hecm-color-white) !important;
}
.wpcf7-form .field-wrap .wpcf7-checkbox {
  margin-top: 0 !important;
}
.wpcf7-form .field-wrap .wpcf7-checkbox .wpcf7-list-item.last {
  margin-bottom: 0;
}
.wpcf7-form .field-wrap .wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 12px !important;
}
.wpcf7-form .field-wrap .choices {
  border-radius: 0 !important;
  background: transparent;
  border-radius: 0 !important;
  border-width: 2px;
  border-style: solid;
  border-color: var(--hecm-color-muted-grey) !important;
  color: var(--hecm-color-white) !important;
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 400 !important;
  position: relative;
  display: block;
  padding-right: 30px;
}
.wpcf7-form .field-wrap .choices:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--hecm-color-muted-grey) !important;
  border: none !important;
  right: 30.5px !important;
  margin-top: -8px !important;
}
.wpcf7-form .field-wrap .choices[data-type*=select-one]::after, .wpcf7-form .field-wrap .choices[data-type*=select-one].is-open::after {
  border-color: var(--hecm-body-color) transparent transparent;
}
.wpcf7-form .field-wrap .choices__placeholder {
  color: #8c8c8c !important;
  opacity: 0.5 !important;
}
.wpcf7-form .field-wrap .choices[data-type*=select-one].is-open::after {
  transform: scaleY(-1) translateY(-15px);
}
.wpcf7-form .field-wrap .choices__inner {
  background: transparent;
  padding: 0 !important;
  border: none !important;
  min-height: unset !important;
}
.wpcf7-form .field-wrap .choices__list {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999999;
}
.wpcf7-form .field-wrap .choices__list--dropdown {
  background: var(--hecm-body-color);
}
.wpcf7-form .field-wrap .choices__list--single .choices__item:hover {
  background: transparent;
}
.wpcf7-form .field-wrap .choices__item {
  padding: 21px 16px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  background: transparent;
}
.wpcf7-form .field-wrap .choices__item--selectable {
  padding: 21px 16px;
  background: var(--hecm-body-color);
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-wrap .choices__item--selectable {
    padding: 13px 12px;
  }
}
.wpcf7-form .field-wrap .choices__item--selectable:hover {
  color: var(--hecm-color-white);
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-wrap .choices__item {
    padding: 13px 12px;
    font-size: 14px;
    line-height: 14px;
  }
}
.wpcf7-form .field-wrap .choices__item:hover {
  background: var(--hecm-color-secondary);
  color: var(--hecm-color-white);
}
.wpcf7-form .field-wrap .choices__item.is-highlighted {
  background: var(--hecm-color-white);
  color: var(--hecm-color-secondary);
}
.wpcf7-form .field-wrap .choices .choices__input {
  color: var(--hecm-body-color) !important;
}
.wpcf7-form .field-wrap.field-submit {
  margin-bottom: 0;
}
.wpcf7-form [data-class=wpcf7cf_group] {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 100%;
  max-width: 100%;
}
.wpcf7-form [data-class=wpcf7cf_group] > .field-wrap {
  flex: 100%;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .wpcf7-form [data-class=wpcf7cf_group] > .field-wrap {
    flex: 100%;
    max-width: 100%;
  }
}
.wpcf7-form .wpcf7-submit {
  padding: 12px 37px !important;
  border-radius: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  background: var(--hecm-color-black) !important;
  color: var(--hecm-color-gold) !important;
  width: auto !important;
  line-height: 25px !important;
  border: 2px solid var(--hecm-color-gold) !important;
  cursor: pointer;
  text-transform: uppercase !important;
  margin-top: 24px;
  min-width: 220px;
  position: relative;
  overflow: hidden;
}
.wpcf7-form .wpcf7-submit span {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .wpcf7-submit {
    padding: 4px 37px !important;
    font-size: 16px !important;
    line-height: 22px !important;
    margin-top: 0;
    display: inline-block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 280px;
  }
}
.wpcf7-form .wpcf7-submit:hover span {
  color: var(--hecm-color-gold) !important;
}
.wpcf7-form .field-submit p {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-submit p {
    flex-direction: column;
  }
}
.wpcf7-form .field-submit p .wpcf7-spinner {
  order: 2;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .field-submit p .wpcf7-spinner {
    order: 3;
    position: absolute !important;
    bottom: -50px;
    left: calc(50% - 25px);
  }
}
@media (max-width: 990.98px) {
  .wpcf7-form .field-submit.full-mobile .wpcf7-submit {
    display: block !important;
    max-width: 100%;
  }
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 16px !important;
  margin-top: 5px;
  position: relative;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .wpcf7-not-valid-tip {
    position: relative;
    transform: translateY(0px);
  }
}
.book-tour-form .wpcf7-form .wpcf7-not-valid-tip {
  position: relative;
  transform: unset;
}
.wpcf7-form .wpcf7-response-output {
  border-radius: 10px;
  bottom: unset;
  display: block;
  font-size: 16px !important;
  margin: 0 !important;
  padding: 11px 25px 11px 0 !important;
  position: relative;
  width: 100% !important;
  margin-top: 20px !important;
  color: var(--hecm-color-white) !important;
  text-align: left;
  border: none !important;
}
@media (max-width: 1023.98px) {
  .wpcf7-form .wpcf7-response-output {
    position: relative;
    margin-top: 20px !important;
    display: block;
    width: 100% !important;
    text-align: left;
  }
}
.book-tour-form .wpcf7-form .wpcf7-response-output {
  right: 0;
  font-size: 16px !important;
  font-weight: 400;
}
.wpcf7-form.invalid .wpcf7-response-output {
  color: #dc3232 !important;
}
.wpcf7-form .label-note {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
  margin-top: 23px;
}
.wpcf7-form .wpcf7-spinner {
  display: inline-block;
  background-color: transparent;
  opacity: 1;
  width: 24px;
  height: auto;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  bottom: -25px;
  left: unset;
  z-index: 9;
  width: 30px;
  height: 30px;
  margin: 0 20px;
  position: relative !important;
  border-radius: 50% !important;
  border: 3px solid var(--hecm-color-primary) !important;
  margin-top: 12px !important;
}
.wpcf7-form .wpcf7-spinner:before {
  content: none;
}
.book-tour-form .wpcf7-form .wpcf7-spinner {
  margin-bottom: -15px !important;
}

.cf7-upload {
  position: relative;
}
.cf7-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cf7-upload__dropzone {
  border: 1px dashed var(--hecm-color-white);
  border-radius: 8px;
  padding: 40px 16px;
  text-align: center;
  color: var(--hecm-color-white);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.cf7-upload__dropzone.is-dragover {
  border-color: var(--hecm-color-white);
  background-color: rgba(104, 104, 104, 0.2745098039);
}
.cf7-upload__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: 8px;
  font-size: 33px;
  line-height: 1;
  background: #5B5B5B;
}
.cf7-upload__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.cf7-upload__text button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hecm-color-white);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}
.cf7-upload__text button:hover, .cf7-upload__text button:focus {
  color: var(--hecm-color-white);
}
.cf7-upload__note {
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #A8A8A8;
}
.cf7-upload__preview {
  margin-top: 14px;
}

.cf7-upload-file {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #5B5B5B;
  border-radius: 8px;
  color: var(--hecm-color-white);
  background-color: var(--hecm-body-color);
}
.cf7-upload-file__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  font-size: 32px;
  background-color: #333;
}
.cf7-upload-file__content {
  flex: 1 1 auto;
  min-width: 0;
}
.cf7-upload-file__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}
@media (max-width: 767.98px) {
  .cf7-upload-file__name {
    font-size: 14px;
  }
}
.cf7-upload-file__meta {
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #A8A8A8;
}
@media (max-width: 767.98px) {
  .cf7-upload-file__meta {
    font-size: 12px;
  }
}
.cf7-upload-file__remove {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--hecm-color-white);
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.cf7-upload-file__remove span {
  display: inline-block;
  transform: translateY(-5px);
}

.cf7-upload-error {
  padding: 12px 14px;
  border: 1px solid rgba(255, 80, 80, 0.65);
  border-radius: 8px;
  color: var(--hecm-color-white);
  background-color: rgba(255, 80, 80, 0.12);
  font-size: 14px;
  line-height: 1.5;
}

.field-uploads p {
  margin: 0 !important;
}

.codedropz-upload-inner h3, .codedropz-upload-inner p, .codedropz-upload-inner a {
  color: var(--hecm-color-white) !important;
}
.codedropz-upload-inner h3 {
  font-size: 16px !important;
  font-weight: 400 !important;
}
.codedropz-upload-inner a {
  text-decoration: underline;
}

.dnd-upload-status .dnd-upload-details .remove-file span:after {
  background-color: #fff;
  border-radius: 50%;
}

.dnd-upload-status .dnd-upload-details .name span {
  color: #fff;
}

[type=button], [type=submit], button {
  border: 1px solid var(--hecm-color-white) !important;
  border-radius: 0 !important;
  color: var(--hecm-color-white) !important;
}
[type=button]:hover, [type=button]:active, [type=button]:focus, [type=submit]:hover, [type=submit]:active, [type=submit]:focus, button:hover, button:active, button:focus {
  background: var(--hecm-color-white) !important;
  color: var(--hecm-color-secondary) !important;
}

.cf7-dragandrophandler {
  border-color: var(--hecm-color-white) !important;
}

.cf7-text-drop, .cf7-text-or {
  font-size: 24px !important;
  font-weight: 400 !important;
  color: var(--hecm-color-white) !important;
}

.cf7-text-browser a {
  display: inline-block;
  background: transparent;
  padding: 10px 5px;
  line-height: normal;
  color: var(--hecm-color-gold) !important;
}

.cf7-drop-remove {
  background-color: #fff;
  border-radius: 50%;
}

.cf7-drop-filename {
  color: #fff;
}

/* Optional utility classes for building the supplied homepage layout in Elementor. */
.hecm-site-header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
}
.hecm-site-header .hecm-menu__link {
  color: var(--hecm-color-white);
  font-family: var(--hecm-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.hecm-site-header .hecm-menu__link:hover, .hecm-site-header .hecm-menu__link:focus {
  color: var(--hecm-color-primary);
}
.hecm-site-header .current-menu-item > .hecm-menu__link,
.hecm-site-header .current-menu-ancestor > .hecm-menu__link {
  color: var(--hecm-color-primary);
}

.hecm-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding-block: 160px 110px;
  overflow: hidden;
  background-color: var(--hecm-color-deep-black);
  color: var(--hecm-color-white);
}
.hecm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0.18) 72%), linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.hecm-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hecm-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hecm-hero__title {
  margin-top: 28px;
  margin-bottom: 24px;
}
.hecm-hero__text {
  max-width: 455px;
  margin-bottom: 32px;
}
@media (max-width: 47.99em) {
  .hecm-hero {
    min-height: 620px;
    padding-block: 130px 72px;
  }
  .hecm-hero::before {
    background: rgba(0, 0, 0, 0.72);
  }
}

.hecm-feature-bar {
  background: var(--hecm-color-soft-black);
  border-block: 1px solid rgba(203, 162, 74, 0.18);
}
.hecm-feature-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.hecm-feature-bar__item {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--hecm-color-border);
}
.hecm-feature-bar__item:last-child {
  border-right: 0;
}
.hecm-feature-bar__icon {
  color: var(--hecm-color-primary);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
}
.hecm-feature-bar__label {
  color: var(--hecm-color-white);
  font-family: var(--hecm-font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.45;
  text-transform: uppercase;
}
@media (max-width: 63.99em) {
  .hecm-feature-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 47.99em) {
  .hecm-feature-bar__grid {
    grid-template-columns: 1fr;
  }
  .hecm-feature-bar__item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(203, 162, 74, 0.28);
  }
}

.hecm-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--hecm-color-deep-black);
  border-bottom: 1px solid rgba(203, 162, 74, 0.16);
}
.hecm-about-split__media {
  min-height: 430px;
}
.hecm-about-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px);
}
.hecm-about-split__title {
  max-width: 480px;
  margin-top: 18px;
}
.hecm-about-split__text {
  max-width: 530px;
  color: var(--hecm-color-light-grey);
}
@media (max-width: 47.99em) {
  .hecm-about-split {
    grid-template-columns: 1fr;
  }
  .hecm-about-split__media {
    min-height: 300px;
  }
}

.hecm-finish-section {
  padding-block: 64px 72px;
  background: var(--hecm-color-black);
  text-align: center;
}
.hecm-finish-section__intro {
  max-width: 830px;
  margin-inline: auto;
}
.hecm-finish-section__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 34px;
}
@media (max-width: 63.99em) {
  .hecm-finish-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 47.99em) {
  .hecm-finish-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

.hecm-finish-card__image {
  aspect-ratio: 1.32/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hecm-finish-card__title {
  margin-top: 16px;
  color: var(--hecm-color-white);
  font-family: var(--hecm-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hecm-cta-strip {
  position: relative;
  padding-block: 44px;
  background-color: var(--hecm-color-charcoal);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hecm-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hecm-color-overlay-strong);
}
.hecm-cta-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hecm-cta-strip__title {
  margin: 8px 0 0;
}
@media (max-width: 47.99em) {
  .hecm-cta-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hecm-site-footer {
  padding-block: 72px;
  background: var(--hecm-color-deep-black);
  color: var(--hecm-color-muted-grey);
}
.hecm-site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.hecm-site-footer__heading {
  color: var(--hecm-color-primary);
  font-family: var(--hecm-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.hecm-site-footer a {
  color: var(--hecm-color-light-grey);
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}
.hecm-site-footer a:hover, .hecm-site-footer a:focus {
  color: var(--hecm-color-primary);
}
@media (max-width: 47.99em) {
  .hecm-site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.hecm-accordion {
  border: 1px solid var(--hecm-color-border);
  border-radius: 12px;
  overflow: hidden;
}
.hecm-accordion__item + .hecm-accordion__item {
  border-top: 1px solid var(--hecm-color-border);
}
.hecm-accordion__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 0;
  background: var(--hecm-color-surface);
  color: var(--hecm-color-primary);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 48em) {
  .hecm-accordion__button {
    padding: 20px 24px;
  }
}
.hecm-accordion__icon {
  transition: transform 200ms ease;
}
.hecm-accordion__panel {
  display: none;
  padding: 0 16px 16px;
  color: var(--hecm-color-secondary);
}
@media (min-width: 48em) {
  .hecm-accordion__panel {
    padding: 0 24px 20px;
  }
}
.hecm-accordion__item.is-open .hecm-accordion__icon {
  transform: rotate(45deg);
}
.hecm-accordion__item.is-open .hecm-accordion__panel {
  display: block;
}

.hecm-menu {
  --hecm-menu-color: var(--hecm-color-primary);
  --hecm-menu-color-hover: var(--hecm-color-link-hover);
  --hecm-menu-color-active: var(--hecm-color-accent);
  --hecm-menu-bg: transparent;
  --hecm-menu-bg-hover: rgba(37, 99, 235, 0.08);
  --hecm-menu-bg-active: rgba(37, 99, 235, 0.12);
  --hecm-menu-submenu-bg: var(--hecm-color-surface);
  --hecm-menu-submenu-border: var(--hecm-color-border);
  width: 100%;
  background: var(--hecm-menu-bg);
}
.hecm-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hecm-menu a {
  text-decoration: none;
}
.hecm-menu__list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hecm-menu__item {
  position: relative;
  margin: 0;
}
.hecm-menu__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border: 0 solid transparent;
  border-radius: 8px;
  color: var(--hecm-menu-color);
  background-color: transparent;
  font: inherit;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.hecm-menu__link:hover, .hecm-menu__link:focus {
  color: var(--hecm-menu-color-hover);
  background-color: var(--hecm-menu-bg-hover);
  outline: none;
}
.hecm-menu__link:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
}
.hecm-menu__text {
  display: inline-flex;
  align-items: center;
}
.hecm-menu__indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  line-height: 1;
  transition: transform 180ms ease;
}
.hecm-menu__item.current-menu-item > .hecm-menu__link, .hecm-menu__item.current-menu-ancestor > .hecm-menu__link, .hecm-menu__item.is-active > .hecm-menu__link {
  color: var(--hecm-menu-color-active);
  background-color: var(--hecm-menu-bg-active);
}
.hecm-menu__item > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--hecm-menu-submenu-border);
  border-radius: 12px;
  background-color: var(--hecm-menu-submenu-bg);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  z-index: 999;
}
.hecm-menu__item--has-children > .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}
.hecm-menu__item--has-children:hover > .sub-menu, .hecm-menu__item--has-children:focus-within > .sub-menu, .hecm-menu__item--has-children.is-submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.hecm-menu__item--has-children:hover > .hecm-menu__link .hecm-menu__indicator, .hecm-menu__item--has-children:focus-within > .hecm-menu__link .hecm-menu__indicator, .hecm-menu__item--has-children.is-submenu-open > .hecm-menu__link .hecm-menu__indicator {
  transform: rotate(180deg);
}
.hecm-menu .sub-menu .hecm-menu__link {
  justify-content: flex-start;
  white-space: nowrap;
}
.hecm-menu .sub-menu .hecm-menu__item--has-children > .sub-menu {
  top: -8px;
  left: calc(100% + 8px);
}
.hecm-menu--vertical .hecm-menu__list {
  align-items: stretch;
}
.hecm-menu--vertical .hecm-menu__link {
  justify-content: flex-start;
}
.hecm-menu--vertical .hecm-menu__item--has-children > .sub-menu {
  position: static;
  display: none;
  min-width: 0;
  margin-top: 8px;
  margin-left: 16px;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.hecm-menu--vertical .hecm-menu__item--has-children:hover > .sub-menu,
.hecm-menu--vertical .hecm-menu__item--has-children:focus-within > .sub-menu,
.hecm-menu--vertical .hecm-menu__item--has-children.is-submenu-open > .sub-menu {
  display: flex;
}
.hecm-menu--empty {
  padding: 14px 16px;
  border: 1px dashed var(--hecm-color-border);
  border-radius: 8px;
  color: var(--hecm-color-secondary);
  background-color: var(--hecm-color-surface);
}
@media (max-width: 47.99em) {
  .hecm-menu .hecm-menu__list {
    flex-direction: column;
    align-items: stretch;
  }
  .hecm-menu .hecm-menu__link {
    justify-content: flex-start;
  }
  .hecm-menu .hecm-menu__item--has-children > .sub-menu,
  .hecm-menu .sub-menu .hecm-menu__item--has-children > .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 8px;
    margin-left: 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .hecm-menu .hecm-menu__item--has-children:hover > .sub-menu,
  .hecm-menu .hecm-menu__item--has-children:focus-within > .sub-menu,
  .hecm-menu .hecm-menu__item--has-children.is-submenu-open > .sub-menu {
    display: flex;
  }
}

/*# sourceMappingURL=app.css.map*/