/* 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.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! 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%;
  /* padding: 0 20px; */
}


  .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));
    }
  
}

main {
  margin-top: 163px;
}
.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;
  padding-left: 50px;
  padding-right: 50px;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {

  .dnd-section > .row-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .dnd-section .dnd-column {
    margin-bottom: 50px;
  }

  .dnd-section .dnd-column:last-of-type {
    margin-bottom: 0;
  }
}

.body-container--blog-index .row-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

html {
  font-size: 16px;
  line-height: 24px;
  word-break: normal;
}

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: 'Montserrat', sans-serif;
}

p, h1, h2, h3, h4, h5, h6, pre,
ul li:last-of-type,
ol li:last-of-type {
  color: #060F42;
  margin: 0 0 25px 0;
}

li {
  color: #060F42;
  margin: 0 0 10px 0;
}


/* Paragraphs, Lists */

p, li {
  font-size: 1.125rem;
  line-height: 1.75rem;
}


/* Anchors */

a {
  cursor: pointer;
  color: #0D1855;
  text-decoration: underline;
  transition: color 0.2s ease;
}


a:hover {
  color: #5618D4;
  transition: color 0.3s ease;
}

/* Headings */

h1 {
  font-size: 3.25rem;
  line-height: 4rem;
  font-weight: bold;
  letter-spacing: -0.52px;
}


h2 {
  font-size: 2.625rem;
  line-height: 3.375rem;
  font-weight: bold;
  letter-spacing: -0.42px;
}

h3 {
  font-size: 2.125rem;
  line-height: 2.875rem;
  font-weight: bold;
  letter-spacing: -0.34px;
}

h4 {
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: bold;
  letter-spacing: -0.24px;
}

h5 {
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: normal;
  letter-spacing: -0.24px;
}

h6 {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: bold;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.625rem;
    line-height: 3.375rem;
    letter-spacing: -0.42px;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 3rem;
    letter-spacing: -0.36px;
  }

  h3 {
    font-size: 1.75rem;
    line-height: 2.5rem;
    letter-spacing: -0.10px;
  }
}


/* Lists */

ul {
  margin: 0;
}

main ul {
  margin: 0;
  padding-left: 24px;
}

main ul li::marker {
  color: #060F42;
  font-size: 1.25rem;
}

main ol {
  margin: 0;
  padding-left: 24px;
  list-style: none;
}

main ol li::before {
  content: counter(list-item);
  color: #060F42;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  width: 24px;
  margin-left: -24px;
}

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

/* Code blocks */

