/* ==========================================================================
Custom Menu Primary
========================================================================== */


{% 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:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:;
}

/* 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;
}

/* 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 Menu - Hubspot Standard Toggle Menu
========================================================================== */


/**
* Special Note
*
* When the menu is open, a class of .mobile-open is applied to the body. You can 
* use this for custom styling on any element when the menu is in the open position.                     
*/

.mobile-trigger, .child-trigger{
  display: none; /* Hide button on Desktop */
}

@media (max-width: 991px){


  /* 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{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: -75px;          /* Position Button at right of screen  */
    right: 15px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    background: transparent; /* Background color */
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: ; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#fff;
    background-color: transparent; 
    border-color: #000000;
  }

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


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

  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -4px;
  }
  .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;
    color: #fff;
    background-color: #fff;
    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:#000000; /* Icon color */
  }


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

  .child-trigger{
    display: block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important; /* Button width */
    min-width: 55px !important;
    height: 51px !important; /* Button height */  
    padding: 0 !important;
    border-left: 1px dotted rgba(255, 255, 255, .20);
  }
  .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: #fff; /* 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: 44px; /* Makes room for button */
    margin: 10px 0 10px 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: 0;             /* 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);
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 10px; /* Indent Child lists */
    font-size: 16px; /* Font size of child lists */
  }

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




