/* Theme base styles */

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







html {
    
  --c-lochinvar: #319286; /* Teal */
  --c-swans-down: #CFE9E1; /* Light Teal */
  --c-te-papa-green: #1B363A; /* Dark Green */
  --c-burnt-sienna: #E8645E; /* Orange */
  --c-azalea: #F6C3C4; /* Light Orange */
  --c-merino: #F8F0EB; /* Lightest Orange / Off-White */
  --c-shark: #2B2E34; /* Essentially Black */
  --c-ship-gray: #3C3C3E; /* Dark Gray */

  --font-sofia-pro: sofia-pro, sans-serif;
  
  --font-lora: lora, serif;
  
  
  --global-font-size: 1.8rem;
  --global-lineheight: 1.94;
  --body-background: white;
  --body-font-color: var(--c-shark);
  --body-font-family: var(--font-sofia-pro);
  --global-weight-normal: 400;
  --global-weight-bold: 700;
  --global-radius: 0;

  --container-width: 140rem;
  --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;
}
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 .container--narrow {
    --container-padding: 4rem;
  } */

  .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: 1.842rem;
  margin-bottom: 1.842rem;
/*   letter-spacing: 0.015em; */
}

/* 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-lora);
/*   font-size: 4rem; */
/*   font-size: clamp(4rem, 2.768rem + 3.286vw, 7.5rem); */
  --min-fs: 4;
  --max-fs: 7.5;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.066em;
  color: var(--c-te-papa-green);
}
h2, .h2 {
  font-family: var(--font-lora);
/*   font-size: 3rem; */
/*   font-size: clamp(3rem, 1.944rem + 2.817vw, 6rem); */
  --min-fs: 3;
  --max-fs: 6;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.166em;
  color: var(--c-te-papa-green);
}
h3, .h3 {
  font-family: var(--font-lora);
/*   font-size: 2.4rem; */
/*   font-size: clamp(2.4rem, 2.013rem + 1.033vw, 3.5rem); */
  --min-fs: 2.4;
  --max-fs: 3.5;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.125em;
  color: var(--c-ship-gray);
}
h4, .h4 {
  font-family: var(--font-sofia-pro);
/*   font-size: 1.8rem; */
/*   font-size: clamp(1.8rem, 1.377rem + 1.127vw, 3rem); */
  --min-fs: 1.8;
  --max-fs: 3;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.166em;
  text-transform: uppercase;
}
h5, .h5 {
  font-family: var(--font-sofia-pro);
/*   font-size: 2rem; */
/*   font-size: clamp(2rem, 1.648rem + 0.939vw, 3rem); */
  --min-fs: 2;
  --max-fs: 3;
  font-weight: 400;
  line-height: 1.458em;
  letter-spacing: -0.025em;
  color: var(--c-te-papa-green);
}
h6, .h6 {
  font-family: var(--font-sofia-pro);
/*   font-size: 1.7rem; */
/*   font-size: clamp(1.7rem, 1.594rem + 0.282vw, 2rem); */
  --min-fs: 1.7;
  --max-fs: 2;
  font-weight: 700;
  line-height: 1.842em;
}

/*
@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: var(--c-lochinvar);
  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;
  cursor: pointer;
  overflow-wrap: break-word;
}

a:hover,
a:focus {
  color: var(--c-burnt-sienna);
}

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 var(--c-lochinvar);
  border-left: 0;
}
hr.hr--mini {
  max-width: 10rem;
}

/* Lists */
ul,
ol,
dl {
  margin-top: 1.842rem;
  margin-bottom: 1.842rem;
  list-style-position: outside;
/*   letter-spacing: 0.015em; */
}

/* 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: 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;
}
.button {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none ;
  transition: color 0.15s ease-out;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0.7em calc(2em + 1.58rem) 0.9em 1.2em; /* 1.58rem is icon width */
  font-family: inherit;
  font-size: var(--global-font-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-te-papa-green);
  background-color: var(--c-burnt-sienna);
  border: 0.2rem solid var(--c-burnt-sienna);
  border-radius: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.button::before {
  content: '';
  display: block;
  background-color: white;
  border-radius: 0 0 2.8rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: border-radius 0.15s ease-out, transform 0.15s ease-out;
}

.button:hover,
.button:focus {
  color: white;
}

.button:hover::before,
.button:focus::before {
  border-radius: 0 0 11.2rem 0;
  transform: translate(-100%, -100%);
/*   transform: translateY(-100%); */
}

.button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.865' height='15.865' viewBox='0 0 15.865 15.865'%3E%3Cpath d='M8.684,21.262,19.647,10.3v4.741a1.322,1.322,0,1,0,2.644,0V7.106A1.32,1.32,0,0,0,20.97,5.785H13.037a1.322,1.322,0,1,0,0,2.644h4.741L6.814,19.392a1.322,1.322,0,0,0,1.87,1.87Z' transform='translate(-6.427 -5.784)' fill='%23000000'/%3E%3C/svg%3E");
  display: block;
  color: inherit;
  width: 1.58rem;
  height: 1.58rem;
  position: absolute;
  right: 1.2em;
  top: 0.8em;
  filter: invert(25%) sepia(2%) saturate(7463%) hue-rotate(140deg) brightness(68%) contrast(94%); /* dark green */
  transition: filter 0.15s ease-out;
}

