/* 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 {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* 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:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 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 */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}




.header__search .hs-search-field__input {
  
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-position: center right 15px;
    background-repeat: no-repeat;
  
  height: 45px;
  padding: 0 0.7rem;
}




.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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;
  }
}

/* === ConnectSecure 2026 redesign imported styles === */
/* ==========================================================================
1. FONTS & VARIABLES
========================================================================== */


:root {
  /* Primary Colors */
  --color-primary: #00252B;
  --color-primary-hover: #00252B;

  /* Secondary */
  --color-secondary: #0E4F55;
  --color-accent: #22FCC3;

  /* Background */
  --color-bg: #f0f7f7;
  --color-bg-light: #ffffff;
  --color-bg-dark: #00252B;
  --color-bg-section: #edf7f6;

  /* Text */
  --color-heading: #040405;
  --color-text: #040405;
  --color-text-light: #FFFFFF;

  --transition: 0.35s ease;
  --font-primary: "Agenda", system-ui, sans-serif;
  --font-family-primary: var(--font-primary);

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 22px;
  --font-size-3xl: 24px;
  --font-size-4xl: 26px;
  --font-size-5xl: 32px;
  --font-size-6xl: 36px;
  --font-size-7xl: 42px;
  --font-size-8xl: 44px;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --btn-bg: #22FCC3;

  --text-color: #040405;

  --text-mint: #1dd9a8;

  --color-white: #ffffff;

  --color-dark-green: #00252b;

}
/* ==========================================================================
2. GLOBAL RESET & BASE STYLES
========================================================================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.4;
  font-size: var(--font-size-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
3. TYPOGRAPHY & HEADINGS
========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

h1 {
  font-size: var(--font-size-8xl);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: var(--font-size-7xl);
  line-height: 1.2;
  font-weight: 600;
}

h3 {
  font-size: var(--font-size-6xl);
  line-height: 1.3;
  font-weight: 500;
}

h4 {
  font-size: var(--font-size-4xl);
}

h5 {
  font-size: var(--font-size-2xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  color: var(--color-text);
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.font-primary {
  font-family: var(--font-family-primary);
}

.font-regular {
  font-weight: var(--font-weight-regular);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }
.text-6xl { font-size: var(--font-size-6xl); }
.text-7xl { font-size: var(--font-size-7xl); }
.text-8xl { font-size: var(--font-size-8xl); }


.highlighted-text__mint{
  color: #1E8C70;
}
.highlighted-text__mint--two{
  color: #22FCC3;
}


@media (max-width: 1024px) {
  h1 { font-size: 34px; }
  h2 { font-size: 32px; }
  h3 { font-size: 28px; }
  h4 { font-size: 26px; }
  h5 { font-size: 22px; }
  h6 { font-size: 18px; }
}

@media (max-width: 767px) {
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  h3 { font-size: 28px; }
  h4 { font-size: 24px; }
  h5 { font-size: 20px; }
  h6 { font-size: 18px; }
}

/* ==========================================================================
4. UTILITIES & HELPER CLASSES
========================================================================== */
.trail-btn {
  padding: 14px 64px;
  background-color: var(--btn-bg);
  color: var(--text-color);
  font-weight: var(--font-weight-semibold);
  border: none;
  border-radius: 40px;
  font-size: var(--font-size-base);
  font-family: var(--font-family-primary);
  box-shadow: 5px 5px 15px rgba(96, 228, 91, 0.253);
}

.csr-page-content {
  background-color: #f0f7f7;
}

.csr26-btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 30px;
  font-size: var(--font-size-2xl);
  line-height: 1.2;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family-primary);
  transition: all 0.2s ease-in-out;
}
.csr26-btn span {
  display: inline-flex;
  align-items: center;
}
.csr26-buttons__wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.csr26-btn.csr26-primary--btn {
  background-color: var(--btn-bg);
  color: var(--text-color);
  border: 1px solid var(--btn-bg);
}

.csr26-btn.csr26-primary--btn:hover {
  background-color: #1ccc9e;
}

.csr26-btn.csr26-secondary--btn {
  font-size: 16px;
  padding: 12px 17px;
  background-color: transparent;
  color: #01373f;
  border: 1px solid var(--btn-bg);
}
.csr26-buttons__wrapper .csr26-btn.csr26-secondary--btn {
  padding: 16px 30px;
  border-radius: 30px;
  font-size: var(--font-size-2xl);
}
.csr26-btn.csr26-secondary--btn:hover {
  background-color: var(--color-accent);
  color: #01373f;
  border-color: var(--color-accent);
}

/* Redesign theme helpers */
.csr-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 0;
}

/* Animation */
.csr26-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.csr26-fade-in.csr26-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.csr26-delay-100 {
  transition-delay: 100ms;
}

.csr26-delay-200 {
  transition-delay: 200ms;
}

.csr26-delay-300 {
  transition-delay: 300ms;
}

.csr26-delay-400 {
  transition-delay: 400ms;
}

.csr26-delay-500 {
  transition-delay: 500ms;
}

img.csr26-separator__pattern {
  display: block;
  width: 100%;
  height: auto;
  border-left: 1px solid #c0dada33;
  border-right: 1px solid #c0dada33;
}
/* ==========================================================================
6. HERO LAYOUT
========================================================================== */

.csr26-hero-banner__grid {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 320px 0 120px 0;
  overflow: hidden;
}

.csr26-hero-banner__column_one {
  max-width: 578px;
  width: 50%;
}
.csr26-hero-banner__column_one h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.02;
  color: var(--color-white);
  margin-bottom: 24px;
  font-weight: 600;
}

.csr26-hero-banner__column_one p.lead {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.csr26-hero-banner__column_one p {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
}

.csr26-hero-banner__column_one p.bellow-para {
  color: var(--color-white);
  max-width: 560px;
  font-size: 16px;
  margin-top: 24px;
}

.csr26-hero-banner__column_one button {
  background: var(--color-primary);
  color: #02221a;
  border: none;
  padding: 20px 30px;
  border-radius: 40px;
  font-size: 22px;
  line-height: 1.375em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 201, 157, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
}

.csr26-hero-banner__column_one button i {
  font-size: 22px;
  line-height: 1.375em;
}

.csr26-hero-banner__column_one .small-muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-top: 10px;
}

.csr26-hero-banner__column_two {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
}

.csr26-hero-banner__column_two .mockup {
  width: 80%;
  max-width: 500px;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 201, 157, 0.08),
    rgba(0, 201, 157, 0.02)
  );
  box-shadow: 0 18px 60px rgba(2, 8, 10, 0.6);
  border: 4px solid rgba(0, 201, 157, 0.08);
}

.csr26-hero-banner__column_two img {
  display: block;
  height: auto;
  width: 100%;
  object-fit: fill;
}

/* ==========================================================================
7. CERTIFIED SECTION
========================================================================== */

#certified {
  padding: 80px 0 160px 0;
  background: linear-gradient(to bottom, #f2f8f9, #e5f4f5);
}

.csr26-logo-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.csr26-logo-list__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 130px;
}
.csr-logo-list__sm--heading {
  font-size: 22px;
  font-weight: 500;
  color: #040405;
}
.csr26-logo-marquee {
  margin-top: 12px;
}

.csr26-logo-list__item p {
  font-size: 18px;
  line-height: 1.2em;
  color: var(--text-color);
  margin-top: 30px;
}

/* .csr26-logo-list__wrapper img {
  height: 140px;
  width: 140px;
} */

/* ==========================================================================
8. MAINTAIN SECTION
========================================================================== */

.csr26-row-4 {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.csr26-column-5 {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.csr26-testimonial-card {
  position: relative;
  width: 520px;
  min-height: 250px;
  background: transparent;
  max-width: 100%;
}
.csr26-testimonial-card::before {
  position: absolute;
  top: 30px;
  left: 0;
  width: 80%;
  height: 80px;
  background: #1daf8a;
  content: '';
  border-radius: 14px;
  z-index: 0;
}

.csr26-card-top {
  position: absolute;
  border-radius: 16px;
  background: #0f5354;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  background-color: #ffffff;
  border-radius: 16px;
  top: 0;
  width: 65%;
}
.csr26-testimonial-card__green .csr26-card-top {
  background: #0f5354;
}

.csr26-card-bottom {
  position: absolute;
  top: 56px; /* meets the bottom edge of the top piece exactly */
  left: 0;
  right: 0;
  bottom: 0; /* stretches with card height */
  background: #0f5354;
  border-radius: 14px; /* only the two bottom corners need rounding */
  z-index: 0;
}

.csr26-testimonial-content {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 14px 28px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.csr26-quote-icon {
  width: 36px;
  height: 36px;
}
.csr26-quote-text {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.csr26-testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.csr26-person-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.csr26-person-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.csr26-person-details {
  min-width: 0;
}
.csr26-person-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
.csr26-person-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}

.csr26-story-cta {
  border: 1px solid #22fcc330;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 24px;
  white-space: nowrap;
  flex-shrink: 0;
}
.csr26-testimonial-icon-list-module {
  padding: 75px 0;
}

.csr26-testimonial-icon-list-module .csr26-quote-text {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 28px;
  padding-top: 40px;
  font-weight: 500;
}
/* Horizontal */
.csr26-testimonial-icon-list_layout--horizontal .csr26-item-1 {
  flex-direction: row;
}

/* Vertical */
.csr26-testimonial-icon-list_layout--vertical .csr26-item-1 {
  flex-direction: column;
  align-items: flex-start;
}
.csr26-testimonial-icon-list-module .csr26-testimonial-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.csr26-testimonial-icon-list-module .csr26-person-info {
  display: flex;
  gap: 14px;
  align-items: center;
}
.csr26-testimonial-icon-list-module .csr26-person-avatar-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}
.csr26-testimonial-icon-list-module .csr26-story-cta {
  color: #22fcc3;
}
.csr26-testimonial-icon-list-module .csr26-icon-list-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.csr26-testimonial-icon-list_item__content {
  max-width: 428px;
}
.csr26-testimonial-icon-list_item__content
  .csr26-testimonial-icon-list_item__description
  p {
  color: #545454;
}
.csr26-testimonial-icon-list_item__content h5 {
  font-weight: 500;
}
.csr26-testimonial-icon-list-module .csr26-image-placeholder {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 1px dashed #8fa5a8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.csr26-column-6 {
  width: 50%;
}

.csr26-stack-2 {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.csr26-item-1 {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  gap: 28px;
}

.csr26-item-1 p {
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--text-color);
}

.csr26-icon-cards__wrapper {
  position: relative;
}
.csr26-card-1 {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid rgba(15, 23, 34, 0.08);
  border-right: 1px solid rgba(15, 23, 34, 0.08);
  transition: all 0.3s ease-in-out;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  z-index: 1;
}
.csr26-card-heading__grid {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid rgba(15, 23, 34, 0.08);
  border-right: 1px solid rgba(15, 23, 34, 0.08);
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
}

.csr26-card-1:hover {
  border: 1px solid #00ffc4;
}

.csr26-card-1:nth-child(3n):hover {
  border: 1px solid #00ffc4;
}

.csr26-card-1 h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-color) !important;
  margin-bottom: 10px;
}

