/* 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;
}
.mobile-trigger, .child-trigger{
  display: none; 
}

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





@media (max-width: 1199px){


  /* Variables
  ========================================================================== */

  {% set menuColorMobile = "#000000" %}   /* Set Mobile Menu Background Color */
  {% set aColorMobile = "#ffffff" %}      /* Set Link Color */
  {% set aColorHoverMobile = "#ffffff" %} /* Set Link Hover Color */

  /* 
  * Menu Reset
  *
  * Remove styling from desktop version of custom-menu-primary. Place any 
  * additional CSS you want removed from the mobile menu in this reset 
  */

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


  /* Toggle Button
  ========================================================================== */

  .mobile-trigger{
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: -56px;          /* Position Button at right of screen  */
    right: 16px;        /*******************************************/
    width: auto; /* Button width */
    padding: 0;
    background: transparent; /* Background color */
    border: none;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;

  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:;
    background-color: ; 
    border-color: #002c6b;
  }

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


  /* Toggle Button Icon
  ========================================================================== */

  .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: 40px; /* Icon line width */
    height: 2px; /* Icon line height */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    color: #e5a72e;
    background-color: #e5a72e;
    display: inline-block;
  }
  .mobile-trigger i:before{
    top: -11px; /* Position top line */
  }
  .mobile-trigger i:after{
    top: 11px; /* 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:#e5a72e; /* Icon color */
  }


  /* Child Toggle Button
  ========================================================================== */

  .child-trigger{
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 36px !important; /* Button width */
    height: 36px !important; /* Button height */  
    padding: 0 !important;
  }
  .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: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color:; /* Icon color */
    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{
  }


  /* Menu Styles on Mobile Devices
  ========================================================================== */  

  .custom-menu-primary.js-enabled{
    position: relative;
    padding-top: 0;
    top: 100%;
    margin: 0 0 0 0;
    left: 0;
    right: 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{
    position: absolute;
    top: 0;
    left: -16px;
    height: 100vh;
    background-color: #2f2575;
    padding: 0 16px;
    right: -16px;
    width: auto;
  }
  .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: 18px; /* Font size of top level list items */
    line-height: 36px;
    overflow: visible;
  }
  .mobile-trigger i {transition:.3s ease-in-out;}
  .mobile-open .mobile-trigger i {background-color: transparent;}
  .mobile-open .mobile-trigger i:before {transform: rotate(45deg);top: 0;transition:.3s ease-in-out;}
  .mobile-open .mobile-trigger i:after {transform: rotate(-45deg);top: 0;transition:.3s ease-in-out;}
}
/* ====================================== */

header.header {z-index: 999; background-color: transparent;width: 100%; display: inline-block; vertical-align: top; }
header.header.fixed { background-color: rgba(0, 0, 0, .9); position: fixed !important; top: 0; left: 0; right: 0; z-index: 9999; -webkit-animation: slideDown 0.3s ease-out; animation: slideDown 0.3s ease-out; }
@-webkit-keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}




