@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 */

/* Parent List */
.custom-menu-primary .hs-menu-wrapper > ul{ 
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li{
  background:;
}
li.hs-menu-item.hs-menu-depth-2.hs-item-has-children:not(:last-child) {
  border-right: solid 1px #00407a;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:;
}
.header-section .header-inner .menu ul li > ul.hs-menu-children-wrapper li > ul.hs-menu-children-wrapper li a:hover {
  color: #0088C6;
}
.header-section .header-inner .menu ul li > ul.hs-menu-children-wrapper li > ul.hs-menu-children-wrapper li a:after {
  content: "";
  background: #0088C6;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.4s ease-in-out;
}

/* .header-section .header-inner .menu ul li > ul.hs-menu-children-wrapper li > ul.hs-menu-children-wrapper li a:hover:after {
width: 100%;
} */
/* Child List */
.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:;
}

/* Override max width on menu links */
.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;
  color: #1b2d52;
}

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:992px) {
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }
}






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

@media (max-width: 991px){
  li.hs-menu-item.hs-menu-depth-2.hs-item-has-children:not(:last-child) { border-right: none;margin-bottom:15px;  }
  {% 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: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: -39px;          /* Position Button at right of screen  */
    right: 0px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */
    background: transparent; /* Background color */
    border: unset;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
    color: ; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:;
    background-color: ; 
    border-color: transparent;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:;
    background-color: ; 
    border-color: transparent;
  }



  .mobile-trigger i{
    display: inline;
    position: relative;
    top: 0;
  }
  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 22px; /* Icon line width */
    height: 2px; /* Icon line height */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #ffffff; /* Icon color */
    display: inline-block;
  }
  .mobile-trigger i:before{
    top: -6px; /* Position top line */
  }
  .mobile-trigger i:after{
    top: 6px; /* Position bottom line */
  }

  .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: #ffffff !important; /* Icon color */
  }



  .child-trigger{
    display: block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: -20px;
    width: 55px !important; /* Button width */
    min-width: 55px !important;
    height: 45px !important; /* Button height */  
    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%; /* Centers icon inside button */
    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;
  }
  li.hs-menu-depth-2 a{line-height:20px;}

  li.hs-menu-depth-2 .child-trigger{width:auto !important;height:auto !important;}
  li.hs-menu-depth-2 .child-trigger i,li.hs-menu-depth-2  .child-trigger i:after{
    display: inline-block;
    vertical-align: middle;
    content: "\e64b";
    font-family: 'themify';
    transition: all .3s ease-in-out;
    font-size: 8px;
  }
  /*   .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: relative;
    padding-top: 0px; /* Makes room for button */
    margin: 0;
  }

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 15px;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color:; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }

  /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 22px; /* Font size of top level list items */
    line-height: 45px;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    border-top: 1px dotted rgba(255, 255, 255, .35); /* Adds transparent dark highlights to top of top level list items */
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 10px;
    color:; /* link color set by global mobile-aColor variable */
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color:; /* link hover color set by global mobile-aColorHover variable */
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    background-color: rgba(255, 255, 255, .08);
  }

  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul ul li a{
    padding-left: 30px; /* Indent Child lists */
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul ul ul li a{
    padding-left: 50px; /* Indent Child lists */
  }
}