.csr26-card-1 p {
  font-size: 18px;
  line-height: 1.625em;
  font-weight: 400;
  color: #545454 !important;
}

.csr26-image-banner__wrapper img {
  width: 100%;
}
.csr26-image-banner__media {
  position: relative;
  width: 100%;
}

.csr26-image-banner {
  width: 100%;
  height: auto;
}
.csr26-image-banner-title {
  margin-bottom: 48px;
}
.csr26-image-banner--desktop {
  display: block;
}

.csr26-image-banner--mobile {
  display: none;
}

.csr26-image-banner__lottie {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.csr26-image-banner__video {
  display: block;
  width: 100%;
  height: auto;
}

.csr26-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 350px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .csr26-testimonial-icon-list-module .csr26-quote-text {
    padding-top: 0;
  }
  .csr26-quote-icon {
    margin-bottom: 16px;
    width: 42px;
  }
}
/* ==========================================================================
9. MAINTAIN CTA SECTION
========================================================================== */
.csr26-cta-module__wrapper {
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  padding: 36px 0 36px 48px;
  overflow: hidden;
}

.csr26-column__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  width: 44%;
}

.csr26-column__text p {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.csr26-group-2 h2 {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.csr26-group-2 span {
  color: var(--btn-bg);
}

.csr26-group-3 p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  margin-top: 20px;
  line-height: 1.125em;
}

.csr26-group-3 button {
  padding: 20px 30px;
  font-size: 22px;
}

.csr26-column__img {
  width: 56%;
}

.csr26-column__img img {
  object-fit: cover;
  padding: 0;
  width: 100%;
  height: 450px;
}

/* ==========================================================================
10. DARK FEATURE LAYOUTS
========================================================================== */

.csr26-section-2 {
  background-color: var(--color-dark-green);
  color: #fff;
  padding: 150px 0;
}

.csr26-border-1 {
  border-top: 2px solid rgba(192, 218, 218, 0.07);
  border-bottom: 2px solid rgba(192, 218, 218, 0.07);
  position: relative;
}

.csr26-stack-3 {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 60px;
}

.csr26-stack-3::before {
  padding-top: 80px;
  height: 500px;
  width: 45%;
  content: '';
  position: absolute;
  left: -20%;
  top: 15%;
  background: url('../images/connectsecure/Background-element.png');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  z-index: 99999;
}

.csr26-title-1 {
  color: var(--color-white);
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 60px;
}

.csr26-text-1 {
  color: var(--btn-bg);
  font-weight: 600;
}

.csr26-wrapper-3 {
  display: flex;
  flex-direction: column;
  border-right: 2px solid rgba(192, 218, 218, 0.07);
  border-left: 2px solid rgba(192, 218, 218, 0.07);
  /* border-radius: 12px; */
  background: transparent;
  overflow: hidden;
}

.csr26-img-feature__list__wrapper {
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid rgba(192, 218, 218, 0.05);
  border-top: 1.5px solid rgba(192, 218, 218, 0.05);
  position: relative;
}

.csr26-variant-1::after {
  padding-top: 80px;
  height: 500px;
  width: 45%;
  content: '';
  position: absolute;
  right: 0%;
  top: 50%;
  background: url('../images/connectsecure/Background-element.png');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.csr26-img-feature__list__wrapper:last-child {
  border-bottom: none;
}

.csr26-column-9 {
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: center;
}

.csr26-column-a-1 {
  border-right: 1px solid rgba(192, 218, 218, 0.05);
  overflow: hidden;
}

.csr26-column-b-2 {
  border-left: 1px solid rgba(192, 218, 218, 0.05);
  overflow: hidden;
}

.csr26-column-9 img {
  max-width: 100%;
  border-radius: 8px;
  scale: 1.2;
  border: 1px solid rgba(192, 218, 218, 0.05);
}

.csr26-column-10 {
  flex: 1;
  padding: 48px 72px;
}

.csr26-label-1 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.2;
}

.csr26-text-2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.75em;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.csr26-list-2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.csr26-item-2 {
  display: flex;
  gap: 20px;
}

.csr26-icon-3 {
  color: var(--primary-cyan);
  font-size: 24px;
  margin-top: 2px;
}

.csr26-text-group-1 h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-white) !important;
}

.csr26-text-group-1 p {
  font-size: 18px;
  line-height: 1.625em;
  color: #93afa8 !important;
  line-height: 1.3;
  margin-bottom: 0;
}

/* ==========================================================================
11. VISIBILITY GRID SECTION
========================================================================== */
.csr26-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #c0dada33;
}

.csr26-cell-1 {
  position: relative;
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.csr26-cell-1 h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-white) !important;
  z-index: 1;
}

.csr26-cell-2 {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.csr26-cell-2:nth-child(3n),
.csr26-cell-1:nth-child(3n) {
  border-right: none;
}

.csr26-cell-2:nth-last-child(-n + 3) {
  border-bottom: none;
}

.csr26-icon-4 {
  color: var(--primary-cyan);
  font-size: 24px;
  margin-bottom: 20px;
}

.csr26-cell-2 h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.75em;
  color: var(--color-white) !important;
}

.csr26-cell-2 p {
  font-size: 17px;
  line-height: 1.5625em;
  color: #93afa8 !important;
  line-height: 1.5;
}

/* ==========================================================================
12. COMPLIANCE DETAILS SECTION
========================================================================== */
.csr26-section-3 {
  background: linear-gradient(to bottom, #f2f8f9, #e5f4f5);
  color: #333;
  position: relative;
  padding: 100px 0;
}

.csr26-section-3::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  background: url(../images/connectsecure/Background-element.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  width: 25%;
  height: 500px;
}

.csr26-row-6 {
  display: flex;
  align-items: center;
  gap: 80px;
}

.csr26-column-11 {
  flex: 1;
}

.csr26-image-wrapper-2 {
  border-radius: 12px;
  overflow: hidden;
}

.csr26-image-wrapper-2 img {
  width: 100%;
  max-width: none;
  border-radius: 12px;
}

.csr26-column-12 {
  flex: 1;
  padding-right: 40px;
}

.csr26-title-2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #111;
}

.csr26-text-3 {
  font-size: 22px;
  line-height: 1.75em;
  color: var(--text-color);
  margin-bottom: 40px;
}

.csr26-list-3 {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.csr26-item-3 {
  display: flex;
  gap: 20px;
}

.csr26-icon-5 {
  color: #29b89d;
  font-size: 28px;
  margin-top: 5px;
}

.csr26-text-group-2 h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 8px;
  color: var(--text-color);
}

.csr26-text-group-2 p {
  font-size: 18px;
  line-height: 1.3em;
  margin-bottom: 12px;
  color: #545454;
}

.csr26-text-group-2 p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .csr26-title-2 {
    margin-bottom: 4px;
  }
}
/* ==========================================================================
13. PATTERNED IMAGE & TEXT LAYOUTS
========================================================================== */
.csr26-section-4 {
  background-color: #031c1d;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.csr26-title-3 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-white);
}

.csr26-row-7 {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1440px;
}

.csr26-row-7:last-child {
  margin-bottom: 0;
}

.csr26-column-13 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.csr26-shape-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.csr26-column-14 {
  flex: 1;
}

.csr26-column-14 h3 {
  margin-bottom: 24px;
}

.csr26-column-14 p {
  font-size: 18px;
  line-height: 1.625em;
}

.csr26-column-14 p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
14. CALL TO ACTION (CTA) SECTION
========================================================================== */
.csr26-section-5 {
  background-color: #f2f8f9;
  padding: 100px 0;
  color: #111;
}

.csr26-row-8 {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.csr26-column-15 {
  flex: 0 0 40%;
}

.csr26-column-15 h3 {
  color: var(--text-color);
}

.csr26-subtitle-1 {
  font-size: 18px;
  color: var(--text-color);
  margin: 20px 0 30px 0;
}

.csr26-button-1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #00ffc4;
  color: #000;
  font-weight: 600;
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 15px;
  transition: transform 0.2s;
}

