/* Theme base styles */

/* Settings
This is where most settings/variables go.
*/







html {
    
  --c-pistachio: #84BD00;
  --c-desert-storm: #EEEEED;

  --font-arial: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  
   --font-arial-black: 'Arial Black', 'Helvetica Neue', Helvetica, sans-serif;
  
  --font-barlow: 'Barlow', sans-serif;
  
  
  --global-font-size: 1.8rem;
  --global-lineheight: 1.64;
  --body-background: white;
  --body-font-color: black;
  --body-font-family: var(--font-arial);
  --global-weight-normal: 400;
  --global-weight-bold: 700;
  --global-radius: 0;

  --container-width: 145rem;
  --container-padding: 3.6rem;
}

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



/* Basic hiding classes */
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

/* Screen reader visibility classes */
/* Need a "hide-for-sr" class? Add aria-hidden='true' to the element */
.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Only display the element when it's focused */
.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Landscape and portrait visibility */
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}

@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

/* Responsive visibility classes */
@media screen and (max-width:575px) {
  .hide-for-xs-only {
    display: none !important;
  }
}

@media screen and (max-width:0), screen and (min-width:576px) {
  .show-for-xs-only {
    display: none !important;
  }
}

@media print, screen and (min-width:576px) {
  .hide-for-sm {
    display: none !important;
  }
}

@media screen and (max-width:575px) {
  .show-for-sm {
    display: none !important;
  }
}

@media screen and (min-width:576px) and (max-width:767px) {
  .hide-for-sm-only {
    display: none !important;
  }
}

@media screen and (max-width:575px), screen and (min-width:768px) {
  .show-for-sm-only {
    display: none !important;
  }
}

@media print, screen and (min-width:768px) {
  .hide-for-md {
    display: none !important;
  }
}

@media screen and (max-width:767px) {
  .show-for-md {
    display: none !important;
  }
}

@media screen and (min-width:768px) and (max-width:991px) {
  .hide-for-md-only {
    display: none !important;
  }
}

@media screen and (max-width:767px), screen and (min-width:992px) {
  .show-for-md-only {
    display: none !important;
  }
}

@media print, screen and (min-width:992px) {
  .hide-for-lg {
    display: none !important;
  }
}

@media screen and (max-width:991px) {
  .show-for-lg {
    display: none !important;
  }
}

@media screen and (min-width:992px) and (max-width:1199px) {
  .hide-for-lg-only {
    display: none !important;
  }
}

@media screen and (max-width:991px), screen and (min-width:1200px) {
  .show-for-lg-only {
    display: none !important;
  }
}

@media print, screen and (min-width:1200px) {
  .hide-for-xl {
    display: none !important;
  }
}

@media screen and (max-width:1199px) {
  .show-for-xl {
    display: none !important;
  }
}

@media screen and (min-width:1200px) and (max-width:1439px) {
  .hide-for-xl-only {
    display: none !important;
  }
}

@media screen and (max-width:1199px), screen and (min-width:1440px) {
  .show-for-xl-only {
    display: none !important;
  }
}

@media print, screen and (min-width:1440px) {
  .hide-for-xxl {
    display: none !important;
  }
}

@media screen and (max-width:1439px) {
  .show-for-xxl {
    display: none !important;
  }
}
/* Alignment */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

@media print, screen and (min-width:576px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width:768px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width:992px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width:1200px) {
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width:1440px) {
  .text-xxl-left {
    text-align: left;
  }
  .text-xxl-right {
    text-align: right;
  }
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-justify {
    text-align: justify;
  }
}

/* Other */
.text-capitalize {
  text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-wrap {
  word-wrap: break-word !important;
}
/* Spacing */

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 2rem !important;
}
.mt-2 {
  margin-top: 4rem !important;
}
.mt-3 {
  margin-top: 6rem !important;
}
.mt-4 {
  margin-top: 8rem !important;
}
.mt-5 {
  margin-top: 10rem !important;
}
.mt-6 {
  margin-top: 12rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 2rem !important;
}
.mb-2 {
  margin-bottom: 4rem !important;
}
.mb-3 {
  margin-bottom: 6rem !important;
}
.mb-4 {
  margin-bottom: 8rem !important;
}
.mb-5 {
  margin-bottom: 10rem !important;
}
.mb-6 {
  margin-bottom: 12rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 2rem !important;
}
.pt-2 {
  padding-top: 4rem !important;
}
.pt-3 {
  padding-top: 6rem !important;
}
.pt-4 {
  padding-top: 8rem !important;
}
.pt-5 {
  padding-top: 10rem !important;
}
.pt-6 {
  padding-top: 12rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 2rem !important;
}
.pb-2 {
  padding-bottom: 4rem !important;
}
.pb-3 {
  padding-bottom: 6rem !important;
}
.pb-4 {
  padding-bottom: 8rem !important;
}
.pb-5 {
  padding-bottom: 10rem !important;
}
.pb-6 {
  padding-bottom: 12rem !important;
}
/* Responsive embed container */
.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}

.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.responsive-embed.portrait,
.flex-video.portrait {
  padding-bottom: 177.77%;
}

.responsive-embed.square,
.flex-video.square {
  padding-bottom: 100%;
}


/* <div class="breakpoint-indicator"></div> */

