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

/**
 * 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));
    }
  
}
.hs-breadcrumb-menu {
  text-align: left;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.quick-links__site-search {
  display: none;
}
.position-absolute,
.position-fixed, 
.position-relative {
  z-index: 100;
}
div[data-aos="none"] {
transition-delay: unset !important;
    transition-timing-function: unset !important;
    transition-duration: unset !important;
}
.custom-width {
  padding: 0 24px;
  margin: 0 auto;
}
.dnd-section[class*=force-full-width-section] {
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.dnd-section[class*=full-width-section]>.row-fluid>.dnd-column {
  padding-left: 0;
  padding-right: 0;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 24px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-0{
  margin-bottom: 0;
}
.mb-48 {
  margin-bottom: 48px;
}
.text-center .cta--group {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center!important;
  justify-content: center !important;
}
.position-relative {
  position: relative;
}

.content-wrapper {
  position: relative;
  z-index: 1;
}
.text-right .cta--group {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end!important;
  justify-content: flex-end !important;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}
.dnd-section .dnd-column {
  padding: 0 24px;
}
.has_branded_text {
  display: flex;
  justify-content: center;
  column-gap: 5px;
}
.first_text {
  font-weight: 700;
  position: relative;
}
.second_text {
  font-weight: normal;
}
.first_text.no-udrn, 
.second_text.no-udrn {
  font-weight: 600;
}
.first_text i {
  display: block;
}
.first_text i svg {
  display: block;
}
@media (min-width: 768px){
  .visible-phone{
    display: none; 
  }
}
@media (max-width: 767px){
  .hidden-phone{
    display: none; 
  }
  .first_text i svg {
    width: 23vw;
    height: auto;
  }
}

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

@font-face {
  font-family: 'Myriad Pro';
  src: url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/CherokeeMedicalCenter_Oct2025/Fonts/MyriadPro-Regular.eot');
  src: url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/CherokeeMedicalCenter_Oct2025/Fonts/MyriadPro-Regular.eot#iefix') format('embedded-opentype'),
    url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Regular.woff2') format('woff2'),
      url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Regular.woff') format('woff'),
        url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Regular.ttf') format('truetype');
          font-weight: normal;
          font-style: normal;
          font-display: swap;
          }
@font-face {
  font-family: 'Myriad Pro';
  src: url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/CherokeeMedicalCenter_Oct2025/Fonts/MyriadPro-Semibold.eot');
  src: url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/CherokeeMedicalCenter_Oct2025/Fonts/MyriadPro-Semibold.eot#iefix') format('embedded-opentype'),
    url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Semibold.woff2') format('woff2'),
      url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Semibold.woff') format('woff'),
        url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Semibold.ttf') format('truetype');
          font-weight: 600;
          font-style: normal;
          font-display: swap;
          }

@font-face {
  font-family: 'Myriad Pro';
  src: url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/CherokeeMedicalCenter_Oct2025/Fonts/MyriadPro-Bold.eot');
  src: url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/CherokeeMedicalCenter_Oct2025/Fonts/MyriadPro-Bold.eot#iefix') format('embedded-opentype'),
    url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Bold.woff2') format('woff2'),
      url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Bold.woff') format('woff'),
        url('https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/raw_assets/public/CherokeeMedicalCenter_Oct2025/fonts/MyriadPro-Bold.ttf') format('truetype');
          font-weight: bold;
          font-style: normal;
          font-display: swap;
          }
/* 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.5;
  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 {
  margin: 0 0 1rem;
}

/* Anchors */
a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px;
}

.h1,h1 {
  line-height: 1.14;
}
.h2, h2,.h4, h4,.h5, h5, .h6, h6  {
  line-height: 1.333;
}
.h3,h3 {
  line-height: 1.42;
}


/* 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: 0rem;
  display: flex;
  border: none;
  font-size: 28px;
  line-height: 1.429;
}
blockquote:before {
  content: "“";
  display: block;
  margin-right: 4px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.042;
  color: var(--secondary);
}

@media (max-width:1024px){
  blockquote {
    font-size: 24px;
  }
}
/* Horizontal rules */

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