.header-section { z-index: 1; line-height: 0; position: relative; width: 100%; display: inline-block;  background: transparent linear-gradient(240deg, #0F8CC7 0%, #044179 100%) 0% 0% no-repeat padding-box; border-bottom: 1px solid #FFFFFF2F; right: 0; padding: 24px 0 26px 0; }
.header-section .header-inner { gap: 30px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.header-section .header-inner .logo-sec { max-width: 208px; width: 100%; display: inline-block; }
.header-section .header-inner .menu { width: 100%; display: inline-block; }
.header-section .header-inner .logo-sec a { width: 100%; display: inline-block; }
.header-section .header-inner .logo-sec a img.logo { width: 100%; display: block; }
.header-section .header-inner .logo-sec a img.logo-sticky { display: none; }
.header-section.fixed .header-inner .logo-sec a img.logo-sticky { width: 100%; display: block; }
.header-section.fixed .header-inner .logo-sec a img.logo { display: none; }
.header-section .header-inner .menu ul { flex-wrap: wrap; display: flex; align-items: center; width: auto; gap: 55px; justify-content: flex-end; }
.header-section .header-inner .menu ul li { width: auto; display: inline-block; }
.header-section .header-inner .menu ul li a { font-family: 'museo-sans-700',sans-serif; width: auto; font-size: 16px; line-height: 30px; color: #fff; }
.header-section .header-inner .menu ul li:hover ul { box-shadow: 0px 10px 40px #00000029; border-radius: 6px; padding: 10px 0 !important; }

.header-section.fixed { box-shadow: 0 5px 10px 0 rgba(81,94,98,.15); background: #fff; width: 100%; transition: all 0.3s ease !important; position: fixed; top: 0; z-index: 999; }
.header-section.fixed .header-inner .menu ul li a { color: #1b2d52; position: relative;  }
/* .header-section.fixed .header-inner .menu ul li a:after { content: ""; background: currentcolor; position: absolute; bottom: 2px; left: 0; width: 0; height: 1px; transition: all 0.4s ease-in-out; }
.header-section.fixed .header-inner .menu ul li a:hover:after { width: 100%; } */


.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {  white-space: break-spaces; }
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children.hs-menu-depth-1:hover>.hs-menu-children-wrapper{display:grid !important;padding: 30px 0!important;}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper{ width: 150px; }
.header-section .header-inner .menu .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper li:hover>.hs-menu-children-wrapper { width: max-content; z-index: 99; left: 150px; top: 10px; box-shadow: none; }
.header-section .header-inner .menu ul li > ul li { width: 100%; padding: 0 20px;height: 100%; }
.header-section .header-inner .menu ul > ul.hs-menu-children-wrapper { left: 0; position: relative; }

@media(min-width: 991px){
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper { align-items: baseline;width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 25px; left: auto; right: 120px; }
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children > .hs-menu-children-wrapper {padding: 20px 12px !important;}
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children > .hs-menu-children-wrapper ul.hs-menu-children-wrapper { padding: 12px 0!important; }
  .header-section .header-inner .menu ul li > ul li { width: auto; }
  .hs-menu-wrapper.flyouts .hs-item-has-children { position: unset; }
  .custom-menu-primary .hs-menu-wrapper { position: relative; }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li ul.hs-menu-children-wrapper li { padding: 0; font-weight: 300 !important;    margin-bottom: 10px;
    padding-left: 15px; }
  .header-section .header-inner .menu ul li > ul.hs-menu-children-wrapper li > ul.hs-menu-children-wrapper li a {     cursor: pointer;font-family: 'museo-sans-300',sans-serif; line-height: 1.4; }
  .header-section .header-inner .menu ul li > ul.hs-menu-children-wrapper li > ul.hs-menu-children-wrapper li:not(:last-child) { margin-bottom: 15px; }
  .header-section .header-inner .menu ul li ul ul.hs-menu-children-wrapper { display: inline-block !important; flex-flow: row wrap; position: relative; left: 0 !important; right: 0 !important; top: 0 !important; width: 100% !important; opacity: 1 !important; box-shadow: unset !important; align-items: flex-start !important; }
  .header-section .header-inner .menu ul li ul ul.hs-menu-children-wrapper li { width: auto; display: inline-block; }
  .header-section .header-inner .menu ul li ul ul.hs-menu-children-wrapper li a { display: inline-block; position: relative; }
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children >.hs-menu-children-wrapper > li > a {
    font-family: 'museo-sans-700',sans-serif;
    cursor: default;
  }

}


@media(max-width: 1199px){
  .header-section .header-inner .menu ul { gap: 40px; }
  .header-section .header-inner { align-items: flex-end; }
}
@media(max-width: 991px){
  .header-section .header-inner .menu ul li a{line-height:22px;}
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{width:93% !important;}
  .header-section .header-inner .logo-sec a img { width: 90%; }
  .header-section { background: transparent linear-gradient(240deg, #0F8CC7 0%, #044179 100%); z-index: 99; }
  .header-section .header-inner .menu ul { gap: 0; }
  .header-section .header-inner .menu ul li { width: 100%; border: none; padding: 10px 0; }
  .header-section .header-inner { display: inline-block; }
  .header-section nav.header-menu .main-menu ul li.hs-item-has-children ul { width: 100%; display: inline-block; vertical-align: top; }
  .header-section nav.header-menu .main-menu ul li.hs-item-has-children ul li { width: 100%; display: inline-block; vertical-align: top; margin: 0; }
  .header-section .header-inner.mobile .mobile-menu.custom-menu-primary.js-enabled { width: 100%; display: inline-block; vertical-align: top; background-color: #ffffff; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; position: absolute; top: 110px; left: 0; z-index: 10; }
  .header-section nav.header-menu .main-menu ul li.hs-item-has-children { margin-bottom: 0; }
  .header-section nav.header-menu .main-menu ul li { width: calc(100% - 0px); margin: 0px; }
  body.mobile-open .header-section nav.header-menu .main-menu ul { height: 100vh; display: flex; padding: 80px 0 22px 22px; }
  .header-section nav.header-menu .main-menu span.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_menu { width: 100%; }
  .header-section nav.header-menu .main-menu ul li>a:not(.button) { color: #fff; display: inline-block; font-weight: 400; text-decoration: none; font-size: 1.3rem; padding: 6px 0 0 0; margin-left: 0; }
  .header-section nav.header-menu .main-menu ul li.hs-item-has-children>a:after { display: none; }
  .header-section nav.header-menu .main-menu ul li.hs-item-has-children ul.hs-menu-children-wrapper { width: 100%; height: auto; padding: 0; }
  .header-section nav.header-menu .main-menu ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { padding: 10px 0 0 25px; }
  .header-section nav.header-menu .main-menu ul li.hs-menu-depth-1:last-child a.button.blue.bold { width: max-content; background-color: #5232e2; color: #fff; display: inline-block; cursor: pointer; display: inline-block; line-height: 1; padding: 16px 30px; border-radius: 44px; text-decoration: none; text-transform: uppercase; -webkit-user-select: none; -moz-user-select: none; user-select: none; vertical-align: middle; white-space: nowrap; font-weight: 700; font-size: .9rem; transition: all .3s; margin: 40px 0 0; }
  .header-section nav.header-menu .main-menu ul li.hs-menu-depth-1:last-child a.button.blue.bold:hover { background-color: #cbfe34; }
  .header-section nav.header-menu .main-menu ul li>a:not(.button):hover { color: #5232e2; }
  .header-section nav.header-menu .main-menu ul li>a:not(.button):focus, .header-section nav.header-menu .main-menu ul li>a:not(.button):hover { background-size: unset; background-image: unset; }
  .mobile-open .mobile-trigger i { background-color: transparent !important; }
  .mobile-open .mobile-trigger i:before { background-color: #fff !important; transform: rotate(45deg); top: 0px; }
  .mobile-open .mobile-trigger i:after { background-color: #fff !important; transform: rotate(-45deg); top: 0px; }
  .child-trigger.child-open { top: -2px; }
  .header-section .header-inner .menu ul.hs-menu-children-wrapper { padding:10px; background: #fff;  border-radius: 25px; }
  .header-section .header-inner .menu ul.hs-menu-children-wrapper li { padding: 0 !important;margin-bottom:20px; }
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper { width: 100%; }
  .header-section .header-inner .menu .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper li:hover>.hs-menu-children-wrapper {width: 100%;}
  ul.hs-menu-children-wrapper.open-menu-list { display: inline-block; }
  .header-section .header-inner .menu ul li > ul li ul.hs-menu-children-wrapper { display: none; }
  .header-section.fixed .mobile-trigger i::before {
    background: transparent linear-gradient(240deg, #0F8CC7 0%, #044179 100%) !important;
  }
  .header-section.fixed .mobile-trigger i::after, .header-section.fixed  .mobile-trigger i {
    background: transparent linear-gradient(240deg, #0F8CC7 0%, #044179 100%) !important;
  }
  .header-section.fixed .header-inner .menu ul li .child-trigger i:after {
    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' style='&%2310; fill: %23054379;&%2310;'/%3E%3C/svg%3E") !important;
  }
  body.mobile-open .header-section.fixed .mobile-trigger i {
    background: transparent !important;
  }
  .header-section .header-inner .menu ul li:hover ul { box-shadow: unset;}

}
@media (max-width: 767px){
  .header-section nav.header-menu { padding: 18px 20px; }
  .header-section nav.header-menu .logo a img { max-width: 260px !important; }
}

.header-section .globe_class {height: 30px; background-size: contain; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="20.000000pt" height="20.000000pt" viewBox="0 0 20.000000 20.000000" preserveAspectRatio="xMidYMid meet"><g transform="translate(0.000000,20.000000) scale(0.100000,-0.100000)" fill="white" stroke="none"><path d="M51 186 c-49 -27 -66 -102 -33 -142 50 -63 135 -56 171 13 43 85 -53 176 -138 129z m90 -6 c18 -10 18 -13 4 -33 -19 -27 -20 -57 -1 -57 25 0 28 -43 5 -62 -32 -27 -76 -23 -110 11 -26 27 -41 82 -21 81 18 -1 43 -30 48 -59 9 -42 18 -46 33 -15 14 31 3 49 -36 59 l-27 6 32 21 c18 11 32 27 32 36 -1 15 -2 15 -14 -1 -11 -14 -15 -15 -19 -3 -3 8 -3 17 0 20 10 10 53 7 74 -4z m36 -46 c-3 -3 -12 -4 -19 -1 -8 3 -5 6 6 6 11 1 17 -2 13 -5z"/></g></svg>');}
.header-section.fixed .globe_class{background-image: url('https://static.hsappstatic.net/cos-LanguageSwitcher/static-1.11/img/globe.png');}
.header-section .lang_list_class li { text-align: left; }
.header-section .lang_list_class li:last-child { padding-bottom: 6px; }
.header-section .lang_list_class li { padding-bottom: 6px; padding-top: 0; }
.header-section .lang_list_class li:first-child { padding-top: 6px; }
.header-section .lang_list_class li a:hover { color: #0a558a; }
.header-section  .lang_list_class li a { font-size: 16px; line-height: 26px; }
@media(max-width:991px) {
  .header-section .hs_cos_wrapper_type_language_switcher { position: absolute; top: 20px; right: 45px; height: auto; width: auto; display: block; }
  .header-section .header-inner { position: relative; }
}
@media(max-width:480px) {
  .header-section .hs_cos_wrapper_type_language_switcher { right: 40px; }
  .header-section .globe_class { height: 20px; }
  .header-section .header-inner .logo-sec { max-width: 190px; }
}


