.hs-editor-hide-until-active {
  display: none;
}

.inpage-editor-active-field .hs-editor-hide-until-active {
  display: block;
}

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

.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
  flex: 1;
}

.hs-search-field__bar button svg {
  height: 10px;
}

.hs-search-field__suggestions {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hs-search-field--open .hs-search-field__suggestions,
.inpage-editor-active-field .hs-search-field__suggestions {
  position: absolute;
  width: 100%;
  border: 1px solid #cdcdcd;
  background-color: #fff;
  box-shadow: 1px 10px 16px -9px rgba(122, 122, 122, 0.75);
}

.hs-search-field__suggestions li {
  display: block;
  padding: 0;
  margin: 0;
}

.hs-search-field__suggestions .results-for {
  font-weight: bold;
}

.hs-search-field__suggestions a,
.hs-search-field__suggestions .results-for {
  display: block;
  padding: 0 10px;
  line-height: 1.7rem;
}

.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  outline: none;
}

.hs-search-field__input:focus {
  outline-style: solid;
}

.hs-search-field__suggestions-container {
  position: relative;
  flex-basis: 100%;
}

.hs-search-field__form {
  display: flex;
  flex-wrap: wrap;
  background-color: transparent;
  align-items: center;
}

.hs-search-field__label {
  flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__input {
  flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__button {
  margin-top: 0.725rem;
  margin-right: 0.725rem;
}

.hs-search-field__bar--button-align-right .hs-search-field__button {
  margin-right: 0;
  margin-left: 0.725rem;
  order: 2;
}

.hs-search-field__bar--button-beneath .hs-search-field__suggestions-container {
  min-width: 75%;
  flex-basis: auto;
  flex-grow: 1;
}

.hs-search-field__button--labelled .hs_cos_wrapper_type_icon {
  margin-right: 0.5rem;
}

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

/* Language Switcher Css */
.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;
}
/* End Language Switcher Css */
/* Menu */

.menu--desktop {
  display: block;
}

.menu--mobile {
  /*   display: none; */
  /*   opacity: 0; */
  position: fixed;
  /*   background-color: #ffffff; */
  left: -100%;
  top: 0;
  width: 100%;
  bottom: 0;
  z-index: 1001;
  transition: left .6s ease-in-out,width .4s ease-in-out;
  /*   display: flex;
  flex-direction: row; */
}
.menu--mobile .menu-box {
  width: 300px;
  background-color: #ffffff;
  overflow: scroll;
  height: 100%;
}
.menu-overlay {
  /*   flex: 1; */
  display: none;
  background-color: #000;
  opacity: 0;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 992px) {
  .menu--desktop {
    display: none;
  }

  .menu--mobile.active {
    /*     display: block; */
    opacity: 1;
    transition: left .6s ease-in-out,width .4s ease-in-out;
    left: 0;
    /*     transform: translateX(0); */
  }
  .menu-overlay.active {
    display: block;
    opacity: .5;
    transition: all .7s;
  }
}

/* Menu items */

.menu__item {
  position: relative;
}

.menu__link {
/*   font-size: 16px;
  line-height: 26px;
  text-decoration: none;
  font-weight: 500; */
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: none;
  color: #000000;
  position: relative;
}

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

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

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

@media (max-width: 992px) {
  .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; */
  padding: 20px 12px!important;
  /*   text-transform: uppercase; */
}

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

@media (max-width: 992px) {
  .menu__item {
    position: relative;
  }
  .menu__item--depth-1 {
    /*     border-top: 2px solid #CED4DB; */
    /*     padding: 0; */
    padding: 0.7rem 0.875rem 
  }

  .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: 12px;
  display: none;
  /*     left: 50%; */
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: max-content;
  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%;
  white-space: nowrap;
  padding: 15px 25px;
}

.menu__submenu .menu__link {
  display: block;
  /*   padding: 0.7rem 1.05rem; */
  transition: background-color 0.3s;
  width: 100%;
  /*     line-height: 50px; */
}

.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: 992px) {
  .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: 20%;
    margin-left: 1rem;
    overflow: hidden;
    position: absolute;
    top: -6px;
    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: 992px) {
  .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
    padding: 0px 24px;
  }

  .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; */
    transition: none;
    width: 100%;
  }

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

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

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

/* Menu icons */
.menu__child-toggle-icon:after {
  content: "\f107";
  font-family: FontAwesome;
}

