/* ------------------------------------------------------------ *\
  header
\* ------------------------------------------------------------ */

.header-wrapper {
  --c-blue-dark: #0A4297;
  --c-blue-light: #00A4FA;
  --ff-bar: "Open Sans", sans-serif;
  --ff-infobar-list: "Georgia", sans-serif;
  --ff-infobar-letter-spacing: .01em;
  --ff-main: "Roboto", sans-serif;
  --fs-utilities: 14px;
  --nav-text-transform: normal;
  --logo-size: 130px;
  --submenu-font-weight: 400;
  --submenu-border: none;
  --cart-number-bg: #ffcc20;
}

.header-wrapper *:not(.shell) {
  margin: 0;
  font-style: unset;
  font-size: unset;
  font-family: unset;
  font-weight: unset;
  text-decoration: unset;
}

.header-wrapper a {
  color: inherit;
  text-decoration: underline;
}

.header-wrapper ul,
.header-wrapper ol {
  padding-left: 0;
  list-style-type: none;
}

.header-wrapper--alt {
  --c-blue-dark: #017bc0;
  --c-blue-light: #00A4FA;
  --ff-bar: "Open Sans", sans-serif;
  --ff-infobar-list: "Open Sans", sans-serif;
  --ff-infobar-letter-spacing: 0;
  --ff-main: "Open Sans", sans-serif;
  --fs-utilities: 16px;
  --nav-text-transform: uppercase;
  --logo-size: 170px;
  --submenu-font-weight: 700;
  --submenu-border: 4px solid #017bc0;
}

.header-wrapper .header-set {
  font-family: var(--ff-main);
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .header-set {
    padding-bottom: 20px;
  }
}

.header-wrapper .header-set .header__inner {
  display: flex;
  padding: 29px 0 0;
  position: relative;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .header-set .header__inner {
    align-items: center;
    padding: 0;
    margin: 10px 0;
    flex-wrap: wrap;
  }
}

.header-wrapper .header-set .header__logo {
  display: inline-block;
  max-width: 201px;
  flex: 0 0 201px;
  align-self: flex-start;
  /*  Small Desktop  */
  /*  Mobile  */
}

@media (max-width: 1199px) {
  .header-wrapper .header-set .header__logo {
    max-width: 17.2%;
    flex: 0 0 17.2%;
  }
}

@media (max-width: 767px) {
  .header-wrapper .header-set .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 120px;
    width: 100%;
    height: auto;
  }
}

.header-wrapper .header-set .header__logo a {
  padding-top: 52%;
  position: relative;
  width: var(--logo-size);
  display: inline-block;
  /*  Small Desktop  */
  /*  Tablet  */
  /*  Mobile  */
}

@media (max-width: 1199px) {
  .header-wrapper .header-set .header__logo a {
    padding-top: 60%;
    max-width: 76%;
  }
}

@media (max-width: 1023px) {
  .header-wrapper .header-set .header__logo a {
    padding-top: 73%;
  }
}

@media (max-width: 767px) {
  .header-wrapper .header-set .header__logo a {
    width: 100%;
    max-width: 100%;
  }
}

.header-wrapper .header-set .header__logo a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.header-wrapper .header-set .header__content {
  max-width: 100%;
  flex: 1;
}

.header-wrapper .header-set .header__search {
  flex: 1;
  /*  Small Desktop  */
  /*  Tablet  */
  /*  Mobile  */
}

@media (max-width: 1199px) {
  .header-wrapper .header-set .header__search {
    max-width: 56.7%;
  }
}

@media (max-width: 1023px) {
  .header-wrapper .header-set .header__search {
    max-width: 47.7%;
  }
}

