/* Theme base styles */

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

/* CSS Variables
-------------------------------------------- */

:root {
	--c-main: #0F0F0F;
	--c-second: #0096A6;
	--c-third: #1B4E6E;
  --c-fourth: #1698A8;
	--c-light: #F2F4F5;
	--c-highlight: #1698A8;
	--c-dark-tint: rgba(0, 0, 0, .8);
	--c-dark: #000000;
	--c-grey-medium: #333333;
	--c-grey-light: #A6A6A6;
	--c-super-light: #eaeaea;
	--c-white: #fff;
	--c-inv: #fff;

	--body-background: var(--c-white);
  
	--global-font-size: 17px;
	--global-weight-normal: 400;
	--global-weight-bold: 700;
	--global-lineheight: 1.64;
	--global-radius: 0;
	--col-gap: 40px;
	--content-padding: 3rem;
	--content-padding-mobile: 1rem;

	--font-heading: 'Open Sans', sans-serif;
	--font-heading-alt: 'Open Sans', sans-serif;
	--font-body: 'Open Sans', sans-serif;
  
  --blog-hero-overlap: -64px;

	--width-content: 1180px;
	--width-wide: 200rem;
	--width-nav: 160rem;
	--width-medium: 952px;
	--width-narrow: 850px;
}

/* 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;
  }
}
/* Alignment */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

