/* Theme base styles */

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







html {
    
  --color-red: #ED1A40;
  --color-red-rgb: 237,24,70;
  --color-blue: #0F3357;
  --color-blue-rgb: 38,54,113;
  --color-grey: #F3F6F4;
  --font-elza: elza, sans-serif;
  
  
  --font-inter: inter-variable, sans-serif;
  
  
  --global-font-size: 1.8rem;
  --global-lineheight: 1.777;
  --body-background: #ffffff;
  --body-font-color: #000000;
  --body-font-family: var(--font-inter);
  --global-weight-normal: 400;
  --global-weight-bold: 700;
  --global-radius: 0;
  --container-width: 160rem;
  --container-padding: 5.5vw;
}

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/



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

.invisible {
  visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

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

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

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

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

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

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

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

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

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

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

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

template {
  display: none;
}

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

[hidden] {
  display: none;
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* main#main-content {
    padding-top: 195px;
} */

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

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

:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1.75s;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.slideInUp {
  animation-name: slideInUp;
}


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



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

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

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

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

/* 375px - 1440px */

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

  --min-w: 37.5;
  --max-w: 144;
  --min-fs: 1;
  --max-fs: 6;
  --slope: calc( ( var(--max-fs) - var(--min-fs) ) / ( var(--max-w) - var(--min-w) ) );
  --y-axis-inter: calc( calc( var(--min-w) * -1 ) * var(--slope) + var(--min-fs) );
  color: var(--color-blue);
  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-elza);
  --min-fs: 4.2;
  --max-fs: 8;
  font-weight: 700;
  line-height: 1.0625em;
}
h2, .h2 {
  font-family: var(--font-elza);
  --min-fs: 3.7;
  --max-fs: 6;
  font-weight: 700;
  line-height: 1.083em;
}
h3, .h3 {
  font-family: var(--font-elza);
  --min-fs: 3.2;
  --max-fs: 4;
  font-weight: 700;
  line-height: 1.375em;
}
h4, .h4 {
  font-family: var(--font-elza);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.458em;
}
h5, .h5 {
  font-family: var(--font-elza);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25em;
}
h6, .h6 {
  font-family: var(--font-elza);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.36em;
}

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

a:hover,
a:focus {
  color: var(--color-red);
}

a img {
  border: 0;
}

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

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

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

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

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

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

/* ul > li::marker {
color: red;
} */
/* 
@media (min-width: 540px){
section {
padding-bottom: 8vw;
padding-top: 8vw;
}
}

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

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


section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (max-width: 991px){
  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 767px){
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

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

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

@media (max-width: 767px) {
  p {
    margin-bottom: 1.8rem;
    margin-top: 1.8rem;
  }
}


.bg-black {
  background-color: black;
  color: var(--body-background);
}

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

.bg-white {
  background: var(--body-background);
}
.button, .btn {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none ;
  transition: color 0.15s ease-out, outline-color 0.15s ease-out;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 1.267em 1.3em 1.067em;
  font-family: var(--font-elza);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  background: transparent;
  border: none;
  border-radius: 4.4rem;
  outline: 0.2rem solid var(--color-blue);
  outline-offset: -0.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.button.button--white,
.btn.button--white {
  color: white;
  outline-color: white;
}
.button::before,
.btn::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(97deg, #B31F52 27%, #4867D7 94%);
  opacity: 0;
  transition: opacity 0.15s ease-out;
}
.button:hover,
.button:focus,
.btn:hover,
.btn:focus {
  color: white;
  outline-color: transparent;
  border-color: transparent;
}
.button:hover::before,
.button:focus::before,
.btn:hover::before,
.btn:focus::before{
  opacity: 1;
}

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

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

.hs-input {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: var(--body-font-color);
  font-size: var(--global-font-size);
  line-height: 1.2;
  padding: 16px 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  border-radius: 0;
  display: block;
  font-family: var(--font-body);
  margin: 0;
  display: block;
  width: 100% !important;
  outline: none;
}

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

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

.actions {
  text-align: left;
  display: inline-block;
  position: relative;
  outline: .2rem solid var(--color-blue);
  border-radius: 4.4rem;
}

.actions:before{
  background-image: linear-gradient(97deg, #b31f52 27%, #4867d7 94%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .15s ease-out;
  width: 100%;
  z-index: -1;
  border-radius: 4.4rem;
}

.actions:hover {
    outline-color: transparent;
}

.actions:focus:before, 
.actions:hover:before{
  opacity: 1;
}

.hs-button {
  -webkit-appearance: none;
  background: transparent;
  border: none;
  color: var(--color-red);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-elza);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
  outline-offset: -.2rem;
  overflow: hidden;
  padding: 1.267em 1.3em 1.067em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .15s ease-out, outline-color .15s ease-out;
  vertical-align: middle;
  z-index: 1;
}

.actions:hover .hs-button,
.actions:focus .hs-button {
  border-color: transparent;
  color: var(--body-background);
  outline-color: transparent;
}


@media (max-width: 600px){

  fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none !important;
    margin-bottom: 18px;
  }

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

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

}



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

/* Navigation Skipper */

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





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

