/* Theme base styles */

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

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

:root {
  --c-main: #000000;
  --c-second: #0A203F;
  --c-third: #F68628;
  --c-fourth: #43B649;
  --c-fifth: #F3F5F5;
  --c-white: #ffffff;
  --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: 'Roboto', sans-serif;
  --font-body: 'Roboto Flex', 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.
*/

/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */

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

/**
Use a better box model (opinionated).
*/

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

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the line height in all browsers.
3. Prevent adjustments of font size after orientation changes in iOS.
4. Use a more readable tab size (opinionated).
*/

html {
	font-family:
		system-ui,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji'; /* 1 */
	line-height: 1.15; /* 2 */
	-webkit-text-size-adjust: 100%; /* 3 */
	tab-size: 4; /* 4 */
}

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

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

body {
	margin: 0;
}

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

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

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		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;
}

/*
Tabular data
============
*/

/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	border-color: currentcolor;
}

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

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

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

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

legend {
	padding: 0;
}

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

progress {
	vertical-align: baseline;
}

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

::-webkit-inner-spin-button,
::-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.
*/

::-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 Chrome and Safari.
*/

summary {
	display: list-item;
}

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: 18px;
  font-weight: 400;
  line-height: 1.4;
  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;
}

@media (max-width: 767px){
  body {
    font-size: 16px;
  }
}

/* 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(https://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(https://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;
  letter-spacing: 1px;
}

/* 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;
  font-family: var(--font-body);
}

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);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.13;
}
h2, .h2 {
  font-size: clamp(32px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 8px;
}
h3, .h3 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 1.8vw, 30px);
  font-weight: 700;
  line-height: 1.1;
}
h4, .h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 6px;
}
h5, .h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 4px;
}
h6, .h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}


@media (max-width: 991px){
/*   h1, .h1 {
    font-size: 55px;
  } */
/*   h2, .h2 {
    font-size: 36px;
  } */
/*   h3, .h3 {
    font-size: 28px;
  } */
  h4, .h4 {
    font-size: 20px;
  }
  h5, .h5 {
    font-size: 18px;
  }
}

@media (max-width: 767px){
/*   h1, .h1 {
    font-size: 45px;
  } */
/*   h2, .h2 {
    font-size: 32px;
  } */
/*   h3, .h3 {
    font-size: 26px;
  } */
}

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-third);
  overflow-wrap: break-word;
  transition: color 0.3s ease;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: var(--c-fourth);
  text-decoration: none;
}

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(https://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(https://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 */

.bg-orange {
  background: var(--c-third);
}

.bg-blue {
  background: var(--c-second);
}

.bg-green {
  background: var(--c-fourth);
}

.bg-white {
  background: var(--c-white);
}
.btn,
.btn--primary,
.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: 6px 25px;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-white);
  background-color: var(--c-third);
  border: 2px solid var(--c-third);
  border-radius: 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  letter-spacing: 3.2px;
}

.btn:hover,
.btn:focus {
  opacity: 1;
  color: var(--c-third);
  background-color: transparent;
  border-color: var(--c-third);
}
.btn--secondary {
  color: var(--c-white);
  background-color: var(--c-second);
  border-color: var(--c-second);
}
.btn--secondary:hover,
.btn--secondary:focus {
  color: var(--c-main);
  background-color: transparent;
  border-color: var(--c-second);
}
/* .btn--tertiary {
color: var(--c-third);
background-color: var(--c-white);
border-color: var(--c-third);
}
.btn--tertiary:hover,
.btn--tertiary:focus {
background-color: var(--c-third);
border-color: var(--c-link);
color: var(--c-white);
}
*/
.btn--expanded {
  width: 100%;
}

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

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



.bg-blue .btn--secondary {
  color: var(--c-white);
  background-color: var(--c-second);
  border-color: var(--c-white);
}

.bg-blue .btn--secondary:hover,
.bg-blue .btn--secondary:focus {
  color: var(--c-second);
  background-color: var(--c-white);
  border-color: var(--c-white);
}

.bg-orange .btn--primary {
  color: var(--c-third);
  background-color: var(--c-white);
  border-color: var(--c-white);
}

.bg-orange .btn--primary:hover,
.bg-orange .btn--primary:focus {
  color: var(--c-white);
  background-color: transparent;
  border-color: var(--c-white);
}

