/* Theme base styles */

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

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

:root {
  --c-indigo: #504384;          /* Deep Indigo */
  --c-lavender: #BAB3CF;        /* Lavender Gray */
  --c-purple-dark: #282242;     /* Midnight Purple */
  --c-orange: #F9A100;          /* Vivid Orange */
  --c-teal-deep: #082C2C;       /* Deep Teal */
  --c-teal: #1EAFAF;            /* Aqua Teal */
  --c-aqua: #A5DFDF;            /* Pale Aqua */
  --c-gray-light: #E6E6E6;      /* Light Gray */
  --c-brown: #7D5100;           /* Warm Brown */
  --c-pink-soft: #F9BDBD;       /* Soft Pink */
  --c-amber: #FDD999;           /* Pale Amber */
  --c-coral: #FF4C54;           /* Coral Red */
  --c-black-deep: #141121;      /* Ink Black */
  --c-red-dark: #82272B;        /* Dark Red */
  --c-brown-dark: #432800;      /* Dark Brown */
  --c-burgundy: #411416;        /* Burgundy */
  --c-teal-dark: #005655;       /* Ocean Teal */
  --c-pink: #F79D9D;            /* Peach Pink */
  --c-lavender-muted: #968EB5;  /* Muted Lavender */
  --c-seafoam: #78CFCF;         /* Seafoam */
  --c-white: #FFFFFF;           /* White */
  --c-black: #000000;           /* Black */
  --c-gray: #D9D9D9;
  --c-light-amber: #FBC766;

  --body-background: var(--c-white);
  --global-font-size: 1.6rem;
  --global-weight-normal: 500;
  --global-weight-bold: 700;
  --global-lineheight: 1.5;
  --global-radius: 0;
  --col-gap: 3rem;
  --content-padding: 2rem;
  --content-padding-mobile: 1.5rem;
  --section-padding: clamp(4rem, 6vw, 8rem) 0;

  --font-body: 'Montserrat', sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-heading-alt: 'Montserrat', sans-serif;
  

  --width-content: 160rem;
  --width-wide: 200rem;
  --width-nav: 160rem;
  --width-medium: 120rem;
  --width-narrow: 96rem;
}

/* Tools
This is where some nice helper classes and utilities are set.
*/
/* 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%;
}
/* Missing Template at Path: \'Rewst-2025\/css\/_macros.css\' */

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

.breakpoint-indicator {
  background-color: #333;
  var(--c-inv);
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.6rem 1rem;
  border-radius: 0 0.5rem 0 0;
  position: fixed;
  bottom: 0;
  left: 0;
/*   z-index: 10000; */
  z-index: 999999 !important;
}

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

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

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

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

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

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

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

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

a {
  background-color: transparent;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

img {
  border-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

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

template {
  display: none;
}

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

[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  font-size: 10px;
  scroll-behavior: smooth;
}

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

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

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

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

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

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

html {
    scroll-behavior: smooth;
}
body {
    color: var(--c-main);
    font-family: var(--font-body);
}

/* Layout
-------------------------------------------- */

@media (min-width: 1200px) {

}
.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: var(--section-padding);
    position: relative;
}

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

/* Background Colors */

.bg-white {
    background-color: var(--c-inv);
}
.bg-main {
    background-color: var(--c-main);
    color: var(--c-inv);
}
.bg-second {
    background-color: var(--c-second);
    color: var(--c-inv);
}
.bg-third {
    background-color: var(--c-third);
    color: var(--c-second);
}
.bg-light {
    background-color: var(--c-light);
}
.bg-super-light {
    background-color: var(--c-super-light);
}
.bg-dark {
    background-color: var(--c-dark);
    color: var(--c-inv);
}
.bg-theme-01 {
  background: var(--c-main);
  color: var(--c-inv);
  a:not(.btn) {
    color: var(--c-inv);
  }
}
.bg-theme-02 {
  background: var(--c-second);
  color: var(--c-inv);
  a:not(.btn) {
    color: var(--c-inv);
  }
}
.bg-theme-03 {
  background: var(--c-third);
  color: var(--c-main);
  a:not(.btn) {
    color: var(--c-main);
  }
}

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

/* 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-heading);
  color: var(--c-orange);
  font-weight: var(--global-weight-bold);
  font-style: normal;
  line-height: 1.11;
  /*   --min-w: 37.5;
  --max-w: 144;
  --min-fs: 1;
  --max-fs: 6;
  --slope: calc( ( var(--max-fs) - var(--min-fs) ) / ( var(--max-w) - var(--min-w) ) );
  --y-axis-inter: calc( calc( var(--min-w) * -1 ) * var(--slope) + var(--min-fs) );

  font-size: clamp( calc( var(--min-fs) * 1rem ), calc( var(--y-axis-inter) * 1rem ) + calc( var(--slope) * 100vw ) , calc( var(--max-fs) * 1rem ) ); */
}

p:first-child,
ul:first-child,
ol:first-child,
h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child,
h6:first-child, .h6:first-child {
  margin-top: 0;
}

h1, .h1 {
  --h1-min-fs: 4.5rem;
  --h1-max-fs: 6rem;
  font-size: clamp(var(--h1-min-fs), 5vw, var(--h1-max-fs));
  line-height: 1.2;
}

h2, .h2 {
  --h2-min-fs: 4rem;
  --h2-max-fs: 5.6rem;
  font-size: clamp(var(--h2-min-fs), 5vw, var(--h2-max-fs));
  line-height: 1.15;
}

h3, .h3 {
  font-family: var(--font-body);
  --h3-min-fs: 2.8rem;
  --h3-max-fs: 3.6rem;
  font-weight: 900;
  font-size: clamp(var(--h3-min-fs), 4.5vw, var(--h3-max-fs));
  line-height: 1.11;
}

h4, .h4 {
  --h4-min-fs: 2.6rem;
  --h4-max-fs: 3rem;
  font-family: var(--font-body);
  font-size: clamp(var(--h4-min-fs), 4vw, var(--h4-max-fs));
  line-height: 1.2;
}

h5, .h5 {
  --h5-min-fs: 2rem;
  --h5-max-fs: 2.6rem;
  font-size: clamp(var(--h5-min-fs), 4.5vw, var(--h5-max-fs));
}

