header.header.new-header {
  background: #c4ccda;
}

/* Menu */

.menu--desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

header.header.new-header .header-inners {
  display: flex;
  align-items: center;
}

/* .menu--mobile {
display: none;
}
*/
@media (max-width: 1024px) {
  .menu__item--open>.menu__submenu {
    padding-top: 0px !important;
  }
  /*   .menu--desktop {
  display: none;
}

  .menu--mobile {
  display: block;
} */
}

/* Menu items */

.menu__item {
  position: relative;
}

.menu__link {
  font-size: 0.917rem;
  line-height: 1.667rem;
  text-decoration: none;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:active {
  text-decoration: none;
}

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: bold;
}

button > .show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
button.menu__child-toggle {
  border: none;
  padding: 0px;
}

@media (min-width: 1025px) and (max-width: 1150px) {
  .menu__link {
    font-size: 0.833rem;
  }
}

@media (max-width: 1024px) {
  .menu__item {
    display: block;
    width: 100%;
  }

  .menu__link {
    display: block;
    font-size: 1.083rem;
  }
}

/* Menu items - top level */

.menu__item--depth-1 {
  display: inline-block;
  padding: 0.7rem 0.875rem;
  text-transform: uppercase;
}

/* .menu__item--depth-1 > .menu__link--active-link:after {
bottom: 20px;
content: '';
height: 2px;
left: 22px;
position: absolute;
width: 70%;
} */

.menu--desktop a.menu__link.menu__link--active-branch.menu__link--active-link:after{
  bottom: -4px;
  content: '';
  height: 2px;
  left: 0px;
  position: absolute;
  width: 100%;
}

@media (max-width: 1024px) {
  .menu__item--depth-1 {
    border-top: none;
    border-bottom: .5px solid rgba(255, 255, 255, 0.60);
    padding-bottom: 25px;
    padding-top: 24px;
    padding-left: 43px;
  }

  .menu__item--depth-1 > .menu__link {
    /*     padding: 0.35rem 1.225rem; */
  }

  .menu__item--depth-1 > .menu__link--active-link:after {
    content: none;
  }
}

/* Menu items - submenus */

.menu__submenu {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: none;
  left: 160px;
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: 270px;
  z-index: 99;
}

.menu__item--open > .menu__submenu {
  display: block;
}

.menu__submenu--level-2 {
  transform: translateX(-50%);
}

/* Keeps the first menu item's drop down menu aligned to the left of the top level menu item */

.menu__item--depth-1:first-child .menu__submenu--level-2 {
  transform: unset;
}

.menu__submenu .menu__item {
  /*   border-bottom: 1px solid #D1D6DC; */
  padding: 0;
  width: 100%;
}

.menu__submenu .menu__link {
  display: block;
  padding: 0.6rem 1.05rem;
  transition: background-color 0.3s;
  width: 100%;
}

.menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */

.menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Accounts for child toggle */

.menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 3rem;
}

/* Creates the triangle at the top of the submenu drop down */

@media (min-width: 1025px) {
  .menu__submenu--level-2 > .menu__item:first-child:before {
    border-radius: 6px;
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
    content: '';
    display: block;
    height: 30px;
    left: 125px;
    margin-left: 1rem;
    overflow: hidden;
    position: absolute;
    top: -12px;
    transform: rotate(45deg);
    transition: background-color .3s;
    width: 30px;
    z-index: 2;
  }

  /* Keeps triangle to the left for the first menu item's drop down menu */

  .menu__item--depth-1:first-child > .menu__submenu--level-2 > .menu__item:first-child:before {
    left: 0;
  }

  .menu__submenu--level-2 > .menu__item:first-child > .menu__link {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1024px) {
  .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
  }

  .menu__submenu .menu__item {
    background-color: #FFF;
    border-bottom: none;
    border-top: 2px solid #EBEFF3;
    padding: 0;
  }

  .menu__submenu .menu__link {
    display: block;
    /*     padding: 0.7rem 2rem; */
    padding-left: 0px;
    transition: none;
    width: 100%;
  }

  .menu__submenu .menu__item .menu__link:hover,
  .menu__submenu .menu__item .menu__link:focus {
    background-color: #314157;
    transition: none;
  }

  .menu__item--has-submenu > .menu__link {
    width: 70%;
  }

  .menu__submenu--level-3 .menu__item .menu__link {
    padding: 0.7rem 3rem;
  }
}

/* Menu icons */

