/* Theme base styles */

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

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

:root {
	--c-main: #002d62;
	--c-second: #002d62;
	--c-third: #f99117;
  --c-fourth: #50b948;
  --c-fifth: #fef5e9;
	--c-light: #EDEBE2;
	--c-highlight: #f89828;
  --c-link: #0090ff;
	--c-dark-tint: rgba(0, 0, 0, .8);
	--c-dark: #252a2f;
  --c-grey: #666;
	--c-grey-medium: #c3c1c1;
	--c-grey-light: #a6a6a8;
	--c-super-light: #eaeaea;
	--c-white: #fff;
	--c-inv: #fff;

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

	--font-heading: 'Open Sans', sans-serif;
	--font-heading-alt: 'Raleway', sans-serif;
	--font-body: 'Open Sans', sans-serif;
  --font-alt: 'Playfair Display', sans-serif;

	--width-content: 1230px;
	--width-wide: 1600px;
	--width-nav: 1600px;
	--width-medium: 1200px;
	--width-narrow: 960px;
}

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

/* Layout
-------------------------------------------- */
.site-main {
    overflow: hidden;
}
@media (min-width: 1200px) {
    .site-main {
    }
}
.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: 8rem 0;
    }
}

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

/* Background Colors */

.bg-white {
    background-color: var(--c-inv);
}
.bg-second {
    color: var(--c-white);
    background-color: var(--c-second);
}
.bg-second h1,
.bg-second h2,
.bg-second h3,
.bg-second h4,
.bg-second h5,
.bg-second h6 {
    color: var(--c-white);
}
.bg-third {
    color: var(--c-second);
    background-color: var(--c-third);
}
.bg-third h1,
.bg-third h2,
.bg-third h3,
.bg-third h4,
.bg-third h5,
.bg-third h6 {
    color: var(--c-second);
}
.bg-fourth {
    color: var(--c-white);
    background-color: var(--c-fourth);
}
.bg-fourth h1,
.bg-fourth h2,
.bg-fourth h3,
.bg-fourth h4,
.bg-fourth h5,
.bg-fourth h6 {
    color: var(--c-white);
}
.bg-fourth ul.orange-list li {
    background-image: url(//47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/raw_assets/public/aphena25/images/icon-arrow-blue.png);
}
.bg-fourth ul ul.orange-list li {
    background-image: url(//47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/raw_assets/public/aphena25/images/icon-dash-blue.png);
}
.bg-fifth {
    background-color: var(--c-fifth);
}
.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-bottom: 1.5rem;
}

/* 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: 3.4;
  --max-fs: 3.8;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
h2, .h2 {
  font-family: var(--font-heading-alt);
  --min-fs: 3.2;
  --max-fs: 3.4;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}
h3, .h3 {
  font-family: var(--font-heading-alt);
  --min-fs: 2.6;
  --max-fs: 3.0;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}
h4, .h4 {
  font-family: var(--font-heading-alt);
  --min-fs: 2.2;
  --max-fs: 2.8;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}
h5, .h5 {
  font-family: var(--font-heading);
  --min-fs: 1.8;
  --max-fs: 2.4;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}
h6, .h6 {
  font-family: var(--font-heading-alt);
  --min-fs: 1.6;
  --max-fs: 1.8;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
h1 strong, .h1 strong,
h1 bold, .h1 bold {
  font-weight: 900;
}
h2 strong, .h2 strong,
h2 bold, .h2 bold{
  font-weight: 700;
}

/* Links */
a {
  color: var(--c-link);
  overflow-wrap: break-word;
  transition: color 0.3s ease;
  text-decoration: none;
}

a:hover,
a:focus {
  opacity: 0.75;
  color: var(--c-gray-light);
}

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;
}

ul.col2,
ol.col2,
dl.col2 {
  columns: 2;
  column-gap: 100px;
}

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

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