.csr26-button-1:hover {
  transform: translateY(-2px);
}

.csr26-note-1 {
  font-size: 16px;
  line-height: 1.625em;
  color: #545454;
  margin: 20px 0;
}

.csr26-image-wrapper-3 {
  border-radius: 12px;
  overflow: hidden;
}

.csr26-image-1 {
  width: 100%;
  display: block;
}

.csr26-column-16 {
  flex: 0 0 50%;
}

.csr26-row-9 {
  display: flex;
  gap: 20px;
}

.csr26-column-17 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.csr26-card-2 {
  background: #fff;
  border-left: 2px solid #1daf8a;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.csr26-card-2 i {
  color: #29b89d;
  /* Slightly darker cyan/green */
  font-size: 18px;
  flex-shrink: 0;
}

.csr26-card-2 span {
  text-align: left;
  font-size: 18px;
  line-height: 1.45em;
  color: var(--text-color);
}

/* ==========================================================================
15. FAQ SECTION
========================================================================== */
.csr26-section-6 {
  background-color: #f2f8f9;
  padding: 80px 0 120px 0;
  color: #111;
}

.csr26-wrapper-4 {
  margin: 0 auto;
}

.csr26-section-6 h2 {
  font-weight: 600;
  margin-bottom: 40px;
}

/* .csr26-list-4 {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
} */

.csr26-question-1 i {
  color: #29b89d;
  font-size: 18px;
}

.csr26-answer-1 {
  display: none;
  padding-left: 33px;
  padding-top: 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  border-top: 1px solid rgba(15, 83, 84, 0.08);
}

.csr26-item-4.csr26-active-1 .csr26-answer-1 {
  display: block;
}

.csr26-answer-1 p {
  font-size: 18px;
  line-height: 1.625em;
  color: var(--text-color);
  font-weight: 400;
}

.csr26-answer-1 p:last-child {
  margin-bottom: 0;
}

.csr26-answer-1 {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.45s ease, opacity 0.5s ease;
}

.csr26-item-4.csr26-active-1 .csr26-answer-1 {
  max-height: 300px;
  opacity: 1;
}

.csr26-question-1 i {
  transition: 0.3s ease;
  color: #1e8c70;
}

.csr26-item-4 {
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.csr26-item-4.csr26-active-1 {
  transform: translateY(-4px);
}

/* IT page: remove HubSpot DnD horizontal spacing */
.csr-page-content .dnd-section {
  padding-left: 0;
  padding-right: 0;
}

.csr-page-content .dnd-section .dnd-column {
  padding-left: 0;
  padding-right: 0;
}

.csr-page-content .dnd-section > .row-fluid {
  max-width: none;
  width: 100%;
}

/* ==========================================================================
17. MOBILE RESPONSIVENESS & MEDIA QUERIES
========================================================================== */

/* ==========================================================================
   CENTRALIZED MODULE STYLES — DESKTOP
   ========================================================================== */

/* ==========================================================================
   MODULE: CSR-CARDS
   Consolidated from main.css and csr-cards.module/module.css
   ========================================================================== */

.csr26-cards-module {
  padding: 80px 0;
}

.csr26-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.csr26-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 650px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 32px 32px 28px;
}

.csr26-card.csr26-card--image-bottom {
  padding-bottom: 0;
}
.csr26-card.csr26-card--image-bottom .csr26-card__media {
  margin-bottom: -120px;
}
.csr26-card--dark {
  background: #034149;
  color: #ffffff;
}

.csr26-card--light {
  background: #f5f5f3;
  border: 1px solid #d9e2e1;
  color: #121212;
}

.csr26-card--image-top .csr26-card__media {
  order: 1;
  margin-bottom: 32px;
}

.csr26-card--image-top .csr26-card__content {
  order: 2;
}

.csr26-card--image-bottom .csr26-card__content {
  order: 1;
}

.csr26-card--image-bottom .csr26-card__media {
  order: 2;
  margin-top: auto;
  padding-top: 24px;
}

.csr26-card__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.csr26-card__video {
  width: 100%;
}

.csr26-card__video video {
  display: block;
  width: 100%;
  height: auto;
}