@media (min-width:) {
  .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 (min-width:) {
  .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 (min-width:) {
  .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 (min-width:) {
  .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 (min-width:) {
  .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;
  var(--c-inv);
  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;
}

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

/* Normalize
-------------------------------------------- */

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

/* 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(--font-body);
  font-size: var(--global-font-size);
  font-weight: var(--global-weight-normal);
  line-height: var(--global-lineheight);
  color: var(--c-main);
  -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;
}

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

/* Base
-------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    color: var(--c-main);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.91;
}

/* Layout
-------------------------------------------- */
.site-main {
    padding-top: 12rem;
    overflow: hidden;
}
@media (min-width: 992px) {
    .site-main {
        padding-top: 16.8rem;
    }
}
.container {
    width: 100%;
    max-width: var(--width-content);
    margin-left: auto;
    margin-right: auto;
    padding-right: clamp(var(--content-padding-mobile), 3vw, var(--content-padding));
    padding-left: clamp(var(--content-padding-mobile), 3vw, var(--content-padding));
}
.container--narrow {
    max-width: var(--width-narrow);
}
.container--wide {
    max-width: var(--width-wide);
}
.container--medium {
    max-width: var(--width-medium);
}

.video-wrap {
    width: 100%;
    height: 0;
    padding: 56.25% 0 0;
    position: relative;
}
.video-wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

section {
    padding: 6rem 0;
    position: relative;
}
@media (min-width: 992px) {
    section {
        padding: 10rem 0;
    }
}

/* Helpers
-------------------------------------------- */

/* Background Colors */

.bg-white {
    background-color: var(--c-white);
}
.bg-second {
    color: var(--c-white);
    background-color: var(--c-second);
}
.bg-third {
    color: var(--c-white);
    background-color: var(--c-third);
}
.bg-light {
    background-color: var(--c-light);
}
.bg-super-light {
    background-color: var(--c-super-light);
}
.bg-dark {
    background-color: var(--dark);
}


/* 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: 2em;
  margin-bottom: 2em;
}

/* 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: .5em;
  margin-bottom: .5em;

  --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-heading);
  --min-fs: 4;
  --max-fs: 8.5;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}
h2, .h2 {
  font-family: var(--font-heading);
  --min-fs: 3.4;
  --max-fs: 6;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.28;
  text-transform: none;
}
h3, .h3 {
  font-family: var(--font-heading);
  --min-fs: 2.8;
  --max-fs: 4;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}
h4, .h4 {
  font-family: var(--font-heading-alt);
  --min-fs: 2.2;
  --max-fs: 3.2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}
h5, .h5 {
  font-family: var(--font-heading);
  --min-fs: 1.8;
  --max-fs: 2.4;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}
h6, .h6 {
  font-family: var(--font-heading-alt);
  --min-fs: 1.6;
  --max-fs: 1.8;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Links */
a {
  color: var(--c-highlight);
  text-decoration: underline;
  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 var(--c-main);
  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: 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;
}

/* Colors */

.color-white {
  color: var(--c-inv);
}

.color-main {
    color: var(--main);
}

.color-second {
    color: var(--second);
}

.color-third {
    color: var(--third);
}
.btn,
.cta_button,
.form-full .hs-submit .hs-button,
.hero-form .hs-submit .hs-button {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none ;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, opacity 0.15s ease-out;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 6px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-inv);
  background-color: var(--c-second);
  border: 2px solid var(--c-second);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn:hover,
.btn:focus {
}
.btn--second,
.form-full .form-btn--second .hs-submit .hs-button,
.hero-form .form-btn--second .hs-submit .hs-button {
  color: var(--c-inv);
  background-color: var(--c-third);
  border-color: var(--c-third);
}
.btn--second:hover,
.btn--second:focus {
}

.btn--outline,
.form-full .form-btn--outline .hs-submit .hs-button,
.hero-form .form-btn--outline .hs-submit .hs-button{
  color: var(--c-second);
  background-color: var(--c-inv);
  border-color: var(--c-second);
}
.btn--outline:hover,
.btn--outline:focus {
}

.btn--expanded {
  width: 100%;
}

.btn--large {
  font-size: 2.2rem;
}

.btn--small {
  font-size: 1.4rem;
}
/* Forms
-------------------------------------------- */

input[type="text"],
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"],
input[type="file"],
textarea,
select {
  width: 100%;
  margin-bottom: 1rem;
  padding: .5rem 1rem;
  border: 1px solid #ccc;
}

textarea {
  min-height: 10rem;
}

.hs-button {
	cursor: pointer
}

/* Inputs List */

.hs-form ul.inputs-list {
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}
.hs-form .hs-form-field ul.inputs-list .hs-input {
  position: relative;
  top: -2px;
  width: auto !important;
  margin: 0 1rem 0 0;
  height: auto;
  display: inline-block;
}
.hs-form .hs-form-field ul.inputs-list span {
  font-weight: 400;
}

/* Error */

.hs-input.invalid {
  border-color: red;
}
.hs-error-msgs {
  position: relative;
  top: -1rem;
  margin: 0;
  padding: 0 0 0 2rem !important;
  list-style: none;
  color: red;
  font-size: 1.4rem;
}
.hs-error-msgs:after {
  position: absolute;
  content: '▴';
  top: 0;
  left: 0;
}

/* Captcha */

.hs_recaptcha {
	margin-bottom: 2rem;
}

/* 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 {
  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,
.hs-form fieldset.form-columns-2 .hs-form-field .hs-input,
.hs-form fieldset.form-columns-3 .hs-form-field .hs-input {
  width: 100% !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field input[type="radio"].hs-input,
.hs-form fieldset.form-columns-2 .hs-form-field input[type="radio"].hs-input,
.hs-form fieldset.form-columns-3 .hs-form-field input[type="radio"].hs-input {
  width: auto !important;
}

@media (min-width: 480px) {
  .hs-form fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 0.75rem;
  }
}



/* 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: var(--c-inv) !important;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  border-right: 1px solid white;
  border-bottom: 1px 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 {  
  width: 100%;
  background-var(--c-inv);
  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;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--c-main);
}
@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: var(--c-main);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.secondary-nav__link:hover,
.secondary-nav__link:focus {
  color: var(--c-highlight);
}



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

.secondary-nav__dropdown {
  background: #fff;
  border: .1rem solid var(--c-main);
  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(--c-main);
  color: var(--c-main);
  display: block;
  font-weight: 700;
  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-highlight);
}

.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;
  border-bottom: 1px solid var(--c-main);
}
@media (min-width: 1200px) {
  .site-header__main {
    padding: 1.2rem 0;
  }
}
.container--nav {
  max-width: var(--width-nav);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.site-header__logo {
  line-height: 0;
  max-width: 25rem;
}

.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: 30px;
}

.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: var(--c-fourth);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.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-highlight);
}

.main-nav__button {
  cursor: pointer;
  align-items: center;
  background-color: transparent;
  border: none;
  display: flex;
  padding: 0 0.5rem;
  color: var(--c-main);
  padding: 0 0.1rem;
  width: 0;
}
.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: 78%;
  left: calc(50% - 5.5rem);
  margin: 0;
  list-style: none;
  width: 190px;
  background: #444444;
  border-top: 2px solid #1ABC9C;
  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: 15px 20px;
  font-size: 15px;
  color: var(--c-white);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: padding-left 0.15s;
}
.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 {
  padding-left: 23px;
  opacity: 1;
}

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



/* 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: var(--c-main);
  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 {
  z-index: 999;
  background-color: var(--c-inv);
  border: 1px solid var(--c-main);
  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: 1px solid var(--c-main);
}
.mobile-nav__item--has-children {
  display: grid;
  grid-template-columns: auto 58px;
}

.mobile-nav__link {
  display: block;
  padding: 2rem;
  color: var(--c-main);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-nav__link:hover,
.mobile-nav__link:focus {
  color: var(--c-highlight);
}

.mobile-nav__submenu-toggle {
  cursor: pointer;
  color: var(--c-main);
  border-left: 1px solid var(--c-main);
}
.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: 1px solid var(--c-main);
  transition: height 0.15s ease-out;
  grid-column: 1 / -1;
}
.mobile-nav__submenu:not(.is-open) {
  display: none;
}

.mobile-nav__submenu-item {
  border-top: 1px solid var(--c-main);
  border-left: 1px solid var(--c-main);
}
.mobile-nav__submenu-item:first-child {
  border-top: none;
}

.mobile-nav__submenu-link {
  display: block;
  padding: 2rem;
  color: var(--c-main);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-nav__submenu-link:hover,
.mobile-nav__submenu-link:focus {
  color: var(--c-highlight);
}

.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;
}
/* LP Header */

.header--lp .header-main {
  padding: 3rem 0;
}

.header--lp .header-top {
  height: 29px;
  background-color: #444;
}

.header--lp__logo {
  width: 353px;
  height: 52px;
}

.site-header-container.header_lp {
    height: 120px;
}

.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; */
}
.site-footer {
  background-color: var(--c-light);
  color: var(--c-grey-medium);
  position: relative;
  padding: 4rem 0 0;
  font-size: 15px;
  line-height: 1.93;
}
.site-footer__top {
  padding-bottom: 40px;
}
.site-footer__top .container {
  text-align: center;
}
.site-footer a {
  color: var(--c-grey-medium);
  text-decoration: none;
}
.site-footer__top h3 {
  margin-bottom: 17px;
  font-size: 15px;
  line-height: 11px;
  color: var(--c-grey-light);
}
.site-footer__logo img {
  width: 157px;
  height: 77px;
  margin-bottom: var(--col-gap);
}
.site-footer__top-right {
  display: flex;
  gap: var(--col-gap);
  justify-content: space-around;
  text-align: left;
}
.site-footer__bottom {
  text-align: center;
  color: var(--c-fourth);
  padding: 10px 0;
  background-color: #292A2F;
  font-size: 13px;
  line-height: 1.43;
}
.site-footer__bottom a {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--c-fourth);
}
@media (min-width: 600px) {
  .site-footer__top .container {
    display: flex;
    justify-content: space-between;
    gap: var(--col-gap);
    text-align: left;
  }
  .site-footer__top-right {
    gap: 100px;
  }
}
@media (min-width: 992px) {
  .site-footer {
    padding: 6rem 0 0;
  }
}
.site-footer__nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 2rem 4rem;
}
.site-footer__nav a {
  display: block;
  color: var(--c-grey-medium);
  text-decoration: none;
}
.site-footer__nav a:hover,
.site-footer__nav a:focus {
  color: var(--c-third);
}
@media (min-width: 992px) {
}

.site-footer__socials-list {
  display: flex;
  padding: 0;
  margin-left: 0;
  list-style: none;
  gap: 2rem;
}
.site-footer__socials a {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-second);
  background: var(--c-third);
  transition: all .3s;
}
.site-footer__socials a:hover,
.site-footer__socials a:focus {
  color: var(--c-third);
  background: var(--c-second);
}
.site-footer__socials a svg {
  width: 1.8rem;
  height: 1.8rem;
}
@media (min-width: 992px) {
}

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