.header{width:100%; display:inline-block; background-color:#2f2575;}
.header .header-inner{position: relative;width:100%; display:flex; align-items:center;padding: 0 16px;justify-content: space-between; }
.header .header-inner .logo{margin:0;}
.header .header-inner .logo a{display:inline-block;}
.header .header-inner .logo img{width: 100%;max-width: 268px;}
.header .header-inner .navbar{margin:0 0 0 30px;}
.header .header-inner .navbar ul{ gap:16px; list-style:none; margin:0; padding:0;}
.header .header-inner .navbar ul li a{color:#fff;font-size:18px; padding:8px;display:inline-block; border-bottom: 4px solid transparent;}
.header .header-inner .navbar ul li:hover> a{border-bottom-color: #ec7b51}
.header .header-inner .navbar ul li.hs-item-has-children {position: relative;}
.header .header-inner .navbar ul li.hs-item-has-children:after {content: "";position: absolute;top: 42%;right: 0%;border-top: .3em solid #fff;border-right: .3em solid transparent;border-bottom: 0;border-left: .3em solid transparent;}
.header .header-inner .navbar ul li.hs-item-has-children a{padding:8px 20px 8px 8px;}
.header .header-inner .navbar ul li.hs-item-has-children ul.hs-menu-children-wrapper {visibility: visible !important; display:none;opacity:1 !important; gap:0;background-color: #fff;padding: 10px 0;left: -50px !important; margin:0;top:110% !important;}
.header .header-inner .navbar ul li.hs-item-has-children ul li a { font-size:13.6px;padding: 5px 20px;color: #000;display: inline-block;width: 100%;}
.header .header-inner .navbar ul li.hs-item-has-children ul li { margin:0;}
.header .header-inner .right-header{margin:0;}
.header .header-inner .right-header ul{ display:flex; align-items:center; list-style:none; margin:0; padding:0;}
.header .header-inner .right-header ul li a{display:flex;align-items:center;gap:10px;color:#fff;padding: 25px;font-size: 15px;text-transform: uppercase; border-right: 3px solid #171546; }
/* .header .header-inner .right-header ul li:first-child a {border: none;} */
.header .header-inner .right-header ul li a img{width:24px; height:24px;}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {display:block;top: 102% !important;z-index:99;}
.header .header-inner .navbar ul li.hs-item-has-children ul li a {border: none;}
.header .header-inner .navbar ul li.hs-item-has-children ul li:hover {background-color: #e9ecef;}
.header .header-inner .navbar ul li.active.active-branch a { border-bottom-color: #ec7b51; }
.header .header-inner .navbar ul li.active-item {display: none;}


/*  Language Swicther Css  */

.header .header-inner .right-header ul .language-switch-header{display:flex; align-items:center; padding:0 10px;}
.header .header-inner .right-header ul .language-switch-header .lang_switcher_class {
  display: inline-block!important;
  position: relative!important;
  z-index: 9999!important
}
.header .header-inner .right-header ul .language-switch-header span#hs_cos_wrapper_module_174428534053337_language_switcher{display:flex; }

.header .header-inner .right-header ul .language-switch-header .globe_class {
  height:20px;
  width: 20px;
  position: relative;
  background-color:#171546;
  background:none!important;
}

.header .header-inner .right-header ul .language-switch-header .lang_list_class:after,.header .header-inner .right-header ul .language-switch-header .lang_list_class:before {
  content: none!important;
}

.header .header-inner .right-header ul .language-switch-header .lang_list_class {
  background: #fff!important;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: none!important;
  list-style: none!important;
  margin: 5px 0;
  min-width: 150%!important;
  padding: 0!important;
  position: absolute!important;
}

.header .header-inner .right-header ul .language-switch-header .lang_switcher_class.show .lang_list_class {
  display: block !important;
  width: auto;
  left: 40px;
  top:30px;
}

.header .header-inner .right-header ul .language-switch-header .header-language-swt{color:#fff; position: relative; cursor:pointer; margin:0 0 0 -10px;}


.header .header-inner .right-header ul .language-switch-header .lang_list_class li {
  padding: 10px 12px!important;
  border: none;
}

.header .header-inner .right-header ul .language-switch-header .lang_switcher_link {
  color: #1e175f!important;
  display: block!important;
  font-size: 14px!important;
  text-decoration: none!important;
  padding:0;
  border:none;
}

.header .header-inner .right-header ul .language-switch-header .lang_list_class li:hover {
  background-color: #e9ecef !important;
  width: 100%;
}

.header .header-inner .right-header ul .language-switch-header .lang_list_class li.active {
  background-color: #1e175f!important
}

.header .header-inner .right-header ul .language-switch-header .lang_list_class li.active a {
  color: #fff!important
}


.header .header-inner .right-header ul .language-switch-header .header-language-swt::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent;
} 
/*  Language Swicther Css  end  */



@media (max-width: 1660px) {
  .header .header-inner .right-header ul li a {
    padding:20px ;
  }
}

@media(max-width:1600px){
  .header .header-inner .logo img { max-width: 210px; }
  .header .header-inner .navbar ul li a { padding: 6px; font-size: 17px; }
  .header .header-inner .navbar ul li.hs-item-has-children a { padding: 6px 12px 6px 6px; }
  .header .header-inner .navbar ul li.hs-item-has-children:after { border-left: 4px solid transparent; border-right: 4px solid transparent; }
  .header .header-inner .right-header ul li a { padding: 16px 12px; }


}
@media(max-width:1440px){
  .header .header-inner .right-header ul li a { padding: 16px 6px; font-size: 14px; gap: 4px; }
  .header .header-inner .right-header ul li a img { height: 16px; width: 16px; }
  .header .header-inner .logo img { max-width: 160px; }
  .header .header-inner .navbar { margin: 0 0 0 10px; }
  .header .header-inner .navbar ul { gap: 6px; }
  .header .header-inner .navbar ul li a { font-size: 16px; padding: 6px; }
}

@media(max-width:1199px){
  li.language-switch-header.active-item{display:none!important;}
  .header .header-inner { flex-wrap: wrap; }
  .header .header-inner .logo img { max-width: 220px; }
  .header .header-inner .navbar {padding: 0 ; margin: 0; width: 100%; }
  .header .header-inner > .right-header { display: none; }
  .header .header-inner .navbar .right-header { position: fixed;
    bottom: 0;
    left: 16px;
    right: 16px;
    width: auto;display: none; 
    z-index: 99;
  }
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    overflow-y: auto;
    z-index: 99;
    height: calc(100vh - 72.69px);}
  .mobile-open .header .header-inner .navbar .right-header { display: block; }
  .header .header-inner .navbar ul li.hs-item-has-children:after {display: none;}
  .header .header-inner .navbar ul li a {
    font-size: 18px;             border-bottom-width: 2px;   padding-left: 0;
    padding-right: 0;
    line-height: 30px;
  }
  .header .header-inner .navbar ul li.hs-item-has-children a{padding-left: 0;
    padding-right: 0;}
  body.mobile-open {
    overflow: hidden;
  }
  .header .header-inner .navbar ul li.active-item{display:block;        margin-bottom: 14px;
    width: fit-content;
    min-width: 200px;}
  .header .header-inner .navbar ul li.active-item a {border: none;padding: 7px 20px; display: flex; align-items: center; gap: 12px; width: fit-content !important; }
  .header .header-inner .navbar ul li.active-item a img { width: 18px; margin: 0; }
  .header .header-inner .navbar ul li.active-item:nth-last-child(2) { background-color: #ec7b51 !important; color: #fff !important; }
  .header .header-inner .navbar ul li.active-item:last-child { background-color: #ec7b51 !important; color: #fff !important; }
  .header .header-inner .navbar ul.active-branch {
    padding-bottom: 20px;
  }
  .header .header-inner .navbar ul li.hs-menu-item.hs-item-has-children ul.hs-menu-children-wrapper { padding: 0; background-color: transparent; }
  .header .header-inner .navbar ul li.hs-menu-item.hs-item-has-children.open_menu > a { border-bottom-color: #ec7b51; }
  .header .header-inner .navbar ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { font-size: 18px; line-height: 30px; color: #fff; }

  .child-trigger.child-open {}

  .child-trigger.child-open svg {
    transform: rotate(180deg);
  }

  .child-trigger svg {
    transition: .3s ease-in-out;
  }.header .header-inner .navbar ul li.hs-item-has-children ul li:hover {
    background-color: transparent;
  }
}