  .mcla-header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.mcla-header.sticky {
  position: fixed;
  z-index: 1000;
  transition: all 0.3s;
}

.mcla-header.sticky.in-view .mcla-header__logo,
.mcla-header.sticky.in-view .mcla-header__nav-links {
  opacity: 0;
  pointer-events: none;
}

.mcla-header.sticky-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mcla-header.sticky:not(.sticky-show) {
  opacity: 0;
  transform: translate(-50%, -100%);
}

.mcla-header .mcla-container {
  display: flex;
  align-items: center;
  padding: 15px 9px 9px 18px;
  position: relative;
  z-index: 1;
}
.mcla-header__logo {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s 0.3s;
  cursor: pointer;
}
.mcla-header__logo img {
  width: 180px;
  display: block;
}
.mcla-header__nav {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-grow: 1;
  justify-content: flex-end;
}
.mcla-header__nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.3s, transform 0.6s 0.3s;
}
.mcla-header__nav-links-item {
  padding: 9px 19px 5px 17px;
  background: url('/_resources/assets/dots-vertical-white.svg') no-repeat 100% 0;
  background-repeat: repeat-y;
  background-size: 3px;
  position: relative;
}
.mcla-header__nav-links-item:last-of-type {
  background: none;
  padding-right: 0;
}
.mcla-header__nav-links-item a {
  font-family: Knockout52Cruiserweight;
  font-size: 18px;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: block;
  transition: all 0.3s;
}
.mcla-header__nav-links-item a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--preset-color-brand-electric-yellow);
  border-radius: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  bottom: -6px;
  opacity: 0;
  transition: all 0.3s;
}
.mcla-header__nav-links-item a:hover {
  transform: translateY(-3px);
}
.mcla-header__nav-links-item a:hover::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mcla-header__nav-links-item::-moz-selection { /* Code for Firefox */
  color: var(--preset-color-brand-dark-blue);
  background: var(--preset-color-brand-electric-yellow);
}
.mcla-header__nav-links-item::selection {
  color: var(--preset-color-brand-dark-blue);
  background: var(--preset-color-brand-electric-yellow);
}

.mcla-header__nav-menu {
  display: flex;
  gap: 3px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.45s, transform 0.6s 0.45s;
}
.mcla-header__nav-menu-search {
  background-color: var(--preset-color-brand-electric-yellow);
  border: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 16px;
  transition: all 0.3s;
  cursor: pointer;
}
.mcla-header__nav-menu-search:hover {
  background-color: var(--preset-color-brand-light-blue);
}
.mcla-header__nav-menu-search svg {
  width: 20px;
  height: auto;
}
.mcla-header__nav-menu-mega {
  background-color: var(--preset-color-brand-electric-yellow);
  border: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 16px;
  transition: all 0.3s;
  cursor: pointer;
}
.mcla-header__nav-menu-mega:hover {
  background-color: var(--preset-color-brand-light-blue);
}
.mcla-header__nav-menu-mega span {
  font-family: Knockout52Cruiserweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
  color: var(--preset-color-brand-dark-blue);
}
.mcla-header__nav-menu-mega span:first-of-type {
  display: none;
}
.mcla-header__nav-menu-mega svg {}


/* Mega Menu Styles */
.mcla-header__mega-menu-custom-cursor {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  display: block;
}
.mcla-header__mega-menu-custom-cursor.active {
  opacity: 1;
}
.mcla-header__mega-menu-custom-cursor-block {
  width: 120px;
  height: 120px;
  background-color: var(--preset-color-brand-light-blue);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
  transition: transform 0.3s;
}
.mcla-header__mega-menu-custom-cursor.active .mcla-header__mega-menu-custom-cursor-block {
  transform: scale(1);
}
.mcla-header__mega-menu-custom-cursor-block svg {
  fill: var(--preset-color-brand-dark-blue);
}

.mcla-header__mega-menu {
  position: fixed;
  height: 100VH;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mcla-header__mega-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mcla-header__mega-menu-flyout {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--preset-color-brand-electric-yellow);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: all 0.45s ease;
}

.mcla-header__mega-menu::-moz-selection { /* Code for Firefox */
  background: var(--preset-color-brand-dark-blue);
  color: var(--preset-color-brand-electric-yellow);
}
.mcla-header__mega-menu::selection {
  background: var(--preset-color-brand-dark-blue);
  color: var(--preset-color-brand-electric-yellow);
}

.mcla-header__mega-menu.active .mcla-header__mega-menu-flyout {
  transform: translateX(0);
}
.mcla-header__mega-menu-flyout-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  justify-content: flex-end;
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 3px;
}
.mcla-header__mega-menu-flyout-top-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  opacity: 0;
  transform: translateY(21px);
  transition: all 0.6s;
}

