 .main-menu, .courtesy-menu {
     display: none !important;
   }
   .mobile-menu {
     display: block;
     overflow: auto;
     margin: 0 !important;
     position: fixed;
     top: 0;
     bottom: 0;
     left: 0;
     height: 100vh;
     width: 100%;
     max-width: 300px;
     background: var(--white);
     z-index: 2010
     transform: translateX(-200%);
     transition: transform 0.25s cubic-bezier(1, -0.06, 0, 0.92);
   }
   .mobile-menu .logo {
     display: block;
     padding: 1rem;
     margin: 0;
     text-align: center;
     color: var(--color1);
   }
   .mobile-menu .logo svg {
     height: 80px;
   }
   .mobile-menu > ul {
     font-size: 0.8em;
     background: var(--color2);
   }
   .mobile-menu > ul a {
     padding: 0.25rem 1rem;
     font-size: 16px;
     line-height: 27px;
   }
   .mobile-menu > ul {
     display: block;
     padding: 0;
     margin: 0;
     list-style: none !important;
   }
   .mobile-menu > ul > li {
     display: block;
     width: 100%;
     border-bottom: 1px solid var(--color2);
   }
   .mobile-menu > ul > li > a {
     display: block !important;
     padding: 1em !important;
     white-space: inherit !important;
     max-width: 100% !important;
     text-overflow: inherit !important;
     line-height: auto;
     text-decoration: none;
     color: var(--color4);
     border-top: 3px solid transparent;
   }
   .mobile-menu > ul > li:hover > a,
   .mobile-menu > ul > li.active > a {
     color: var(--white);
     background-color: var(--color1);
   }
   .mobile-menu > ul > li > ul {
     display: block !important;
     position: relative !important;
     opacity: 1 !important;
     visibility: inherit !important;
     max-height: 0px;
     background: var(--color3);
     border-top: 0 none;
     box-shadow: none;
     overflow: hidden;
     list-style: none;
     margin: 0;
     padding: 0;
     -webkit-transition: max-height 0.125s ease-in-out !important;
     transition: max-height 0.125s ease-in-out !important;
   }
   .mobile-menu > ul > li > ul li a {
     padding: 0.5em 1em !important;
     width: 100% !important;
     color: var(--white);
     display: block;
     text-decoration: none;
   }
   .mobile-menu .hs-item-has-children {
     float: none !important;
   }
   .mobile-menu .hs-item-has-children:after {
     content: "";
     display: table;
     width: 100%;
     height: 0;
     clear: both;
   }
   .mobile-menu .hs-item-has-children > * {
     -webkit-box-flex: 1;
     -webkit-flex: 1 100%;
     -ms-flex: 1 100%;
     flex: 1 100%;
   }
   .mobile-menu .hs-item-has-children > a {
     display: inline-block;
     float: left;
     width: 80%;
   }
   .mobile-menu .hs-item-has-children > button {
     display: inline-block;
     float: left;
     width: 20%;
     line-height: 60px;
     border: 0 none;
     background: var(--color2);
     -webkit-appearance: none !important;
     outline: none !important;
   }
   .mobile-menu .hs-item-has-children > button svg {
     height: 16px;
     width: 16px;
   }
   .mobile-menu .hs-item-has-children > button.active {
     background: var(--color3);
   }
   .mobile-menu .hs-item-has-children > button.active svg {
     transform: rotate(180deg);
     fill: var(--white);
   }
   .mobile-menu .hs-item-has-children > button.active + ul {
     max-height: 1000px !important;
   }
   .mobile-menu .hs-item-has-children > ul.hs-menu-children-wrapper {
     width: 100%;
     display: block;
   }
   .mobile-menu .hs-item-has-children > ul.hs-menu-children-wrapper ul {
     display: none;
   }
   .menu-overlay {
     opacity: 0;
     -webkit-transition: opacity 0.5s ease-in-out;
     transition: opacity 0.5s ease-in-out;
   }
   .mobileMenuTrigger {
     display: block;
     border: 0 none;
     outline: none;
     position: fixed;
     padding: 5px;
     top: 1rem;
     right: 1rem;
     z-index: 2020;
     height: 50px;
     background: var(--white);
     width: auto;
     box-shadow: 0 15px 25px var(--color5);
   }
   .mobileMenuTrigger:focus {
     outline: none;
   }
   .mobileMenuTrigger svg {
     fill: var(--color3);
     width: 40px;
     height: 40px;
   }
   .menu-open {
     overflow: hidden;
   }
   .menu-open .mobile-menu {
     -webkit-transform: translateX(0);
     transform: translateX(0);
   }
   .menu-open .menu-overlay {
     background: var(--color3);
     position: fixed;
     top: 0;
     right: 0;
     height: 100vh;
     left: 0;
     z-index: 2000;
     opacity: 1;
   }
   .menu-open .mobileMenuTrigger {
     position: fixed;
     left: calc(300px + .25em);
     top: 1rem;
     right: 1rem;
     background: transparent;
     box-shadow: 0 0 0 transparent;
   }
   .menu-open .mobileMenuTrigger svg {
     fill: var(--white);
   }
 
   @media screen and (min-width: 768px) {
     .courtesy-menu, .main-menu {
       display: block !important;
     }
     .mobileMenuTrigger, .mobile-menu, .main-menu .hs-item-has-children > button {
       display: none;
     }
   }


