.site-header-section .inc-logo a { display: inline-block; width: auto; }
.fancybox-content {width: 35%;}
.popup-wrap {align-items: flex-start;display: flex;justify-content: flex-start;width: 100%;}
.popup-wrap form {background: transparent;}
.popup-wrap form input[type=submit] {background: #68ac40;border: 3px solid #68ac40;box-sizing: border-box;color: #fff;cursor: pointer;display: inline-block;font-size: 16px;font-weight: 700;height: 100%;line-height: 24px;padding: 8px 20px;text-align: center;text-transform: uppercase;width: auto;}
.popup-wrap form input[type=submit]:hover {background: #fff;border: 3px solid #68ac40;color: #68ac40;}
.popup-form {display: none;}

/* ==========================================================================
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:768px) {
  .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: 767px){


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

/* .site-header-section .header-wrap .container { width: 1200px; } */
header.header { width: 100%; display: inline-block; }
header.header .site-header-section { width: 100%; display: inline-block; }
.site-header-section .sec-inner { width: 100%; display: inline-block; }
.site-header-section .header-stript { width: 100%; display: inline-block; background-color: #68ac40; }
.site-header-section .stript-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.site-header-section .support { width: auto; display: inline-block; margin: 0; }
.site-header-section .support ul { width: auto; padding: 0; margin: 0; display: flex; align-items: center; justify-content: flex-start; }
.site-header-section .support ul li { width: auto; display: inline-block; position: relative; z-index: 1; }
.site-header-section .support ul li a { width: auto; display: inline-block; font-size: 13px; line-height: 31.5px; color: rgb(255, 255, 255); font-weight: 400; }
.site-header-section .support ul li + li { padding-left: 15px; }
.site-header-section .support ul li + li:after { content: ''; position: absolute; top: 10px; left: 7px; height: 12px; width: 2px; background: #fff; }
.site-header-section .support ul li a i { padding-right: 3px; }
.site-header-section .social-media { width: auto; display: inline-block; margin: 0; }
.site-header-section .social-media ul { width: auto; display: flex; align-items: center; justify-content: center; padding: 0; margin: 0; }
.site-header-section .social-media ul li { width: auto; display: inline-block; margin-right: 25px; margin-left: 5px; }
.site-header-section .social-media ul li a { width: auto; display: inline-block; }
.site-header-section .social-media ul li a svg { width: 18px; height: 18px; fill: #fff; }
.site-header-section .social-media ul li:last-child { margin-right: 0; }

.site-header-section .header-wrap { width: 100%; display: inline-block; background-color: #fff; box-shadow: 0 2px 12px rgba(0, 0, 0, .2); padding: 20px 0 10px; z-index: 50; transition: 0.3s ease-in-out; }
.site-header-section .header-main { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.site-header-section .header-inner { width: 100%; display: inline-block; }
.site-header-section .logo { width:140px; display: inline-block; margin: 0; }
.site-header-section .logo a { width: auto; display: inline-block; }
.site-header-section .logo a img { width:100%; height: auto; object-fit: contain; object-position: center;     transition: 0.3s ease-in-out; }
.site-header-section .mainmenu { width: auto; display: inline-block; padding: 0 15px; margin: 0; }
.site-header-section .inc-logo { min-width:226px; display: inline-block; margin: 0; }
.site-header-section .inc-logo img { vertical-align: top; width: 100%; display: inline-block; max-width:226px; object-fit: contain; object-position: center; }
.site-header-section .header-main .chicago-logo { width: auto; display: inline-block; margin: 0; }
.site-header-section .header-main .chicago-logo a { width: auto; display: inline-block; }
.site-header-section .header-main .chicago-logo a img { width: 100%; max-width: 64px; display: inline-block; object-fit: contain; vertical-align: top; object-position: center; }
.site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children { position: relative; z-index: 1; }
.site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:after { position: absolute; content: ''; right: -13px; top: 21px; background-image: url(https://1933828.fs1.hubspotusercontent-na1.net/hubfs/1933828/images_2025/down-arrow.png); width: 11px; height: 7px; background-size: contain; background-repeat: no-repeat; background-position: center; transition: all 0.3s; display: block; z-index: -1; }
.site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li:hover.hs-item-has-children:after { transform: rotate(180deg); }



.site-header-section .custom-menu-primary .hs-menu-wrapper > ul { width: auto; }
.site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li { width: auto; display: inline-block; margin-right:45px; }
.site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li a { border-bottom: 0px solid transparent !important; -webkit-transition: all .15s ease-in-out; -o-transition: all .15s ease-in-out; transition: all .15s ease-in-out; color: #000; padding: 15px 0; font-size: 18px; line-height: 100%; font-weight: 600; display: inline-block; text-decoration: none; }
/* .site-header-section .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li.active a, .site-header-section .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li a:hover { border-bottom: 3px solid #68ac40 !important; padding: 15px 0 12px 0; } */
.site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li:last-child { margin-right: 0; }

.site-header-section .hs-menu-wrapper.flyouts .hs-menu-children-wrapper { background-color: #fff; z-index: 99; min-width: 200px; }
.site-header-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a.child-trigger { display: none !important; }
.site-header-section .hs-menu-wrapper > ul ul li { width: 100%; display: inline-block; text-align: left; padding: 0 10px; -webkit-transition: all .10s ease-in-out; -o-transition: all .10s ease-in-out; transition: all .10s ease-in-out;  border-left: 3px solid transparent; }
.site-header-section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { width: 216px !important; display: inline-block; padding: 12px 0; border-bottom: 0 solid transparent; -webkit-transition: all .10s ease-in-out; -o-transition: all .10s ease-in-out; transition: all .10s ease-in-out; white-space: nowrap; overflow: hidden !important; text-overflow: ellipsis; }      
.site-header-section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li:hover ul.hs-menu-children-wrapper { left: 100%; top: 0; }
/* .site-header-section .hs-menu-wrapper > ul ul li:hover { border-left: 3px solid #68ac40; } */
.site-header-section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover { border-bottom: 3px solid transparent; }
.site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li:last-child:hover ul.hs-menu-children-wrapper { right: 0; left: unset !important; }
.site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li:last-child:hover ul.hs-menu-children-wrapper li.hs-item-has-children ul { left: unset !important; right: 100%; }  
.site-header-section .header-wrap.sticky { position: fixed; top: 0; left: 0; right: 0; padding: 9px 0 9px; }
.site-header-section .header-wrap.sticky .logo a img { width: auto !important; height: 60px !important; }

.site-header-section .stript-inner .lang-switch { width: auto; margin-right: 0; }
.site-header-section .stript-inner .lang-switch ul { display: flex; flex-wrap: inherit; align-items: center; justify-content: end; list-style-type: none; padding: 0; margin: 0; }
.site-header-section .stript-inner .lang-switch ul li { margin-right: 25px; }
.site-header-section .stript-inner .lang-switch ul li a { display: flex; flex-wrap: wrap; }
.site-header-section .stript-inner .lang-switch ul li a img { width: 24px; height: auto; display: flex; flex-wrap: wrap; object-fit: contain; object-position: center; }

.site-header-section .header-main .cta { display: inline-block; vertical-align: top; margin: 0 5px;width:auto;}
.site-header-section .header-main .cta a { align-items: center; background: #68ac40; border: 3px solid #68ac40; box-sizing: border-box; color: #fff; display: flex; font-size: 18px; font-weight: 600; justify-content: center; margin: 0; max-width: fit-content; padding: 6px 20px; text-align: center; width: max-content; line-height: 100%; }
.site-header-section .header-main .cta a:hover { background: transparent; color: #68ac40; }


.site-header-section .header-main .enx-logo { width: auto; display: inline-block; margin: 0; }
.site-header-section .header-main .enx-logo a { width: auto; display: inline-block; }
.site-header-section .header-main .enx-logo a img { width: 100%; max-width: 90px; display: inline-block; object-fit: contain; vertical-align: top; object-position: center; }


@media (max-width: 1584px){
  .fancybox-content {width: 50%;}
}
@media (max-width:1199px){
  .fancybox-content {width: 60%;}
}



@media(max-width:1169px){
  header.header .site-header-section .container { width: 100%; }
  /*   .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li a { font-size: 13px; line-height: 23px; } */
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul { width: max-content;  justify-content: flex-end; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li { margin-left: 5px; margin-right: 6px; }
  .site-header-section .mainmenu { width: calc(100% - 15% - 140px); }
}

@media(max-width:991px){
  .site-header-section .logo { width: 100px; }
  .site-header-section .mainmenu { width: calc(100% - 15% - 100px); padding: 0 5px;  text-align: center; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li { margin-right: 6px; margin-left: 0; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li a { font-size: 10.6px; line-height: 23px; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul { width: 100%; justify-content: flex-end; }
  .site-header-section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { padding: 6px 0; }
  .site-header-section .header-main .cta a { font-size: 10.6px; }
  .fancybox-content {width: 70%;}
  .fancybox-content h1 {font-size: 30px;}
  .site-header-section .header-main .chicago-logo a img { max-width: 57px; }
}
@media(max-width:800px){  
  .site-header-section .header-main .chicago-logo { margin: 0 0 0 4px; }
  .site-header-section .header-main .chicago-logo a img { max-width: 45px; }
}
@media(max-width:767px){
  .site-header-section .stript-inner .lang-switch ul li:nth-child(2) { margin-right: 5px; }
  .site-header-section .social-media {display: none;}
  .site-header-section .support {display: none;}
  .site-header-section .header-stript{ display:block; }
  .site-header-section .inc-logo { position: absolute; left: unset; right: 65px; width: 130px; }
  .site-header-section .logo { width: 120px; }
  .site-header-section .logo a img { height: 60px !important; }
  .site-header-section .header-wrap { padding: 10px 0 10px; }
  .site-header-section .header-main .mobile-trigger { width: 44px; height: 40px; border: none; background: #68ac40; top: -18px; right: 15px; }
  .site-header-section .mainmenu .hs-menu-wrapper { position: absolute; top: 40px; left: 0; right: 0; width: 100% !important; background: #fff; z-index: 99; }
  .site-header-section .mainmenu { width: 100%; display: inline-block; position: absolute; left: 0; right: 0; background: #fff; }

  .site-header-section .header-main .mobile-trigger span { width: 24px; height: 3px; background-color: #ffffff; display: inline-block; position: relative; z-index: 1; }
  .site-header-section .header-main .mobile-trigger span:after { content: ''; width: 24px; height: 3px; background-color: #ffffff; display: inline-block; position: absolute; top: 7px; }
  .site-header-section .header-main .mobile-trigger span:before { content: ''; width: 24px; height: 3px; background-color: #ffffff; display: inline-block; position: absolute; top: -7px; }
  .mobile-open .site-header-section .header-main .mobile-trigger span { background: transparent; }
  .mobile-open .site-header-section .header-main .mobile-trigger span:before { transform: rotate(45deg); top: 0; }
  .mobile-open .site-header-section .header-main .mobile-trigger span:after { transform: rotate(-45deg); top: 0; }

  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li { width: 100%; display: inline-block; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li a { width: 100% !important; display: inline-block; padding: 9px 16px; font-size: 12px; line-height: 22px; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li a.child-trigger { background: #fff; width: 50px !important; position: absolute; top: 0; right: 10px; height: 40px !important; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li a.child-trigger span { width: 10px; height: 1px; background-color: #343434; display: block; position: relative; top: 50%; margin: 0 auto !important; -webkit-transition-duration: .2s; -moz-transition-duration: .2s; transition-duration: .2s; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li a.child-trigger span:after { -webkit-transform: rotate(-90deg); -ms-transform: rotate(-90deg); transform: rotate(-90deg); -webkit-transition-duration: .2s; -moz-transition-duration: .2s; transition-duration: .2s; width: 10px; height: 1px; background-color: #343434; display: block; position: absolute; content: ''; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li.active a, .site-header-section .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li a:hover { border: none !important; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper > ul > li a.child-trigger.child-open span:after { -webkit-transform: rotate(-180deg); -ms-transform: rotate(-180deg); transform: rotate(-180deg); -webkit-transition-duration: .2s; -moz-transition-duration: .2s; transition-duration: .2s; }
  .site-header-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a.child-trigger { background: #fff; width: 50px !important; position: absolute; top: 0; right: 20px; height: 35px !important; display: inline-block !important; }
  .site-header-section .hs-menu-wrapper > ul ul li { border: none; }
  .site-header-section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { width: 100% !important; }
  .site-header-section .hs-menu-wrapper > ul ul li:hover { border: none; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li.active a{padding:9px 16px;}

  .site-header-section .inc-logo { display: none; }
  .site-header-section .header-main .chicago-logo { display: none; }
  .site-header-section .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li a:hover { color: #68ac40; padding: 9px 16px; }
  .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li.active a { color: #68ac40; }
  .fancybox-content {width: 75%;padding:20px !important;}
  .fancybox-content h1 {font-size: 28px;}

  .site-header-section .header-main .cta { display: inline-block; position: relative; right: 50px; top: 2px; }
  .site-header-section .header-main .cta a { padding: 11.71px 5px; }

  .site-header-section .stript-inner .lang-switch ul li a { height: 48px; width: 48px; }
  .site-header-section .stript-inner .lang-switch { margin-bottom: -24px; }
  .site-header-section .header-main .enx-logo { position: relative; right: 50px; }
  .site-header-section .stript-inner .lang-switch ul{margin-bottom:22px;}
}

@media(max-width:575px){
  .fancybox-content {width: 90%;}
}
@media(max-width:480px){
 .site-header-section .header-main .cta {right: 20px;}
  .site-header-section .header-main .enx-logo a img{max-width:80px;} 
}