/* Image alt text */

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.banner-heading .has_branded_text {
  display: block;
}
.cta__link {
  display: inline-block;
  font-weight: 600;
}
.cta--group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
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;
}
/* Form */
.contact-banner-wrp .hbspt-form,
.hs_cos_wrapper_type_form, 
.hs_cos_wrapper_type_blog_subscribe, 
.hs_cos_wrapper_type_google_search, 
.hs_cos_wrapper_type_email_simple_subscription, 
.hs_cos_wrapper_type_password_prompt, 
.hs_cos_wrapper_type_module .widget-type-email_subscriptions, 
.hs_cos_wrapper_type_member_login, 
.hs_cos_wrapper_type_member_register, 
.hs_cos_wrapper_type_password_reset_request, 
.hs_cos_wrapper_type_password_reset{
  max-width: 767px;
  padding: 32px 24px;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
  box-shadow: 0px 16px 48px #2222221A;
}
@media(max-width: 767px) {
}
form select {
  background-image: url(https://50301569.fs1.hubspotusercontent-na2.net/hubfs/50301569/CherokeeMedicalCenter_Oct2025/Images/arrow-down.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 18px;
  background-position: 98% center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
h3.form-title:empty {
  display: none;
}
form {
  max-width: 767px;
}
form fieldset.form-columns-1 .input,
form fieldset.form-columns-2 .hs-form-field .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 .hs-form-field:first-child .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 {
  display: flex;
  column-gap: 24px;
}
form fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}
form fieldset .hs-input[type=radio],
form fieldset .hs-input[type=checkbox] {
  width: auto !important;
}
.hs-fieldtype-textarea.hs-input {
  vertical-align: middle;
}
.form-title {
  font-size: 24px;
  line-height: 1.334;
}
@media(max-width: 1024px) {
  form fieldset.form-columns-2 {
    flex-wrap: wrap;
  }
  form fieldset.form-columns-2 .hs-form-field {
    float: none;
    width: 100% !important;
  }
}
@media(max-width:479px) {
  form fieldset.form-columns-2 .hs-form-field:first-child .input,
  form fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 0 !important;
  }
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none;
  }
  .form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }
}
/* Form fields */
.hs-form-field {
  margin-bottom: 24px;
}
/* Labels */
.hs-form label {
  display: block;
  margin-bottom: 2px;
}
.hs-form label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 3px;
}
.hs-form-field > label {
  margin-bottom: 3px;
}
.inputs-list.hs-error-msgs label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: .5rem;
  color: #f00;
}
.hs-error-msgs label {
  color: #f00;
}
/* Help text - legends */
form legend {
  font-size: 0.875rem;
}
/* Inputs */
.hs-search-field__input,
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 select,
form textarea {
  display: inline-block;
  min-height: 48px;
  padding: 5px 15px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  box-sizing: border-box;
  outline: none;
}
.hs-search-field__input:focus, 
form input[type=email]:focus, 
form input[type=file]:focus, 
form input[type=number]:focus, 
form input[type=password]:focus, 
form input[type=tel]:focus, 
form input[type=text]:focus, 
form select:focus, 
form textarea:focus {
  outline: none;
  outline-style: none;
}
[type="search"] {
  outline-style: none;
  -webkit-appearance: textfield;
  outline-offset: 0;
}
.hs-search-field__input:focus {
  outline-style: none !important;
}
textarea.hs-input {
  height: auto;
}
.hs-input:focus {
  outline: none;
}
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;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  width: auto;
}
textarea.hs-input {
  min-height: 84px;
  padding: 15px;
}
/* Inputs - datepicker */
.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;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}
/* 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: red;
  margin-left: 4px;
}
.hs-input.invalid.error {
  border-color: #f00;
}
.hs-error-msg {
  color: #f00;
  margin-top: 0.35rem;
}
.hs-error-msgs label {
  color: #f00;
}
/* Submit button */
.cta__button--btn-primary a,
.cta__button--btn-primary-outline a,
.cta__button--btn-secondary a,
.cta__button--btn-secondary-outline a,
form input[type=submit],
form .hs-button {
  margin: 0;
  position: relative;
  font-size: 18px;
  line-height: 1.3333;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}