@media(min-width: 1025px) {
  .menu__submenu .menu__child-toggle {
    margin-left: auto;
    padding: 0 1.05rem;
  }

  .menu__child-toggle {
    position: absolute;
    right: 5px;
    top: 30px;
    z-index: 2;
  }

  .menu__item--depth-1 > .menu__child-toggle {

  }

  .menu__child-toggle-icon {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top-style: solid;
    border-top-width: 7px;
    display: block;
    height: 0;
    margin-left: 1px;
    width: 0;
  }
}

@media (max-width: 1024px) {
  .menu__child-toggle {
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 55px;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 21px;
    width: 30%;
  }

  .menu__child-toggle-icon {
    background-image: url(https://141224428.fs1.hubspotusercontent-eu1.net/hubfs/141224428/down%20arrow.svg);
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    margin-left: auto;
    margin-right: 1.4rem;
    transition: transform 0.4s;
    width: 20px;
  }

  .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(360deg);
    transition: transform 0.4s;
  }
}


.menu__link{
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1px;
  cursor:pointer;
}

.menu .menu__link:hover {
  color: #fff;
  opacity: 0.75;
  cursor:pointer;
}
.menu .menu__link:focus{
  color: #fff;
  opacity: 0.75;
}

.menu__submenu .menu__item{
  border-top: none !important;
}
.menu__submenu .menu__link{
  background-color: #314157 ;
  color:#fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 24.678px;
  letter-spacing: 0.18px;
}

.header-menu-sec ul li:last-child a {
  border: 0;
  background: #ed1978;
  border-radius: 6px;
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0px;
  line-height: 1.6em;
  opacity: 1 !important;
  overflow: hidden;
  padding: 15px 21px;
  position: relative;
  text-transform: uppercase;
  z-index: 0;
}


@media (min-width: 1025px) {
  .menu__child-toggle-icon {
    display:none!important;
  }

}

@media only screen and (max-width: 985px) and (min-width: 1025px){

  .menu__link {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .2px;
    line-height: 24px;
    margin-left: 10px;
  } 
  .desktop-cta {
    padding-top: 10px !important;
  }
  .header__logo--main {
    padding-top: 10px !important;
  }
  .menu__item--depth-1 {
    display: inline-block;
    padding: 0;
    text-transform: uppercase;
  }  
  .fixed-top .menu__link {
    color: #000 !important;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .2px;
    line-height: 24px;
    margin-left: 10px;
  } 
  .menu .menu__submenu {
    background-color: #fff;
    border: none; 
  }
  .menu__item--open>.menu__submenu {
    padding-top: 0px !important;
  }
}
@media only screen and ( max-width: 1058px ) and (min-width: 986px){

  .menu__link {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .2px;
    line-height: 30px;
    margin-left: 0px;
  } 
  .fixed-top .menu__link {
    color: #000;
    cursor: pointer;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .2px;
    line-height: 30px;
    margin-left: 0px;
  } 
  .desktop-cta {
    padding-top: 10px !important;
  }
  .header__logo--main {
    padding-top: 10px !important;
  }
  .menu__item--depth-1 {
    display: inline-block;
    /*     padding: 0; */
    text-transform: uppercase;
  }
  .menu .menu__submenu {
    background-color: #314157;
    border: none; 
  }
  .menu__item--open>.menu__submenu {
    padding-top: 0px !important; 
  }
}
@media (min-width: 1080px){

  .menu__submenu .menu__link {
    background-color: #ffffff;
    color: #314157;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .18px;
    line-height: 24.678px;
    white-space: nowrap;
  }
}
.menu__item--open>.menu__submenu {
  padding-top: 10px;
}

@media only screen and ( max-width: 1058px ) and (min-width: 986px){
  .header__navigation--toggle {
    right: -42%;
  }  
  .header__close--toggle.show {
    right: -40%;
    z-index: 9999999;
  }

}




