@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@300;400;600&display=swap');
/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

/* Box sizing rules  */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Always Include Skip Nav */
.screenreader-text {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  top: auto;
}
.screenreader-text:focus {
  background: var(--primary);
  color: #fff;
  display: block;
  height: auto;
  width: auto;
  position: static;
  margin: auto;
  text-align: center;
  padding: 5px;
}
/* MOBILE */
.hidden-sm {display: none !important;}
.grid {display: grid; gap: var(--spacer);}
.text-align-center {text-align: center;}
/* TABLET */
@media (min-width: 768px) {
.hidden-sm {display: inline;}
.grid-2 {grid-template-columns: 1fr 1fr; gap: var(--spacer);}
.grid-3 {grid-template-columns: 1fr 1fr 1fr; gap: var(--spacer);}
.grid-2x2-md {grid-template-columns: 1fr 1fr;}
.grid + .grid {margin-top: 2rem;}
}

@media (min-width: 992px) {
.hidden-sm {display: inline !important;}
.hidden-lg {display: none !important;}
.grid-3-lg {grid-template-columns: 1fr 1fr 1fr; gap: var(--spacer);}

}

/* WIDE DESKTOP */
@media (min-width: 1200px) {
.grid-4-lg {grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--spacer);}

}

/* SUPER WIDE DESKTOP */
@media (min-width: 1500px) {
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
.dnd-section {width: 100%;}
.row-fluid {align-items: center;}
.dnd-section > .row-fluid {max-width: var(--max-width); margin: calc(var(--spacer-vert) / 2) auto; position: relative; padding: 0 var(--side-padding);}
/* [class$="force-full-width-section"] > .row-fluid {padding: 0 !important;} */
[class*="-background-image"] > .row-fluid {margin-top: calc(var(--spacer-vert) * -1) !important; margin-bottom: 0 !important; padding-top: var(--spacer-vert); padding-bottom: var(--spacer-vert);}
[class*="-vertical-alignment"] > .row-fluid {align-items: flex-start;}
[class*="-background-color"] > .row-fluid {padding-top: var(--spacer-vert); padding-bottom: var(--spacer-vert);}
[class*="-background-image"] + [class*="-background-color"] > .row-fluid {margin-top: calc(var(--spacer-vert) * -1) !important; margin-bottom: 0 !important; padding-top: var(--spacer-vert); padding-bottom: var(--spacer-vert);}

.dnd-section > .row-fluid:first-of-type {margin-top: var(--spacer-vert);}
.dnd-section > .row-fluid:last-of-type {margin-bottom: var(--spacer-vert);}
.dnd-section .dnd-column {padding: 0;}
/* Background Sections */
.dnd-section-gray {background: var(--light); padding: 1px 0;}
.dnd-section-gradient {background: url(../../img/gradient.jpg) repeat-x; background-size: 900px auto; background-position: bottom left; padding: 1px 0;}
.new {margin: 2rem;}

.hs-blog-post-listing__post-title {line-height: .9;}
.hs-blog-post-listing__post-title a {font-size: 1.75rem; color: var(--text-color); text-decoration: none;}
.hs-blog-post-listing__post-title a:hover {text-decoration: underline;}
.hs-blog-post-listing__post-timestamp {font-size: .9rem; text-transform: uppercase; letter-spacing: 2px;}
.hs-blog-post-listing__post-image {aspect-ratio: inherit !important;}
.hs-blog-post-listing__post-button {text-transform: uppercase; font-size: 1.1rem; letter-spacing: 1px; font-weight: 700;}
.body-container--blog-index .dnd-section > .row-fluid:last-of-type {margin: 0; padding: 0;}

#blog-list .hs-blog-post-listing__post {display: grid; gap: 2rem; padding: 0 0 2rem 0; margin: 0 0 2rem 0; border-bottom: 1px dotted #ccc;}

/* DESKTOP */
@media (min-width: 768px) {
#blog-list .hs-blog-post-listing__post {grid-template-columns: 1.65fr 3fr;}
#blog-list .hs-blog-post-listing__post > * {width: 100% !important;}
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* Variables */
:root {
  /* Colors */
  --primary: #E88131;
  --primary-dark: #D67326;
  --accent-1: #E88131;
  --accent-2: #1D2944;
  --light: #EBEBEB;
  --dark: #111;
  --gray: #ccc;
  
  /* Fonts */
  --header: 'Poppins', sans-serif;
  --body: 'Lato', sans-serif;
  --text-color: rgba(0,0,0,.85);
  --text-color-inverse: rgba(255,255,255,.85);
  
  /* Globals */
  --transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --box-shadow-sm: 0 0 15px 0 rgba(0,0,0,.15);
  --shadow: 0 5px 25px rgba(255,161,0,.15);
  
  /* Spacing */
  --max-width: 1250px;
  --side-padding: 1.5rem;
  --spacer: 1.5rem;
  --spacer-vert: 2rem;
  --column-gap: 2rem;
  --column-gap-lg: 4rem;
  --fixed-header-height: 134px;
}

/* TYPOGRAPHY */
html {font-size: 100%;}
body {font-family: var(--body); font-weight: 400; font-size: 1rem; line-height: 1.5; background: var(--bkg); color: var(--text-color); padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;}

h1, h2, h3, h4, h5 {font-family: var(--header); line-height: 1.1; margin-top: 0; margin-bottom: 1rem; font-weight: 600;}
h1 {font-size: 2.5rem;}
h2 {font-size: 2rem; letter-spacing: -1px;}
h3 {font-size: 1.5rem;}
h4 {font-size: 1.25rem; text-transform: uppercase;}
h5 {font-size: 1rem;}
p, ul, ol {margin: 0 0 1.25rem 0;}
ul li, ol li {margin: 0;}
/* Links */
a {transition: var(--transition); color: var(--primary);}
p a {font-weight: 700; text-decoration: underline;}
p a:hover {text-decoration: none;}

.eyebrow {color: var(--primary); font-weight: 700; margin: 0 0 .5rem 0; font-size: 1.25rem;}
.lead {font-size: 1.25rem; font-weight: 300; line-height: 1.4; font-family: var(--header);}
.check-list, .mbd-content ul {list-style: none; padding: 0; font-family: var(--header); font-size: 1.15rem; font-weight: 600;}
.check-list li, .mbd-content ul li {margin: 5px; position: relative; align-items: center; display: flex;}

.check-list li::before, .mbd-content ul li:before {width: 20px; height: 15px; background: url(//20618537.fs1.hubspotusercontent-na1.net/hubfs/20618537/raw_assets/public/mobile-demand/images/ico-check.png);background-size: contain; background-repeat: no-repeat; margin-right: .5rem;content: ""; display: block;}
.check-list a, , .mbd-content ul a {color: var(--header); display: block;}
.check-list a:hover, , .mbd-content ul a:hover {text-decoration: none;}

/* Layouts */
.container {max-width: var(--max-width); margin: 0 auto; padding-left: var(--spacer);padding-right: var(--spacer);}
.box {padding: var(--spacer); border: 1px solid rgba(0,0,0,.1); box-shadow: 0 0 25px rgba(0,0,0,.05);}

/* Details */
.mbd-content details {background: #f4f4f4; padding: 15px; border-bottom: 1px dotted #ccc; display: block}
.mbd-content details:last-of-type {border: none;}
.mbd-content details details:first-of-type {margin-top: 1rem;}
.mbd-content details[open] > summary {font-weight: 700}
.mbd-content hr {display: none}
.mbd-content details ul {column-count: 1;font-size: .85rem !important; font-weight: 400; margin: 1rem 0;}
.mbd-content details ul li:before {height: 10px; margin-right: .35rem; margin-top: 2px;}
.mbd-content details ul a {display: block;}
.mbd-content details ul a:hover {color: #111; text-decoration: none;}

/* TABLET */
@media (min-width: 768px) {

} 

/* DESKTOP */
@media (min-width: 992px) {
  :root {
  --spacer-vert: 6rem;
  }
  h1 {font-size: 3.5rem;}
  h2 {font-size: 2.75rem;}
  
  .check-list, .mbd-content ul {columns: 2;}
}

/* WIDE DESKTOP */
@media (min-width: 1200px) {
  :root {
  --spacer-vert: 6rem;
  --fixed-header-height: 134px;
  }  
}
/* WP Button Styles */
/* Primary */
.btn-theme, .button, .hs-button.primary {background: var(--primary); padding: .65rem 1rem; color: #fff; display: inline-block; text-align: center; border-radius: 5px; text-decoration: none; font-weight: 700; border: 2px solid var(--primary); font-size: .9rem;}
.btn-theme:hover, .button:hover, .hs-button.primary:hover {background: var(--primary-dark); border-color: var(--primary-dark)}

.button-arrow:after {width: 20px; height: 7px; background: url(//20618537.fs1.hubspotusercontent-na1.net/hubfs/20618537/raw_assets/public/mobile-demand/images/ico-longarrow.png);background-size: contain; background-repeat: no-repeat; margin-left: .5rem; transition: var(--transition); content: ""; display: block; float: right; position: relative; top: 7px;}
.button-arrow:hover:after {margin-left: .75rem;}

.check-list li::before, .mbd-content ul li:before {width: 15px; height: 12px; background: url(//20618537.fs1.hubspotusercontent-na1.net/hubfs/20618537/raw_assets/public/mobile-demand/images/ico-check.png);background-size: contain; background-repeat: no-repeat; margin-right: .5rem;content: ""; display: block;}
.check-list a, , .mbd-content ul a {color: var(--header); display: block;}
.check-list a:hover, , .mbd-content ul a:hover {text-decoration: none;}

/* Secondary */
.btn-theme-secondary, .button-secondary {background: none; color: var(--primary);}
.btn-theme-secondary:hover, .button-secondary:hover {background: var(--light); color: var(--primary);}

.is-style-btn-text .wp-block-button__link {background: var(--primary);}
.is-style-btn-text .wp-block-button__link:hover {background: var(--hover);}
/* Text */
.is-style-btn-secondary .wp-block-button__link {background: var(--secondary);}
.is-style-btn-secondary .wp-block-button__link:hover {background: var(--hover);}
.hs-form {padding: 2rem; box-shadow: var(--box-shadow-sm); border-radius: 7px;}

/* Fields */

.hs-form-field {
  margin-bottom: 1rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-family: var(--headers);
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100% !important;
  background: var(--light);
  border: 1px solid rgba(0,0,0,.05);
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* GLOBAL */
#hdr-top {background: var(--dark); text-align: center; color: var(--text-color-inverse); padding: .65rem 0; font-size: 75%;}
#hdr-top p {margin: 0;}
#hdr-top ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; justify-content: center;}
#hdr-top ul li {position: relative;}
#hdr-top ul li:after {width: 1px; height: 1rem; display: block; position: absolute; right: -1.5rem; top: 2px; background: #fff; opacity: .25; content: ""; margin: 0 1rem;}
#hdr-top ul li:last-of-type:after {display: none;}
#hdr-top ul a {color: var(--text-color-inverse); text-decoration: none;}
#hdr-top ul a i {color: var(--primary);}
#hdr-top ul a:hover {color: #fff; text-decoration: underline;}

/* TABLET */
@media (min-width: 768px) {
#hdr-top .container {display: flex; justify-content: space-between;}
}
/* GLOBAL */
#hdr-site {position: relative; z-index: 10; box-shadow: var(--box-shadow-sm);}
#logo {display: block; width: 150px;}
#menu ul {list-style: none; padding: 0; margin: 0;}
#menu ul a {color: var(--text); text-decoration: none; display: block; padding: 1rem; font-weight: 600; position: relative;}
#menu ul ul .menu-title {color: #706D88; opacity: .65; font-size: .85rem; font-weight: 700; margin: 5px 1rem; border-bottom: 1px dotted var(--gray); width: 100%; display: block; padding: 0 0 .5rem 0;}
#menu ul ul a.active {font-weight: 700; color: var(--dark);}
.menu-cta div {display: flex; gap: .75rem;}
.menu-cta div > * {flex-grow: 1;}

/* ONLY MOBILE */
@media (max-width: 991px) {
#hdr-main {display: grid; grid-template-columns: auto 35px; align-items: center; padding: 1rem 0;}

/* Menu Toggle */
#menu-toggle {font-size:.65rem; letter-spacing: 0.5px; text-transform: uppercase; background: none; padding: 0; margin: 0; border: none;  font-weight: 700; color: var(--text); width: 35px; height: 40px; position: relative;}
#menu-toggle > div {position: absolute; width: 100%; height: 100%; top: 0; left: 0; transition: var(--transition);}
#menu-toggle .closed {display: flex; flex-direction: column; gap: 4px;}
#menu-toggle .closed .bar {width: 100%; height: 3px; background: var(--primary); display: block;}
#menu-toggle .open .bar {width: 100%; height: 3px; transform: rotate(45deg); background: var(--primary); display: block; transform-origin: center;position: absolute;left: 0;top: 46%;}
#menu-toggle .open .bar:nth-last-of-type(2) {transform: rotate(-45deg)}
#menu-toggle.collapsed .open {opacity: 0; visibility: hidden; top: -5px;}
#menu-toggle.collapsed .closed {opacity: 1; visibility: visible; top: 0;}
#menu-toggle .open {opacity: 1; visibility: visible; top: 0;}
#menu-toggle .closed {opacity: 0; visibility: hidden; top: 5px;}

/* Menu Collapse */
#menu .btn-expand {position: absolute; right: 0; top: 0; height: auto; border: none; background: none; color: var(--primary); padding: 1.5rem 1rem;}
#menu .btn-expand img {max-width: 15px;}
.collapsed {height: 0;overflow: hidden;-webkit-transition-delay: 0.2s;transition-delay: 0.2s;transition: height 0.2s ease;}
.show {height: auto;}

/* Menu Links */
#menu ul a {border-top: 1px dotted var(--gray);}
#menu ul a:hover, #menu ul a:focus {background: var(--light);}
#menu .wp-block-button__link {margin: 1rem 0;}
#menu li {position: relative;}
#menu ul ul a {border: none; padding: 5px 20px 5px 30px; font-weight: 400; font-size: .8rem;}

#menu ul ul li:last-of-type {margin-bottom: 1rem;}
.menu-cta {margin: 2rem 0;}
#menu .mini-nav {display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 2rem 0;}
#menu .mini-nav a {background: #f4f4f4; font-size: .85rem; text-align: center; padding: 5px; border: none; border-radius: 4px; font-weight: 400;}

} /* END ONLY MOBILE */

/* DESKTOP */
@media (min-width: 992px) {
#hdr-site {position: fixed; top: 0; width: 100%; background: #fff;}
#menu-toggle {display: none;}
.hdr-desktop {display: flex; justify-content: space-between; align-items: center;}
#menu {display: flex; align-items: center; justify-content: space-between; margin-left: 2rem;}
#menu ul {display: flex;}
#menu ul a {padding: 2.25rem 1.5rem; font-size: 1.15rem; white-space: nowrap;}
#menu .wp-block-button__link {margin-left: 1rem;}
#menu ul > li:last-of-type {margin-right: 2rem;}
  
/* Dropdown */
#menu .btn-expand {display: none;}
#menu .mega-menu {display: block; width: 900px; left: calc(50% - 450px); top: 105%; position: absolute; display: flex; gap: 2rem; background: #fff; box-shadow: var(--box-shadow-sm); border-radius: 5px; padding: 2rem; opacity: 0; visibility: hidden; transition: var(--transition);}
#menu .mega-menu ul { flex-direction: column; flex: 25%;}
#menu .mega-menu ul a {padding: 5px 0; font-size: .85rem; font-weight: 400; border-radius: 3px;}
#menu ul ul .menu-title {margin: 0 0 1.15rem 0; padding: 0 0 1.5rem 0;}
#menu li:hover .mega-menu {opacity: 1; visibility: visible; top: 100%;}

/* Hovers & Active */
#menu > ul > li > a:after {width: 0; height: 3px; position: absolute; left: 50%; bottom: 0; content: ""; background: var(--accent-1); opacity: 0; transition: var(--transition);}
#menu > ul > li:hover > a {background: var(--light);}
#menu > ul > li:hover > a:after {width: 100%; left: 0; opacity: 1;}
#menu ul ul a:hover {color: var(--dark); text-decoration: underline; padding: 5px 0 5px 5px; background: var(--light);}
}

/* Wordpress Nav Active State */
#menu ul .current-page-ancestor > a,
#menu ul .current-menu-item > a,
#menu ul .current-menu-item a {
    font-weight: 700;
    color: var(--primary);
}
/* WIDE DESKTOP */
@media (min-width: 1200px) {
#logo {width: 175px;}
}
.mbd-footer {position: relative; z-index: 5; margin-top: 150px;}
.mbd-footer > figure {position: absolute; inset: 0; overflow: hidden; background: var(--dark); z-index: -1;}
.mbd-footer > figure img {position: absolute; inset: 0; opacity: .15; width: 100%; height: 100%; object-fit: cover;}

.footer-cols {display: grid; gap: 1rem;color: rgba(255,255,255,.75); font-size: .9rem; margin-top: -50px;}
.footer-cols p {font-size: .9rem;}
.footer-cols .col {flex: 200px 1 1;}
.footer-cols .social-icons a {font-size: 2rem; margin: 0 .5rem .5rem 0; display: inline-block;}
.two-col {columns: 2;}
.footer-cols .col img {max-width: 35px !important;}
.mbd-footer h3 {color: #fff; font-size: 1.25rem;}
.mbd-footer ul {list-style: none; padding: 0; margin: 0;}
.mbd-footer ul a {color: rgba(255,255,255,.75); text-decoration: none; display: block; padding: 3px 3px 3px 0;}
.mbd-footer ul a:hover {color: #fff; text-decoration: underline; padding: 3px 0 3px 3px;}

.footer-copy {margin: 4rem 0 0 0; text-align: center; color: rgba(255,255,255,.75); border-top: 3px solid var(--primary); background: rgba(0,0,0,.5); font-size: .8rem; padding: 1.5rem;}
.footer-copy a {color: rgba(255,255,255,.75); font-weight: 400; text-decoration: none;}
.footer-copy a:hover {text-decoration: underline; color: #fff;}
/* TABLET */
@media (min-width: 768px) {
.footer-cols {grid-template-columns: 1fr 1fr; gap: 2rem;}
} 

@media (min-width: 992px) {
.footer-cols {grid-template-columns: 1.25fr 1.5fr 1.5fr 1.5fr auto; gap: 2rem;}

}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/ 

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}