.button:hover::after,
.button:focus::after {
  filter: invert(100%) sepia(0) saturate(0) hue-rotate(0) brightness(100%) contrast(100%); /* white */
}

.button--te-papa-green {
  color: var(--c-merino);
}
.button--te-papa-green::before {
  background-color: var(--c-te-papa-green);
}
.button--te-papa-green::after {
  filter: invert(100%) brightness(100%) contrast(100%);
}

.button--merino::before {
  background-color: var(--c-merino);
}

.button--no-icon {
  padding-right: 1.2em;
}
.button--no-icon::after {
  content: none;
}

.button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}



.hs-button {  
  display: inline-block;
  vertical-align: middle;
  text-decoration: none ;
  transition: background-color 0.15s ease-out, color 0.15s ease-out;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0.7em 1.2em 0.9em 1.2em;
  font-family: inherit;
  font-size: var(--global-font-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-te-papa-green);
  background-color: white;
  border: 0.2rem solid var(--c-burnt-sienna);
  border-radius: 0;
}
.hs-button:hover,
.hs-button:focus {
  color: white;
  background-color: var(--c-burnt-sienna);
}



.button--alt {
  padding: 0.4em 0;
  background-color: transparent;
  border: none;
}
.button--alt::before {
  content: none;
}
/* underline */
.button--alt::after {
  content: '';
  background-color: var(--c-burnt-sienna);
  border-radius: 0.1rem;
  top: initial;
  right: initial;
  bottom: 0;
  height: 0.2rem;
  width: 100%;
  filter: none !important;
}
.button--alt:hover,
.button--alt:focus {
  color: var(--c-burnt-sienna);
}



.button--expanded {
  width: 100%;
}
[type='text'],
[type='password'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='month'],
[type='week'],
[type='email'],
[type='number'],
[type='search'],
[type='tel'],
[type='time'],
[type='url'],
[type='color'],
textarea,
select {
  display: block;
  width: 100%;
  height: 5.4rem;
  padding: 0.5rem 1.8rem;
  margin-bottom: 2.4rem;
  border: 0.2rem solid transparent;
  border-radius: var(--global-radius);
  background-color: var(--c-merino);
  font-family: inherit;
  font-weight: normal;
  line-height: 1.5;
  color: var(--body-font-color);
  transition: box-shadow 0.15s ease-out, border-color 0.25s ease-out;
  appearance: none;
}

[type='file'] {
  margin-bottom: 2.4rem;
}

[type='text']:hover,
[type='text']:focus,
[type='password']:hover,
[type='password']:focus,
[type='date']:hover,
[type='date']:focus,
[type='datetime']:hover,
[type='datetime']:focus,
[type='datetime-local']:hover,
[type='datetime-local']:focus,
[type='month']:hover,
[type='month']:focus,
[type='week']:hover,
[type='week']:focus,
[type='email']:hover,
[type='email']:focus,
[type='number']:hover,
[type='number']:focus,
[type='search']:hover,
[type='search']:focus,
[type='tel']:hover,
[type='tel']:focus,
[type='time']:hover,
[type='time']:focus,
[type='url']:hover,
[type='url']:focus,
[type='color']:hover,
[type='color']:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  box-shadow: 0 0 0 0.4rem rgba(255,255,255,0.2);
  border-color: rgba(0,0,0,0.1);
}

[type='text']:focus,
[type='password']:focus,
[type='date']:focus,
[type='datetime']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='week']:focus,
[type='email']:focus,
[type='number']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='url']:focus,
[type='color']:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--c-te-papa-green);
}

textarea {
  height: auto;
  min-height: 20rem;
  max-width: 100%;
}

select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 3.2rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16.45" height="9.225" viewBox="0 0 16.45 9.225"><path d="M18,27.45a1,1,0,0,1-.707-1.707l6.518-6.518-6.518-6.518a1,1,0,0,1,1.414-1.414l7.225,7.225a1,1,0,0,1,0,1.414l-7.225,7.225A1,1,0,0,1,18,27.45Z" transform="translate(27.45 -17) rotate(90)" fill="%231B363A"/></svg>');
  background-origin: content-box;
  background-position: right -2.2rem center;
  background-repeat: no-repeat;
  background-size: 1.4rem 0.8rem;
}

select[multiple] {
  height: auto;
  background-image: none;
}

label {
  display: block;
/*   font-size: 1.6rem; */
  line-height: 1.3em;
  font-weight: 400;
  margin: 0 0 1rem 2rem;
}

.hs-form .hs-field-desc {
  font-size: 1.5rem;
  line-height: 1.5em;
  color: var(--c-ship-gray);
  margin: -0.5rem 0 .5rem 2rem;
}

/* Inputs List */