/*---------------- Header styles---------------------- */

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.menu__submenu{
  width:290px !important; 
}
.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 1024px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }

}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 350px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .header__logo {
    margin: 0 0 0 15px;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 20px;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

{% if ( get_asset_version("@hubspot/search_input") == "1" ) %}

.hs-search-field__form {
  position: relative;
}

.header__search .hs-search-field__label {
  flex-basis: auto;
}
{% endif %}


.header__search .hs-search-field__input {
  {% if ( get_asset_version("@hubspot/search_input") == "0" ) %}
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  {% endif %}
  height: 45px;
  padding: 0 0.7rem;
}


{% if ( get_asset_version("@hubspot/search_input") == "1" ) %}
.header__search .hs-search-field__button {
  padding: 0;
  fill: #000;
  background-color: transparent;
  border: none;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.header__search .hs-search-field__button svg {
  height: 25px;
}
{% endif %}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 1024px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 1024px) {
  .header__search {header
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  /*   padding-right: 1.4rem; */
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 1024px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }

  {%- if get_asset_version('@hubspot/language_switcher') == 1 %}
  /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
  .header__language-switcher .hs-language-switcher__menu {
    display: block;
    box-shadow:none!important;
    background: transparent;
  }
  .header__language-switcher .hs-language-switcher__menu a {
    font-size: 20px!important;
  }
  .header__language-switcher .hs-language-switcher__button {
    display: none;
  }
  {% endif -%}

  .header__logo img{
    width: 222px !important;
    height: 31.759px !important;
  }
  .header__logo--main {
    padding-top: 0 !important;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 1024px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }
  body.menu-open {
    overflow: hidden;
  }
  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: 100vh;
    position: absolute;
    right: 0;
    top: -75px;
    z-index: 999999;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 2vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: none;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

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

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    {# background-image: url(https://141224428.fs1.hubspotusercontent-eu1.net/hubfs/141224428/hamburger%20icon.svg); #}
    background-image: url('data:image/svg+xml,%3Csvg width="24" height="18" viewBox="0 0 24 18" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 1H12H24" stroke="white" stroke-width="1.5"/%3E%3Cpath d="M0 9H12H24" stroke="white" stroke-width="1.5"/%3E%3Cpath d="M0 17H12H24" stroke="white" stroke-width="1.5"/%3E%3C/svg%3E');
    background-size: cover;
    height: 18px;
    width: 24px;
    /*     top: -69px;
    right: -45%; */
    top: -36px;
    right: -40%;
  }
  .fixed-top .header__navigation--toggle{
    filter: invert(1);
  }
  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url('data:image/svg+xml,<svg width="131px" height="131px" viewBox="0 0 73.768 73.768" xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" stroke="%23ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path id="Path_10" data-name="Path 10" d="M117.606,385.2a36.884,36.884,0,1,0,36.884,36.884A36.926,36.926,0,0,0,117.606,385.2Zm33.846,35.383H136.366a48.681,48.681,0,0,0-3.047-16.068,36.786,36.786,0,0,0,8.781-5.808A33.752,33.752,0,0,1,151.452,420.586Zm-32.346-31.072a36.534,36.534,0,0,1,6.069,6.387,39.467,39.467,0,0,1,4.176,7.028,33.843,33.843,0,0,1-10.245,2.061Zm3.534-.935a33.762,33.762,0,0,1,17.292,8.051,33.809,33.809,0,0,1-7.772,5.116A41.252,41.252,0,0,0,122.64,388.579ZM110.19,395.9a36.615,36.615,0,0,1,5.916-6.261v15.35a33.789,33.789,0,0,1-10.116-2.013A39.5,39.5,0,0,1,110.19,395.9Zm-7.013,5.906a33.8,33.8,0,0,1-7.9-5.177,33.757,33.757,0,0,1,17.469-8.074A41.244,41.244,0,0,0,103.177,401.807Zm12.929,6.183v12.6H102a45.607,45.607,0,0,1,2.835-14.838A36.83,36.83,0,0,0,116.106,407.99Zm0,15.6v12.386a36.8,36.8,0,0,0-11.018,2.146A42.373,42.373,0,0,1,102,423.587Zm0,15.386v15.252a47.106,47.106,0,0,1-9.792-13.361A33.819,33.819,0,0,1,116.106,438.973Zm-2.86,16.708a33.755,33.755,0,0,1-18.084-8.24,33.786,33.786,0,0,1,8.306-5.426A48.955,48.955,0,0,0,113.246,455.681Zm5.86-1.313v-15.4a33.8,33.8,0,0,1,9.922,1.94A47.081,47.081,0,0,1,119.106,454.368Zm12.762-12.294a33.846,33.846,0,0,1,8.182,5.367,33.759,33.759,0,0,1-17.909,8.217A48.888,48.888,0,0,0,131.868,442.074Zm-12.762-6.1V423.587h14.257a42.352,42.352,0,0,1-3.106,14.582A36.818,36.818,0,0,0,119.106,435.973Zm0-15.386v-12.6a36.806,36.806,0,0,0,11.4-2.291,45.562,45.562,0,0,1,2.854,14.888ZM93.112,398.711a36.8,36.8,0,0,0,8.91,5.871A48.7,48.7,0,0,0,99,420.587H83.76A33.757,33.757,0,0,1,93.112,398.711ZM83.76,423.587H99a45.675,45.675,0,0,0,3.256,15.683A36.807,36.807,0,0,0,93,445.35,33.755,33.755,0,0,1,83.76,423.587Zm58.447,21.764a36.8,36.8,0,0,0-9.122-6.022,45.69,45.69,0,0,0,3.279-15.742h15.088A33.759,33.759,0,0,1,142.207,445.351Z" transform="translate(-80.722 -385.203)" fill="%23ffffff"></path></g></svg>');
    background-size: cover;
    height: 20px;
    width: 20px;
    position: absolute;
    right: 80px;
    top: -36px;
  }
  body.fixed-top .header__language-switcher--toggle {
    background-image: url('data:image/svg+xml,<svg width="131px" height="131px" viewBox="0 0 73.768 73.768" xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" stroke="%23ffffff"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path id="Path_10" data-name="Path 10" d="M117.606,385.2a36.884,36.884,0,1,0,36.884,36.884A36.926,36.926,0,0,0,117.606,385.2Zm33.846,35.383H136.366a48.681,48.681,0,0,0-3.047-16.068,36.786,36.786,0,0,0,8.781-5.808A33.752,33.752,0,0,1,151.452,420.586Zm-32.346-31.072a36.534,36.534,0,0,1,6.069,6.387,39.467,39.467,0,0,1,4.176,7.028,33.843,33.843,0,0,1-10.245,2.061Zm3.534-.935a33.762,33.762,0,0,1,17.292,8.051,33.809,33.809,0,0,1-7.772,5.116A41.252,41.252,0,0,0,122.64,388.579ZM110.19,395.9a36.615,36.615,0,0,1,5.916-6.261v15.35a33.789,33.789,0,0,1-10.116-2.013A39.5,39.5,0,0,1,110.19,395.9Zm-7.013,5.906a33.8,33.8,0,0,1-7.9-5.177,33.757,33.757,0,0,1,17.469-8.074A41.244,41.244,0,0,0,103.177,401.807Zm12.929,6.183v12.6H102a45.607,45.607,0,0,1,2.835-14.838A36.83,36.83,0,0,0,116.106,407.99Zm0,15.6v12.386a36.8,36.8,0,0,0-11.018,2.146A42.373,42.373,0,0,1,102,423.587Zm0,15.386v15.252a47.106,47.106,0,0,1-9.792-13.361A33.819,33.819,0,0,1,116.106,438.973Zm-2.86,16.708a33.755,33.755,0,0,1-18.084-8.24,33.786,33.786,0,0,1,8.306-5.426A48.955,48.955,0,0,0,113.246,455.681Zm5.86-1.313v-15.4a33.8,33.8,0,0,1,9.922,1.94A47.081,47.081,0,0,1,119.106,454.368Zm12.762-12.294a33.846,33.846,0,0,1,8.182,5.367,33.759,33.759,0,0,1-17.909,8.217A48.888,48.888,0,0,0,131.868,442.074Zm-12.762-6.1V423.587h14.257a42.352,42.352,0,0,1-3.106,14.582A36.818,36.818,0,0,0,119.106,435.973Zm0-15.386v-12.6a36.806,36.806,0,0,0,11.4-2.291,45.562,45.562,0,0,1,2.854,14.888ZM93.112,398.711a36.8,36.8,0,0,0,8.91,5.871A48.7,48.7,0,0,0,99,420.587H83.76A33.757,33.757,0,0,1,93.112,398.711ZM83.76,423.587H99a45.675,45.675,0,0,0,3.256,15.683A36.807,36.807,0,0,0,93,445.35,33.755,33.755,0,0,1,83.76,423.587Zm58.447,21.764a36.8,36.8,0,0,0-9.122-6.022,45.69,45.69,0,0,0,3.279-15.742h15.088A33.759,33.759,0,0,1,142.207,445.351Z" transform="translate(-80.722 -385.203)" fill="%232b394d"></path></g></svg>');
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
    display:none;
  }

  .header #hs_cos_wrapper_language-switcher .hs-language-switcher__item a {
    color: #fff;
  }


  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(https://141224428.fs1.hubspotusercontent-eu1.net/hubfs/141224428/close%20icon.svg);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 20px;
    margin-right: 0;
    width: 20px;
  }

  .header__close--toggle.show {
    display: block;
    /*     top: -69px;
    right: -41%; */
    top: -36px;
    right: -40%;
    z-index:9999999;.
  }
  ul.menu__wrapper.no-list{
    padding-top:100px;
  }
}

