/************** Previous Code Start *******************/  




/* Main Navigation */
  .main-nav {
    background: transparent;
    display: block;
    position: relative;
  }

  .main-nav-inner {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
  }

  .main-nav ul.menu-root {
    display: flex;
    flex-shrink: 0;
    /*     gap: 1em; */
    list-style: none;
    padding-left: 0;
    margin: 0;
    /*     justify-content: space-between; */
    /*     position: relative; */
  }
  {#.menu-root > li{
    flex-grow: 1; 
  flex-basis: 0; 
  min-width: 120px;
  }#}

  .has-submenu {
    position: relative;
  }



  .menu-root > li > a:hover,
  .menu-root > li:hover > span {
    background: gray;
    color: white;
  }

  /* Submenu Arrows */
  .submenu-arrow,
  .submenu-arrow-right {
    margin-left: 0.375em;
    stroke: black;
    transition: stroke 0.3s ease;
    flex-shrink: 0;
  }

  .menu-root > li:hover > a .submenu-arrow,
  .menu-root > li:hover > span .submenu-arrow {
    stroke: white;
  }

  .submenu-level-1 > li:hover > a .submenu-arrow-right,
  .submenu-level-1 > li:hover > span .submenu-arrow-right {
    stroke: white;
  }

  .menu-root > li:hover > a .submenu-arrow path,
  .menu-root > li:hover > span .submenu-arrow path {
    stroke: white;
  }

  .submenu-level-1 > li:hover > a .submenu-arrow-right path,
  .submenu-level-1 > li:hover > span .submenu-arrow-right path {
    stroke: white;
  }

  /* First Level Submenu */
  .submenu-level-1 {
    position: absolute;
    top: 3.2em;
    left: 0;
    /*     right: 0; */
    list-style: none;
    background: white;
    border: 0.0625em solid black;
    min-width: 13.25em;
    padding: 0;
/*     box-shadow: var(--shadow-medium); */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 10001;
  }

  .has-submenu:hover > .submenu-level-1 {
    opacity: 1;
    pointer-events: auto;
  }

  .submenu-level-1 > li {
    position: relative;
  }

  .submenu-level-1 > li > a,
  .submenu-level-1 > li > span {
    display: flex;
    padding: 0.625em 1.25em;
    color: black;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    justify-content: space-between;
    align-items:center;
  }

  .submenu-level-1 > li:hover > a,
  .submenu-level-1 > li:hover > span {
    background: black;
    color: white;
  }

  /* Second Level Submenu */
  .submenu-level-2 {
    list-style: none;
    position: absolute;
    top: 0;
    background: white;
    border: 0.0625em solid black;
    min-width: 11.25em;
    padding: 0;
/*     box-shadow: var(--shadow-medium); */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
  }
  .submenu-level-2.right {
    left:100%;
  }
  .submenu-level-2.left {
    right:100%;
  }
  .submenu-level-1 > li.has-submenu:hover > .submenu-level-2 {
    opacity: 1;
    pointer-events: auto;
  }

  .submenu-level-2 > li > a {
    display: block;
    padding: 0.625em 1.25em;
    color: black;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .submenu-level-2 > li:hover > a {
    background: white;
    color: white;
  }




.mega-menu__list {
    background: white;
    display: none;
    left: 0;
    max-height: calc(100vh - 15em);
    opacity: 0;
    overflow-y: auto;
    padding: 2em 1em;
    position: absolute;
    right: 0;
    top: 4em;
    transition: all 0.7s ease;
    z-index: 10001
}

.mega-menu__list-inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    list-style: none;
    margin: 0 auto;
    max-width: 1440px;
    padding: 0;
    width: 90%
}

.type-2:hover>.mega-menu__list {
    display: block;
    opacity: 1;
    pointer-events: auto
}

.type-2:hover:before {
    background-color: rgba(0,0,0,.5);
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 10000
}

.mega-menu__submenu {
    list-style: initial;
    margin: 0;
    padding: 1em 1em 1em 1.5em
}

.mega-menu__submenu-item {
    padding-bottom: .5em
}

.mega-menu__submenu:has(.mega-menu__submenu-item.has-level2) {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding-left: 0
}

.mega-menu__item:has(.mega-menu__submenu-item.has-level2) {
    grid-column: span 4
}

.mega-menu__item:has(.mega-menu__submenu-item.has-level2):not(:first-child) {
    border-top: 1px solid black;
}

.mega-menu__subsubmenu {
    list-style: initial;
    margin: 0;
    padding: .5em 0 0 1.5em
}

/************** Previous Code End *******************/  









/******************* Search CSS End ***********************************/
.hs-search-field {
  position: relative;
}
.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
}
.hs-search-field__bar button svg {
  height: 10px;
}
.hs-search-field__suggestions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hs-search-field--open .hs-search-field__suggestions {
  border: 1px solid #000;
}
.hs-search-field__suggestions li {
  display: block;
  margin: 0;
  padding: 0;
}
.hs-search-field__suggestions #results-for {
  font-weight: bold;
}
.hs-search-field__suggestions a,
.hs-search-field__suggestions #results-for {
  display: block;
}
.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  outline: none;
}



/******************* Search CSS End ***********************************/














/******************* Language CSS Start ***********************************/



.hs-language-switcher {
  position: relative;
  z-index: 100;
  display: block;
}

.hs-language-switcher__inner-wrapper {
  position: relative;
  display: inline-block;
}

/* Button */
.hs-language-switcher__button {
  margin: 0;
  cursor: pointer;
}

.hs-language-switcher__label {
  display: flex;
  align-items: center;
  font-size: 1em;
  line-height: 1;
}

.hs-language-switcher__icon {
  height: 20px;
  width: 20px;
}

/* Menu */
.hs-language-switcher__menu {
  position: absolute;
  z-index: 100;
  top: 100%;
  display: none;
  overflow: hidden;
  box-sizing: border-box;
  min-width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
  list-style-type: none;
  white-space: nowrap;
}

.hs-language-switcher__menu.visible {
  display: block;
}

.hs-language-switcher__item {
  width: 100%;
  padding: 10px 20px;
  margin: 0;
  text-align: left;
}

.hs-language-switcher__item:focus,
.hs-language-switcher__item.active,
.hs-language-switcher__menu.mousemove .hs-language-switcher__item:hover {
  background: #efefef;
}

.hs-language-switcher__item a {
  display: block;
  height: 100%;
  color: #000;
  text-decoration: none;
}
/******************* Language CSS End ***********************************/