ul.orange-list {
  list-style: none;
}
ul.orange-list li {
  padding-top: 9px;
  padding-bottom: 9px;
  background: url(//47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/raw_assets/public/aphena25/images/icon-arrow-orange.png) no-repeat left 17px;
  background-size: 7px 11px;
  padding-left: 23px;
  font: 20px var(--font-body);
}


/* 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 ul.orange-list li {
  background: url(//47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/raw_assets/public/aphena25/images/icon-dash-orange.png) no-repeat left 20px;
  background-size: 14px 3px;
}

/* 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 {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none ;
  transition: color 0.15s ease-out, background-color 0.15s ease-out;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 1rem 3rem;
  font-family: var(--font-heading-alt);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-inv);
  background-color: var(--c-third);
  border: 2px solid var(--c-third);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn:hover,
.btn:focus {
  opacity: 1;
  color: var(--c-inv);
  background-color: var(--c-grey-medium);
  border-color: var(--c-grey-medium);
}
.btn--second {
  color: var(--c-third);
  background-color: var(--c-second);
  border-color: var(--c-second);
}
.btn--second:hover,
.btn--second:focus {
  color: var(--c-main);
  background-color: var(--c-third);
  border-color: var(--c-third);
}
.btn--third {
  color: var(--c-main);
  background-color: var(--c-white);
  border-color: var(--c-white);
}
.btn--third:hover,
.btn--third:focus {
  background-color: var(--c-link);
  border-color: var(--c-link);
}

.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: 1rem;
  border: 1px solid #eee;
  background: #eee;
}

textarea {
  min-height: 10rem;
}

.hs-button {
	cursor: pointer
}

.hs-form input[type="submit"] {
    display: block;
    width: 100%;
    margin-top: 5rem;
    color: #fff;
    padding: 13px 4%;
    font-size: 13px;
    font-weight: 700;
    background: #454545;
    border: none;
    font-family: var(--font-heading-alt);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hs-form label {
    display: block;
    width: 100%;
    color: #999;
    padding: 0px 0px 10px 0px;
    font: 14px var(--font-body);
}

/* 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;
  margin-bottom: 2rem !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
*/

/* Header
-------------------------------------------- */
header.header {
  background: var(--c-white);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(0);
  transition: transform .3s;
  width: 100%;
  z-index: 1313;
  padding: 20px 0;
}

.header:not(.has-open-nav)[data-scroll-direction=down] {
  transform: translateY(-100%)
}

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


@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0,-100px,0);
    -webkit-transform: translate3d(0,-100px,0)
  }

  to {
    opacity: 1;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0,-100px,0);
    -webkit-transform: translate3d(0,-100px,0)
  }

  to {
    opacity: 1;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased
  }
}

body {
  padding-top: 124px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.masthead__main-nav {
  margin-top: 0px;
}

.utility-nav__list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 0 -10px;
}

.utility-nav__list li a {
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: left;
  display: inline-block;
  padding: 0 10px;
  color: #54575B;
}

.utility-nav__list li a:hover,.utility-nav__list li a:focus {
  color: var(--c-link);
}

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

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

.main-nav-second-child {
  background: #fff;
  border-radius: 0;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 230px;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  transition: all .3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 99;
}