@media (max-width: 767px) {
  .header-wrapper .header-set .header__search {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.header-wrapper .header-set .header__utilities {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 17px;
  /*  Small Desktop  */
  /*  Mobile  */
}

@media (max-width: 1199px) {
  .header-wrapper .header-set .header__utilities {
    margin-bottom: 6px;
  }
}

@media (max-width: 767px) {
  .header-wrapper .header-set .header__utilities {
    margin-left: auto;
    max-width: 100px;
    margin-bottom: 0;
  }
}

.header-wrapper .header-set .header__utilities .nav-utilities-set {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .header-set .header__utilities .nav-utilities-set {
    margin-left: auto;
  }
}

.header-wrapper .header-set .header__menu {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .header-set .header__menu {
    position: absolute;
    top: calc(100% + 68px);
    left: 0;
    background-color: #f1f1f1;
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding: 19px 0 12px;
    transform: scaleY(0);
    transform-origin: top center;
    transition: 0.4s;
  }
}

.header-wrapper .header-set.is-open .header__menu {
  transform: scaleY(1);
}

.header-wrapper .cart-set {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #f1f1f1;
  border-radius: 50%;
  position: relative;
}

.header-wrapper .cart-set img {
  width: 18px;
  height: auto;
}

.header-wrapper .cart-set span {
  background-color: var(--cart-number-bg);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  color: #0a0a0a;
  font-weight: 600;
  position: absolute;
  right: -4px;
  top: -7px;
  font-size: 14px;
}

.header-wrapper .search-set {
  max-width: 553px;
  width: 100%;
  position: relative;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .search-set {
    max-width: 100%;
  }
}

.header-wrapper .search-set form {
  padding: 0;
  border: none;
  background-color: transparent;
}

.header-wrapper .search-set input {
  height: 39px;
  border: 1px solid #ccc;
  padding: 0 15px;
  color: #4F5E62;
  font-size: 16px;
  width: 100%;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .search-set input {
    width: 100%;
  }
}

.header-wrapper .search-set .search__btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 43px;
  height: 39px;
  background-color: transparent;
  border: none;
  background-image: url("https://25946924.fs1.hubspotusercontent-eu1.net/hubfs/25946924/%5B2024%5D%20Header%20and%20Footer%20Sets/search.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px auto;
  font-size: 0;
  padding: 0;
}
/* ------------------------------------------------------------ *\
  bar-message
\* ------------------------------------------------------------ */

.header-wrapper .bar-message-set {
  background-color: var(--c-blue-dark);
  color: #fff;
  font-size: 16px;
  font-family: var(--ff-bar);
  text-align: center;
  padding: 8px 20px;
  /*  Mobile  */
}

.header-wrapper .bar-message-set * {
  color: inherit;
}

@media (max-width: 767px) {
  .header-wrapper .bar-message-set {
    font-size: 12px;
  }
}

/* ------------------------------------------------------------ *\
  infobar
\* ------------------------------------------------------------ */

.header-wrapper .infobar-set {
  background-color: #f1f1f1;
  color: #0a0a0a;
  position: relative;
  z-index: 2;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .infobar-set {
    display: none;
  }
}

.header-wrapper .infobar-set .infobar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-wrapper .infobar-set .infobar__list {
  font-family: var(--ff-infobar-list);
  font-size: 13px;
  margin-left: 7px;
  letter-spacing: var(--ff-infobar-letter-spacing);
}

.header-wrapper .infobar-set .infobar__list ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style-type: none;
  margin: 0 -6px;
}

.header-wrapper .infobar-set .infobar__list li {
  padding: 0 6px;
  /*  Small Desktop  */
}

@media (max-width: 1199px) {
  .header-wrapper .infobar-set .infobar__list li {
    display: none;
  }
}

.header-wrapper .infobar-set .infobar__list li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  background-color: var(--c-blue-dark);
  mask-image: url('data:image/svg+xml,<svg height="800" width="800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.837 17.837" xml:space="preserve"><path style="fill:%230a4297" d="M16.145 2.571a.7.7 0 0 0-.99 0L6.92 10.804l-4.241-4.27a.698.698 0 0 0-.989 0L.204 8.019a.703.703 0 0 0 0 .99l6.217 6.258a.704.704 0 0 0 .99 0L17.63 5.047a.7.7 0 0 0 0-.994l-1.485-1.482z"/></svg>');
  mask-size: 13px auto;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-right: 0.5rem;
}

.header-wrapper .infobar-set .infobar__list li:nth-child(-n+2) {
  /*  Small Desktop  */
  /*  Tablet  */
}

@media (max-width: 1199px) {
  .header-wrapper .infobar-set .infobar__list li:nth-child(-n+2) {
    display: block;
  }
}

@media (max-width: 1023px) {
  .header-wrapper .infobar-set .infobar__list li:nth-child(-n+2) {
    display: none;
  }
}

.header-wrapper .infobar-set .infobar__list li:first-child {
  /*  Tablet  */
}

@media (max-width: 1023px) {
  .header-wrapper .infobar-set .infobar__list li:first-child {
    display: block;
  }
}

.header-wrapper .nav-infobar-set {
  color: var(--c-blue-dark);
  font-family: var(--ff-main);
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .nav-infobar-set {
    padding: 5px 0;
  }
}