/*************************iPad Portrait***************/
@media only screen and (max-width: 985px) and (min-width: 768px){
  .header__navigation--toggle {
    right: -45%;
  }
  .header__language-switcher--toggle {
    right: 120px;
  }
}

/**************iPad Landscape***************/
@media only screen and ( max-width: 1025px ) and (min-width: 986px){
  .header__navigation--toggle {
    right: -45%;
  }
  .header__language-switcher--toggle {
    right: 130px;
  }

}
@media only screen and ( max-width: 1080px ) and (min-width: 1025px){
  .menu--desktop {
    align-items: center;
    display: flex;
    gap: 9px !important;
  }

}
@media only screen and ( max-width: 1380px ) and (min-width: 1025px){
  .menu__item--depth-1 {
    padding: .7rem .175rem !important;
  }
  .fixed-top .menu__link, .menu__link {
    cursor: pointer;
    font-size: 15px !important;
    letter-spacing: .1px;
  }
  .header .desktop-cta {
    width: 180px;
    font-size: 15px !important;
  }
  .interactive-button-wrapper a.interactive-button {
    font-size: 16px !important;
  }

}

ul.menu__submenu.menu__submenu--level-2.no-list li:before {
  display: none;
}



.menu__submenu .menu__link {
  background-color: #fff !important;
  color: #314157 !important;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .18px;
  line-height: 24.678px;
}

