@keyframes goDown {
  0%{
    top:-47px;
  }
  100% {
    transform: translateY(0px);
  }
}

{% set ulColor       = "" %} /* Set ul background color */
{% set liColor       = "" %} /* Set li background Color */
{% set aColor        = "" %} /* Set link Color */
{% set aColorHover   = "" %} /* Set link Hover Color */

.custom-menu-primary .hs-menu-wrapper > ul{ 
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:;
}

.custom-menu-primary .hs-menu-wrapper > ul ul{}
.custom-menu-primary .hs-menu-wrapper > ul ul li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
  color:;
}

.custom-menu-primary .hs-menu-wrapper > ul li a, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  overflow: visible !important;
  max-width: none !important;
  width: auto !important;
}


@media screen and (min-width:768px) {
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }
}






.mobile-trigger, .child-trigger{
  display: none; 
}

@media (max-width: 767px){

  {% set menuColorMobile = "#000000" %}  
  {% set aColorMobile = "#ffffff" %}      
  {% set aColorHoverMobile = "#ffffff" %} 

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color:;
  }


  .mobile-trigger{
    display: flex !important;
    cursor: pointer;
    position: absolute;
    top: 25px;
    align-items: center;
    border: 1px solid #DCE1E5;
    justify-content: center;
    right: 15px;
    width: 40px;
    border-radius: 6px;
    height: 40px;
    background: transparent;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;

    color: ; 
  }
  .mobile-trigger:hover{
    text-decoration: none; 
    color:;
    background-color: ; 
  }


  .mobile-open .mobile-trigger{
    color:;
    background-color: ; 
  }



  .mobile-trigger i{
    display: inline;
    position: relative;
  }
  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 18px; 
    height: 2px; 
    /*     -webkit-border-radius: 1px; */
    /*     -moz-border-radius: 1px; */
    /*     border-radius: 1px; */
    background-color: #3D3D3D; 
    display: inline-block;
  }
  .mobile-trigger i:before{
    top: -5px; 
  }
  .mobile-trigger i:after{
    top: 5px; 
  }

  .mobile-trigger:hover i, .mobile-trigger:hover i:before, .mobile-trigger:hover i:after,  
  .mobile-open .mobile-trigger i, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
    background-color: #000000 !important; 
  }



  .child-trigger{
    display: block !important;
    cursor: pointer; 
    position: absolute;
    top: 0px;
    right: -20px;
    width: 55px !important; 
    min-width: 55px !important;
    height: 45px !important; 
    padding: 0 !important;
    border-left: 1px dotted rgba(255, 255, 255, .20); 
    z-index: 99;
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; 
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 12px;
    height: 8px;
    background-color: unset;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6' fill='none'%3E%3Cpath d='M1 1.6875L4 4.67158L7 1.6875' stroke='white' stroke-linecap='square'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
  }
  /*   .child-trigger i:after{
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
} */
  /*   .child-trigger.child-open i:after{
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
} */
  .child-trigger.child-open i{
    transform: rotate(180deg);
  }

  .custom-menu-primary.js-enabled{
    position: absolute;
    padding-top: 90px; 
    margin: 0;
    left:0;
    right:0;
  }

  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: absolute;
    top: 90%; /**************************************************************/           
    left: 0;          /**************************************************************/
    padding: 0;
    background-color:#3D3D3D;
    z-index:2;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color:; 
    width: 100%; 
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
}






.header-section { width: 100%; display: inline-block; padding: 16px 0; }
.header-section .header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-section .header-inner .logo { width: auto; display: inline-block; margin: 0; }
.header-section .header-inner .logo a { width: auto; display: inline-block; }
.header-section .header-inner .logo a img { max-width: 272.73px; }
.header-section .header-inner .menu { width: auto; display: inline-block; margin: 0; }
.header-section .header-inner .menu ul { width: auto; gap: 32px; }
.header-section .header-inner .menu ul li { width: auto; display: inline-block; }
.header-section .header-inner .menu ul li:last-child { display: none; }
.header-section .header-inner .menu ul li a { transition: all 0.4s ease-in-out; border-bottom: 1px solid transparent; padding: 0 8px 12px; margin-bottom: -12px; width: auto; display: inline-block; font-size: 16px; font-weight: 500; line-height: 20.16px; color: #000000; }
.header-section .header-inner .menu ul li:hover a { color: #0D80F3; border-bottom: 1px solid #0D80F3; }
.header-section .header-inner .cta { width: auto; display: inline-block; margin: 0; }
.header-section .header-inner .cta a { width: auto; display: inline-block; background: #0D80F3; border-radius: 4px; padding: 9px 16px; border: 1px solid transparent; font-size: 16px; font-weight: 500; line-height: 20.16px; text-align: center; color: #fff; transition: all 0.4s ease-in-out; }
.header-section .header-inner .cta a:hover { color: #0D80F3; border: 1px solid #0D80F3; background: #fff; }

@media(max-width:991px) {
  .header-section .header-inner .logo a img { max-width: 227px; }
}
@media(max-width:767px) {
  .header-section .header-inner .cta { display: none; }  
  .header-section .header-inner .menu ul li:last-child { display: inline-block; margin: 16px 0 0; }
  body .mobile-trigger i, body .mobile-trigger i:before, body .mobile-trigger i:after { -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); -moz-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); -o-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); /* easeInOutCubic */ }
  body.mobile-open .mobile-trigger i { background: transparent !important; }
  body.mobile-open .mobile-trigger i:before, .body.mobile-open .mobile-trigger i:after { top: 0; }
  body.mobile-open .mobile-trigger i:before { transform: rotate(45deg); }
  body.mobile-open .mobile-trigger i:after { transform: translateY(-10px) rotate(-45deg); top: 10px; }
  .header-section .header-inner .menu ul { padding: 8px 0 24px; background: #fff; }
  .header-section .header-inner .menu ul li { width: 100%; padding: 0 24px; }
  .header-section .header-inner .menu ul li a { padding: 12px 0 13px; font-size: 18px; line-height: 22.68px; color: #1A1A1A; margin: 0; border-bottom: 1px solid #cccccc; width: 100% !important; }
  .header-section .header-inner .menu ul li:last-child a { width: 100%; display: inline-block; background: #0D80F3; border-radius: 4px; padding: 9px 16px; border: 1px solid transparent; font-size: 16px; font-weight: 500; line-height: 20.16px; text-align: center; color: #fff; transition: all 0.4s ease-in-out; }
  .header-section .header-inner .menu ul li:last-child a:hover { color: #0D80F3; border: 1px solid #0D80F3; background: #fff; }
  .header-section .header-inner .menu ul li:nth-last-child(2) a { border: none; }
}