.csr26-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.csr26-card__image-placeholder {
  width: 100%;
  min-height: 280px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.csr26-card--light .csr26-card__image-placeholder {
  border-color: rgba(0, 0, 0, 0.15);
  color: #6b6b6b;
}

.csr26-card__title h3 {
  margin: 0 0 24px;
  font-size: clamp(28px, 2.3vw, 36px);
  line-height: 1.15;
  font-weight: 500;
}

.csr26-card--dark .csr26-card__title span {
  color: #22fcc3;
}

.csr26-card--light .csr26-card__title span {
  color: #1e8c70;
}

.csr26-card__text p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

.csr26-card__text p:last-child {
  margin-bottom: 0;
}

.csr26-card--dark .csr26-card__title h3,
.csr26-card--dark .csr26-card__text p {
  color: #ffffff;
}

.csr26-card--light .csr26-card__title h3,
.csr26-card--light .csr26-card__text p {
  color: #111111;
}

.csr26-card--has-bg-image {
  background-repeat: no-repeat;
  background-position: center left;
}
.csr26-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.csr26-card__content {
  position: relative;
}

/*
     * Media at the top
     */
.csr26-card--image-top .csr26-card__media {
  order: 1;
}

.csr26-card--image-top .csr26-card__content {
  order: 2;
}

/*
     * Media at the bottom
     */
.csr26-card--image-bottom .csr26-card__content {
  order: 1;
}

.csr26-card--image-bottom .csr26-card__media {
  order: 2;
  margin-top: auto;
}

.csr26-card__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.csr26-card--media-lottie .csr26-card__media {
  aspect-ratio: 650 / 630;
}

.csr26-card__lottie {
  display: block;
  width: 100%;
  height: 100%;
}

.csr26-card__lottie {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.csr26-card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .csr26-card__media--hide-on-mobile {
    display: none;
  }
}

/* ==========================================================================
   MODULE: CSR-CTA-FEATURE-LIST
   Consolidated from main.css and csr-cta-feature-list.module/module.css
   ========================================================================== */

.csr26-cta-feature-list-module .csr26-feature-list-editable {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.csr26-cta-feature-list-module .csr26-image-placeholder {
  min-height: 250px;
  border: 1px dashed #8fa5a8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csr26-cta-feature-list-module .csr26-check {
  color: #29b89d;
  font-weight: 700;
}

/* ==========================================================================
   MODULE: CSR-CTA
   Consolidated from main.css and csr-cta.module/module.css
   ========================================================================== */

.csr26-cta-module {
  padding: 80px 0;
}

.csr26-cta-module .csr26-cta-module__wrapper {
  background-color: #034149;
}

.csr26-cta-module .csr26-image-placeholder {
  height: 400px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.csr26-cta-module .csr26-primary--btn {
  display: inline-flex;
  background: #22fcc3;
  color: #02221a;
  padding: 18px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

/* ==========================================================================
   MODULE: CSR-FAQ-TESTIMONIAL
   Consolidated from main.css and csr-faq-testimonial.module/module.css
   ========================================================================== */

.csr26-faq-testimonial__heading {
  margin: 0 0 40px;
  color: var(--text-color);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}

.csr26-faq-testimonial__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.csr26-faq-testimonial__column {
  min-width: 0;
}

.csr26-item-4 {
  padding: 0;
  border-bottom: 1px solid rgba(15, 83, 84, 0.08);
}
.csr26-item-4 button {
  padding: 20px 0;
}

.csr26-question-1 span {
  flex: 1;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.csr26-item-4 .csr26-faq-symbol {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: #1e927e;
}

.csr26-faq-testimonial-module .csr26-faq-symbol::before,
.csr26-faq-testimonial-module .csr26-faq-symbol::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.csr26-faq-testimonial-module .csr26-faq-symbol::before {
  width: 8px;
  height: 1.5px;
}

.csr26-faq-testimonial-module .csr26-faq-symbol::after {
  width: 1.5px;
  height: 8px;
}

.csr26-faq-testimonial-module
  .csr26-item-4.csr26-active-1
  .csr26-faq-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.csr26-faq-testimonial-module .csr26-answer-1 {
  max-height: 0;
  overflow: hidden;
  padding-left: 34px;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding-top 0.3s ease;
}

.csr26-item-4.csr26-active-1 .csr26-answer-1 {
  max-height: 500px;
  padding: 18px 0;
  opacity: 1;
  overflow-y: auto;
}

.csr26-faq-testimonial-module .csr26-answer-1 p {
  margin: 0 0 14px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
}

.csr26-faq-testimonial-module .csr26-answer-1 p:last-child {
  margin-bottom: 0;
}

.csr26-faq-testimonial-card {
  position: relative;
  width: 100%;
  min-height: 175px;
  margin-bottom: 22px;
  background: transparent;
  isolation: isolate;
}

.csr26-faq-testimonial-card::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  width: 75%;
  height: 48px;
  background: #22b596;
  border-radius: 0 12px 0 0;
  z-index: 0;
}

.csr26-faq-testimonial-card__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 16px;
  width: 65%;
}

.csr26-faq-testimonial-card__bottom {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
  z-index: 1;
  border-radius: 14px;
  z-index: 0;
}

.csr26-faq-testimonial-card__content {
  position: relative;
  z-index: 2;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.csr26-faq-testimonial-card__quote-icon {
  width: 42px;
  margin-bottom: 16px;
}

.csr26-faq-testimonial-card__quote-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.csr26-faq-testimonial-card__quote {
  margin-bottom: 18px;
  color: #040405;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.csr26-faq-testimonial-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(4, 4, 5, 0.06);
}

.csr26-faq-testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.csr26-faq-testimonial-card__avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.csr26-faq-testimonial-card__person-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.csr26-faq-testimonial-card__person-name {
  color: #040405;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.csr26-faq-testimonial-card__person-title {
  color: #040405;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}

.csr26-faq-testimonial-card__story {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #22d6bd;
  border-radius: 30px;
  background: transparent;
  color: #040405;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.csr26-faq-testimonial-card__story:hover {
  background: #22d6bd;
  color: #040405;
}
@media (max-width: 767px) {
  .csr26-faq-testimonial-card .csr26-btn.csr26-secondary--btn {
    margin-left: 50px;
  }
}
/* ==========================================================================
   MODULE: CSR-FAQ
   Consolidated from main.css and csr-faq.module/module.css
   ========================================================================== */

.csr26-question-1 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 15px;
  color: inherit;
  cursor: pointer;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
}

.csr26-faq-symbol {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: teal;
}

.csr26-faq-symbol::before,
.csr26-faq-symbol::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.csr26-faq-symbol::before {
  width: 10px;
  height: 2px;
}

.csr26-faq-symbol::after {
  width: 2px;
  height: 10px;
}

.csr26-item-4.csr26-active-1 .csr26-faq-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

/* ==========================================================================
   MODULE: CSR-FULL-WIDTH-IMG-BANNER
   Consolidated from main.css and csr-full-width-img-banner.module/module.css
   ========================================================================== */

.csr26-testimonial-card.csr26-testimonial-card--large,
.position__float {
  position: absolute;
  top: 69%;
}

.csr26-full-width-img-banner-module {
  margin-bottom: 120px;
}

.csr26-full-width-img-banner_container {
  width: 100%;
  position: relative;
}

.csr26-full-width-img-banner-image {
  width: 100%;
  object-fit: cover;
  min-height: 100vh;
  height: auto;
}

.csr26-testimonial-card--large {
  width: 680px;
  min-height: 285px;
}

.csr26-testimonial-card--large::before {
  top: 48px;
  left: 0;
  width: 78%;
  height: 90px;
  background: #22b596;
  border-radius: 16px;
}

.csr26-testimonial-card--large .csr26-quote-icon {
  width: 34px;
  font-size: 38px;
}

.csr26-testimonial-card--large .csr26-quote-icon img {
  width: 100%;
  height: auto;
}

.csr26-testimonial-card--large .csr26-quote-text {
  max-width: 610px;
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.csr26-testimonial-card--large .csr26-testimonial-footer {
  margin-top: auto;
}

.csr26-testimonial-card--large .csr26-person-info {
  gap: 16px;
}

.csr26-testimonial-card--large .csr26-person-avatar-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.csr26-testimonial-card--large .csr26-person-name {
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.csr26-testimonial-card--large .csr26-person-title {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.95;
}

.csr26-testimonial-card--large {
  background: transparent;
  margin: 0 auto;
  max-width: 100%;
  min-height: 250px;
  position: relative;
}

.csr26-testimonial-card--large .csr26-card-bottom {
  top: 72px;
  background: var(--color-white);
  border-radius: 0 16px 16px 16px;
}

.csr26-testimonial-card--large .csr26-testimonial-content {
  min-height: 285px;
  padding: 54px 28px 24px;
  gap: 20px;
  color: #040405;
}

.csr26-testimonial-card--large .csr26-quote-icon {
  width: 34px;
  font-size: 38px;
}

.csr26-testimonial-card--large .csr26-quote-icon img {
  width: 100%;
  height: auto;
}

.csr26-testimonial-card--large .csr26-quote-text {
  max-width: 610px;
  color: #040405;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.csr26-testimonial-card--large .csr26-testimonial-footer {
  margin-top: auto;
}

.csr26-testimonial-card--large .csr26-person-info {
  gap: 16px;
}

.csr26-testimonial-card--large .csr26-person-avatar-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.csr26-testimonial-card--large .csr26-person-name {
  color: #040405;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.csr26-testimonial-card--large .csr26-person-title {
  color: #040405;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.95;
}
@media (max-width: 767px) {
  .csr26-testimonial-card--large .csr26-card-bottom {
    top: 56px;
  }
  .csr26-full-width-img-banner-module .csr26-full-width-img__testimonial--btn {
    margin-left: 68px;
  }
}
/* ==========================================================================
   MODULE: CSR-HERO-VERTICAL
   Consolidated from main.css and csr-hero-vertical.module/module.css
   ========================================================================== */

.csr26-hero-vertical-module-banner__grid {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.csr26-hero-vertical-module-banner__column_one {
  max-width: 935px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: #fff;
}

.csr26-hero-vertical-module-banner__column_one h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.02;
  color: var(--color-white);
  margin-bottom: 24px;
  font-weight: 600;
}

.csr26-hero-vertical-module-banner__column_one p {
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.75em;
}

.csr26-hero-vertical-module-banner__column_one p.bellow-para {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.5em;
  margin-top: 16px;
}

.csr26-hero-vertical-module-banner__column_two {
  position: relative;
  width: 100%;
}
.csr26-hero-vertical-module::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: RGBA(0, 0, 0, 0.6);
  background: linear-gradient(
    250.86deg,
    rgba(0, 0, 0, 0.54) 1.25%,
    rgba(0, 0, 0, 0.765) 92.97%
  );
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.csr26-hero-vertical-module__background-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.csr26-hero-vertical-module > .csr-container {
  position: relative;
  z-index: 1;
}

.csr26-hero-vertical-module-banner__column_two {
  position: relative;
  max-width: 1120px;
  min-width: 0;
}
.csr26-hero-vertical-module-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.csr26-hero-vertical-module--lottie .csr26-hero-vertical-module__media {
  aspect-ratio: 1120 / 417;
}

.csr26-hero-vertical-module-lottie {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.csr26-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 350px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
}
@media screen and (max-width: 1024px) {
  .csr26-hero-vertical-module {
    padding-top: 145px;
  }

  .csr26-hero-vertical-module .csr26-hero-vertical-module__media--hide-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .csr26-hero-vertical-module--lottie .csr26-hero-vertical-module__media {
    width: 100%;
  }
}

/* ==========================================================================
   MODULE: CSR-HERO
   Consolidated from main.css and csr-hero.module/module.css
   ========================================================================== */

.csr26-hero-module {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.csr26-hero-module .csr26-image-placeholder {
  min-height: 420px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   MODULE: CSR-ICON-CARDS
   Consolidated from main.css and csr-icon-cards.module/module.css
   ========================================================================== */

.csr26-icon-cards-module {
  padding: 80px 0;
}

.csr26-icon-cards-module .csr26-icon-card-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.csr26-icon-cards-module .csr26-image-placeholder {
  width: 64px;
  height: 64px;
  border: 1px dashed #8fa5a8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* ==========================================================================
   MODULE: CSR-ICON-GRID
   Consolidated from main.css and csr-icon-grid.module/module.css
   ========================================================================== */

.csr26-icon-grid-module {
  position: relative;
  padding: 0;
  background: #00252b;
  color: #fff;
}

.csr26-icon-grid__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

.csr26-icon-grid-module .csr26-image-placeholder {
  width: 48px;
  height: 48px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #93afa8;
}

.csr26-testimonial-card__xlarge {
  position: relative;
  width: 1090px;
  max-width: 100%;
  min-height: 175px;
  background: transparent;
  margin: 0 auto;
}

.csr26-testimonial-card__xlarge::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  width: 75%;
  height: 48px;
  background: #22b596;
  border-radius: 0 12px 0 0;
  z-index: 0;
}

.csr26-card-top__xlarge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 16px;
  width: 65%;
}

.csr26-card-bottom__xlarge {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.csr26-testimonial-content__xlarge {
  position: relative;
  z-index: 2;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.csr26-testimonial-footer__xlarge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 12px;
}

img.csr26-person-avatar-img__xlarge {
  width: 44px;
  height: 44px;
}

.csr26-quote-text__xlarge {
  margin-bottom: 18px;
  color: #040405;
  font-size: 22px;
  font-weight: 500;
}

.csr26-quote-icon__xlarge {
  width: 42px;
  margin-bottom: 16px;
}

.csr26-person-info__xlarge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.csr26-person-name__xlarge {
  color: #040405;
  font-size: 16px;
  font-weight: 600;
}

.csr26-person-title__xlarge {
  color: #040405;
  font-size: 16px;
  font-weight: 400;
}

/* ==========================================================================
   MODULE: CSR-ICON-LIST
   Consolidated from main.css and csr-icon-list.module/module.css
   ========================================================================== */

.csr26-image-icon-list-module {
  padding: 80px 0;
}

.csr26-image-icon-list {
  display: flex;
  align-items: center;
  gap: 64px;
}

.csr26-image-icon-list__media {
  flex: 0 0 52%;
  min-width: 0;
}

.csr26-image-icon-list__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.csr26-image-icon-list__media .csr26-image-placeholder {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(0, 0, 0, 0.15);
}

.csr26-image-icon-list__content {
  flex: 1;
  min-width: 0;
}

.csr26-image-icon-list__heading {
  margin-bottom: 28px;
}

.csr26-image-icon-list__heading h2 {
  margin: 0;
  color: var(--text-color);
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 500;
}

.csr26-image-icon-list__items {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.csr26-image-icon-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.csr26-image-icon-list__icon,
.csr26-image-icon-list__default-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.csr26-image-icon-list__icon {
  display: block;
  object-fit: contain;
}

.csr26-image-icon-list__default-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #1daf8a;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.csr26-image-icon-list__text {
  flex: 1;
  min-width: 0;
}

.csr26-image-icon-list__text p {
  margin: 0;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.csr26-image-icon-list__text > :last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   MODULE: CSR-IMAGE-BANNER
   Consolidated from main.css and csr-image-banner.module/module.css
   ========================================================================== */
.csr26-image-banner-module {
  padding: 75px 0;
}
.csr26-image-banner-module .csr26-image-placeholder {
  min-height: 180px;
  border: 1px dashed #8fa5a8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csr26-image-banner-module .csr26-image-banner {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   MODULE: CSR-IMAGE-FEATURE-LIST
   Consolidated from main.css and csr-image-feature-list.module/module.css
   ========================================================================== */

.csr26-image-feature-list {
  padding: 0;
  background: #00252b;
  color: #fff;
}

.csr26-image-feature-list .csr26-img-feature__list__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #c0dada33;
}

.csr26-image-feature-list--right .csr26-image-feature-list__image {
  order: 2;
}

.csr26-image-feature-list--right .csr26-image-feature-list__content {
  order: 1;
}

.csr26-image-feature-list__image {
  display: flex;
  align-items: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.csr26-image-feature-list__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csr26-image-feature-list .csr26-image-placeholder {
  width: 100%;
  min-height: 420px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93afa8;
}

.csr26-image-feature-list__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.csr26-image-feature-list .csr26-item-2 .csr26-image-placeholder {
  width: 44px;
  min-height: 44px;
  height: 44px;
  flex: 0 0 44px;
  font-size: 9px;
}

.csr26-testimonial-card__xlarge::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  width: 75%;
  height: 48px;
  background: #22b596;
  border-radius: 0 12px 0 0;
  z-index: 0;
}

.csr26-testimonial-content__xlarge {
  position: relative;
  z-index: 2;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.csr26-testimonial-footer__xlarge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
}
.csr26-premium-feature-cards__grid .csr26-testimonial-card__wrapper {
  padding: 0;
}
.csr26-testimonial-card__wrapper {
  padding: 40px 64px;
}
.csr26-testimonial-card__wrapper--two .csr26-quote-text__xlarge {
  font-size: 18px;
  font-weight: 400;
}

.csr26-quote-text__xlarge {
  margin-bottom: 18px;
  color: #040405;
  font-size: 22px;
  font-weight: 500;
}

.csr26-quote-icon__xlarge {
  width: 42px;
  margin-bottom: 16px;
}

.csr26-person-info__xlarge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.csr26-person-name__xlarge {
  color: #040405;
  font-size: 16px;
  font-weight: 600;
}

.csr26-person-title__xlarge {
  color: #040405;
  font-size: 16px;
  font-weight: 400;
}

.csr26-cell-1::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100px;
  width: 100px;
  background-image: url("https://connectsecure.com/hubfs/raw_assets/public/connect-secure-redesign-2026/images/connectsecure/all-svg/turtle.svg");
}

/* ==========================================================================
   MODULE: CSR-IMAGE-ICON-CONTENT
   Consolidated from main.css and csr-image-icon-content.module/module.css
   ========================================================================== */

.csr26-image-icon-content-module .csr26-image-placeholder {
  min-height: 420px;
  border: 1px dashed #8fa5a8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csr26-image-icon-content__image {
  width: 100%;
  height: auto;
}

.csr26-image-icon-content__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.csr26-image-icon-content-module .csr26-item-3 .csr26-image-placeholder {
  min-height: 60px;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  font-size: 9px;
}

/* ==========================================================================
   MODULE: CSR-IMAGE-TEXT
   Consolidated from main.css and csr-image-text.module/module.css
   ========================================================================== */

.csr26-image-text-module {
  padding: 80px 0;
}

.csr26-image-text__header {
  text-align: center;
  max-width: 635px;
  margin: 0 auto 70px;
  color: #ffffff;
}

.csr26-image-text__header h3 {
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

.csr26-image-text__items {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.csr26-image-text-module .csr26-row-7 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 80px;
}

.csr26-image-text-module .csr26-column-13,
.csr26-image-text-module .csr26-column-14 {
  flex: 1 1 50%;
  min-width: 0;
}

.csr26-image-text__image {
  display: block;
  width: 100%;
  height: auto;
}

.csr26-image-text-module .csr26-image-placeholder {
  min-height: 300px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93afa8;
}

.csr26-image-text-module .csr26-column-14 h3 {
  margin: 0 0 20px;
}

.csr26-image-text-module .csr26-stack-4 > :first-child {
  margin-top: 0;
}

.csr26-image-text-module .csr26-stack-4 > :last-child {
  margin-bottom: 0;
}

.csr26-image-text--right .csr26-column-13 {
  order: 2;
}

.csr26-image-text--right .csr26-column-14 {
  order: 1;
}
.csr26-image-text-module::after {
  content: '';
  position: absolute;
  top: 500px;
  left: -10%;
  z-index: 0;
  width: 30%;
  height: 500px;
  pointer-events: none;
  background-image: url("");
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}

.csr26-image-text-module .csr-container {
  position: relative;
  z-index: 1;
}

.csr26-image-text__media {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.csr26-image-text__image,
.csr26-image-text__lottie {
  display: block;
  width: 100%;
  height: 100%;
}

.csr26-image-text__image {
  object-fit: contain;
}

.csr26-image-text__lottie {
  overflow: hidden;
}

.csr26-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   MODULE: CSR-INTEGRATION-CTA
   Consolidated from main.css and csr-integration-cta.module/module.css
   ========================================================================== */

.csr26-integration-cta-testimonial__wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.csr26-testimonial-card__square {
  position: relative;
  max-width: 100%;
  min-height: 250px;
  height: 100%;
  background: transparent;
  margin: 0 auto;
}

.csr26-testimonial-card__square::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  width: 75%;
  height: 48px;
  background: #22b596;
  border-radius: 0 12px 0 0;
  z-index: 0;
}

.csr26-card-top__square {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f5354;
  border-radius: 16px;
  width: 65%;
}

.csr26-card-bottom__square {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f5354;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.csr26-quote-icon__square {
  width: 42px;
  margin-bottom: 16px;
}

.csr26-testimonial-content__square {
  position: relative;
  z-index: 2;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  padding: 32px 18px 16px;
  height: 100%;
  justify-content: space-between;
}

.csr26-quote-text__square,
.csr26-quote-text__square p {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}

.csr26-person-info__square {
  display: flex;
  gap: 12px;
}

.csr26-person-name__square {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.csr26-person-title__square {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.csr26_btn__square {
  margin-top: 24px;
}

.csr26-testimonial-card__square.theme--light .csr26-quote-text__square,
.csr26-testimonial-card__square.theme--light .csr26-quote-text__square p,
.csr26-testimonial-card__square.theme--light .csr26-person-name__square,
.csr26-testimonial-card__square.theme--light .csr26-person-title__square {
  color: #040405 !important;
}
.csr26_btn__square .csr26-btn.csr26-secondary--btn {
  color: #fff !important;
}

.csr26_btn__square .csr26-btn.csr26-secondary--btn:hover {
  color: rgb(1, 55, 63) !important;
}
.csr26_btn__square .csr26-btn.csr26-secondary--btn:hover svg path {
  stroke: rgb(1, 55, 63) !important;
}
.csr26-integration-cta-testimonial {
  padding: 80px 0;
}

.csr26-integration-cta-testimonial__cta {
  position: relative;
  width: 65%;
  min-height: 455px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 48px 40px 48px 40px;
  background: #034f56;
  border-radius: 14px;
}

.csr26-integration-cta-testimonial__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 470px;
}

.csr26-integration-cta-testimonial__content h2 {
  margin: 0 0 20px;
  color: #fff;
}

.csr26-integration-cta-testimonial__description {
  max-width: 430px;
}

.csr26-integration-cta-testimonial__description p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.55;
}

.csr26-integration-cta-testimonial__artwork {
  position: absolute;
  z-index: 1;
  right: -0;
  bottom: 0;
  width: 300px;
}

.csr26-integration-cta-testimonial__artwork-mobile {
  display: none;
}
/* ==========================================================================
   MODULE: CSR-LOGO-LIST
   Consolidated from main.css and csr-logo-list.module/module.css
   ========================================================================== */

.csr26-logo-list-module {
  padding: 75px 0;
}
.csr26-logo-list__heading {
  text-align: center;
  margin-bottom: 40px;
}

.csr26-logo-list-module .csr26-logo-list__item {
  min-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.csr26-logo-list-module .csr26-logo-list__item img {
  max-width: 180px;
}
.csr26-logo-list-module .csr26-logo-list__item strong,
.csr26-logo-list-module .csr26-logo-list__item span {
  display: block;
}

.csr26-logo-list-module .csr26-image-placeholder {
  width: 110px;
  height: 80px;
  margin: 0 auto 12px;
  border: 1px dashed #8fa5a8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #667;
}

.csr26-logo-marquee {
  width: 100%;
  overflow: hidden;
}

.csr26-logo-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: csr26-logo-marquee-scroll var(--csr26-marquee-duration, 35s) linear
    infinite;
  will-change: transform;
}

.csr26-logo-marquee__group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
  gap: 48px;
  padding-right: 30px;
}

.csr26-logo-marquee__group .csr26-logo-list__item {
  flex-shrink: 0;
}

@keyframes csr26-logo-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================================
   MODULE: CSR-PREMIUM-FEATURE-CARDS
   Consolidated from main.css and csr-premium-feature-cards.module/module.css
   ========================================================================== */

.csr26-testimonial-card__square {
  position: relative;
  max-width: 100%;
  min-height: 250px;
  background: transparent;
  margin: 0 auto;
}

.csr26-testimonial-card__square::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  width: 75%;
  height: 48px;
  background: #22b596;
  border-radius: 0 12px 0 0;
  z-index: 0;
}

.csr26-card-top__square {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f5354;
  border-radius: 16px;
  width: 65%;
}

.csr26-card-bottom__square {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f5354;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.csr26-quote-icon__square {
  width: 42px;
  margin-bottom: 16px;
}

.csr26-testimonial-content__square {
  position: relative;
  z-index: 2;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  padding: 32px 18px 16px;
}

.csr26-quote-text__square,
.csr26-quote-text__square p {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}

.csr26-person-info__square {
  display: flex;
  gap: 12px;
}
.csr26-person-info__square .csr26-person-avatar-img__square {
  width: 44px;
  height: 44px;
}
.csr26-person-name__square {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.csr26-person-title__square {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.csr26_btn__square {
  margin-top: 28px;
}

.csr26-premium-feature-cards {
  padding: 90px 0;
}

.csr26-premium-feature-cards__heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.csr26-premium-feature-cards__heading h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 500;
  color: var(--text-color);
}

.csr26-premium-feature-cards__heading span {
  color: var(--text-mint);
}

.csr26-premium-feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.csr26-premium-feature-card {
  position: relative;
  min-height: 310px;
  padding: 28px 22px 26px;
  background: #fff;
  border: 1px solid rgba(192, 218, 218, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.csr26-premium-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--text-mint);
}

.csr26-premium-feature-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.csr26-premium-feature-card__icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 60px;
  height: 60px;
}

.csr26-premium-feature-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--text-color);
}

.csr26-premium-feature-card__description p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.6;
  color: #545454;
}

.csr26-premium-feature-card__description p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   MODULE: CSR-SECTION-HEADING
   Consolidated from main.css and csr-section-heading.module/module.css
   ========================================================================== */

.csr26-section-heading-module {
  position: relative;
  text-align: center;
}

.csr26-section-heading-module__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.csr26-section-heading-module h2 {
  margin: 0;
  color: #fff;
}

.csr26-section-heading-module h2 span {
  color: #22fcc3;
}

.csr26-section-heading-module--solid {
  padding: 110px 0 55px;
  background: #00252b;
}

.csr26-section-heading-module--pattern {
  padding: 100px 0 45px;
}

/* ==========================================================================
   MODULE: CSR-SIMPLE-CTA
   Consolidated from main.css and csr-simple-cta.module/module.css
   ========================================================================== */

.csr26-simple-cta {
  width: 100%;
}

.csr26-simple-cta__artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.csr26-simple-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 80px;
  min-height: 264px;
  padding: 47px 48px 48px;
}

.csr26-simple-cta__heading {
  margin: 0;
  max-width: 510px;
  color: #fff;
  font-family: var(--font-family-primary);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.csr26-simple-cta__heading h3 {
  color: #fff;
  font-weight: 600;
}

.csr26-simple-cta__heading-suffix {
  white-space: pre-line;
}

.csr26-simple-cta__description {
  max-width: 485px;
  margin: 0 0 27px;
  color: #fff;
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.csr26-simple-cta__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* ==========================================================================
   MODULE: MENU
   Consolidated from main.css and menu.module/module.css
   ========================================================================== */

.menu--desktop {
  display: block;
}

.menu--mobile {
  display: none;
}

.menu__item {
  position: relative;
}

.menu__link {
  font-size: 0.917rem;
  line-height: 1.667rem;
  text-decoration: none;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:active {
  text-decoration: none;
}

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: bold;
}

.menu__item--depth-1 {
  display: inline-block;
  padding: 0.7rem 0.875rem;
  text-transform: uppercase;
}

.menu__item--depth-1 > .menu__link--active-link:after {
  bottom: -3px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.menu__submenu {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: none;
  left: 0;
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: 270px;
  z-index: 99;
}

.menu__item--open > .menu__submenu {
  display: block;
}

.menu__submenu--level-2 {
  transform: translateX(-50%);
}

.menu__item--depth-1:first-child .menu__submenu--level-2 {
  transform: unset;
}

.menu__submenu .menu__item {
  border-bottom: 1px solid #d1d6dc;
  padding: 0;
  width: 100%;
}

.menu__submenu .menu__link {
  display: block;
  padding: 0.7rem 1.05rem;
  transition: background-color 0.3s;
  width: 100%;
}

.menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

.menu__item--depth-1:nth-last-child(-n/**/+2) .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

.menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 3rem;
}

/* ==========================================================================
   MODULE: SOCIAL-FOLLOW
   Consolidated from main.css and social-follow.module/module.css
   ========================================================================== */

.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links__icon {
  border-radius: 50%;
  display: inline-flex;
  height: 1.75rem;
  margin: 0 0.35rem;
  position: relative;
  width: 1.75rem;
}

.social-links__icon svg {
  fill: #fff;
  height: 0.625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.social-links__icon:hover svg,
.social-links__icon:focus svg,
.social-links__icon:active svg {
  fill: #fff;
}

/* ==========================================================================
   TABLET / IPAD PRO: (MAX-WIDTH: 1024PX)
   ========================================================================== */

/* ==========================================================================
   MOBILE: (MAX-WIDTH: 767PX)
   ========================================================================== */

/* ==========================================================================
   PRESERVED DESIGN BREAKPOINT: (PREFERS-REDUCED-MOTION: REDUCE)
   ========================================================================== */

/* ==========================================================================
   PRESERVED DESIGN BREAKPOINT: (MAX-WIDTH: 1100PX)
   ========================================================================== */

/* ==========================================================================
   PRESERVED DESIGN BREAKPOINT: (MAX-WIDTH: 991PX)
   ========================================================================== */

/* ==========================================================================
   PRESERVED DESIGN BREAKPOINT: (MAX-WIDTH: 900PX)
   ========================================================================== */

/* ==========================================================================
   PRESERVED DESIGN BREAKPOINT: (MAX-WIDTH: 768PX)
   ========================================================================== */

/* Footer */
.ConSec-footer-top-outer-wrap {
  background: #193039;
}

.ConSec-footer-bottom-outer-wrap {
  background: #274652;
  padding-bottom: 100px;
  padding-top: 35px;
}

.ConSec-footer-bottom-inner-wrap .content-wrapper {
  width: 100%;
}

.ConSec-footer-new-bottom-outer-wrap {
  background: #193039;
  padding-bottom: 100px;
  padding-top: 35px;
}

.ConSec-footer-new-bottom-outer-wrap .content-wrapper {
  width: 100%;
}

.ConSec-footer-bottom-inner-wrap,
.ConSec-footer-logo-contact,
.ConSec-footer-new-bottom-inner-wrap {
  padding: 0 2%;
}
/* ==========================================================================
   PRESERVED DESIGN BREAKPOINT: (MIN-WIDTH: 768PX) AND (MAX-WIDTH: 1150PX)
   ========================================================================== */

/* ==========================================================================
   PRESERVED DESIGN BREAKPOINT: (MIN-WIDTH: 768PX)
   ========================================================================== */

/* ==========================================================================
   GLOBAL RESPONSIVE TYPOGRAPHY
   ========================================================================== */

/* Editor Override */

/* ========================================================================== 
   RESPONSIVE MEDIA QUERIES — LARGEST TO SMALLEST
   ========================================================================== */

@media (max-width: 1220px) {
  .csr-container {
    padding: 0 20px;
  }
}

@media (min-width: 768px) and (max-width: 1150px) {
  /* Module: menu
     ---------------------------------------------------------------------- */

  .menu__link {
    font-size: 0.833rem;
  }
}

@media (max-width: 1024px) {
  .csr-logo-list__sm--heading {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  .csr26-card-heading__grid {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    text-align: center;
  }
  .csr26-column-5 {
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .csr26-cta-module__wrapper .csr26-column__img {
    display: none;
  }
}

@media (max-width: 1024px) {
  /* Global Padding */

  .csr-container {
    padding: 0 20px;
  }

  .trail-btn {
    padding: 12px 32px;
  }

  /* Typography adjustments */
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  /* Navigation & Menu */
  .csr26-row-1 {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    display: none;
  }

  .csr26-column-1,
  .csr26-column-2 {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .csr26-icon-1 {
    display: block;
  }

  .csr26-list-1 {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 15px;
    padding-top: 20px;
  }

  .csr26-list-1 a {
    font-size: 16px;
  }

  .csr26-mega-item p {
    color: #545454 !important;
  }

  .csr26-toggle-1:checked ~ .csr26-list-1 {
    display: flex;
  }

  .csr26-group-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }

  .csr26-group-1 a {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  /* Hero Section */
  .csr26-hero-banner__grid {
    flex-direction: column;
    padding: 140px 0 60px 0;
    text-align: center;
  }
  .csr26-hero-banner__column_one {
    width: 100%;
  }

  .csr26-hero-banner__column_one button {
    margin: 20px auto;
    justify-content: center;
  }

  .csr26-hero-banner__column_one p,
  .csr26-hero-banner__column_one p.lead,
  .csr26-hero-banner__column_one p.bellow-para {
    margin-left: auto;
    margin-right: auto;
  }

  .csr26-hero-banner__column_two {
    position: static;
    right: auto;
    width: 100%;
    order: 2;
    margin-top: 0px;
    padding-top: 0px;
  }

  .csr26-hero-banner__column_two .mockup {
    margin: 0 auto;
    object-fit: fill;
  }

  .csr26-hero-banner__column_two img {
    height: auto;
  }

  /* Certified & Maintain Section */

  #certified {
    padding: 60px 0;
  }

  .csr26-logo-list__wrapper {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .csr26-logo-list__wrapper img {
    width: auto;
  }

  .csr26-row-4 {
    flex-direction: column;
    gap: 40px;
  }

  .csr26-column-5,
  .csr26-column-6 {
    width: 100%;
  }

  .csr26-item-1 {
    gap: 15px;
  }

  .csr26-card-1 {
    border-right: none !important;
    border-bottom: 1px solid rgba(15, 23, 34, 0.08);
    padding: 24px;
    align-items: center;
    text-align: center;
  }

  .csr26-card-1:last-child {
    border-bottom: none;
  }

  .csr26-image-banner__wrapper {
    padding: 40px 0;
  }

  .csr26-image-banner__wrapper img {
    width: 100%;
  }

  /* Visibility Section */

  .csr26-icon-cards__wrapper {
    padding: 0 0;
  }

  #team {
    padding: 60px 0;
  }

  .csr26-image-banner__wrapper {
    padding: 0 0;
  }

  .csr26-section-3 {
    padding: 60px 0;
  }

  .csr26-section-4 {
    padding: 60px 0;
  }

  .csr26-section-5 {
    padding: 60px 0;
  }

  .csr26-section-6 {
    padding: 60px 0;
  }

  /* Maintain CTA Section */
  .csr26-cta-module__wrapper {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .csr26-column__text {
    width: 100%;
    align-items: center;
    gap: 30px;
  }

  .csr26-group-3 button {
    margin: 0 auto;
  }

  .csr26-column__img {
    width: 100%;
    height: 400px;
  }

  .csr26-column__img img {
    max-width: 100%;
    height: 400px;
  }

  /* How It Helps Feature Block */
  .csr26-row-5 {
    flex-direction: column !important;
  }

  .csr26-column-9 {
    border: none !important;
    padding: 0px 0;
  }

  .csr26-column-10 {
    padding: 30px 20px;
  }

  .csr26-column-a-1 img,
  .csr26-column-b-2 img {
    scale: 1 !important;
    width: 100%;
  }

  /* Visibility Grid */
  .csr26-grid-3 {
    grid-template-columns: 1fr;
  }

  .csr26-cell-2:nth-last-child(-n + 3) {
    border-bottom: 1px solid #c0dada33;
  }
  .csr26-cell-1,
  .csr26-cell-2 {
    border-top: none;
    border-right: none !important;
    border-bottom: 1px solid #c0dada33;
    padding: 30px 20px;
  }
  .csr26-cell-1 h3 {
    font-size: 28px;
  }
  .csr26-cell-1 h3,
  .csr26-cell-2 h4,
  .csr26-cell-2 p {
    text-align: center;
    width: 100%;
  }

  .csr26-icon-4 {
    text-align: center;
  }

  /* Compliance details */
  .csr26-row-6 {
    flex-direction: column;
    gap: 40px;
  }

  .csr26-column-11,
  .csr26-column-12 {
    width: 100%;
    padding-right: 0;
  }

  .csr26-image-wrapper-2 {
    padding: 0px;
  }

  /* External Risks */
  .csr26-row-7 {
    flex-direction: column;
    gap: 0px;
    text-align: center;
  }

  /* CTA Section */
  .csr26-row-8 {
    flex-direction: column;
    gap: 40px;
  }

  .csr26-column-15,
  .csr26-column-16 {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }

  .csr26-image-wrapper-3 {
    margin: 20px auto 0 auto;
  }

  .csr26-row-9 {
    flex-direction: column;
  }

  /* Site Footer */
  .csr26-row-10 {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .csr26-group-4 {
    flex-direction: column;
    align-items: start;
    padding: 30px 0;
    gap: 5px;
  }

  .csr26-row-13 {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }

  .csr26-row-14 {
    flex-wrap: wrap;
    gap: 30px;
    padding-right: 0;
    justify-content: start;
  }

  .csr26-column-18 {
    text-align: center;
    width: 25%;
  }

  .csr26-column-19 {
    align-items: center;
    text-align: center;
  }

  .csr26-group-5 {
    text-align: center;
  }

  .csr26-form-1 {
    margin: 0 auto;
  }

  .csr26-group-6 {
    text-align: center;
  }

  .csr26-row-15 {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .csr26-column-20,
  .csr26-column-21 {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .csr26-premium-feature-cards__heading {
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  /* Module: csr-full-width-img-banner
     ---------------------------------------------------------------------- */
  .csr26-testimonial-card--large {
    max-width: 90vw;
  }
  .csr26-testimonial-footer {
    flex-direction: column;
    align-items: start;
  }

  .csr26-mega-trigger:hover,
  .csr26-mega-trigger:focus-visible,
  .csr26-mega-item:hover > .csr26-mega-trigger,
  .csr26-mega-item.csr26-mega-open > .csr26-mega-trigger {
    color: #1e8c70;
  }

  /* Module: csr-icon-cards
     ---------------------------------------------------------------------- */

  .csr26-icon-cards__grd {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Module: csr-image-feature-list
     ---------------------------------------------------------------------- */

  .csr26-testimonial-card__wrapper {
    padding: 40px;
  }

  .csr26-testimonial-card__wrapper--two.csr26-testimonial-card__wrapper {
    padding: 40px;
    position: relative;
    top: 0;
    left: 0;
    border: 1px solid #c0dada33;
  }

  .csr26-testimonial-card__wrapper--two.csr26-testimonial-card__wrapper
    .csr26-testimonial-card__xlarge {
    width: 1090px;
  }
}

@media only screen and (max-width: 1024px) {
  .csr26-integration-cta-testimonial__wrapper {
    flex-direction: column;
  }
  .csr26-integration-cta-testimonial__button {
    margin-top: 30px;
  }
  .csr26-integration-cta-testimonial__artwork {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .ConSec-footer-bottom-inner-wrap {
    flex-wrap: nowrap;
  }
}

@media only screen and (max-width: 1024px) {
  .ConSec-footer-new-bottom-inner-wrap {
    flex-wrap: nowrap;
  }
}

@media (max-width: 991px) {
  /* Module: csr-cards
     ---------------------------------------------------------------------- */

  .csr26-cards__grid {
    grid-template-columns: 1fr;
  }

  .csr26-card {
    min-height: auto;
  }

  /* Module: csr-faq-testimonial
     ---------------------------------------------------------------------- */

  .csr26-faq-testimonial__grid {
    gap: 30px;
  }

  .csr26-faq-testimonial-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .csr26-faq-testimonial-card__story {
    align-self: flex-start;
  }

  /* Module: csr-icon-list
     ---------------------------------------------------------------------- */

  .csr26-image-icon-list {
    gap: 40px;
  }

  .csr26-image-icon-list__media {
    flex-basis: 48%;
  }

  /* Module: csr-premium-feature-cards
     ---------------------------------------------------------------------- */

  /* Module: csr-simple-cta
     ---------------------------------------------------------------------- */

  .csr26-simple-cta__content {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    padding: 42px 36px;
  }

  .csr26-simple-cta__heading {
    width: 100%;
    font-size: 29px;
  }

  .csr26-simple-cta__description {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .csr26-cell-2 {
    align-items: center;
  }
}

@media (max-width: 767px) {
  /* Further typography scaling */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }
  .csr26-btn,
  .csr26-buttons__wrapper .csr26-btn.csr26-secondary--btn {
    font-size: var(--text-xl);
    padding: 12px 24px;
  }

  .trail-btn {
    padding: 12px 32px;
    font-size: 14px;
  }

  .csr26-group-3 .trail-btn {
    font-size: 14px;
    padding: 12px 40px;
  }
  .csr26-testimonial-icon-list_layout--vertical .csr26-item-1 {
    align-items: center;
  }
  .csr26-testimonial-icon-list_layout--vertical .csr26-item-1 .csr26-testimonial-icon-list_item__content{
    text-align: center;
  }
  .csr26-testimonial-icon-list-module .csr26-row-4 {
    display: block;
  }
  .csr26-testimonial-icon-list-module .csr26-column-5,
  .csr26-testimonial-icon-list-module .csr26-column-6 {
    width: 100%;
  }
  .csr26-testimonial-icon-list-module .csr26-column-6 {
    margin-top: 45px;
  }
  .csr26-testimonial-icon-list-module .csr26-testimonial-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .csr26-person-title {
    max-width: 200px;
    white-space: normal;
  }
  .csr26-testimonial-card--large .csr26-person-title {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .csr26-full-width-img-banner-image {
    display: none;
  }
  .csr26-testimonial-card.csr26-testimonial-card--large,
  .position__float {
    position: relative;
  }
  .csr26-testimonial-card--large {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .csr26-full-width-img-banner-module {
    padding: 0;
    margin-bottom: 0;
  }
  .csr26-testimonial-card:before,
  .csr26-faq-testimonial-card:before {
    border-radius: 0 12px 0 0;
    content: '';
    height: 48px;
    left: 0;
    position: absolute;
    top: 27px;
    width: 75%;
    z-index: 0;
  }
  .csr26-testimonial-card--large .csr26-testimonial-content,
  .csr26-testimonial-content,
  .csr26-faq-testimonial-card__content,
  .csr26-faq-testimonial-card__content {
    gap: 0;
    padding: 32px 18px 16px;
  }
  .csr26-testimonial-card--large .csr26-quote-icon,
  .csr26-faq-testimonial-card__quote-icon {
    width: 42px;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .ConSec-search-wrap {
    left: 16px !important;
    right: 16px !important;
    width: auto;
    padding: 14px;
    border-radius: 8px;
  }

  .ConSec-search-wrap::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .csr26-hero-vertical-module-banner__grid {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .csr26_btn__xlarge {
    margin-left: 60px;
  }
  .csr26-main-nav__link {
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .csr26-image-banner-module {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .csr26_btn__square {
    margin-left: 58px;
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  /* Module: csr-cards
     ---------------------------------------------------------------------- */

  .csr26-cards-module {
    padding: 60px 0;
  }

  .csr26-card {
    padding: 24px;
  }

  .csr26-card__title h3 {
    font-size: 28px;
  }
  .csr26-label-1 {
    font-size: 30px;
  }
  .csr26-card__text p {
    font-size: 16px;
  }

  /* Module: csr-cta-feature-list
     ---------------------------------------------------------------------- */

  .csr26-cta-feature-list-module .csr26-row-8 {
    display: block;
  }

  .csr26-cta-feature-list-module .csr26-column-15,
  .csr26-cta-feature-list-module .csr26-column-16 {
    width: 100%;
  }

  .csr26-cta-feature-list-module .csr26-column-16 {
    margin-top: 45px;
  }

  .csr26-cta-feature-list-module .csr26-feature-list-editable {
    grid-template-columns: 1fr;
  }

  /* Module: csr-faq-testimonial
     ---------------------------------------------------------------------- */

  .csr26-faq-testimonial-module {
    padding: 60px 0;
  }

  .csr26-faq-testimonial__heading {
    margin-bottom: 28px;
    font-size: 30px;
  }

  .csr26-faq-testimonial__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .csr26-faq-testimonial-card {
    margin: 30px 0;
  }

  .csr26-faq-testimonial-card__content {
    min-height: 175px;
  }

  .csr26-faq-testimonial-card__quote {
    font-size: 20px;
  }

  .csr26-faq-testimonial-module .csr26-faq-question-text {
    font-size: 18px;
  }

  .csr26-faq-testimonial-module .csr26-answer-1 p {
    font-size: 15px;
  }

  /* Module: csr-icon-cards
     ---------------------------------------------------------------------- */

  .csr26-icon-cards__grd {
    grid-template-columns: repeat(1, 1fr);
  }

  /* Module: csr-icon-grid
     ---------------------------------------------------------------------- */

  .csr26-icon-grid-module .csr26-icon-grid {
    grid-template-columns: 1fr;
    border-top: none;
  }

  /* Module: csr-icon-list
     ---------------------------------------------------------------------- */

  .csr26-image-icon-list-module {
    padding: 60px 0;
  }

  .csr26-image-icon-list {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  .csr26-image-icon-list__media {
    flex-basis: auto;
    width: 100%;
  }

  .csr26-image-icon-list__heading {
    margin-bottom: 24px;
  }

  .csr26-image-icon-list__heading h2 {
    font-size: 30px;
  }

  .csr26-image-icon-list__items {
    gap: 15px;
  }

  .csr26-image-icon-list__text p {
    font-size: 16px;
  }

  /* Module: csr-image-feature-list
     ---------------------------------------------------------------------- */

  .csr26-image-feature-list .csr26-img-feature__list__wrapper {
    grid-template-columns: 1fr;
  }

  .csr26-image-feature-list--right .csr26-image-feature-list__image,
  .csr26-image-feature-list--right .csr26-image-feature-list__content {
    order: initial;
  }

  /* Module: csr-image-text
     ---------------------------------------------------------------------- */

  .csr26-image-text-module {
    padding: 60px 0;
  }

  .csr26-image-text__header {
    margin-bottom: 45px;
  }

  .csr26-image-text__items {
    gap: 60px;
  }

  .csr26-image-text-module .csr26-row-7 {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .csr26-image-text--right .csr26-column-13,
  .csr26-image-text--right .csr26-column-14 {
    order: initial;
  }

  /* Module: csr-integration-cta
     ---------------------------------------------------------------------- */

  .csr26-integration-cta-testimonial {
    padding: 30px 0;
  }

  .csr26-integration-cta-testimonial__cta {
    min-height: auto;
    padding: 32px 24px 300px;
  }

  .csr26-integration-cta-testimonial__content h2 {
    font-size: 32px;
  }

  .csr26-integration-cta-testimonial__description p {
    font-size: 18px;
  }
  .csr26-integration-cta-testimonial__cta {
    min-height: 620px;
    padding: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .csr26-testimonial-card__wrapper {
    width: 100%;
  }

  .csr26-integration-cta-testimonial__artwork-mobile {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    display: block;
  }
  .csr26-integration-testimonial__quote {
    font-size: 18px;
  }

  /* Module: csr-premium-feature-cards
     ---------------------------------------------------------------------- */

  .csr26-premium-feature-cards {
    padding: 60px 0;
  }

  .csr26-premium-feature-cards__grid {
    grid-template-columns: 1fr;
  }

  .csr26-premium-feature-card {
    min-height: auto;
  }

  /* Module: csr-simple-cta
     ---------------------------------------------------------------------- */

  .csr26-simple-cta__inner {
    min-height: auto;
  }

  .csr26-simple-cta__content {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 40px 24px;
    gap: 12px;
  }

  .csr26-simple-cta__heading-wrap {
    max-width: none;
  }

  .csr26-simple-cta__heading {
    font-size: 28px;
  }

  .csr26-simple-cta__description {
    max-width: none;
    margin-bottom: 22px;
    font-size: 17px;
  }

  .csr26-simple-cta__button {
    min-width: 0;
  }

  .csr26-simple-cta__artwork {
    width: auto;
    min-width: 100%;
    height: 100%;
    object-position: center;
  }

  /* Module: menu
     ---------------------------------------------------------------------- */

  .menu--desktop {
    display: none;
  }

  .menu--mobile {
    display: block;
  }

  .menu__item {
    display: block;
    width: 100%;
  }

  .menu__link {
    display: block;
    font-size: 1.083rem;
  }

  .menu__item--depth-1 {
    border-top: 2px solid #ced4db;
    padding: 0;
  }

  .menu__item--depth-1 > .menu__link {
    padding: 0.35rem 1.225rem;
  }

  .menu__item--depth-1 > .menu__link--active-link:after {
    content: none;
  }

  .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
  }

  .menu__submenu .menu__item {
    background-color: #fff;
    border-bottom: none;
    border-top: 2px solid #ebeff3;
    padding: 0;
  }

  .menu__submenu .menu__link {
    display: block;
    padding: 0.7rem 2rem;
    transition: none;
    width: 100%;
  }

  .menu__submenu .menu__item .menu__link:hover,
  .menu__submenu .menu__item .menu__link:focus {
    background-color: inherit;
    transition: none;
  }

  .menu__item--has-submenu > .menu__link {
    width: 70%;
  }

  .menu__submenu--level-3 .menu__item .menu__link {
    padding: 0.7rem 3rem;
  }

  .menu__child-toggle {
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 55px;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
  }

  .menu__child-toggle-icon {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgc3Ryb2tlPSIjOTc5ODlGIiBzdHJva2Utd2lkdGg9IjIuNCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cmVjdCB4PSIxLjIiIHk9IjkuNiIgd2lkdGg9IjE2LjgiIGhlaWdodD0iMSIgcng9Ii41Ii8+PHJlY3QgdHJhbnNmb3JtPSJyb3RhdGUoOTAgOS42IDkuNikiIHg9IjEuMiIgeT0iOS42IiB3aWR0aD0iMTYuOCIgaGVpZ2h0PSIxIiByeD0iLjUiLz48L2c+PC9zdmc+);
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    margin-left: auto;
    margin-right: 1.05rem;
    transition: transform 0.4s;
    width: 20px;
  }

  .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(45deg);
    transition: transform 0.4s;
  }
}

@media (max-width: 767px) {
  /* Module: csr-icon-grid
     ---------------------------------------------------------------------- */

  .csr26-testimonial-card__wrapper {
    padding: 16px;
  }

  .csr26-testimonial-card__xlarge {
    width: 100%;
    min-height: auto;
  }

  .csr26-card-top__xlarge {
    width: 100%;
  }

  .csr26-card-bottom__xlarge {
    width: 100%;
  }

  .csr26-quote-text__xlarge {
    font-size: 18px;
  }

  /* Module: csr-image-feature-list
     ---------------------------------------------------------------------- */

  .csr26-testimonial-card__wrapper {
    padding: 16px;
  }

  .csr26-testimonial-card__xlarge {
    width: 100%;
    min-height: auto;
  }

  .csr26-card-bottom__xlarge {
    width: 100%;
  }

  .csr26-quote-text__xlarge {
    font-size: 18px;
  }

  .csr26-testimonial-footer__xlarge {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .get-more__visibility--heading {
    text-align: center;
  }
}

/* ========================================================================== 
   NON-BREAKPOINT MEDIA QUERIES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .csr26-logo-marquee__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Module: csr-logo-list
     ---------------------------------------------------------------------- */

  .csr26-logo-marquee__track {
    animation-play-state: paused;
  }
}