/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.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: 999px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 999px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .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: 200px;
  overflow: hidden;
}

@media (max-width: 999px) {
  .header__logo {
    margin: 0 auto;
    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: 1rem;
}

/* Search bar */

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



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

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



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



.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;
}


.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: 999px) {
  .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: 999px) {
  .header__search {
    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: 999px) {
  .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;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 999px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    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: block;
    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;
  }

  .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(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .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;
  }

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

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  } 
}







body a.redirect_link{
  text-decoration: none;
}


/***************************************    New Header CSS    ********************************************/

/*********   Landing page Header and Footer  ***********/

.landing_header .header_content_container,
.landing_footer .footer_content_container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
}

@media(max-width: 549px){
  .landing_header .header_content_container,
  .landing_footer .footer_content_container{
    flex-direction: column;
    gap: 1rem;
  } 
  .landing_header .header_content_container .header_contact{
    text-align: center;
  }
}

/*********   Landing page Header    ***********/

.header .hs-menu-wrapper.hs-menu-flow-horizontal>ul li{
  margin-bottom:0;
}
.simple_header>.wrapper>.row-fluid-wrapper>.row-fluid.simple_header_container .custom-menu-primary ul li.hs-menu-item>a,
.header .custom_menu .navigation_menu ul li a:not(.redirect_link, .cta_button){
  display: flex;
  align-items: center;
}

@media(min-width: 1000px){
  .header ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:before,
  .header .custom_menu .navigation_menu > ul>li:before{
    bottom: -30px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    right: 0;
    width: calc(100% + 20px);
  }
  .header ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:hover:before,
  .header .custom_menu .navigation_menu > ul>li:hover:before{
    height: 35px;
  }
  .simple_header .simple_header_container .header_navigation .simple_menu.custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children.hs-menu-depth-1:hover>.hs-menu-children-wrapper,
  body .header .custom_menu .navigation_menu ul>li:not(.mega_menu):hover .child-menu{
    top: 50px;
  }
  body .header .custom_menu .navigation_menu ul>li.mega_menu:hover .child-menu{
    top: 75px;
  }
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children .hs-menu-children-wrapper,
  .header .custom_menu .navigation_menu > ul > li > .child-menu ul{
    min-width: 194px;
  }
}