.site-header {  
  width: 100%;
  position: fixed;
  z-index: 101;
  transition: transform 0.4s ease-out;
  --gradient: linear-gradient(120deg, rgba(36,65,106,1) 0%, rgba(1,87,146,1) 50%, rgba(79,37,73,1) 100%);
}
.site-header[data-scroll-direction="up"] {
	transform: translateY(0%);
}
.site-header[data-scroll-direction="down"] {
	transform: translateY(-100%);
}

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




/* Header Secondary */

.site-header__secondary {
  display: none;
  background-color: white;
}
@media (min-width: 1200px) {
  .site-header__secondary {
    display: block;
  }
}

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

/* Secondary Nav */

.secondary-nav {
  font-family: var(--font-elza);
  font-size: 1.6rem;
  line-height: 1.1;
}
.secondary-nav__list {
  display: flex;
  gap: 4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.secondary-nav__link {
  position: relative;
  display: block;
  padding: 1.87rem 0;
  color: var(--color-blue);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.secondary-nav__link:hover,
.secondary-nav__link:focus {
  color: var(--color-red);
}
.secondary-nav__link:after {
/*   content: ''; */
  display: block;
  background-color: var(--color-red);
  border-radius: 0.15rem;
  width: 100%;
  height: 0.3rem;
  position: absolute;
  left: 0;
  bottom: 0;
}



/* Header Main */

.site-header__main {
  display: flex;
  background-color: transparent;
  
  height: 7rem;
  transition: height 0.4s ease-out, background-color 0.4s ease-out;
}
@media (min-width: 1200px) {
  .site-header__main {
    height: 14rem;
  }
  .site-header.is-not-at-top .site-header__main {
    height: 10rem;
    transition: height 0.4s 0.4s ease-out, background-color 0.4s 0.4s ease-out;
  }
}
.site-header.is-not-at-top .site-header__main {
  background-color: var(--color-blue);
/*   background: var(--gradient); */
}

.header_lp.lp-transparent .site-header__main {
  background-color: transparent;
}

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

.site-header__logo {
  line-height: 0;
}
@media (max-width: 1199px) {
  .site-header__logo {
    width: 13rem;
  }
}

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




/* Main Nav */

.main-nav {
  font-size: 1.6rem;
  line-height: 1.1;
}

.main-nav__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1.2rem;
}
@media (min-width: 1292px) {
  .main-nav__list {
    gap: 2.2rem;
  }
}

.main-nav__item {
  display: flex;
  position: relative;
}
.main-nav__item:after {
  content: '';
  display: block;
  pointer-events: none;
  background-color: var(--color-red);
  border-radius: 0.15rem;
  width: 0;
  height: 0.3rem;
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  transition: width 0.15s ease-out;
}
.main-nav__item:hover:after,
.main-nav__item.is-open:after {
  width: calc(100% - 1.8rem);
}

.main-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.7rem 0.9rem 1.3rem;
  color: white;
  font-family: var(--font-elza);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.main-nav__item--has-children .main-nav__link {
  padding-right: 0;
}
/*
.main-nav__link.active-branch,
.main-nav__link.active-node {
}
*/
.main-nav__link:hover,
.main-nav__link:focus {
  color: white;
  opacity: 0.85;
}

.main-nav__button {
  cursor: pointer;
  align-items: center;
  background-color: transparent;
  border: none;
  display: flex;
  padding: 0 0.9rem;
  color: white;
}
.main-nav__button svg {
  transition: transform 0.3s ease-out;
}
.main-nav__list > li.is-open .main-nav__button svg {
  transform: scaleY(-1);
}

.main-nav__dropdown {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0.9rem;
  margin: 0;
  padding: 3.7rem 3rem 3.5rem;
  list-style: none;
  width: 26rem;
  background-color: white;
  box-shadow: 0 0.4rem 0.4rem rgba(0,0,0,0.25);
  border-radius: 0.75rem;
  font-size: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out, transform 0.15s ease-out;
}
.main-nav__list > li.is-open .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav__dropdown-item:not(:first-child) {
  margin-top: 2rem;
}
.main-nav__dropdown-link {
  display: block;
  color: black;
  text-decoration: none;
  letter-spacing: 0.02em;
}
/*
.main-nav__dropdown-link.active-branch,
.main-nav__dropdown-link.active-node {
}
*/
.main-nav__dropdown-link:hover,
.main-nav__dropdown-link:focus {
  color: var(--color-red);
}





/* Mobile Navigation */

.mobile-nav {
  position: relative;
}
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
  .main-nav__item:last-child > .main-nav__dropdown {
    right: 0;
    left: auto;
  }
}