.breakpoint-indicator {
  background-color: #333;
  color: white;
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.6rem 1rem;
  border-radius: 0 0.5rem 0 0;
  position: fixed;
  bottom: 0;
  left: 0;
/*   z-index: 10000; */
  z-index: 999999 !important;
}@media screen and (min-width: 0px) {
    .breakpoint-indicator:after {
      content: 'xs \003C 576px';
    }
  }@media screen and (min-width: 576px) {
    .breakpoint-indicator:after {
      content: 'sm \2265 576px';
    }
  }@media screen and (min-width: 768px) {
    .breakpoint-indicator:after {
      content: 'md \2265 768px';
    }
  }@media screen and (min-width: 992px) {
    .breakpoint-indicator:after {
      content: 'lg \2265 992px';
    }
  }@media screen and (min-width: 1200px) {
    .breakpoint-indicator:after {
      content: 'xl \2265 1200px';
    }
  }@media screen and (min-width: 1440px) {
    .breakpoint-indicator:after {
      content: 'xxl \2265 1440px';
    }
  }

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

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

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfPk5GohvTobdw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfPk5GogvTobdw.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfPk5GouvTo.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfOA5WohvTobdw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfOA5WogvTobdw.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfOA5WouvTo.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfOc5mohvTobdw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfOc5mogvTobdw.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHsv4kjgoGqM7E_CfOc5mouvTo.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E30-8s6FospT4.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E30-8s6VospT4.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E30-8s51os.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E3t-4s6FospT4.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E3t-4s6VospT4.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E3t-4s51os.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E3q-0s6FospT4.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E3q-0s6VospT4.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(//4313129.fs1.hubspotusercontent-na1.net/hubfs/4313129/raw_assets/public/puris-2023/fonts/7cHqv4kjgoGqM7E3q-0s51os.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Set box-sizing globally to handle padding and border widths */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Default body styles */
body {
  margin: 0;
  padding: 0;
  background: var(--body-background);
  font-family: var(--body-font-family);
  font-size: var(--global-font-size);
  font-weight: var(--global-weight-normal);
  line-height: var(--global-lineheight);
  color: var(--body-font-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  /* Get rid of gap under images by making them display: inline-block; by default */
  display: inline-block;
  vertical-align: middle;

  /* Grid defaults to get images and embeds to work properly */
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

/* Make sure textarea takes on height automatically */
textarea {
  height: auto;
  min-height: 5rem;
  border-radius: var(--global-radius);
}

/* Make select elements are 100% width by default */
select {
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--global-radius);
}

/* Styles Google Maps and MapQuest embeds properly */
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

/* Reset <button> styles created by most browsers */
button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: var(--global-radius);
  background: transparent;
  line-height: 1;
  cursor: auto;
}

/* Prevent text overflow on pre */
pre {
  overflow: auto;
}

/* Make reset inherit font-family instead of settings sans-serif */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

/* Internal classes to show/hide elements in JavaScript */
.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

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

.body-wrapper {
  position: relative;
/*   overflow: hidden; */
}

.container {
  width: 100%;
  max-width: calc( var(--container-width) + var(--container-padding) * 2 );
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 768px) {
  .container--narrow {
    --container-width: 112rem;
    --container-padding: 12.8vw;
  }

  .container--very-narrow {
    --container-width: 84rem;
    --container-padding: 22vw;
  }
}


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



/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* Paragraphs */
p {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Emphasized text */
em,
i {
  font-style: italic;
  line-height: inherit;
}

/* Strong text */
strong,
b {
  font-weight: var(--global-weight-bold);
  line-height: inherit;
}

/* 375px - 1440px */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 3rem;
  margin-bottom: 3rem;

  --min-w: 37.5;
  --max-w: 144;
  --min-fs: 1;
  --max-fs: 6;
  --slope: calc( ( var(--max-fs) - var(--min-fs) ) / ( var(--max-w) - var(--min-w) ) );
  --y-axis-inter: calc( calc( var(--min-w) * -1 ) * var(--slope) + var(--min-fs) );

  font-size: clamp( calc( var(--min-fs) * 1rem ), calc( var(--y-axis-inter) * 1rem ) + calc( var(--slope) * 100vw ) , calc( var(--max-fs) * 1rem ) );
}

p:first-child,
ul:first-child,
ol:first-child,
h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child,
h6:first-child, .h6:first-child {
  margin-top: 0;
}

h1, .h1 {
  font-family: var(--font-barlow);
  --min-fs: 4.2;
  --max-fs: 7;
  font-weight: 800;
  line-height: 1.07em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h2, .h2 {
  font-family: var(--font-barlow);
  --min-fs: 3.7;
  --max-fs: 6;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h3, .h3 {
  font-family: var(--font-arial);
  --min-fs: 3.2;
  --max-fs: 5;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -0.03em;
}
h4, .h4 {
  font-family: var(--font-barlow);
  --min-fs: 2.7;
  --max-fs: 4;
  font-weight: 700;
  line-height: 1em;
}
h5, .h5 {
  font-family: var(--font-barlow);
  --min-fs: 2.2;
  --max-fs: 2.4;
  font-weight: 600;
  line-height: 1.25em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h6, .h6 {
  font-family: var(--font-arial);
  --min-fs: 1.7;
  --max-fs: 2;
  font-weight: 700;
  line-height: 1.36em;
  text-transform: uppercase;
}

/*
@media (min-width: 992px) {
h1, .h1 {
font-size: 7.5rem;
}
h2, .h2 {
font-size: 6rem;
}
h3, .h3 {
font-size: 3.5rem;
}
h4, .h4 {
font-size: 3rem;
}
h5, .h5 {
font-size: 3rem;
}
h6, .h6 {
font-size: 2rem;
}
}
*/

/* Links */
a {
  line-height: inherit;
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.2em;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, text-decoration-color 0.15s ease-out, opacity 0.15s ease-out;
  cursor: pointer;
  overflow-wrap: break-word;
}

a:hover,
a:focus {
  opacity: 0.75;
}

a img {
  border: 0;
}

/* Horizontal rule */
hr {
  clear: both;
  height: 0;
  margin: 3.6rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 0.1rem solid black;
  border-left: 0;
}
hr.hr--mini {
  max-width: 10rem;
}

/* Lists */
ul,
ol,
dl {
  margin-top: 3rem;
  margin-bottom: 3rem;
  list-style-position: outside;
}

/* List items */
li {
  font-size: inherit;
}

/* Unordered lists */
ul {
  margin-left: 1.2em;
  list-style-type: disc;
}

/* Ordered lists */
ol {
  margin-left: 1.2em;
}

/* Nested unordered/ordered lists */
ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.2em;
  margin-top: 0;
  margin-bottom: 0;
}

/* ul > li::marker {
color: red;
} */

@media (min-width: 540px){
  section {
    padding-bottom: 8vw;
    padding-top: 8vw;
  }
}

@media (min-width: 1720px){
  section {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }
}

@media (max-width: 539px){
  section {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}


@media (min-width: 768px) {
  ul.columns-2, 
  ol.columns-2,
  ul.columns-3, 
  ol.columns-3 {
    column-gap: 7rem;
  }
  ul.columns-2, 
  ol.columns-2 {
    column-count: 2;
  }
  ul.columns-3, 
  ol.columns-3 {
    column-count: 3;
  }
}

.list-unstyled {
  margin-left: 0;
  list-style: none;
}




.bg-black {
  background-color: var(--body-font-color);
  color: white;
}
.bg-light-gray {
  background-color: var(--c-desert-storm);
}
.bg-green {
  background-color: var(--c-pistachio);
  color: var(--body-font-color);
}
.button,
.cta_button {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none ;
  transition: color 0.15s ease-out, background-color 0.15s ease-out;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0.8em 2.4em;
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: black;
  background-color: transparent;
  border: 0.2rem solid black;
  border-radius: 4.4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.button:hover,
.button:focus,
.cta_button:hover,
.cta_button:focus {
  color: white;
  background-color: black;
}
.button--green,
.button--pistachio,
.bg-black .button,
.bg-black .cta_button {
  border-color: var(--c-pistachio);
}
.bg-black .button,
.bg-black .cta_button {
  color: white;
}
.button--green:hover,
.button--green:focus,
.button--pistachio:hover,
.button--pistachio:focus,
.bg-black .button:hover,
.bg-black .button:focus,
.bg-black .cta_button:hover,
.bg-black .cta_button:focus{
  color: black;
  background-color: var(--c-pistachio);
}

.button--expanded {
  width: 100%;
}
.hs-form-field {
  display: block;
  margin-bottom: 25px;
}

.hs-form-field>label {
  text-align: left;
  display: block;
  margin-bottom: 8px;
}

.hs-input {
  background: var(--body-background);
  border: 1px solid var(--c-desert-storm);
  color: var(--body-font-color);
  font-size: 18px;
  line-height: 1.2;
  padding: 16px 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 0 1px rgba(132,189,0,0);
  box-shadow: inset 0 0 0 1px rgba(132,189,0,0);
  display: block;
  font-family: var(--font-body);
  margin: 0;
  -webkit-transition: border-color .3s linear,color .3s linear,-webkit-box-shadow .3s linear;
  transition: border-color .3s linear,color .3s linear,-webkit-box-shadow .3s linear;
  transition: border-color .3s linear,color .3s linear,box-shadow .3s linear;
  transition: border-color .3s linear,color .3s linear,box-shadow .3s linear,-webkit-box-shadow .3s linear;
  display: block;
  width: 100% !important;
  outline: none;
}

.hs-input:focus {
  outline: 0;
}

.hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  color: #e53935;
}

.actions {
  text-align: left;
}

.hs-button {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  overflow: hidden;
  padding: 0.8em 2.4em;
  border: 0.2rem solid #000;
  border-radius: 4.4rem;
  color: #000;
  width: auto;
  font-family: var(--font-barlow);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--body-background);
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background .3s linear,color .3s linear,border-color .3s linear;
  transition: background .3s linear,color .3s linear,border-color .3s linear;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  text-transform: uppercase;
  margin: 10px 0;
}

.hs-button:hover,.hs-button:focus {
  background: var(--body-font-color);
  border-color: var(--body-font-color);
  color: var(--body-background);
  text-decoration: none;
  opacity: .75;
}

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

.hs-form-field ul.inputs-list > li {
  display: inline-block;
  margin: 0 10px 5px 0;
}

.hs-form-field ul.inputs-list input {
  width: auto !important;
  display: inline-block;
  margin-right: 10px;
}


@media (max-width: 600px){
  
  fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none !important;
    margin-bottom: 18px;
  }

  .hs-form-field .input {
    margin-right: 0 !important;
  }

  .hs-form-field {
    margin-bottom: 18px;
  }

}



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

/* Navigation Skipper */

.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 4rem;
  padding: 1rem;
  color: white !important;
  font-size: 1.6rem;
  line-height: 1em;
  text-decoration: none;
  border-right: 0.1rem solid white;
  border-bottom: 0.1rem solid white;
  border-bottom-right-radius: 0.8rem;
  background-color: #BF1722;
  transform: translateY(-100%);
  transition: transform 1s ease-in, background-color 0.5s ease-out;
  z-index: 100;
}
.skip-to-content:focus {
  transform: translateY(0);
  transition: transform 0.1s ease-out, background-color 0.5s ease-out;
}
.skip-to-content:hover {
  background-color: #861018;
}





.site-header-container {
  height: 7rem;
}
@media (min-width: 1200px) {
  .site-header-container {
    height: 18rem;
  }
}


.site-header {  
  width: 100%;
  background-color: white;
  position: fixed;
  z-index: 101;
  transition: transform 0.4s ease-out;
}
.site-header[data-scroll-direction="up"] {
  transform: translateY(0%);
}
.site-header[data-scroll-direction="down"] {
  transform: translateY(-100%);
}

@media (max-width: 1199px) {
  .site-header.has-open-mobile-menu[data-scroll-direction="down"] {
    transform: translateY(0%);
  }
}




/* Header Secondary */

.site-header__secondary {
  display: none;
  height: 6rem;
  border-bottom: 0.1rem solid black;
}
@media (min-width: 1200px) {
  .site-header__secondary {
    display: flex;
  }
}

.site-header__secondary > .container {
  display: flex;
  justify-content: end;
}

/* Secondary Nav */

.secondary-nav {
  display: flex;
  align-items: center;
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  line-height: 1.1;
}
.secondary-nav__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 3.4rem;
}
.secondary-nav__link {
  display: block;
  padding: 1.25rem 0;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.secondary-nav__link:hover,
.secondary-nav__link:focus {
  color: var(--c-pistachio);
}



.secondary-nav__item.secondary-nav__item--has-children {
  display: flex;
  position: relative;
}

.secondary-nav__dropdown {
  background: var(--body-background);
  border: .1rem solid var(--body-font-color);
  list-style: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 100%;
  transform: translateY(2rem);
  transition: opacity .15s ease-out, visibility .15s ease-out, transform .15s ease-out;
  visibility: hidden;
  z-index: 13;
}

.secondary-nav__dropdown li a {
  border-top: .1rem solid var(--body-font-color);
  color: var(--body-font-color);
  display: block;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.secondary-nav__dropdown li:first-child > a {
  border-top: 0;
}

.secondary-nav__dropdown li a:hover,.secondary-nav__dropdown li a:focus {
  color: var(--c-pistachio);
}

.secondary-nav__list>li.is-open .secondary-nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible
}

.secondary-nav__list > .secondary-nav__item--has-children.is-open .main-nav__button svg {
  transform: scaleY(-1)
}

/* Header Main */

.site-header__main {
  display: flex;
  height: 7rem;
  border-bottom: 0.1rem solid black;
}
@media (min-width: 1200px) {
  .site-header__main {
    height: 12rem;
  }
}

.site-header__main > .container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.site-header__logo {
  line-height: 0;
}

.site-header__menu {
  display: none;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1200px) {
  .site-header__menu {
    display: flex;
  }
}



/* Main Nav */

.main-nav {
  display: flex;
  align-items: center;
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  line-height: 1.1;
}

.main-nav__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 4rem;
}