.bg-green .btn--primary:hover,
.bg-green .btn--primary:focus,
.bg-green .btn--secondary:hover,
.bg-green .btn--secondary:focus{
  color: var(--c-white);
  background-color: transparent;
  border-color: var(--c-white);
}
/* 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%;
  padding: 7px 10px;
  border-radius: 25px;
  border: 2px solid #E2F0DE;
  background: var(--c-white);
  color: var(--c-second);
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 18px;
}

textarea {
  min-height: 10rem;
}

.hs-button {
  cursor: pointer
}

.hs-form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 7px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--c-third);
  border: 2px solid var(--c-third);
  border-radius: 25px;
  color: var(--c-white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.hs-form input[type="submit"]:focus,
.hs-form input[type="submit"]:hover{
  background-color: transparent;
  color: var(--c-third);
}

.hs-form label {
  display: block;
  width: 100%;
  color: var(--c-second);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  padding-bottom: 8px;
  padding-left: 6px;
}

/* 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: 24px !important; */
}

.hs-form-field {
    margin-bottom: 20px;
}
.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;
  min-height: 120px;
}

header.header div {
  min-height: inherit;
}

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

.header-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

  header.header {
    min-height: 80px;
  }

  body {
    padding-top: 120px;
  }
}
@media (max-width: 767px){
  .masthead__main-nav-cta {
    display: none;
  }
  header.header {
    min-height: 60px;
    padding: 15px 0;
  }

  body {
    padding-top: 90px;
  }

  .site-header__logo img {
    width: 180px;
  }

  .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; */
}
.site-footer {
  background-color: var(--c-second);
  color: var(--c-white);
  position: relative;
  padding: 50px 0 50px;
  font-size: 16px;
  line-height: 1.25;
}

.site-footer__top h4 {
  text-transform: uppercase;
  color: var(--c-fifth);
  margin-bottom: 30px;
}

.site-footer__location h6 {
  font-size: 16px;
  color: #F3F5F5;
  line-height: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.site-footer__location ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__location ul li {
  margin-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-footer__location ul li a {
  color: #F3F5F5;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
}

.site-footer__location ul li a:hover {
  color: var(--c-third);
}


@media (min-width: 992px) {
  .site-footer .container .row {
    display: flex;
    justify-content: space-around;
    text-align: left;
    margin: 0 -15px;
  }

  .site-footer .container .row > div {
    padding: 0 15px;
  }

  .site-footer__location-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
  .site-footer__location {
    margin-top: 0;
  }
}


.site-footer__nav {
  margin-bottom: 2rem;
}
.site-footer__nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer__nav-item {
  margin-bottom: 15px;
}
.site-footer__nav a {
  display: block;
  color: var(--c-fifth);
  text-decoration: none;
}
.site-footer__nav a:hover,
.site-footer__nav a:focus {
  color: var(--c-third);
}

.site-footer__subscribe form {
  max-width: 300px;
  padding: 0 .5rem;
}
@media (min-width: 992px) and (max-width: 1023px) {
  .site-footer__subscribe form {
    padding: 0 2rem;
  }
  .site-footer__top-left-col {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .site-footer__subscribe form {
    margin: 20px auto;
  }
}
.site-footer__subscribe .hs-form fieldset {
  margin-bottom: 1rem !important;
}
.site-footer__subscribe .hs-form input[type="submit"] {
  margin-top: 1rem !important;
}

.site-footer__contact a {
  color: var(--c-fifth);
}

.site-footer-phone ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-phone ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-footer-phone ul li a {
  text-decoration: none;
}

.site-footer-phone .con-icons svg {
  display: block;
}

.site-footer-phone ul li a:hover {
  color: var(--c-third);
}

.site-footer__socials-list {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 2rem;
}
@media (min-width: 992px) {
  .site-footer__socials-list {
    justify-content: flex-start;
  }
}

.site-footer-phone {
  margin-bottom: 30px;
}

.site-footer__socials a {
  width: 20px;
  height: 20px;
  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);
}


@media (max-width: 991px){
  .site-footer__location {
    margin-bottom: 30px;
  }

  .site-footer__nav {
    margin-bottom: 30px;
  }

  .site-footer__socials-list {
    justify-content: flex-start;
  }

  .site-footer__top h4 {
    margin-bottom: 20px;
  }

  .site-footer__location-cols {
    display: flex;
    gap: 60px;
  }

  .site-footer__top h4 {
    letter-spacing: 4px;
  }
}

@media (max-width: 767px){
  .site-footer__location-cols {
    flex-direction: column;
    gap: 0;
  }
}

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