.hs-form ul.inputs-list:not(.hs-error-msgs) {
  margin: 0 0 2.4rem 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.hs-form ul.inputs-list:not(.hs-error-msgs) label {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: baseline;
  font-size: 1.9rem;
  column-gap: 1rem;
}

.hs-form .hs-form-field ul.inputs-list:not(.hs-error-msgs) span {
  font-weight: 400;
}

/* Error */

.hs-form-required {
  color: #B11A11;
  margin-left: 0.2rem;
}

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

.hs-error-msgs {
  position: relative;
  top: -1rem;
  margin: 0;
  list-style: none;
  color: #B11A11;
}

.hs-error-msg {
  font-size: 1.6rem;
  font-weight: 400;
}

/* Legal */

.legal-consent-container {
  font-size: 1.6rem;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin: 0 !important;
}

/* Captcha */

.hs_recaptcha {
  margin-bottom: 2rem;
}

/* Success */
.submitted-message {
  border: 0.2rem solid #1D7006;
  padding: 2rem 2rem 2rem 6rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><g transform="translate(-48 -48)"><path d="M60.5,48A12.5,12.5,0,1,1,48,60.5,12.514,12.514,0,0,1,60.5,48Zm0,23.077A10.577,10.577,0,1,0,49.923,60.5,10.589,10.589,0,0,0,60.5,71.077Z" fill="%231D7006"/><path d="M148.423,171.538a.961.961,0,0,1-.715-.318l-3.462-3.846a.962.962,0,1,1,1.429-1.286l2.722,3.024,7.366-8.769a.962.962,0,0,1,1.473,1.237l-8.077,9.615a.962.962,0,0,1-.72.343Z" transform="translate(-90.231 -105.269)" fill="%231D7006"/></g></svg>');
  background-position: 2rem 2.3rem;
  background-repeat: no-repeat;
  background-size: 2.5rem 2.5rem;
  line-height: 1.6;
  min-height: 7.5rem;
}

/* Fix Column Layouts */

.hs-form fieldset {
  max-width: inherit !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field,
.hs-form fieldset.form-columns-2 .hs-form-field,
.hs-form fieldset.form-columns-3 .hs-form-field {
  float: none !important;
  width: 100% !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field .input,
.hs-form fieldset.form-columns-2 .hs-form-field .input,
.hs-form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: 0 !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field .hs-input:not([type='checkbox']):not([type='radio']),
.hs-form fieldset.form-columns-2 .hs-form-field .hs-input:not([type='checkbox']):not([type='radio']),
.hs-form fieldset.form-columns-3 .hs-form-field .hs-input:not([type='checkbox']):not([type='radio']) {
  width: 100% !important;
}

@media (min-width: 576px) {

  .hs-form fieldset.form-columns-2,
  .hs-form fieldset.form-columns-3 {
    display: grid;
    column-gap: 2rem;
  }

  .hs-form fieldset.form-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hs-form fieldset.form-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }

}
svg:not(:root).svg-inline--fa {
  overflow: visible;
}
.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}
.svg-inline--fa.fa-lg {
  vertical-align: -0.225em;
}
.svg-inline--fa.fa-w-1 {
  width: 0.0625em;
}
.svg-inline--fa.fa-w-2 {
  width: 0.125em;
}
.svg-inline--fa.fa-w-3 {
  width: 0.1875em;
}
.svg-inline--fa.fa-w-4 {
  width: 0.25em;
}
.svg-inline--fa.fa-w-5 {
  width: 0.3125em;
}
.svg-inline--fa.fa-w-6 {
  width: 0.375em;
}
.svg-inline--fa.fa-w-7 {
  width: 0.4375em;
}
.svg-inline--fa.fa-w-8 {
  width: 0.5em;
}
.svg-inline--fa.fa-w-9 {
  width: 0.5625em;
}
.svg-inline--fa.fa-w-10 {
  width: 0.625em;
}
.svg-inline--fa.fa-w-11 {
  width: 0.6875em;
}
.svg-inline--fa.fa-w-12 {
  width: 0.75em;
}
.svg-inline--fa.fa-w-13 {
  width: 0.8125em;
}
.svg-inline--fa.fa-w-14 {
  width: 0.875em;
}
.svg-inline--fa.fa-w-15 {
  width: 0.9375em;
}
.svg-inline--fa.fa-w-16 {
  width: 1em;
}
.svg-inline--fa.fa-w-17 {
  width: 1.0625em;
}
.svg-inline--fa.fa-w-18 {
  width: 1.125em;
}
.svg-inline--fa.fa-w-19 {
  width: 1.1875em;
}
.svg-inline--fa.fa-w-20 {
  width: 1.25em;
}
.bg-splotch {
  --bg-position: bottom;
  background-color: #f4f4f4;
  background-image: url(https://2475857.fs1.hubspotusercontent-na1.net/hubfs/2475857/raw_assets/public/mya-2022/images/bg-splotchy.jpg);
  background-repeat: no-repeat;
  background-position: var(--bg-position);
  background-size: cover;
}


.bg-te-papa-green {
  background-color: var(--c-te-papa-green);
}

.bg-merino {
  background-color: var(--c-merino);
}

.bg-white {
  background-color: white;
}

.bg-swans-down {
  background-color: var(--c-swans-down);;
}


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




/* If you change headerBP, also change the breakpoint in hero module css */

/* Navigation Skipper */

.skip-to-content {
  position: absolute;
  top: -4.2rem;
  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;
  transition: top 1s ease-in, background-color 0.5s ease-out;
  z-index: 100;
}
.skip-to-content:focus {
  top: 0;
  transition: top 0.1s ease-out, background-color 0.5s ease-out;
}
.skip-to-content:hover {
  background-color: #861018;
}



.site-header-container {
  --header-height: 8.6rem;
  height: var(--header-height);
}
@media (min-width: 1200px) {
  .site-header-container {
    --header-height: 11.1rem;
  }
}

.site-header {
  width: 100%;
  background-color: var(--c-merino);
  padding: 3rem 0 0.8rem;
  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%);
}

/* .site-header.is-at-top {
  position: relative;
}
.site-header.is-not-at-top {
  position: fixed;
} */


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


.site-header__inner {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1200px) {
  .site-header {
/*     padding: 5.2rem 0 4.5rem; */
  }
  .site-header__inner {
    grid-template-columns: repeat(2, auto);
  }
}




.site-header__logo {
  color: var(--c-burnt-sienna);
  line-height: 1;
  transform: translateY(0.26em);
}
.site-header__logo:hover,
.site-header__logo:focus {
  color: var(--c-lochinvar);
}
.site-header__logo svg {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .site-header__logo {
    width: 8.2rem;
  }
}

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


/* Main Navigation */
/* .main-nav {
  display: none;
}
@media (min-width: 1200px) {
  .main-nav {
    display: flex;
  }
} */
.main-nav a {
  text-decoration: none !important;
  font-weight: 400;
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  line-height: 1.2;
}

.main-nav__list {
  font-size: 1.8rem;
  display: flex;
  gap: 4rem;
}
.main-nav__list a {
  color: var(--c-shark);

}
.main-nav__list a:hover,
.main-nav__list a:focus {
  color: var(--c-lochinvar);
}

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

.main-nav__link {
  position: relative;
  padding: 4.5rem 0;
  text-transform: uppercase;
}
.main-nav__link::before {
  content: '';
  display: block;
  height: 1rem;
  width: 100%;
  background-color: var(--c-lochinvar);
  position: absolute;
  top: 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}
.main-nav__link:hover::before,
.main-nav__link:focus::before {
  opacity: 1;
  transform: translateY(0);
}
.main-nav__link.active-node,
.main-nav__link.active-branch,
.hs-blog-id-88608771168 .main-nav__link[data-label="Podcast"],
.hs-blog-id-85869471318 .main-nav__link[data-label="Blog"] {
  color: var(--c-lochinvar);
}
.main-nav__link.active-node::before,
.main-nav__link.active-branch::before,
.hs-blog-id-88608771168 .main-nav__link[data-label="Podcast"]::before,
.hs-blog-id-85869471318 .main-nav__link[data-label="Blog"]::before,
.main-nav__item--has-children:hover .main-nav__link::before,
.main-nav__item--has-children:focus .main-nav__link::before {
  opacity: 1;
  transform: translateY(0);
}


.main-nav__dropdown {
  /* display:none; */
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(2rem);
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out, transform 0.15s ease-out;
  position: absolute;
  top: 100%;
  z-index: 1;
  left: 50%;
  min-width: 21rem;
  background-color: white;
  box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.15);
  padding: 1.2rem 0;
  font-size: 1.5rem;
}