.header-sec { transition: all 0.4s ease-in-out; line-height: 0; z-index: 1; vertical-align: top; width: 100%; display: inline-block; padding: 26px 0 37px; position: fixed; background: transparent; }
.header-sec.sticky { background: #040404; padding: 25px 0; }
.header-sec .header-inner { line-height: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.header-sec .header-inner.mobile { display: none; }
.header-sec .header-inner .logo { width: auto; display: inline-block; margin: 0; }
.header-sec .header-inner .logo a { width: 100%; display: inline-block; }
.header-sec .header-inner .logo a img { width: 184px; transition: all 0.4s ease-in-out; }
.header-sec.sticky .header-inner .logo a img { width: 150px; }
.header-sec .header-inner .mainmenu { width: auto; display: inline-block; margin: 0; }
.header-sec .header-inner .mainmenu ul { width: 100%; display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.header-sec .header-inner .mainmenu ul li { width: auto; display: inline-block; margin: 0; padding: 0 15px; }
.header-sec .header-inner .mainmenu ul li.hs-item-has-children { padding-right: 20px; }
.header-sec .header-inner .mainmenu ul li a { width: auto; position: relative; padding: 0; display: inline-block; font-weight: 500; font-size: 16px; line-height: 30px; border-bottom: 1px solid transparent; text-decoration: none; color: #fff; }
.header-sec .header-inner .mainmenu ul li:hover a { border-bottom: 1px solid #ffffff; }
.header-sec .header-inner .mainmenu ul li.hs-item-has-children > a:after { content: "\f107"; transition: all 0.4s ease-in-out; font-family: FontAwesome; position: absolute; right: -20px; display: inline-block; font-size: 20px; }
.header-sec .header-inner .mainmenu ul li:hover a:after { transform: rotate(180deg); }
.header-sec .header-inner .mainmenu ul.hs-menu-children-wrapper { width: auto; display: inline-block; background: #000000; padding: 20px 5px; }
.header-sec .header-inner .mainmenu ul.hs-menu-children-wrapper li a { border: 1px solid transparent; }
.header-sec .header-inner .mainmenu ul.hs-menu-children-wrapper li:hover a { border-bottom: 1px solid #ffffff; }


@media(max-width:1199px) {
  .header-sec .header-inner .mainmenu ul { gap: 0; }
}

@media(max-width:991px) {
  .header-sec .header-inner.desktop { display: none; }
  .header-sec .header-inner.mobile { display: inline-block; }
  .header-sec { z-index: 9;padding: 10px 0;background-color: #040404;}
  .header-sec .header-inner .logo a img { width: 140px; }
  .header-sec .container { width: 100%; display: inline-block; }
  .header-sec .header-inner .mainmenu { width: 100%; display: inline-block; margin: 0; background: #000; position: absolute; left: 0; right: 0; top: 100%; padding: 0; }
  .header-sec .header-inner .mainmenu ul { flex-wrap: wrap; gap: 0;padding:20px 0 0 0; }
  .header-sec .header-inner .mainmenu ul li { width: 100%; display: inline-block; background: #000; }
  .header-sec .header-inner .mainmenu ul li a { border: none !important; display: inline-block; padding: 10px 16px; }
  .header-sec .header-inner .mainmenu ul li.hs-item-has-children > a:after { display: none; }
  .mobile-open .header-sec .mobile-trigger i { background: transparent; }
  .mobile-open .header-sec .mobile-trigger i:before { top: 0; transform: rotate(-45deg); }
  .mobile-open .header-sec .mobile-trigger i:after { top: 0; transform: rotate(45deg); }
  .header-sec .mobile-trigger { top: -58px; border: 1px solid #fff; }
  .header-sec .mobile-trigger i, .header-sec .mobile-trigger i:before, .header-sec .mobile-trigger i:after { background-color: #fff; }
  .header-sec .header-icon { width: auto; display: inline-block; position: absolute; right: 75px; top: 43px; }
  .header-sec .header-icon ul { width: auto; display: none; align-items: center; justify-content: flex-end; padding: 0; margin: 0; gap: 16px; }
  .header-sec .header-icon ul li { width: auto; display: inline-block; }
  .header-sec .header-icon ul li a { width: 26px; height: 26px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }
  .mobile-open .mobile-trigger { background-color: transparent !important; }
  .header-sec .header-inner .mainmenu ul.hs-menu-children-wrapper { width: 100%; }
  .header-sec.sticky { padding: 9px 0; }
}

/* lang_switcher Css */
.header-sec .container { position: relative;  z-index: 1; }
.header-sec .header-inner .mainmenu.right { padding-right:60px; }
.header-sec .lang-switch { display: inline-block; width: auto; position: absolute; right: 25px; top: 50%; transform: translateY(-50%); }
.header-sec .lang_switcher_class .globe_class { width: auto !important; display: inline-block; background: none; height: auto !important; }
.header-sec .lang_switcher_class .globe_class > li { width: auto; display: inline-block; }
.header-sec .lang_switcher_class .lang_list_class { top: 20px;  padding: 5px 0 0; }
.header-sec .lang_switcher_class .globe_class > li > a { width: auto; position: relative; z-index: 1; margin: 0; font-size: 0; display: flex; align-items: center; justify-content: center; gap:2px; pointer-events: none; }
.header-sec .lang_switcher_class .globe_class > li > a:after { content: ''; vertical-align: middle; background-position: 50%; background-repeat: no-repeat; background-size: contain; border-radius: 0; width: 16px; height: 16px; cursor: pointer; background-image: url(https://49252209.fs1.hubspotusercontent-na1.net/hubfs/49252209/down_white.png); display: inline-block;   }
.header-sec .lang_switcher_class .globe_class > li > a:before { content: attr(lang); font-weight: 400; font-size: 14px; line-height: 22px; text-align: center; text-transform: capitalize; color: #fff; width: auto; display: inline-block; }
.header-sec .lang_switcher_class .lang_list_class:before, .header-sec .lang_switcher_class .lang_list_class:after{display:none;}
.header-sec .lang_switcher_class .lang_list_class li{border: none !important;width:100%;display:inline-block;padding:0!important;}
.header-sec .lang_switcher_class .lang_list_class li a{font-weight:400;font-size:14px;line-height:22px;text-align:center;text-transform:capitalize;color:#1d1e1c;width:100%;display:inline-block;padding:6px 10px;}
.header-sec .lang_switcher_class .lang_list_class li a:hover { color: #1d1e1c !important; } 

@media(max-width:991px){
  .header-sec .lang-switch { right: 80px; }
}




