.standard-header-fixed {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition-ease-md);
  background: var(--color-accent-primary);
}
.standard-header.standard-header-sticky {
  background: var(--color-accent-primary);
}
.standard-header__wrap {
  padding: 0;
  transition: var(--transition-ease-md);
  position:relative;
} 
.standard-header__wrap.active {
  padding: 0;
}

.standard-header__wrap .content-wrapper {
  padding:10px 15px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  transition: var(--transition-ease-sm);
  width:100%;
}

.standard-header__wrap__logo__hamburger{
  display:block;
}
.standard-header__wrap__logo__wrap img {
  width: 126px;
  transition: var(--transition-ease-sm);
}
.standard-header__wrap__nav__menu ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  flex-direction:column;
}

.standard-header__wrap__logo__wrap img {
    max-width: 200px;
}

.standard-header__wrap__nav__menu ul li a:hover {
  text-decoration: underline;
}
.standard-header__wrap__nav__menu ul li.hs-item-has-children ul li a img {
  max-width: 20px !important;
}
/* ul.standard-header__wrap__nav__menu__list__child {
display: none;
} */



.standard-header__wrap__nav__menu ul li.hs-item-has-children ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.standard-header__wrap__nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
span.standard-header__wrap__nav__cta__hubspot-cta a {
  margin: 0;
}
  .standard-header__wrap__nav__menu ul li {
  color: ;
  font-size: var(--font-size-xxs);
  font-weight: var(--font-weight-regular);
  padding: 0;
  position: relative;
}
.standard-header__wrap__nav__menu ul li a{
  text-decoration: none;
  display: inline;
  padding: 36px 0;
  position: relative;
}
.standard-header__wrap__nav__menu ul li.hs-item-has-children ul li a {
  color: ;
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}  
  
.standard-header__wrap__nav__cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