/* opening dropdown */
.main-nav__item--has-children:hover > .main-nav__dropdown {
  /* display: block; */
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.main-nav__dropdown a {
  text-align: center;
  padding: 0.6rem 1.2rem;
}
.main-nav__dropdown a:hover,
.main-nav__dropdown a:focus,
.main-nav__dropdown a.active-node {
  color: var(--c-lochinvar);
}



.site-header__signup {

}












/* Mobile Navigation */

@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;
  border-radius: 0.15rem;
  background-color: var(--c-shark);
  opacity: 1;
  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) {
  background-color: var(--c-lochinvar);
  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 {
  box-shadow: 0 0.4rem 0.4rem rgba(43,46,52,0.15);
  padding: 1.5rem var(--container-padding) 2.5rem;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  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;
/*   backdrop-filter: blur(0.2rem); */
  height: calc(100vh - var(--header-height));
  background-color: var(--c-merino);
}

/* top border */
.mobile-nav__menu::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 0.1rem;
  background-color: var(--c-lochinvar);
  margin: 0 auto;
}
.mobile-nav__menu.animate-in::before {
  width: calc(100% - 7.2rem);
  transition: width 0.15s ease-out 0.15s;
}
  
/* background color */
.mobile-nav__menu::after {
/*   content: ''; */
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-merino);
  opacity: 0.95;
}

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

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

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.mobile-nav a {
  text-decoration: none !important;
}