/* Mobile Toggle Button */

.mobile-nav__toggle {
	cursor: pointer;
	position: relative;
	width: 4.8rem;
	height: 4.8rem;
	background-color: transparent;
	transition: background-color 0.15s ease-out, color 0.15s ease-out;
}
.mobile-nav__toggle span {
	display: block;
  width: 3.4rem;
	height: 0.3rem;
  background-image: linear-gradient(90deg, var(--color-red) 50%, white 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  border-radius: 0.15rem;
	position: absolute;
	left: 0.7rem;
}
.mobile-nav__toggle span:nth-child(1) {
	top: 1.3rem;
	transition: top 0.3s 0.3s cubic-bezier(.23,1,.32,1), transform 0.3s cubic-bezier(.23,1,.32,1), background-position 0.3s 0.3s ease-out;
}
.mobile-nav__toggle span:nth-child(2) {
	top: 2.3rem;
	transition: opacity 0s 0.3s ease-out, background-position 0.3s 0.2s ease-out;
}
.mobile-nav__toggle span:nth-child(3) {
	top: 3.3rem;
	transition: top 0.3s 0.3s cubic-bezier(.23,1,.32,1), transform 0.3s cubic-bezier(.23,1,.32,1), background-position 0.3s 0.1s ease-out;
}

.mobile-nav__toggle.is-open span,
.mobile-nav__toggle:hover span,
.mobile-nav__toggle:focus-visible span {
  background-position-x: 0;
}

.mobile-nav__toggle:hover span:nth-child(1),
.mobile-nav__toggle:focus-visible span:nth-child(1) {
	transition: top 0.3s 0.3s cubic-bezier(.23,1,.32,1), transform 0.3s cubic-bezier(.23,1,.32,1), background-position 0.3s 0.1s ease-out;
}
.mobile-nav__toggle:hover span:nth-child(2),
.mobile-nav__toggle:focus-visible span:nth-child(2) {
	transition: opacity 0s 0.3s ease-out, background-position 0.3s 0.2s ease-out;
}
.mobile-nav__toggle:hover span:nth-child(3),
.mobile-nav__toggle:focus-visible span:nth-child(3) {
	transition: top 0.3s 0.3s cubic-bezier(.23,1,.32,1), transform 0.3s cubic-bezier(.23,1,.32,1), background-position 0.3s 0.3s ease-out;
}

/* Button toggled open */
.mobile-nav__toggle.is-open span:nth-child(1) {
	top: 2.3rem;
	transform: rotate(-45deg);
	transition: top .3s cubic-bezier(.23,1,.32,1), transform .3s .3s cubic-bezier(.23,1,.32,1);
}
.mobile-nav__toggle.is-open span:nth-child(2) {
	opacity: 0;
}
.mobile-nav__toggle.is-open span:nth-child(3) {
	top: 2.3rem;
	transform: rotate(45deg);
	transition: top .3s cubic-bezier(.23,1,.32,1), transform .3s .3s cubic-bezier(.23,1,.32,1);
}

.mobile-nav__menu {
  background-color: white;
  box-shadow: 0 0.4rem 0.4rem rgba(0,0,0,0.25);
  border-radius: 1.5rem;
  padding: 2rem 3rem 3rem;
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  width: 35rem;
  max-width: calc(100vw - var(--container-padding)*2);

  transform: translateY(2rem);
  opacity: 0;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  
  max-height: calc(100vh - 13.6rem);
  overflow-y: auto;
}
.mobile-nav__menu:not(.is-open) {
  display: none;
}

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

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

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

.mobile-nav__list {
  font-size: 1.6rem;
}
.mobile-nav__list a {
  display: block;
  
}
.mobile-nav__list a:hover,
.mobile-nav__list a.active-branch,
.mobile-nav__list a.active-node {
  color: var(--color-red);
}

.mobile-nav__item {
  line-height: 1.1;
}
.mobile-nav__item--has-children {
  position: relative;
}

.mobile-nav__link {
  color: var(--color-blue);
  font-family: var(--font-elza);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.4rem 0 1.05rem;
}

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


.mobile-nav__submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-color-blue);
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  transform: translateX(1.4rem);
  transition: background-color 0.15s ease-out, transform 0.15s ease-out;
}
.mobile-nav__submenu-toggle:after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mobile-nav__submenu-toggle svg {
  transition: color 0.15s ease-out, transform 0.15s ease-out;
}
.mobile-nav__submenu-toggle:hover,
.mobile-nav__submenu-toggle:focus-visible {
  background-color: rgba(0,0,0,0.025);
  color: var(--c-web-orange);
}
.mobile-nav__submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(135deg);
}