{# arrow icon #}
 span.arrow-icon {
    content: "";
    display: inline-block;
    height: 11px;
    margin: 27px 15px 10px 15px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: -webkit-transform .5s;
    -moz-transition: .5s;
    transition: .5s;
    width: 10px;
    border-bottom: 2px solid var(--color-tertiary);
    border-right: 2px solid var(--color-tertiary);
    position: absolute;
    right: 15px;
    z-index: 22;
    cursor:pointer;
  } 
 
{# end arrow icon #}

@media (min-width:768px){

  .standard-header__wrap__logo__wrap img {
    width: 156px;
  }  
}

@media (min-width:1191px){
 .standard-header__wrap {
    padding: 0 20px;
} 
  
  .standard-header__wrap .content-wrapper {
    flex-direction: row;
    padding:20px 0;
  }
  .standard-header__wrap__logo__hamburger{
    display:none;
  }
  .standard-header__wrap__nav__menu ul {

    flex-direction:row;
  }  
  .standard-header__wrap__nav__menu ul li.hs-item-has-children ul {
    list-style: none;
    padding: 0;
    display: block;
    left: 50%;
    overflow: hidden;
    padding: 15px 26px;
    position: absolute;
    top: 57px;
    transform: translateX(-50%) translateY(-30%);
    width: 200px;
    z-index: -999;
    visibility: hidden;
    opacity: 0;
    transition: 400ms;
    width: max-content;
    max-width: 258px;
    min-width: 150px;
    box-shadow: var(--box-shadow-light);
  }  
  .standard-header__wrap__nav__menu ul li:hover ul {
    display: block;

    transform: translateX(-50%);
    visibility: visible;
    opacity: 1;
  } 
  .standard-header-sticky .standard-header__wrap__nav__menu ul li:hover ul {

    top: 43px;

  }    
  .standard-header-sticky .standard-header__wrap .content-wrapper {
    padding: 6px 0;
  }  
.standard-header__wrap__nav__menu ul li.hs-item-has-children ul li a {
  padding: 11px 0;
}    
 .standard-header-sticky .cta-button a {
    padding: 8px 20px;
} 
   
.standard-header__wrap__nav__cta {
    flex-direction: row;
} 
  
.standard-header__wrap__nav__menu ul li.hs-item-has-children {
    padding-right: 22px;
} 
span.arrow-icon {
    height: 10px;
    margin: 10px 7px 6px 10px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    right: auto;
  cursor:pointer;
}  
  .standard-header__wrap__nav__menu ul li.hs-item-has-children:hover span.arrow-icon{
      -webkit-transform: translateY(-50%) rotate(225deg);
    -ms-transform: translateY(-50%) rotate(225deg);
    transform: translateY(-50%) rotate(225deg);
    margin-top:14px;
  }  

}

@media (max-width:1190px){
  .standard-header__wrap__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .standard-header-sticky .standard-header__wrap .content-wrapper {
    padding:9px 15px;
  }  
  .standard-header-sticky .standard-header__wrap.active .content-wrapper  {
    box-shadow:none;
  }  

  .standard-header__wrap__nav.open {
    margin-top: 0;
    opacity: 1;
  }  

  .standard-header__wrap__logo__hamburger__menu {
    display: flex;
    flex-direction: column;
    transition: var(--transition-ease-md);
    width: 64px;
    z-index: 9999;
    padding: 3px 24px;
    cursor:pointer;
    padding-right:0;
  }  
  span.standard-header__wrap__logo__hamburger__menu__line {
    display: block;
    height: 2px;
    transition: var(--transition-ease-md);
    width: 100%;
    background:var(--color-tertiary);
    border-radius: 24px;
  }
  span.standard-header__wrap__logo__hamburger__menu__line:nth-child(2) {
    margin: 10px 0;
  }  
  .standard-header__wrap__nav {
    max-height: 0;
    left: 0;
    margin: -5% 0 0;
    opacity: 0;
    overflow-y: scroll;
    padding: 0;
    position: fixed;
    transition: .4s;
    transition: var(--transition-ease-md);
    width: 100%;
    z-index: -1;
    display: flex;
    flex-direction: column;
  }
  .standard-header__wrap__nav.open {
    margin-top: 55px;
    height: calc(100vh - 70px);
    opacity: 1;
    z-index: 2;
    max-height: unset;
    width: 100%;
    overflow-x: hidden;
  }
  .standard-header__wrap.active .content-wrapper {
    border-radius: 0;
  }  
  .standard-header.active {
    top: 0;
  }
  .standard-header__wrap__logo__hamburger__menu.open span.standard-header__wrap__logo__hamburger__menu__line:nth-child(2) {
    opacity: 0;
  }

  .standard-header__wrap__logo__hamburger__menu.open {
    margin: -7px 0 0;
    padding: 12px 0 13px 15px;
    width: 48px;
  }  
  .standard-header__wrap__logo__hamburger__menu.open span.standard-header__wrap__logo__hamburger__menu__line:first-child {
    transform: rotate(45deg);
    margin-top: 7px;
  }
  .standard-header__wrap__logo__hamburger__menu.open span.standard-header__wrap__logo__hamburger__menu__line:last-child {
    transform: rotate(-45deg);
    margin-top: -24px;
  }
  header.standard-header.active {
    height: 100vh;
    background:var(--color-accent-primary);
  }  
  .standard-header__wrap__nav__menu {
    display: block;
    width: 100% !important;
  }  
  .standard-header__wrap__nav__menu ul {
    width: 100%;
    align-items: flex-start;
    gap: 0;
    margin-top:0;
  }  
  .standard-header__wrap__nav__menu ul li {
    display: flex;
    width: 100%;
    flex-direction: column;
  }  
  .standard-header__wrap__nav__menu ul li a {
    padding: 14px 30px;
    margin-right: 75px;
    display:block;
  }  
 
  .standard-header__wrap__nav__menu ul li.hs-item-has-children ul {
    background: var(--color-white);
    display: flex
      ;
    flex-direction: column;
    max-height: 0;
    z-index: -11;
    opacity: 0;
    transition: 400ms;
    height: auto;
  }  
  .standard-header__wrap__nav__menu ul li.hs-item-has-children ul.active {
    max-height: 1000px;
    opacity: 1;
    z-index:33;
            padding-left: 20px;
  } 
  .standard-header__wrap__nav__cta {
    padding: 0 30px;
    width:100%;
    padding-bottom:50px;
  }  
  body.fix {
    overflow: hidden;
  }  
  span.arrow-icon:after {
    content: "";
    height: 30px;
    position: absolute;
    right: -12px;
    top: -8px;
    width: 30px;
  }  
  span.arrow-icon.active {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }  
  

}