pre,
pre span {
  overflow: auto;
  text-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.5rem;
  overflow-wrap: break-word;
  font-family: 'Montserrat', sans-serif;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

hr {
  border: none;
}

/* Image alt text */

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

/* Dark BG Text swaps */ 

.dark-bg,
.dark-bg p, 
.dark-bg h1,
.dark-bg h2, 
.dark-bg h3, 
.dark-bg h4, 
.dark-bg h5, 
.dark-bg h6, 
.dark-bg li,
.dark-bg a,
.dark-bg ul li::marker,
.dark-bg ul li:last-of-type,
.dark-bg ol li::before,
.dark-bg ol li:last-of-type,
.dark-bg pre {
  color: #FFFFFF;
}

.dark-bg a:hover {
  color: #CDBAF2;
}

.gradient-headline {
    display: inline-block;
    background: -webkit-linear-gradient(200deg,#099BF0,#1F58F2,#5618D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
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;
}
/* Fields */

.hs-form-field {
    margin-bottom: 30px;
}

/* Labels */

form label {
  display: inline-block;
  color: #060F42;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.75rem;
  margin-bottom: 10px;
  width: fit-content;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

.landing-page__form-col h3 {
  font-size: 1.5rem;
  line-height: 2.125rem;
  letter-spacing: -0.24px;
  margin-bottom: 40px;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */
form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
select,
form textarea {
  border: 2px solid #A9ABB1;
  border-radius: 6px;
  color: #060F42;
  display: inline-block;
  font-size: 1.125rem;
  padding: 14px 20px;
  width: 100%;
  max-width: 650px;
}

form textarea {
  resize: none !important;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 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] {
  cursor: pointer;
  margin-right: 15px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #BA3B3B;
}

.hs-error-msg {
    background-color: #ba3b3b;
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.75rem;
    max-width: 320px;
    padding: 2px 10px;
    width: 100%;
    position: relative;
    bottom: 10px;
}

.hs-error-msgs.inputs-list {
  text-align: right;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* Start of Custom Select Dropdown Arrow Styling */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13.908" height="8" viewBox="0 0 13.908 8"><path id="expand_less_FILL0_wght500_GRAD0_opsz48" d="M254.9-614.788l-5.193-5.194a1.053,1.053,0,0,0-.731-.321.947.947,0,0,0-.731.291,1,1,0,0,0-.306.731,1,1,0,0,0,.306.731l5.932,5.933a1.072,1.072,0,0,0,.343.239.98.98,0,0,0,.38.074.98.98,0,0,0,.38-.074,1.072,1.072,0,0,0,.343-.239l5.9-5.9a1.038,1.038,0,0,0,.321-.716.93.93,0,0,0-.291-.716,1,1,0,0,0-.731-.306,1,1,0,0,0-.731.306Z" transform="translate(-247.935 620.304)" fill="%23060f42"/></svg>');
    background-repeat: no-repeat;
    background-position: center right 20px;
    cursor: pointer;
    transition: .1s background ease-in;
}

select:hover {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13.908" height="8" viewBox="0 0 13.908 8"><path id="expand_less_FILL0_wght500_GRAD0_opsz48" d="M254.9-614.788l-5.193-5.194a1.053,1.053,0,0,0-.731-.321.947.947,0,0,0-.731.291,1,1,0,0,0-.306.731,1,1,0,0,0,.306.731l5.932,5.933a1.072,1.072,0,0,0,.343.239.98.98,0,0,0,.38.074.98.98,0,0,0,.38-.074,1.072,1.072,0,0,0,.343-.239l5.9-5.9a1.038,1.038,0,0,0,.321-.716.93.93,0,0,0-.291-.716,1,1,0,0,0-.731-.306,1,1,0,0,0-.731.306Z" transform="translate(-247.935 620.304)" fill="%235618d4"/></svg>');
    background-repeat: no-repeat;
    background-position: center right 20px;
}
/* End of Custom Select Dropdown Arrow Styling */

/* Start of Custom Checkbox */
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    padding: 0 16px 0 0;
    background-color: #FFFFFF;
    font: inherit;
    color: #000000;
    width: 24px;
    height: 24px;
    border: 2px solid #A9ABB1;
    transform: translateY(6px);
    margin-top: -10px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

input[type="checkbox"]:hover {
    border: 2px solid #5618D4;
}

input[type="checkbox"]:checked {
    border: 2px solid #060F42;
}

input[type="checkbox"]:checked::before,
input[type="checkbox"]:checked:hover::before {
    left: 11px;
    top: 3px;
    position: absolute;
    content: "";
    height: 15px;
    border: 1px solid #060F42;
    border-width: 0 2px 0 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

input[type="checkbox"]:checked::after,
input[type="checkbox"]:checked:hover::after {
    left: 4px;
    top: 10px;
    position: absolute;
    content: "";
    height: 5px;
    border: 1px solid #060F42;
    border-width: 0 2px 0 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* End of Custom Checkbox */

/* Start of Radio Checkbox */
input[type="radio"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 27px;
    height: 27px;
    border: 2px solid #060F42;
    border-radius: 50%;
    transition: 120ms border ease-in-out;
    display: grid;
    place-content: center;
}

input[type="radio"]:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transition: 120ms background-color ease-in-out;
    background-color: #FFFFFF;
}

input[type="radio"]:hover {
  border: 2px solid #5618D4;
}

input[type="radio"]:checked::before {
    background-color: #060F42;
}

input[type="radio"]:checked:hover {
    border: 2px solid #060F42;
}

label.hs-form-radio-display {
    display: flex;
}

/* End of Radio Checkbox */

body input[type="text"], 
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"], 
body input[type="file"], 
body textarea, 
body select,
#blog-tag__dropdown {
  border: 2px solid #A9ABB1;
  border-radius: 6px;
  color: #060F42;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35rem;
  width: 100%;
  max-width: 650px;
}


body .hs-form input[type="text"]:focus,
body .hs-form input[type="password"]:focus,
body .hs-form input[type="datetime"]:focus,
body .hs-form input[type="datetime-local"]:focus,
body .hs-form input[type="date"]:focus,
body .hs-form input[type="month"]:focus,
body .hs-form input[type="time"]:focus,
body .hs-form input[type="week"]:focus,
body .hs-form input[type="number"]:focus,
body .hs-form input[type="email"]:focus,
body .hs-form input[type="url"]:focus,
body .hs-form input[type="search"]:focus,
body .hs-form input[type="tel"]:focus,
body .hs-form input[type="color"]:focus,
body .hs-form input[type="file"]:focus,
body .hs-form textarea:focus,
body .hs-form select:focus,
select {
    border: 2px solid #5618D4;
    outline: 0;
    border-radius: 6px;
}

.hs-form-required {
  display: none;
}

.hs-fieldtype-textarea.hs-input {
  resize: none !important;
  height: 260px;
}

.hs-form-booleancheckbox-display span,
.hs-form-radio span {
    font-size: 1rem;
    line-height: 1.625rem;
    font-weight: normal;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }



/* Form Button Styling */
.hs-button {
  background-color: #5618d4;
  border: 2px solid #5618d4;
  border-radius: 30px 30px 30px 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.375rem;
  padding: 14px 35px;
}

.hs-button:hover {
  background-color: #3c1194;
  border: 2px solid #3c1194;
  color: #fff;
}


/* Dark BG Styling */
.dark-bg form label {
  color: #FFFFFF;
}

.dark-bg select {
  background-color: #FFFFFF;
}

/* body input[type="text"], 
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"], 
body input[type="file"], 
body textarea, 
body select, */
body .dark-bg .hs-form input[type="text"]:focus,
body .dark-bg .hs-form input[type="password"]:focus,
body .dark-bg .hs-form input[type="datetime"]:focus,
body .dark-bg .hs-form input[type="datetime-local"]:focus,
body .dark-bg .hs-form input[type="date"]:focus,
body .dark-bg .hs-form input[type="month"]:focus,
body .dark-bg .hs-form input[type="time"]:focus,
body .dark-bg .hs-form input[type="week"]:focus,
body .dark-bg .hs-form input[type="number"]:focus,
body .dark-bg .hs-form input[type="email"]:focus,
body .dark-bg .hs-form input[type="url"]:focus,
body .dark-bg .hs-form input[type="search"]:focus,
body .dark-bg .hs-form input[type="tel"]:focus,
body .dark-bg .hs-form input[type="color"]:focus,
body .dark-bg .hs-form input[type="file"]:focus,
body .dark-bg .hs-form textarea:focus,
body .dark-bg .hs-form select:focus {
    border: 2px solid transparent;
}

body .dark-bg input[type="text"],
body .dark-bg input[type="password"],
body .dark-bg input[type="datetime"],
body .dark-bg input[type="datetime-local"],
body .dark-bg input[type="date"],
body .dark-bg input[type="month"],
body .dark-bg input[type="time"],
body .dark-bg input[type="week"],
body .dark-bg input[type="number"],
body .dark-bg input[type="email"],
body .dark-bg input[type="url"],
body .dark-bg input[type="search"],
body .dark-bg input[type="tel"],
body .dark-bg input[type="color"],
body .dark-bg input[type="file"],
body .dark-bg textarea,
body .dark-bg select {
    border: 2px solid transparent;
}


body .dark-bg .hs-form input[type="text"]:focus,
body .dark-bg .hs-form input[type="password"]:focus,
body .dark-bg .hs-form input[type="datetime"]:focus,
body .dark-bg .hs-form input[type="datetime-local"]:focus,
body .dark-bg .hs-form input[type="date"]:focus,
body .dark-bg .hs-form input[type="month"]:focus,
body .dark-bg .hs-form input[type="time"]:focus,
body .dark-bg .hs-form input[type="week"]:focus,
body .dark-bg .hs-form input[type="number"]:focus,
body .dark-bg .hs-form input[type="email"]:focus,
body .dark-bg .hs-form input[type="url"]:focus,
body .dark-bg .hs-form input[type="search"]:focus,
body .dark-bg .hs-form input[type="tel"]:focus,
body .dark-bg .hs-form input[type="color"]:focus,
body .dark-bg .hs-form input[type="file"]:focus,
body .dark-bg .hs-form textarea:focus,
body .dark-bg .hs-form select:focus,
.dark-bg .hs-fieldtype-textarea.hs-input {
  background-color: #F4F5F8;
}

/* Start of DARK BG Custom Checkbox */
.dark-bg input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    padding: 0 16px 0 0;
    background-color: transparent;
    font: inherit;
    width: 24px;
    height: 24px;
    border: 2px solid #FFFFFF;
    transform: translateY(6px);
    margin-top: -10px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dark-bg input[type="checkbox"]:hover {
    border: 2px solid #CDBAF2;
}

input[type="checkbox"]:checked:hover {
  border: 2px solid #FFFFFF;
}

.dark-bg input[type="checkbox"]:checked {
    border: 2px solid #FFFFFF;
}

.dark-bg input[type="checkbox"]:checked::before,
.dark-bg input[type="checkbox"]:checked:hover::before {
    left: 11px;
    top: 3px;
    position: absolute;
    content: "";
    height: 15px;
    border: 1px solid #FFFFFF;
    border-width: 0 2px 0 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dark-bg input[type="checkbox"]:checked::after,
.dark-bg input[type="checkbox"]:checked:hover::after {
    left: 4px;
    top: 10px;
    position: absolute;
    content: "";
    height: 5px;
    border: 1px solid #FFFFFF;
    border-width: 0 2px 0 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* End of DARK BG Custom Checkbox */

/* Start of DARK BG Radio Checkbox */
.dark-bg input[type="radio"] {
    appearance: none;
    background-color: transparent;
    margin: 0;
    width: 27px;
    height: 27px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    transition: 120ms border ease-in-out;
    display: grid;
    place-content: center;
}

.dark-bg input[type="radio"]:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transition: 120ms background-color ease-in-out;
    background-color: transparent;
}

.dark-bg input[type="radio"]:hover {
  border: 2px solid #CDBAF2;
}

.dark-bg input[type="radio"]:checked::before {
    background-color: #FFFFFF;
}

.dark-bg input[type="radio"]:checked:hover {
    border: 2px solid #FFFFFF;
}

/* End of DARK BG Radio Checkbox */

.dark-bg form input[type=checkbox],
.dark-bg form input[type=radio] {
  cursor: pointer;
  margin-right: 15px;
}

/* DARK BG Form Button Styling */
.dark-bg .hs-button {
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 30px 30px 30px 0;
  color: #060f42;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.375rem;
  padding: 14px 35px;
}

.dark-bg .hs-button:hover {
  background-color: #dadde7;
    border: 2px solid #dadde7;
    color: #060f42;
}

.dark-bg .hs-form-booleancheckbox-display span a,
.dark-bg .hs-form-radio span a{
   color: #FFFFFF;
}
/* 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;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.header {
  background-color: #FFFFFF;
  color: #060F42;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header__container {
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
}

#top-nav {
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 500;
}

.top-nav__link {
  color: #060F42;
  display: inline-block;
  text-decoration: none;
}

#top-nav li {
  margin: 0 25px 0 0 ;
}

#top-nav li:last-of-type {
  margin-right: 0;
}

#main-nav {
  margin: 35px 0 20px 0;
}

#main-nav ul li {
  margin: 0;
}

.main-nav__link {
  color: #060F42;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  display: inline-block;
  padding: 12px 25px;
}

.top-nav__link:hover,
.main-nav__link:hover {
  color: #5618D4;
}

.main-nav__link--btn {
  background-color: #5618D4;
  color: #FFFFFF;
  border-radius: 30px 30px 30px 0;
  padding: 12px 30px;
  margin-left: 25px;
}

.main-nav__link--btn:hover {
  background-color: #3C1194;
  color: #FFFFFF;
}



.nav-logo__container {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav-logo {
  width: 100%;
  max-width: 150px;
  height: auto;
}

.top-nav {
  padding-bottom: 15px;
}

nav ul {
  list-style-type: none;
  font-size: 0; /* Gets rid of gaps between elements. The anchors within keep the normal font size displaying correctly. */
}

nav li {
  display: inline-block;
}

.header__gradient {
  height: 15px;
  background: linear-gradient(to right, #5618D4, #1F58F2, #099BF0, #00B3CF, #7CBF3D);
}



/* 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: 10px;
  overflow: visible;
  top: 10px;
  padding: 20px;
  width: auto;
  color: #FFFFFF;
  background-color: #5618d4;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}


/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }


  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

@media(max-width: 1100px) {
  .header__container {
    padding: 10px 20px;
  }
  
  #top-nav {
    display: none;
  }
  
  #main-nav {
    margin: 0;
  }
}


@media(max-width:800px) {
  .header__container {
    padding: 0 20px;
  }
  .nav-logo {
      content: url('data:image/svg+xml,<svg id="WellRight-Logo-Horizontal-Green" xmlns="http://www.w3.org/2000/svg" width="251.878" height="49.144" viewBox="0 0 251.878 49.144"><g id="Group_13978" data-name="Group 13978" transform="translate(0)"><path id="Path_626" data-name="Path 626" d="M32.431,46.6Q45.61,7.039,89.475,0C88.2,35.176,69.821,51.242,34.619,48.925c4.927-9.012,14.241-18.869,27.829-29.512Q39.58,33.666,32.431,46.6" fill="%237cbf3d"/><path id="Path_627" data-name="Path 627" d="M30.808,46.722Q25.207,23.046.081,16.672c-1.088,20.51,8.756,30.8,29.335,31.29-2.4-5.5-7.3-11.708-14.638-18.6q12.549,9.472,16.03,17.36" fill="%237cbf3d"/><path id="Path_628" data-name="Path 628" d="M98.991,19.909h5.345l4.7,15.354,5.086-15.419h4.276l5.086,15.419,4.7-15.354h5.216l-7.742,22.838h-4.341L116.193,27.91l-5.119,14.837h-4.341Z" fill="%237cbf3d"/><path id="Path_629" data-name="Path 629" d="M132,34v-.064c0-4.956,3.531-9.039,8.585-9.039,5.8,0,8.454,4.5,8.454,9.427,0,.389-.032.843-.064,1.3H136.888a4.029,4.029,0,0,0,4.244,3.4,5.694,5.694,0,0,0,4.212-1.782l2.818,2.494A9.171,9.171,0,0,1,132,34m12.245-1.457c-.292-2.2-1.587-3.693-3.66-3.693-2.041,0-3.369,1.458-3.758,3.693Z" fill="%237cbf3d"/><rect id="Rectangle_683" data-name="Rectangle 683" width="4.924" height="23.647" transform="translate(152.145 18.938)" fill="%237cbf3d"/><rect id="Rectangle_684" data-name="Rectangle 684" width="4.924" height="23.647" transform="translate(161.15 18.938)" fill="%237cbf3d"/><path id="Path_630" data-name="Path 630" d="M170.446,19.909h10.366a9.04,9.04,0,0,1,6.609,2.3,7.12,7.12,0,0,1,1.943,5.183v.065a7.042,7.042,0,0,1-4.859,7.029l5.54,8.1h-5.831l-4.86-7.257h-3.919v7.257h-4.989Zm10.042,11.014c2.43,0,3.823-1.3,3.823-3.207v-.064c0-2.139-1.49-3.24-3.92-3.24h-4.956v6.511Z" fill="%237cbf3d"/><path id="Path_631" data-name="Path 631" d="M192.666,18.938h5.183v4.373h-5.183Zm.13,6.284h4.924V42.585H192.8Z" fill="%237cbf3d"/><path id="Path_632" data-name="Path 632" d="M201.671,46.018l1.684-3.692a11.336,11.336,0,0,0,5.864,1.587c3.369,0,4.956-1.621,4.956-4.73V38.34a6.79,6.79,0,0,1-5.669,2.819c-4.049,0-7.71-2.948-7.71-8.1V33c0-5.184,3.726-8.1,7.71-8.1a7.026,7.026,0,0,1,5.6,2.593V25.222h4.924V38.664c0,3.111-.745,5.378-2.2,6.835-1.619,1.621-4.114,2.333-7.483,2.333a16.477,16.477,0,0,1-7.677-1.814m12.5-12.958V33a4.233,4.233,0,0,0-8.455,0v.063a3.967,3.967,0,0,0,4.211,4.018,4.014,4.014,0,0,0,4.244-4.018" fill="%237cbf3d"/><path id="Path_633" data-name="Path 633" d="M222.66,18.937h4.924v8.746A6.143,6.143,0,0,1,232.67,24.9c3.725,0,5.9,2.462,5.9,6.446V42.584h-4.924V32.9c0-2.333-1.1-3.531-2.981-3.531s-3.077,1.2-3.077,3.531v9.685H222.66Z" fill="%237cbf3d"/><path id="Path_634" data-name="Path 634" d="M242.872,37.661V29.432H240.8v-4.21h2.073V20.783H247.8v4.439h4.082v4.21H247.8v7.419c0,1.134.486,1.685,1.587,1.685a5.019,5.019,0,0,0,2.43-.616v3.952a7.264,7.264,0,0,1-3.887,1c-3.013,0-5.054-1.2-5.054-5.216" fill="%237cbf3d"/></g></svg>');
      max-width: 251px;
    height: auto;
  }
}

@media(max-width:600px) {
    .nav-logo {
        content: url('data:image/svg+xml,<svg id="WellRight-Logo-Horizontal-Green" xmlns="http://www.w3.org/2000/svg" width="251.878" height="49.144" viewBox="0 0 251.878 49.144"><g id="Group_13978" data-name="Group 13978" transform="translate(0)"><path id="Path_626" data-name="Path 626" d="M32.431,46.6Q45.61,7.039,89.475,0C88.2,35.176,69.821,51.242,34.619,48.925c4.927-9.012,14.241-18.869,27.829-29.512Q39.58,33.666,32.431,46.6" fill="%237cbf3d"/><path id="Path_627" data-name="Path 627" d="M30.808,46.722Q25.207,23.046.081,16.672c-1.088,20.51,8.756,30.8,29.335,31.29-2.4-5.5-7.3-11.708-14.638-18.6q12.549,9.472,16.03,17.36" fill="%237cbf3d"/><path id="Path_628" data-name="Path 628" d="M98.991,19.909h5.345l4.7,15.354,5.086-15.419h4.276l5.086,15.419,4.7-15.354h5.216l-7.742,22.838h-4.341L116.193,27.91l-5.119,14.837h-4.341Z" fill="%237cbf3d"/><path id="Path_629" data-name="Path 629" d="M132,34v-.064c0-4.956,3.531-9.039,8.585-9.039,5.8,0,8.454,4.5,8.454,9.427,0,.389-.032.843-.064,1.3H136.888a4.029,4.029,0,0,0,4.244,3.4,5.694,5.694,0,0,0,4.212-1.782l2.818,2.494A9.171,9.171,0,0,1,132,34m12.245-1.457c-.292-2.2-1.587-3.693-3.66-3.693-2.041,0-3.369,1.458-3.758,3.693Z" fill="%237cbf3d"/><rect id="Rectangle_683" data-name="Rectangle 683" width="4.924" height="23.647" transform="translate(152.145 18.938)" fill="%237cbf3d"/><rect id="Rectangle_684" data-name="Rectangle 684" width="4.924" height="23.647" transform="translate(161.15 18.938)" fill="%237cbf3d"/><path id="Path_630" data-name="Path 630" d="M170.446,19.909h10.366a9.04,9.04,0,0,1,6.609,2.3,7.12,7.12,0,0,1,1.943,5.183v.065a7.042,7.042,0,0,1-4.859,7.029l5.54,8.1h-5.831l-4.86-7.257h-3.919v7.257h-4.989Zm10.042,11.014c2.43,0,3.823-1.3,3.823-3.207v-.064c0-2.139-1.49-3.24-3.92-3.24h-4.956v6.511Z" fill="%237cbf3d"/><path id="Path_631" data-name="Path 631" d="M192.666,18.938h5.183v4.373h-5.183Zm.13,6.284h4.924V42.585H192.8Z" fill="%237cbf3d"/><path id="Path_632" data-name="Path 632" d="M201.671,46.018l1.684-3.692a11.336,11.336,0,0,0,5.864,1.587c3.369,0,4.956-1.621,4.956-4.73V38.34a6.79,6.79,0,0,1-5.669,2.819c-4.049,0-7.71-2.948-7.71-8.1V33c0-5.184,3.726-8.1,7.71-8.1a7.026,7.026,0,0,1,5.6,2.593V25.222h4.924V38.664c0,3.111-.745,5.378-2.2,6.835-1.619,1.621-4.114,2.333-7.483,2.333a16.477,16.477,0,0,1-7.677-1.814m12.5-12.958V33a4.233,4.233,0,0,0-8.455,0v.063a3.967,3.967,0,0,0,4.211,4.018,4.014,4.014,0,0,0,4.244-4.018" fill="%237cbf3d"/><path id="Path_633" data-name="Path 633" d="M222.66,18.937h4.924v8.746A6.143,6.143,0,0,1,232.67,24.9c3.725,0,5.9,2.462,5.9,6.446V42.584h-4.924V32.9c0-2.333-1.1-3.531-2.981-3.531s-3.077,1.2-3.077,3.531v9.685H222.66Z" fill="%237cbf3d"/><path id="Path_634" data-name="Path 634" d="M242.872,37.661V29.432H240.8v-4.21h2.073V20.783H247.8v4.439h4.082v4.21H247.8v7.419c0,1.134.486,1.685,1.587,1.685a5.019,5.019,0,0,0,2.43-.616v3.952a7.264,7.264,0,0,1-3.887,1c-3.013,0-5.054-1.2-5.054-5.216" fill="%237cbf3d"/></g></svg>');
        max-width: 150px;
      height: auto;
    }
}
.footer {
  background-color: #FFFFFF;
  color: #060F42;
  width: 100%;
}

footer a {
  text-decoration: none;
}

.footer__container {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  padding: 100px 100px 50px;
}

.footer__link-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.footer-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col__heading p {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
}

.footer-col__link {
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  flex-direction: row;
  margin-left: -5px;
}

.footer__social-link {
  height: 40px;
  width: 40px;
  padding: 5px;
  margin-right: 10px;
}

.footer__social-link:last-of-type {
  margin-right: 0; 
}

.footer__social-link:hover path,
.footer__social-link:hover #Rectangle_15 {
  fill: #5618D4;
}

.footer__social-img {
  max-width: 30px;
  height: auto;
  margin-right: 5px;
}

.footer__wellright-info {
  color: #060F42;
}

.footer__wr-logo {
  max-width: 252px;
  height: auto;
  margin-bottom: 20px;
}

.footer__wr-logo--top {
  display: none;
}

.footer__wr-logo--bottom {
  display: block;
}



.footer__link {
  color: #060F42;
  text-decoration: none;
  font-weight: 600;
}

footer .dnd-section > .row-fluid {
  padding: 0;
}

.footer__link-column p {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 20px;
}


.footer__gradient {
  height: 15px;
  background: linear-gradient(to right, #5618D4, #1F58F2, #099BF0, #00B3CF, #7CBF3D);
}

.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}


.footer__badges {
  display: flex;
}

.footer__apps {
  padding-right: 40px;
  border-right: 1px solid #060F42;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.app-badge {
  display: block;
  width: 134px;
  height: auto;
}


.footer__badge-logos {
  display: flex;
  align-items: flex-end;
  padding-left: 40px;
  gap: 18px;
}

.footer__badge-logos img {
  width: 100%;
  max-width: 85px;
  height: auto;
}

#footer__icon--linkedin {
  -webkit-mask: url('data:image/svg+xml,<svg id="icon-linkedin" xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><rect id="Rectangle_14" data-name="Rectangle 14" width="40" height="40" fill="none"/><g id="Group_11" data-name="Group 11" transform="translate(4.01 4.131)"><rect id="Rectangle_15" data-name="Rectangle 15" width="4.611" height="14.602" transform="translate(0.247 7.137)" fill="%23060f42"/><path id="Path_29" data-name="Path 29" d="M830.994,360.008h-4.612v-7.685c0-2.29-.784-3.094-2.379-3.094-1.542,0-2.663.853-2.663,3.094v7.685h-4.611s.06-13.395,0-14.6h4.611v2.036c.36-1.165,2.057-2.306,4.526-2.306,3.058,0,5.128,2.082,5.128,6.559Z" transform="translate(-809.014 -338.269)" fill="%23060f42"/><path id="Path_30" data-name="Path 30" d="M809.041,340.53a2.633,2.633,0,1,0,2.979-2.234A2.634,2.634,0,0,0,809.041,340.53Z" transform="translate(-809.014 -338.269)" fill="%23060f42"/></g></svg>');
  mask: url('data:image/svg+xml,<svg id="icon-linkedin" xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><rect id="Rectangle_14" data-name="Rectangle 14" width="30" height="30" fill="none"/><g id="Group_11" data-name="Group 11" transform="translate(4.01 4.131)"><rect id="Rectangle_15" data-name="Rectangle 15" width="4.611" height="14.602" transform="translate(0.247 7.137)" fill="%23060f42"/><path id="Path_29" data-name="Path 29" d="M830.994,360.008h-4.612v-7.685c0-2.29-.784-3.094-2.379-3.094-1.542,0-2.663.853-2.663,3.094v7.685h-4.611s.06-13.395,0-14.6h4.611v2.036c.36-1.165,2.057-2.306,4.526-2.306,3.058,0,5.128,2.082,5.128,6.559Z" transform="translate(-809.014 -338.269)" fill="%23060f42"/><path id="Path_30" data-name="Path 30" d="M809.041,340.53a2.633,2.633,0,1,0,2.979-2.234A2.634,2.634,0,0,0,809.041,340.53Z" transform="translate(-809.014 -338.269)" fill="%23060f42"/></g></svg>');
  background-color: navy;
  display: block;
  width: 40px;
  height: 40px;
}

#footer__icon--linkedin:hover {

  background-color: purple;
}

@media(max-width: 1340px) and (min-width: 1101px) {
  .footer__wellright-info {
    flex-shrink: 0;
    flex-grow: 1;
    flex-basis: 0px;
  }
}

@media(max-width:1200px) {
  .footer__container {
    padding: 100px 50px 50px;
  }
}

@media(max-width: 1100px) {

  .footer__container {
    padding: 40px 50px 50px;
  }

  .footer__link-row {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .footer-col {
    flex-basis: calc(33.33333% - 55px);
  }

  #footer-col-4{
    flex-basis: calc(33.33333% - 40px);
  }

  #footer-col-social {
    flex-basis: calc(66.66666% - 40px);
  }

  .footer__bottom-row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

}

@media(max-width: 767px) {

  .footer__container {
    padding: 50px 50px 50px;
  }

  .footer-col__heading p,
  .footer__link-column p {
    margin-bottom: 15px;
}

  .footer__link-row {
    flex-direction: column;
    gap: 25px;
  }

  .footer-col,
  #footer-col-4,
  #footer-col-4 {
    flex-basis: 100%;
  }


  .footer__social-link {
    height: 48px;
    width: 48px;
    padding: 9px;
    margin-right: 10px;
  }

  .footer__badges {
    flex-direction: column;
  }

  .footer__apps {
    padding-right: 0;
    border-right: none;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .footer__badge-logos {
    padding-left: 0;
  }

  .footer__badge-logos img {
    max-width: 65px;
  }

  .footer__wellright-links {
    display: block;
    margin-top: 20px;
  }
}

@media(max-width: 600px) {

  .footer__container {
    padding: 20px 20px 40px 20px;
  }

  .footer__wr-logo--top {
    display: block;
    margin-bottom: 30px;
  }

  .footer__wr-logo--bottom {
    display: none;
  }

  .footer__wr-logo--top {
    max-width: 150px;
  }

  .footer__badge-logos {
    max-width: 400px;
    justify-content: space-between;
    gap: 8px;
  }
}

#scroll-top {
  cursor: pointer;
  background-color: #5618d4;
  color: white;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  text-decoration: none;
  position: fixed;
  z-index: 99999;
  bottom: 50px;
  right: 25px;
}
/* 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%;
}

/* 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;
  }
}
/* Utility Classes */


/*
1.Text
2. Display 
*/


/* 1. Text & Links */

.text {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text--weight-semi {
    font-weight: 500;
}

.text--weight-bold {
    font-weight: bold;
}


.text--left {
    text-align: left;
}

.text--center {
    text-align: center;
}

.text--right {
    text-align: right;
}

.text--white {
    color: #FFFFFF;
}

.text--white {
    color: #FFFFFF;
}

.text--white {
    color: #FFFFFF;
}

.text--white {
    color: #FFFFFF;
}

/* Text Colors */

.text--white {
    color: #FFFFFF;
}

.text--light-gray {
    color: #F4F5F8;
}

.text--purple {
    color: #5618D4;
}

.text--navy {
    color: #060F42;
}

.text--spark-blue {
    color: #1F58F2;
}

.text--summer-blue {
    color: #099BF0;
}

.text--turquoise {
    color: #00B3CF;
}

.text--green {
    color: #7CBF3D;
}


.link--no-underline {
    text-decoration: none;
}


/* Buttons */

.btn {
    display: inline-block;
    cursor: pointer;
    color: #060F42;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.375rem;
    text-decoration: none;
}

.btn--solid,
.btn--outline {
    background-color: #FFFFFF;
    border-radius: 30px 30px 30px 0;
    padding: 14px 35px;
    transition: background-color 0.3s ease-out, border 0.3s ease-out;
}

.btn--solid:hover,
.btn--outline:hover {
    transition: background-color 0.3s ease-out, border 0.3s ease-out;
}

.btn--solid--purple {
    background-color: #5618D4;
    border: 2px solid #5618D4;
    color: #FFFFFF;
}

.btn--solid--purple:hover {
    background-color: #3C1194;
    border: 2px solid #3C1194;
    color: #FFFFFF !important;
}

.btn--solid--navy {
    background-color: #060F42;
    border: 2px solid #060F42;
    color: #FFFFFF;
}

.btn--solid--navy:hover {
    background-color: #020413;
    border: 2px solid #020413;
    color: #FFFFFF !important;
}

.btn--solid--spark-blue {
    background-color: #1F58F2;
    border: 2px solid #1F58F2;
    color: #FFFFFF;
}

.btn--solid--spark-blue:hover {
    background-color: #173DA9;
    border: 2px solid #173DA9;
    color: #FFFFFF !important;
}

.btn--solid--summer-blue {
    background-color: #099BF0;
    border: 2px solid #099BF0;
    color: #060F42;
}

.btn--solid--summer-blue:hover {
    background-color: #52B9F5;
    border: 2px solid #52B9F5;
    color: #060F42 !important;
}

.btn--solid--turquoise {
    background-color: #00B3CF;
    border: 2px solid #00B3CF;
    color: #060F42 !important;
}

.btn--solid--turquoise:hover {
    background-color: #4DCADD;
    border: 2px solid #4DCADD;
    color: #060F42 !important;
}

.btn--solid--green {
    background-color: #7CBF3D;
    border: 2px solid #7CBF3D;
    color: #060F42;
}

.btn--solid--green:hover {
    background-color: #A3D278;
    border: 2px solid #A3D278;
    color: #060F42 !important;
}

.btn--solid--white-purple {
    background-color: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #5618D4;
}

.btn--solid--white-purple:hover {
    background-color: #CDBAF2;
    border: 2px solid #CDBAF2;
    color: #5618D4 !important;
}

.btn--solid--white-navy {
    background-color: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #060F42;
}

.btn--solid--white-navy:hover {
    background-color: #DADDE7;
    border: 2px solid #DADDE7;
    color: #060F42 !important;
}


.btn--outline--purple {
    background-color: transparent;
    border: 2px solid #5618D4;
    color: #5618D4;
}

.btn--outline--purple:hover {
    background-color: #5618D4;
    border: 2px solid #5618D4;
    color: #FFFFFF !important;
}

.btn--outline--navy {
    background-color: transparent;
    border: 2px solid #060F42;
    color: #060F42;
}

.btn--outline--navy:hover {
    background-color: #060F42;
    border: 2px solid #060F42;
    color: #FFFFFF !important;
}

.btn--outline--spark-blue {
    background-color: transparent;
    border: 2px solid #1F58F2;
    color: #1F58F2;
}

.btn--outline--spark-blue:hover {
    background-color: #1F58F2;
    border: 2px solid #1F58F2;
    color: #FFFFFF !important;
}

.btn--outline--white {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn--outline--white:hover {
    border: 2px solid #FFFFFF;
    background-color: #FFFFFF;
    color: #5618D4 !important;
}

.btn-text-link {
    color: #060F42;
}

.btn-text-link:hover {
    color: #5618D4;
}


.btn-text-link::after {
    margin-left: 5px;
    position: absolute;
    content: "";
    display: inline-block;
    width: 22px;
    background-image: url("data:image/svg+xml,%3Csvg id='arrow-right-small' xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Crect id='Rectangle_143628' data-name='Rectangle 143628' width='22' height='22' fill='none'/%3E%3Cg id='Group_14725' data-name='Group 14725' transform='translate(-157 -5269)'%3E%3Cpath id='expand_less_FILL0_wght500_GRAD0_opsz48' d='M254.9-617.82l-5.193,5.194a1.053,1.053,0,0,1-.731.321.947.947,0,0,1-.731-.291,1,1,0,0,1-.306-.731,1,1,0,0,1,.306-.731l5.932-5.933a1.072,1.072,0,0,1,.343-.239.98.98,0,0,1,.38-.074.98.98,0,0,1,.38.074,1.072,1.072,0,0,1,.343.239l5.9,5.9a1.038,1.038,0,0,1,.321.716.93.93,0,0,1-.291.716,1,1,0,0,1-.731.306,1,1,0,0,1-.731-.306Z' transform='translate(-448.305 5025.064) rotate(90)' fill='%23060f42'/%3E%3C/g%3E%3C/svg%3E%0A");
    height: 22px;
}

.arrow-after:after {
    height: 22px;
    width: 22px;
    margin-left: 12px;
    content: url("data:image/svg+xml,%3Csvg id='arrow-right-small' xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Crect id='Rectangle_143628' data-name='Rectangle 143628' width='22' height='22' fill='none'/%3E%3Cg id='Group_14725' data-name='Group 14725' transform='translate(-157 -5269)'%3E%3Cpath id='expand_less_FILL0_wght500_GRAD0_opsz48' d='M254.9-617.82l-5.193,5.194a1.053,1.053,0,0,1-.731.321.947.947,0,0,1-.731-.291,1,1,0,0,1-.306-.731,1,1,0,0,1,.306-.731l5.932-5.933a1.072,1.072,0,0,1,.343-.239.98.98,0,0,1,.38-.074.98.98,0,0,1,.38.074,1.072,1.072,0,0,1,.343.239l5.9,5.9a1.038,1.038,0,0,1,.321.716.93.93,0,0,1-.291.716,1,1,0,0,1-.731.306,1,1,0,0,1-.731-.306Z' transform='translate(-448.305 5025.064) rotate(90)' fill='%23060f42'/%3E%3C/g%3E%3C/svg%3E%0A");
    position: relative;
    top: 4px;
}


.btn-text-link:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg id='arrow-right-small' xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Crect id='Rectangle_143628' data-name='Rectangle 143628' width='22' height='22' fill='none'/%3E%3Cg id='Group_14725' data-name='Group 14725' transform='translate(-157 -5269)'%3E%3Cpath id='expand_less_FILL0_wght500_GRAD0_opsz48' d='M254.9-617.82l-5.193,5.194a1.053,1.053,0,0,1-.731.321.947.947,0,0,1-.731-.291,1,1,0,0,1-.306-.731,1,1,0,0,1,.306-.731l5.932-5.933a1.072,1.072,0,0,1,.343-.239.98.98,0,0,1,.38-.074.98.98,0,0,1,.38.074,1.072,1.072,0,0,1,.343.239l5.9,5.9a1.038,1.038,0,0,1,.321.716.93.93,0,0,1-.291.716,1,1,0,0,1-.731.306,1,1,0,0,1-.731-.306Z' transform='translate(-448.305 5025.064) rotate(90)' fill='%235618D4'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.btn-text-link--dark {
    color: #FFFFFF;
}

.btn-text-link--dark:hover {
    color: #CDBAF2;
}

.btn-text-link--dark::after {
    margin-left: 5px;
    position: absolute;
    content: "";
    display: inline-block;
    width: 22px;
    background-image: url("data:image/svg+xml,%3Csvg id='arrow-right-small' xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Crect id='Rectangle_143628' data-name='Rectangle 143628' width='22' height='22' fill='none'/%3E%3Cg id='Group_14725' data-name='Group 14725' transform='translate(-157 -5269)'%3E%3Cpath id='expand_less_FILL0_wght500_GRAD0_opsz48' d='M254.9-617.82l-5.193,5.194a1.053,1.053,0,0,1-.731.321.947.947,0,0,1-.731-.291,1,1,0,0,1-.306-.731,1,1,0,0,1,.306-.731l5.932-5.933a1.072,1.072,0,0,1,.343-.239.98.98,0,0,1,.38-.074.98.98,0,0,1,.38.074,1.072,1.072,0,0,1,.343.239l5.9,5.9a1.038,1.038,0,0,1,.321.716.93.93,0,0,1-.291.716,1,1,0,0,1-.731.306,1,1,0,0,1-.731-.306Z' transform='translate(-448.305 5025.064) rotate(90)' fill='%23FFFFFF'/%3E%3C/g%3E%3C/svg%3E%0A");
    height: 22px;
}

.btn-text-link--dark:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg id='arrow-right-small' xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Crect id='Rectangle_143628' data-name='Rectangle 143628' width='22' height='22' fill='none'/%3E%3Cg id='Group_14725' data-name='Group 14725' transform='translate(-157 -5269)'%3E%3Cpath id='expand_less_FILL0_wght500_GRAD0_opsz48' d='M254.9-617.82l-5.193,5.194a1.053,1.053,0,0,1-.731.321.947.947,0,0,1-.731-.291,1,1,0,0,1-.306-.731,1,1,0,0,1,.306-.731l5.932-5.933a1.072,1.072,0,0,1,.343-.239.98.98,0,0,1,.38-.074.98.98,0,0,1,.38.074,1.072,1.072,0,0,1,.343.239l5.9,5.9a1.038,1.038,0,0,1,.321.716.93.93,0,0,1-.291.716,1,1,0,0,1-.731.306,1,1,0,0,1-.731-.306Z' transform='translate(-448.305 5025.064) rotate(90)' fill='%23CDBAF2'/%3E%3C/g%3E%3C/svg%3E%0A");
}


/* Page & Post Breadcrumbs */

.page-header__breadcrumbs,
.post-header__breadcrumbs {
    padding: 25px 0;
    font-size: 1rem;
}

.header__breadcrumbs--parent {
    display: inline-block;
    margin-right: 6px;
    font-weight: bold;
}

.header__breadcrumbs--current {
    font-weight: 500;
}

.header__breadcrumbs--parent a {
    text-decoration: none;
}


/* 2. Display & Containers*/

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-1600 {
    max-width: 1600px;
}

.container--1000 {
    max-width: 1060px;
}

.section--page-header {
    width: 100%;
}

.section--page-header.dnd-section > .row-fluid {
    padding-left: 0;
    padding-right: 0;
}

.section--tl-radius {
    -webkit-border-radius: 400px 0 0 0;
    -moz-border-radius: 400px 0 0 0;
    border-radius: 400px 0 0 0;
}

.section--tr-radius {
    -webkit-border-radius: 0 400px 0 0;
    -moz-border-radius: 0 400px 0 0;
    border-radius: 0 400px 0 0;
}

.section--br-radius {
    -webkit-border-radius: 0 0 400px 0;
    -moz-border-radius: 0 0 400px 0;
    border-radius: 0 0 400px 0;
}

.section--bl-radius {
    -webkit-border-radius: 0 0 0 400px;
    -moz-border-radius: 0 0 0 400px;
    border-radius: 0 0 0 400px;
}

@media(max-width:1400px) {
    .section--tl-radius {
        -webkit-border-radius: 200px 0 0 0;
        -moz-border-radius: 200px 0 0 0;
        border-radius: 200px 0 0 0;
    }

    .section--tr-radius {
        -webkit-border-radius: 0 200px 0 0;
        -moz-border-radius: 0 200px 0 0;
        border-radius: 0 200px 0 0;
    }

    .section--br-radius {
        -webkit-border-radius: 0 0 200px 0;
        -moz-border-radius: 0 0 200px 0;
        border-radius: 0 0 200px 0;
    }

    .section--bl-radius {
        -webkit-border-radius: 0 0 0 200px;
        -moz-border-radius: 0 0 0 200px;
        border-radius: 0 0 0 200px;
    }
}

@media(max-width:767px) {
    .section--tl-radius {
        -webkit-border-radius: 100px 0 0 0;
        -moz-border-radius: 100px 0 0 0;
        border-radius: 100px 0 0 0;
    }

    .section--tr-radius {
        -webkit-border-radius: 0 100px 0 0;
        -moz-border-radius: 0 100px 0 0;
        border-radius: 0 100px 0 0;
    }

    .section--br-radius {
        -webkit-border-radius: 0 0 100px 0;
        -moz-border-radius: 0 0 100px 0;
        border-radius: 0 0 100px 0;
    }

    .section--bl-radius {
        -webkit-border-radius: 0 0 0 100px;
        -moz-border-radius: 0 0 0 100px;
        border-radius: 0 0 0 100px;
    }

    .section--reverse-mobile > .row-fluid {
        display: flex;
        flex-direction: column-reverse;
    }
}

.dnd-section.section--radius-columns .dnd-column {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: gray;
    padding: 30px;
}

.section--rounded-columns.dnd-section .dnd-column {
    padding: 40px;
    border-radius: 30px;
}

@media(max-width:767px) {
    .section--rounded-columns.dnd-section .dnd-column {
        padding: 40px 20px;
    }
}

.block--left {
    margin-right: auto;
}

.block--right {
    margin-left: auto;
}

.block--center {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.flex--row {
    flex-direction: row;
}

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

@media(max-width: 767px) {
    .hide--mobile {
        display: none;
        height: 0;
        width: 0;
        visibility: none;
    }
}

.no-scroll {
    overflow: hidden;
}


/* Spacing & Sizing */

.p-0 {
    padding: 0;
}

.p-40 {
    padding: 40px;
}

.p-50 {
    padding: 50px;
}

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mt-15 {
    margin-top: 15px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-50 {
    margin-top: 50px;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.my-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mr-10 {
    margin-right: 10px;
}

@media(max-width:767px) {
    .my-100 {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.pb-50 {
    padding-bottom: 50px;
}

.w-800 {
    max-width: 800px;
}

.rounded-corners {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
}



/* Backgrounds */

.bg--white {
    background-color: #FFFFFF;
}

.bg--light-gray {
    background-color: #F4F5F8;
}

.bg--purple {
    background-color: #5618D4;
}

.bg--navy {
    background-color: #060F42;
}

.bg--spark-blue {
    background-color: #1F58F2;
}

.bg--summer-blue {
    background-color: #099BF0;
}

.bg--turquoise {
    background-color: #00B3CF;
}

.bg--green {
    background-color: #7CBF3D;
}



.hs-breadcrumb-menu-divider:before {
    content: '/';
    padding-left: 10px;
}