/* 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: 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));
    }
  
}
.custom-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.bg_image,
.gradient{
  width:100%;
  height:100%;
  top:0;
  left:0;
  right:0;
  pointer-events:none;
}
div[data-aos="none"] {
  transition-delay: unset !important;
  transition-timing-function: unset !important;
  transition-duration: unset !important;
}
.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-section[class*=force-full-width-section] {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.position-relative{
  position: relative;
}
section .full-width,
.custom-width, .content-wrapper {
  position: relative;
  z-index: 1;
}
.overflow-hidden{
  overflow: hidden;
}
.dnd-section > .row-fluid,
.content-wrapper {
  margin: 0 auto;
  padding: 0 24px;
}
.dnd-section[class*="full-width-section"]>.row-fluid,
.dnd-section[class*=force-full-width-section] {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.dnd-section[class*=full-width-section]>.row-fluid>.dnd-column {
  padding-left: 0;
  padding-right: 0;
}
.dnd-section .dnd-column {
  padding: 0 20px;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  column-gap: 48px;
  align-items: start;
}
.two-column-layout__left {
  position: sticky;
  top: 60px;
}
.two-column-layout__right .content-wrapper,
.two-column-layout__left .content-wrapper{
  padding: 0;
}
.two-column-Patients {
  overflow-x: clip;
}
.body-container--services-t2 .technology-section__list-icon {
  height: 32px;
  width: 32px;
}
@media (max-width: 991px) {
  .two-column-layout__left {
    position: sticky;
    top: 80px;
    top: 74px;
    z-index: 11;
  }
  .two-column-layout {
    column-gap: 24px;
  }
  .two-column-layout {
    grid-template-columns: 265px 1fr;
  }
}
@media (min-width: 768px) {
  .visible-phone{
    display: none; 
  }
}
@media (max-width: 767px) {
  .dnd-section > .row-fluid,
  .content-wrapper,
  .custom-width {
    padding: 0 20px;
  }
  .hidden-phone{
    display: none; 
  }

  .two-column-layout {
    display: block;
  }
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
body {
  overflow-wrap: break-word;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Variable.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Variable.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Variable.ttf) format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Thin.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Thin.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Thin.ttf) format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Extralight.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Extralight.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Extralight.ttf) format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Light.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Light.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Light.ttf) format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Regular.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Regular.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Regular.ttf) format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Medium.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Medium.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Medium.ttf) format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Bold.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Bold.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Bold.ttf) format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Extrabold.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Extrabold.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Extrabold.ttf) format('truetype');
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Black.woff2) format('woff2'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Black.woff) format('woff'),
    url(https://244989788.fs1.hubspotusercontent-na2.net/hubfs/244989788/raw_assets/public/Waukee_Dental_May2026/fonts/CabinetGrotesk-Black.ttf) format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
/* 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, .p {
  margin: 0 0 15px;
}

/* Anchors */
a {
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* standardize visuals for media elements */
img, video, svg, canvas, picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  text-transform: capitalize;
}
/* 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;
}
.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;
}
.text-left .cta-group {
  -webkit-box-pack: start!important;
  -ms-flex-pack: start!important;
  justify-content: flex-start!important
}
.text-right .cta-group {
  -webkit-box-pack: end!important;
  -ms-flex-pack: end!important;
  justify-content: flex-end!important
}
.text-center .cta-group {
  -webkit-box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center!important
}
.cta-group .btn-wrapper {
  display: inline-block;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
@media(max-width: 1024px) and (min-width: 768px) {
  .text-tab-left {
    text-align: left;
  }
  .text-tab-center {
    text-align: center;
  }
  .text-tab-right {
    text-align: right;
  }
  .text-tab-left .cta-group {
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
  }
  .text-tab-right .cta-group {
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
  }
  .text-tab-center .cta-group {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important
  }
}
@media(max-width: 767px) {
  .text-mob-left {
    text-align: left;
  }
  .text-mob-center {
    text-align: center;
  }
  .text-mob-right {
    text-align: right;
  }
  .text-mob-left .cta-group {
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
  }
  .text-mob-right .cta-group {
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
  }
  .text-mob-center .cta-group {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important
  }
}

.hs-button svg {
  /*   width: 24px;
  height: 24px; */
  margin-right: 12px;
}
.cta__button--btn-primary a,
.cta__button--btn-secondary a,
.cta__button--btn-tertiary a,
.cta__button--outline-white a{
  font-size: 18px;
  line-height: 1.333;
  font-weight: 500;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 300ms ease-in-out;
  white-space: normal;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: capitalize;
  text-decoration: none;
}
.cta__button--outline-white a {
  font-weight: 700;
}
.cta__button--btn-tertiary a {
  gap: 8px;
  /*   flex-direction: row-reverse; */
  transition: all 300ms ease-in-out;
}
.cta__button--btn-tertiary a:hover {
  gap: 16px;
}
.cta__button--btn-primary a,
.cta__button--btn-secondary a,
.cta__button--outline-white a {
  position: relative;
  overflow: hidden;
}
.cta__button--btn-tertiary a .btn-txt:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  transition: all 300ms ease-in-out;
}
.cta__button--btn-tertiary a:hover .btn-txt:before {
  width: 100%;
}
.cta__button--btn-primary a:before,
.cta__button--btn-secondary a:before{
  position: absolute;
  content: "";
  z-index: 1;
  display: block;
  inset: 0;
  clip-path: circle(0% at 100% 100%);
  transition: clip-path 0.5s ease;
  transition: clip-path 500ms ease-in-out;
}
.cta__button--btn-primary a:hover:before,
.cta__button--btn-secondary a:hover:before{
  clip-path: circle(150% at 100% 100%);
}
.cta__link .btn-txt,
.cta__button--outline-white a {
  position: relative;
  z-index: 1;

  transition: all 500ms ease-in-out;
}
.cta__button--btn-primary a svg,
.cta__button--btn-secondary a svg,
.cta__button--btn-tertiary a svg,
.cta__button--outline-white a svg{
  /*   width: 24px;
  height: 24px; */
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cta__button--btn-primary a svg path,
.cta__button--btn-secondary a svg path,
.cta__button--btn-tertiary a svg path,
.cta__button--outline-white a svg path{
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;

  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.cta__button.cta__button--btn-tertiary a.icn-left {
  padding: 0;
  padding: 12px 0 12px 40px;
}
.cta__button.cta__button--btn-tertiary a.icn-right {
  padding: 0;
  padding: 12px 40px 12px 0;
}
.cta__button.sm .cta__link {
  padding: 6.5px 22.5px 6.5px 22.5px;
}
.cta__button.sm.cta__button--btn-tertiary a.icn-left {
  padding: 6.5px 0 6.5px 40px;
}
.cta__button.sm.cta__button--btn-tertiary a.icn-right {
  padding: 6.5px 40px 6.5px 0;
}
.cta__button.sm.cta__button--btn-tertiary a {
  font-size: 16px;
}
.cta__button.sm.cta__button--btn-tertiary a svg {
  width: 13px;
}
.cta__button.cta__button--btn-tertiary a.icn-left svg {
  position: absolute;
  left: 16px;
  transition: all 300ms ease-in-out;
}
.cta__button.cta__button--btn-tertiary a.icn-right svg {
  position: absolute;
  right: 16px;
  transition: all 300ms ease-in-out;
}
.cta__button.cta__button--btn-tertiary a.icn-right:hover svg {
  right: 8px;
}
@media (max-width: 1024px) {
  .cta__button--btn-primary a,
  .cta__button--btn-secondary a,
  .cta__button--btn-tertiary a,
  .cta__button--outline-white a {
    /*     font-size: 15px; */
  }
  .cta__button--btn-primary a svg, 
  .cta__button--btn-secondary a svg, 
  .cta__button--btn-tertiary a svg,
  .cta__button--outline-white a svg {
    /*     width: 15px; */
  }
}


.swiper-controls .swiper-button-next, 
.swiper-controls .swiper-button-prev {
  position: relative;
  margin: 0;
  top: 0;
  height: 40px;
  width: 40px;
  background: transparent;
  transform: none;
  left: 0;
}
.swiper-controls .swiper-button-next:after, 
.swiper-controls .swiper-button-prev:after {
  display: none;
}
.swiper-controls {
  align-items: center;
  display: flex;
  gap: 8px;
}
/* Form */
input::-webkit-input-placeholder {
  color: var(--primary);
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
input::-moz-placeholder {
  color: var(--primary);
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
input:-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
input::-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
select:focus, 
select:focus-visible {
  outline: none;
}
.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: 17px 24px;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
  backdrop-filter: blur(24px);
}
form select {
  background-image: url(https://41345211.fs1.hubspotusercontent-na1.net/hubfs/41345211/Fentress_December2025/images/arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px 6px;
  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;
}
@media(max-width: 767px) {
  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;
}
@media(max-width:991px) {
  .hs-form-field {
    margin-bottom: 24px;
  } 
}
/* Labels */
.hs-form label {
  display: block;
  margin-bottom: 0.35rem;
  text-transform: capitalize;
}
.hs-form label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: ;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 4px;
  text-transform: capitalize;
}
.hs-form-field > label {
  margin-bottom: 4px;
}
.inputs-list.hs-error-msgs label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: .5rem;
  color: #f00;
}
.hs-error-msgs label {
  color: #f00;
}
/* Help text - legends */
form legend {
  font-size: 0.875rem;
}
/* Inputs */
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: 42px;
  padding: 2px 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  box-sizing: border-box;
  outline: none;
}
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;
}
.hs-form label.hs-form-checkbox-display,
.hs-form label.hs-form-radio-display {
  position: relative;
  display: flex;
}
form fieldset .hs-input[type=checkbox], 
form fieldset .hs-input[type=radio] {
  width: 16px !important;
  height: 16px;
  border: 1px solid var(--secondary);
  -webkit-appearance: none;
  flex-shrink: 0;
  margin: 3px 8px 3px 0px;
}
form fieldset .hs-input[type=radio] {
  border-radius: 50%;
}
form fieldset .hs-input[type=checkbox] ~ span:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--secondary);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}
form fieldset .hs-input[type=checkbox]:checked ~ span:after {
  display: block;
}
form fieldset .hs-input[type=radio] ~ span:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 10px;
  height: 10px;
  display: none;
  background-color: var(--secondary);
  border-radius: 50%;
}
form fieldset .hs-input[type=radio]:checked ~ span:after {
  display: block;
}