.main-nav__item {
  display: flex;
}
.main-nav__item--has-children {
  position: relative;
}

.main-nav__link {
  display: flex;
  align-items: center;
  padding: 2.4rem 0;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.main-nav__item--has-children .main-nav__link {
  padding-right: 0;
}
/*
.main-nav__link.active-branch,
.main-nav__link.active-node {
}
*/
.main-nav__link:hover,
.main-nav__link:focus {
  color: var(--c-pistachio);
}

.main-nav__button {
  cursor: pointer;
  align-items: center;
  background-color: transparent;
  border: none;
  display: flex;
  padding: 0 0.5rem;
  color: black;
}
.main-nav__button svg {
  transition: transform 0.3s ease-out;
}

.main-nav__list > li.is-open .main-nav__button svg {
  transform: scaleY(-1);
}

.main-nav__dropdown {
  position: absolute;
  z-index: 13;
  top: 100%;
  left: calc(50% - 13rem);
  margin: 0;
  list-style: none;
  width: 26rem;
  background: white;
  border: 0.1rem solid black;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out, transform 0.15s ease-out;
}
.main-nav__dropdown-link {
  display: block;
  padding: 2.7rem 1.5rem;
  border-top: 0.1rem solid black;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.main-nav__dropdown-item:first-child .main-nav__dropdown-link {
  border: none;
}
/*
.main-nav__dropdown-link.active-branch,
.main-nav__dropdown-link.active-node {
}
*/
.main-nav__dropdown-link:hover,
.main-nav__dropdown-link:active,
.main-nav__dropdown-link:focus {
  color: var(--c-pistachio);
}

.main-nav__list > li.is-open .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Header 2025 */

.header[data-scroll-direction=down] {
  transform: translateY(-100%);
}

.header[data-scroll-direction=up] {
  transform: translateY(0);
}

.header-wrapper {
    height: 186px;
}

header.header {
  background-color: var(--body-background);
  position: fixed;
  transition: transform .4s ease-out;
  width: 100%;
  z-index: 101;
}


.header-secondary {
  border-bottom: .1rem solid var(--body-font-color);
  display: none;
  padding: 10px 0;
}

.header-secondary>.container {
  display: flex;
  justify-content: end;
  align-items: center;
}

.utility-nav {
  align-items: center;
  display: flex;
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  line-height: 1.1;
}

.utility-nav__list {
  display: flex;
  gap: 3.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.utility-nav__link {
  color: var(--body-font-color);
  display: block;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 1.25rem 0;
  text-decoration: none;
  text-transform: uppercase;
}

.header-btn {
  padding-left: 30px;
}

.header-btn .hs-button {
  margin: 0;
  padding-top: .6em;
  padding-bottom: .6em;
}

.header__main {
  border-bottom: .1rem solid var(--body-font-color);
  display: flex;
  align-items: center;
  padding: 28px 0;
}

.header__main>.container {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
}

.site-header-logo {
  line-height: 0;
}

.header-logo>div {
  line-height: 0;
}


@media (min-width: 1200px) {
  .header-secondary {
    display: flex;
  }

}

/* Mobile Navigation */

.mobile-nav {
  position: relative;
}
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav__toggle {
  width: 4.8rem;
  height: 4.8rem;
  cursor: pointer;
  position: relative;
}
.mobile-nav__toggle span {
  display: block;
  position: absolute;
  height: 0.3rem;
  width: 3.3rem;
  background-color: black;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: width 0.15s ease-out;
}
.mobile-nav__toggle span:nth-child(1) {
  top: 1.5rem;
}
.mobile-nav__toggle span:nth-child(2) {
  top: 2.3rem;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.mobile-nav__toggle span:nth-child(3) {
  top: 3.1rem;
}
.mobile-nav__toggle.is-open span:nth-child(2) {
  animation-name: toggleOpen;
}
.mobile-nav__toggle.is-closed span:nth-child(2) {
  animation-name: toggleClosed;
}
.mobile-nav__toggle:not(.is-open):hover span:nth-child(2) {
  width: 3rem;
}

@keyframes toggleOpen {
  0% {
    transform: rotate(0deg) scaleX(1);
  }
  40% {
    transform: rotate(0deg) scaleX(0.25);
  }
  60% {
    transform: rotate(45deg) scaleX(0.25);
  }
  100% {
    transform: rotate(45deg) scaleX(1);
  }
}
@keyframes toggleClosed {
  0% {
    transform: rotate(45deg) scaleX(1);
  }
  40% {
    transform: rotate(45deg) scaleX(0.25);
  }
  60% {
    transform: rotate(0deg) scaleX(0.25);
  }
  100% {
    transform: rotate(0deg) scaleX(1);
  }
}

.mobile-nav__menu {
  background-color: white;
  border: 0.1rem solid black;
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  width: 35rem;
  max-width: calc(100vw - var(--container-padding)*2);
  transform: translateY(2rem);
  opacity: 0;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  max-height: calc(100vh - 13.6rem);
  overflow-y: auto;
}
.mobile-nav__menu:not(.is-open) {
  display: none;
}
.mobile-nav__menu.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  line-height: 1.1;
}

.mobile-nav__item {
  border-bottom: 0.1rem solid black;
}
.mobile-nav__item--has-children {
  display: grid;
  grid-template-columns: auto 58px;
}

.mobile-nav__link {
  display: block;
  padding: 2rem;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.mobile-nav__link:hover,
.mobile-nav__link:focus {
  color: var(--c-pistachio);
}

.mobile-nav__submenu-toggle {
  cursor: pointer;
  color: black;
  border-left: 0.1rem solid black;
}
.mobile-nav__submenu-toggle svg {
  transition: transform 0.15s ease-out;
}
.mobile-nav__submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(135deg);
}

.mobile-nav__submenu {
  padding: 0 0 0 2rem;
  margin: 0;
  list-style: none;
  border-top: 0.1rem solid black;
  transition: height 0.15s ease-out;
  grid-column: 1 / -1;
}
.mobile-nav__submenu:not(.is-open) {
  display: none;
}

.mobile-nav__submenu-item {
  border-top: 0.1rem solid black;
  border-left: 0.1rem solid black;
}
.mobile-nav__submenu-item:first-child {
  border-top: none;
}

.mobile-nav__submenu-link {
  display: block;
  padding: 2rem;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.mobile-nav__submenu-link:hover,
.mobile-nav__submenu-link:focus {
  color: var(--c-pistachio);
}

.mobile-nav__login {
  padding: 2rem;
}



/* HS Tools Menu */

div.hs-tools-menu {
  top: -3px !important;
  min-height: 30px !important;
}
div.hs-tools-menu.hs-collapsed img.hs-sprocket {
  width: 24px !important;
  right: 3px !important;
}

@media (min-width: 1200px){
  .mobile-menu-wrap {
    display: none;
  }
}
@media (max-width: 1199px){

  .header.has-open-mobile-menu[data-scroll-direction=down] {
    transform: translateY(0);
  }
  
  .header-wrapper {
    height: 70px;
}

  .mobile-nav {
    line-height: 0;
  }

  .header__main {
    padding: 23px 0;
  }

  .site-header-logo svg {
    height: 23px;
    width: 120px;
  }

  .mobile-toggle {
    height: 2.3rem;
    width: 3.3rem;
    position: relative;
    cursor: pointer;
  }

  .mobile-toggle span {
    width: 3.3rem;
  }

  .mobile-toggle span {
    background-color: var(--body-font-color);
    display: block;
    height: .3rem;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    transition: all .15s ease-out;
    width: 3.3rem;
  }

  .mobile-toggle span:first-child {
    top: 0;
  }

  .mobile-toggle span:nth-child(2) {
    animation-duration: .3s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    top: 1rem;
  }

  .mobile-toggle.is-closed span:nth-child(2) {
    animation-name: toggleClosed;
  }

  .mobile-toggle:not(.is-open):hover span:nth-child(2) {
    width: 3.3rem;
  }

  .mobile-toggle span:nth-child(3) {
    top: 2rem;
  }

  .mobile-toggle.is-open span:first-child {
    transform: rotate(45deg);
    top: 1rem;
  }

  .mobile-toggle.is-open span:nth-child(2) {
    display: none;
    animation-name: toggleOpen;
  }

  .mobile-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 1rem;
  }

  .header-mobile-nav {
    position: static;
  }

  .header-mobile-nav__menu {
    background-color: var(--body-background);
    border: none;
    max-height: calc(100vh - 65px);
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(2rem);
    transition: opacity .15s ease-out, transform .15s ease-out;
    width: 100%;
  }

  .header-mobile-nav__menu.animate-in {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-mobile-nav__list {
    font-family: var(--font-barlow);
    font-size: 1.6rem;
    line-height: 1.1;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header-mobile-nav__item {
    border-bottom: .1rem solid var(--body-font-color);
  }

  .header-mobile-nav__item.header-mobile-nav__item--has-children {
    display: grid;
    /*     grid-template-columns: auto 58px; */
  }

  .header-mobile-nav__link {
    color: var(--body-font-color);
    display: block;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 2rem;
    text-decoration: none;
    text-transform: uppercase;
  }

  .header-mobile-nav__submenu {
    border-top: .1rem solid var(--body-font-color);
    grid-column: 1 / -1;
    list-style: none;
    margin: 0;
    padding: 0 0 0 2rem;
    transition: height .15s ease-out;
  }

  .header-mobile-nav__submenu:not(.is-open) {
    display: none;
  }

  .header-mobile-nav__link:hover,.header-mobile-nav__link:focus {
    color: var(--c-pistachio);
    opacity: 1;
  }

  .header-mobile-nav__submenu-toggle {
    display: inline-block;
    vertical-align: top;
  }

  .header-mobile-nav__link:hover .header-mobile-nav__submenu-toggle {
    color: var(--c-pistachio);
  }

  .header-utility-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-barlow);
    font-size: 1.6rem;
    line-height: 1.1;
  }

  .header-utility-nav__item {
    border-bottom: .1rem solid var(--body-font-color);
  }

  .header-utility-nav__link {
    color: var(--body-font-color);
    display: block;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 2rem;
    text-decoration: none;
    text-transform: uppercase;
  }

  .header-utility-nav__link:hover,.header-utility-nav__link:focus {
    color: var(--c-pistachio);
    opacity: 1;
  }

  .header-mobile-nav__login {
    padding: 2rem;
    border-bottom: .1rem solid var(--body-font-color);
  }

  .header-mobile-nav__login .hs-button {
    margin: 0;
  }

  /*   .header-mobile-nav__login .hs-button:hover,.header-mobile-nav__login .hs-button:focus {
  background: var(--c-pistachio);
  border-color: var(--c-pistachio);
} */

  .header-mobile-nav__submenu {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-barlow);
    font-size: 1.6rem;
    line-height: 1.1;
  }

  .header-mobile-nav__submenu-item {
    border-bottom: .1rem solid var(--body-font-color);
  }

  .header-mobile-nav__submenu-item:last-child {
    border-bottom: none;
  }

  /*   .header-mobile-nav__item:last-child {
  border-bottom: none;
} */

  .header-mobile-nav__submenu-link {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px;
    color: var(--body-font-color);
  }

  .header-mobile-nav__submenu-link:hover,.header-mobile-nav__submenu-link:focus {
    color: var(--c-pistachio);
  }

  .header-mobile-nav-submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 58px;
    cursor: pointer;
  }

  .header-mobile-nav__submenu-item-has-children {
    position: relative;
  }

  .header-mobile-nav__submenu-item-has-children .header-mobile-nav__submenu-link {
    padding-right: 70px;
  }

  .mobile-third-nav__dropdown {
    background: #f4f4f4;
    display: none;
    list-style: none;
    margin: 0 0 -1px 0;
    padding: 10px 0;
  }

  .mobile-third-nav__dropdown.is-open {
    display: block;
  }

  .mobile-third-nav__dropdown .header-mobile-nav__submenu-item {
    border: none;
  }

  .mobile-third-nav__dropdown .header-mobile-nav__submenu-link {
    padding: 15px 20px;
  }

  .header-mobile-nav-submenu-toggle svg {
    transition: all 0.3s ease;
  }

  .header-mobile-nav-submenu-toggle.is-open svg {
    transform: rotate(90deg);
    transition: all 0.3s ease;
  }

  .header-mobile-nav__submenu-item-has-children:hover .header-mobile-nav-submenu-toggle svg,
  .header-mobile-nav__submenu-item-has-children .header-mobile-nav-submenu-toggle.is-open svg{
    fill: #84bd00;
  }

  .header-mobile-nav__submenu-item-has-children:hover .header-mobile-nav-submenu-toggle svg path,
  .header-mobile-nav__submenu-item-has-children .header-mobile-nav-submenu-toggle.is-open svg path{
    stroke: #fff;
  }

  .header-mobile-nav__submenu-item-has-children .header-mobile-nav-submenu-toggle.is-open svg circle, 
  .header-mobile-nav__submenu-item-has-children:hover .header-mobile-nav-submenu-toggle svg circle {
    stroke: #84bd00;
  }

  .mobile-menu-wrap {
    line-height: 0;
  }
}
/* LP Header */

.site-header-container.header_lp {
  height: 12rem;
}

.header_lp .mobile-nav {
  display: none;
}

.header_lp .site-header__main>.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*     -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; */
}