.main-nav__dropdown {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.main-nav__list .main-nav__item.main-nav__item--has-children.is-open .main-nav-second-child {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav__list .main-nav__item.main-nav__item--has-children:last-child .main-nav-second-child {
  right: 0;
  left: auto;
}

button.dropdown-toggle {
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  top: -2px;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.main-nav__list .main-nav__item.main-nav__item--has-children.is-open .dropdown-toggle {
  transform: rotate(180deg);
}

.main-nav__item .dropdown-toggle svg {
  width: 10px;
  height: 10px;
}

.main-nav__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-nav__item:first-child {
  padding-left: 0;
}

.main-nav__item:last-child {
  padding-right: 0;
}

.main-nav__link {
  color: var(--c-main);
  display: block;
  padding: 30px 3px 30px 12px;
  position: relative;
  text-decoration: none;
  font-family: var(--font-heading-alt);
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.main-nav__link:focus,
.main-nav__link:hover{
  color: var(--c-light-gray);
}

.main-nav__dropdown_title {
  font-family: var(--font-heading-alt);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 32px;
  padding: 25px 20px;
  text-align: left;
  background: var(--c-white);
  position: static;
  max-width: 320px;
}

.main-nav__dropdown-link{
  color: #666;
  display: block;
  position: relative;
  text-decoration: none;
  font-family: var(--font-heading-alt);
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  text-align: left;
  padding: 5px 6px;
}


.main-nav .main-nav__dropdown-item {
  background: var(--c-white);
  line-height: normal;
  padding: 0;
  position: static;
  max-width: 320px;
  padding: 5px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.main-nav .main-nav__dropdown-item:first-child {
  border: none;
}


.second-dropdown-toggle {
  background: transparent;
  border: none;
  display: block;
  height: 30px;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 0;
  width: 30px;
  transform: rotate(-90deg);
}

.main-nav__dropdown_child {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}


.main-nav__dropdown_child li {
  padding: 8px 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-nav__dropdown_child li:first-child {
  border: none;
}

.main-nav__dropdown_child li a {
  font-family: var(--font-heading-alt);
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  text-align: left;
  text-decoration: none;
  color: var(--c-main);
  display: block;
}

.main-nav-third-child {
  background: var(--c-white);
  height: 100%;
  left: 100%;
  max-width: 250px;
  opacity: 0;
  position: absolute;
  right: auto;
  top: 0;
  visibility: hidden;
  width: 100%;
  padding: 0 25px;
}

.main-nav .main-nav__dropdown-item:hover .main-nav-third-child {
  opacity: 1;
  visibility: visible;
}


.main-nav__dropdown-item .main-nav-third-child.is-open {
  opacity: 1;
  visibility: visible;
}

.main-nav__dropdown_child_title {
  border-bottom: 1px solid #d9d9d9;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  padding: 10px 0 10px;
  text-transform: uppercase;
}

.masthead__utility-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-search-form {
  display: flex;
  align-items: center;
  position: relative;
}
.header-search input#search_input-input {
  width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border: 1px solid #cccccc;
  padding: 6px 30px 6px 8px;
}
.header-search button.hs-search-field__button {
  display: none;
}
.header-search-button svg {
  width: 18px;
  fill: var(--color-seafoam);
}
.header-search-input {
  margin-right: -20px;
  min-width: 230px;
}
.header-search-button {
  line-height: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  right: 6px;
  border: 0;
  padding: 0;
  background-color: transparent;
}
.header-search .hs-search-field__suggestions-container {
  position: absolute;
  width: 100%;
  top: 100%;
  right: 0;
  z-index: 1;
  display: none;
}
.search-open .header-search .hs-search-field__suggestions-container {
  display: block;
}
.header-search input#search_input-input {
  /*     width: 0;
  padding: 6px 0;
  border: 1px solid transparent; */
  display: none;
}
.search-open .header-search input#search_input-input {
  /*     width: 100%;
  padding: 6px 30px 6px 8px;
  border-color: #cccccc; */
  display: block;
}

.masthead__search {
  display: none;
}
.masthead__search input[type="search"] {
  margin-bottom: 0;
}
.masthead__search .hs-search-field button {
  background: transparent;
  border: none;
}
.masthead__search .hs-search-field__suggestions-container {
  display: none;
}

@media (min-width: 992px) {
  .header-middle {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2rem;
  }
  .header-middle #hs_cos_wrapper_search_input {
    width: 200px;
    font-size: 15px;
  }
  .masthead__search {
    display: block;
  }
}

@media (min-width: 1200px) {
  .mobile-menu,.mobile-nav,.mobile-nav__toggle,.utility-nav.mobile-utility-nav {
    display:none;
  }
}


@media (max-width: 1199px){
  .header_lp .logo {
    width: auto;
  }

  .header-btn {
    padding-right: 70px;
  }

  .masthead__main-nav, .masthead__utility-nav, .mobile-nav {
    display: none;
  }

  .mobile-nav__toggle {
    border: none;
    border-radius: 5px;
    flex: 0 1 2.5rem;
    height: calc(2.5rem + 2px);
    padding: 0;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(2.5rem + 2px);
    background-color: transparent;
  }

  .sr-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0,0,0,0);
    border: 0
  }

  .mobile-nav__toggle span {
    background: var(--c-main);
    display: block;
    height: 4px;
    position: absolute;
    top: 9px;
    transition: all .3s ease;
    width: 25px;
  }

  .mobile-nav__toggle span:first-of-type {
    top: 0;
  }

  .mobile-nav__toggle span:nth-of-type(2) {
    transform: rotate(0);
    transition: all .5s;
  }

  .mobile-nav__toggle span:nth-of-type(3) {
    top: 18px;
  }

  .mobile-nav__toggle:hover span:nth-of-type(2) {
    left: 3px;
    width: 19px;
  }

  .mobile-nav__toggle span:nth-of-type(2) {
    transform: rotate(0);
    transition: all .5s;
  }

  .mobile-nav__toggle.is-open span,
  .mobile-nav__toggle:hover span{
    background: var(--c-main);
  }

  .mobile-nav__toggle.is-open span:nth-of-type(2) {
    left: .5rem;
    transform: rotate(135deg);
    width: 25px;
    opacity: 0;
  }

  .mobile-nav__main-nav {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav.is-open {
    background-color: var(--c-white);
    display: block;
    left: 0;
    margin: 0 auto;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    padding: 0 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 100%;
    width: 100%;
    z-index: 99;
  }

  .mobile-nav__toggle.is-open span:first-of-type {
    transform: rotate(135deg);
    top: 9px;
  }

  .mobile-nav__toggle.is-open span:last-child {
    transform: rotate(225deg);
    top: 9px;
  }

  .mobile-nav__list {
    border-top: 2px solid var(--color-white);
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav__utility-nav {
    list-style: none;
    margin: 0;
  }

  .mobile-nav__item {
    position: relative;
    border-bottom: 2px solid var(--color-white);
  }

  .mobile-nav__item:last-child {
    border: none;
  }

  .mobile-nav__link {
    color: var(--c-main);
    display: block;
    font-family: var(--font-heading-alt);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.33;
    padding: 12px 20px;
    position: relative;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav__item--has-children .mobile-nav__link {
    margin-right: 3rem
  }

  .mobile-nav__dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background .3s;
    width: 53px;
    height: 53px;
  }

  .mobile-nav__dropdown-toggle svg {
    height: 16px;
    transition: all .3s;
    width: 16px;
    fill: var(--color-white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-nav__dropdown-toggle.is-open svg {
    transform: rotate(180deg);
    margin-top: -7px;
  }

  .mobile-nav__dropdown-toggle:hover svg {
    color: var(--color-seafoam);
  }

  .mobile-nav__dropdown-toggle:hover svg path, 
  .mobile-nav__dropdown-toggle:focus svg path {
    fill: var(--color-seafoam);
  }

  .mobile-nav__dropdown {
    display: none;
    background-color: var(--c-white);
  }

  .mobile-nav__dropdown.is-open {
    border-top: 2px solid var(--c-white);
    display: block;
    list-style: none;
    padding: .5rem 0px;
  }

  .mobile-nav__dropdown-item {
    padding: .6rem 0px;
    position: relative;
  }

  .mobile-nav__dropdown-link {
    color: #232323;
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    text-align: left;
    text-decoration: none;
    padding-left: 30px;
  }

  .mobile-nav__dropdown-link:hover {
    color: var(--color-seafoam);
  }

  .mobile-nav__dropdown .mobile-nav__dropdown-toggle {
    height: 46px;
    width: 53px;
  }

  .mobile-nav__dropdown.main-nav__dropdown_children {
    margin-top: 20px !important;
    border-bottom: 2px solid var(--color-white);
    padding-left: 10px;
  }

  .mobile-nav__list.mobile-nav__main-nav {
    border-top: none;
  }

  .mobile-nav__dropdown-item .mobile-nav__dropdown-toggle {
    color: #232323;
  }

  .hs-search-field__form {
    position: relative;
  }
  .header-search input#search_input-input {
    display: block;
    padding: 14px 40px 14px 20px;
    border-color: var(--color-teal);
    font-size: 18px;
    font-weight: 300;
  }
  .header-search button.hs-search-field__button {
    display: block;
    line-height: 0;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    right: 10px;
    border: 0;
    padding: 0;
    background-color: transparent;
    top: 14px;
  }
  .header-search button.hs-search-field__button svg {
    height: 22px;
    fill: var(--color-seafoam);
  }
  .header-search-input {
    margin-right: 0;
    min-width: 100%;
  }
  .hs-search-field__suggestions-container {
    display: block;
  }

}

@media (max-width: 991px){
  .scroll-header header.header {
    animation: none;
  }
}
@media (max-width: 767px){
  .masthead__main-nav-cta {
    display: none;
  }
  .logo img {
    width: 80px !important;
  }

  header.header {
    padding: 15px 0;
  }

  body {
    padding-top: 97px;
  }

  .header-btn {
    padding-right: 60px;
  }

}
/* LP Header */

.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; */
}
.pre-footer__certifications {
  background-color: var(--c-white);
}
.pre-footer__certifications ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pre-footer__certifications ul li {
  font-size: 16px;
  font-family: var(--font-heading-alt);
  font-weight: 700;
  color: #1c1f22;
  display: block;
  flex: 0 1 auto;
  list-style-type: none;
  text-align: center;
}
@media (max-width: 991px) {
  .pre-footer__certifications ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .pre-footer__certifications ul li {
    margin: 0 auto;
  }
}
.pre-footer__certifications ul li.fda {
    background: url(https://47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/Certification%20Icons/icon-fda.png) no-repeat center top;
    background-size: 119px;
    width: 121px;
    padding-top: 135px;
}
.pre-footer__certifications ul li.dea {
    background: url(https://47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/Certification%20Icons/icon-dea@2x.png) no-repeat center top;
    background-size: 103px;
    width: 121px;
    padding-top: 135px;
}
.pre-footer__certifications ul li.cgmp {
    background: url(https://47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/Certification%20Icons/icon-cgmp.png) no-repeat center top;
    background-size: 102px;
    width: 135px;
    padding-top: 135px;
}
.pre-footer__certifications ul li.iso {
    background: url(https://47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/Certification%20Icons/icon-iso@2x.png) no-repeat center top;
    background-size: 123px;
    width: 121px;
    padding-top: 135px;
}
.pre-footer__certifications ul li.anvista {
    background: url(https://47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/Certification%20Icons/icon-anvista@2x.png) no-repeat center top;
    background-size: 87px;
    width: 140px;
    padding-top: 135px;
}
.pre-footer__certifications ul li.uso {
    background: url(https://47289763.fs1.hubspotusercontent-na1.net/hubfs/47289763/Certification%20Icons/icon-usp@2x.png) no-repeat center top;
    background-size: 121px;
    width: 121px;
    padding-top: 135px;
}



.site-footer {
  font-family: var(--font-heading-alt);
  background-color: var(--c-dark);
  color: var(--c-white);
  position: relative;
  padding: 110px 0 75px;
}

.site-footer a {
  color: var(--c-grey-medium);
  text-decoration: none;
  font-weight: 400;
}
.site-footer a:hover,
.site-footer a:focus {
  opacity: 1;
  color: var(--c-third);
}
.site-footer .btn {
  font-weight: 700;
}
.site-footer .btn:hover,
.site-footer .btn:focus {
  color: var(--c-inv);
}
.site-footer svg {
  color: var(--c-third);
}
.site-footer__top h3 {
  font-family: var(--font-heading-alt);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  color: var(--c-white);
  margin-top: 2rem;
}
.site-footer .container .row {
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer .container .row {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  .site-footer__top h3 {
    margin: 0 0 3rem;
  }
  .site-footer__top-left-col {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
  }
  .site-footer__location-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .site-footer__location {
    margin-top: 0;
  }
}
.site-footer__locations {
  color: var(--c-grey-medium);
  font-size: 1.6rem;
}
.site-footer__locations a {
  text-transform: uppercase;
  font-size: 1.5rem;
}
.site-footer__nav {
  margin-bottom: 2rem;
}
.site-footer__nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 2.5;
  font-size: 1.5rem;
}
.site-footer__nav a {
  display: block;
  color: var(--c-grey-medium);
  text-transform: uppercase;
  text-decoration: none;
}
.site-footer__nav a:hover,
.site-footer__nav a:focus {
  color: var(--c-third);
}
.site-footer__contact a {
  color: var(--c-white);
  font-size: 19px;
}

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

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

.blog-header {
    background: var(--c-second);
    color: var(--c-inv);
}
.blog-header h1 {
    margin: 0 0 .25rem;
}
/* blog index  */
.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 Listing */
.blog-listing__title {
  padding: 0 1rem;
  font-size: 25px;
  font-family: var(--font-heading);
}
.blog-listing__date {
  font: 18px var(--font-body);
}


.blog-listing__cards {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
}
.blog-listing__card {
  text-align: center;
  padding: 36px;
  margin: 0 auto;
}
.blog-listing__card.bg-white {
  border: 1px dashed #c3c3c3;
}
.blog-listing__card img {
  position: relative;
  margin-bottom: 4rem;
  height: 300px;
  object-fit: cover;
}
.blog-listing__card a {
  color: var(--c-main);
}
.blog-listing__card a:hover,
.blog-listing__card a:focus {
  color: var(--c-third);
  opacity: 1;
}
.blog-listing__link {
  margin-top: 3rem;
  text-align: center;
}

.blog-listing__pagination {
  margin-top: 2rem;
  text-align: center;
}
.blog-listing__pagination-link {
  color: var(--c-third);
}

.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  display: none !important;
}

@media (min-width: 992px) {
  .blog-listing__cards {
    flex-direction: row;
  }
  .blog-listing__card {
    width: 45%;
  }
}



/* Blog Post */
.blog-post__name {
  text-align: center;
}
.blog-post__name strong {
  font-weight: 700;
}
.blog-post__date {
  font-size: 15px;
  line-height: 1.2;
  font-family: var(--font-heading-alt);
}
.blog-post__featured-image {
  float: left;
  margin: 0 3rem 1rem 0;
}

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