.mobile-nav__submenu {
  transition: height 0.15s ease-out;
  margin-left: 1.5rem !important;
}
.mobile-nav__submenu:not(.is-open) {
  display: none;
}

.mobile-nav__submenu-link {
  color: black;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 0;
}

.mobile-nav__button {
  margin-top: 1rem;
}

.mobile-nav__button {
  background-color: var(--color-blue);
  margin: 1rem -30px -30px;
  padding: 15px 30px;
}


/* html.has-open-mobile-menu {
  overflow: hidden;
} */

.body-wrapper:before,
.body-wrapper:after {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.15s ease-in;
}
.body-wrapper:after {
  height: 40rem;
  background-image: linear-gradient(180deg, rgba(var(--color-blue-rgb),1) 80px, rgba(var(--color-blue-rgb),0) 100%);
}
.body-wrapper:before {
/*   bottom: 0; */
  height: 100dvh;
  background-image: linear-gradient(120deg, rgba(36,65,106,0.7) 0%, rgba(1,87,146,0.7) 50%, rgba(79,37,73,0.7) 100%);
}
.body-wrapper.animate-in:before, 
.body-wrapper.animate-in:after {
  opacity: 1;
}
.body-wrapper:not(.is-visible):before, 
.body-wrapper:not(.is-visible):after {
  display: none;
}
@media (min-width: 1200px) {
  .body-wrapper:before,
  .body-wrapper:after {
    display: none;
  }
}



/* HS Tools Menu */

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

.site-header-container.header_lp {}

.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__inner {
  border-top: 0.1rem solid var(--color-red);
  padding: 4rem 0 6rem;
  display: grid;
  grid-template-areas: 
    "logo"
    "navs"
    "blurb"
    "contact"
    "legal";
  gap: 0 4rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "logo logo"
      "navs navs"
      "blurb contact"
      "legal legal";
  }
}

@media (min-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: .25fr .5fr .25fr;
    grid-template-areas: 
      "logo logo logo"
      "blurb navs contact"
      "legal legal legal";
  }
}


.site-footer__logo {
  grid-area: logo;
  text-align: center;
  margin-bottom: 4rem;
}


.site-footer__blurb {
  grid-area: blurb;
  color: var(--color-blue);
  text-align: center;
  margin-top: -0.6rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .site-footer__blurb {
    text-align: left;
    max-width: 338px;
    justify-self: end;
  }
}
@media (min-width: 1200px) {
  .site-footer__blurb {
    max-width: none;
    justify-self: initial;
    margin-bottom: 0;
  }
}


.site-footer__contact {
  grid-area: contact;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-elza);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4rem;
}
.site-footer__contact li {
  display: flex;
  justify-content: center;
}
.site-footer__contact li:not(:last-child) {
  margin-bottom: 1.2rem;
}
.site-footer__contact a {
  text-decoration: none;
}
.site-footer__contact svg {
  flex: 0 0 auto;
  color: var(--color-red);
  margin-right: 0.8rem;
  margin-top: -0.1rem;
}
@media (min-width: 768px) {
  .site-footer__contact li {
    justify-content: initial;
  }
}
@media (min-width: 1200px) {
  .site-footer__contact {
    margin-bottom: 0;
  }
}