h6, .h6 {
  --h6-min-fs: 1.8rem;
  --h6-max-fs: 2.0rem;
  font-size: clamp(var(--h6-min-fs), 4vw, var(--h6-max-fs));
}


/* Links */
a {
  color: var(--c-indigo);
  text-decoration: underline;
  text-underline-offset: .375em;
  overflow-wrap: break-word;
  transition: all .3s;
}

a:hover,
a:focus {
  color: var(--c-indigo);
  text-underline-offset: .25em;
  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-orange);
  border-left: 0;
}
hr.hr--mini {
  max-width: 10rem;
}

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

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

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

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

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

/* ul > li::marker {
color: red;
} */


@media (min-width: 768px) {
  ul.columns-2, 
  ol.columns-2,
  ul.columns-3, 
  ol.columns-3 {
    column-gap: 7rem;
  }
  ul.columns-2, 
  ol.columns-2 {
    column-count: 2;
  }
  ul.columns-3, 
  ol.columns-3 {
    column-count: 3;
  }
}

.list-unstyled {
  margin-left: 0;
  list-style: none;
}

/* Colors */

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

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

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

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

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


/* Background color utilities */
/* Combined background classes */
.bg-aqua, .cbg-aqua, .sbg-aqua, .lbg-aqua { background: var(--c-aqua); }
.bg-teal, .cbg-teal, .sbg-teal, .lbg-teal { background: var(--c-teal); }
.bg-black-deep, .cbg-black-deep, .sbg-black-deep, .lbg-black-deep { background: var(--c-black-deep); }
.bg-orange, .cbg-orange, .sbg-orange, .lbg-orange { background: var(--c-orange); }
.bg-purple, .cbg-purple, .sbg-purple, .lbg-purple { background: var(--c-purple-dark); }
.bg-seafoam, .cbg-seafoam, .sbg-seafoam, .lbg-seafoam { background: var(--c-seafoam); }
.bg-teal-dark, .cbg-teal-dark, .sbg-teal-dark, .lbg-teal-dark { background: var(--c-teal-dark); }
.bg-teal-deep, .cbg-teal-deep, .sbg-teal-deep, .lbg-teal-deep { background: var(--c-teal-deep); }
.bg-gray-light, .cbg-gray-light, .sbg-gray-light, .lbg-gray-light { background: var(--c-gray-light); }
.bg-lavender, .cbg-lavender, .sbg-lavender, .lbg-lavender { background: var(--c-lavender); }
.bg-amber, .cbg-amber, .sbg-amber, .lbg-amber { background: var(--c-amber); }
.bg-indigo, .cbg-indigo, .sbg-indigo, .lbg-indigo { background: var(--c-indigo); }
.sbg-red {background: var(--c-coral);}
.cbg-lavender-muted{background: var(--c-lavender-muted);}


/* Color utilities */
/* .sbg-aqua { color: var(--c-aqua); } 
.sbg-teal { background: var(--c-teal); } 
.sbg-black-deep { background: var(--c-black-deep); } 
.sbg-orange { background: var(--c-orange); } 
.sbg-purple-dark { background: var(--c-purple-dark); } 
.sbg-seafoam { background: var(--c-seafoam); } 
.sbg-teal-dark { background: var(--c-teal-dark); } 
.sbg-teal-deep { background: var(--c-teal-deep); } 
.sbg-gray-light { background: var(--c-gray-light); } 
.sbg-lavender { background: var(--c-lavender); } 
.sbg-amber { background: var(--c-amber); } 
.sbg-indigo { background: var(--c-indigo); } */

/* ==============================
COLOR SETS FOR .cbg-* and .lbg-* 
============================== */

/* General text color sets */
.cbg-aqua,
.cbg-teal,
.cbg-seafoam,
.cbg-orange,
.cbg-gray-light,
.lbg-aqua,
.lbg-teal,
.lbg-seafoam,
.lbg-orange,
.lbg-gray-light {
  color: var(--c-teal-deep);
}

.cbg-teal-dark, 
.cbg-black-deep,
.cbg-teal-deep,
.cbg-indigo,
.cbg-purple,
.lbg-teal-dark,
.lbg-black-deep,
.lbg-teal-deep,
.lbg-indigo,
.lbg-purple {
  color: var(--c-gray-light);
}

.cbg-amber,
.lbg-amber {
  color: var(--c-brown-dark);
}

.cbg-gray,
.lbg-gray {
  background: var(--c-gray);
}

/* Headings inside background or color classes */
.cbg-black-deep :is(h1,h2,h3,h4,h5,h6),
.cbg-purple :is(h1,h2,h3,h4,h5,h6),
.cbg-teal-deep :is(h1,h2,h3,h4,h5,h6),
.lbg-black-deep :is(h1,h2,h3,h4,h5,h6),
.lbg-purple :is(h1,h2,h3,h4,h5,h6),
.lbg-teal-deep :is(h1,h2,h3,h4,h5,h6),
.lbg-indigo :is(h1, h2, h3, h4, h5, h6) {
  color: var(--c-orange);
}

.cbg-aqua :is(h1, h2, h3, h4, h5, h6),
.cbg-orange :is(h1, h2, h3, h4, h5, h6),
.cbg-seafoam :is(h1, h2, h3, h4, h5, h6),
.cbg-gray-light :is(h1,h2,h3,h4,h5,h6),
.cbg-teal :is(h1,h2,h3,h4,h5,h6),
.lbg-aqua :is(h1, h2, h3, h4, h5, h6),
.lbg-orange :is(h1, h2, h3, h4, h5, h6),
.lbg-seafoam :is(h1, h2, h3, h4, h5, h6),
.lbg-gray-light :is(h1,h2,h3,h4,h5,h6),
.lbg-teal :is(h1,h2,h3,h4,h5,h6){
  color: var(--c-teal-deep);
}

.cbg-teal-dark :is(h1, h2, h3, h4, h5, h6),
.lbg-teal-dark :is(h1, h2, h3, h4, h5, h6){
  color: var(--c-gray-light);
}

.cbg-amber :is(h1,h2,h3,h4,h5,h6),
.lbg-amber :is(h1,h2,h3,h4,h5,h6){
  color: var(--c-brown-dark);
}

/* Pink */
.cbg-pink,
.lbg-pink {
  background: var(--c-pink-soft);
  color: var(--c-red-dark);
}

