html.hs-header-locked,
html.hs-header-locked body {
  overflow: hidden;
}

#main-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@keyframes hs-header-status-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(13, 168, 78, 0.35);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.28);
    box-shadow: 0 0 0 6px rgba(13, 168, 78, 0);
  }
}

@keyframes hs-header-main-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hs-header__lang.is-open [data-lang-menu] {
  display: block;
}

.hs-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
  will-change: transform, opacity;
}

.hs-header.is-sticky {
  position: fixed;
  top: 0;
  transform: translateY(0);
}

.hs-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 12px));
}

.hs-header__top-bar {
  background: var(--color-davi-black);
}

.hs-header__main-bar {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hs-header.is-top-revealing .hs-header__main-bar {
  animation: hs-header-main-reveal 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-header__main-bar,
.hs-header__desktop-panels,
.hs-header__search-panel {
  background: var(--color-davi-black-blur-80);
  -webkit-backdrop-filter: blur(15px) brightness(1.08);
  backdrop-filter: blur(15px) brightness(1.08);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--color-davi-white) 18%, transparent),
    inset 0 0 10px color-mix(in srgb, var(--color-davi-white) 12%, transparent),
    0 10px 20px color-mix(in srgb, var(--color-davi-black) 22%, transparent);
}

.hs-header__desktop-panels {
  background: rgba(19, 16, 16, 0.9);
}

.hs-header__menu-button,
.hs-header__menu-link {
  position: relative;
}

.hs-header .davi-button.davi-button-link {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  column-gap: 0.5rem;
  min-height: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 24px !important;
  text-decoration: none;
}