.mobile-nav__list {
  font-size: 1.8rem;
  text-align: center;
}
.mobile-nav__list a {
  display: inline-block;
  color: var(--c-shark);
  font-weight: 400;
}
.mobile-nav__list a:hover,
.mobile-nav__list a:focus,
.mobile-nav__list a.active-branch,
.mobile-nav__list a.active-node,
.hs-blog-id-88608771168 .mobile-nav__list a[data-label="Podcast"],
.hs-blog-id-85869471318 .mobile-nav__list a[data-label="Blog"] {
  color: var(--c-lochinvar);
}

.mobile-nav__link {
  text-transform: uppercase;
  padding: 1rem;
}

.mobile-nav__submenu {
  font-size: 1.5rem;
}
.mobile-nav__submenu-link {
  padding: 0.6rem 1rem;
}





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;
}
.lp-site-header {
  background-color: var(--c-athens-gray);
  text-align: center;
  padding: 2rem 0;
}

.lp-site-header__logo {
  display: inline-block;
}

@media (max-width: 991px) {
  .lp-site-header__logo {
    max-width: 13rem;
  }
}
@media (min-width: 992px) {
  .lp-site-header {
    padding: 4.5rem 0;
  }
}
.site-footer {
  background-color: var(--c-te-papa-green);
  padding: 4.5rem 0;
  color: white;
}

.site-footer__container {
  gap: 2rem;
  display: grid;
  --container-width: 112rem;
}
@media (min-width: 992px) {
  .site-footer__container {
/*     grid-template-columns: repeat(3,1fr); */
    
    grid-template-columns: repeat(3,fit-content(33%));
    justify-content: space-between;
    
/*     display: flex; */
    
  }
}



@media (min-width: 992px) {
  
  .site-footer__col-company {
    order: 1;
  }

  .site-footer__col-signup {
    order: 3;
  }

  .site-footer__col-menu {
    order: 2;
  }
}






.site-footer__logo {
  line-height: 1;
  text-align: center;
  margin-bottom: 1rem;
}
.site-footer__logo a {
  display: inline-block;
  color: var(--c-swans-down);
}
.site-footer__logo a:hover,
.site-footer__logo a:focus {
  color: var(--c-burnt-sienna);
}
/* @media (min-width: 992px) {
  .site-footer__logo {
    text-align: left;
    margin-left: 2.2rem;
  }
} */

.site-footer__socials {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.site-footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  color: var(--c-swans-down);
  transition: color 0.15s ease-out;
}
.site-footer__socials-facebook a {
  width: 3.2rem;
}
.site-footer__socials-podcast a {
  width: 3.4rem;
}
.site-footer__socials a:hover,
.site-footer__socials a:focus {
  color: var(--c-burnt-sienna);
}
@media (min-width: 992px) {
  .site-footer__socials {
    justify-content: left;
  }
}


.site-footer__col-signup {
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer__col-signup {
    text-align: right;
  }
}


.site-footer__col-menu {
  text-align: center;
  line-height: 1.2;
}

.site-footer__menu {
  margin: 0 0 2rem;
  padding: 0 0 2.2rem;
  list-style: none;
  font-size: 1.4rem;
  text-transform: uppercase;
  display: flex;
  gap: 1.4rem 2.8rem;
  border-bottom: 0.1rem solid var(--c-swans-down);
  flex-direction: column;
  justify-content: center;
}
.site-footer__menu a {
  font-weight: 400;
  color: white;
  text-decoration: none;
}
.site-footer__menu a:hover,
.site-footer__menu a:focus {
  color: var(--c-burnt-sienna);
}
@media (min-width: 576px) {
  .site-footer__menu {
    display: inline-flex;
    flex-direction: row;
  }
}

.site-footer__legal {
  font-size: 1.2rem;
  text-transform: uppercase;
}
.site-footer__legal-divider {
  margin: 0 1rem;
}
.site-footer__legal a {
  font-weight: 400;
  color: white;
  text-decoration: none;
}
.site-footer__legal a:hover,
.site-footer__legal a:focus {
  color: var(--c-burnt-sienna);
}



.column-helper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000000;
  pointer-events: none;
}
.column-helper .container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
/*   gap: 0.2rem; */
}
.column-helper .container div {
  background-color: rgba(0,0,0,0.05);
  border-width: 0 0.1rem;
  border-color: rgba(255,255,255,0.5);
  border-style: solid;
}
.column-helper .container div:nth-child(2),
.column-helper .container div:nth-child(9) {
  background-color: rgba(0,0,0,0.15);
}
.column-helper .container div:nth-child(3),
.column-helper .container div:nth-child(4),
.column-helper .container div:nth-child(5),
.column-helper .container div:nth-child(6),
.column-helper .container div:nth-child(7),
.column-helper .container div:nth-child(8) {
  background-color: rgba(0,0,0,0.25);
}





/* .leadinModal {
  display: none !important;
} */

/* #hubspot-messages-iframe-container.widget-align-right {
  display: none !important;
} */

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

/* Index */