.cbg-pink :is(h1,h2,h3,h4,h5,h6),
.lbg-pink :is(h1,h2,h3,h4,h5,h6){
  color: var(--c-red-dark);
}

/* Indigo and Lavender */
.cbg-indigo,
.cbg-indigo :is(h1, h2, h3, h4, h5, h6),
.lbg-indigo{
  color: var(--c-lavender);
}

.cbg-lavender,
.cbg-lavender :is(h1,h2,h3,h4,h5,h6),
.lbg-lavender,
.lbg-lavender :is(h1,h2,h3,h4,h5,h6){
  color: var(--c-purple-dark);
}

.lbg-indigo {
  color: var(--c-lavender);
}

/* ========== BUTTON STYLES ========== */

.cbg-amber .btn, 
.cbg-amber .btn-primary,
.lbg-amber .btn, 
.lbg-amber .btn-primary {
  border-color: var(--c-brown-dark);
  background: var(--c-brown-dark);
  color: var(--c-orange);
}

.cbg-amber .btn--second,
.lbg-amber .btn--second {
  border-color: var(--c-brown-dark);
  background: transparent;
  color: var(--c-brown-dark);
}

.cbg-amber .btn:hover, 
.cbg-amber .btn:focus, 
.cbg-amber .btn-primary:hover,
.cbg-amber .btn-primary:focus,
.lbg-amber .btn:hover, 
.lbg-amber .btn:focus, 
.lbg-amber .btn-primary:hover,
.lbg-amber .btn-primary:focus {
  border-color: var(--c-brown-dark);
  background: transparent;
  color: var(--c-brown-dark);
}

.cbg-amber .btn--second:hover,
.cbg-amber .btn--second:focus,
.lbg-amber .btn--second:hover,
.lbg-amber .btn--second:focus {
  border-color: var(--c-brown-dark);
  background: var(--c-brown-dark);
  color: var(--c-orange);
}

.cbg-amber .btn:after,
.lbg-amber .btn:after {
  border: 1px solid var(--c-brown-dark);
}

/* Aqua / Seafoam / Gray-light / Lavender */
.cbg-aqua .btn, 
.cbg-aqua .btn--primary,
.cbg-seafoam .btn, 
.cbg-seafoam .btn--primary,
.cbg-gray-light .btn, 
.cbg-gray-light .btn--primary,
.cbg-lavender .btn, 
.cbg-lavender .btn--primary,
.lbg-aqua .btn, 
.lbg-aqua .btn--primary,
.lbg-seafoam .btn, 
.lbg-seafoam .btn--primary,
.lbg-gray-light .btn, 
.lbg-gray-light .btn--primary,
.lbg-lavender .btn, 
.lbg-lavender .btn--primary {
  border-color: var(--c-teal-deep);
  background: var(--c-teal-deep);
  color: var(--c-orange);
}

.cbg-aqua .btn:hover, 
.cbg-aqua .btn:focus,
.cbg-aqua .btn--primary:hover,
.cbg-aqua .btn--primary:focus,
.cbg-seafoam .btn--primary:hover,
.cbg-seafoam .btn--primary:focus,
.cbg-gray-light .btn--primary:hover,
.cbg-gray-light .btn--primary:focus,
.cbg-lavender .btn--primary:hover,
.cbg-lavender .btn--primary:focus,
.lbg-aqua .btn:hover, 
.lbg-aqua .btn:focus,
.lbg-aqua .btn--primary:hover,
.lbg-aqua .btn--primary:focus,
.lbg-seafoam .btn--primary:hover,
.lbg-seafoam .btn--primary:focus,
.lbg-gray-light .btn--primary:hover,
.lbg-gray-light .btn--primary:focus,
.lbg-lavender .btn--primary:hover,
.lbg-lavender .btn--primary:focus {
  color: var(--c-teal-deep);
  background: transparent;
}

/* Secondary Buttons */
.cbg-aqua .btn--second,
.cbg-seafoam .btn--second,
.cbg-gray-light .btn--second,
.cbg-lavender .btn--second,
.lbg-aqua .btn--second,
.lbg-seafoam .btn--second,
.lbg-gray-light .btn--second,
.lbg-lavender .btn--second {
  border-color: var(--c-teal-deep);
  color: var(--c-teal-deep);
  background: transparent;
}

.cbg-aqua .btn--second:hover,
.cbg-aqua .btn--second:focus,
.cbg-seafoam .btn--second:hover,
.cbg-seafoam .btn--second:focus,
.cbg-gray-light .btn--second:hover,
.cbg-gray-light .btn--second:focus,
.cbg-lavender .btn--second:hover,
.cbg-lavender .btn--second:focus,
.lbg-aqua .btn--second:hover,
.lbg-aqua .btn--second:focus,
.lbg-seafoam .btn--second:hover,
.lbg-seafoam .btn--second:focus,
.lbg-gray-light .btn--second:hover,
.lbg-gray-light .btn--second:focus,
.lbg-lavender .btn--second:hover,
.lbg-lavender .btn--second:focus {
  border-color: var(--c-teal-deep);
  background: var(--c-teal-deep);
  color: var(--c-orange);
}

/* Teal */
.cbg-teal .btn--primary:hover,
.cbg-teal .btn--primary:focus,
.lbg-teal .btn--primary:hover,
.lbg-teal .btn--primary:focus {
  border-color: var(--c-teal-deep);
  color: var(--c-orange);
  background: var(--c-teal-deep);
}

.cbg-teal .btn--second,
.lbg-teal .btn--second {
  border-color: var(--c-teal-deep);
  color: var(--c-orange);
  background: var(--c-teal-deep);
}

.cbg-teal .btn--second:hover,
.cbg-teal .btn--second:focus,
.lbg-teal .btn--second:hover,
.lbg-teal .btn--second:focus {
  border-color: var(--c-orange);
  background: var(--c-orange);
  color: var(--c-teal-deep);
}

/* Orange */
.cbg-orange .btn, 
.cbg-orange .btn--primary,
.lbg-orange .btn, 
.lbg-orange .btn--primary {
  border-color: var(--c-teal-deep);
  background: var(--c-teal-deep);
  color: var(--c-white);
}

