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

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