.header-wrapper .nav-infobar-set > ul {
  display: flex;
  list-style-type: none;
  border-left: 1px solid #ffffff;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .nav-infobar-set > ul {
    display: block;
  }
}

.header-wrapper .nav-infobar-set li {
  border-right: 1px solid #ffffff;
}

.header-wrapper .nav-infobar-set a {
  display: inline-block;
  padding: 11px 19px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.4s;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .nav-infobar-set a {
    width: 100%;
    font-size: 16px;
    padding: 10px 15px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header-wrapper .nav-infobar-set a:hover {
    color: var(--c-blue-light);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-wrapper .nav-infobar-set a:hover {
    color: var(--c-blue-light);
  }
}

.header-wrapper .nav-infobar-set .select-set {
  margin: 15px 15px 0;
  position: relative;
}

.header-wrapper .nav-infobar-set .select-set:after {
  content: "";
  width: 25px;
  height: 20px;
  background-color: var(--c-blue-dark);
  mask-image: url('data:image/svg+xml,<svg fill="%230A4297" height="800" width="800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 386.257 386.257" xml:space="preserve"><path d="m0 96.879 193.129 192.5 193.128-192.5z"/></svg>');
  mask-size: 10px auto;
  mask-repeat: no-repeat;
  mask-position: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 2;
}

.header-wrapper .nav-infobar-set .select-set select {
  height: 39px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0 5px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.header-wrapper .nav-infobar-set .select-set select::-ms-expand {
  display: none;
}

/* ------------------------------------------------------------ *\
  dropdown
\* ------------------------------------------------------------ */

.header-wrapper .dropdown-set {
  position: relative;
}

.header-wrapper .dropdown-set.open .dropdown__head {
  background-color: #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.header-wrapper .dropdown-set.open .dropdown__body {
  transform: scale(1);
}

.header-wrapper .dropdown-set .dropdown__head {
  transition: 0.4s;
}

.header-wrapper .dropdown-set .dropdown__head a {
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .header-wrapper .dropdown-set .dropdown__head a:hover {
    color: var(--c-blue-light);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-wrapper .dropdown-set .dropdown__head a:hover {
    color: var(--c-blue-light);
  }
}

.header-wrapper .dropdown-set .dropdown__head a i {
  display: inline-block;
  vertical-align: middle;
  margin: 0 -10px 0 6px;
  width: 10px;
  height: 10px;
  background-color: var(--c-blue-dark);
  mask-image: url('data:image/svg+xml,<svg fill="%230A4297" height="800" width="800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 386.257 386.257" xml:space="preserve"><path d="m0 96.879 193.129 192.5 193.128-192.5z"/></svg>');
  mask-size: 10px auto;
  mask-repeat: no-repeat;
  mask-position: center;
  z-index: 2;
}

.header-wrapper .dropdown-set .dropdown__body {
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  background-color: #ffffff;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
  padding: 6px 0 5px;
  transform: scaleY(0);
  transition: 0.4s;
  transform-origin: top center;
}

.header-wrapper .dropdown-set .dropdown__body a {
  padding: 5px 16px;
  width: 100%;
}

.header-wrapper .dropdown-set .dropdown__body li:not(:last-child) {
  margin-bottom: 7px;
}

/* ------------------------------------------------------------ *\
  nav-btn
\* ------------------------------------------------------------ */

.header-wrapper .nav-btn-set {
  display: inline-flex;
  align-self: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-wrapper .nav-btn-set i {
  width: 16px;
  height: auto;
  display: inline-block;
  margin-right: 2px;
}

.header-wrapper .nav-btn-set i svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------------------ *\
  nav-utilities
\* ------------------------------------------------------------ */

.header-wrapper .nav-utilities-set ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -12px;
}

.header-wrapper .nav-utilities-set li {
  padding: 0 12px;
}

.header-wrapper .nav-utilities-set span,
.header-wrapper .nav-utilities-set i {
  display: inline-block;
  vertical-align: middle;
}

.header-wrapper .nav-utilities-set a {
  font-size: var(--fs-utilities);
  font-weight: 400;
  text-decoration: none;
  color: var(--c-blue-dark);
  transition: 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .header-wrapper .nav-utilities-set a:hover {
    color: var(--c-blue-light);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-wrapper .nav-utilities-set a:hover {
    color: var(--c-blue-light);
  }
}

/* ------------------------------------------------------------ *\
  nav
\* ------------------------------------------------------------ */

.header-wrapper .nav-set {
  color: var(--c-blue-dark);
}

.header-wrapper .nav-set a {
  text-decoration: none;
}

.header-wrapper .nav-set > ul {
  display: flex;
  margin: 0 -21px;
  /*  Small Desktop  */
  /*  Mobile  */
}

@media (max-width: 1199px) {
  .header-wrapper .nav-set > ul {
    margin: 0 -19px;
  }
}

@media (max-width: 767px) {
  .header-wrapper .nav-set > ul {
    display: block;
  }
}

.header-wrapper .nav-set > ul > li {
  font-size: 18px;
  font-weight: 700;
  padding: 0 21px;
  /*  Small Desktop  */
  /*  Mobile  */
}

@media (max-width: 1199px) {
  .header-wrapper .nav-set > ul > li {
    padding: 0 19px;
  }
}

@media (max-width: 767px) {
  .header-wrapper .nav-set > ul > li {
    font-size: 16px;
    border-bottom: 1px solid #ccc;
  }
}

.header-wrapper .nav-set > ul > li > a {
  display: inline-block;
  padding: 0 0 28px;
  text-transform: var(--nav-text-transform);
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .nav-set > ul > li > a {
    padding: 10px 16px;
    width: 100%;
  }
}

@media (hover: hover) {
  .header-wrapper .nav-set .has-children:where(:hover, :focus-visible) > a {
    color: var(--c-blue-light);
  }
  .header-wrapper .nav-set .has-children:where(:hover, :focus-visible) .submenu-level1-set {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.header-wrapper .nav-set .has-children > a {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .nav-set .has-children > a {
    position: relative;
    padding-right: 40px;
  }
}

.header-wrapper .nav-set .has-children > a i {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .nav-set .has-children > a i {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translate(0, -50%);
  }
  .header-wrapper .nav-set .has-children > a i:before, .header-wrapper .nav-set .has-children > a i:after {
    content: "";
    width: 100%;
    border-top: 3px solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
  }
  .header-wrapper .nav-set .has-children > a i:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.header-wrapper .nav-set .has-children.expanded .submenu-level1-set {
  padding: 0;
}

.header-wrapper .nav-set .has-children.expanded .submenu-level1-set > li:last-child {
/*   margin-bottom: 205px; */
  border-bottom: 0;
}

.header-wrapper .nav-set .has-children.expanded > a i:after {
  transform: translate(-50%, -50%) rotate(0);
}

.header-wrapper .nav-set .has-children.one-level {
  position: relative;
}


@media (min-width: 768px) {
  .header-wrapper .nav-set .has-children.one-level:not(:first-child):has(.submenu-level2-set li):hover {
    position: unset;
  }
  
  .header-wrapper .nav-set > ul {
    position: relative;
}

.header-wrapper .nav-set .has-children.one-level:hover .submenu-level1-set {
  display:inline-block;
}

/* ------------------------------------------------------------ *\
  Submenu-level1-set
\* ------------------------------------------------------------ */

.header-wrapper .submenu-level1-set {
  position: absolute;
  top: 100%;
  left: -14px;
  background-color: #f1f1f1;
  min-width: 250px;
  padding: 20px 0 20px 10px;
  opacity: 0;
  visibility: hidden;
  display: none;
  pointer-events: none;
  transition: 0.4s opacity;
  border-left: var(--submenu-border);
  transform: translateY(-1000px);
  z-index: 2;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level1-set {
    position: relative;
    left: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0;
    overflow: hidden;
    min-height: 0;
    transition: 0s;
    background-color: #fff;
    border: none;
  }
}

.header-wrapper .submenu-level1-set > li > a {
  display: inline-block;
  padding: 12.4px 10px 12.4px 25px;
  font-size: 16px;
  font-weight: var(--submenu-font-weight);
  width: 100%;
  /*  Mobile  */
}

@media (hover: hover) and (pointer: fine) {
  .header-wrapper .submenu-level1-set > li > a:hover {
    background-color: #fff;
    color: var(--c-blue-light);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-wrapper .submenu-level1-set > li > a:hover {
    background-color: #fff;
    color: var(--c-blue-light);
  }
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level1-set > li > a {
    font-weight: 700;
    padding: 13.5px 10px 13.5px 25px;
  }
}

.header-wrapper .submenu-level1-set > li {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level1-set > li {
    border-bottom: 1px solid #ccc;
  }
}

.header-wrapper .submenu-level1-set .has-submenu > a {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level1-set .has-submenu > a {
    position: relative;
  }
}

.header-wrapper .submenu-level1-set .has-submenu > a i {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level1-set .has-submenu > a i {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translate(0, -50%);
  }
  .header-wrapper .submenu-level1-set .has-submenu > a i:before, .header-wrapper .submenu-level1-set .has-submenu > a i:after {
    content: "";
    width: 100%;
    border-top: 3px solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
  }
  .header-wrapper .submenu-level1-set .has-submenu > a i:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.header-wrapper .submenu-level1-set .has-submenu.open > a {
  background-color: #fff;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level1-set .has-submenu.open > a {
    background-color: transparent;
  }
}

.header-wrapper .submenu-level1-set .has-submenu.open > a i {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level1-set .has-submenu.open > a i:after {
    transform: translate(-50%, -50%) rotate(0);
  }
}

.header-wrapper .submenu-level1-set .has-submenu.open .submenu-level2-set {
  visibility: visible;
  pointer-events: none;
  opacity: 1;
  transition: 0.4s;
  z-index: 2;
}

/* ------------------------------------------------------------ *\
  Submenu-level2-set
\* ------------------------------------------------------------ */

.header-wrapper .submenu-level2-set {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fff;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s, z-index 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level2-set {
    position: relative;
    left: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    height: auto;
    transition: 0s;
  }
}

.header-wrapper .submenu-level2-set > ul {
  padding: 21px 20px;
  border: 12px solid #f1f1f1;
  border-left: 0;
  columns: 3;
  height: 100%;
  min-width: 268px;
  margin-bottom: -20px;
  display: block;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level2-set > ul {
    display: block;
    columns: 1;
    border: none;
    padding: 4px 25px 6px;
    margin-bottom: 0;
    height: auto;
  }
}

.header-wrapper .submenu-level2-set > ul > li {
  padding: 0 20px 20px 0;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level2-set > ul > li {
    max-width: 100%;
    width: 100%;
    display: block;
    padding: 0;
  }
}

.header-wrapper .submenu-level2-set > ul > li div {
  break-inside: avoid-column;
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level2-set > ul > li div {
    margin-bottom: 0;
  }
}

.header-wrapper .submenu-level2-set > ul > li:last-child {
  width: 14.4vw;
}

.header-wrapper .submenu-level2-set a {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
  .header-wrapper .submenu-level2-set a:hover {
    color: var(--c-blue-light);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-wrapper .submenu-level2-set a:hover {
    color: var(--c-blue-light);
  }
}

.header-wrapper .submenu-level2-set h6,
.header-wrapper .submenu-level2-set h6 a {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--c-blue-dark);
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level2-set h6,
  .header-wrapper .submenu-level2-set h6 a {
    margin-bottom: 10.5px;
    font-weight: 400;
    white-space: nowrap;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header-wrapper .submenu-level2-set h6:hover,
  .header-wrapper .submenu-level2-set h6 a:hover {
    color: var(--c-blue-light);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-wrapper .submenu-level2-set h6:hover,
  .header-wrapper .submenu-level2-set h6 a:hover {
    color: var(--c-blue-light);
  }
}

.header-wrapper .submenu-level2-set h6 a {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level2-set h6 a {
    margin-bottom: 0;
  }
}

.header-wrapper .submenu-level2-set ul li {
  margin-bottom: 2.5px;
}

.header-wrapper .submenu-level2-set div ul {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level2-set div ul {
    display: none;
  }
}

.header-wrapper .submenu-level2-set li:last-child div:last-child h6 {
  /*  Mobile  */
}

@media (max-width: 767px) {
  .header-wrapper .submenu-level2-set li:last-child div:last-child h6 {
    margin-bottom: 0;
  }
}

/* ------------------------------------------------------------ *\
  Shell
\* ------------------------------------------------------------ */

.footer-set .shell,
.header-wrapper .shell {
  --shell-max-width: 1172px;
  --shell-gutter: 1.5rem;
  /*  Mobile  */
  max-width: calc(var(--shell-max-width) + var(--shell-gutter) * 2);
  padding-inline: var(--shell-gutter);
  margin-inline: auto;
  width: 100%;
}

@media (max-width: 767px) {
  .footer-set .shell,
  .header-wrapper .shell {
    --shell-gutter: 1rem;
  }
}

/* ------------------------------------------------------------ *\
  Helpers
\* ------------------------------------------------------------ */

[hidden],
.hidden-alt {
  display: none !important;
}

[disabled],
.disabled {
  cursor: default;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 767.02px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1023.02px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1199.02px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