/* Blog Header */
.header--blog .header-top {
  height: 29px;
  background-color: #444;
}
.header--blog .header-main {
  padding: 3rem 0;
}
.header--blog__logo {
  width: 353px;
  height: 52px;
}
.header--blog .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: space-between;
        -ms-flex-pack: space-between;
            justify-content: space-between;
}


/* Blog Listing */
.blog-listing__item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: 0;
  margin-bottom: 35px;
}
.blog-listing__content {
  position: relative;
  background-color: var(--c-light);
  padding: 3rem;
}
.blog-listing__date,
.blog-listing__author {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}
.blog-listing__title {
  font-size: 24px;
}
.blog-listing__title a {
  text-decoration: none;
}
.media-left .blog-listing__title a {
  color: var(--c-third);
}
.blog-listing__body {
  margin-top: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}
.blog-listing__image {
  position: relative;
  padding-top: 35px;
  background-color: var(--c-light);
}
.blog-listing__image img {
  max-height: 80vh;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .blog-listing__item {
    flex-direction: row;
  }
  .blog-listing__item.media-left {
    flex-direction: row-reverse;
  }
  .blog-listing__content {
    width: 100%;
    padding: 10rem 50px;
    align-content: center;
  }
  .blog-listing__item:has(.blog-listing__image) .blog-listing__content {
    width: 35%;
    min-height: 460px;
  }
  .blog-listing__image {
    width: 65%;
    padding: 0;
  }
  .blog-listing__image img {
    position: absolute;
    height: 100%;
  }
}