#hs-search-module .hs-input {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  form {
    max-width: 100%;
  }
}
/* 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
*/

/* breadcrumb styling */
.hs-breadcrumb-menu li {
  margin: 0;
  padding: 0;
}
.hs-breadcrumb-label, 
.hs-breadcrumb-menu li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
.hs-breadcrumb-label,
.hs-breadcrumb-menu-divider, 
.hs-breadcrumb-menu li a {
  color: inherit;
}
.hs-breadcrumb-menu-divider {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.hs-breadcrumb-menu-divider:before {
  background: linear-gradient(89deg, #ffcb05 .24%, #f37021 99.76%);
  background-clip: text;
  -webkit-background-clip: text;
  content: "/";
  padding-left: 4px;
  padding-right: 4px;
  -webkit-text-fill-color: transparent;
}
li.hs-breadcrumb-menu-item.last-crumb {
  opacity: .5;
}
.hs-breadcrumb-menu:before, 
.hs-breadcrumb-menu:after {
  content: '';
  display: table;
}
.hs-breadcrumb-menu:after {
  clear: both;
}
@media (max-width: 767px) {
  span.hs-breadcrumb-label {
    opacity: 1;
  }
}

/* Header DND sections */
header.header {
  /*   position: relative;
  z-index: 9999999999; */
}
.hs-inline-edit header.header {
  position: relative;
  z-index: 9999999999;
}
body.pop-act {
  overflow: hidden;
}
.header .dnd-section {
  padding: 0;
}

.lp-header .header__container--main {
  padding-top: 12px;
  padding-bottom: 12px;
}
/* Header container */
.header__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__column {
    position: relative;
  }
  .lp-header .header__container--main {
    padding-top: 0;
    padding-bottom: 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;
}

/* Logo */
.header__logo {
  align-items: center;
  display: flex;
  max-width: 190px;
  overflow: hidden;
  width: 14.67%;
}

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

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

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

.header__top {
  padding: 12px 36px;
  text-align: right;
  z-index: 1200;
  position: relative;
}
.header__top .header__container {
  justify-content: end;
  align-items: center;
}
.header__top .hs-menu-wrapper > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 32px;
}
.custom-menu-secondary .hs-menu-wrapper > ul a,
.header__top .hs-menu-wrapper > ul a {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  display: block;
}
.header_custom_wrapper {
  width: 100%;
}
.header__bottom {
  position: relative;
  z-index: 1199;
  width: 100%;
  min-height: 84px;
}
.header__bottom.fixed {
  position: fixed;
  top: 0;
}
#header__bottom:before {
  content: '';
  box-shadow: 0 0 24px 0 rgba(0, 96, 172, 0.15);
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}
.header__bottom .content-wrapper {
  position: static;
}
.header__bottom_inner {
  width: 100%;
  display: flex;
  align-items: center;
}
.header__bottom .mega-menu-warpper {
  flex: auto;
}
.header__bottom .header__cta {
  margin-right: 16px;
  min-width: 132px;
}
.header__bottom .search-icon {
  cursor: pointer;
  transition: all 0.5s ease;
}
.header__bottom svg {
  display: block;
  vertical-align: middle;
  transition: all 0.5s ease;
}
.header__bottom .search-icon:hover svg {
  fill: var(--quinary);
}
.header__bottom .mobile_trigger {
  display: none;
  cursor: pointer;
}
.header__bottom .mobile_trigger:not(.active_trigger) .close_trigger {
  display: none;
}
.header__bottom .mobile_trigger.active_trigger .open_trigger {
  display: none;
}

.header_search_wrap form {
  max-width: 100%;
  position: relative;
}
.header_search_wrap .hs-search-field__label {
  display: none;
}
.header_search_wrap .hs-search-field__input {
  padding: 12px 18px;
  border-radius: 100px;
  border-color: var(--quinary);
  padding-right: 54px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}