@media (max-width: 1199px){
  .site-header-container.header_lp {
    height: 7rem;
  }
}
.site-footer {
  background-color: black;
  color: white;
}

.site-footer__menu {
  border-bottom: 0.1rem solid white;
  padding: 5.4rem 0;
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 2rem 4rem;
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  line-height: 1.1;
}

.footer-nav__link {
  display: block;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.footer-nav__link:hover,
.footer-nav__link:focus {
  color: var(--c-pistachio);
}



.site-footer__main {
  border-bottom: 0.1rem solid white;
  padding: 6rem 0;
}
.site-footer__main > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
@media (min-width: 992px) {
  .site-footer__main > .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.site-footer__tagline {
  color: white;
  font-family: var(--font-barlow);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer__tagline {
    text-align: left;
  }
}

.site-footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__socials a {
  width: 3.2rem;
  height: 3.2rem;
  border: 0.2rem solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  -webkit-transition: opacity 0.15s ease-out;
  -o-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
.site-footer__socials a:hover,
.site-footer__socials a:focus {
  opacity: 0.75;
}

.site-footer__legal {
  padding: 5.4rem 0;
}

.site-footer__legal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1rem;
  line-height: 1.1;
}

.site-footer__legal ul li:after {
  content: "";
  width: 1px;
  height: 75%;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: 1rem;
  margin-right: 1rem;
}

.site-footer__legal ul li:last-child:after {
  display: none;
}
.site-footer__legal a {
  text-decoration: none;
  -webkit-transition: opacity 0.15s ease-out;
  -o-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
.site-footer__legal a:hover,
.site-footer__legal a:focus {
  opacity: 0.75;
}

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

.blog-post-banner .banner-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-post-banner .banner-mobile-image {
  display: none;
}

.blog-post-wrapper {
  padding: 60px 0 0;
}

.blog-section {
  max-width: 100%;
  padding: 50px 50px;
  position: relative;
  z-index: 1;
  margin: -60px auto 0;
  background: var(--body-background);
  width: calc(100% - 150px);
}

.post-title {
  padding-bottom: 30px;
}

.blog-news-post-wrapper {
  position: relative;
  padding-left: 120px;
}

.news-post-share {
  float: left;
  height: 100%;
  left: 0;
  position: absolute;
  top: 30px;
}

.news-post-share .post-share-inner {
  position: sticky;
  top: 100px;
}

.news-post-share ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.news-post-share li {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-left: 0px;
  margin-bottom: 8px;
/*   color: var(--color-black); */
  font-size: 24px;
  vertical-align: middle;

}

.news-post-share li .fa {
  font-size: 24px;
  vertical-align: middle;
}

/* .news-post-share li a {
  color: var(--color-black);
} */

/* .news-post-share li a:hover svg {
  fill: var(--color-second);
} */

.news-post-header {
  position: relative;
  padding-bottom: 7px;
}

.author-post-details {
  overflow: hidden;
}

span.author-avatar {
  width: 65px;
  height: 65px;
  display: block;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 100%;
  margin-left: 15px;
  float: left;
  border: 3px solid;
  position: relative;
}

.author-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

span.authorname-details {
  padding-top: 18px;
  display: block;
  margin-left: 20px;
  float: left;
  font-size: 14px;
  font-family: var(--font-barlow);
}

.news-post-body {
  padding: 50px 15px 50px;
  position: relative;
  font-size: 18px;
  line-height: 1.66;
}

.news-post-body p {
  margin-top: 0px;
  font-size: 18px;
  line-height: 1.66;
}

.news-post-body ul,
.news-post-body ol{
  font-size: 18px;
  line-height: 1.66;
}

.news-post-body p:first-child::first-letter {
  font-size: 60px;
  color:var(--c-pistachio);
  font-weight: bold;
  padding-right: 10px;
  line-height: 100%;
  float: left;
}

.blog-comments {
  padding-left: 15px;
  padding-right: 15px;
}

.blog-post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-post-author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-post-author-img img {
  border-radius: 50%;
  border: 3px solid;
  /*   object-fit: cover;
  object-position: center; */
  width: 100px;
  height: 100px;
}

.blog-post-author-desc {
  width: calc(100% - 100px);
  padding-left: 30px;
}

.blog-post-author-wrapper {
  border: 2px solid;
  padding: 20px;
}

.blog-post-authorname a {
  text-decoration: none;
/*   color: var(--color-main); */
}

/* .blog-post-authorname a:hover {
  color: var(--color-second);
} */

/* ========= Blog Listing ============= */

.blog-listing__listing_wrap {
  padding-bottom: 60px;
}

.blog-listing__item {
  padding-left: 32px;
  padding-right: 32px;
  width: 33.33%;
  margin-bottom: 40px;
  margin-top: 40px;
}

.blog-listing__listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -32px;
}

.content-preview {
  border-radius: 1px;
  display: block;
  position: relative;
  text-decoration: none;
/*   color: var(--color-main); */
  height: 100%;
}

/* .content-preview:hover,
.content-preview:focus{
  text-decoration: none;
  color: var(--color-main);
} */

.content-preview:after {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: -12px;
  top: -12px;
  -webkit-transition: -webkit-box-shadow .3s linear;
  transition: -webkit-box-shadow .3s linear;
  -o-transition: box-shadow .3s linear;
  transition: box-shadow .3s linear;
  transition: box-shadow .3s linear, -webkit-box-shadow .3s linear;
  transition: box-shadow .3s linear,-webkit-box-shadow .3s linear;
}

.content-preview .rte h3 {
  -webkit-transition: color .3s linear;
  -o-transition: color .3s linear;
  transition: color .3s linear;
}

.content-preview__media {
/*   background: var(--color-sixth); */
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 0;
  padding-bottom: 56%;
}

.content-preview__media img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-list-tags {
  margin-bottom: 12px;
  padding: 12px 0 2px;
  border-bottom: 1px solid;
}

.blog-list-tags p {
/*   color: var(--color-main); */
  text-decoration: none;
  display: inline-block;
}

.blog-list-tags span.line {
  padding: 0 4px;
}

/* .content-preview:hover h3{
  color: var(--color-second);
} */

.link-arrow {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-weight: 600;
  margin-top: 16px;
}

.content-preview .link-arrow {
  opacity: 0;
  -webkit-transition: opacity .3s linear,color .3s linear;
  -o-transition: opacity .3s linear,color .3s linear;
  transition: opacity .3s linear,color .3s linear;
}

.link-arrow span {
  margin-top: 0!important;
  margin-bottom: 0!important;
}

.link-arrow svg {
/*   fill: var(--color-second); */
  -webkit-transition: -webkit-transform .3s linear;
  transition: -webkit-transform .3s linear;
  -o-transition: transform .3s linear;
  transition: transform .3s linear;
  transition: transform .3s linear, -webkit-transform .3s linear;
  transition: transform .3s linear,-webkit-transform .3s linear;
  width: 15px;
  margin-left: 8px;
}

.content-preview:hover .link-arrow {
/*   color: var(--color-second); */
  opacity: 1;
}

.content-preview:hover:after {
  -webkit-box-shadow: 0 6px 16px rgba(0,0,0,.16);
  box-shadow: 0 6px 16px rgba(0,0,0,.16);
}

.content-preview .rte p {
  margin-bottom: 0;
}

.blog-pagination {
  text-align: center;
}

.pagination {
  text-align: center;
  padding: 30px 0 0;
}

.pagination_link {
  display: inline-block;
/*   background: var(--color-second); */
  border: 1px solid;
  min-width: auto;
  padding: 8px 15px;
  text-decoration: none;
/*   color: var(--color-white); */
  line-height: normal;
  vertical-align: middle;
  border-radius: 2px;
  margin: 0 3px 10px;
}

.pagination_link:hover,
.pagination_link:focus,
.pagination_link--active {
  color: #ffffff;
  text-decoration: none;
  background-color: var(--c-pistachio);
  border-color: var(--c-pistachio);
  opacity: 1;
}

.pagination_link svg,.pagination_link svg path {
  fill: inherit; 
  vertical-align: middle;
}

.pagination_link:hover svg,
.pagination_link:hover svg path {
  fill: #ffffff;
}

.pagination_link.pagination__link--disabled,
.pagination_link.pagination-link--disabled{
  cursor: default;
  display: none;
}

.pagination_link.pagination_link--prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pagination_link.pagination__link--disabled:hover,
.pagination_link.pagination-link--disabled:hover{
/*   background: var(--color-second); */
  border: 1px solid;
}

.news-post-body figure {
  margin: 24px 0;
  padding: 0;
}

.table--hd-green thead {
  background: #84bd00;
}

.table--borders tbody {
  border: 1px solid #24292e;
  border-top: none;
}


.table--borders tbody tr td {
  border: 1px solid #24292e;
  border-bottom: none;
  border-top: none;
}

.table--borders tbody tr {
  border-bottom: 1px solid #24292e;
}

.table--borders td, .table--borders th {
  padding: 0 12px;
  height: 64px;
}

.table--borders {
  border-spacing: 0;
  border-collapse: collapse;
}

.table--borders th {
  color: #fff;
}

@media (min-width: 1200px){
  .content-preview:after {
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    left: -16px;
    top: -16px;
  }
}

@media (max-width: 991px){

  .blog-section {
    width: calc(100% - 100px);
    padding: 50px 30px;
  }

  .blog-news-post-wrapper {
    padding-left: 80px;
  }

  .blog-listing__item {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .blog-listing__listing {
    margin: 0 -15px;
  }

  .blog-post-wrapper {
    padding: 40px 0 0;
  }


}

@media (max-width: 767px){

  .blog-section {
    width: 100%;
    margin-top: 0;
    padding: 40px 0;
  }

  .news-post-share {
    display: none;
  }

  .blog-news-post-wrapper {
    padding-left: 0;
  }

  span.author-avatar {
    margin-left: 0;
  }

  .blog-post-banner .banner-bg {
    display: none;
  }

  .blog-post-banner .banner-mobile-image {
    display: block;
    width: 100%;
  }

  .news-post-body {
    padding: 40px 0;
  }

  .blog-comments {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-listing__item {
    width: 100%;
  }

  .blog-post-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .blog-post-author-desc {
    width: 100%;
    padding: 15px 0 0 0;
  }

  .table-content td {
    width: 100% !important;
    display: block;
    margin-bottom: 10px;
    padding: 15px !important;
  }

  .table-content img {
    margin: 0 auto;
    display: block;
  }

  .table-img td {
    width: 50% !important;
    display: inline-block;
    text-align: center;
  }

  .table-imge-col td {
    width: 100% !important;
    display: block;
    text-align: center;
    padding: 20px !important;
  }

  .table-wrap {
    overflow: auto;
    padding-bottom: 24px;
    width: 100%;
  }
}