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


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




header.header { width: 100%; display: inline-block; position: fixed; top: 0; left: 0; right: 0; background-color: rgba(245, 243, 235, 0.9); z-index: 99999; padding: 0 30px; -webkit-transition: background-color .4s, color .4s, opacity .4s ease-in-out, -webkit-transform .4s; transition: background-color .4s, color .4s, opacity .4s ease-in-out, -webkit-transform .4s; transition: background-color .4s, color .4s, transform .4s, opacity .4s ease-in-out; transition: background-color .4s, color .4s, transform .4s, opacity .4s ease-in-out, -webkit-transform .4s; vertical-align: top; }
.header-sec { width: 100%; display: inline-block; }
.header-sec .header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.header-sec .logo { width: auto; display: inline-block; margin: 0; }
.header-sec .logo a { width: auto; display: inline-block; }
.header-sec .logo a img { width: 290.89px; -webkit-transition: all .4s ease-in-out; transition: all .4s ease-in-out; margin-bottom: 0; display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); }
.header-sec .menu-wrap { width: auto; display: inline-block; margin: 0; }
.header-sec .menu-wrap .shop-card { display: none; }
.header-sec .menu .hs-menu-wrapper> ul { width: 100%; display: flex; align-items: flex-start; justify-content: flex-end; padding-top: 33px; vertical-align: top; -webkit-transition: 0.4s ease-in-out; transition: 0.4s ease-in-out; }
.header-sec .menu .hs-menu-wrapper> ul> li { width: auto; display: flex; align-items: flex-start; justify-content: flex-start; vertical-align: top; padding: 0 25.5px 0 0; }
.header-sec .menu .hs-menu-wrapper> ul> li:last-child { padding-right: 0; }
.header-sec .menu .hs-menu-wrapper> ul> li> a { width: auto; display: inline-block; padding-bottom: 33px; font-weight: bold; font-style: normal; text-transform: none; text-decoration: none; font-size: 16px; line-height: 14px; color: #071e22; -webkit-transition: opacity .4s ease-in-out, background-color .4s ease-in-out; transition: opacity .4s ease-in-out, background-color .4s ease-in-out; vertical-align: top; }
.header-sec .menu-wrap .menu { width: 100%; display: inline-block; line-height: 0; vertical-align: top; }
.header-sec .menu .hs-menu-wrapper> ul> li> a i { width: 26px; display: inline-block; vertical-align: top; line-height: 14px; font-size: 18px; margin-right: 5px; }
.header-sec .menu .hs-menu-wrapper> ul> li .child-trigger { width: auto; display: inline-block; line-height: 14px; padding-left: 10px; }
.header-sec .menu .hs-menu-wrapper> ul> li .child-trigger i { font-size: 14px; font-weight: bold; }
.header-sec .menu .hs-menu-wrapper> ul> li ul.hs-menu-children-wrapper { width: 300px; background-color: #f5f3eb; padding: 20px 0; z-index: 9999; -webkit-transition: none; transition: none; border-top: 3px solid #969640; box-shadow: 0 2px 5px rgba(0, 0, 0, .1); -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, .1); -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .1); text-align: left; }
.header-sec .menu .hs-menu-wrapper> ul> li ul.hs-menu-children-wrapper li { width: 100%; display: inline-block; padding: 0 20px; margin: 0; font-size: 14px; line-height: 2em; }
.header-sec .menu .hs-menu-wrapper> ul> li ul.hs-menu-children-wrapper li a { width: 260px !important; color: #0c2a31; padding: 6px 20px; font-size: 16px; display: inline-block; white-space: normal; }
.header-sec .menu .hs-menu-wrapper> ul> li ul.hs-menu-children-wrapper li a:hover { background-color: rgba(0, 0, 0, .03); opacity: .7; }
.header-sec .menu .hs-menu-wrapper> ul> li> a:hover { opacity: .7; }
header.header.sticky { background-color: #fff; }
header.header.sticky .header-sec .menu .hs-menu-wrapper> ul { padding-top: 31px; }
header.header.sticky .header-sec .menu .hs-menu-wrapper> ul> li> a { color: #0c2a31; padding-bottom: 31px; -webkit-transition: 0.4s ease-in-out; transition: 0.4s ease-in-out; }
header.header.sticky .header-sec .logo a img { width: 276.36px; }
header.header.sticky .header-sec { -webkit-transition: 0.4s ease-in-out; transition: 0.4s ease-in-out; }

@media(max-width:1199px) {
  .header-sec .menu .hs-menu-wrapper> ul> li { padding: 0 15px 0 0; margin: 0; }
  .header-sec .logo a img, header.header.sticky .header-sec .logo a img { width: 210px; }
  .header-sec .menu .hs-menu-wrapper> ul> li> a i { margin: 0; }
}

@media(max-width:980px) {
  header.header { padding: 0; }
  .header-sec .header-inner { max-width: 80%; gap: 0; position: relative; z-index: 1; padding: 24px 0; }
  .header-sec .menu-wrap .shop-card { width: auto; display: inline-block; }
  .header-sec .menu-wrap { width: 100%; display: inline-block; position: absolute; z-index: 1; line-height: 0; left: 0; right: 0; top: 100%; }
  .header-sec .menu-wrap .shop-card { width: auto; display: inline-block; position: absolute; top: -48px; right: 48px; }
  .header-sec .menu-wrap .shop-card a { width: 18px; display: inline-block; }
  .header-sec .menu-wrap .shop-card a i { font-size: 18px; }
  .header-sec .menu-wrap .menu { padding: 0; margin: 0; }
  .header-sec .menu-wrap .menu .mobile-trigger { top: -40px; border: none; padding: 0; }
  .header-sec .menu-wrap .menu .hs-menu-wrapper { position: absolute; left: 0; right: 0; top: 100%; background: #fff; }
  .header-sec .menu .hs-menu-wrapper> ul { flex-wrap: wrap; flex-wrap: wrap; padding: 5%; background: #fff; width: 100%; border-top: 3px solid #2e5077; box-shadow: 0 2px 5px rgba(0, 0, 0, .1); -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, .1); -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .1); }
  .header-sec .menu .hs-menu-wrapper> ul> li { width: 100%; padding: 0; flex-wrap: wrap; }
  .header-sec .menu .hs-menu-wrapper> ul> li> a { width: 100% !important; position: relative; z-index: 1; border-bottom: 1px solid rgba(0, 0, 0, .03); padding: 10px 5%; display: block; color: #071e22; font-size: 14px; -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; transition: opacity .2s ease-in-out, background-color .2s ease-in-out; }
  .header-sec .menu .hs-menu-wrapper> ul> li:last-child { display: none; }
  .header-sec .menu .hs-menu-wrapper> ul> li> a { border-bottom: 1px solid rgba(0, 0, 0, .03); padding: 10px 5%; display: block; color: #071e22; font-size: 14px; -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; transition: opacity .2s ease-in-out, background-color .2s ease-in-out; }
  .header-sec .menu .hs-menu-wrapper> ul> li ul.hs-menu-children-wrapper { width: 100%; display: inline-block !important; padding: 0 0 0 10px; background: #fff; border: none; box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; }
  .header-sec .menu .hs-menu-wrapper> ul> li .child-trigger { display: none !important; }
  .header-sec .menu .hs-menu-wrapper> ul> li ul.hs-menu-children-wrapper li { padding-left: 5%; padding-right: 0; line-height: 0; border: none; vertical-align: top; }
  .header-sec .menu .hs-menu-wrapper> ul> li ul.hs-menu-children-wrapper li a { color: #071e22; border-bottom: 1px solid rgba(0, 0, 0, .03); padding: 10px 5%; display: block; font-size: 14px; line-height: 23px; -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; transition: opacity .2s ease-in-out, background-color .2s ease-in-out; width: 100% !important; text-indent: 0; }
  .header-sec .menu .hs-menu-wrapper> ul> li.hs-item-has-children> a { font-weight: 700; background-color: rgba(0, 0, 0, .03); }
  header.header.sticky .header-sec .menu .hs-menu-wrapper> ul { padding: 5%;}
  header.header.sticky .header-sec .menu .hs-menu-wrapper> ul> li> a { padding: 10px 5%; color: #071e22; -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; transition: opacity .2s ease-in-out, background-color .2s ease-in-out; }
}

@media(max-width:767px) { }
