/* ==========================================================================
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:1200px) {
  .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: 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{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: -60px;          /* Position Button at right of screen  */
    right: 10px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    background: transparent; /* Background color */
    border: 1px solid #002c6b;
    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:;
    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;
    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: #002c6b;
    background-color: #002c6b;
    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:#002c6b; /* 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: 45px !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:; /* 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{
    position: relative;
    padding-top: 44px; /* Makes room for button */
    margin: 10px 0 10px 0;
  }

  /* Hide menu on mobile */
  .custom-menu-primary .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 { position:relative;width: 100%; display: inline-block; padding: 10px 35px 10px 35px; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .16); }
.header-sec { width: 100%; display: inline-block; }
.header-sec .header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header-sec .header-inner .logo { width: auto; display: inline-block; margin: 0; }
.header-sec .header-inner .logo a { width: 100%; display: inline-block; vertical-align: top; line-height: 0; }
.header-sec .header-inner .logo a img { max-height: 42px; width: 100%; display: inline-block; object-fit: contain; object-position: center; }
.header-sec .header-inner .menu { width: auto; display: inline-block; margin: 0; }
.header-sec .header-inner .right_cta { width: auto; display: inline-block; margin: 0; }
.header-sec .header-inner .hs-menu-wrapper > ul { display:flex; width: auto; }
.header-sec .header-inner .hs-menu-wrapper > ul > li { width: auto; display: inline-block; }
.header-sec .header-inner .hs-menu-wrapper > ul > li > a { width: auto; display: inline-block; font-weight: 500; color: #00234B; font-size: 14px; line-height: 24px; letter-spacing: normal; padding: 0 15px; transition: all .3s; }
.header-sec .header-inner .hs-menu-wrapper > ul > li > a:hover { color: #3290CE; }
.header-sec .header-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a:after { content: '\f107'; position: absolute; top: 3px; right: 15px; font-family: fontAwesome; }
.header-sec .header-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a { padding-right: 30px; }
.header-sec .header-inner .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper { width: 100%; display: inline-block; background: white; min-width: 232px; padding: 17px 0; z-index: 11; transition: all .85s cubic-bezier(.19,1,.22,1); transition-property: transform, opacity, visibility; border-radius: 5px; box-shadow: 0 16px 50px rgba(0, 0, 0, .07); }
.header-sec .header-inner .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper li { width: 100%; display: inline-block; line-height: 1; }
.header-sec .header-inner .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper li a { padding: 10px 24px; width: 100% !important; color: #00234B; font-size: 14px; display: inline-block; font-weight: 200; line-height: normal; transition: all .3s; }
.header-sec .header-inner .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper li a:hover { color: #3290CE; }

.header-sec .header-inner .right_cta a { font-size: 13px; font-weight: bold; line-height: 23px; background-color: #3290CE; border-radius: 50px; width: auto; padding: 11px 17px; color: #fff; transition: all .3s; display: inline-flex; align-items: center; justify-content: center; }
.header-sec .header-inner .right_cta a .btn-txt { font-size: 13px; font-weight: 700; line-height: 23px; width: auto; display: inline-block; color: #fff; transition: all .3s; }
.header-sec .header-inner .right_cta a .btn-icon {display:flex; text-decoration: none; transition: opacity .4s .25s, transform .6s .25s; transition-timing-function: cubic-bezier(.1, .75, .25, 1); line-height: 1; margin-left: 10px; }
.header-sec .header-inner .right_cta a .btn-icon img { width: 10px; height: 15px; display: inline-block; object-fit: contain; object-position: center; }
.header-sec .header-inner .right_cta a .btn-icon + .btn-icon { display: inline-flex; order: -2; opacity: 0; transform: translateX(-1em); transition-delay: 0s; margin: 0; }
.header-sec .header-inner .right_cta a:hover { transform: translate3d(0, -2px, 0); box-shadow: 0 12px 28px rgba(0, 0, 0, .12); }
.header-sec .header-inner .right_cta a:hover .btn-txt { transition-delay: .1s; transform: translateX(1em); }
.header-sec .header-inner .right_cta a:hover .btn-icon { opacity: 0;transition: opacity .4s .25s, transform .2s .25s;transform: translateX(10px); }
.header-sec .header-inner .right_cta a:hover .btn-icon + .btn-icon { opacity: 1; transform: translateX(0); transition-delay: .225s; margin: 0; }
.header-sec .header-inner .hs-menu-wrapper > ul > li:last-child { display: none; }
.header.fixed { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; }
.header-sec .header-inner .hs-menu-wrapper > ul > li.active > a { color: #3290CE; }
.header-sec .header-inner .hs-menu-wrapper > ul > li.active-branch > a { color: #3290CE; }
.header-sec .header-inner .hs-menu-wrapper > ul > li.active-branch li.active a { color: #3290CE; }
.header-sec .header-inner .hs-menu-wrapper > ul > li.hs-item-has-children.hover > a { color: #3290CE; }

.header-sec .header-inner .lang_switch { width: auto; display: inline-block; }
.header-sec .header-inner .lang_switch ul {    Z-INDEX: 9999; padding-top: 10px; padding-bottom: 20px; box-shadow: 0 16px 50px rgba(0, 0, 0, .07); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; min-width: 210px; background-color: #fff; width: auto; top: 45px; }
.header-sec .header-inner .lang_switch ul li { width: 100%; display: inline-block; padding: 0; border: none; }
.header-sec .header-inner .lang_switch ul li a { width: 100%; display: inline-block; position: relative; z-index: 1; padding: 13px 18px 13px 54px; margin: 0; font-size: 14px; font-weight: bold; line-height: normal; letter-spacing: normal; text-align: left; color: #00234b; background: transparent; border-radius: 0; }
.header-sec .header-inner .lang_switch ul li a:hover { background: rgba(0, 0, 0, .1); transform: none; box-shadow: none; }
.header-sec .header-inner .lang_switch ul.lang_list_class:before { display: none; }
.header-sec .header-inner .lang_switch ul.lang_list_class:after { top: -30px; border: 17px solid transparent; width: 100%; display: inline-block; left: 0; margin: 0; margin-bottom: -1px; }
.header-sec .header-inner .lang_switch li a:before { content: ''; border-radius: 50%; height: 24px; width: 24px; background-position: center; outline: solid 1px rgba(0, 0, 0, .1); background-repeat: no-repeat; background-size: cover; margin: 0; position: absolute; top: 10px; left: 19px; }
.header-sec .header-inner .lang_switch li a[lang="en"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/english.svg); }
.header-sec .header-inner .lang_switch li a[lang="de"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/dutch.svg); }
.header-sec .header-inner .lang_switch li a[lang="es"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/espanol.svg); }
.header-sec .header-inner .lang_switch li a[lang="fr"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/french.svg); }
.header-sec .header-inner .lang_switch li a[lang="it"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/italion.svg); }
.header-sec .header-inner .lang_switch li a[lang="nl"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/nederlands.svg); }
.header-sec .header-inner .lang_switch li a[lang="pt"]:before, .header-sec .header-inner .lang_switch li a[lang="pt-br"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/portu.svg); }
.header-sec .header-inner .lang_switch li a[lang="ko"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/korian.svg); }
.header-sec .header-inner .lang_switch li a[lang="ja"]:before { background-image: url(https://21581025.fs1.hubspotusercontent-na1.net/hubfs/21581025/cintoo_theme_2025/images/japan.svg); }
.header.fixed .header-sec .header-inner .lang_switch ul li a { color: #2C7DB5; }
.header-sec .lang_switcher_class .globe_class { width: auto; display: inline-block; background: none; }
.header-sec .lang_switcher_class .globe_class > li { width: auto; display: inline-block; }
.header-sec .lang_switcher_class .globe_class > li > a { width: 100%; display: inline-block; position: relative; z-index: 1; padding: 13px 18px 13px 54px; margin: 0; font-size: 14px; font-weight: bold; line-height: normal; letter-spacing: normal; text-align: left; color: #00234b; background: transparent; border-radius: 0; }
.header-sec .lang_switcher_class .globe_class > li > a:after { content: ''; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid #00234b; display: inline-flex; align-items: center; justify-content: center; margin: 0 0 0 6px; vertical-align: middle; }
.header-sec .lang_switcher_class .globe_class > li > a:hover { background: no-repeat; transform: none; box-shadow: none; }


@media(max-width:1440px){
  .header-sec .header-inner { gap: 16px; }
  
  .header-sec .header-inner .hs-menu-wrapper > ul > li > a { padding: 0 9px; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a { padding-right: 16px; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a:after { right: 0; }
  .header-sec .header-inner .logo a img { max-height: 36px; }
  .header { padding: 10px 30px 10px 30px; }
}

@media(max-width:1199px){
  .header-sec .header-inner .logo a img { max-height: 42px; }
  .header-sec .header-inner .right_cta { display: none; }
  .header-sec .header-inner .menu { width: 100%; display: inline-block; position: absolute; top: 10px; left: 0; right: 0; z-index: 9; padding-top: 50px; }
  .header-sec .header-inner .menu .mobile-trigger { top: 6px; right: 20px; border: none; }
  .header { padding: 10px 20px; }
  .header-sec .header-inner .menu .hs-menu-wrapper {display:initial !important;position: absolute; top: calc(100% + 8px); left: 100%; right: 0; width: 100%; }
  .header-sec .header-inner .menu .hs-menu-wrapper > ul {left: 0px;position: absolute;width: 100%; height:100vh;flex-direction: column; background: #3290ce; padding: 0 20px 20px 20px; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li { width: 100%; display: inline-block; border-top: 1px solid #F2F2F236; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li > a { width: 100% !important; display: inline-block; padding: 12px 0; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a { padding-right: 0; }
  .header-sec .header-inner .menu .hs-menu-wrapper > ul * { color: #fff; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li .child-trigger { width: 50px !important; height: 50px !important; min-width: 50px !important; display: flex !important; align-items: center; justify-content: center; border-left: none; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a:after { display: none; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li .child-trigger i::after, .header-sec .header-inner .hs-menu-wrapper > ul > li .child-trigger i::before { background: #ffffff; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li .child-trigger i { top: 0; background: #ffffff; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper { background: transparent; padding: 0; border-top: 1px solid #F2F2F236; box-shadow: none; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper li { border: none; background: transparent; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper li a { color: #fff; padding: 12px 0; font-size: 13px; text-indent: 20px; }
  .header-sec .header-inner .menu .mobile-trigger i { width: 20px; }
  .header-sec .header-inner .menu .mobile-trigger i:before, .mobile-trigger i:after { width: 26px; height: 2px; }
  .header-sec .header-inner .menu .mobile-trigger i:before { top: -7px; }
  .header-sec .header-inner .menu .mobile-trigger i:after { top: 7px; }

  body.mobile-open .header-sec .header-inner .menu .mobile-trigger i { background: transparent; }
  body.mobile-open .header-sec .header-inner .menu .mobile-trigger i:before { top: 0; transform: rotate(45deg); }
  body.mobile-open .header-sec .header-inner .menu .mobile-trigger i:after { top: 0; transform: rotate(-45deg); }

  .header-sec .header-inner .hs-menu-wrapper > ul > li:last-child { display: inline-block; border: none; margin-top: 16px; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li:last-child a { background: #19275c; width:100% !important; display: inline-block; margin: 0 auto; border-radius: 50px; font-size: 13px; padding: 10px 20px; position: relative; z-index: 1; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li:last-child a:after { content: "\f061"; position: absolute; right: 20px; font-family: 'Font Awesome 5 Free'; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li > a:hover,
  .header-sec .header-inner .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper li a:hover { color: #fff; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li.active > a { color: #fff; }

  .header-sec .header-inner .hs-menu-wrapper > ul > li.active-branch > a { color: #ffffff; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li.active-branch li.active a { color: #ffffff; }
  .header-sec .header-inner .hs-menu-wrapper > ul > li.hs-item-has-children.hover > a { color: #ffffff; }


  /*  language Switcher  */
  .header-sec .header-inner .lang_switch { display: none; }
  body.mobile-open .header-sec .header-inner .lang_switch { width: 100%; display: inline-block; padding: 0 20px 0 20px; background: #3290ce; }
  .header-sec .header-inner .menu .lang_switcher_class { width: 100%; margin-bottom: 10px; }
  .header-sec .lang_switcher_class .globe_class { width: 100%; height: auto; margin: 20px 0 0 0; }
  .header-sec .lang_switcher_class .globe_class > li { width: 100%; display: inline-block; border: solid 1px #ffffff82 !important; border-radius: 50px; padding: 0; color: #fff !important; background-color: #fff3; }
  .header-sec .lang_switcher_class .globe_class > li > a { pointer-events: none; padding: 10px 18px 10px 54px; color: #ffffff; }
  .header-sec .header-inner .menu .hs-menu-wrapper { top: 100%; }
  /* Hide menu on mobile */
  .custom-menu-primary .hs-menu-wrapper{
    /*   .custom-menu-primary.js-enabled .hs-menu-children-wrapper */
    left:100%;
    transition:all ease 0.3s;
    display:initial; 
  }  

  /* Hide menu on mobile */
  body.mobile-open .header-sec .header-inner .menu .hs-menu-wrapper{
    left:0;
    transition:all ease 0.3s;
    display:initial;
  }
  body.mobile-open .custom-menu-primary .hs-menu-children-wrapper {
    display:initial;  
  }
  .header-sec .header-inner .hs-menu-wrapper > ul > li:first-child { border-top: none; }
  .header-sec .header-inner .lang_switch li a:before { top: 6px; }
  .header-sec .lang_switcher_class .globe_class > li > a:after { right: 20px; position: absolute; top: 50%; transform: translateY(-50%); border-top: 5px solid #ffffff; }
  .header-sec .header-inner .lang_switch ul { width: 100%; top: 100%; padding-bottom: 0; position: relative; }
  .header-sec .header-inner .lang_switch .globe_class:hover .lang_list_class { display: none; }
  .header-sec .header-inner .lang_switch ul.lang_list_class:after { display: none; }

  .header.fixed .header-sec .header-inner .lang_switch ul li a, .header-sec .header-inner .lang_switch ul li a { padding: 10px 10px 10px 54px; color: #ffffff; }
  .header-sec .header-inner .lang_switch ul { box-shadow: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; min-width: 100%; background-color: transparent; }
  .header-sec .header-inner .lang_switch ul li { background: transparent; }
}

/* Social Media */
.side-social-link { position: fixed; z-index: 999; top: 240px; left: 33px; display: flex; align-items: center; flex-direction: column; gap: 10px; }
.side-social-link .icon-1 { width: 100%; height: 100%; border-radius: 50%; }
.side-social-link .icon-1 a.soc-icon { line-height: 0; color: #fff; background: #03234b; color: #fff; border-radius: 50%; padding: 7.5px; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.side-social-link .icon-1 a.soc-icon img{width:15px;height:15px;object-fit:contain;}
.side-social-link .icon-1 a.soc-icon:hover, 
.side-social-link .icon-1 a.soc-icon:focus { background: #3290CE; animation-name: social-icon-hover; animation-duration: 1s; animation-timing-function: linear; animation-iteration-count: infinite; }

@media (max-width: 1024px) {
  .side-social-link { display: none; }
}

@keyframes social-icon-hover {
  25% { transform: scale(1.1); }
  75% { transform: scale(0.9); }
}

/* Bottom Button */
.bottom-sticky-btn { display: none; }
.bottom-sticky-btn a span.btn-icon { height: 16px; }

@media (max-width: 768px) {
  .header-sec .header-inner .hs-menu-wrapper > ul{display:none;}
  .bottom-sticky-btn { display: flex; justify-content: center; align-items: center; width: 100%; position: fixed; bottom: 26px; right: 0; left: 0; z-index: -1; opacity:0; transition: 0.3s ease-in-out; }
  .bottom-sticky-btn a.last-btn { line-height: 1; background-color: #3290CE; color: #fff; padding: 12px 17px; border-radius: 40px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; font-weight: 500; border: 2px solid transparent; }
  .bottom-sticky-btn a.last-btn:hover,
  .bottom-sticky-btn a.last-btn:focus { background-color: #00234B; box-shadow: 0 12px 28px rgba(0, 0, 0, .12); border: 2px solid #fff; }
  .bottom-sticky-btn.fixed-cta { opacity: 1; z-index: 9; }
  {# partners page #}
}



/* ================================================================================================= */