.blog-header {
/*   display: flex; */
  margin: 6rem 0 2rem;
  justify-content: center;
  
}
@media (min-width: 768px) {
  .blog-header {
    display: flex;
    margin: 8rem 0 3rem;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .blog-header {
    margin: 10rem 0 4rem;
  }
}
.blog-header.has-heading {
  flex-direction: column;
}
.blog-header h2 {
  margin-top: 0;
}
@media (min-width: 992px) {
  .blog-header {
/*     justify-content: center; */
  }
  .blog-header.has-heading {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 3.6rem;
  }
}

@media (min-width: 576px) {
  .blog-header__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}


select.blog-topic-select {
  width: 20rem;
  height: auto;
  background-color: transparent;
  border: none;
  position: relative;
  border-bottom: 0.2rem solid var(--c-burnt-sienna);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" viewBox="0 0 12 10"><path d="M6,0l6,10H0Z" transform="translate(12 10) rotate(180)" fill="%23e8645e"/></svg>');
  background-size: 1.2rem 1rem;
  background-position: right -2rem center;
  padding: 0.2rem 2rem 0.2rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 3rem;
}
select.blog-topic-select option {
  text-transform: none;
}

.blog-search {
  margin-bottom: 2.4rem;
}
.blog-search__search-input-wrap {
  position: relative;
}
.blog-search__search-input {
  margin: 0;
  padding-right: 4.6rem;
}
.blog-search__search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.6rem;
  height: 100%;
  cursor: pointer;
  color: var(--c-te-papa-green);
  transition: color 0.15s ease-out;
}
.blog-search__search-button:hover,
.blog-search__search-button:focus {
  color: var(--c-burnt-sienna);
}



/* Blog Listing */

.blog-listing {
  display: grid;
  gap: 6rem 4rem;
  margin-bottom: 9rem;
  margin-top: 8rem;
}
.blog-header + .blog-listing {
  margin-top: 0;
}
@media (min-width: 768px) {
  .blog-listing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .blog-listing {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-listing__post-image {
  display: block;
  position: relative;
  height: 430px !important;
  padding-bottom: 75%;
  background-color: var(--c-merino);
  margin-bottom: 3rem;
}
.blog-listing__post-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog-listing__post-meta {
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .blog-listing__post-meta {
    font-size: 1.6rem;
  }
}
.blog-listing__post-title {
  margin: 1.5rem 0;
}
.blog-listing__post-title a {
  text-decoration: none;
  color: var(--c-te-papa-green);
}
.blog-listing__post-title a:hover,
.blog-listing__post-title a:focus {
  color: var(--c-burnt-sienna);
}
.blog-listing__post-summary {
  margin: 1.5rem 0 0;
}



/* Pagination */

.blog-pagination {
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1.5em;
  margin: 9rem 0;
}

.blog-pagination__link {
  color: var(--c-te-papa-green);
  text-decoration: none !important;
}

.blog-pagination__numbers {
  display: flex;
  justify-content: center;
}

.blog-pagination__number-link {
  border-radius: 100%;
  border: 0.2rem solid var(--c-azalea);
  background-color: transparent;
  width: 4rem;
  height: 4rem;
  line-height: 3.4rem;
  text-align: center;
  margin: 0 0.5rem;
  transition: border-color 0.15s ease-out;
}

.blog-pagination__number-link:not(.blog-pagination__link--active):hover,
.blog-pagination__number-link:not(.blog-pagination__link--active):focus {
  border-color: var(--c-burnt-sienna);
  color: var(--c-te-papa-green);
}

.blog-pagination__link--active {
  border-color: var(--c-burnt-sienna);
  background-color: var(--c-burnt-sienna);
  color: white !important;
  cursor: initial;
}

.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
  margin: 0 2rem;
  text-transform: uppercase;
}

.blog-pagination__link-text {
  line-height: 1em;
}

.blog-pagination__prev-link svg {
  margin-right: 0.8rem;
}

.blog-pagination__next-link svg {
  margin-left: 0.8rem;
}

.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  opacity: 0.25;
  cursor: initial;
}

@media (max-width: 575px) {
  .blog-pagination__prev-link {
    order: 1;
  }
  .blog-pagination__next-link {
    order: 2;
  }
  .blog-pagination__numbers {
    order: 3;
    flex-basis: 100%;
    margin-top: 2rem;
  }
}



/* Post Hero (Blog and Podcast Single Page) */