@media(min-width: 992px) {
  .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 {
    position: static;
    right: 0;
    top: 0;
    vertical-align: middle;
  }

  .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: 992px) {
  .menu__child-toggle {
    position: absolute;
    right: 20px;
    top: 9px;
    width: 100px;
    display: flex;
    justify-content: flex-end;
    /*       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: 0;
    width: 30%; */
  }

  .menu__child-toggle-icon {
    /*       background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgc3Ryb2tlPSIjOTc5ODlGIiBzdHJva2Utd2lkdGg9IjIuNCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cmVjdCB4PSIxLjIiIHk9IjkuNiIgd2lkdGg9IjE2LjgiIGhlaWdodD0iMSIgcng9Ii41Ii8+PHJlY3QgdHJhbnNmb3JtPSJyb3RhdGUoOTAgOS42IDkuNikiIHg9IjEuMiIgeT0iOS42IiB3aWR0aD0iMTYuOCIgaGVpZ2h0PSIxIiByeD0iLjUiLz48L2c+PC9zdmc+); */
    /*       background-repeat: no-repeat; */
    /*       display: block;
    height: 20px;
    margin-left: auto;
    margin-right: 1.05rem;
    transition: transform 0.4s;
    width: 20px; */
  }

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

/* extra css */
/*   header.header-parent {
padding-top: 20px;
padding-bottom: 20px;
} */
/* header .header .logo img {
max-width: 190px;
width: 100%;
} */
header .header .menu--mobile .logo img {
  max-width: 120px;
  width: 100%;
}
/* .robo_header .menu__submenu {
padding-left: 24px;
padding-right: 24px;
} */
.custom-header-dark header .robo_header  .menu__item--has-submenu a.menu__link--toggle::after {
  position: absolute;
  content: url(https://23564379.fs1.hubspotusercontent-na1.net/hubfs/23564379/CM-Dec-2023/nav-dropdown-icon.svg);
  border: 0px;
  /*   bottom: 0; */
  right: -15px;
  margin: 0px;
  bottom: 0;
}
.custom-header-dark header .menu--desktop .menu__link {
  color: #FFFFFF;
}
.custom-header-dark header .menu--desktop .menu__submenu .menu__link {
  color: #000000;
}
.custom-header-light header .robo_header  .menu__item--has-submenu a.menu__link--toggle::after,
header .robo_header .menu--mobile  .menu__item--has-submenu a.menu__link--toggle::after {
  /*     position: absolute;
  right: -15px;
  content: url(https://23564379.fs1.hubspotusercontent-na1.net/hubfs/23564379/CM-Dec-2023/nav-dropdown-icon-black.svg); */
}
/* .custom-header-dark header .menu--desktop .menu__child-toggle .menu__child-toggle-icon {
color: #ffffff;
} */
@media(max-width: 992px){
  header nav .navbar-toggler {
    border: none;
    background-color: #6E7198;
    border-radius: 0px;
    padding: 0px;
  }
  .menu__item--depth-1 {
    display: block;
  }
  .menu--mobile .menu__submenu {
    position: static;
    transform: none;
    box-shadow: none;
  }
  .menu--mobile .menu__submenu--level-2 > .menu__item:first-child:before {
    display: none;
  }
  .menu__submenu .menu__link {
    line-height: normal;
    padding: 10px 20px;
    font-size: 14px;
  }
  /*     .menu--mobile .menu__child-toggle {
  position: absolute;
  left: 10px;
} */
}
@media (min-width: 992px){
  header .robo_header .navbar-toggler {
    display: none;
  }
  .menu__item--depth-1 {
    padding: 20px 25px;
    gap: 7px;
  }
  .menu--desktop .menu__wrapper {
    display: flex;
  }
  .menu--desktop .menu__wrapper .menu__item--depth-1:last-child {
    padding-left: 0px;
  }
  {#
  .menu--desktop .menu__wrapper .menu__item--depth-1:last-child .menu__link {
    border-left: 1px solid var(--primary-color);
    padding-left: 25px;
  }
  #}
  header .robo_header .menu .menu__item--has-submenu {
    display: flex;
    align-items: center;
  }
  /*     header .robo_header .menu__item--has-submenu a.menu__link--toggle:hover::after {
  content: url(https://23564379.fs1.hubspotusercontent-na1.net/hubfs/23564379/CM-Dec-2023/nav-dropdown-icon-green.svg);
} */
}
.menu--mobile .mobile-menu-logo-and-close {
  padding: 16px;
}
.menu--desktop .menu__submenu {
  max-width: 240px;
/*   width: 100%; */
  /*     padding: 0px 24px; */
  /*   margin-top: 15px; */
}
.btn-close:active,
.btn-close:hover,
.btn-close:focus-visible {
  background: transparent!important;
  border: 0!important;
  color: #000000!important;
  outline: 0!important;
}



/* 2025 */
@media(min-width: 1024px){
  header .robo_header .header-content {
    /*     display: flex;
    align-items: center;
    justify-content: space-between; */
  }
}
.menu__submenu .menu__link:hover {
  background-color: transparent;
}

header .robo_header .main-nav-div {  
  background-color: #F7F7F7CC;
}
header .robo_header .border-container.main-nav-div .content-wrapper {
  border-top: 1px solid #3D3D3D;
  padding: 16px 16px;
}
header .robo_header .header-content .container {
  display: flex ;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
header .robo_header .header-content .container.menu-container {
  justify-content: center;
}
@media(min-width: 480px){
  header .robo_header .header-content .search-input {
    position: relative;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
  }
}

header .robo_header .header-content .search-input i {
  position: absolute;
  color: var(--secondary-color);
  left: 20px;
  padding-right: 15px;
  border-right: 1px solid var(--border-color);
}
header .robo_header .header-content .search-input input {
  padding: 11px 20px 11px 65px;
  border: 1px solid var(--border-color);
  border-radius: 7px;
  /*   max-width: 500px; */
  width: 100%;
  background: transparent;
}
header .robo_header .header-content .search-input input:focus-visible {
  outline: none;
}
@media(min-width: 992px){
  header .robo_header .menu .menu__item:hover {
    background-color: var(--gray-color);
  }

  header .robo_header .menu .menu__item:hover .menu__link {
    background-color: transparent;
  }
  header .robo_header .menu .menu__submenu--level-2 .menu__item.menu__item--has-submenu .menu__child-toggle-icon {
    rotate: -90deg;
  }
}


/* header .robo_header .menu .menu__submenu--level-2 .menu__item.menu__item--has-submenu:hover {
background: var(--secondary-color);
}
header .robo_header .menu .menu__submenu--level-2 .menu__item.menu__item--has-submenu:hover .menu__link {
color: #fff;
}
header .robo_header .menu .menu__submenu--level-2 .menu__item.menu__item--has-submenu .menu__link:hover {
color: #fff !important;
}
header .robo_header .menu .menu__submenu--level-2 .menu__item.menu__item--has-submenu:hover .menu__child-toggle-icon {
color: #fff;
} */
header .robo_header .menu .menu__item.menu__item--depth-2,
header .robo_header .menu .menu__item.menu__item--depth-3 {
  border-radius: 12px;
}

header .robo_header .menu .menu__submenu--level-3 {
  top: 66%;
}
header .robo_header .menu--mobile .btn-close i {
  font-size: 25px;
}
header .robo_header .menu--mobile .mobile-menu-logo-and-close {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .robo_header .hs-search-field__bar {
  max-width: 500px;
  width: 100%;
}
header .robo_header .cta-box {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .robo_header .cta-box .btn {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}
header .robo_header .mobile-cta-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
header .robo_header .mobile-cta-box button {
  width: 100%;
}
header .robo_header .cta-box button{
  font-weight: 600;
  white-space: nowrap;
}
@media(max-width: 992px){
  header .robo_header .cta-box {
    display: none;
  }
  .social-flex.desktop-social-flex {
    display: none;
  }
}
@media(max-width: 480px){
  header .robo_header .hs-search-field {
    display: none;
  }
  header .robo_header .header-content .menu--mobile .search-input {
    padding: 20px;
    position: relative;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
  }
}


header.header-parent .top-bar {
  padding-top: 24px;
  padding-bottom: 18px;
  background-color: #fff;  
}
header.header-parent .top-bar .top-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
header.header-parent .top-bar .tag-line .tag-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: capitalize;
  padding-left: 15px;
} 
header.header-parent .social-flex {
  display: flex;
/*   justify-content: space-between; */
  align-items: center;
  gap: 13px;
}
header.header-parent .social-flex.mobile-social-flex {
  padding: 0 16px;
}
header.header-parent .social-flex .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #0A0930;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

header.header-parent .social-flex .social-link:hover,
header.header-parent .social-flex .social-link:focus,
header.header-parent .social-flex .social-link:focus-visible {
  transform: translateY(-3px);
}
.menu--mobile .menu__item--depth-1 {
  padding-top: 4px !important;
}
@media(max-width: 992px){
  .social-flex.desktop-social-flex {
    display: none!important;
  }
}
