/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

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

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

/* 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 {
  font-family: DINNextLTPro;
  font-weight: 400;
  line-height: 1.4;
  overflow-wrap: break-word;
  scroll-behavior: smooth; /* smooth page scrolling */
}

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

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

/* Paragraphs */

p {
  font-weight: 400 !important;
  text-transform: none !important;
  font-family: DINNextLTPro;
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  transition: all .15s linear;
}

/* Eyebrow */

.eyebrow {
  position: relative;
  font-family: DINNextLTPro;
  color: #5187A3;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 16px;
  margin-left: 60px;
}
.eyebrow:before {
  content: ".";
  font-size: 0px;
  position: absolute;
  left:auto;
  margin-left: -60px;
  width: 43px;
  height: 17.5px;
  background: url(https://8842240.fs1.hubspotusercontent-na1.net/hubfs/8842240/Dagard-2025-website/icons/eyebrow.svg)
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button.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;
}


a.button,
button.button,
.hs-button,
.btn {
  position: relative;
  border-radius: 10px !important;
  background: #ACE600 !important;
  white-space: normal;
  display: flex;
  padding: 16px 30px !important;
  border: 2px solid transparent !important;
/*   justify-content: center; */
  align-items: center;
  gap: 10px;
  color: #34373B !important;
  font-family: DINNextLTPro !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 100% !important; /* 22px */
  text-transform: inherit;
  text-decoration: none !important;
  place-self: flex-start !important;
  min-height: 56px !important;
  transition: all 0.15s linear !important;
  width: fit-content !important;
  z-index: 1;
  transition: .4s;
  overflow: hidden;
}
button.button:hover,
button.button:focus,
button.button:active,
a.button:hover,
a.button:focus,
a.button:active,
.hs-button:hover,
.hs-button:focus,
.hs-button:active,
.btn:hover,
.btn:focus,
.btn:active {
  font-family: DINNextLTPro !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  padding: 16px 30px !important;
  border: 2px solid transparent !important;
  border-radius: 10px !important;
/*   background: #8DD700 !important; */
}

button.button::after,
a.button::after,
.hs-button::after,
.btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #8DD700;
  left: 0;
  bottom: -150%;
  z-index: -1;
  transition: .4s;
/*   clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 51% 75%, 0% 75%, 0% 25%); */
  clip-path: polygon(50% 25%, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
  transform: scale(2);
}

button.button:hover::after,
a.button:hover::after,
.hs-button:hover::after,
.btn:hover::after {
  bottom: 0;
  border-radius: 0px;
  transition: .4s;
}

.btn.primary {
  background: #ACE600 !important;
  color: #34373B !important;
}
.btn.primary:hover,
.btn.primary:focus,
.btn.primary:active {
  background: #8DD700 !important;
  border: 2px solid transparent !important;
/*   padding: 16px 30px !important; */
}

.btn.secondary {
  background: transparent !important;
  color: #34373B !important;
  border-radius: 10px;
  border: 2px solid #ACE600 !important;
}
.btn.secondary:hover,
.btn.secondary:focus,
.btn.secondary:active {
  background: #8DD700 !important;
  border: 2px solid transparent !important;
/*   padding: 16px 30px !important; */
}

.text-link {
  color: #1E5D85;
  font-family: DINNextLTPro;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 26.4px */
  margin-top: auto;
  text-transform: uppercase;
  transition: all .15s linear;
}
.text-link:hover {
  color: #8DD700;
  font-weight: 500;
}

.text-link_icon {
  color: #000;
  font-family: DINNextLTPro;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  margin-top: auto;
  text-transform: uppercase;
  transition: all .15s linear;
}
.text-link_icon:hover {
  color: #8DD700;
  font-weight: 400;
}

.text-link_animated-left-icon {
  color: #000;
  font-family: DINNextLTPro;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  margin-top: auto;
  text-transform: capitalize;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  transition: all .15s linear;
  margin-left: 60px;
}
.text-link_animated-left-icon:before {
  content: "";
  position: absolute;
  left: -72px;
  top: 50%;
  transform: translateY(-50%);
  background: url(https://8842240.fs1.hubspotusercontent-na1.net/hubfs/8842240/Dagard-2025-website/icons/eyebrow.svg);
  transition: left 0.3s ease;
  width: 44px;
  height: 18px;
}
.text-link_animated-left-icon:hover {
  left: 12px;
  color: #000;
  font-family: DINNextLTPro;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  text-decoration: none;
  transition: left 0.3s ease;
}

.learn-more-link_icon {
  position: relative;
  width: fit-content;
  color: #1E5D85;
  font-family: DINNextLTPro;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  text-transform: inherit;
  transition: all .15s linear;
  text-decoration: none;
}
.learn-more-link_icon:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 4px;
  background: url(https://8842240.fs1.hubspotusercontent-na1.net/hubfs/8842240/Dagard-2025-website/icons/arrow_back_ios.svg);
  transition: left 0.3s ease;
  width: 6.5px;
  height: 12px;
}
.learn-more-link_icon:hover {
  color: #ACE600;
  font-weight: 400;
  text-decoration: none;
}
.learn-more-link_icon:hover:after {
  background: url(https://8842240.fs1.hubspotusercontent-na1.net/hubfs/8842240/Dagard-2025-website/icons/arrow_back_ios_green.svg);
}

.menu-product-link,
.menu-product-link:hover {
  color: #000;
  font-family: DINNextLTPro;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  text-transform: inherit;
  transition: all .15s linear;
  text-decoration: none;
}

.footer-links,
.footer-links:hover {
  color: #1E5D85;
  font-family: DINNextLTPro;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 26.4px */
  text-decoration: none;
}
.footer-links:hover {
  color: #ACE600;
}
/* Fields */

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

/* Labels */

form label {
  font-family: DINNextLTPro;
  font-weight: 400;
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

form .legal-consent-container {
  font-family: 'DINNextLTPro';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 1rem;
  padding: 0.7rem !important;
  width: 100%;
  font-family: DINNextLTPro;
  font-weight: 400;
  
  border-radius: 10px;
  border: 0px;
  border-bottom: 1px solid #C1C7CD;
  background: #F2F4F8;
  width: 100% !important;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form fieldset .hs-fieldtype-booleancheckbox {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
form fieldset .hs-fieldtype-booleancheckbox legend {
  color: #1E5D85;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

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

/* Headings and text */

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

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

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

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

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

/* Header container */

main {
  overflow: hidden;
}

@media (max-width: 1000px) {
  main {
/*     padding-top: 3.125rem; */
    padding-top: 3.125rem;
  }
}

header.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  padding: 18px 20px;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 4px 9.2px 0 rgba(211, 211, 211, 0.25);
}

.header.fixed {
  border-bottom: 3px solid #FBF6FF;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 650;
}
.header.fixed .header__top {
  display: none;
}

.header__logo {
  flex: none;
  margin-right: 80px;
}

@media (max-width: 1225px) {
  .header__logo {
    margin-right: 0;
  }
}

.header__container {
  display: flex;
  position: relative;  
  width: 100%;
  padding: 0;
  justify-content: center;
  align-items: center;
/*   gap: 280px; */
  flex-shrink: 0;
}

.header__container.light {
  justify-content:space-between;
}


.header__column {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  width: 100%;
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__cta .button-wrapper {
  display: flex;
  gap: 23px;
}

.header__column .hs-menu-item {
  margin-bottom: 0;
}

.header__column ul li.hs-menu-item:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #D9D9D9;
}

.header__column .hs-menu-item > a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  text-decoration: underline;
  transition: all 0.2s ease-out;
}

.header__column .hs-menu-item > a:hover {
  text-decoration: none;
  transition: all 0.2s ease-in;
}

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

@media (max-width: 767px) {
  .header__column {
    position: relative;
  }
}

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

/* Search bar */

.header__search {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-right: 44px;
  margin-left: 44px;
  position: relative;
}

.header__search .header--cta-links {
  position: absolute; 
  width: auto;
  right: 39px;
}

.header__search.open .header--cta-links {
  visibility: hidden;
}

.header__search .header--cta-links ul {
  width: max-content;
}

.header__search .hs-search-field {
/*   margin-left: 23px; */
  display: none;
}
.header__search .hs-search-field form {
  padding: 0;
  background: transparent;
}

.header__search .hs-search-field__input {
  border-radius: 0px;
  border: none;
  align-items: center;
  gap: 10px;
  opacity: 0;
  width: 0;
  height: 20px; 
  padding: 0px 30px 4px 10px;
  position: relative;
/*   right: -10px; */
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7; /* 27.2px */
  transition: opacity .25s ease, width .6s ease;
  visibility: collapse;
  display: none;
}

.header__search .search-close-icon {
  background-image: url("https://8842240.fs1.hubspotusercontent-na1.net/hubfs/8842240/Dagard-2025-website/icons/header--toggle-close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 15px;
  display: none; /* Hide close icon by default */  
}

.header__search .search-open-icon {
  background-image: url("https://8550186.fs1.hubspotusercontent-na1.net/hubfs/8550186/SpotDev-2025-Website/search.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  display: block;
  position: relative;
  cursor: pointer;
  border: 0;
  margin: 0;
}

.header__search .hs-search-field__form .hs-search-field__button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_1092_15632)'%3E%3Cpath d='M2.64882 11.5302C3.01614 12.3945 3.5501 13.178 4.22021 13.8359C4.89033 14.4939 5.68347 15.0134 6.55436 15.3648C7.42525 15.7162 8.35683 15.8927 9.29591 15.8841C10.235 15.8755 11.1632 15.682 12.0275 15.3147C12.8918 14.9473 13.6753 14.4134 14.3332 13.7433C14.9912 13.0731 15.5107 12.28 15.8621 11.4091C16.2135 10.5382 16.39 9.60664 16.3814 8.66756C16.3728 7.72848 16.1793 6.80029 15.8119 5.93598C15.4446 5.07168 14.9107 4.28818 14.2406 3.63024C13.5704 2.97229 12.7773 2.45277 11.9064 2.10135C11.0355 1.74993 10.1039 1.57348 9.16485 1.58209C8.22577 1.59069 7.29758 1.78418 6.43328 2.1515C5.56897 2.51882 4.78548 3.05278 4.12754 3.7229C3.46959 4.39301 2.95008 5.18616 2.59866 6.05705C2.24724 6.92794 2.07079 7.85952 2.0794 8.7986C2.08801 9.73768 2.2815 10.6659 2.64882 11.5302Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.2866 13.7893L19.8329 19.3364' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1092_15632'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.956055 0.459473)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  cursor: pointer;
  border: 0;
  margin: 0;
  display: none; /* Hide close icon by default */  
}

.header__search.open .search-open-icon {
/*   display: none; */
}

.header__search.open .hs-search-field__input {
  display: flex;
  background: transparent;  
  width: 220px !important;
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease, width .6s ease;  
  border-bottom: 1px solid #F3960D;
  border-radius: 0px;
}
.header__search.open .hs-search-field__input:focus {
  outline-color: transparent;
  outline: none;
}

.header__search.open .search-close-icon {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 0px;
  cursor: pointer;
  border: 0;
  margin: 0;
}

.header__search.open .hs-search-field__button {
  display: block;
}

.header__search .hs-search-field--open .hs-search-field__input {
  max-width: 100%;
}

.header__search .hs-search-field__suggestions-container {
  display: none;
}

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

.mobile-nav {
  display: none;
}

/* Mobile toggles */

@media (max-width: 1330px) {
  .header__logo {
    margin-right: 0;
  }
}
@media (max-width: 1190px) {
  main {
/*     padding-top: 86px; */
    padding-top: 0px;
  }
  header.header {
    padding: 18px 0px 28px 0px;
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
  .header__top,
  .header__cta {
    display: none;
  }
  .header__container {
    height: 3.75rem;
  }
  
  .header__logo {
    padding-left: 20px;
  }
  
  .header__column {
    justify-content: end;
  }
  
  .header__navigation,
  .header__search {
    display: none;
    width: 100%;
  }

  .header__navigation.open {
    display: none;
  }
 
  .header__navigation--toggle {
    cursor: pointer;
    position: relative;
    margin-left: 13px;
  }
  
  .header__close--toggle {
    cursor: pointer;
    position: relative;
  }

  .header__navigation--toggle.hide {
    display: block;
  }
  
  .header__bottom {
    margin-top: 15px;
  }
  
  .mobile-nav.open {
    background: #FFFFFF;
    display: flex;
    top: 73px;
    position: absolute;
    flex-direction: column;
    left: 0;
    right: 0;
    height: calc(100vh - 46px);
    overflow: auto;  
    padding: 45px 16px;
  }

  .header__navigation--toggle.open {
    display: none;
    margin-left: 0;
    margin-right: auto;
  }
  
  .header__navigation--toggle {
    background-image: url("https://8842240.fs1.hubspotusercontent-na1.net/hubfs/8842240/Dagard-2025-website/icons/header--toggle.svg");
    background-size: cover;
    height: 18px;
    width: 24px;
    margin-right: 20px;
  }

  .header__close--toggle {
    background-image: url("https://8842240.fs1.hubspotusercontent-na1.net/hubfs/8842240/Dagard-2025-website/icons/header--toggle-close.svg");
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 18px;
    margin-right: 20px;
    width: 18px;
  }

  .header__close--toggle.show {
    display: block;
    margin-left: 13px;
  }
  
  .mobile-nav .mobile-links {
    padding-top: 36px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 40px;
  }
  
  .mobile-nav .mobile-links ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;    
  }

  .mobile-nav .mobile-links a {
    color: #0C0320;
    font-size: 20px;
    font-weight: 300;
    line-height: 120%; /* 24px */
    letter-spacing: -0.3px;
    text-decoration: underline;
  }

  .mobile-nav .mobile-links a:hover {
    color: #0C0320;  
    text-decoration: none;
  }  
  
  .mobile-nav .mobile-search-input {
    border-bottom: 1px solid rgba(12, 3, 32, 0.25);      
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 36px;
    display: none;
  }
  
  .mobile-nav .mobile-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding-top: 33px;
  }
  .mobile-nav .mobile-cta .button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .mobile-nav .mobile-cta .button-wrapper a,
  .mobile-nav .mobile-cta .button-wrapper button {
    width: 250px !important;
    justify-content: center;
  }
  
  .mobile-nav .mobile-cta a {
/*     display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    width: 100%;
    right: 0; */
  }
  
  .mobile-search-input .hs-search-field__input {
    border-radius: 8px;
    border: 1px solid #F4F2F7;
    background: #F4F2F7;
    padding: 12px 17px;
    padding-left: 47px;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7; /* 27.2px */
  }
  
  .mobile-search-input .hs-search-field__button {
    bottom: 0;
    left: 10px;
    position: absolute;
    top: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_1092_15632)'%3E%3Cpath d='M2.64882 11.5302C3.01614 12.3945 3.5501 13.178 4.22021 13.8359C4.89033 14.4939 5.68347 15.0134 6.55436 15.3648C7.42525 15.7162 8.35683 15.8927 9.29591 15.8841C10.235 15.8755 11.1632 15.682 12.0275 15.3147C12.8918 14.9473 13.6753 14.4134 14.3332 13.7433C14.9912 13.0731 15.5107 12.28 15.8621 11.4091C16.2135 10.5382 16.39 9.60664 16.3814 8.66756C16.3728 7.72848 16.1793 6.80029 15.8119 5.93598C15.4446 5.07168 14.9107 4.28818 14.2406 3.63024C13.5704 2.97229 12.7773 2.45277 11.9064 2.10135C11.0355 1.74993 10.1039 1.57348 9.16485 1.58209C8.22577 1.59069 7.29758 1.78418 6.43328 2.1515C5.56897 2.51882 4.78548 3.05278 4.12754 3.7229C3.46959 4.39301 2.95008 5.18616 2.59866 6.05705C2.24724 6.92794 2.07079 7.85952 2.0794 8.7986C2.08801 9.73768 2.2815 10.6659 2.64882 11.5302Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.2866 13.7893L19.8329 19.3364' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1092_15632'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.956055 0.459473)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border: 0;
    cursor: pointer;
    margin: 0;
  }
  
  .mobile-search-input .hs-search-field__suggestions-container {
    display: none;
  }
  
}




.header__bottom {
  display: flex;
  background: transparent;
  transition: all 0.30s linear;
}
.header__bottom .header__bottom-wrapper {
  max-width: 1400px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  gap: 24px;
}
.header__search--bottom.open {
  padding: 20px 0px;
      margin: 0;
}

.header__search--bottom button,
.header__search--bottom button:hover,
.header__search--bottom button:active,
.header__search--bottom button:focus {
  display: none;
  
  border-radius: 4px;
  border: 2px solid #F3960D;
  color: #F3960D;
  background-color: transparent;
  font-family: DINNextLTPro;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 20px */
  text-transform: uppercase;
  margin: 0;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.header__search--bottom button:hover,
.header__search--bottom button:active,
.header__search--bottom button:focus {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.header__search--bottom.open button {
  display: block;
}
.header__search--bottom.open form {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.header__search--bottom.open .hs-search-field {
  display: block;
}
.header__search--bottom.open .hs-search-field__input {
  height: 52px;
  color: #FFF;
  font-family: DINNextLTPro;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  width: 410px !important;
  border-bottom: 1px solid #FFF;
  padding: 0px 35px 0px 40px;
}
.header__search--bottom.open .search-close-icon {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 36px;
  bottom: 0;
  right: 155px;
  cursor: pointer;
  border: 0;
  margin: 0;
  background-image: url(https://8550186.fs1.hubspotusercontent-na1.net/hubfs/8550186/SpotDev-2025-Website/search-close-btn.svg);
  background-size: 15px 15px;
}

.header__search--bottom .search-open-icon {
  display: none;
}
.header__search--bottom.open .search-open-icon {
  display: block;
  position: absolute;
}
.header__search--bottom .hs-search-field__suggestions {
  display: none;
}



.mobile-search {
  display: none;
}
@media (max-width: 1190px) {
  .mobile-search,
  .mobile-search .header__search--mobile,
  .mobile-search .header__search--mobile .search-open-icon {
    display: block;
  }
  .mobile-search {
    width: 80px;
  }
  
  .header__bottom.open .header__search,
  .header__bottom.open .header__search--bottom .search-open-icon,
  .header__bottom.open .header__search .hs-search-field,
  .header__bottom.open .header__search .search-close-icon,
  .header__bottom.open .header__search .hs-search-field__input {
    display: block;
  }
  .header__bottom.open .header__search {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 52px;
    margin: 0 20px 0 0;
    gap: 0;
  }
  .header__bottom.open .header__search .hs-search-field form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
  }
  .header__bottom.open .header__search .hs-search-field__input {
    height: 52px;
    color: #FFF;
    font-family: DINNextLTPro;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    max-width: 295px !important;
    width: 100% !important;
    border-bottom: 1px solid #FFF;
    padding: 0px 35px 0px 45px;
    visibility: visible;
    opacity: 1;
    background: transparent;
  }
  .header__bottom.open .header__search .hs-search-field__input:focus {
    outline-style: none;
  }
  .header__bottom.open .header__search .search-open-icon {
    position: absolute;
    background-image: url(https://8550186.fs1.hubspotusercontent-na1.net/hubfs/8550186/SpotDev-2025-Website/search.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    height: 20px;
    width: 22px;
    display: block;
    position: relative;
    cursor: pointer;
    border: 0;
    margin: 0 0 0 10px;
    left: 20px;
  }
  .header__bottom.open .header__search .search-close-icon {
    width: 15px;
    height: 15px;
    position: absolute;
/*     top: 36px;
    bottom: 0; */
    right: 155px;
    cursor: pointer;
    border: 0;
    margin: 0;
    background-image: url(https://8550186.fs1.hubspotusercontent-na1.net/hubfs/8550186/SpotDev-2025-Website/search-close-btn.svg);
    background-size: 15px 15px;
  }
}
/* Footer */
.footer {
  margin: 100px 20px 30px 20px;
}
.footer__container {
  border-radius: 20px;
  background: #F2F4F6;
  padding: 60px 0px 30px 0px;
}

/* top section */
.footer-top {
  display:flex;
  gap:48px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
  border-bottom:1px solid #ffffff;
  padding: 0px 66px 37px 66px;
}

.footer-top .brand{
/*   min-width:280px; */
  max-width:480px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* Logo row */
.footer-top .logo-row{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.12em;
}

.footer-top .logo-row img {
  max-width: 100%;
  width: auto;
}

.footer-top .contact-row {
  display:flex;gap:12px;flex-wrap:wrap
}

.footer-top .address, 
.footer-top .phone {
  color: #34373B;
  font-family: DINNextLTPro;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  padding-bottom: 12px;
}

.footer-top .phone{
  display:flex;align-items:center;gap:10px;
}
.footer-top .phone a,
.footer-top .phone a:hover,
.footer-top .phone a:focus {
  text-decoration: none;
  color: #1E5D85;
}
.footer-top .phone svg{flex:0 0 auto}

/* link columns */
.link-columns{
  display:flex;
  gap:48px;
  flex-wrap:wrap;
/*   min-width:320px; */
}
.link-columns .col{
  min-width:150px;
  display:flex;flex-direction:column;gap:38px
}

/* bottom strip */
.footer-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 27px 66px 0px 66px;
}
.footer-bottom .copyright{
  color: #34373B;
  font-family: DINNextLTPro;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
.footer-bottom .brandline{
  display:flex;align-items:center;gap:8px;
}

.footer-bottom .social{
  display:flex;gap:12px
}
.footer-bottom .social a {
  width:24px;height:24px;
  display:grid;place-items:center;
}

/* responsiveness */
@media (min-width:768px){
  .footer-bottom .brandline.mobile {
    display: none
  }
}
@media (max-width:767px){
  .footer-top{gap:90px; padding: 0px 18px 46px 18px;}
  .link-columns{
    flex-direction: column;
    gap: 24px;
  }
  .link-columns .col {
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 27px 18px 0px 18px;
  }
  .footer-bottom .brandline.desktop {
    display: none
  }
}
/* 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;
  }
}

/* modules */

.sp-hero-banner {
  display: flex;
  align-items: stretch;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  padding-top: 92px; /* Account for header height */
}
.sp-hero-banner .hd-headline {
  color:#5187A3 !important;
}
.sp-hero-banner .preheading .hd-headline {
  margin-bottom:0 !important;
}

/* Content Section - Left Side */
.sp-hero-banner .content-section {
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
  position: relative;
  z-index: 2;
  width: 100%;
}
.sp-hero-banner .content-wrapper {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.sp-hero-banner .text-block {
  position: relative;
  z-index: 3; /* Higher z-index to appear above SVG overlay */
  max-width: 775px; /* Limit width to keep headline to 3 lines */
}
/* Preheading Section */
.sp-hero-banner .preheading {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  max-width: 700px;
}
.sp-hero-banner .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
/* Heading */
.sp-hero-banner .heading {
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
  max-width: 715px;
}
/* Body Text */
.sp-hero-banner .body {
  margin-bottom: 32px;
  position: relative;
  z-index: 3;
  max-width: 700px;
}
/* Button */
.sp-hero-banner .button {
  margin-top: 32px;
  position: relative;
  z-index: 3;
}
/* Image Section - Right Side */
.sp-hero-banner .image-section {
  flex: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.sp-hero-banner .image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* White SVG Overlay */
.sp-hero-banner .image-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120%; /* Extend width to push SVG more forward */
  height: 105%;
  background-image: url("data:image/svg+xml,%3Csvg width='1172' height='688' viewBox='0 0 1172 688' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.000199017 40.6202C0.000205989 17.9062 18.8915 -0.249693 41.5876 0.651735L1003.94 38.8736C1008.99 39.0742 1013.96 40.2305 1018.58 42.2813L1148.23 99.8245C1162.68 106.24 1172 120.57 1172 136.385V566.244C1172 582.75 1161.86 597.561 1146.47 603.533L1017.94 653.423C1013.73 655.055 1009.28 655.964 1004.77 656.112L41.3086 687.648C18.7164 688.387 5.74798e-06 670.274 1.26862e-05 647.669L0.000199017 40.6202Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  pointer-events: none;
  z-index: 2;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .sp-hero-banner {
    flex-direction: column;
    min-height: auto;
    padding-top: 92px;
  }
  .sp-hero-banner .content-section {
    flex: none;
    padding: 60px 0;
    background-color: #ffffff;
  }
  .sp-hero-banner .content-wrapper {
    padding: 0 40px;
  }
  .sp-hero-banner .text-block {
    max-width: 100%;
  }
  .sp-hero-banner .image-section {
    position: relative;
/*     min-height: 400px; */
  }
  .sp-hero-banner .image-section::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .sp-hero-banner .content-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 1440px) {
  .sp-hero-banner .image-section::after {
    max-height: 666px;
    left: -21%;
  }
}
@media (max-width: 1405px) {
  .sp-hero-banner .image-section::after {
    max-height: 662px;
    left: -21%;
  }
}
@media (min-width: 1400px) {
  .sp-hero-banner .image-section::after {
    left: -22%;
  }
@media (min-width: 1600px) {
  .sp-hero-banner .image-section::after {
    left: -9%;
  }
}
.sp-switchback {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  gap: 40px;
}
.sp-switchback .hd-headline {
  color: #5187A3 !important;
}

.sp-switchback .preheading .hd-headline {
  margin-bottom:0 !important;
}
/* Content Section */
.sp-switchback .content-section {
  width: 100%;
}
.sp-switchback .text-block {
  position: relative;
}
/* Preheading Section */
.sp-switchback .preheading {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.sp-switchback .svg-section {
  flex-shrink: 0;
}
/* Heading */
.sp-switchback .heading {
  margin-bottom: 24px;
}
/* Body Text */
.sp-switchback .body {
  margin-bottom: 32px;
}

/* Image Section */
.sp-switchback .image-section {
  width: 100%;
}

.sp-switchback .image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Tablet and up */
@media (min-width: 481px) {
}

/* Desktop */
@media (min-width: 769px) {
  .sp-switchback {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }

  .sp-switchback .content-section {
    flex: 0 0 auto;
    max-width: 668px;
  }

  .sp-switchback .image-section {
    flex: 0 0 auto;
    max-width: 600px;
  }
}

/* Large desktop */
@media (max-width: 992px) {
  .sp-switchback .text-block {
    margin: 0 20px;
  }
}
.sp-gallery-slider .hd-headline {
  color: #5187A3 !important;
  text-align:center
}
.sp-gallery-slider  .slick-slider {
  padding: 33px 0 !important;
  margin-bottom: 30px !important;
}
.sp-gallery-slider .button-section {
  justify-content: center;
  display: flex;
}
.sp-gallery-slider .preheading {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 3;
}

.sp-gallery-slider .preheading .hd-headline {
  font-size:20px;
  font-weight: 700;
  text-transform: uppercase;
}
.sp-gallery-slider .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
.sp-icon-card .content-section {
  margin: 0 20px;
}
.sp-icon-card .hd-headline {
  color: #5187A3;
  text-align: center;
}
.sp-icon-card .preheading {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 3;
}
.sp-icon-card .content-section .text-block {
  text-align: center;
}
.sp-icon-card .preheading .hd-headline {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.sp-icon-card .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
/* Card container - mobile first (1 column) */
.sp-icon-card .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  padding: 20px 20px;
}
.sp-icon-card .icon-text-section {
  gap: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.sp-icon-card .icon-text-section .hd-headline {
  margin:0;
  color: #1E5D85;
  text-align: left;
}
.sp-icon-card .card p {
  color: #34373B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}
.sp-icon-card .card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 0px;
  border-radius: 20px;
  width: 100%;
  min-height: 295.601px;
}
@media (min-width: 992px) {
  .sp-icon-card .content-section {
    justify-content: center;
    display: flex;
  }
  .sp-icon-card .content-section .text-block {
    width: 1084px;
  }
  .sp-icon-card .content-section {
    margin: 0;
  }
  .sp-icon-card .card-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }
  .sp-icon-card .icon-text-section .hd-headline {
    white-space: nowrap;
  }
}
/* Desktop - 3 columns */
@media (min-width: 1024px) {
  .sp-icon-card .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sp-product-listing .hd-headline {
  color: #5187A3;
  text-align: center;
}
.sp-product-listing .card-image {
  width: 100%;
  height: 220px;
  min-height: 220px; /* Add minimum height */
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
  background-color: #f5f5f5;
  display: flex; /* Add flexbox */
  align-items: center; /* Center content */
  justify-content: center; /* Center content */
}
.sp-product-listing .card-image {
  width: 100%;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
  background-color: #f5f5f5;
}

.sp-product-listing .card-image.card-image-placeholder {
  background-color: #E8F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-product-listing .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide empty card-image divs if they have no img child */
.sp-product-listing .card-image:empty {
  display: none;
}
.sp-product-listing .card p {
  margin: 0 !important;
  color: #34373B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  /* Add these properties for 2-line truncation */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coming-soon-message p {
  color: #1E5D85;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}
.sp-product-listing .preheading {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 3;
}
.sp-product-listing .no-results-message {
  text-align: center;
  padding: 60px 20px;
  width: 100%;
}

.sp-product-listing .no-results-message p {
  font-size: 24px;
  color: #5187A3;
  font-weight: 600;
  margin: 0;
}
.sp-product-listing .body {
  text-align: center
}
.sp-product-listing .preheading .hd-headline {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.sp-product-listing .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

/* Filter Section */
.sp-product-listing .filter-section {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sp-product-listing .filter-dropdown {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 490px; /* Add this */
}

.sp-product-listing .custom-select {
  position: relative;
  width: 100%;
}

.sp-product-listing .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px 10px 10px;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  background-color: white;
  cursor: pointer;
  user-select: none;
}

.sp-product-listing .select-trigger:hover {
  border-color: #5187A3;
}

.sp-product-listing .select-text {
  font-size: 16px;
  color: #34373B;
  font-family: inherit;
}

.sp-product-listing .dropdown-icon {
  width: 47px;
  height: 43px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sp-product-listing .custom-select.open .dropdown-icon {
  transform: rotate(180deg);
}

.sp-product-listing .select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: white;
  border: 2px solid #00A4D5;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sp-product-listing .custom-select.open .select-options {
  display: block;
}

.sp-product-listing .select-option {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 16px;
  color: #34373B;
  transition: background-color 0.2s ease;
}

.sp-product-listing .select-option:hover {
  background-color: #E8F4F8;
}

.sp-product-listing .select-option.selected {
  background-color: #00A4D5;
  color: white;
}

.sp-product-listing .filter-button {
  flex-shrink: 0;
  width: 100%;
}

.sp-product-listing .filter-button .btn {
  width: 100% !important;
  text-align: center !important;
  display: inline-block !important;
}
/* Card container - mobile first (1 column) */
.sp-product-listing .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
}

.sp-product-listing .icon-text-section {
  gap: 16px;
  display: flex;
  align-items: start;
}

.sp-product-listing .icon-text-section .hd-headline {
  margin:0;
  color: #34373B;
}

.sp-product-listing .card p {
  margin: 0 !important;
  color: #34373B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}

.sp-product-listing .card {
  border: 1px solid  #DDE1E6;
  display: flex;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 0;
  border-radius: 20px;
  width: 100%;
  min-height: 295.601px;
  overflow: hidden;
}

.sp-product-listing .card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
}
.sp-product-listing .learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1C1B1F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: end;
}

.sp-product-listing .learn-more-link:hover {
  gap: 12px;
  color: #8DD700
}
.learn-more-link:hover svg path {
  fill: #8DD700;
}

.sp-product-listing .learn-more-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.sp-product-listing .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-product-listing .card  .content-section {
  padding: 24px 16px 16px 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.sp-product-listing .card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-product-listing .category-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #53D6BC;
  color: #34373B;
  font-size: 16px;
  font-weight: 400;
  border-radius: 100px;
}

.sp-product-listing .card > .icon-text-section {
  padding-top: 20px;
}
/* Pagination */
.sp-product-listing .pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 20px 0;
}

.sp-product-listing .pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 43px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.sp-product-listing .pagination-arrow svg {
  width: 47px;
  height: 43px;
}

.sp-product-listing .pagination-arrow:hover:not(:disabled) {
  opacity: 0.8;
}

.sp-product-listing .pagination-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sp-product-listing .pagination-prev svg {
  transform: rotate(-90deg);
}

.sp-product-listing .pagination-next svg {
  transform: rotate(-90deg);
}

.sp-product-listing .pagination-numbers {
  display: flex;
  gap: 8px;
}

.sp-product-listing .pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 43px;
  padding: 0;
  border: 2px solid #19C3AF;
  border-radius: 5px;
  background-color: white;
  color: #5187A3;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sp-product-listing .pagination-number:hover {
  background-color: #E8F4F8;
}

.sp-product-listing .pagination-number.active {
  background-color: #19C3AF;
  border-color: #19C3AF;
  color: white;
}

.sp-product-listing .pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 43px;
  color: #5187A3;
  font-size: 16px;
  font-weight: 600;
}
.sp-product-listing .card > .button {
  padding-bottom: 20px;
}

/* Tablet - 2 columns */
@media (min-width: 768px) {
  .sp-product-listing .filter-button {
    width: auto;
  }
  .sp-product-listing .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-product-listing .icon-text-section .hd-headline {
    text-align:left
  }
}

/* Desktop - 4 columns */
@media (min-width: 1024px) {
  .sp-product-listing .card-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Tablet - 2 columns */
@media (max-width: 992px) {
  .sp-product-listing {
    margin: 0 20px;
  }
}

/* Mobile responsive for filters */
@media (max-width: 767px) {
  .sp-product-listing .filter-section {
    flex-direction: column;
  }

  .sp-product-listing .filter-dropdown {
    width: 100%;
  }

  .sp-product-listing .filter-button {
    width: 100%;
  }

  .sp-product-listing .filter-button .button,
  .sp-product-listing .filter-button .btn {
    width: 100%;
    display: block;
  }
}
.sp-testimonial-card {
  background: rgba(233, 239, 242, 0.40);
  justify-content: center;
  display: flex;
  padding: 176px 0 176px 0;
}

.sp-testimonial-card .card {
  position: relative;
  flex-direction: column;
  display: flex;
  width: 780px;
  padding: 120px 30px 50px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 3px solid #3EBAE2;
  background: #3EBAE2;
  box-shadow: 186px 213px 79px 0 rgba(0, 0, 0, 0.00), 119px 136px 72px 0 rgba(0, 0, 0, 0.01), 67px 77px 61px 0 rgba(0, 0, 0, 0.05), 30px 34px 45px 0 rgba(0, 0, 0, 0.09), 7px 9px 25px 0 rgba(0, 0, 0, 0.10);
}

.sp-testimonial-card .top-image {
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.sp-testimonial-card .top-image img {
  width: 208px;
  height: 192px;
  display: block;
}

.sp-testimonial-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.sp-testimonial-card .card-content p {
  text-align: center;
  margin: 0;
}

.sp-testimonial-card .avator {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.sp-testimonial-card .avator h4 {
  margin: 0;
}
.sp-testimonial-card  .position {
  font-size: 16px;
}

.sp-testimonial-card .avator .content {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.sp-testimonial-card .avator .image img {
  width: 67px;
  height: 71px;
  border-radius: 50%;
}

@media (max-width: 769px) {
  .sp-testimonial-card .card {
    margin: 0 20px;
  }
}
.sd-left-icon-card {
  max-width: 1360px;
  margin: 0 auto;
}
.sd-left-icon-card .content-section {
  margin: 0 20px;
}
.sd-left-icon-card .hd-headline {
  color: #5187A3;
  text-align: center;
}
.sd-left-icon-card .card:first-child {
  z-index: 100;
}
.sd-left-icon-card .card:nth-child(2) {
  z-index: 99;
}
.sd-left-icon-card .card:nth-child(3) {
  z-index: 98;
}
.sd-left-icon-card .card:nth-child(4) {
  z-index: 97;
}
.sd-left-icon-card .card .hd-headline {
  text-align: left;
}
.sd-left-icon-card .preheading {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 3;
}
.sd-left-icon-card .body {
  text-align: center
}
.sd-left-icon-card .preheading .hd-headline {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.sd-left-icon-card .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
/* Card container - mobile first (1 column) */
.sd-left-icon-card .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  padding: 60px 20px 20px 20px;
}
.sd-left-icon-card .card {
  position: relative;
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-start;
/*   gap: 16px; */
  border-radius: 20px;
  width: 100%;
  background: #1E5D85;
  overflow: visible;
  min-height: 100%;
}
.sd-left-icon-card .icon-section {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  z-index: -1;
}
.sd-left-icon-card .title-section {
/*   flex: 1;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  padding-left: 60px; */
  
  flex: 1;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-left: 60px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sd-left-icon-card .content {
/*   position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 0; */
  
  flex-grow: 1;
}
.sd-left-icon-card .icon-background {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100px !important;
  height: 100px !important;
  z-index: 1;
  flex-shrink: 0;
}
.sd-left-icon-card .icon {
  position: absolute;
  top: 58%;
  left: 58%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-left-icon-card .icon img {
  max-width: 41px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sd-left-icon-card .title-section .hd-headline {
  margin: 0;
  color: #FFF;
  font-size: 24px;
}
.sd-left-icon-card .card p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}
/* Tablet - 2 columns */
@media (min-width: 992px) {
  .sd-left-icon-card .content-section {
    margin: 0;
  }
  .sd-left-icon-card .content-section  .hd-headline {
    max-width: 1160px;
    margin: 0 auto;
  }
  .sd-left-icon-card .content-section  .body p {
    max-width: 1007px;
    margin: 0 auto;
  }
  .sd-left-icon-card .card-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 60px 0 20px 0;
  }
}
/* Desktop - 3 columns */
@media (min-width: 1024px) {
  .sd-left-icon-card .card-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 60px 0 20px 0;
  }
}
.sd-center-icon-card .hd-headline {
  color: #5187A3;
  text-align: center;
}
.sd-center-icon-card .content {
  text-align: center;
}

.sd-center-icon-card .preheading {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 3;
}

.sd-center-icon-card .body {
  text-align: center;
}

.sd-center-icon-card .preheading .hd-headline {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.sd-center-icon-card .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

/* Card container - mobile first (1 column) */
.sd-center-icon-card .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
  margin: 50px 0;
}

.sd-center-icon-card .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  background: #1E5D85;
  align-items: left;
  gap: 10px;
  width: 100%;
  min-height: 295.601px;
  position: relative;
  overflow: visible; /* allow icon overlap */
  padding: 85px 20px 20px; /* add room for the half-outside icon */
}

/* Icon & title section */
.sd-center-icon-card .icon-text-section {
  flex-direction: column;
  gap: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;

}

/* ICON WRAPPER (with background SVG) */
.sd-center-icon-card .icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Hex background shape */
.sd-center-icon-card .icon .icon-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Foreground icon */
.sd-center-icon-card .icon .icon-foreground {
  position: relative;
  z-index: 1;
  max-width: 46px;
  max-height: 46px;
}

/* Title text below the icon */
.sd-center-icon-card .icon-text-section .hd-headline {
  margin: 0;
  color: #fff;
  margin-top: 8px;
  text-align: center;
}

.sd-center-icon-card .card p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}
@media (min-width: 992px) {
  .sd-center-icon-card  .content-section {
    justify-content: center;
    display: flex;
  }
  .sd-center-icon-card  .content-section .text-block {
    width: 1000px;
  }
}

/* Tablet - 2 columns */
@media (min-width: 768px) {
  .sd-center-icon-card .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .sd-center-icon-card .icon-text-section .hd-headline {
    white-space: nowrap;
  }
}

/* Desktop - 5 columns */
@media (min-width: 1024px) {
  .sd-center-icon-card .card-container {
    grid-template-columns: repeat(5, 1fr);
  }
}
.sd-browse-products {
  max-width: 1442px;
  margin: 0 auto;
  padding: 60px 20px;
}

.sd-browse-products .headline {
  /*   text-align: center; */
  margin-bottom: 40px;
}
.sd-browse-products .btn {
  white-space: nowrap !important;
}


.sd-browse-products .headline h2 {
  color: #5187A3;
  margin: 0;
}
.sd-browse-products .card .title h4 {
  margin: 0;
}

/* Card container - mobile first (1 column) */
.sd-browse-products .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

.sd-browse-products .card {
  background: #1E5D85;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sd-browse-products .image-section {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.sd-browse-products .button-section {
  margin-top: 40px;
  justify-content: center;
  display: flex;
}
.sd-browse-products .image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.sd-browse-products .content-section {
  text-align: center;
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.sd-browse-products .title h4 {
  color: #FFF;
  margin: 0 0 16px 0;
  font-size: 24px;
  font-weight: 600;
}

.sd-browse-products .body p {
  color: #FFF;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

/* Tablet - 2 columns */
@media (min-width: 768px) {
  .sd-browse-products .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 3 columns */
@media (min-width: 1024px) {
  .sd-browse-products .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sd-blue-icon-card .content-section {
  margin: 0 20px;
}
.sd-blue-icon-card .hd-headline {
  color: #5187A3;
  text-align: left;
}
.sd-blue-icon-card .preheading {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 3;
}
.sd-blue-icon-card .content-section .text-block {
  text-align: center;
}
.sd-blue-icon-card .preheading .hd-headline {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.sd-blue-icon-card .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
/* Card container - mobile first (1 column) */
.sd-blue-icon-card .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  padding: 20px 20px;
}
.sd-blue-icon-card .icon-text-section {
  gap: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  flex-direction: column;
}
.sd-blue-icon-card .icon-text-section .hd-headline {
  margin:0;
  color: #1E5D85;
}
.sd-blue-icon-card .card p {
  color: #34373B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}
.sd-blue-icon-card .card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 10px;
  border-radius: 20px;
  border: 2px solid #1E5D85;
  width: 100%;
  min-height: 295.601px;
}
@media (min-width: 992px) {
  .sd-blue-icon-card .content-section .text-block {
    width: 1084px;
  }
  .sd-blue-icon-card .content-section {
    margin: 0;
  }
  .sd-blue-icon-card .card-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }
  .sd-blue-icon-card .icon-text-section .hd-headline {
    white-space: nowrap;
  }
}
/* Desktop - 3 columns */
@media (min-width: 1024px) {
  .sd-blue-icon-card .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sd-two-col-card {
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
}
.sd-two-col-card .content-section {
  margin: 0 20px;
}
.sd-two-col-card .hd-headline {
  color: #5187A3;
  text-align: center;
}
.sd-two-col-card .image-section img {
  max-height:490px;
}
.sd-two-col-card .card:first-child {
  z-index: 100;
}
.sd-two-col-card .card:nth-child(2) {
  z-index: 99;
}
.sd-two-col-card .card:nth-child(3) {
  z-index: 98;
}
.sd-two-col-card .card:nth-child(4) {
  z-index: 97;
}
.sd-two-col-card .card:nth-child(5) {
  z-index: 100;
}
.sd-two-col-card .card .hd-headline {
  text-align: left;
}
.sd-two-col-card .preheading {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 3;
}
.sd-two-col-card .body {
  text-align: center
}
.sd-two-col-card .preheading .hd-headline {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.sd-two-col-card .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

/* Card container - mobile first (1 column) */
.sd-two-col-card .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  padding: 60px 20px 20px 20px;
}

.sd-two-col-card .card {
  position: relative;
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  border-radius: 20px;
  width: 100%;
  background: #1E5D85;
  overflow: visible;
  min-height: 100%;
}

/* Mobile order - image first, then cards */
@media (max-width: 992px) {
  .sd-two-col-card .image-section {
    order: 0;
  }
  .sd-two-col-card .card:nth-child(1) {
    order: 2;
  }
  .sd-two-col-card .card:nth-child(2) {
    order: 3;
  }
  .sd-two-col-card .card:nth-child(3) {
    order: 4;
  }
  .sd-two-col-card .card:nth-child(4) {
    order: 5;
  }
}

.sd-two-col-card .icon-section {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  z-index: -1;
}

.sd-two-col-card .title-section {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  padding-left: 60px;
}

.sd-two-col-card .content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 0;
}

.sd-two-col-card .icon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px !important;
  height: 100px !important;
  z-index: 1;
  flex-shrink: 0;
}

.sd-two-col-card .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-two-col-card .icon img {
  max-width: 50px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sd-two-col-card .title-section .hd-headline {
  margin: 0;
  color: #FFF;
  font-size: 24px;
}

.sd-two-col-card .card p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}

/* Image section - mobile stacked below cards */
.sd-two-col-card .image-section {
  width: 100%;
  margin-top: 20px;
}

.sd-two-col-card .image-section img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Tablet - 2 columns for cards, image below (full width like mobile) */
@media (min-width: 768px) {
  .sd-two-col-card .content-section {
    margin: 0;
  }
  .sd-two-col-card .content-section .hd-headline {
    max-width: 1160px;
    margin: 0 auto;
  }
  .sd-two-col-card .content-section .body p {
    max-width: 1007px;
    margin: 0 auto;
  }
  .sd-two-col-card .card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 60px 20px 20px 20px;
  }
  
  
  /* Image stays full width below cards on tablet */
  .sd-two-col-card .image-section {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 20px;
  }
  
  .sd-two-col-card .image-section img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
  }
}

/* Desktop - cards on left (2x2 grid), image on right */
@media (min-width: 1024px) {
  .sd-two-col-card .card-container {
    max-width: 1360px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 60px 0 20px 0;
    padding-left: 20px;
    align-items: start;
    position: relative;
  }

  /* Cards take up first 2 columns, arranged in 2x2 grid */
  .sd-two-col-card .card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .sd-two-col-card .card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .sd-two-col-card .card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .sd-two-col-card .card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  /* Image takes up third column, spans both rows, extends to edge */
  .sd-two-col-card .image-section {
    grid-column: 3;
    grid-row: 1 / 3;
    margin-top: 0;
    margin-left: 20px;
    width: calc(100vw - ((100vw - 1360px) / 2) - ((1360px - 40px) / 3 * 2) - 40px);
    height: 100%;
    position: relative;
  }

  .sd-two-col-card .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
  }
}
.sd-switchback-icon-card {
  position: relative;
  display: flex;
  padding-top: 155px;
  margin: 0 auto;
  gap: 70px;
  align-items: stretch;
  min-height: 660px;
  background: rgba(212, 222, 229, 0.50);
  overflow: hidden;
}
.sd-switchback-icon-card .copy {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: max(16px, calc((100vw - 1360px) / 2));
  padding-right: 60px;
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.sd-switchback-icon-card h1 {
  color: #5187A3;
}
.sd-switchback-icon-card .copy .lead {
  margin-bottom: 34px;
}
.sd-switchback-icon-card .copy .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.sd-switchback-icon-card .visual {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.sd-switchback-icon-card .icon-text-item {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
  width: 350px;
}

/* Position each item around the hexagon - closer to the shape */
.sd-switchback-icon-card .icon-text-item:nth-child(1) {
  top: 5%;
  left: 15%;
}

.sd-switchback-icon-card .icon-text-item:nth-child(2) {
  top: 30%;
  left: 15%;
}

.sd-switchback-icon-card .icon-text-item:nth-child(3) {
  top: 55%;
  left: 15%;
}

.sd-switchback-icon-card .icon-text-item:nth-child(4) {
  top: 80%;
  left: 15%;
}

.sd-switchback-icon-card .icon-text-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.sd-switchback-icon-card .icon-text-item .icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-switchback-icon-card .icon-text-item .icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.sd-switchback-icon-card .icon-text-item .content {
  flex: 1;
}

.sd-switchback-icon-card .icon-text-item .title h4 {
  color: #5187A3;
/*   font-size: 20px; */
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.sd-switchback-icon-card .icon-text-item .body p {
  color: #333;
/*   font-size: 15px; */
  line-height: 1.5;
  margin: 0;
}

/* DEFAULT: Show half the hexagon image */
.sd-switchback-icon-card .visual svg {
  position: absolute;
  right: -50%;
  top: 50%;
  transform: translateY(-50%);
  width: 1000px;
  height: auto;
  z-index: 2;
}
.sd-switchback-icon-card .visual svg.frame {
  width: 1000px;
  max-width: none;
  display: block;
}
.sd-switchback-icon-card .photo {
  display: none;
}

/* LARGE DESKTOP: 1440px+ */
/* @media (min-width: 1440px) { */
@media (min-width: 1191px) {
  .sd-switchback-icon-card {
    align-items: center;
    justify-content: space-between;
    display: flex;
    gap: 0px;
    margin: 0 auto;
    min-height: 751px;
    padding-top: 60px;
    position: relative;
  }
  .sd-switchback-icon-card .visual {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .sd-switchback-icon-card .visual svg {
    position: absolute;
    right: -560px;
    top: 50%;
    transform: translateY(-50%);
    width: 1100px;
    height: auto;
  }
  .sd-switchback-icon-card .icon-text-wrapper {
    left: 200px;
    width: 700px;
    height: 700px;
  }
  .sd-switchback-icon-card .icon-text-item {
    width: 400px;
  }
  .sd-switchback-icon-card .icon-text-item:nth-child(1) {
    top: 10%;
    left: 10%;
  }
  .sd-switchback-icon-card .icon-text-item:nth-child(2) {
    top: 33%;
    left: 10%;
  }
  .sd-switchback-icon-card .icon-text-item:nth-child(3) {
    top: 57%;
    left: 10%;
  }
  .sd-switchback-icon-card .icon-text-item:nth-child(4) {
    top: 76%;
    left: 10%;
  }
  .sd-switchback-icon-card .icon-text-item .title h4 {
/*     font-size: 22px; */
  }
  .sd-switchback-icon-card .icon-text-item .body p {
/*     font-size: 16px; */
  }
}


/* LARGE DESKTOP: 1440px+ */
@media (min-width: 1900px) {
  .sd-switchback-icon-card {
    align-items: center;
    justify-content: space-between;
    display: flex;
    gap: 0px;
    margin: 0 auto;
    min-height: 751px;
    padding-top: 60px;
    position: relative;
  }
  .sd-switchback-icon-card .visual {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .sd-switchback-icon-card .visual svg {
    position: absolute;
    right: -50%;
    top: 50%;
    transform: translateY(-50%);
    width: 1100px;
    height: auto;
  }
  .sd-switchback-icon-card .icon-text-wrapper {
    left: 200px;
    width: 700px;
    height: 700px;
  }
  .sd-switchback-icon-card .icon-text-item {
    width: 400px;
  }
  .sd-switchback-icon-card .icon-text-item:nth-child(1) {
    top: 12%;
    left: 30%;
  }
  .sd-switchback-icon-card .icon-text-item:nth-child(2) {
    top: 32%;
    left: 30%;
  }
  .sd-switchback-icon-card .icon-text-item:nth-child(3) {
    top: 52%;
    left: 30%;
  }
  .sd-switchback-icon-card .icon-text-item:nth-child(4) {
    top: 71%;
    left: 30%;
  }
  .sd-switchback-icon-card .icon-text-item .title h4 {
/*     font-size: 22px; */
  }
  .sd-switchback-icon-card .icon-text-item .body p {
/*     font-size: 16px; */
  }
}
/* MOBILE & SMALL TABLET: Below 1440px - NOW STACKS */

@media (max-width: 1399px) {
  .sd-switchback-icon-card .visual svg {
    right: -700px;
  }
}
/* @media (max-width: 1439px) { */
@media (max-width: 1190px) {
  .sd-switchback-icon-card {
    flex-direction: column;
    min-height: auto;
    padding: 80px 18px 0 18px;
    overflow: visible;
    gap: 30px;
  }
  .sd-switchback-icon-card .copy {
    flex: 0 0 100%;
    padding: 0px;
    align-items: center;
    text-align: left;
  }
  .sd-switchback-icon-card .visual {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .sd-switchback-icon-card .icon-text-wrapper {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 0;
    margin-bottom: 40px;
    z-index: 3;
  }
  .sd-switchback-icon-card .icon-text-item {
    position: relative;
    width: 100%;
    opacity: 1;
    transform: translateX(0);
    top: auto !important;
    left: auto !important;
/*     align-items: center; */
  }
/*   .sd-switchback-icon-card .icon-text-item .icon {
    width: 50px;
    height: 50px;
  }
  .sd-switchback-icon-card .icon-text-item .title h4 {
    font-size: 18px;
  }
  .sd-switchback-icon-card .icon-text-item .body p {
    font-size: 14px;
  } */
  .sd-switchback-icon-card .icon-text-item .title h4 {
/*     font-size: 20px; */
  }
  .sd-switchback-icon-card .icon-text-item .body p {
/*     font-size: 18px; */
  }
  /* Show half the image by positioning to the right */
  .sd-switchback-icon-card .visual svg {
    position: relative;
    width: 800px;
    max-width: 800px;
    height: auto;
    right: auto;
    top: auto;
    transform: translateX(48%);
    margin: 0;
  }
}

@media (max-width: 767px) {
  .sd-switchback-icon-card .eyebrow {
    text-align: center;
    margin: 0;
    font-size: 20px;
  }
  .sd-switchback-icon-card .eyebrow:before {
    content: ".";
    font-size: 0px;
    position: relative;
    left: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
  }
  .sd-switchback-icon-card h1,
  .sd-switchback-icon-card .copy .lead {
    text-align: left;
  }
  .sd-switchback-icon-card .icon-text-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /* Adjust for smaller mobile screens */
  .sd-switchback-icon-card .visual svg {
    transform: translateX(45%);
  }
}

@media (max-width: 600px) {
  .sd-switchback-icon-card .visual svg {
    transform: translateX(22%);
  }
}

@media (max-width: 450px) {
  .sd-switchback-icon-card .visual svg {
    transform: translateX(20%);
  }
}



.sp-related-product-listing{
  max-width: 1360px;
  margin: 190px auto;
}
.sp-related-product-listing .hd-headline {
  color: #5187A3;
  text-align: center;
}

.sp-related-product-listing .heading .hd-headline {
  font-size: 45px;
}

.sp-related-product-listing .card-image {
  width: 100%;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-related-product-listing .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-related-product-listing .card p {
  margin: 0 !important;
  color: #34373B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coming-soon-message {
  margin-top: 40px;
}

.coming-soon-message p {
  color: #1E5D85;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}

.sp-related-product-listing .preheading {
  display: flex;
  gap: 12px;
  position: relative;
  justify-content: center;
  z-index: 3;
}

.sp-related-product-listing .body {
  text-align: center;
}

.sp-related-product-listing .preheading .hd-headline {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.sp-related-product-listing .svg-section {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

/* Card container - mobile first (1 column) */
.sp-related-product-listing .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
}

.sp-related-product-listing .icon-text-section {
  gap: 16px;
  display: flex;
  align-items: start;
}

.sp-related-product-listing .icon-text-section .hd-headline {
  margin: 0;
  color: #34373B;
}

.sp-related-product-listing .card {
  border: 1px solid #DDE1E6;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 0;
  border-radius: 20px;
  width: 100%;
  min-height: 295.601px;
  overflow: hidden;
}

.sp-related-product-listing .learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1C1B1F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: end;
}

.sp-related-product-listing .learn-more-link:hover {
  gap: 12px;
  color: #8DD700;
}

.learn-more-link:hover svg path {
  fill: #8DD700;
}

.sp-related-product-listing .learn-more-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.sp-related-product-listing .card .content-section {
  padding: 24px 16px 16px 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.sp-related-product-listing .card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-related-product-listing .category-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #53D6BC;
  color: #34373B;
  font-size: 16px;
  font-weight: 400;
  border-radius: 100px;
}

/* Tablet - 3 columns */
@media (min-width: 768px) {
  .sp-related-product-listing .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .sp-related-product-listing .icon-text-section .hd-headline {
    text-align: left;
  }
}

/* Desktop - 4 columns */
@media (min-width: 1024px) {
  .sp-related-product-listing .card-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet and below */
@media (max-width: 992px) {
  .sp-related-product-listing {
    margin: 0 20px;
  }
}
/*  */