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


  /* 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: var(--green);
    background-color: var(--green);
    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:var(--gray-mid); /* 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 */
  }
}





header.header { width: 100%; display: inline-block; }
.header-sec { width: 100%; display: inline-block; }
.header-sec .header-inner { width: 100%; display: inline-block; }
.header-sec .header-top { width: 100%; display: inline-block; padding: 16px 0; background: #fff; }
.header-sec .header-top .top { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header-sec .header-top .logo { width: auto; display: inline-block; margin: 0; }
.header-sec .header-top .logo a { width: auto; display: inline-block; }
.header-sec .header-top .logo a img { display: inline-block; width: 112px; object-fit: contain; object-position: center; vertical-align: middle; }
.header-sec .header-top .right { width: auto; display: inline-block; margin: 0; }
.header-sec .header-top .right-inner { width: auto; display: flex; align-items: center; justify-content: center; gap: 36px; }
.header-sec .header-top .mobile-menu { display: none; }
.header-sec .header-top .col a { width: max-content; display: flex; align-items: center; justify-content: center; gap: 13px; }
.header-sec .header-top .col { width: auto; display: inline-block; }
.header-sec .header-top .col .icon { width: auto; display: inline-block; height: auto; line-height: 0; cursor: pointer; }
.header-sec .header-top .col .icon svg { width: auto; display: inline-block; }
.header-sec .header-top .col .label { width: auto; display: inline-block; color: var(--green); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.header-sec .header-top .col .label span { width: auto; display: inline-block; color: var(--gray-mid); }
.header-sec .header-top .seach.col { line-height: 0; }
.header-sec .header-bottom { width: 100%; display: inline-block; padding: 12px 0 12px 0; }
.header-sec .header-bottom .bottom { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.header-sec .header-bottom .bottom .cta { width: auto; display: inline-block; margin: 0; }
.header-sec .header-bottom .bottom .cta ul { width: auto; display: flex; align-items: center; justify-content: center; margin: 0; padding: 0; gap: 20px; }
.header-sec .header-bottom .bottom .cta ul li { width: auto; display: inline-block; }
.header-sec .header-bottom .bottom .cta ul li a { width: max-content; display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; line-height: 1em; letter-spacing: .32px; color: var(--white); background-color: transparent; border-style: solid; border-width: 1px 1px 1px 1px; border-radius: 4px 4px 4px 4px; padding: 13px 15px 13px 15px; text-align: center; }
.header-sec .header-bottom .bottom .cta ul li:last-child a { background-color: var(--purple); border-color: var(--purple); color: var(--white); }
.header-sec .header-bottom .bottom .menu { width: auto; display: inline-block; margin: 0; }
.header-sec .header-bottom .bottom .menu ul li { width: auto; display: inline-block; margin: 0; }
.header-sec .header-bottom .bottom .menu ul li a { width: auto; display: inline-block; color: var(--white); padding: 8px; font-size: 10px; font-weight: 700; text-transform: uppercase; font-style: normal; line-height: 1em; letter-spacing: .32px; transition: .4s; }
.header-sec .header-bottom .bottom .menu ul li a:hover { color: var(--gray-mid); }

body.search-open { overflow: hidden; }
.search-box .close { position: absolute; top: 20px; right: 20px; background: #000; font-size: 16px; font-weight: 700; cursor: pointer; color: #fff; padding: 16px 20px; border-radius: 50%; outline: none; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid #fff; }
.search-box .close:hover { background: #000; border-radius: 50%; border: 1px solid #000; }
.search-box.search-elem { margin: 0; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 100; background: rgb(0 0 0 / .87); transition: all 0.3s ease-in-out; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0); }
.search-box.search-elem .inner { width: 100%; margin: 0 auto; position: relative; top: 50%; transform: translateY(-50%); max-width: 830px; padding: 0 15px; }
.search-box.search-elem label { color: white; font-weight: 300; font-family: 'Roboto', 'Helvetica Neue', sans-serif; }
.search-box.search-elem button.submit { outline: none; position: absolute; top: 0; right: 0; height: 70px; width: 70px; padding: 0; background: transparent; font-size: 16px; color: white; border: none; }
.search-box.search-elem button.submit[disabled] { background: #ccc; color: #32213A; }
.search-box.search-elem input[type="text"] { padding: 20px; height: 72px; font-size: 32px; font-family: 'Roboto', 'Helvetica Neue', sans-serif; font-weight: 300; border: none; border-bottom: solid 2px #999; transition: border 0.3s; border-radius: 0; }
.search-box.search-elem input[type="text"]:focus { border-bottom: solid 2px #00A896; box-shadow: none; }
.search-box.search-elem label.placeholder { position: absolute; top: 10px; left: 32px; font-size: 32px; font-weight: 300; font-family: 'Roboto', 'Helvetica Neue', sans-serif; color: #999; transition: all 0.3s; }
.search-box.search-elem label.placeholder.move-up { top: -25px; color: white; font-size: 16px; }
.search-box.search-elem.search-open { background-color: rgb(0 0 0 / .87); padding-bottom: 100%; border-radius: 100%; overflow: hidden; -webkit-animation: menu-animation .5s ease-out forwards; animation: menu-animation .5s ease-out forwards; }
.search-box .search-btn { text-transform: uppercase; font-family: 'Roboto', 'Helvetica Neue', sans-serif; font-size: 14px; padding: 0 10px; display: inline-block; }
.search-box .search-btn:hover { color: #00A896; }
.search-box.search-elem .inner input { height: 70px; background-color: #fff0; border-radius: 50px; border: 2px solid #fff; color: #fff; padding: 0 30px; width: 100%; -webkit-appearance: textfield; outline-offset: -2px; transition: all .3s; font-size: 16px; line-height: 1.5; margin: 0; }
.search-box .hs-search-field__form { background: transparent; opacity: 0; -webkit-transition: all 1s ease .8s; transition: all 1s ease .8s; -webkit-transform: translateY(-500px); transform: translateY(-500px); }
.search-box.search-elem .inner input { height: 70px; background-color: #fff0; border-radius: 50px; border: 2px solid #fff; color: #fff; padding: 0 70px 0 30px; width: 100%; -webkit-appearance: textfield; outline-offset: -2px; transition: all .3s; font-size: 16px; line-height: 1.5; margin: 0; }
.search-box .hs-search-field__form { background: transparent; }
.search-box input[type="search"]::-webkit-search-decoration, .search-box input[type="search"]::-webkit-search-cancel-button, .search-box input[type="search"]::-webkit-search-results-button, .search-box input[type="search"]::-webkit-search-results-decoration { display: none; }
.search-box.search-elem.search-open form { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }

@keyframes menu-animation {
    0% { opacity: 0; -webkit-transform: scale(.04) translateY(300%); transform: scale(.04) translateY(300%); }
    40% { -webkit-transform: scale(.04) translateY(0); transform: scale(.04) translateY(0); -webkit-transition: ease-out; transition: ease-out; }
    40% { -webkit-transform: scale(.04) translateY(0); transform: scale(.04) translateY(0); }
    60% { opacity: 1; -webkit-transform: scale(.02) translateY(0); transform: scale(.02) translateY(0); }
    61% { opacity: 1; -webkit-transform: scale(.04) translateY(0); transform: scale(.04) translateY(0); }
    99.9% { opacity: 1; height: 0; padding-bottom: 100%; border-radius: 100%; }
    100% { opacity: 1; -webkit-transform: scale(1) translateY(0); transform: scale(1) translateY(0); height: 100%; padding-bottom: 0; border-radius: 0; }
}

@media(max-width:1179px) {
	.header-sec .header-bottom .bottom .menu ul li a { padding: 8px 5px; }
	.header-sec .header-bottom .bottom .cta ul { gap: 5px; }
	.header-sec .header-bottom .bottom .menu ul li:first-child a { padding-left: 0; }
	.header-sec .header-bottom .bottom .cta ul li a { padding: 13px 8px; }
}

@media(max-width:1024px) {
	.header-sec .header-bottom .bottom .menu { display: none; }
	.header-sec .header-top .mobile-menu { width: 100%; display: inline-block; }
	.header-sec .header-top .mobile-menu ul { width: 100%; display: inline-block; margin: 0; padding: 0; }
	.header-sec .header-top .mobile-menu ul li { width: 100%; display: inline-block; border: none; }
	.header-sec .header-top .mobile-menu ul li a { font-size: 12px; line-height: 1em; font-weight: 700; text-transform: uppercase; font-style: normal; color: var(--green); padding: 10px 20px; }
	.header-sec .header-bottom .bottom { justify-content: center; }
	.header-sec .header-bottom .bottom .cta ul { gap: 8px; flex-wrap: wrap; }
	.header-sec .mobile-trigger { top: -56px; right: 0; border: none; }
	.header-sec .header-top .right { padding-right: 60px; }
	.header-sec .header-top .top { position: relative; z-index: 1; }
	.header-sec .header-top .mobile-menu { width: 100%; display: inline-block; position: absolute; left: 0; right: 0; top: calc(100% + 16px); background: #FFFFFFF0; }
	.header-sec .header-top .mobile-menu .menu.custom-menu-primary { padding: 0; margin: 0; }
	.mobile-open .header-sec .mobile-trigger i { background: transparent; }
	.mobile-open .header-sec .mobile-trigger i:before { transform: rotate(45deg); top: 0; }
	.mobile-open .header-sec .mobile-trigger i:after { transform: rotate(-45deg); top: 0; }
}

@media(max-width:767px) {
	.header-sec .header-top .col .label { display: none; }
	.header-sec .header-top .mobile-menu { width: calc(100% + 30px); left: -15px; }
	.header-sec .mobile-trigger { right: 15px; }
}

@media(max-width:480px) {
	.header-sec .header-top .top { gap: 16px; }
	.header-sec .header-top .right-inner { gap: 20px; }
	.header-sec .header-top .right { padding-right: 50px; }
}