@media(max-width: 999px){
  /*************   Hamburger Icon starts  ****************/

  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .mobile-trigger,
  .header_custom_menu .equal-height-container > .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .mobile-trigger{
    float:right;
    padding:10px 0;
    cursor:pointer;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .mobile-trigger i,
  .header_custom_menu .equal-height-container > .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .mobile-trigger i{
    background: var(--white_color);
    height: 2px;
    position: relative;
    width: 25px;
    display: block;
    transition: all .3s ease-in-out;
  }
  body.mobile-open .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .mobile-trigger i,
  body.mobile-open .header_custom_menu .equal-height-container > .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .mobile-trigger i{
    background:#fff;
    transition: all .3s ease-in-out;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .mobile-trigger i:before,
  .header_custom_menu .equal-height-container > .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .mobile-trigger i:before{
    position:absolute;
    width:25px;
    height:2px;
    background: var(--white_color);
    content:'';
    bottom:6px;
    left:0;
    transition: all .3s ease-in-out;
  }
  body.mobile-open .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .mobile-trigger i:before,
  body.mobile-open .header_custom_menu .equal-height-container > .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .mobile-trigger i:before{
    transform: rotate(45deg);
    bottom: 0;
    transition: all .3s ease-in-out;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .mobile-trigger i:after,
  .header_custom_menu .equal-height-container > .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .mobile-trigger i:after{
    position:absolute;
    width:25px;
    height:2px;
    background: var(--white_color);
    content:'';
    top:6px;
    left:0;
    transition: all .3s ease-in-out;
  }
  body.mobile-open .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .mobile-trigger i:after,
  body.mobile-open .header_custom_menu .equal-height-container > .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .mobile-trigger i:after{
    transform: rotate(-45deg);
    top: 0;
    transition: all .3s ease-in-out;
  }
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .hs-menu-wrapper li:first-child{
    background:var(--secondary_color);
  }

  /*************   Hamburger Icon ends  ****************/
}






/*********************************************** Header Module CSS Starts here ****************************************/

.universal-header a{
  transition: unset;
  -webkit-transition: unset;
}
.header .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a,
.header .custom_menu .navigation_menu ul li > a{
  -webkit-transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out; 
}
.simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger i:before,
.header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger i:before{
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



/*******************   Top Bar Styling     *******************/

.header_topbar{
  position: relative;
}
.header_topbar.announcement_bar .close-button{
  position: absolute;
  content:'';
  width: 15px;
  height: 15px;
  line-height: 15px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.header_topbar.announcement_bar.hidden {
  height: 0;
  padding:0 !important;
  overflow: hidden;
  transition: height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

@media(min-width: 1000px){
  .header_topbar.announcement_bar .announcement_container .announce_text.left{
    text-align: left;
  }
  .header_topbar.announcement_bar .announcement_container .announce_text.right{
    text-align: right;
  }
  .header_topbar.announcement_bar .announcement_container .announce_text.center{
    text-align: center;
  }
}

@media(max-width: 999px){
  .header_topbar.announcement_bar .announcement_container .announce_text.mb-left{
    text-align:left;
  }
  .header_topbar.announcement_bar .announcement_container .announce_text.mb-right{
    text-align:right;
  }
  .header_topbar.announcement_bar .announcement_container .announce_text.mb-center{
    text-align:center;
  }
}



@media(min-width:1000px){
  .simple_header .simple_header_container .header_buttons .header_button_container{
    flex-direction:row;
    gap:20px;
    display:flex;
  }
  .simple_header .simple_header_container{
    justify-content:space-between;
    min-height:63px;
  }
  .header .custom_menu .navigation_menu ul li.simple_dropdown,
  .header .custom_menu .navigation_menu ul li.simple_dropdown > a,
  .header .custom_menu .navigation_menu ul li.mega_menu > a,
  .header .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children a {
    position: relative;
  }
  .simple_header .simple_header_container .header_navigation{
    flex:auto;
  }
  .simple_header .simple_header_container .header_navigation.left{
    align-items:flex-start;
  }
  .simple_header .simple_header_container .header_navigation.right{
    align-items:flex-end;
  }
  .simple_header .simple_header_container .header_navigation.center{
    align-items:center;
  }
  .header .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-item-has-children ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    top: 0;
  }
  .header .custom_menu .navigation_menu ul > li.simple_dropdown:hover > .child-menu ul,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 0px 0;
    border-radius: 10px;
  }

  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger{
    position: absolute;
    right: 20px;
    top: 16px;
    width: 14px;
    height: 14px;
    display: block;
    cursor: pointer;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger i,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger i{
    /*     position:relative; */
    cursor:pointer;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary ul li.hs-item-has-children > a,
  .header .custom_menu .navigation_menu ul li.simple_dropdown > a,
  .header .custom_menu .navigation_menu ul li.mega_menu > a{
    position: relative;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary ul li.hs-item-has-children > a:before,
  .header .custom_menu .navigation_menu ul li.simple_dropdown > a:before,
  .header .custom_menu .navigation_menu ul li.mega_menu > a:before,
  .header .custom_menu .navigation_menu ul li.simple_dropdown .normal_dropdown.child-menu ul li.hs-item-has-children > a:before{
    position: absolute;
    content:'';
    right: -15px;
    width: 8px;
    height: 8px;
    display: block;
    border-left: 2px solid;
    border-bottom: 2px solid;
    border-color: var(--white_color);
    transform: rotate(-45deg);
    transition: all .3s;
    top:6px;
    /*     transition: transform .3s ease-in-out, opacity .3s ease-in-out, border-color 0.3s ease-in-out; */
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary ul li.hs-menu-depth-1.hs-item-has-children:hover > a:before,
  .header .custom_menu .navigation_menu ul li.simple_dropdown:hover > a:before,
  .header .custom_menu .navigation_menu ul li.mega_menu:hover > a:before{
    border-color: var(--quinary_color);
  }
  /*   .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary ul li.hs-menu-depth-1.hs-item-has-children:hover > a:after,
  .header .custom_menu .navigation_menu ul li.simple_dropdown:hover > a:after,
  .header .custom_menu .navigation_menu ul li.mega_menu:hover > a:after{
  border-bottom:2px solid var(--quinary_color);
  position:absolute;
  left:0;
  right:0;
  bottom:-5px;
} */

  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary ul.hs-menu-children-wrapper li.hs-item-has-children > a:before,
  .header .custom_menu .navigation_menu ul li.simple_dropdown .normal_dropdown.child-menu ul li.hs-item-has-children > a:before{
    right:20px;
    transition: transform .3s ease-in-out, opacity .3s ease-in-out, border-color 0.3s ease-in-out;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary ul.hs-menu-children-wrapper li.hs-item-has-children:hover > a:before,
  .header .custom_menu .navigation_menu ul li.simple_dropdown .normal_dropdown.child-menu ul li.hs-item-has-children:hover > a:before{
    transform: rotate(-135deg);
    top: 20px;
  }

  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper ul li.hs-item-has-children > ul li.hs-item-has-children a,
  .simple_header.custom .simple_header_container .header_navigation .hs-menu-wrapper ul li.hs-item-has-children > a{
    padding-right: 30px;
  }
  .header .custom_menu .navigation_menu ul.custom li .hs-menu-wrapper li > a{
    width: 100%;
  }
  .header .custom_menu .navigation_menu ul.custom li .hs-menu-wrapper li:first-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-2:first-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-3:first-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-4:first-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-5:first-child > a{
    border-radius: 10px 10px 0 0;
  }
  .header .custom_menu .navigation_menu ul.custom li .hs-menu-wrapper li:last-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-2:last-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-3:last-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-4:last-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-5:last-child > a{
    border-radius:  0 0 10px 10px;
  }
  .header .custom_menu .navigation_menu ul.custom li .hs-menu-wrapper li:first-child:last-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-2:first-child:last-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-3:first-child:last-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-4:first-child:last-child > a,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper li.hs-menu-depth-5:first-child:last-child > a{
    border-radius: 10px;
  }

  /*******    Header Styling    ********/

  .header .custom_menu .navigation_menu ul > li .child-menu{
    width: max-content;
  }
  .header .custom_menu .navigation_menu ul > li .child-menu,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children > ul.hs-menu-children-wrapper,
  .header_custom_menu .header_navigation .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children > ul.hs-menu-children-wrapper{
    visibility: hidden;
    transform: translateY(30px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .header .custom_menu .navigation_menu ul > li:hover .child-menu,
  .simple_header .simple_header_container .header_navigation .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper,
  .header_custom_menu .header_navigation .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    visibility: visible;
    transform: translateY(0px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
}

.simple_header .row-fluid:after,
.simple_header .row-fluid:before{
  display:none;
}



/* Hamburger Script */

@media(max-width:999px){
  body .custom-menu-primary .hs-menu-children-wrapper{
    display:block;
  }
  .simple_header.normal .custom-menu-primary .hs-menu-wrapper,
  .simple_header.custom > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary > .hs-menu-wrapper,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary > .hs-menu-wrapper{
    transition: max-height 0.4s ease;
    max-height: 0;
    overflow: hidden;
  }
  .custom-menu-primary .hs-menu-wrapper.open,
  .simple_header.custom > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary > .hs-menu-wrapper.open,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary > .hs-menu-wrapper.open {
    max-height: 500px; /* Adjust to an appropriate height based on your menu's content */
  }
  .custom-menu-primary .hs-menu-children-wrapper {
    transition: max-height 0.4s ease;
    max-height: 0;
    overflow: hidden;
  }
  .custom-menu-primary .hs-menu-children-wrapper.open {
    max-height: 100vh; /* Adjust to an appropriate height based on your submenu's content */
    transition: max-height .6s ease;
  }
  .simple_header.normal > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .hs-menu-wrapper,
  .simple_header.custom > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary > .hs-menu-wrapper,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary > .hs-menu-wrapper{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary_color);
    top: 84px;
    height: 100vh;
    z-index: 9;
    max-height:0;
  }
  body.mobile-open .simple_header.normal > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .hs-menu-wrapper,
  body.mobile-open .simple_header.custom > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary > .hs-menu-wrapper,
  body.mobile-open .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary > .hs-menu-wrapper{
    max-height: 100vh;
    padding: 0px 0px 40px;
    overflow-y: auto;
  }
  body.mobile-open .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .hs-menu-wrapper::-webkit-scrollbar,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary > .hs-menu-wrapper::-webkit-scrollbar{
    display: none;
  }
  body .header .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    display: block;
  }

  .child-open + .hs-menu-children-wrapper {
    max-height: 300px;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container {
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .header_logo,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .header_logo{
    width: 70%;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .header_logo .hs_cos_wrapper_type_logo img,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .header_logo .hs_cos_wrapper_type_logo img,
  .landing_header .header_content_container .header_logo .hs_cos_wrapper_type_logo img{
    max-width: 240px;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .header_navigation,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .header_navigation{
    width:30%;
  }

  .simple_header>.wrapper>.row-fluid-wrapper>.row-fluid.simple_header_container .custom-menu-primary .hs-menu-wrapper li,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container  .custom-menu-primary .hs-menu-wrapper li{
    max-width: 100%;
    margin-bottom: 0;
  }
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container  .custom-menu-primary .hs-menu-wrapper li{
    position: relative;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger{
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 62px;
    display: block;
    cursor: pointer;
    left: auto;
    right: 0;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger i,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger i{
    /*     position:relative; */
    cursor:pointer;
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger i:before,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger i:before{
    height: 9px;
    background: var(--white_color);
    content: '';
    display: block;
    transition: all .3s ease-in-out;
    width: 1.5px;
    right: 50px;
    top: 29px;
    position: absolute;
    transform: rotate(315deg);
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger i:after,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger i:after{
    background: var(--white_color);
    content: "";
    display: block;
    height: 1.5px;
    position: absolute;
    right: 40px;
    top: 32px;
    transition: all .3s ease-in-out;
    width: 9px;
    transform: rotate(315deg);
  }
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger.child-trigger-open i:after{
    transform:rotate(230deg);
    transition: all .3s ease-in-out;
    top:33px;
  }


  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger.child-open i:before,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger.child-open i:before{
    height: 9px;
    background: var(--white_color);
    content: '';
    display: block;
    transition: all .3s ease-in-out;
    width: 1.5px;
    right: 51px;
    top: 27px;
    position: absolute;
    transform: rotate(40deg);
  }
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger.child-open i:after,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger.child-open i:after{
    background: var(--white_color);
    content: "";
    display: block;
    height: 1.5px;
    position: absolute;
    right: 42px;
    top: 31px;
    transition: all .3s ease-in-out;
    width: 9px;
    transform: rotate(47deg);
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
    padding-left: 45px !important;
  }

  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .hs-menu-wrapper li> ul.hs-menu-children-wrapper.open li> ul > li > a{
    padding-left: 65px !important;
  }
}


@media(max-width:400px){
  .simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .header_logo .hs_cos_wrapper_type_logo img,
  .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .header_logo .hs_cos_wrapper_type_logo img,
  .landing_header .header_content_container .header_logo .hs_cos_wrapper_type_logo img{
    max-width: 140px;
  }
}
.simple_header > .wrapper > .row-fluid-wrapper > .row-fluid.simple_header_container .custom-menu-primary .child-trigger.child-open i:before,
.header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary li.simple_dropdown .child-trigger.child-open i:before,
.header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom-menu-primary .child-trigger.child-trigger-open i:before{
  transform:rotate(225deg);
  transition: all .3s ease-in-out;
}

.simple_header>.wrapper>.row-fluid-wrapper>.row-fluid.simple_header_container .custom-menu-primary .hs-menu-wrapper li a{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flow-root;
  padding-right: 40px;
}
.simple_header .simple_header_container .header_navigation .hs-menu-wrapper.flyouts .hs-menu-children-wrapper{
  margin-left: 0 !important;
}
.simple_header .simple_header_container .header_navigation .header_button_container,
.header_custom_menu .header_navigation .header_button_container{
  padding: 30px 20px 0 24px;
}
.simple_header .simple_header_container .header_navigation .header_button_container .header_button a.cta_button,
.header_custom_menu .header_navigation .header_button_container .header_button a.cta_button{
  max-width: 100%;
  display: block;
  text-align: center;
}
.simple_header .simple_header_container .header_navigation .header_button_container .header_button.first_button,
.header_custom_menu .header_navigation .header_button_container .header_button.first_button{
  margin-bottom: 20px;
}
.simple_header .simple_header_container .header_navigation.mb-left ul li.hs-menu-item{
  text-align:left;
}
.simple_header .simple_header_container .header_navigation.mb-right ul li.hs-menu-item{
  text-align:right;
}
.simple_header .simple_header_container .header_navigation.mb-center ul li.hs-menu-item{
  text-align:center;
}
body .simple_header>.wrapper>.row-fluid-wrapper>.row-fluid.simple_header_container .custom_menu .navigation_menu ul.custom > li .normal_dropdown,
body .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom_menu .navigation_menu ul.custom > li .normal_dropdown{
  max-height: 0vh;
  top: unset;
  padding:0;
  overflow: hidden;
  transition: max-height .6s ease-in-out;
}
body .simple_header>.wrapper>.row-fluid-wrapper>.row-fluid.simple_header_container .custom_menu .navigation_menu ul.custom > li .normal_dropdown.open,
body .header_custom_menu .equal-height-container .row-fluid-wrapper > .row-fluid.custom_header_container .custom_menu .navigation_menu ul.custom > li .normal_dropdown.open{
  height: 100% ;
  max-height: 100vh;
  position: relative;
  top: unset;
  padding-bottom: 0;
  transition: max-height .6s ease-in-out;
}
}
.header_navigation.vertical-center {
    display: none;
}
/**********************   Custom Menu   ************************/

.header .custom_menu .navigation_menu ul > li .vertical-menu ul{
  flex-direction: column;
}

@media (max-width: 999px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul, .header .custom_menu .navigation_menu ul {
    flex-direction: column !important;
  }
  .header .custom_menu .navigation_menu ul, .hs-menu-wrapper ul{
    flex-wrap: initial !important;
    display: flex !important;
  }
}



/* Menu and simple menu */

.header .custom_menu .navigation_menu ul,
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 999px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul,
  .header .custom_menu .navigation_menu ul{
    flex-direction: column;
  }
}

/* Vertical menu */

.footer__container .vertical .hs-menu-wrapper ul,
.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.footer__container .vertical .hs-menu-wrapper ul,
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 999px) {
  .footer__container .vertical .hs-menu-wrapper ul,
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}
.header .custom_menu .navigation_menu ul > li .child-menu,
.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}
.header .custom_menu .navigation_menu ul > li .child-menu,
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: 0px;
  opacity: 0;
  position: absolute;
  z-index: 1;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.header .custom_menu .navigation_menu ul > li:hover .child-menu,
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
.header .custom_menu .navigation_menu ul li .child-menu ul li.hs-item-has-children:hover .hs-menu-children-wrapper{
  left: 0;
  opacity: 1;
  top: 100%;
}
.header .custom_menu .navigation_menu ul li .child-menu ul li.hs-item-has-children:hover .hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper{
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 999px) {
  .header .custom_menu .navigation_menu ul > li .child-menu,
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .header .custom_menu .navigation_menu ul li .child-menu ul li.hs-item-has-children:hover .hs-menu-children-wrapper{
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

.visually-hidden {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}