.site-footer__navs {
  grid-area: navs;
}

.footer-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  gap: 2rem clamp(3rem,7vw,5.5rem);
  justify-content: center;
  font-family: var(--font-elza);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-nav__link {
  text-decoration: none;
}

.site-footer__socials {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 3rem;
}
.site-footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  color: var(--color-red);
}
.site-footer__socials a:hover,
.site-footer__socials a:focus {
  color: var(--color-blue);
}


.site-footer__legal {
  grid-area: legal;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem 2rem;
  justify-content: center;
  line-height: 1.1;
  color: var(--color-blue);
  text-align: center;
}
.site-footer__legal a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .site-footer__contact li {
    display: block;
    text-align: center;
  }
}

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

.blog-posts {
  padding-bottom: 0rem;
  padding-top: 8rem;
}

.blog_post {
  padding-bottom: 100px;
}
.blog-listing__listing {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 5rem;
  row-gap: 6rem;
  margin-bottom: 2rem;
}
.blog-listing__hero {
  background: var(--color-maroon);
  color: #fff;
  padding-bottom: 12rem;
  margin-bottom: -10rem;
}
.blog-listing__hero h1 {
  color: #fff;
  position: relative;
  z-index: 3;
}
.blog-listing__hero-overlay{
  position: absolute;
  right: 0;
  top: -4rem;
  width: 203px;
  height: 540px;
  transform: scaleX(-1);
  z-index: 0;
  color: var(--color-red);
}