.mcla-header__mega-menu.active .mcla-header__mega-menu-flyout-top-links {
  transform: translateY(0px);
  opacity: 1;
}
.mcla-header__mega-menu-flyout-top-links-item {
  padding: 0 18px;
  background: url('/_resources/assets/dots-vertical-dark.svg') no-repeat 100% 0;
  background-repeat: repeat-y;
  background-size: 3px;
  position: relative;
}
.mcla-header__mega-menu-flyout-top-links-item:last-of-type {
  background: none;
}
.mcla-header__mega-menu-flyout-top-links-item a {
  font-family: Knockout52Cruiserweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
  color: var(--preset-color-brand-dark-blue);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
}
.mcla-header__mega-menu-flyout-top-links-item a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--preset-color-brand-blue);
  border-radius: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  bottom: -6px;
  opacity: 0;
  transition: all 0.3s;
}
.mcla-header__mega-menu-flyout-top-links-item a:hover {
  transform: translateY(-3px);
}
.mcla-header__mega-menu-flyout-top-links-item a:hover::before {
  opacity: 1;
  transform: translate(-50%, 0);
}
.mcla-header__mega-menu-flyout-top-close {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.mcla-header__mega-menu-flyout-top-close svg {
  fill: var(--preset-color-brand-dark-blue);
}
.mcla-header__mega-menu-flyout-search {
  width: calc(100% - 63px);
  padding: 12px 0 12px 12px;
  opacity: 0;
  transform: translateY(21px);
  transition: all 0.6s 0.15s;
}

.mcla-header__mega-menu-flyout-search .search_autocomplete {
  display: none;
}

.mcla-header__mega-menu.active .mcla-header__mega-menu-flyout-search {
  opacity: 1;
  transform: translateY(0);
}
.mcla-header__mega-menu-flyout-search-bar {
  width: 100%;
  height: 60px;
  position: relative;
  background-color: var(--preset-color-standard-white);
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.09);
}
.mcla-header__mega-menu-flyout-search-bar-input {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 12px;
  background-color: transparent;
  background-image: url("/_resources/assets/search-bg-radials.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border: 0;
  padding: 0 51px 0 36px;
  font-family: Knockout52Cruiserweight;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  font-weight: 375;
  font-size: 16px;
  line-height: 24px;
  color: var(--preset-color-brand-dark-blue);
  outline-color: var(--preset-color-brand-blue);
  cursor: pointer;
}
.mcla-header__mega-menu-flyout-search-bar-input::placeholder {
  color: #002B49;
}
.mcla-header__mega-menu-flyout-search-bar-searchicon {
  position: absolute;
  z-index: 2;
  fill: var(--preset-color-brand-blue);
  top: 50%;
  transform: translateY(-50%);
  right: 21px;
}

.mcla-header__mega-menu .cludo-voice-icon {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  background: url(/_resources/assets/mic-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  background-color: transparent;
  border: 0;
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: all 0.3s;
  cursor: pointer;
}
.mcla-header__mega-menu .cludo-voice-icon:hover {
  transform: translateY(calc(-50% - 3px));
  opacity: 1;
}
.mcla-header__mega-menu .cludo-voice-icon svg {
  display: none;
}

.mcla-header__mega-menu-flyout-tabs {
  padding: 0 12px;
  opacity: 0;
  transform: translateY(21px);
  transition: all 0.6s 0.3s;
}
.mcla-header__mega-menu.active .mcla-header__mega-menu-flyout-tabs {
  opacity: 1;
  transform: translateY(0);
}
.mcla-header__mega-menu-flyout-tabs-list {
  display: flex;
  align-items: center;
  gap: 3px;
}
.mcla-header__mega-menu-flyout-tabs-list-item {
  width: 100%;
  font-family: Knockout52Cruiserweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-size: 14px;
  line-height: 27px;
  text-transform: uppercase;
  color: var(--preset-color-brand-dark-blue);
  padding: 5px 12px;
  background-color: transparent;
  border: 1px solid var(--preset-color-brand-dark-blue);
  cursor: pointer;
}
.mcla-header__mega-menu-flyout-tabs-list-item.active {
  background-color: var(--preset-color-brand-dark-blue);
  color: var(--preset-color-standard-white);
}

.mcla-header__mega-menu-flyout-tabs-list-item.active::-moz-selection { /* Code for Firefox */
  color: var(--preset-color-brand-dark-blue);
  background: var(--preset-color-brand-electric-yellow);
}
.mcla-header__mega-menu-flyout-tabs-list-item.active::selection {
  color: var(--preset-color-brand-dark-blue);
  background: var(--preset-color-brand-electric-yellow);
}

.mcla-header__mega-menu-flyout-tabs-list-item:first-of-type {
  border-bottom-left-radius: 18px;
}
.mcla-header__mega-menu-flyout-tabs-list-item:last-of-type {
  border-top-right-radius: 18px;
}

.mcla-header__mega-menu-flyout-tab-content {
  padding: 21px 9px;
  margin: 0;
  list-style: none;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(21px);
  transition: all 0.6s 0.45s;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.mcla-header__mega-menu-flyout-tab-content::-webkit-scrollbar {
  display: none;
}
.mcla-header__mega-menu.active .mcla-header__mega-menu-flyout-tab-content {
  opacity: 1;
  transform: translateY(0);
}
.mcla-header__mega-menu-flyout-tab-content.active {
  display: flex;
}
.mcla-header__mega-menu-flyout-tab-content-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0,43,73,0.3);
  margin-bottom: 18px;
  padding-bottom: 18px;
  gap: 12px;
}
.mcla-header__mega-menu-flyout-tab-content-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.mcla-header__mega-menu-flyout-tab-content-item-top {
  display: flex;
  align-items: center;
  margin: 0 9px;
}
.mcla-header__mega-menu-flyout-tab-content-item-link {
  font-family: Knockout32JuniorCruiserweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 330;
  font-size: 21px;
  line-height: 30px;
  color: var(--preset-color-brand-dark-blue);
  text-decoration: none;
  cursor: pointer;
  background-image: linear-gradient(to bottom, var(--preset-color-brand-dark-blue), var(--preset-color-brand-dark-blue));
  transition: background-size 0.3s;
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  display: inline;
}
.mcla-header__mega-menu-flyout-tab-content-item-link:hover {
  background-size: 100% 2px;
}
.mcla-header__mega-menu-flyout-tab-content-item-toggle-container {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
.mcla-header__mega-menu-flyout-tab-content-item-toggle {
  width: 30px;
  height: 30px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--preset-color-brand-dark-blue);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  margin: 0;
}
.mcla-header__mega-menu-flyout-tab-content-item-toggle-container.active .mcla-header__mega-menu-flyout-tab-content-item-toggle {
  background-color: var(--preset-color-brand-dark-blue);

}
.mcla-header__mega-menu-flyout-tab-content-item-toggle-container.active .mcla-header__mega-menu-flyout-tab-content-item-toggle svg {
  fill: var(--preset-color-standard-white);
  transform: rotate(180deg);
}
.mcla-header__mega-menu-flyout-tab-content-item-toggle:hover {
  transform: translateY(-3px);
}
.mcla-header__mega-menu-flyout-tab-content-item-toggle svg {
  fill: var(--preset-color-brand-dark-blue);
}
.mcla-header__mega-menu-flyout-tab-content-item-sub {
  list-style: none;
  padding: 0 0 0 18px;
  background: url('/_resources/assets/dots-vertical-dark.svg') no-repeat 0% 0;
  background-repeat: repeat-y;
  background-size: 3px;
  margin: 0 9px;
  display: none;
  flex-direction: column;
  gap: 6px;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub.active {
  display: flex;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-top {
  display: flex;
  align-items: center;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-link {
  font-family: Knockout32JuniorCruiserweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 330;
  font-size: 16px;
  line-height: 24px;
  color: var(--preset-color-brand-dark-blue);
  text-decoration: none;
  cursor: pointer;
  background-image: linear-gradient(to bottom, var(--preset-color-brand-dark-blue), var(--preset-color-brand-dark-blue));
  transition: background-size 0.3s;
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  display: inline;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-link:hover {
  background-size: 100% 2px;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-toggle-container {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-toggle-container.active .mcla-header__mega-menu-flyout-tab-content-item-sub-item-toggle svg {
  transform: rotate(180deg);
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  transition: all 0.3s;
  padding: 0;
  margin: 0;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-toggle-container.active .mcla-header__mega-menu-flyout-tab-content-item-sub-item-toggle svg {
  transform: rotate(180deg);
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-toggle:hover {
  transform: translateY(-3px);
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-item-toggle svg {
  fill: var(--preset-color-brand-dark-blue);
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-children {
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
  background: url('/_resources/assets/dots-vertical-dark.svg') no-repeat 0% 0;
  background-repeat: repeat-y;
  background-size: 3px;
  display: none;
  flex-direction: column;
  gap: 9px;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-children.active {
  display: flex;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-children-item {}
.mcla-header__mega-menu-flyout-tab-content-item-sub-children-item-link {
  font-family: Knockout32JuniorCruiserweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 330;
  font-size: 16px;
  line-height: 24px;
  color: var(--preset-color-brand-dark-blue);
  text-decoration: none;
  cursor: pointer;
  background-image: linear-gradient(to bottom, var(--preset-color-brand-dark-blue), var(--preset-color-brand-dark-blue));
  transition: background-size 0.3s;
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  display: inline;
}
.mcla-header__mega-menu-flyout-tab-content-item-sub-children-item-link:hover {
  background-size: 100% 2px;
}

.mcla-header__mega-menu-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--preset-color-brand-dark-blue);
  opacity: 0;
  transition: opacity 0.6s;
  cursor: none;
}
.mcla-header__mega-menu.active .mcla-header__mega-menu-overlay {
  opacity: 0.8;
}

.lock-scrolling {
  height: 100VH;
  overflow: hidden;
}

/* Animation classes */
.mcla-header.in-view .mcla-header__logo,
.mcla-header.in-view .mcla-header__nav-links,
.mcla-header.in-view .mcla-header__nav-menu {
  opacity: 1;
  transform: translateY(0);
}


/* Switch to relative positioning for inner templates */
.mcla-inner-template .mcla-header {
  position: relative;
  border-top: 6px solid var(--preset-color-brand-electric-yellow);
}
.mcla-inner-template .mcla-header .mcla-container {
  align-items: center;
}
.mcla-inner-template .mcla-header.sticky {
  position: fixed;
}
.mcla-inner-template .mcla-header__nav-links-item a {
  color: var(--preset-color-brand-dark-blue);
}
.mcla-inner-template .mcla-header__nav-links-item {
  background: url(/_resources/assets/dots-vertical-dark.svg) no-repeat 100% 0;
  background-repeat: repeat-y;
  background-size: 3px;
}
.mcla-inner-template .mcla-header__nav-links-item:last-of-type {
  background: none;
}
.mcla-inner-template .mcla-header__nav-links-item a::before {
  background-color: var(--preset-color-brand-light-blue);
}

@media (min-width: 750px) {
  .mcla-header .mcla-container {
    padding: 27px 30px 21px 30px;
    align-items: flex-start;
  }
  .mcla-header__nav-links {
    display: flex;
  }

  .mcla-header__mega-menu-flyout {
    left: auto;
    width: 100%;
    max-width: 640px;
  }
  .mcla-header__nav {
    gap: 30px;
  }
  
  /* Mega Menu Styles */
  .mcla-header__mega-menu-flyout-top-links {
    display: flex;
  }
  .mcla-header__mega-menu-flyout-top {
    justify-content: space-between;
    position: relative;
    padding: 27px 27px 15px 30px;
    top: auto;
    right: auto;
  }
  .mcla-header__mega-menu-flyout-search {
    width: 100%;
    padding: 15px 30px 30px 30px;
  }
  .mcla-header__mega-menu-flyout-search-bar {
    height: 76px;
    border-radius: 12px;
  }
  .mcla-header__mega-menu-flyout-search-bar-input {
    font-size: 18px;
    line-height: 27px;
    padding: 0 51px;
  }
  .mcla-header__mega-menu-flyout-tabs {
    padding: 0 30px;
  }
  .mcla-header__mega-menu-flyout-tabs-list-item {
    font-size: 18px;
    line-height: 32px;
    padding: 8px 21px;
  }
  .mcla-header__mega-menu-flyout-tab-content {
    padding: 30px 30px 60px 30px;
  }
  .mcla-header__mega-menu-flyout-tab-content-item-sub-item-link,
  .mcla-header__mega-menu-flyout-tab-content-item-sub-children-item-link {
    font-size: 18px;
    line-height: 27px;
  }
  .mcla-header__mega-menu-flyout-tab-content-item-link {
    font-size: 24px;
    line-height: 36px;
  }
  .mcla-header__mega-menu-flyout-tab-content-item-top {
    margin: 0 24px 0 30px;
  }
  .mcla-header__mega-menu-flyout-tab-content-item-sub {
    gap: 9px;
    margin: 0 24px 0 30px;
  }
  .mcla-header__mega-menu-flyout-tabs-list-item:first-of-type {
    border-bottom-left-radius: 24px;
  }
  .mcla-header__mega-menu-flyout-tabs-list-item:last-of-type {
    border-top-right-radius: 24px;
  }

  .mcla-header__mega-menu .cludo-voice-icon {
    top: 50%;
    left: 21px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
  }

}
@media (min-width: 1025px) {
  .mcla-header .mcla-container {
    padding: 27px 30px 21px 60px;
  }
  .mcla-header__logo img {
    width: 240px;
  }
  .mcla-header__nav-menu-mega {
    width: auto;
    display: flex;
    gap: 9px;
    padding: 0 18px;
  }
  .mcla-header__nav-menu-mega span:first-of-type {
    display: block;
  }
  .mcla-header__nav {
    gap: 48px;
  }
}