textarea.hs-input {
  min-height: 124px;
  padding: 2px 12px;
}
/* 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: 1px;
}
.hs-input.invalid.error {
  border-color: #ff2a00;
}
.hs-error-msg {
  color: #ff2a00;
  margin-top: 0.35rem;
}
.hs-error-msgs label {
  color: #f00;
}
/* Submit button */
form input[type=submit],
form .hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: normal;
  border-style: solid;
  border-width: 1px;
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  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
*/

:focus-visible {
  outline: none;
}
body.pop_open {
  overflow: hidden;
}
body.popup-open {
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.header_sticky {
  position: sticky;
  top: 0;
  z-index: 11;
}

.header_sticky header.custom-header {
  position: relative;
}
body.pop-act {
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0000);
  white-space: nowrap;
  border: 0;
}
.hs-landing-pg .hs_cos_wrapper_type_linked_image img {
  margin-bottom: 15px;
}
.close-icon-wrp .close:after,
.close-icon-wrp .close:before {
  height: 3.5px;
  width: 44px;
  background-color: #000;
  transition: 0.3s;
}
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0px 0px 30px 30px;
  box-shadow: 0px 4px 20px 0px #4D0D6533;
}
.header__container {
  max-width: 1430px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
.custom-logo img {
  /*     width: 131px !important; */
}
.header-bottom-in {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  column-gap: 32px;
}
.close-icon-wrp,
.mobile-trigger {
  align-items: center;
  cursor: pointer;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
  position: relative;
  padding: 29.5px 0;
  line-height: normal;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
  display: inline-block;
  position: relative;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a:before {
  position: absolute;
  /*     top: 50%; */
  bottom: 0;
  margin-top: 10px;
  height: 1px;
  width: 0%;
  z-index: 3;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li > a:before {
  content: "";
  height: 1px;
  margin-top: 10px;
  position: absolute;
  top: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 0;
  z-index: 3;
  left: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3333333333;
  text-decoration: none;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul li {
  line-height: normal;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li > a:after {
  border-color: transparent;
  bottom: 4px;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li:hover > a:after {
  border-color: transparent transparent #1c9ad6;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li a {
  display: inline-block;
  position: relative;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  overflow: hidden;
  overflow-x: auto;
}
body.no-banner {
  /*     margin-top: 83px; */
}
body.mobile-open {
  overflow: hidden;
}
.hs-cta-embed a {
  display: inline-block;
}
.custom-header .advanced-button .cta-group {
  margin-top: 0;
}
.header-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-search {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}
.header-search > div {
  width: 100%;
}
body.search-open .header-search {
  width: 312px;
}
.header-search:hover {
  border: 2px solid #A685B2;
}
.header-search .hs-search-field__form {
  display: block;
}
.header-search .hs-search-field__button {
  display: none;
}
.header-search .hs-search-field__input {
  width: 100%;
  height: 32px;
  border: none;
  /*   background: red; */
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  z-index: 1;
  position: relative;
  display: block;
  padding: 0 10px;
  pointer-events: none;
  transition: all 500ms ease-in-out;
}
body.search-open .header-search .hs-search-field__input {
  padding: 0 10px 0 35px;
  pointer-events: auto;
}
.header-search button.search-submit {
  position: absolute;
  top: 8px;
  left: 9px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  z-index: 1;
  width: 16px;
  height: 16px;
  line-height: 0;
  transition: all 500ms ease-in-out;
}
body.search-open .header-search button.search-submit {
  left: 10px;
  transition: translate 500ms ease-in-out;
}
.header-search .hs-search-field__bar button svg {
  width: 16px;
  height: 16px;
}
.header-search .hs-search-field__bar button svg path {
  fill: var(--secondary);
}
.header-search .hs-search-field__input:focus,
.custom-menu-mobile-in .hs-search-field__input:focus {
  outline-style: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: 0;
}
svg.srch-btn {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  z-index: 2;
}
body.search-open .header-search svg.srch-btn {
  opacity: 0;
}
.custom-menu-mobile-in .hs-search-field {
  margin-bottom: 12px;
}
.hs-search-field--open .hs-search-field__suggestions, 
.inpage-editor-active-field .hs-search-field__suggestions {
  z-index: 1;
}
.header-button-mobile {
  margin-top: 16px;
}
.header-button-mobile .cta__button {
  width: 100%;
}
.header-button-mobile .cta__link {
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .header-button-mobile {
    display: none;
  }
}
@media (min-width: 1025px) {
  .child-trigger {
    /*     position: absolute;
    top: 36px;
    right: 0;
    line-height: 0; */
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .child-trigger svg {
    width: 10px;
    height: 5px;
  }
  .custom-header.lp-header .header-bottom-in {
    padding: 18px 0 17px;
  }
  .mobile-trigger,
  .mobile-menu {
    display: none !important;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
    display: flex;
    align-items: center;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:after {
    bottom: -31px;
    content: "";
    height: 38px;
    left: 0;
    /*     pointer-events: none; */
    position: absolute;
    right: 0;
    width: 100%;
  }
  /*   .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.active-branch > a:before,
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.active > a:before, */
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover > a:before{
    left: 0;
    width: 100%;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul {
    list-style: none;
    margin: 0;
    padding: 16px;
    position: absolute;
    left: 0;
    width: 232px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s;
    top: 100%;
    transform: translateY(-12px);
    z-index: 2;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 4px);
    transform: translateY(0);
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul li:not(:last-child) {
    margin-bottom: 12px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li.active > a:before,
  .custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li:hover > a:before {
    left: 0;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .bg-overlay {
    display: none;
  }
}
@media (max-width: 1200px) and (min-width: 1025px)  {
  .custom-logo img {
    width: 200px !important;
  }
  .header-button {
    gap: 15px;
  }
  body.search-open .header-search {
    width: 200px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul {
    column-gap: 18px;
  }
}
@media (max-width: 1140px) and (min-width: 1025px)  {
  body.search-open .header-search {
    width: 160px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul {
    column-gap: 15px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper ul li a {
    font-size: 15px;
  }
  .header-button .cta__link {
    font-size: 16px;
    padding: 9px 20px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .header__container {
    padding-right: 76px;
  }
  body.mobile-open .header__container {
    padding-right: 92px;
  }
}
@media (max-width: 1024px) {
  body.mobile-open .custom-header {
    border-radius: 0;
  }
  .custom-header {
    border-radius: 0px 0px 24px 24px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper ul li a {
    display: block;
    display: inline-block;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.active > a:before {
    left: 0;
    width: 100%;
  }
  body.no-banner {
    /* 	   margin-top: 87px; */
  }
  .custom-header {
    padding: 18px 0;
  }
  .menu-dsk {
    display: none !important;
  }
  .header-bottom-in {
    /*     flex-direction: column; */
  }
  .custom-logo {
    margin-right: auto;
  }
  .mobile-trigger {
    border-radius: 0;
    cursor: pointer;
    height: 25px;
    position: relative;
    transition-duration: .5s;
    width: 32px;
    border: none;
    position: absolute;
    top: 23px;
    top: 29px;
    right: 24px;
    display: block;
    line-height: 40px;
    margin: 0;
    padding: 0;
    background: transparent;
    transition: none;
  }  
  .mobile-trigger-close {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border-radius: 8px;
    top: 18px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body.mobile-open .mobile-trigger-close {
    opacity: 1;
    visibility: visible;
  }
  body.mobile-open .mobile-trigger:not(.mobile-trigger-close) {
    opacity: 0;
    visibility: hidden;
  }
  .mobile-trigger .icon {
    background-color: var(--white);
    height: 3px;
    position: absolute;
    transition-duration: .5s;
    width: 32px;
    top: 11px;
    display: block;
  }
  .mobile-trigger-close .icon {
    width: 24px;
    top: 12px;
    left: 5px;
  }
  .mobile-trigger .icon:after, .mobile-trigger .icon:before {
    background-color: var(--white);
    content: "";
    height: 3px;
    position: absolute;
    transition-duration: .5s;
    width: 32px;
    display: block;
  }
  .mobile-trigger-close .icon:after, 
  .mobile-trigger-close .icon:before {
    background-color: var(--white);
    content: "";
    height: 3px;
    position: absolute;
    transition-duration: .5s;
    display: block;
    width: 24px;
  }
  body.mobile-open .mobile-trigger .icon:after,
  body.mobile-open .mobile-trigger .icon:before {
    background-color: var(--secondary);
  }
  .mobile-trigger .icon:before {
    top: -11px;
  }
  .mobile-trigger-close .icon:before {
    top: 4px;
  }
  .mobile-trigger .icon:after {
    top: 12px;
  }
  .mobile-trigger-close .icon:after {
    top: 13px;
  }
  .mobile-trigger:focus,
  .mobile-trigger:hover {
    border: none;
  }
  .mobile-trigger:focus,
  .mobile-trigger:not(.mobile-trigger-close):hover {
    border: none;
    background: transparent;
  }
  .mobile-open .mobile-trigger .icon {
    background: transparent;
    transition-duration: .5s;
  }
  .mobile-open .mobile-trigger-close .icon:before {
    transform: rotate(45deg) scaleX(1) translate(9px, -0.5px);
  }
  .mobile-open .mobile-trigger-close .icon:after {
    transform: rotate(-45deg) scaleX(1) translate(7px, 2.5px);
  }
  .header-search {
    display: none;
  }
  .custom-menu-primary.desktop {
    width: 100%;
    display: none;
  }
  .custom-menu-primary.desktop-menu {
    display: none !important;
  }
  .custom-menu-mobile-in {
    padding: 72px 123px 48px 125px;
    overflow-y: auto;
    max-height: calc(100vh - 84px);
    height: 100%;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul {
    flex-direction: column;
    row-gap: 12px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper ul li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33333333;
    text-decoration: none;
  }  
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
    padding: 0;
    position: relative;
    width: 100%;
    padding: 12px 24px 12px 12px;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul {
    border: none;
    display: block;
    display: none;
  }
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul li {
    margin: 0;
    padding-top: 16px;
    padding-left: 16px;
  }
  .child-trigger {
    cursor: pointer;
    display: block;
    height: 24px;
    min-width: 24px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 12px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i {
    display: inline-block;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    width: 10px;
    height: 10px;
    transform: rotate(-315deg);
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-315deg);
    transition: 0.3s linear;
  }
  .child-open.child-trigger i {
    transform: translate(-50%, -50%) rotate(-495deg);
  }
  .child-trigger svg {
    width: 10px;
    height: 5px;
    transition: transform 0.3s ease;
  }
  .child-trigger.child-open svg {
    transform: rotate(-180deg);
  }
  .child-trigger {
    text-align: center;
  }
  .bg-overlay,
  .custom-menu-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: none !important;
  }
  .bg-overlay {
    left: 0;
    background-color: #59595b;
    opacity: 0.75;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
  }
  body.mobile-open .bg-overlay {
    visibility: visible;
    pointer-events: auto;
  }
  .custom-menu-mobile {
    overflow: hidden;
    background-color: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    max-width: 472px;
    z-index: 9999;
    transition: 0.5s;
  }
  .mobile-open .custom-menu-mobile {
    transform: translateX(0);
  }
  .custom-menu-primary.mobile {
    padding: 40px 32px 89px;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul {
    display: block;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li {
    margin-bottom: 32px;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:last-child {
    margin-bottom: 0;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.41666666667;
    padding-bottom: 16px;
    text-decoration: none;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper ul ul > li > a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.375;
    padding-bottom: 16px;
    text-decoration: none;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper ul ul > li:last-child > a,
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a {
    padding-bottom: 0;
  }
  .custom-menu-primary.mobile-menu {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    height: 100vh;
    background-color:#4D0D65;
  }
  .custom-menu-primary .hs_cos_wrapper_type_menu {
    /*     height: 100%; */
    display: block;
  }  
  .custom-menu-mobile-in button.hs-search-field__button {
    display: none;
  }
  .custom-menu-mobile-in .hs-search-field__input {
    width: 572px;
    min-height: 36px;
    border-radius: 8px;
    border: 1px solid #FAF9FD;
    padding: 0 36px;
    background-color: transparent;
    color: #ffffff;
  }
  .custom-menu-mobile-in .search-submit {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 0;
  }
  .custom-menu-mobile-in .search-submit svg {
    width: 16px;
    height: 16px;
  }
  .custom-menu-mobile-in .search-submit svg path {
    fill: #ffffff;
  }
}
@media (max-width: 767px) {
  .mobile-trigger {
    top: 24px;
  }  
  .mobile-trigger-close {
    top: 14px;
  }
  .header-button {
    display: none !important;
  }
  .custom-header {
    border-radius: 0px 0px 12px 12px;
  }
  .custom-logo img {
    width: 193px !important;
  }
  .header__container {
    padding: 0 20px;
  }
  .mobile-trigger {
    right: 20px;
  }
  .custom-menu-primary.mobile-menu {
    top: 74px;
  }
  .custom-menu-mobile-in {
    padding: 56px 20px 48px;
    max-height: calc(100vh - 96px);
  }
}
.footer {
  position: relative;
  z-index: 2;
}
.footer-top {
  padding: 36px 0;
}
.footer-info-wrap {
  width: calc(56% - 12px);
}
.footer-menu {
  width: calc(44% - 12px);
}
.footer-info {
  border-width: 4px;
  border-style: solid;
  border-radius: 24px 0 24px 0;
  padding: 20px;
}
.footer-top .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-menu .hs-menu-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row !important;
}
.footer-menu .hs-menu-wrapper > ul > li {
  line-height: normal; 
  width: 50%;
  padding: 16px;
}
.footer-menu .hs-menu-wrapper > ul > li > a {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.77;
  display: inline-block;
  margin-bottom: 12px;
  cursor: unset;
  text-decoration: none;
}
.footer-menu .hs-menu-wrapper ul ul {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.footer-menu .hs-menu-wrapper ul ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.footer-menu .hs-menu-wrapper ul ul li a:before {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 1px;
  width: 0%;
  z-index: 3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
}
.footer-menu .hs-menu-wrapper ul ul li a:hover:before {
  width: 100%;
}
.footer-menu .hs-menu-wrapper ul li a:hover {
  text-decoration: none;
}
.row-top {
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
}
.footer-social-btn {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom {
  padding: 36px 0;
}
.row-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top-width: 4px;
  border-top-style: solid;
}
.copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.333;
}
.privacy_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.333;
}
.privacy_text a {
  position: relative;
  text-decoration: none;
}
.privacy_text a:before {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 1px;
  width: 0%;
  z-index: 3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
}
.privacy_text a:hover:before {
  width: 100%;
}
.footer-logo img {
  width: 275px !important;
}
@media (max-width: 1024px) {
  .footer-top .row {
    gap: 14px;
  }
  .footer-info-wrap,
  .footer-menu {
    width: calc(50% - 7px);
  }
  .footer-info__col--media {
    display: none;
  }
  .footer-info__col {
    width: 100%;
  }
  .footer-bottom .content-wrapper {
    max-width: 748px;
  }
  .footer,
  .footer-bottom {
    border-radius: 30px 30px 0 0 !important;
  }
}
@media(max-width: 767px) {
  .footer-top .row {
    gap: 24px;
  }
  .footer-top {
    padding: 36px 0;
    padding-top: 0;
  }
  .footer-bottom {
    padding: 36px 0;
  }
  .footer-info-wrap,
  .footer-menu {
    width: 100%;
  }
  .row-top {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .footer-social-btn,
  .row-bottom {
    flex-direction: column;
  }
  .footer-social-btn {
    flex-direction: column-reverse;
    width: 100%;
  }
  .footer-btn {
    width: 100%;
  }
  .footer-top .row {
    flex-direction: column-reverse;
  }
  .row-top {
    padding-bottom: 24px;
  }
  .row-bottom {
    padding-top: 24px;
    gap: 12px;
    justify-content: flex-start;
  }
  .privacy_text,
  .copyright {
    width: 100%;
  }
  .footer-logo img {
    width: 350px !important;
  }
  .footer-bottom .advanced-button .cta-group {
    justify-content: center;
  }
  .footer-bottom .advanced-button .cta-group .cta__button {
    width: 100%;
  }
  .footer-bottom .advanced-button .cta-group .cta__button .cta__link {
    width: 100%;
    justify-content: center;
  }
}
/* 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;
  }
}