/* Theme base styles */

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

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

/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(iframe, canvas, img, svg, video):not(form *, svg *, symbol *)) {
  all: unset;
  display: revert;
}
/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}
/* reset body */
html {
  font-size: 16px;
}

/* Reapply the pointer cursor for anchor tags */
a {
  cursor: revert;
}
/* Remove list styles (bullets/numbers) */
/* ol, ul, menu {
  list-style-type: none;
} */
/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}
/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}
/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}
/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]){
  display:none;
}
/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly. */
:where([contenteditable]){
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  line-break: after-white-space;
  -webkit-line-break: after-white-space;
}
/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* blog */

#hs_cos_wrapper_dnd_area-module-2 .hs-blog-post-listing__post--3:nth-child(3n+1), #hs_cos_wrapper_dnd_area-module-2 .hs-blog-post-listing__post--3:nth-child(3n+2){
  margin: 0!important;
}
/*! 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;
}

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, 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;
}

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

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 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;
}

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * 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 and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

/* .dnd-section .dnd-column {
  padding: 0 1rem;
} */

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* normalise space for clr background modules */

.clr_bg_spacer {
  margin: var(--spacing-section-medium) 0;
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: var(--fs-body-med);
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* content links */

p a {
  font-weight: 400;
  color: var(--clr-brand-primary);
}

.test_full_content p a {
  color: inherit; /* or undo */
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #fff;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* lists */

.custom_bullets li:before{
  content: url(//145237103.fs1.hubspotusercontent-eu1.net/hubfs/145237103/raw_assets/public/fractional-md-25/images/fract-brand-mark-35.png);
  margin-top: 5px;
}

.custom_bullets li{
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 8px;
}

li ul {
  margin-top: 10px;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}


/* BUTTONS */

.primary_btn {
  font-size: var(--fs-btn-sml);
  font-weight: 600;
  color: var(--clr-white);
  padding: var(--btn-primary-padding);
  border-radius: var(--btn-primary-radius);
  width: fit-content;
  display: flex;
  transition: ease 250ms;
}

.primary_btn:hover {
  background-color: var(--clr-brand-green-20);
  box-shadow: 3px 4px 4px #00000040;
}

.primary_btn_phone::after {
  font-family: 'Material Symbols Outlined';
  content: "call";
  transition: ease 250ms;
  -webkit-font-feature-settings: 'liga';
  display: none;
  opacity: 0;
  margin-left: 5px;
}

.primary_btn_phone:hover::after {
  display: flex;
  opacity: 1;
}

/* button types */

.brand_btn{
  background-color: var(--clr-brand-primary);
  color: var(--clr-white) !important;
}

.brand_btn:hover {
  color: var(--clr-brand-black) !important;
}

.offset_btn{
  background-color: var(--clr-brand-green-20);
}

.offset_btn a {
  color: var(--clr-theme-font-dark) !important;
}

.white_btn{
  background-color: var(--clr-white);
  color: var(--clr-brand-black)!important;
}

.offset_btn a {
  color: var(--clr-theme-font-dark) !important;
}

.link_btn {
  font-size: var(--fs-body-link-lrg);
  color: var(--clr-brand-primary);
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-weight: 600;
}

.link_btn:hover {
  opacity: 0.7;
}

.link_btn:hover::after {
  transform: translateX(5px);
}

.link_btn::after {
  font-family: 'Material Symbols Outlined';
  content: "arrow_forward";
  transition: transform 500ms;
  -webkit-font-feature-settings: 'liga';
}
/* Form title */

.form-title {
  margin: 0;
}

.form-title ~ div > form {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Labels */

form label {
  display: block;
  margin-bottom: 0.35rem;
}

.hsfc-Form,
.hsfc-FormWrapper {
  --hsf-module__vertical-spacing: 0.35rem;
}

/* Form fields */

form .hs-form-field {
  margin-bottom: 1.4rem;
}

.hsfc-Form,
.hsfc-FormWrapper {
  --hsf-row__vertical-spacing: 1.4rem;
}

.form-columns-1 .hs-fieldtype-intl-phone,
form input[type='text'],
form input[type='email'],
form input[type='password'],
form input[type='tel'],
form input[type='number'],
form input[type='file'],
form input[type='search'],
form select,
form textarea {
  display: inline-block;
  width: 100% !important; /* stylelint-disable-line declaration-no-important */
  padding: 12px;
  border-radius: 25px;
  border: 1px solid var(--clr-brand-primary);
}

/* International phone number field */

form .hs-fieldtype-intl-phone {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

form fieldset {
  max-width: 100% !important; /* stylelint-disable-line declaration-no-important */
}

/* Form fields - checkbox/radio */

form .inputs-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type='checkbox'],
form input[type='radio'] {
  margin-right: 0.35rem;
  cursor: pointer;
}

/* Form fields - date picker */

form .hs-dateinput {
  position: relative;
}

form .hs-dateinput:before {
  position: absolute;
  top: 50%;
  content: '\01F4C5';
  transform: translateY(-50%);
}

form select.hs-input {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.9407 19.5595C11.5267 20.1454 12.4782 20.1454 13.0642 19.5595L22.0642 10.5595C22.6501 9.97354 22.6501 9.02197 22.0642 8.43604C21.4782 7.8501 20.5267 7.8501 19.9407 8.43604L12.0001 16.3767L4.05947 8.44072C3.47354 7.85478 2.52197 7.85478 1.93604 8.44072C1.3501 9.02666 1.3501 9.97822 1.93604 10.5642L10.936 19.5642L10.9407 19.5595Z' fill='%2309152B'/%3E%3C/svg%3E%0A");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

form .is-selected .pika-button {
  border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
  box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
}

form .fn-date-picker .pika-button:hover,
form .fn-date-picker .pika-button:focus {
  border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
}

/* Form fields - file picker */

form input[type='file'] {
  padding: initial;
  border: initial;
  background-color: transparent;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  margin: 0 0 1.4rem;
  font-size: 0.8rem;
}

form .hs-richtext img {
  height: auto;
  max-width: 100% !important; /* stylelint-disable-line declaration-no-important */
}

/* GDPR */

form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 1rem !important; /* stylelint-disable-line declaration-no-important */
}

/* Validation */

form .hs-form-required {
  color: #ef6b51;
}

form .hs-input.error {
  border-color: #ef6b51;
}

form .hs-error-msg,
form .hs-error-msgs {
  margin-top: 0.35rem;
  color: #ef6b51;
}

.hsfc-Form,
.hsfc-FormWrapper {
  --hsf-global-error__color: #ef6b51;
  --hsf-field-label-requiredindicator__color: var(--hsf-global-error__color);
  --hsf-erroralert__color: var(--hsf-global-error__color);
}

/* Submit button */

form input[type='submit'],
form .hs-button {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal !important; /* stylelint-disable-line declaration-no-important */
  background-color: var(--clr-brand-primary);
  color: var(--clr-white);
  border: none;
  border-radius: var(--btn-primary-radius);
  padding: 12px 0;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.lrg_vid_video_con {
  width: 100%;
  overflow: hidden;
  position: relative;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* HEADER */

#desktop_nav {
  display: none;
}

@media (min-width: 1040px) {
  #desktop_nav {
    display: flex;
  }
  #mobile_nav {
    display: none;
  }
}

.header_outer_con {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--clr-brand-green-10);
  box-shadow: 0 4px 4px 0px #00000047;
  z-index: 99;
}

.header_inner {
  width: var(--w-content-width);
  display: flex;
  justify-content: space-between;
  padding: 8px var(--spacing-mob-gutter);
}

@media (min-width: 1380px) {
  .header_inner {
    padding: 30px 0;
  }
}

.site_logo_con {
  max-width: 12rem;
}

@media only screen and (min-width: 605px) {
  .site_logo_con {
    max-width: 16rem;
  }
}

.main_nav_con {
  display: flex;
  align-items: center;
  font-weight: var(--fw-reg);
}

.hs-menu-wrapper ul {
  align-items: center;
}

.main_nav_con ul .hs-menu-depth-1 {
  margin-left: 20px;
}
.main_nav_con ul .hs-menu-depth-1:last-child {
  margin-left: 40px;
}

.main_nav_con ul .hs-menu-depth-1:last-child a {
  background-color: var(--btn-offset-bg-color);
  padding: var(--btn-primary-padding);
  border-radius: var(--btn-primary-radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: ease 250ms;
}

.main_nav_con ul .hs-menu-depth-1:last-child a:hover {
  background-color: var(--clr-brand-primary);
  color: #fff;
  box-shadow: 3px 4px 4px #00000040;
}

.main_nav_con ul .hs-menu-depth-1:last-child a:hover:before {
  color: #fff;
}

.main_nav_con ul .hs-menu-depth-1:last-child a:before {
  font-family: "Material Symbols Outlined";
  content: "call";
  font-size: var(--fs-nav-link-med);
  color: var(--clr-brand-primary);
}

.main_nav_con ul a {
  color: var(--clr-brand-black);
  font-weight: var(--fw-reg);
  transition: ease 250ms;
}

/* HOVER */

.main_nav_con ul .hs-menu-depth-1:not(:last-child) a:hover {
  border-bottom: 1px solid var(--clr-brand-primary);
  color: var(--clr-brand-primary);
}

/* dropdowns */

.main_nav_con .hs-menu-children-wrapper {
  background: var(--clr-brand-green-10);
  padding: 10px 20px;
  left: -20px!important;
  align-items: flex-start;
}

.main_nav_con .hs-menu-children-wrapper li {
  margin-bottom: 8px;
}

/* MOBILE NAV */

/* Hide the links inside the navigation menu (except for logo/home) */
.mobile_nav_inner #myLinks {
  display: none;
}

.mobile_nav_inner {
  position: relative;
  padding: 15px var(--spacing-mob-gutter);
}

.burger_nav a.icon {
  position: absolute;
  right: 20px;
  top: 15px;
}

#burger_bars {
  height: 25px;
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger_bar {
  background-color: var(--clr-brand-primary);
  height: 2px;
}

.mobile_links {
  position: absolute;
  background-color: rgb(0 0 0 / 86%);
  width: 100%;
  left: 0px;
  padding: 20px;
  top: 60px
}

.mobile_links ul {
  padding: 15px var(--spacing-mob-gutter);
  gap: 8px;
  border-top: var(--border-main-default);
}

.mobile_links a {
  color: var(--clr-white);
  font-weight: var(--fw-reg);
}
.footer_con {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.footer_inner {
    width: var(--w-content-width);
    padding: 0 var(--spacing-mob-gutter);
}

.footer_upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  gap: var(--spacing-content-gap-reg);
}

.footer_menu_social_con ul {
  display: flex;
  font-weight: var(--fw-reg);
  gap: 20px;
}

/* HOVER */

.footer_con .hs-menu-wrapper ul li a:hover {
  border-bottom: 1px solid var(--clr-brand-primary);
  color: var(--clr-brand-primary);
}

@media only screen and (min-width: 706px) {
  .footer_upper {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .footer_menu_social_con ul {
    text-align: right;
  }
  .footer_menu_social_con ul li {
    margin-bottom: 10px;
  }
}

.footer_logo_strap_con {
    max-width: 200px;
    font-size: var(--fs-body-sml);
}

.footer_menu_social_con ul li a {
    color: var(--clr-brand-white);
}

.footer_upper .secondary_logo_con {
  max-width: 12em;
}

.footer_upper .secondary_provider_logo {
  width: 100%;
}

/* LOWER */
.footer_lower {
  padding-top: 40px;
  border-top: var(--border-main-default);
  display: flex;
  flex-direction: column-reverse;
  row-gap: 20px;
  justify-content: center;
  text-align: center;
}

@media only screen and (min-width: 706px) {
  .footer_lower {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer_lower ul {
    font-weight: var(--fw-thin);
}

.footer_lower ul li {
    margin-left: 20px;
}

.footer_lower ul li a {
    color: var(--clr-theme-font-primary);
}

.site_rights_con {
  display: flex;
  flex-direction: column;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* all custom modules */

.cst-mod ul{
  margin-left: 20px;
}

.cst-mod ul li{
  margin-bottom: 10px;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

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

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* COLOURS */

:root {
  --clr-brand-primary: #00B9B9;
  --clr-brand-green-60: #66D5D5;
  --clr-brand-green-20: #CCF1F1;
  --clr-brand-green-10: #F4FCFC;
  --clr-brand-black: #2C3131;
  --clr-theme-font-primary: #2C3131;
  --clr-theme-font-dark: #2C3131;
  --clr-white: #fff;
  --clr-black: #000;
}

/* BACKGROUND COLOURS */

:root {
  --clr-bg-gradient-primary-left: linear-gradient(to right top, #1af5f5, #16eaea, #11dede, #0cd3d3, #06c8c8, #04bebe, #02b3b3, #00a9a9, #009d9d, #009191, #008585, #007a7a);
  --clr-bg-gradient-primary-right: linear-gradient(to right top, #007a7a, #008585, #009191, #009d9d, #00a9a9, #02b3b3, #04bebe, #06c8c8, #0cd3d3, #11dede, #16eaea, #1af5f5);
}

/* FONT SIZES */

:root {
  --fs-display-huge: clamp(3rem, 1.848vw + 2.522rem, 4rem);
  --fs-display-lrg: clamp(2.25rem, 1.386vw + 1.891rem, 3rem);
  --fs-title-lrg: clamp(1.5rem, 1.386vw + 1.141rem, 2.25rem);
  --fs-title-med: clamp(1.25rem, 0.462vw + 1.13rem, 1.5rem);
  --fs-body-lrg: clamp(1.125rem, 0.347vw + 1.03rem, 1.375rem);
  --fs-body-med: clamp(1rem, 0.231vw + 0.94rem, 1.125rem);
  --fs-body-sml: clamp(0.75rem, 0.231vw + 0.69rem, 0.875rem);
  --fs-body-link-lrg: clamp(1rem, 0.231vw + 0.94rem, 1.125rem);
  --fs-body-link-med: clamp(0.875rem, 0.231vw + 0.815rem, 1rem);
  --fs-nav-link-med: clamp(1rem, 0.231vw + 0.94rem, 1.125rem);
  --fs-btn-sml: clamp(0.75rem, 0.231vw + 0.69rem, 0.875rem);
  --fs-btn-med: clamp(1rem, 0.231vw + 0.94rem, 1.125rem);
}

/* FONT FAMILIES */

:root {
  --ff-display: "proxima-nova", sans-serif;
  --ff-title: "proxima-nova", sans-serif;
  --ff-body: "proxima-nova", sans-serif;
}

/* FONT WEIGHTS */

:root {
  --fw-bold: 700;
  --fw-reg: 400;
  --fw-thin: 300;
}

/* SPACING */

:root {
  --spacing-section-x-small: clamp(20px, 2vw, 20px);
  --spacing-section-small: clamp(30px, 4vw, 40px);
  --spacing-section-medium: clamp(50px, 8vw, 80px);
  --spacing-section-large: clamp(50px, 8vw, 80px);
  --spacing-section-x-large: clamp(60px, 10vw, 100px);
  --spacing-mob-gutter: 20px;
  --spacing-content-gap-reg: 50px;
  --spacing-content-gap-reg-mob: 20px;
  --spacing-text-gap: 5px;
  --spacing-heading-btm: 15px;
}

/* WIDTHS */

:root {
  
  --w-content-width: 1180px;
  --w-paragraph-width-reg: 850px;
  --w-paragraph-width-small: 550px;
}

/* BORDERS & SHADOWS */

:root {
  
  --border-main-default: 2px solid var(--clr-brand-green-60);
  --border-primary-rad: 25px;
  --border-shadow-rad: 35px;
  --shadow-branded: 10px 10px 0px 4px var(--clr-brand-primary);
  --shadow-branded-sml: 5px 5px 0px 4px var(--clr-brand-primary);
  --shadow-secondary: 10px 10px 0 4px var(--clr-brand-green-10);
  --shadow-secondary-sml: 5px 5px 0 4px var(--clr-brand-green-10);
}

/* BUTTON */

:root {
  --btn-primary-padding: 12px 24px;
  --btn-offset-bg-color: var(--clr-brand-green-20);
  --btn-primary-radius: 30px;
}