.hs-header .davi-button.davi-button-link:hover,
.hs-header .davi-button.davi-button-link:focus-visible {
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.hs-header .davi-button.davi-button-link [aria-hidden="true"] {
  transform: translateX(0);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-header .davi-button.davi-button-link:hover [aria-hidden="true"],
.hs-header .davi-button.davi-button-link:focus-visible [aria-hidden="true"] {
  transform: translateX(8px);
}

.hs-header__search-icon {
  transform: scale(1);
  transform-origin: center;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

button:hover .hs-header__search-icon,
button:focus-visible .hs-header__search-icon,
.hs-header.is-search-open [data-search-toggle] .hs-header__search-icon,
.hs-header.is-mobile-search-open
  [data-mobile-search-open]
  .hs-header__search-icon {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .hs-header .davi-button.davi-button-link [aria-hidden="true"],
  .hs-header__search-icon {
    transition: none;
  }
}

.hs-header__modal[hidden] {
  display: none !important;
}

.hs-header__modal.is-open {
  display: flex !important;
}

.hs-header__modal-panel {
  width: min(100%, 876px);
  max-height: calc(100vh - 56px);
  overflow: hidden;
  scrollbar-gutter: stable;
}

.hs-header__modal-backdrop {
  background: rgba(19, 16, 16, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hs-header__modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.3rem + 0.7vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hs-header__modal-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  line-height: 1.6;
}

.hs-header__modal-content {
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.hs-header__modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 246, 0.08);
  color: var(--color-davi-white);
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.hs-header__modal-close:hover,
.hs-header__modal-close:focus-visible {
  transform: rotate(90deg);
}

.hs-header__modal-close:focus-visible {
  outline: 2px solid rgba(225, 0, 49, 0.9);
  outline-offset: 3px;
}

.hs-header__modal-form .hs-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

.hs-header__modal-form .hs-form fieldset {
  border: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.hs-header__modal-form .hs-form fieldset.form-columns-2,
.hs-header__modal-form .hs-form .form-columns-2 {
  display: grid !important;
  gap: 1rem !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

.hs-header__modal-form .hs-form .hs-form-field,
.hs-header__modal-form .hs-form .hs-dependent-field {
  margin: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.hs-header__modal-form .hs-form fieldset.form-columns-2 .hs-form-field,
.hs-header__modal-form .hs-form fieldset.form-columns-2 .hs-dependent-field,
.hs-header__modal-form .hs-form .form-columns-2 .hs-form-field,
.hs-header__modal-form .hs-form .form-columns-2 .hs-dependent-field {
  float: none !important;
  width: 100% !important;
}

.hs-header__modal-form .hs-form label,
.hs-header__modal-form .hs-form .hs-dependent-field > label,
.hs-header__modal-form .hs-form .hs-form-field > label {
  color: var(--color-davi-white) !important;
  display: inline-flex !important;
  font-family: var(--font-body) !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.5 !important;
  margin: 0 0 0.5rem !important;
  max-width: none !important;
}

.hs-header__modal-form .hs-form .hs-form-required {
  color: var(--color-davi-red) !important;
  margin-left: 0.25rem !important;
}

.hs-header__modal-form .hs-form .input,
.hs-header__modal-form .hs-form .hs-richtext,
.hs-header__modal-form .hs-form .legal-consent-container,
.hs-header__modal-form .hs-form .hs_recaptcha,
.hs-header__modal-form .hs-form .submitted-message {
  width: 100% !important;
}

.hs-header__modal-form .hs-form .input {
  align-items: center !important;
  background: rgba(245, 245, 246, 0.03) !important;
  border-bottom: 1px solid rgba(245, 245, 246, 0.8) !important;
  box-sizing: border-box !important;
  display: flex !important;
  height: 3.5rem !important;
  min-height: 3.5rem !important;
  padding: 1rem !important;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease !important;
}

.hs-header__modal-form .hs-form .input:has(textarea.hs-input) {
  align-items: flex-start !important;
  height: auto !important;
  min-height: 7.3125rem !important;
}

.hs-header__modal-form .hs-form .input:focus-within {
  border-bottom-color: var(--color-davi-red) !important;
}

.hs-header__modal-form .hs-form .hs-input {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--color-davi-white) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  min-height: auto !important;
  padding: 0 !important;
  width: 100% !important;
}

.hs-header__modal-form .hs-form .hs-input::placeholder {
  color: rgba(245, 245, 246, 0.6) !important;
  opacity: 1 !important;
}

.hs-header__modal-form .hs-form .hs-input:focus,
.hs-header__modal-form .hs-form .hs-input:focus-visible {
  outline: none !important;
}

.hs-header__modal-form .hs-form select.hs-input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M1 1.25L6.25 6.5L11.5 1.25' stroke='%23F5F5F6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-position: right center !important;
  background-repeat: no-repeat !important;
  padding-right: 1.75rem !important;
}

.hs-header__modal-form .hs-form textarea.hs-input {
  min-height: 5.3125rem !important;
  resize: vertical !important;
}

.hs-header__modal-form .hs-form .inputs-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hs-header__modal-form .hs-form .inputs-list .hs-form-booleancheckbox,
.hs-header__modal-form
  .hs-form
  .legal-consent-container
  .hs-form-booleancheckbox {
  align-items: flex-start !important;
  display: flex !important;
  gap: 1rem !important;
}

.hs-header__modal-form .hs-form .inputs-list label,
.hs-header__modal-form .hs-form .legal-consent-container label {
  color: var(--color-davi-white) !important;
  display: inline !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.hs-header__modal-form .hs-form .inputs-list input[type="checkbox"],
.hs-header__modal-form
  .hs-form
  .legal-consent-container
  input[type="checkbox"] {
  accent-color: var(--color-davi-red) !important;
  flex: 0 0 auto !important;
  height: 1rem !important;
  margin: 0.1875rem 0 0 !important;
  width: 1rem !important;
}

.hs-header__modal-form .hs-form .hs-richtext,
.hs-header__modal-form .hs-form .hs-richtext p,
.hs-header__modal-form .hs-form .submitted-message,
.hs-header__modal-form .hs-form .submitted-message p {
  color: var(--color-davi-white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.hs-header__modal-form .hs-form .hs-richtext a,
.hs-header__modal-form .hs-form .submitted-message a {
  color: var(--color-davi-white) !important;
  text-decoration: underline !important;
  text-underline-offset: 0.12em !important;
}

.hs-header__modal-form .hs-form .hs-error-msgs {
  list-style: none !important;
  margin: 0.5rem 0 0 !important;
  padding: 0 !important;
}

.hs-header__modal-form .hs-form .hs-error-msgs label {
  color: var(--color-davi-red) !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  max-width: none !important;
}

.hs-header__modal-form .hs-form .hs_error_rollup {
  display: none !important;
}

.hs-header__modal-form .hs-form .actions,
.hs-header__modal-form .hs-form .hs_submit {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.hs-header__modal-form .hs-form .actions {
  align-items: flex-start !important;
  display: flex !important;
  justify-content: flex-start !important;
}

.hs-header__modal-form .hs-form .hs-button,
.hs-header__modal-form .hs-form input[type="submit"] {
  --davi-button-bg: transparent;
  --davi-button-border-color: rgba(245, 245, 246, 0.8);
  --davi-button-color: var(--color-davi-white);
  --davi-button-hover-bg: var(--color-davi-white);
  --davi-button-hover-border-color: var(--color-davi-white);
  --davi-button-hover-color: var(--color-davi-black);
  --davi-button-hover-shadow: 0 10px 24px rgba(225, 0, 49, 0.18);
  --davi-button-hover-filter: none;
}

.hs-header__status-dot {
  flex: 0 0 auto;
  animation: hs-header-status-pulse 1.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, opacity, box-shadow;
}

.hs-header__availability {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  color: color-mix(in srgb, var(--color-davi-white) 80%, transparent);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.hs-header__availability > span:last-child {
  transition: color 180ms ease;
}

.hs-header__availability:hover,
.hs-header__availability:focus-visible {
  color: var(--color-davi-white);
}

.hs-header__menu-button::after,
.hs-header__menu-link::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  left: 0.25rem;
  bottom: -0.125rem;
  width: auto;
  height: 1px;
  background: linear-gradient(
    270deg,
    rgba(225, 0, 49, 1) 0%,
    rgba(225, 0, 49, 0.92) 38%,
    rgba(225, 0, 49, 0.42) 72%,
    rgba(225, 0, 49, 0) 100%
  );
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: right center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.hs-header__menu-button [data-menu-icon] {
  opacity: 0;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.hs-header__menu-button [data-menu-icon] svg {
  transition: transform 160ms ease;
}

.hs-header__menu-button.is-open::after,
.hs-header__menu-button:hover::after,
.hs-header__menu-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hs-header__menu-button.is-open [data-menu-icon],
.hs-header__menu-button:hover [data-menu-icon] {
  opacity: 1;
}

.hs-header__desktop-nav .hs-header__menu-button:hover [data-menu-icon] {
  transform: rotate(90deg) !important;
}

.hs-header__desktop-nav
  .hs-header__menu-button:hover:not(.is-open)
  [data-menu-icon]
  svg {
  transform: none;
}

.hs-header__menu-button.is-open [data-menu-icon] svg {
  transform: rotate(-90deg);
}

@media (min-width: 992px) {
  .hs-header__desktop-nav .hs-header__menu-button [data-menu-icon] {
    transform: rotate(90deg);
    transition: opacity 160ms ease;
  }

  .hs-header__desktop-nav .hs-header__menu-button [data-menu-icon] svg {
    transform: none;
    transition: transform 160ms ease;
  }

  .hs-header__desktop-nav .hs-header__menu-button.is-open [data-menu-icon] svg {
    transform: rotate(180deg);
  }
}

@media (max-width: 991px) {
  .hs-header__menu-button::after {
    display: none;
  }

  .hs-header__menu-button [data-menu-icon] {
    opacity: 1;
  }

  .hs-header__menu-button.is-open [data-menu-icon] svg {
    transform: rotate(90deg);
  }

  .hs-header__mobile-toggle-open,
  .hs-header__mobile-toggle-close {
    position: absolute;
    inset: 0;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .hs-header__mobile-toggle-open {
    opacity: 1;
  }

  .hs-header__mobile-toggle-close {
    opacity: 0;
    transform: scale(0.8);
  }

  .hs-header__mobile-toggle-open svg {
    transform: none;
  }

  .hs-header.is-mobile-open .hs-header__mobile-toggle-open {
    opacity: 0;
    transform: scale(0.8);
  }

  .hs-header.is-mobile-open .hs-header__mobile-toggle-close {
    opacity: 1;
    transform: scale(1);
  }

  .hs-header__mega-rail::before,
  .hs-header__mega-primary::before,
  .hs-header__mega-primary::after,
  .hs-header__mega-secondary::before,
  .hs-header__mega-secondary::after {
    display: none;
  }

  .hs-header__menu-button,
  .hs-header__menu-link {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
  }

  .hs-header__modal-panel {
    width: 100%;
    max-height: calc(100vh - 32px);
  }

  .hs-header__modal-content {
    max-height: calc(100vh - 32px);
  }
}

.hs-header__mega-rail {
  position: relative;
  --hs-header-active-top: 0px;
  --hs-header-active-height: 0px;
  --hs-header-active-opacity: 0;
}

.hs-header__mega-rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(245, 245, 246, 0.18);
}

.hs-header__mega-active-indicator {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--hs-header-active-height);
  opacity: var(--hs-header-active-opacity);
  transform: translateY(var(--hs-header-active-top));
  background: rgba(245, 245, 246, 0.02);
  transition:
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    height 480ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
  pointer-events: none;
  z-index: 0;
}

.hs-header__mega-active-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(225, 0, 49, 1) 0%,
    rgba(225, 0, 49, 0.92) 38%,
    rgba(225, 0, 49, 0.42) 72%,
    rgba(225, 0, 49, 0) 100%
  );
}

.hs-header__mega-primary,
.hs-header__mega-secondary {
  position: relative;
  z-index: 1;
}

.hs-header__mega-primary {
  justify-content: flex-start;
}

.hs-header__mega-primary::before,
.hs-header__mega-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 246, 0.02);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.hs-header__mega-primary::after,
.hs-header__mega-secondary::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(225, 0, 49, 1) 0%,
    rgba(225, 0, 49, 0.92) 38%,
    rgba(225, 0, 49, 0.42) 72%,
    rgba(225, 0, 49, 0) 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.hs-header__mega-primary-description {
  max-height: 4rem;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  transition:
    max-height 320ms ease,
    opacity 220ms ease,
    transform 320ms ease;
}

/*
.hs-header__mega-primary.is-active .hs-header__mega-primary-description {
max-height: 0;
opacity: 0;
transform: translateY(-8px);
}
*/

@media (hover: hover) and (pointer: fine) {
  .hs-header__mega-primary:hover::before,
  .hs-header__mega-primary:hover::after,
  .hs-header__mega-primary:focus-visible::before,
  .hs-header__mega-primary:focus-visible::after,
  .hs-header__mega-secondary:hover::before,
  .hs-header__mega-secondary:hover::after,
  .hs-header__mega-secondary:focus-visible::before,
  .hs-header__mega-secondary:focus-visible::after {
    opacity: 1;
  }

  .hs-header__mega-primary.is-active:hover::before,
  .hs-header__mega-primary.is-active:hover::after,
  .hs-header__mega-primary.is-active:focus-visible::before,
  .hs-header__mega-primary.is-active:focus-visible::after,
  .hs-header__mega-secondary.is-active:hover::before,
  .hs-header__mega-secondary.is-active:hover::after,
  .hs-header__mega-secondary.is-active:focus-visible::before,
  .hs-header__mega-secondary.is-active:focus-visible::after {
    opacity: 0;
  }
}

.hs-header__v1-mobile-view {
  display: none;
}

.hs-header__v1-mobile-view.is-current {
  display: block;
}

.hs-header__card {
  isolation: isolate;
  position: relative;
}

.hs-header__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(225, 0, 49, 1) 0%,
    rgba(225, 0, 49, 0.88) 34%,
    rgba(225, 0, 49, 0.45) 68%,
    rgba(225, 0, 49, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  z-index: 2;
}

.hs-header__card-media {
  transition: transform 220ms ease;
  transform-origin: center;
}

.hs-header__card-arrow {
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.hs-header__card:hover::before,
.hs-header__card:focus-visible::before {
  opacity: 1;
}

.hs-header__card:hover .hs-header__card-arrow,
.hs-header__card:focus-visible .hs-header__card-arrow {
  background: #f5f5f6;
  color: #131010;
  box-shadow: inset 0 0 0 1px #f5f5f6;
}

.hs-header__card:hover .hs-header__card-media,
.hs-header__card:focus-visible .hs-header__card-media {
  transform: scale(1.05);
}

.hs-header__feature-card-image {
  position: relative;
  overflow: hidden;
}

.hs-header__feature-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  opacity: 0;
  transition:
    opacity 180ms ease,
    border-color 180ms ease;
  pointer-events: none;
}

.hs-header__feature-card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  transition: gap 180ms ease;
}

.hs-header__feature-card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.hs-header__feature-card-media {
  transition: transform 220ms ease;
  transform-origin: center;
}

.hs-header__feature-card-description {
  display: -webkit-box;
  overflow: hidden;
  transition: color 180ms ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hs-header__feature-card-cta {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
}

.hs-header__feature-card:hover .hs-header__feature-card-image::after,
.hs-header__feature-card:focus-visible .hs-header__feature-card-image::after {
  opacity: 1;
  border-color: #e10031;
}

{#
.hs-header__feature-card:hover .hs-header__feature-card-copy,
.hs-header__feature-card:focus-visible .hs-header__feature-card-copy {
  gap: 16px;
}
#}

.hs-header__feature-card:hover .hs-header__feature-card-media,
.hs-header__feature-card:focus-visible .hs-header__feature-card-media {
  transform: scale(1.05);
}

{#
.hs-header__feature-card:hover .hs-header__feature-card-description,
.hs-header__feature-card:focus-visible .hs-header__feature-card-description {
  color: rgba(245, 245, 246, 0.88);
}


.hs-header__feature-card:hover .hs-header__feature-card-cta,
.hs-header__feature-card:focus-visible .hs-header__feature-card-cta {
  opacity: 1;
  transform: translateY(0);
}
#}

.hs-header__v2-link {
  isolation: isolate;
}

.hs-header__v2-link-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(225, 0, 49, 1) 0%,
    rgba(225, 0, 49, 0.92) 38%,
    rgba(225, 0, 49, 0.42) 72%,
    rgba(225, 0, 49, 0) 100%
  );
  transition: opacity 220ms ease;
  z-index: 1;
}

.hs-header__v2-link-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hs-header__v2-link-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 320ms ease;
}

.hs-header__v2-link-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(19, 16, 16, 0.84) 0%,
      rgba(19, 16, 16, 0.42) 55%,
      rgba(19, 16, 16, 0.2) 100%
    ),
    rgba(245, 245, 246, 0.04);
}

.hs-header__v2-link-copy {
  display: block;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.hs-header__banner-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(90deg, #242932 0%, #a00023 48%, #d6d7e5 100%);
}

.hs-header__banner-media-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hs-header__banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-header__banner-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(19, 16, 16, 0.72) 0%,
      rgba(19, 16, 16, 0.42) 55%,
      rgba(19, 16, 16, 0.22) 100%
    ),
    linear-gradient(
      90deg,
      rgba(36, 41, 50, 0.42) 0%,
      rgba(160, 0, 35, 0.28) 48%,
      rgba(214, 215, 229, 0.14) 100%
    );
}

@media (min-width: 992px) {
  .hs-header__v3-cards-intro {
    display: grid;
    align-content: start;
    grid-template-rows: 34px auto;
    row-gap: 12px;
    padding-bottom: 24px;
  }

  .hs-header__v3-cards-intro-link {
    display: flex;
    height: 34px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hs-header__v3-cards-intro-text {
    min-height: 24px;
    align-self: flex-start;
  }

  .hs-header__v3-feature-banner {
    align-self: flex-start;
    width: calc(100% + 144px);
    margin-left: -72px;
  }

  .hs-header__v3-feature-banner--three-columns {
    width: calc(100% + 125px);
    margin-left: -53px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hs-header__v2-link:hover .hs-header__v2-link-indicator,
  .hs-header__v2-link:focus-visible .hs-header__v2-link-indicator {
    opacity: 1;
  }

  .hs-header__v2-link:hover .hs-header__v2-link-overlay,
  .hs-header__v2-link:focus-visible .hs-header__v2-link-overlay {
    opacity: 1;
  }

  .hs-header__v2-link:hover .hs-header__v2-link-media,
  .hs-header__v2-link:focus-visible .hs-header__v2-link-media {
    transform: scale(1);
  }

  .hs-header__v2-link:hover .hs-header__v2-link-copy,
  .hs-header__v2-link:focus-visible .hs-header__v2-link-copy {
    transform: translateX(10px);
    color: #f5f5f6;
  }
}

.hs-header__mega-chevron {
  opacity: 0;
  transform: rotate(180deg) translateX(4px);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.hs-header__mega-primary.is-active .hs-header__mega-chevron,
.hs-header__mega-secondary.is-active .hs-header__mega-chevron {
  opacity: 1;
  transform: rotate(180deg) translateX(0);
}

@media (hover: hover) and (pointer: fine) {
  .hs-header__mega-primary:hover .hs-header__mega-chevron,
  .hs-header__mega-primary:focus-visible .hs-header__mega-chevron,
  .hs-header__mega-secondary:hover .hs-header__mega-chevron,
  .hs-header__mega-secondary:focus-visible .hs-header__mega-chevron {
    opacity: 1;
    transform: rotate(0deg) translateX(0);
  }

  .hs-header__mega-primary.is-active:hover .hs-header__mega-chevron,
  .hs-header__mega-primary.is-active:focus-visible .hs-header__mega-chevron,
  .hs-header__mega-secondary.is-active:hover .hs-header__mega-chevron,
  .hs-header__mega-secondary.is-active:focus-visible .hs-header__mega-chevron {
    transform: rotate(180deg) translateX(0);
  }
}

.hs-header__desktop-panels {
  position: fixed;
  top: var(--hs-header-offset, 119px);
  right: 0;
  left: 0;
  z-index: 79;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: calc(100vh - var(--hs-header-offset, 119px));
  overflow: auto;
  transform: translateY(-14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.hs-header.is-desktop-open [data-desktop-panels] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hs-header.is-desktop-closing [data-desktop-panels] {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translateY(-14px);
}

.hs-header.is-search-open [data-search-panel] {
  position: fixed;
  top: var(--hs-header-offset, 119px);
  right: 0;
  left: 0;
  z-index: 79;
  display: block;
}

.hs-header.is-mobile-open [data-mobile-panel],
.hs-header.is-mobile-search-open [data-mobile-search-panel],
.hs-header.is-desktop-closing .hs-header__desktop-panel.is-active,
.hs-header__desktop-panel.is-active,
.hs-header__lang.is-open .hs-header__lang-menu {
  display: block;
}

.hs-header.is-mobile-open [data-mobile-panel],
.hs-header.is-mobile-search-open [data-mobile-search-panel] {
  top: var(--hs-header-offset, 70px);
  height: calc(100dvh - var(--hs-header-offset, 70px));
}

.hs-header__mobile-panel,
.hs-header__mobile-search {
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.hs-header__mobile-views {
  position: relative;
  height: 100%;
}

.hs-header__mobile-view {
  position: absolute;
  inset: 0;
  display: none;
  background: rgba(19, 16, 16, 0.98);
}

.hs-header__mobile-view.is-active {
  display: flex;
}

.hs-header__mobile-view-scroll {
  min-height: 0;
}

.hs-header__mobile-footer .hs-header__lang [data-lang-menu] {
  top: auto;
  bottom: calc(100% + 8px);
  right: auto;
  left: 0;
}

.hs-header__mobile-back {
  letter-spacing: 0.03em;
}

.hs-header__v1-primary-panels,
.hs-header__v1-secondary-panels {
  align-self: start;
  display: grid;
}

.hs-header__v1-panel-intro {
  align-self: start;
}

.hs-header__v1-primary-panel,
.hs-header__v1-secondary-panel {
  align-self: start;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 220ms ease;
}

.hs-header__v1-primary-panel.is-active,
.hs-header__v1-secondary-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.hs-header__v1-primary-panel:not(.is-active),
.hs-header__v1-secondary-panel:not(.is-active) {
  transition-duration: 140ms;
}

@media (min-width: 992px) {
  .hs-header__v1-panel-intro {
    display: flex;
    min-height: 44px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 48px;
  }
}

@media (max-width: 991px) {
  .hs-header__v1-primary-panels,
  .hs-header__v1-secondary-panels {
    display: block;
  }

  .hs-header__mega-active-indicator {
    display: none;
  }

  .hs-header__v1-primary-panel,
  .hs-header__v1-secondary-panel {
    grid-area: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
}

.is-hidden,
.hs-header__desktop-panel,
.hs-header__search-panel,
.hs-header__mobile-panel,
.hs-header__mobile-search,
.hs-header__lang-menu {
  display: none;
}