/* Blog Post */
.blog-post__hero {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: var(--blog-hero-overlap);
}
.blog-post__hero-image-wrap {
  background-color: var(--c-light);
}
.blog-post__hero-image {
  
}
.blog-post__hero-image img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}
.blog-post__hero-content {
  position: relative;
  max-width: 617px;
  width: 85%;
  padding: 3rem 5rem;
  background-color: var(--c-white);
  top: var(--blog-hero-overlap);
}
.blog-post__title {
  color: var(--c-highlight);
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
}
.blog-post__date,
.blog-post__author {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}
.blog-post__main {
  color: #333;
  padding-top: 6rem;
  font-size: 16px;
  line-height: 1.75;
}








/* .blog-header {
    background: var(--c-second);
    color: var(--c-inv);
}
.blog-header h1 {
    margin: 0 0 .25rem;
}

.blog-index > .container {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 4rem;
}
.blog-index .post-item {
    padding: 2rem;
}
.blog-index .post-item:nth-child(even) {
    background: var(--c-super-light);
}
.blog-index .hs-featured-image-wrapper {
    margin-bottom: 2rem;
}
.blog-sidebar-topic-filter h3 {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
}
.blog-sidebar-topic-filter ul {
    padding: 1rem 0;
    margin: 0;
    list-style: none;
}
.blog-pagination {
    padding: 2rem 0;
}
.blog-pagination .blog-pagination__link {
    display: inline-block;
    padding: .25em .5em;
    background: var(--c-super-light);
    width: 2.5em;
    text-align: center;
}
.blog-pagination .blog-pagination__link:hover,
.blog-pagination .blog-pagination__link--active {
    background: var(--c-highlight);
    color: var(--c-inv);
}
.blog-sidebar {
    padding: 2rem 0;
}
.blog-subscribe,
.blog-sidebar-subscribe {
    background-color: var(--c-third);
    padding: 2rem 1rem;
    border-radius: 1rem;
    color: var(--c-inv)
}
.blog-sidebar-topic-filter {
    padding: 2rem 1rem;
    font-weight: bold;
}
.blog-sidebar-topic-filter li {
    border-bottom: 1px solid var(--c-grey-light);
    padding: .125rem 0;
}
.blog-sidebar-search {
    background-color: var(--c-highlight);
    padding: 3rem 1rem 2rem;
    border-radius: 1rem;
}
.blog-social-share {
    padding: 2rem 0;
}
@media (min-width: 992px) {
    .blog-index > .container {
        grid-template-columns: 2fr 1fr;
        column-gap: 6rem;
    }
}



.blog-post > .container {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 4rem;
}
.blog-post-inner {
    padding: 2rem 0;
}
.blog-post .hs-featured-image-wrapper {
    margin-bottom: 2rem;
}
.blog-post .a2a_kit a {
    display: inline-block;
}
.blog-post-subscribe {
    background-color: var(--c-second);
    color: var(--c-inv);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}
@media (min-width: 992px) {
    .blog-post > .container {
        grid-template-columns: 2fr 1fr;
        column-gap: 6rem;
    }
} */

/* VVeani
Vye Viewport Animations - because it is light weight and we should be using it on most blocks
*/

/**Styling scrollable elements*/

.vveani {
	opacity: 0;
	transition: opacity 500ms;
  }

  .vveani.scrolled {
	opacity: 1;
  }

  .scrolled.fade-in {
	animation: fade-in 1s ease-in-out both;
  }

  .scrolled.fade-in-bottom {
	animation: fade-in-bottom 1s ease-in-out both;
  }

  .scrolled.slide-left {
	animation: slide-in-left 1s ease-in-out both;
  }

  .scrolled.slide-right {
	animation: slide-in-right 1s ease-in-out both;
  }

.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

  /* Tone down the animation to avoid vestibular motion triggers like scaling or panning large objects. */
  @media (prefers-reduced-motion) {
	  .vveani {
		opacity: 1 !important;
	  }
	  .scrolled {
		animation: none !important;
	  }
	}

  /* ----------------------------------------------
   * Generated by Animista on 2021-2-11 23:32:31
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info.
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

  @keyframes slide-in-left {
	0% {
	  -webkit-transform: translateX(-100px);
	  transform: translateX(-100px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }

  @keyframes slide-in-right {
	0% {
	  -webkit-transform: translateX(100px);
	  transform: translateX(100px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }

  @keyframes fade-in-bottom {
	0% {
	  -webkit-transform: translateY(50px);
	  transform: translateY(50px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	  opacity: 1;
	}
  }

  @keyframes fade-in {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }
@-webkit-keyframes cosmo-slide-in-top {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	80% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
  }

  /* @media (max-width: 768px) {
	  .vveani { opacity: 1 !important; }
  } */