.post-hero {
  position: relative;
  padding: 3.5rem 0 7rem;
  line-height: 1;
  overflow: hidden;
}
.post-hero::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-swans-down);
  opacity: 0.24;
  z-index: 0;
}
.post-hero__inner {
  position: relative;
  z-index: 1;
}
.post-hero__back {
  margin: 0 0 2.5rem;
  line-height: 1.2;
}
.post-hero__back a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--c-te-papa-green);
}
.post-hero__back a span {
  margin-left: 0.8rem;
  transition: color 0.15s ease-out;
}
.post-hero__back a:hover span,
.post-hero__back a:focus span {
  color: var(--c-burnt-sienna);
}
.post-hero__content {
  text-align: center;
}
.post-hero__content :last-child {
  margin-bottom: 0;
}
.post-hero__divider {
  width: 9.8rem;
  height: 0.1rem;
  background-color: var(--c-lochinvar);
  margin: 3rem auto;
}
.post-hero__podcast-name {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem 0;
}
.post-hero__podcast-episode {
  color: var(--c-te-papa-green);
  margin: 2.5rem 0;
}
.post-hero__name {
  margin: 2.5rem 0;
}
.post-hero__meta {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}
.post-hero__meta-divider {
  margin: 0 1rem;
}
.post-hero__accent {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  /* https://codepen.io/sosuke/pen/Pjoqqp */
  filter: invert(44%) sepia(59%) saturate(423%) hue-rotate(123deg) brightness(97%) contrast(91%);
  max-width: 50vw;
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
}
.post-hero__accent--top {
  top: 0;
  transform: translateY(-40%);
}
.post-hero__accent--bottom {
  bottom: 0;
  transform: translateY(58%);
}



/* Post Single */

.blog-post__main-container {
  margin-bottom: 6rem;
}
.blog-post__main {
  margin-top: 5rem;
}
.blog-post__aside {
  margin-top: 3.5rem;
}
@media (min-width: 992px) {
  .blog-post__main-container {
    display: grid;
    grid-template-columns: repeat(10,1fr);
    margin-bottom: 10rem;
  }
  .blog-post__main {
    grid-column: 1 / span 6;
  }
  .blog-post__aside {
    grid-column: 8 / span 3;
  }
}

.blog-post__featured-image {
  margin: -5rem 0 5rem;
}