.header_search_wrap button.hs-search-field__button {
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  position: absolute;
  right: 24px;
  font-weight: normal;
  box-shadow: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  top: 28px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_search_wrap button.hs-search-field__button > span {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M20.2889 22L12.5889 14.3C11.9778 14.7889 11.275 15.1759 10.4806 15.4611C9.68611 15.7463 8.84074 15.8889 7.94444 15.8889C5.72407 15.8889 3.84491 15.1199 2.30694 13.5819C0.768982 12.044 0 10.1648 0 7.94444C0 5.72407 0.768982 3.84491 2.30694 2.30694C3.84491 0.768981 5.72407 0 7.94444 0C10.1648 0 12.044 0.768981 13.5819 2.30694C15.1199 3.84491 15.8889 5.72407 15.8889 7.94444C15.8889 8.84074 15.7463 9.68611 15.4611 10.4806C15.1759 11.275 14.7889 11.9778 14.3 12.5889L22 20.2889L20.2889 22ZM7.94444 13.4444C9.47222 13.4444 10.7708 12.9097 11.8403 11.8403C12.9097 10.7708 13.4444 9.47222 13.4444 7.94444C13.4444 6.41667 12.9097 5.11806 11.8403 4.04861C10.7708 2.97917 9.47222 2.44444 7.94444 2.44444C6.41667 2.44444 5.11806 2.97917 4.04861 4.04861C2.97917 5.11806 2.44444 6.41667 2.44444 7.94444C2.44444 9.47222 2.97917 10.7708 4.04861 11.8403C5.11806 12.9097 6.41667 13.4444 7.94444 13.4444Z" fill="%23000F1A"></path></svg>');
  width: 18px;
  height: 18px;
  aspect-ratio: 1 / 1;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.header_search_wrap button.hs-search-field__button svg {
  display: none;
}
/* header.header {
min-height: 128px;
} */
@media (min-width: 1025px) {
  .header_mobile_dropdown_wrapper {
    display: none !important;
  }
  .header_custom_wrapper {
    position: absolute;
    z-index: 101;
    left: 0;
    right: 0;
    width: 100%;
  }
  .header_desktop_search {
    position: absolute;
    box-shadow: 0px 24px 24px -24px rgba(0, 96, 172, 0.15);
    display: none;
    overflow: visible !important;
    background-color: #fff;
    width: 100%;
  }
  .header_desktop_search .header_desktop_search_inner {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 1024px) {
  /*   header.header {
  min-height: 72px;
} */
  body.menu_open {
    overflow: hidden;
  }
  #header_desktop_search,
  .header__bottom .mega-menu-warpper,
  header.header .header__top,
  .header__bottom .search-icon {
    display: none !important;
  }
  .header__bottom {
    position: fixed;
    min-height: 72px;
  }
  .header__bottom_inner {
    padding-top: 12px;
    padding-bottom: 12px;
    justify-content: space-between;
  }
  .header__bottom .header__cta {
    margin-left: auto;
  }
  .header__bottom .mobile_trigger {
    display: block;
  }
  .header_mobile_dropdown_wrapper {
    display: none;
    overflow: hidden;
    /*     height: calc(100vh - 72px); */
    height:100%;
    position: fixed;
    padding-top: 0;
    overflow-y: auto;
    top: 0;
    z-index: 999;
    background-color: #fff;
    width: 100%;
    padding-top: 72px;
  }
  .custom-menu-secondary .hs-menu-wrapper,
  .header_mobile_dropdown_inner {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    max-width: 573px;
  }
  .header_mobile_dropdown_inner {
    padding-top: 72px;
  }
  .header__search {
    margin-bottom: 24px;
  }
  .custom-menu-secondary {
    background-color: #F2F7FB;
    padding: 12px 0px 36px;
  }
  .custom-menu-secondary .hs-menu-wrapper > ul {
    flex-direction: column;
    row-gap: 32px;
  }
  .header_mobile_dropdown_wrapper .header__cta {
    margin-bottom: 48px;
    text-align: center;
  }
  .header_mobile_dropdown_wrapper .header__cta .cta--group {
    justify-content: center;
  }
  .header_mobile_dropdown_inner-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .header_mobile_dropdown_inner-wrap > .custom-menu-secondary {
    margin-top: auto;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .header_mobile_dropdown_wrapper .header__cta {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .header__bottom_inner .header__cta {
    display: none !important;
  }
  .header_mobile_dropdown_inner {
    padding-top: 56px;
  }
}
footer.footer {
  border-bottom: 24px solid var(--quinary);
  box-shadow: 3px 3px 3px 0 rgba(147, 217, 208, 0.10) inset;
}
.footer-inner-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 48px;
  row-gap: 48px;
  padding: 36px 0;
}
.footer-inner-wrapper .footer-col {
  width: 100%;
}
.footer-inner-wrapper .footer-search {
  margin-top: auto;
  padding-top: 24px;
}
.footer-inner-wrapper .footer-search form {
  max-width: 100%;
  position: relative;
}
.footer-inner-wrapper .footer-search .hs-search-field__label {
  display: none;
}

.footer-inner-wrapper .footer-search button.hs-search-field__button {
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  position: absolute;
  left: 24px;
  font-weight: normal;
  box-shadow: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-inner-wrapper .footer-search button.hs-search-field__button > span {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M20.2889 22L12.5889 14.3C11.9778 14.7889 11.275 15.1759 10.4806 15.4611C9.68611 15.7463 8.84074 15.8889 7.94444 15.8889C5.72407 15.8889 3.84491 15.1199 2.30694 13.5819C0.768982 12.044 0 10.1648 0 7.94444C0 5.72407 0.768982 3.84491 2.30694 2.30694C3.84491 0.768981 5.72407 0 7.94444 0C10.1648 0 12.044 0.768981 13.5819 2.30694C15.1199 3.84491 15.8889 5.72407 15.8889 7.94444C15.8889 8.84074 15.7463 9.68611 15.4611 10.4806C15.1759 11.275 14.7889 11.9778 14.3 12.5889L22 20.2889L20.2889 22ZM7.94444 13.4444C9.47222 13.4444 10.7708 12.9097 11.8403 11.8403C12.9097 10.7708 13.4444 9.47222 13.4444 7.94444C13.4444 6.41667 12.9097 5.11806 11.8403 4.04861C10.7708 2.97917 9.47222 2.44444 7.94444 2.44444C6.41667 2.44444 5.11806 2.97917 4.04861 4.04861C2.97917 5.11806 2.44444 6.41667 2.44444 7.94444C2.44444 9.47222 2.97917 10.7708 4.04861 11.8403C5.11806 12.9097 6.41667 13.4444 7.94444 13.4444Z" fill="%23000F1A"></path></svg>');
  width: 18px;
  height: 18px;
  aspect-ratio: 1 / 1;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer-inner-wrapper .footer-search button.hs-search-field__button svg {
  display: none;
}
.footer-inner-wrapper .footer-search input#site_search-input {
  padding: 16px 18px;
  border-radius: 100px;
  border-color: var(--quinary);
  padding-left: 54px;
  font-size: 18px;
  line-height: 1.334;
  font-weight: normal;
}

.footer-search ::-webkit-input-placeholder {
  color: rgba(var(--primary_rgb), 0.8);
  font-weight: inherit;
  font-size: inherit;
}
.footer-search ::-moz-placeholder {
  color: rgba(var(--primary_rgb), 0.8);
  font-weight: inherit;
  font-size: inherit;
}
.footer-search :-ms-input-placeholder {
  color: rgba(var(--primary_rgb), 0.8);
  font-weight: inherit;
  font-size: inherit;
}
.footer-search ::-ms-input-placeholder {
  color: rgba(var(--primary_rgb), 0.8);
  font-weight: inherit;
  font-size: inherit;
}
.footer-search .hs-search-field__input::placeholder, 
.footer-search ::placeholder {
  color: rgba(var(--primary_rgb), 0.8);
  font-weight: inherit;
  font-size: inherit;
  opacity: 0.8;
  font-weight: 400;
}
.footer-menu .hs-menu-wrapper > ul a {
  display: block;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid;
  line-height: 1.25;
}
.footer-menu .hs-menu-wrapper > ul > li:first-child > a {
  border-top: 2px solid;
}
.footer-inner-wrapper .footer-logo {
  display: flex;
  flex-direction: column;
}
.footer-contact-wrapper {
  display: flex;
  column-gap: 32px;
  margin-top: 32px;
  row-gap: 48px;
}
.footer-logo .advance-buttons-wrapper .cta--group {
  margin-top: 0;
}

.footer-buttons > div,
.footer-buttons .advance-buttons-wrapper {
  height: 100%;
}
.footer-buttons .advance-buttons-wrapper .cta--group {
  margin: 0;
  row-gap: 16px;
  height: 100%;
  flex-direction: column;
}
.footer-buttons .advance-buttons-wrapper .cta__button {
  width: 100%;
  flex: auto;
}
.footer-buttons .advance-buttons-wrapper a.cta__link {
  font-size: 16px;
  line-height: 1.25;
  width: 100%;
  justify-content: center;
  height: 100%;
  align-items: center;
  border-radius: 24px;
  min-height: 85px;
}
.footer-copyright-wrapper h6 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.334;
  margin-bottom: 12px;
}
.footer-copyright-wrapper .footer-links {
  margin-top: auto;
}
.footer-copyright-wrapper {
  display: flex;
  flex-direction: column;
}
.footer-copyright-wrapper .footer-links ul li a {
  display: block;
  font-weight: 600;
  margin-top: 16px;
  line-height: 1.25;
}
.footer-copyright-wrapper .copyright {
  margin-top: 32px;
  opacity: 0.66;
}
.footer-copyright-wrapper .copyright.small p {
  line-height: 1.429;
}
.footer-copyright-wrapper .copyright p:last-child {
  margin-bottom: 0;
}
.footer-mobile-search {
  width: 100%;
}
.footer-hipaa-logo {
  margin-bottom: 20px;
}
.footer-inner-wrapper .social-icons-wrapper {
  margin-top: 32px;
}
footer.footer .hs-search-field__suggestions {
  z-index: 99;
}
.footer.lp-footer .footer-copyright-wrapper {
  align-self: flex-end;
}
@media (min-width: 1200px) {
  .footer-inner-wrapper > .footer-logo {
    width: calc(34.5% - 36px);
  }
  .footer-inner-wrapper > .footer-menu {
    width: calc(23.68% - 36px);
    padding-bottom: 18px;
  }
  .footer-inner-wrapper > .footer-buttons {
    width: calc(15.5% - 36px);
  }
  .footer-inner-wrapper > .footer-copyright-wrapper {
    width: calc(26.32% - 36px);
  }
  .footer-mobile-search {
    display: none !important;
  }
  footer.footer .hs-search-field__suggestions {
    position: absolute;
    bottom: calc(100% + 60px);
    left: 0;
    right: 0;
    width: 100%;
  }
  .footer-contact-wrapper .footer-contact-left {
    width: calc(37% - 16px);
  }
  .footer-contact-wrapper .footer-contact-right {
    width: calc(63% - 16px);
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .footer-inner-wrapper .footer-col {
    width: calc(50% - 24px);
  }
  .footer-inner-wrapper .footer-buttons {
    order: 9;
  }
  .footer.lp-footer .footer-inner-wrapper {
    row-gap: 0;
  }
}
@media (max-width: 1199px) {
  .footer-contact-wrapper {
    flex-direction: column;
  }
  .footer-desktop-search {
    display: none !important;
  }
  .footer-inner-wrapper .footer-search {
    padding-top: 0px;
  }
  .footer-inner-wrapper .social-icons-wrapper {
    margin-top: 40px;
  }
}
@media (max-width:1024px){
  footer.footer .advance-buttons-wrapper .cta__button, footer.footer .advance-buttons-wrapper .cta__button a {
    width: 100%;
  }
  .footer-copyright-wrapper h6 {
    font-size: 21.984px;
  }
}
@media (max-width: 767px) {
  .footer-inner-wrapper {
    padding-bottom: 48px;
  }
  .footer.lp-footer .footer-inner-wrapper {
    row-gap: 0;
  }
}
@media (max-width:479px){
  .footer-logo .advance-buttons-wrapper .cta--group .cta__button {
    width: 100%;
  }
  .footer-logo .advance-buttons-wrapper .cta--group .cta__button a {
    width: 100%;
  }
}
/* 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;
  }
}