.blog-listing__first-item {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.blog-listing__first-item-img {
  position: relative;
}
.blog-listing__first-item-img img {
  width: 100%;
  aspect-ratio: 120/63;
  object-fit: cover;
}
.blog-listing__first-item-img::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-light-blue) 0%, #CCEDE600 45%);
  top: 0;
  left: 0;
}
.blog-listing__first-item .post-item-content {
  padding: 2rem;
}
.blog-listing__first-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0 120px 0 0;
}
@media (min-width: 960px){
  .blog-listing__listing {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-listing__first-item {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-template-columns: 4fr 5fr;
    padding: 4rem 0 0;
    margin: 0 auto 10rem;
    max-width: 1300px;
  }
  .blog-listing__first-item:before {
    border-radius: 0 400px 0 0;
    width: 85%;
  }
  .blog-listing__first-item .post-item-content {
    padding: 8rem 6rem;
  }
  .blog-listing__first-item .post-item-content {
    order: 1
  }
  .blog-listing__first-item-img {
    order: 2;
    margin: 0 0 -6rem;
  }
  .blog-listing__first-item-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 200px 0 0 0;
  }
  .blog-listing__first-item-img::after {
    background: linear-gradient(to right, var(--color-light-blue) 0%, #CCEDE600 45%);
    left: -1px;
  }
}

.blog-list-tags a {
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-list-tags {
  color: var(--color-red);
  display: block;
  padding-bottom: 20px;
}

.blog-listing__title {
  margin: 0 0 2rem;
}

.blog-listing__item .blog-listing__excerpt {
  margin-top: 0;
}

.blog-listing__title a {
  color: var(--color-blue);
  text-decoration: none;
}

.blog-listing__title a:hover {
  color: var(--color-red);
}

.blog-listing__body {
  color: var(--color-black);
  font-weight: 400;
}

.blog-listing__item .post-item-content {
  margin: 3rem 0 0;
  color: var(--color-blue);
}

.blog-listing__excerpt {
  color: var(--color-blue);
}

.post-item-read-more {
  color: var(--color-blue);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1rem;
  justify-content: space-between;
}

.blog-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0 0;
}

.blog-pagination a {
  color: var(--color-black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.blog-pagination .pagination-arrow {
  display: flex;
  margin-right: 8px;
}

.blog-pagination .pagination-arrow svg {
  width: 14px;
  height: 14px;
  display: inline-block;
}


.blog-pagination .pagination-arrow.next-arrow {
  margin-left: 8px;
  margin-right: 0;
}

.blog-pagination a:hover {
  color: var(--color-red);
}

.blog-pagination a:hover svg, .blog-pagination a:hover svg path {
  fill: var(--color-red);
}


.blog-listing__listing_wrap {
  padding-bottom: 100px;
  padding-top: 0;
}

.back-link {
  margin-bottom: 60px;
}

.back-link a {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.back-link span.back-arrow {
  vertical-align: middle;
  width: 11px;
  height: 20px;
  margin-right: 20px;
}

.blog-post {
  margin-top: 50px;
}

.blog-post__meta {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-red);
  margin-bottom: 20px;
}

.meta_title {
  margin-right: 14px;
}

.blog-post__body {
  color: var(--color-black);
}

.blog-post__body img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-post__body blockquote {
  border-left: none;
  color: var(--color-black);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.23333333;
  margin: 30px 0;
  padding-left: 0;
  text-transform: capitalize;
}

.blog-post__body blockquote cite {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  text-transform: uppercase;
  color: var(--color-black);
  display: block;
  font-style: normal;
  margin-top: 25px;
}


.blog-sidebar_col {
  width: 30%;
  padding: 0 20px 0 40px;
}

.blog-post_col {
  width: 70%;
  padding: 0 40px 0 20px;
}

.blog-post_content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.blog-sidebar-widget:not(:last-child) {
  margin-bottom: 40px;
}

.sidebar-social-share {
  border-bottom: 1px solid var(--color-blue);
  padding: 0 0 5rem;
  margin-bottom: 5rem;
}

.sidebar-social-share h5 {
  color: var(--color-blue);
  text-transform: uppercase;
}

.sidebar-social-share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.sidebar-social-share ul li a {
  display: inline-grid;
  padding: 8px;
  margin-right: 5px;
  border-radius: 8px;
}

.blog-sidebar-widget h3 {
  margin-bottom: 30px;
}

.blog-related-post__wrapper h2 {
  text-align: left;
  color: var(--color-blue);
}

.blog-related-post__wrapper .blog-listing__listing {
  padding: 3rem 0 0;
}

.blog_post_comments p a {
  color: var(--body-font-color);
  font-weight: bold;
  font-style: italic;
  text-decoration: none;
}

.blog_post_comments p a:hover {
  color: var(--color-red);
}

.rec_post_item {
  border-top: 1px solid rgb(0 0 0 / 20%);
  padding-top: 25px;
  padding-bottom: 25px;
}

.rec-post-title a {
  color: var(--color-black);
  display: block;
  font-family: var(--font-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.13;
}

.rec-post-title a:hover {
  color: var(--color-red);
}

.blog-listing__img {
  overflow: hidden;
  border-radius: 0;
}

.blog-listing__featured-image {
  object-fit: cover;
  width: 100%;
  height: 325px;
  object-position: center;
  transition: 0.3s;
  border-radius: 0 120px 0 0;
}

.blog-listing__img:hover img {
  transform: scale(1.25);
}

.blog-comments {
  padding: 4rem 0;
}

.blog-comments h5 {
  color: var(--color-blue);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-blue);
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}

.blog-comments form {
  max-width: 100%;
}

.blog-comments .hs_submit.hs-submit {
  padding-top: 10px;
}

.post-item-meta {
  font-size: 18px;
  padding: 10px 0 20px;
  font-weight: 600;
  color: var(--color-blue);
}

.post-item-date {
  text-transform: uppercase;
  margin: 3rem 0 1rem;
}


.blog-listing__top-bar {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 0;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.blog-listing__topic-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.5rem;
}

.blog-listing__topic-list ul li a {
  padding: 1.267em 2.5em 1.067em;
  margin: 0.5rem 0;
}

.blog-listing__search .hs-search-field__form {
  position: relative;
  margin: 0.5rem 0;
}

.blog-listing__search form > .hs-search-field__input {
  border: .2rem solid var(--color-blue);
  border-radius: 30px;
  padding: .7em 1em .7em 2.5em;
  width: 100%;
  color: var(--body-font-color);
}

.blog-listing__search {
  max-width: 387px;
  width: 100%;
}

.blog-listing__search .hs-search-field__form .hs-search-field__button {
  position: absolute;
  top: calc(50% - 8px);
  left: 2rem;
}

.blog-listing__search .hs-search-field__form .hs-search-field__button svg {
  height: 15px;
  fill: var(--color-red);
}

.blog-listing__search .hs-search-field--open .hs-search-field__suggestions, 
.blog-listing__search .inpage-editor-active-field .hs-search-field__suggestions {
  padding: 10px 6px;
}

.blog-listing__search .hs-search-field__suggestions-container {
  z-index: 1;
}

.blog-listing__search .hs-search-field__suggestions {
  background-color: #fff;
  box-shadow: 1px 10px 16px -9px hsla(0, 0%, 48%, .75);
  position: absolute;
  width: 100%;
}

.blog-listing__search .hs-search-field__suggestions .results-for, 
.blog-listing__search .hs-search-field__suggestions a {
  padding: 5px 10px;
  line-height: 1.25;
}

.blog-listing__search form > .hs-search-field__input:placeholder-shown ~ .hs-search-field__suggestions-container ul {
  padding: 0;
  border: 0;
}

.post-item-author {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}

.post-item-author img {
  height: 50px;
  border-radius: 100%;
  margin: 0;
}

.post-item-author h4 a {
  text-decoration: none;
}

.post-item-author h4 {
  margin: 7px 0 0;
}

.blog-post-feature-image .blog-post__featured-image {
  width: 100%;
  max-height: 583px;
  object-fit: cover;
  object-position: center;
}

.woodmark {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.blog-listing-container {
  position: relative;
  overflow: hidden;
}

.blog-related-post__wrapper {
  padding: 8rem 0 0;
}



@media (max-width: 991px){

  .topics-wrapper {
    padding-top: 80px;
  }

  .blog-post_col {
    padding-right: 20px;
    width: 100%;
  }

  .blog-sidebar_col {
    padding-left: 20px;
    width: 100%;
    margin-top: 50px;
  }

  .blog-sidebar-widget:not(:last-child) {
    margin-bottom: 25px;
  }

  .rec_post_item {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .blog_post {
    padding-bottom: 60px;
  }

  .blog-listing__listing_wrap {
    padding-top: 30px;
  }

  .blog-listing__listing {
    row-gap: 4rem;
  }

}

@media (max-width: 767px){
  .blog-listing__item {
    width: 100%;
    margin-bottom: 40px;
  }

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

  .blog-listing__featured-image {
    height: auto;
  }

  .blog-pagination {
    padding: 20px 0;
  }

  .woodmark {
    bottom: 20px;
  }

  .blog-listing__top-bar {
    padding: 3rem 0;
  }

  .blog-listing__search {
    max-width: 100%;
  }

}

.blog-header {
  background: var(--blue-dark);
  color: var(--white);
}
.blog-header h1 {
  margin: 0 0 .25rem;
}


/* blog index  */


.blog-listing__pagination {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}
.blog-pagination__numbers {
  padding: 0 1rem;
}
.blog-listing__pagination .blog-pagination__link {
  display: inline-block;
  padding: .25em .5em;
  background: var(--super-light);
  min-width: 1em;
  text-align: center;
}
.blog-listing__pagination .blog-pagination__link:hover,
.blog-listing__pagination .blog-pagination__link--active {
  background: var(--blue-bright);
  color: var(--white);
}
.blog-sidebar {
  padding: 2rem 0;
}
.blog-subscribe,
.blog-sidebar-subscribe {
  padding: 2rem 1rem;
  border-radius: 1rem;
}
.blog-listing__recent-posts ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1em;
  font-weight: bold;
}
.blog-listing__recent-posts li {
  line-height: 1.6;
  margin: 0 0 1em;
}
.blog-sidebar-search {
  background-color: var(--blue-light);
  padding: 3rem 1rem 2rem;
  border-radius: 1rem;
}
.blog__social-sharing {
  padding: 2rem 0;
}
.blog__social-sharing a {
  display: inline-block;
  padding: 0 .25rem;
}
.blog__social-sharing svg {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .blog-listing > .container {
    grid-template-columns: 2fr 1fr;
    column-gap: 6rem;
  }
}
/* blog post  */
.blog-post > .container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
}
.blog-post-inner {
  padding: 2rem 0;
}
.blog-post .hs-featured-image-wrapper {
  margin-bottom: 2rem;
}
.blog-post__details {
  font-weight: bold;
}
.blog-post .a2a_kit a {
  display: inline-block;
}
.blog-post-subscribe {
  background-color: var(--blue-dark);
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
}
.blog-post__recent-posts ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1em;
  font-weight: bold;
}
.blog-post__recent-posts li {
  margin: 0 0 .25em;
}
@media (min-width: 992px) {
  .blog-post > .container {
    grid-template-columns: 2fr 1fr;
    column-gap: 6rem;
  }
}