.blog-post__author {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.blog-post__author-image {
  flex: 0 0 8rem;
  border-radius: 50%;
}
.blog-post__author-name {
  flex: 1 1 auto;
}

.blog-post__tags {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 0.1rem solid var(--c-lochinvar);
}
.blog-post__tags-heading {
  margin: 0 0 2rem;
}
.blog-post__tags-list {
  color: var(--c-burnt-sienna);
  text-transform: uppercase;
  line-height: 1.3em;
  font-weight: 700;
}
.blog-post__tags-list a {
  color: var(--c-burnt-sienna);
  text-decoration: none;
}
.blog-post__tags-list a:hover,
.blog-post__tags-list a:focus {
 color: var(--c-te-papa-green);
}



/* Related Posts */

.related-posts {
  padding: 8rem 0 11rem;
}
.related-posts .blog-listing {
  margin: 5rem 0 0;
}
@media (min-width: 1200px) {
  .related-posts .blog-listing__post:nth-child(4) {
    display: none;
  }
}



/* Post Sharing */

.blog-post__sharing {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 2.2rem;
  margin: 2rem 0; 
}
.blog-post__sharing-label {
  color: var(--c-burnt-sienna);
  font-weight: 700;
  text-transform: uppercase;
}
.blog-post__sharing-links {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1.6rem;
}
.blog-post__sharing a {
  text-decoration: none !important;
  color: var(--c-burnt-sienna);
  background-color: var(--c-burnt-sienna);
  border-radius: 50%;
  border: 0.3rem solid var(--c-burnt-sienna);
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-post__sharing a:before {
  background-color: white;
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 0.15s ease-out;
  width: 100%;
  z-index: -1;
}
.blog-post__sharing a:hover,
.blog-post__sharing a:focus {
  color: white;
}
.blog-post__sharing a:focus:before,
.blog-post__sharing a:hover:before {
  transform: translate(-200%,-100%) scale(3);
}
@media (max-width: 991px) {
  .blog-post__aside .blog-post__sharing {
    display: none;
  }
}



/* Comments */

.blog-comments {
  margin-top: 6rem; 
  margin-bottom: 9rem;
}
@media (min-width: 992px) {
  .blog-comments {
    margin-top: 9rem;
  }
}

.new-comments {
  margin-bottom: 6rem;
  border-bottom: 0.1rem solid var(--c-lochinvar);
}

.comment {
  border-top: 0.1rem solid var(--c-lochinvar);
  padding: 3.5rem 0;
  margin: 0;
}

.comment:not(.depth-0) + .comment.depth-0 {
  margin-top: 2rem;
}

.comment:not(.depth-0) {
  border-color: #ccc;
}

.comment.depth-1 { margin-left:6%; }
.comment.depth-2 { margin-left:12%; }
.comment.depth-3 { margin-left:18%; }
.comment.depth-4 { margin-left:24%; }
.comment.depth-5 { margin-left:30%; }
.comment.depth-6 { margin-left:36%; }
.comment.depth-7 { margin-left:42%; }
.comment.depth-8 { margin-left:48%; }
.comment.depth-9 { margin-left:54%; }

.comment-date,
.comment-from {
  display: inline-block;
}

.comment-from h4 {
  font-size: var(--body-font-size);
  font-weight: 700;
  letter-spacing: normal;
  margin: 0 1rem 0 0;
}

.comment-from h4 a {
  color: var(--body-font-color);
}

.comment-from h4 a:after {
  content: '';
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="external-link-alt" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-external-link-alt fa-w-16"><path fill="rgb%28102, 102, 102%29" d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z" class=""></path></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  display:inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.5rem;
}

.comment-date {
  font-size: 0.8em;
  color: #666;
}

.comment-body {
  margin-top: 1rem;
}

.comment-body p:last-child {
  margin-bottom: 1em;
}

.comment-reply-to {
  background: none;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3em;
  font-style: italic;
  text-transform: none;
  padding: 0;
  border: none;
  border-radius: 0;
  letter-spacing: initial;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.11em;
  color: var(--body-font-color);
  opacity: 0.5;
  transition: all 0.15s ease-out;
}

.comment-reply-to:before {
  content: '';
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="reply" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-reply fa-w-16"><path fill="currentColor" d="M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z" class=""></path></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  display:inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.7rem;
}

.comment-reply-to:hover,
.comment-reply-to:focus {
  color: inherit;
  text-decoration-color: inherit;
  opacity: 1;
}

.replying {
  padding-left: 2em;
  padding-bottom: 3.5rem;
}

.replying-to {
  display: block;
  margin-bottom: 3rem;
  font-style: italic;
  font-weight: 700;
}

.hs-common-confirm-message{background-color:#cde3cc!important;border:1px solid #360!important;color:#360!important;font-size:15px!important;border-radius:3px!important;padding:8px!important;margin:8px 0!important;}
/* Featured Podcast on Podcast Index */



/* Podcast Single */

.podcast-post__top {
  margin: 5rem 0 6rem;
}
.podcast-post__image {
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .podcast-post__top {   
    display: flex;
    gap: 3.5rem;
    margin: 7rem 0 8rem;
  }
  .podcast-post__image {
    flex: 0 1 28rem;
    margin: 0;
  }
  .podcast-post__player {
    flex: 1 1 auto;
  }
}

@media (min-width: 992px) {
  .podcast-post__main-container {
    display: grid;
    grid-template-columns: repeat(10,1fr);
  }
  .podcast-post__main {
    grid-column: 1 / span 6;
  }
  .podcast-post__aside {
    grid-column: 8 / span 3;
  }
}

.podcast-post__meta {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.podcast-post__meta-divider {
  margin: 0 1rem;
}



.podcast-post__aside-heading {
  margin-bottom: 2rem;
}

.podcast-post__tags {
  color: var(--c-shark);
  text-transform: uppercase;
  line-height: 1.3em;
  font-weight: 700;
}
.podcast-post__tags a {
  color: var(--c-shark);
  text-decoration: none;
}
.podcast-post__tags a:hover,
.podcast-post__tags a:focus {
 color: var(--c-burnt-sienna);
}

.podcast-post__links {
  list-style: none;
  margin-left: 0;
  line-height: 1.4;
}
.podcast-post__links li {
  margin-bottom: 1rem;
}
.podcast-post__links a {
  text-transform: uppercase;
  color: var(--body-font-color);
  font-weight: 700;
  text-decoration-color: var(--c-burnt-sienna);
  text-decoration-thickness: 0.2rem;
}
.podcast-post__links a:hover,
.podcast-post__links a:focus {
  color: var(--c-burnt-sienna);
}



/* Podcast Prev/Next Nav */

.podcast-prev-next {
  margin: 6rem 0;
}
@media (min-width: 576px) {
  .podcast-prev-next {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10%;
  }
}
@media (min-width: 992px) {
  .podcast-prev-next {
    margin-bottom: 9rem;
    gap: 20%;
  }
}
.podcast-prev-next a {
  display: block;
  text-decoration: none;
  font-weight: 400;
  margin-bottom: 2rem;
}
.podcast-prev-next__next {
  text-align: left;
  grid-column-start: 1;
}
.podcast-prev-next__prev {
  text-align: right;
  grid-column-start: 2;
}
.podcast-prev-next__label {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  line-height: 1;
  margin-bottom: 1.8rem;
}
.podcast-prev-next__prev .podcast-prev-next__label {
  justify-content: flex-end;
}
.podcast-prev-next__label-arrow {
  --radius: 2rem;
  background-color: var(--c-burnt-sienna);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 var(--radius);
  width: 5.8rem;
  height: 6.8rem;
}
.podcast-prev-next__prev .podcast-prev-next__label-arrow {
  border-radius: 0 0 var(--radius) 0;
}
.podcast-prev-next__label-arrow svg {
  width: 24.5%;
  height: auto;
}
@media (min-width: 768px) {
  .podcast-prev-next__label-arrow {
    --radius: 4rem;
    width: 7.7rem;
    height: 9rem;
  }
}
.podcast-prev-next__label-text {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-shark);
  transition: color 0.15s ease-out;
}
.podcast-prev-next__title {
  margin: 0;
  line-height: 1.166;
  transition: color 0.15s ease-out;
}
.podcast-prev-next a:hover .podcast-prev-next__label-text,
.podcast-prev-next a:hover .podcast-prev-next__title,
.podcast-prev-next a:focus .podcast-prev-next__label-text,
.podcast-prev-next a:focus .podcast-prev-next__title {
  color: var(--c-burnt-sienna);
}