.cbg-orange .btn:hover,
.cbg-orange .btn:focus,
.cbg-orange .btn--primary:hover,
.cbg-orange .btn--primary:focus,
.lbg-orange .btn:hover,
.lbg-orange .btn:focus,
.lbg-orange .btn--primary:hover,
.lbg-orange .btn--primary:focus {
  background: transparent;
  color: var(--c-teal-deep);
}

.cbg-orange .btn--second,
.lbg-orange .btn--second {
  border-color: var(--c-teal-deep);
  background: transparent;
  color: var(--c-teal-deep);
}

.cbg-orange .btn--second:hover,
.cbg-orange .btn--second:focus,
.lbg-orange .btn--second:hover,
.lbg-orange .btn--second:focus {
  border-color: var(--c-teal-deep);
  background: var(--c-teal-deep);
  color: var(--c-white);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--c-white);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-teal-deep);
  table-layout: fixed;
}

table td, table th {
  word-wrap: break-word;
}

table thead{
  background: var(--c-teal-deep);
  color: var(--c-white);
}

table thead th {
  background: linear-gradient(180deg, var(--c-white);0%, #f8faff 100%);
  text-align: left;
  font-weight: bold;
  padding: 2rem;
  border-bottom: 1px solid var(--c-white);
  border-right: 1px solid var(--c-white);
}

table thead th:last-child {
  border-right: none;
}

table tbody tr {
  transition: background-color 0.12s ease;
}

table tbody tr:nth-child(odd) {
  background: #fbfdff;
}

table tbody tr:hover {
  background: #f1f7ff;
}

table td {
  padding: 2rem;
  vertical-align: top;
  border-bottom: 1px solid var(--c-teal-deep);
  border-right: 1px solid var(--c-teal-deep);
  text-align: left;
}

table td:first-child {
  min-width: 220px;
}

table td p {
  margin: 0;
}

table tbody tr th {
  padding: 2rem;
  vertical-align: top;
  border-right: 1px solid var(--c-teal-deep);
  border-bottom: 1px solid var(--c-teal-deep);
}

table tr:last-child td {
  border-bottom: none;
}

table td:last-child, table tbody tr th:last-child {
  border-right: none;
}

/* responsive for small screens */
@media (max-width: 767px) {
  table {
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    font-size: 85%;
  }

  table tbody tr:nth-child(odd) {
    background: #fff;
  }

  table td,
  table tbody tr th{
    padding: 1rem;
  }

  table thead th {
    padding: 1rem;
  }

}

/* print */
@media print {
  table {
    box-shadow: none;
  }

  table thead th {
    position: static;
    background: #fff;
  }
}
.btn,
.cta_button,
.hs_button,
.hs-button,
.btn-primary,
.btn-secondary{
  display: inline-block;
  vertical-align: middle;
  text-decoration: none ;
  transition: color 0.15s ease-out, background-color 0.15s ease-out;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 20px;
  border: 1px solid var(--c-orange);
  background: var(--c-orange);
  text-decoration: none;
  color: var(--c-teal-deep);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 5px 50px 5px 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  opacity: 1;
}


.btn:after,
.cta_button:after,
.hs_button:after,
.hs-button:after,
.btn-primary:after{
  content: "";
  background-image: url(https://9166445.fs1.hubspotusercontent-na1.net/hubfs/9166445/Rewst_2025/Theme/Images/button-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  position: absolute;
  right: -1px;
  top: -0.5px;
  bottom: 0;
  width: 41px;
  height: 41px;
  border-radius: 20px;
  background-color: var(--c-orange);
  transition: background-color 0.15s ease-out;
  border: 1px solid transparent;
}

.btn:hover,
.btn:focus,
.cta_button:hover,
.cta_button:focus,
.hs_button:hover,
.hs_button:focus,
.hs-button:hover,
.hs-button:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn--second{
  background: transparent;
  color: var(--c-orange);
}


.btn--second:hover,
.btn--second:focus{
  background: var(--c-orange);
  color: var(--c-teal-deep);
}

@media (max-width: 991px){
  .btn,
  .cta_button,
  .hs_button,
  .hs-button,
  .btn-primary,
  .btn-secondary{
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

@media (max-width: 767px){
  .btn, .cta_button, .hs_button, .hs-button {
    font-size: 18px;
    padding: 5px 48px 5px 12px;
  }

  .btn:after, .cta_button:after, .hs_button:after, .hs-button:after {
    background-size: 39px;
    width: 39px;
    height: 39px;
  }
}
/* 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%;
  border-radius: 30px;
  background: var(--c-gray-light);
  color: var(--c-teal-deep);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--c-gray-light);
  margin-bottom: 1.5rem;
}

form .hs-form-field> label {
  padding-bottom: 6px;
  display: block;
}

form select {
  height: 48px;
}

form .hs-submit {
  text-align: center;
}

form .hs-button:after {
  display: none;
}

form .hs-button {
  padding: 6px 25px;
}

form .hs-button:hover,
form .hs-button:focus {
  background: transparent;
  border-color: var(--c-teal-deep);
  color: var(--c-teal-deep);
}


textarea {
  min-height: 10rem;
}

.hs-button {
  cursor: pointer
}

/* Inputs List */

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

/* Error */

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

/* Captcha */

.hs_recaptcha {
  margin-bottom: 2rem;
}

/* Fix Column Layouts */

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

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

input#hs-pwd-widget-password {
    height: auto !important;
    margin-top: auto !important;
}
[type="checkbox"] {
    margin-right: 5px;
}

.hs-fieldtype-intl-phone.hs-input .hs-input {
    margin-bottom: 1.5rem !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;
  }
}


.system-banner .shero__content-wrap {
    padding: 0;
}

.system-banner .shero__content-col {
    width: 100%;
}

.system-banner .shero__media-col {
    width: auto;
    padding: 0;
}



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

/* Navigation Skipper */

.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 4rem;
  padding: 1rem;
  color: var(--c-teal-deep) !important;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  border-right: 1px solid var(--c-white);
  border-bottom: 1px solid var(--c-white);
  border-bottom-right-radius: 0.8rem;
  background-color: var(--c-orange);
  transform: translateY(-100%);
  transition: all .3s;
  z-index: 100;
}
.skip-to-content:focus {
  transform: translateY(0);
  transition: all .3s;
}
.skip-to-content:hover {
  background-color: #861018;
}



body {}

.header-wrapper {
  background-color: var(--c-teal);
}

.site-header {  
  width: 100%;
  position: relative;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.25s ease;
  will-change: transform;
}
.site-header[data-scroll-direction="up"] {
  transform: translateY(0%);
}
.site-header[data-scroll-direction="down"] {
  transform: translateY(-100%);
}

.header-sticky .site-header {
    position: fixed;
}


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

.site-header-top {
  background: var(--c-teal-deep);
  transition: transform .3s;
}

.site-header__main {
  padding: 3rem 1.5rem;
}

.header-fixed .site-header-top {
  position: relative;
  transform: translateY(-62px);
  transition: transform .3s;
}

.header-fixed .site-header__main {
  transform: translateY(-62px);
  transition: transform .3s;
}

/* Header Secondary */

.site-header__secondary {
  display: none;
  padding: 2rem 0;
}

.header--lp .header-col-wrapper {
    padding-top: 11px;
    padding-bottom: 11px;
}
@media (min-width: 1200px) {
  .site-header__secondary {
    display: flex;
    justify-content: flex-end;
    width: 95%;
    margin: 0 auto;
  }
}

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

/* Secondary Nav */

.secondary-nav {
  display: flex;
  align-items: center;
}
.secondary-nav__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.secondary-nav__list li {
  padding: 0 15px;
  display: flex;
}
.secondary-nav__link {
  color: var(--c-aqua);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  display: block;
}
.secondary-nav__link:hover,
.secondary-nav__link:focus {
  color: var(--c-orange);
}

.header-button {
  padding-left: 20px;
}

.header-button .hs-button {
  border: none;  
  padding-top: 6px;
  padding-bottom: 6px;
  overflow: inherit;
}

.header-button .hs-button:after {
  top: 0px;
  width: 42px;
  height: 42px;
}

.header-button .hs-button:hover,
.header-button .hs-button:focus {
  color: var(--c-orange);
  border-color: var(--c-teal-deep);
  background: var(--c-teal-deep);
}

/* Header Main */


@media (min-width: 1200px) {

}

.site-header__inner > .container {
  border-radius: 100px;
  background: var(--c-gray-light);
}

.header-col-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

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

.site-header__menu {
  display: none;
  align-items: center;
}

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

.main-nav-item {
  position: relative;
}

.main-nav-item .submenu-second {
  position: relative;
}

.main-nav-subitem__dropdown,
.main-nav-subitem__links{
  position: absolute;
  top: 100%;
  margin: 0;
  padding: 40px 0;
  list-style: none;
  width: 28rem;
  left: 0;
  background: var(--c-gray-light);
  z-index: 13;
  border-radius: 0 0 40px 40px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s 
    ease-out, visibility 0.3s 
    ease-out, transform 0.3s 
    ease-out;
}

.main-nav-item.submenu-second.is-open .main-nav-subitem__dropdown,
.main-nav-subitem.subitem-third.is-open .main-nav-subitem__links{
  opacity: 1;
  visibility: visible;
}

.main-nav-item:last-child .main-nav-subitem__dropdown {
  left: auto;
  right: 0;
}

.title-main-nav {
  margin: 0;
}

.main-nav-item > a{
  color: var(--c-teal-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none; 
  padding: 40px 16px;
  display: flex;
  align-items: center;
  position: relative;
}

.main-nav-item.submenu-second>a {
  padding-right: 38px;
}

.main-nav-item.is-open > a,
.main-nav-item > a:hover,
.main-nav-item > a:focus{
  background: var(--c-gray-light);
  color: var(--c-teal-dark);
}

.menu-dropdown-icon {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  /*   transition: transform 0.3s ease-out; */
  border: none;
  background: transparent;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.menu-dropdown-icon svg {
  width: 16px;
  height: 16px;
}

.main-nav-item.is-open > .menu-dropdown-icon {
  transform: scaleY(-1);
  margin-top: -8px;
}

.main-nav-item.is-open > .menu-dropdown-icon svg circle {
  fill: var(--c-orange);
}

.main-nav-item {
  position: relative;
}

.main-nav-subitem {
  margin-bottom: 8px;
}

.main-nav-subitem:hover {

}

.main-nav-link {
  display: flex;
  color: var(--c-teal-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  align-items: center;
  padding: 7px 15px;
  position: relative;
}

.main-nav-link:hover,
.main-nav-link:focus{
  color: var(--c-teal-dark);
  background: var(--c-light-amber);
}

button.second-level-toggle {
  margin-left: 0px;
  right: 10px;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  transition: transform 0.3s 
    ease-out;
  border: none;
  background: transparent;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

button.second-level-toggle svg {
  transform: rotate(-90deg);
}

.main-nav-subitem.subitem-third .main-nav-link {
  padding-right: 30px;
}

.image-container {
  margin-right: 12px;
  width: 30px;
}

.image-container .icon-normal, 
.image-container .icon-hover {
  width: 20px;
}

.image-container .icon-hover {
  display: none;
}

.main-nav-link:hover .image-container .icon-hover {
  display: inline-block;
}

.main-nav-link:hover .image-container .icon-normal {
  display: none;
}

.main-nav-subitem .content {
  text-align: left;
}

.main-nav-subitem .title {
  margin: 0;
}

.main-nav-link:last-child {
  margin-bottom: 0;
}

.main-nav-subitem:last-child{
  margin-bottom: 0;
}

.main-nav-subitem {
  position: relative;
}

.main-nav-subitem__links {
  left: 100%;
  padding: 20px 0;
  top: 0;
  border-radius: 0 0 20px 20px;
}

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

@media (min-width: 1200px) {
  .site-header__menu {
    display: flex;
  }

  .main-nav-item > a:after {
    content: "";
    width: calc(100% - 32px);
    height: 2px;
    position: absolute;
    bottom: 50px;
    left: 16px;
    right: 0;
    background: #1EAFAF;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .main-nav-item.is-open:hover > a:after,
  .main-nav-item > a:hover:after,
  .main-nav-item > a:focus:after {
    bottom: 37px;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 1300px) and (min-width: 1200px){
  .header-button .hs-button {
    font-size: 18px;
  }

  .header-button {
    padding-left: 10px;
  }

  .main-nav-item.submenu-second>a,
  .main-nav-item > a{
    padding-right: 15px;
    padding-left: 15px;
    font-size: 17px;
  }

  .menu-dropdown-icon {
    right: 8px;
  }

  .main-nav-item.submenu-second>a{
    padding-right: 30px;
  }

}

@media (max-width: 1080px) and (min-width: 768px){
  .header-col-wrapper {
    width: 95%;
  }

  /*   .main-nav-item > a {
  font-size: 16px;
}

  .menu-dropdown-icon,
  .menu-dropdown-icon svg {
  width: 14px;
  height: 14px;
} */

}


/* Mobile Navigation */

/* .mobile-nav {
position: relative;
} */
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }

  .site-header_mobile_menu {
    display: none;
  }
}


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

.mobile-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  line-height: 1.1;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--c-main);
}
.mobile-nav__item--has-children {
  display: grid;
  grid-template-columns: auto 58px;
}

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

.mobile-nav__submenu-toggle {
  cursor: pointer;
  color: var(--c-main);
  border-left: 1px solid var(--c-main);
}


.mobile-nav__submenu {
  padding: 0 0 0 2rem;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--c-main);
  transition: height 0.15s ease-out;
  grid-column: 1 / -1;
}
.mobile-nav__submenu:not(.is-open) {
  display: none;
}

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

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

.mobile-nav__login {
  padding: 2rem;
}

@media (max-width: 1199px) {
  .header-right .header-desktop-button {
    display: none;
  }

  .site-header__main {
    padding: 2rem 1.5rem;
  }

  .header-fixed .site-header__main {
    transform: translateY(0);
  }

  .header-col-wrapper {
    padding: 1rem 0;
    position: relative;
  }

  .mobile-nav__toggle {
    background-color: var(--c-orange);
    width: 5rem;
    height: 5rem;
    position: relative;
    border: none;
    border-radius: 50%;
    padding: 0;
    flex: 0 1 2.5rem;
    cursor: pointer;
  }

  .mobile-nav__toggle span {
    display: block;
    width: 3rem;
    height: 3px;
    border-radius: 2px;
    background: var(--c-teal-deep);
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    right: 0;
    margin: 0 auto;
  }

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

  .mobile-nav__toggle span:nth-of-type(2) {
    right: 1rem;
    width: 1.25rem;
    /* transform: rotate(0); */
    transition: all .5s;
    margin: 0 0 0 auto;
  }

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

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

  .mobile-nav__toggle.is-open {
    background: var(--c-teal-deep);
  }

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

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

  .mobile-nav__menu {
    background: var(--c-gray-light);
    border: 1px solid var(--c-teal-dark);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    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;
    border-radius: 20px;
    overflow-x: hidden;
    padding: 0px 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .main-nav__container {
    flex-direction: column;
  }

  .main-nav-item > a,
  .mobile-nav__link{
    color: var(--c-teal-dark);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    text-transform: unset;
    border-bottom: 1px solid var(--c-teal-dark);
  }

  /*   .main-nav-item:first-child > a {
  border-top: 1px solid var(--c-teal-dark);
} */

  .main-nav-item.submenu-second>a {
    padding-right: 65px;
  }

  .main-nav-subitem__dropdown, .main-nav-subitem__links {
    padding: 20px 0;
    display: none;
  }

  .main-nav-item.is-open > a, 
  .main-nav-item > a:hover, 
  .main-nav-item > a:focus,
  .mobile-nav__link:hover, 
  .mobile-nav__link:focus{
    color: var(--c-teal-dark);
    background: var(--c-gray-light);
    color: var(--c-teal-dark);
  }


  .main-nav-item.is-open > .menu-dropdown-icon {
    transform: translateY(-50%);
    margin-top: 0;
  }

  .menu-dropdown-icon {
    width: 6.3rem;
    height: 6.3rem;
    cursor: pointer;
    margin-left: 0;
    border-left: 1px solid;
    position: absolute;
    top: 30px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-nav-item:hover .menu-dropdown-icon svg circle, 
  .main-nav-item.open .menu-dropdown-icon svg circle {
    fill: var(--c-orange);
  }

  .header-button {
    padding: 25px 15px;
  }

  .header-button .hs-button:hover, 
  .header-button .hs-button:focus {
    background: var(--c-teal-deep);
    border-color: var(--c-teal-deep);
    color: var(--c-orange);
  }

  .main-nav-subitem__dropdown, .main-nav-subitem__links {
    position: static;
    width: 100%;
    visibility: visible;
    opacity: 1;
    padding: 0;
  }

  .main-nav-subitem__dropdown.active-container {
    display: block;
  }

  .main-nav-link {
    padding: 20px 15px 20px 25px;
    border-bottom: 1px solid var(--c-teal-dark);
  }

  .main-nav-subitem {
    margin: 0;
  }

  .menu-dropdown-icon.second-level-toggle {
    right: 0;
    height: 6.7rem;
    margin-top: 3px;
  }

  .main-nav-subitem.subitem-third .main-nav-link {
    padding-right: 67px;
  }

  button.second-level-toggle {
    width: 6.3rem;
    height: 6.7rem;
    cursor: pointer;
    margin-left: 0;
    border: none;
    border-left: 1px solid;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
    transition: transform 0.3s ease-out;
    transform: none;
  }

  button.second-level-toggle svg {
    transform: none;
    transition: transform 0.3s ease-out;
  }

  button.second-level-toggle.open svg {
    transform: rotate(180deg);
  }


  .mobile-nav__submenu-toggle svg {
    transition: transform 0.15s ease-out;
  }
  .mobile-nav__submenu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .main-nav-subitem__links .main-nav-link {
    padding-right: 15px !important;
    padding-left: 40px !important;
  }
}

@media (max-width: 767px){
  .header-button .hs-button:after {
    top: 0;
    width: 39px;
    height: 39px;
  }
}

/* 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 {
    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 {
  position: relative;
  padding: 4rem 0;
  background: var(--c-teal-deep);
  color: var(--c-gray-light);
}

.footer-col-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: center;
}

.footer-col {
  padding: 0 15px;
}

.footer-left {
  width: 48%;
}

.footer-right {
  width: 52%;
}

.footer-right-inner {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
}

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

.site-footer__nav ul li {
  margin-bottom: 30px;
  line-height: normal;
}

.site-footer__nav ul li:last-child {
  margin-bottom: 0;
}

.site-footer__nav ul li a {
  color: #FFF;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal; /* 250% */
  font-variant: all-small-caps;
  text-decoration: none;
}

.site-footer__nav ul li a:hover,
.site-footer__nav ul li a:focus {
  color: var(--c-orange);
}

/* .footer-links {
padding-top: 25px;
}
*/
.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  display: block;
  line-height: normal;
  margin-bottom: 20px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: var(--c-gray-light);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  font-variant: all-small-caps;
  text-decoration: none;
}

.footer-links ul li a:hover,.footer-links ul li a:focus {
  color: var(--c-orange);
}

.footer-address {
  font-weight: 600;
  line-height: 1.5;
  font-size: 14px;
}

.footer-address p:last-child {
  margin-bottom: 0;
}

.site-footer__socials-list {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}

.site-footer__socials-list li a:hover svg path {
  fill: var(--c-orange);
}

.site-footer__socials-list .footer-youtube-icon svg {
  position: relative;
  bottom: -5px;
}

.footer-button {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .site-footer {
    padding: 10rem 0 6rem;
  }

}

@media (max-width: 1199px) {
  .footer-left {
    width: 40%;
  }

  .footer-right {
    width: 60%;
  }

  .footer-right-inner {
    gap: 20px;
  }

  .footer-button {
    margin-bottom: 30px;
  }

  .footer-button .hs-button {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .footer-col-wrapper {
    flex-direction: column;
    align-items: baseline;
  }

  .footer-left, .footer-right {
    width: 100%;
  }

  .footer-logo {
    padding-bottom: 40px;
    text-align: center;
  }

  .footer-right-inner {
    justify-content: space-around;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .footer-logo {
    padding-bottom: 30px;
    text-align: left;
  }

  .footer-right-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right-inner>div {
    width: 100%;
  }

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

}

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

.blog-listing-wrapper {
  background: var(--c-teal-deep);
  color: var(--c-gray-light);
}

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

.blog-listing-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
}

.blog-listing-item {
  width: 33.33%;
  padding: 0 30px 60px;
}

.blog-listing-image {
  width: 101%;
  position: relative;
  padding-bottom: 56.25%;
  margin: 0;
}

.blog-listing-content-wrap {
  border-radius: 50px;
  /*   background: var(--c-gray-light); */
  position: relative;
  height: 100%;
  background: var(--c-amber);
}

.blog-listing-image img {
  border-radius: 50px 50px 0px 0px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.blog-listing-content-inner {
  align-items: end; */
  background: var(--c-white);
  border-radius: 50px;
  display: flex;
  /* justify-content: end; */
  /* min-height: 600px; */
  padding-bottom: 0;
  position: relative;
  flex-wrap: wrap;
}

.blog-listing-desc {
  /*   background: var(--c-amber); */
  border-radius: 0px 0px 50px 50px;
  color: var(--c-purple-dark);
  padding: 3rem 3rem 6rem;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 1;
}

.blog-listing-title-cols {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.blog-listing-title-col {
  width: calc(100% - 70px);
}

.blog-listing-icon-col {
  width: 50px;
  height: 50px;
  margin-left: 20px;
  border-radius: 50px;
  background: var(--Trigger-Amber-Shade01, #7D5100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.blog-listing-title {
  color: var(--c-brown);
  --h3-min-fs: 2rem;
  --h3-max-fs: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.news-listing-title{
  margin-bottom: 20px;
}

.blog-listing-title > a {
  color: inherit;
  text-decoration: none;
}

.blog-listing-body {
  color: var(--c-brown);
  font-size: 18px;
  line-height: normal;
}

.blog-listing-item .blog-listing-content-wrap:hover {
  background: var(--c-orange);
}


.bpagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 0;
  width: 100%;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(0 0 0 0);
  border: 0;
  clip-path: inset(50%);
  white-space: nowrap;
}

.bpagination-link, .bpagination-link svg {
  width: 52px;
  height: 52px;
}

.bpagination-link {
  margin: 0 20px;
}

.bpagination-count {
  border-radius: 37.5px;
  border: 1.5px solid var(--c-aqua);
  padding: 13px 25px;
  color: var(--c-gray-light);
  font-weight: 700;
}

.bp-page-count {
  margin-right: 3px;
}

.bp-total-count {
  margin-left: 3px;
}

.bpagination-link:hover svg circle,
.bpagination-link.bpagination-prev-link--disabled:hover svg path,
.bpagination-link.bpagination-next-link--disabled:hover svg path{
  fill: var(--c-aqua);
}


.bpagination-link:hover svg path {
  fill: var(--c-purple-dark);
}

.bpagination-link.bpagination-prev-link--disabled svg,
.bpagination-link.bpagination-next-link--disabled svg{
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.bpagination-link.bpagination-prev-link--disabled:hover svg circle,
.bpagination-link.bpagination-next-link--disabled:hover svg circle{
  fill: transparent;
}


/* Blog Post */

.blog-post-date p {
  margin: 0 0 10px;
}

.blog-post-date p:last-child {
  margin-bottom: 0;
}

.bp-content-cols {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.bp-content-col {
  padding: 0 20px;
}

.bp-content-left-col {
  width: 90%;
}

.bp-content-right-col {
  width: 10%;
  text-align: center;
}

.bp-meta {
  padding-bottom: 30px;
  width: 90%;
}

.bp-share-icon {
  cursor: pointer;
}

.bp-social-sharing ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.bp-social-sharing ul li {
  margin-top: 15px;
}

.bp-social-sharing ul li a,
.bp-share-icon{
  display: flex;
  border-radius: 50px;
  background: #A5DFDF;
  padding: 10px;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.blog-post__body ul li {
  margin-bottom: 8px;
}

.blog-post__body blockquote {
  position: relative;
  margin: 40px 0;
  border-radius: 20px;
  background: var(--Bot-Teal-Tint02, #A5DFDF);
  padding: 4rem;
}

.blog-post__body blockquote:before {
  content: "";
  background-image: url(https://9166445.fs1.hubspotusercontent-na1.net/hubfs/9166445/Rewst_2025/Website/Images/Quote%20Marks.svg);
  width: 80px;
  height: 80px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}

.blog-post__body blockquote strong {
  margin-top: 25px;
  display: block;
}

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

/* Related Post */

.relp-wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
}

.relp-wrapper .container {
  border-radius: 50px;
  padding: 6rem;
}

.relp-top-heading {
  text-align: center;
  padding-bottom: 20px;
}

.relp-card-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.relp-card-item {
  width: 33.33%;
  padding: 0 20px 50px;
}

.relp-card-item-inner {
  border-radius: 50px;
  background: var(--c-orange);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.relp-card-top {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 3rem;
}

.relp-card-icon {
  width: 52px;
  margin-right: 15px;
  border-radius: 51.339px;
  background: var(--c-amber);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.relp-card-title {
  width: calc(100% - 67px);
}

.relp-card-title h3 {
  color: var(--c-brown-dark);
  margin: 0;
  --h3-min-fs: 2rem;
  --h3-max-fs: 3rem;
}

.relp-card-bottom {
  border-radius: 50px;
  background: var(--c-light-amber);
  padding: 3rem;
}

.relp-card-bottom-desc {
  color: var(--c-brown-dark);
  font-size: 18px;
  line-height: 1.11;
}

.relp-card-btn {
  padding: 10px 0;
}

.relp-card-btn a {
  color: var(--c-brown-dark);
  font-family: Poppins;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

.relp-card-btn a:hover,
.relp-card-btn a:focus {
  /*   color: var(--c-teal-deep); */
  color: #0E4F4F;
}


.even-item .relp-card-title h3 {
  color: var(--c-orange);
}

.even-item .relp-card-icon {
  background: var(--c-aqua);
}

.even-item .relp-card-icon svg path {
  fill: var(--c-aqua);
  stroke-width: 2px;
  stroke: var(--c-teal-deep);
}

.even-item .relp-card-item-inner {
  background: var(--c-teal-dark);
}

.even-item .relp-card-bottom {
  background: var(--c-teal);
}

.even-item .relp-card-bottom-desc,
.even-item .relp-card-btn a{
  color: var(--c-teal-deep);
}

.even-item .relp-card-btn a:hover,
.even-item .relp-card-btn a:focus{
  /*   color: var(--c-orange); */
  color: #0E4F4F;
}

.relp-card-title h3 a,
.even-item .relp-card-title h3 a {
  color: inherit;
  text-decoration: none;
}

.relp-card-title h3 a:hover, 
.relp-card-title h3 a:focus {
  color: var(--c-teal-deep);
}

.even-item .relp-card-title h3 a:hover, 
.even-item .relp-card-title h3 a:focus {
  color: var(--c-aqua);
}

.relp-links {
  text-align: center;
  padding: 20px 20px 0;
}

.relp-links .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

.relp-links .btn:last-child,
.relp-links .btn:only-child {
  margin-right: 0;
}

.success-stories-wrapper .blog-listing {
    padding-top: 0;
}


@media (max-width: 1199px){
  .relp-card-item {
    padding-left: 15px;
    padding-right: 15px;
    width: 50%;
  }

  .relp-card-items {
    margin: 0 -15px;
  }

  .relp-wrapper .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .blog-listing-item {
    padding: 0 20px 50px;
    width: 50%;
  }

  .blog-listing-items {
    margin: 0 -20px;
  }

}

@media (max-width: 991px){
  .relp-card-item {
    width: 100%;
    padding-bottom: 40px;
  }

  .relp-card-icon {
    margin: 0 0 15px;
  }

  .relp-card-title {
    width: 100%;
  }

  .relp-card-top {
    flex-direction: column;
  }

  .blog-listing-content-wrap {
    border-radius: 30px;
  }

  .blog-listing-image img {
    border-radius: 30px 30px 0px 0px;
  }

}

@media (max-width: 767px){
  .relp-wrapper .container {
    padding: 4rem 2rem;
  }

  .relp-links {
    padding-top: 0;
  }

  .relp-top-heading {
    padding-bottom: 10px;
  }
}



@media (min-width: 992px) {
  .success-stories .blog-listing-item {
    width: 50%;
  }
}

@media (max-width: 991px) {

  .bp-content-left-col, .bp-content-right-col {
    width: 100%;
  }

  .bp-content-cols {
    flex-direction: column-reverse;
  }

  .bp-content-right-col {
    text-align: left;
  }

  .bp-share-icon {
    margin: 0;
    display: none;
  }

  .bp-meta {
    width: 100%;
    padding-bottom: 20px;
  }

  .bp-social-sharing ul {
    position: static;
    display: flex !important;
    height: auto !important;
  }

  .bp-social-sharing {
    position: relative;
    margin-bottom: 25px;
  }

  .bp-social-sharing ul li {
    margin: 0 15px 0 0px;
  }

  .success-stories .blog-listing-item {
    width: 100%;
  }


}


@media (max-width: 767px) {
  .blog-listing {
    padding-top: 20px;
  }

  .blog-listing-item {
    padding: 0 15px 40px;
  }


  .blog-listing-items {
    margin: 0 -15px;
  }

  .blog-listing-title-cols {
    flex-direction: column-reverse;
  }

  .blog-listing-icon-col {
    margin-left: 0;
    margin-bottom: 15px;
  }

  .blog-listing-title-col {
    width: 100%;
  }

  .bp-content-col {
    padding: 0;
  }

  .bp-content-cols {
    margin: 0;
  }

  .blog-post__body blockquote {
    margin: 30px 0;
    padding: 3rem;
  }

  .blog-post__body blockquote:before {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .blog-post__body blockquote strong {
    margin-top: 20px;
  }

  .blog-listing-item {
    width: 100%;
  }

  .bpagination {
    padding-top: 2rem;
  }

  .blog-listing-desc {
    padding: 3rem 2rem;
  }

  .blog-listing-content-inner,
  .blog-listing-desc{
    border-radius: 30px;
  }

  /*   .blog-listing-content-inner {
  min-height: 500px;
} */
}

@media (max-width: 650px) {

}



.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 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 .a2a_kit a {
  display: inline-block;
}
.blog-post-subscribe {
  background-color: var(--c-second);
  color: var(--c-inv);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
}
@media (min-width: 992px) {
  .blog-post > .container {
    grid-template-columns: 2fr 1fr;
    column-gap: 6rem;
  }
}

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

/**Styling scrollable elements*/

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

.vveani.scrolled {
  opacity: 1;
}

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

img.scrolled.fade-in {
  animation: fade-in 0.25s 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; }
} */