.menu__submenu .menu__link:hover{
  color: #ff914d !important;
}

@media only screen and (max-width: 1024px) and (min-width: 220px){

  .menu__submenu .menu__link { 
    background-color: #314157 !important;
    color: #fff !important;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .18px;
    line-height: 24.678px;
  }
  .logo-header svg{
    width: 200px !important;
    height: 31.759px;
  } 

  .header__row-2{
    padding:0 !important;
  }
}
.menu__link:active {
  font-weight: 500;
}
.menu .menu__link:focus {
  color: #ff914d;
  font-weight: 500;
}

/* fixed menu bar style */

body.fixed-top header.header {
  width: 100%;
  position: fixed;
  background: #fff;
  background-color: #fff;
  top: 0;
  z-index: 999;
}
.fixed-top .logo-header path {
  fill: #2B394D;

}
@media (min-width: 1024px){
  .fixed-top .menu__link {
    color: #2B394D;
    cursor: pointer;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .2px;
    line-height: 30px;
  }
}


.menu--desktop a.menu__link.menu__link--active-branch.menu__link--active-link{
  color:#FF914D !important;
  position:relative;
}
.menu .menu__item--depth-1>.menu__link--active-link:after {
  background-color: #FF914D !important;
}
@media (max-width: 1200px){
  .logo-header svg{
    width: 222px !important;
    height: 31.759px;
  } 
  .header__logo {
    overflow: unset;
  }
}

@media only screen and ( max-width: 1080px ) and (min-width: 1025px){
  .menu__item--depth-1 {
    padding: .7rem .375rem !important;
  }
}



/* Language switcher */

/* Hide full language name */
.hs-language-switcher__current-language {
  font-size: 0px !important;
  color: #fff;
}

/* Show short code instead */
.hs-language-switcher__current-language::after {
  font-size: 16px !important;
  color: #fff !important;
  content: "EN"; /* default */
}

/* Dutch */
html[lang^="nl"] .hs-language-switcher__current-language::after {
  content: "NL";
}

/* French */
html[lang^="fr"] .hs-language-switcher__current-language::after {
  content: "FR";
}
.header #hs_cos_wrapper_language-switcher .hs-language-switcher__icon>svg {
  width: 18px;
  height: auto;
  fill: #fff;
}
body.fixed-top .header #hs_cos_wrapper_language-switcher .hs-language-switcher__icon>svg {
  fill: #FF914D;
}
.hs-language-switcher__current-language::after {
  color: #ffffff !important;
}
body.fixed-top .hs-language-switcher__current-language, 
body.fixed-top .hs-language-switcher__current-language::after {
  color: #FF914D !important;
}
.header #hs_cos_wrapper_language-switcher .hs-language-switcher__icon--dropdown {
  fill: #fff;
  width: 12px;
}
body.fixed-top .header #hs_cos_wrapper_language-switcher .hs-language-switcher__icon--dropdown {
  fill: #FF914D;
}
.header #hs_cos_wrapper_language-switcher .hs-language-switcher__menu {
  left: -29px;
  top: 50px;
}
.header .hs-language-switcher__item {
  padding: 12px 23px;
}
.header  #hs_cos_wrapper_language-switcher li.hs-language-switcher__item:hover a {
  color: #FF914D;
}



html[lang="fr"] .menu__submenu .menu__link {
  white-space: normal;
}

