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

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.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 HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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 {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

.hs-button{
    background-color: #009f9d;
    border-color: #009f9d;
    color: #ffffff;
    border-radius:15px;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  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;
  }
}

/* Emixa XD Styles */
/*! 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;
  }
  
  /**
   * Render the `main` element consistently in IE.
   */
  
  main {
    display: block;
  }
  
  /**
   * 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
     ========================================================================== */
  
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  
  /**
   * 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
     ========================================================================== */
  
  /**
   * Remove the gray background on active links in IE 10.
   */
  
  a {
    background-color: transparent;
  }
  
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
  }
  
  /* Embedded content
     ========================================================================== */
  
  /**
   * Remove the border on images inside links in IE 10.
   */
  
  img {
    border-style: none;
  }
  
  /* 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 */
  }
  
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  
  button,
  input { /* 1 */
    overflow: visible;
  }
  
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 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;
  }
  
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
  
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  
  progress {
    vertical-align: baseline;
  }
  
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  
  textarea {
    overflow: auto;
  }
  
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  
  /**
   * 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, IE 10+, and Firefox.
   */
  
  details {
    display: block;
  }
  
  /*
   * Add the correct display in all browsers.
   */
  
  summary {
    display: list-item;
  }
  
  /* Misc
     ========================================================================== */
  
  /**
   * Add the correct display in IE 10+.
   */
  
  template {
    display: none;
  }
  
  /**
   * Add the correct display in IE 10.
   */
  
  [hidden] {
    display: none;
  }

  *, ::before, ::after {
    box-sizing: border-box;
  }
/* Font : IBM Flex Sans*/
/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap'); */

/* Font : Alegreya */
/* @import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 */
:root {
    --font-ibm : 'IBM Plex Sans', sans-serif;
    --font-alegreya : 'Alegreya', serif;
}
html {
    scroll-behavior:smooth;
    scroll-padding-top: 60px;
}
body {
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
}

/* default title class */
.title{
    font-size: 1.5rem;
    line-height: 1.25;
    color: #213059;
}

@media (min-width:992px) {
    .title{
        font-size: 2.5rem;
        line-height: 1.25;
    }
}

/* button default */
.btn{
    border-radius: 5px;
    background-color: #FFFFFF;
    border: none;
    padding: 7px 26px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: #213059;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
}

.bg-white {
    background: #fff;
}
.bg-grey {
    background: #F2F2F2;
}
.bg-dark-blue {
    background: #002C5B;
}
.width-auto {
    width: auto;
}
.height-auto {
    height: auto;
}
.h-100 {
    height: 100%;
}
.position-relative {
    position: relative !important;
}
.container, .container-fluid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    max-width: 100%;
    width:100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.padding-container {
    padding-top: 150px;
    padding-bottom: 150px;
}

/* start: text properties */
.text-bold {
    font-weight: 700;
}

.text-semibold {
    font-weight: 500;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-dark-blue{
    color: #002C5B;
}

.text-light-blue{
    color: #007BFF;
}

.text-white{
    color: #fff !important;
}

.text-decoration-underline {
    text-decoration: underline;
}
.text-decoration-none {
    text-decoration: none;
}
/* end: text properties */
/* start: display properties*/
.d-none {
    display: none !important;
}
.d-block {
    display: block !important;
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
    
    .text-lg-left {
        text-align: left !important;
    }
    
    .text-lg-right {
        text-align: right !important;
    }
}
/* end: display properties*/
/* start: flex properties */
.d-flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-shrink {
    flex-shrink: 1 !important;
}

.flex-noshrink {
    flex-shrink: 0 !important;
}

.flex-grow {
    flex-grow: 1 !important;
}

.flex-nogrow {
    flex-grow: 0 !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

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

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

@media (min-width:767px){
  .flex-md-row{
    flex-direction:row;
  }
}

@media (min-width:992px) {
    .flex-lg-row {
        flex-direction: row;
    }
    
    .flex-lg-column {
        flex-direction: column;
    }
    
    .flex-lg-row-reverse {
        flex-direction: row-reverse;
    }
    
    .flex-lg-column-reverse {
        flex-direction: column-reverse;
    }
    .justify-content-lg-start {
        justify-content: flex-start;
    }
    
    .justify-content-lg-end {
        justify-content: flex-end;
    }
    
    .justify-content-lg-center {
        justify-content: center;
    }
    
    .justify-content-lg-between {
        justify-content: space-between;
    }
    
    .justify-content-lg-around {
        justify-content: space-around;
    }
    
    .justify-content-lg-evenly {
        justify-content: space-evenly;
    }
    
    .align-items-lg-start {
        align-items: flex-start;
    }
    
    .align-items-lg-end {
        align-items: flex-end;
    }
    
    .align-items-lg-center {
        align-items: center;
    }
    
    .align-items-lg-baseline {
        align-items: baseline;
    }
    
    .align-items-lg-stretch {
        align-items: stretch;
    }
}
/* end: flex properties */
/* start: gap properties */
.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.gap-6 {
    gap: 4rem;
}

.gap-7 {
    gap: 5rem;
}

.gap-8 {
    gap: 6rem;
}

.gap-9 {
    gap: 7rem;
}

.gx-0 {
    column-gap: 0;
}

.gx-1 {
    column-gap: 0.25rem;
}

.gx-2 {
    column-gap: 0.5rem;
}

.gx-3 {
    column-gap: 1rem;
}

.gx-4 {
    column-gap: 1.5rem;
}

.gx-5 {
    column-gap: 3rem;
}

.gx-6 {
    column-gap: 4rem;
}

.gx-7 {
    column-gap: 5rem;
}

.gx-8 {
    column-gap: 6rem;
}

.gx-9 {
    column-gap: 7rem;
}

.gy-0 {
    row-gap: 0;
}

.gy-1 {
    row-gap: 0.25rem;
}

.gy-2 {
    row-gap: 0.5rem;
}

.gy-3 {
    row-gap: 1rem;
}

.gy-4 {
    row-gap: 1.5rem;
}

.gy-5 {
    row-gap: 3rem;
}

.gy-6 {
    row-gap: 4rem;
}

.gy-7 {
    row-gap: 5rem;
}

.gy-8 {
    row-gap: 6rem;
}

.gy-9 {
    row-gap: 7rem;
}
/* end: gap properties */
/* start: padding properties */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.pl-0 {
    padding-left: 0;
}

.pl-1 {
    padding-left: 0.25rem;
}

.pl-2 {
    padding-left: 0.5rem;
}

.pl-3 {
    padding-left: 1rem;
}

.pl-4 {
    padding-left: 1.5rem;
}

.pl-5 {
    padding-left: 3rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

.pr-0 {
    padding-right: 0;
}

.pr-1 {
    padding-right: 0.25rem;
}

.pr-2 {
    padding-right: 0.5rem;
}

.pr-3 {
    padding-right: 1rem;
}

.pr-4 {
    padding-right: 1.5rem;
}

.pr-5 {
    padding-right: 3rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}
@media (min-width:992px) {
    .p-lg-0 {
        padding: 0;
    }
    
    .p-lg-1 {
        padding: 0.25rem;
    }
    
    .p-lg-2 {
        padding: 0.5rem;
    }
    
    .p-lg-3 {
        padding: 1rem;
    }
    
    .p-lg-4 {
        padding: 1.5rem;
    }
    
    .p-lg-5 {
        padding: 3rem;
    }
    
    .pl-lg-0 {
        padding-left: 0;
    }
    
    .pl-lg-1 {
        padding-left: 0.25rem;
    }
    
    .pl-lg-2 {
        padding-left: 0.5rem;
    }
    
    .pl-lg-3 {
        padding-left: 1rem;
    }
    
    .pl-lg-4 {
        padding-left: 1.5rem;
    }
    
    .pl-lg-5 {
        padding-left: 3rem;
    }
    
    .pt-lg-0 {
        padding-top: 0;
    }
    
    .pt-lg-1 {
        padding-top: 0.25rem;
    }
    
    .pt-lg-2 {
        padding-top: 0.5rem;
    }
    
    .pt-lg-3 {
        padding-top: 1rem;
    }
    
    .pt-lg-4 {
        padding-top: 1.5rem;
    }
    
    .pt-lg-5 {
        padding-top: 3rem;
    }
    
    .pr-lg-0 {
        padding-right: 0;
    }
    
    .pr-lg-1 {
        padding-right: 0.25rem;
    }
    
    .pr-lg-2 {
        padding-right: 0.5rem;
    }
    
    .pr-lg-3 {
        padding-right: 1rem;
    }
    
    .pr-lg-4 {
        padding-right: 1.5rem;
    }
    
    .pr-lg-5 {
        padding-right: 3rem;
    }
    
    .pb-lg-0 {
        padding-bottom: 0;
    }
    
    .pb-lg-1 {
        padding-bottom: 0.25rem;
    }
    
    .pb-lg-2 {
        padding-bottom: 0.5rem;
    }
    
    .pb-lg-3 {
        padding-bottom: 1rem;
    }
    
    .pb-lg-4 {
        padding-bottom: 1.5rem;
    }
    
    .pb-lg-5 {
        padding-bottom: 3rem;
    }
    
    .py-lg-0 {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .py-lg-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    
    .py-lg-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .py-lg-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .py-lg-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .py-lg-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .px-lg-1 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .px-lg-2 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .px-lg-3 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .px-lg-4 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .px-lg-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
/* end: padding properties */
/* start: margin properties */
.m-auto {
    margin: auto;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-3 {
    margin: 1rem;
}

.m-4 {
    margin: 1.5rem;
}

.m-5 {
    margin: 3rem;
}

.ml-auto {
    margin-left: auto;
}

.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.5rem;
}

.ml-5 {
    margin-left: 3rem;
}

.mt-auto {
    margin-top: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mr-auto {
    margin-right: auto;
}

.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 1rem;
}

.mr-4 {
    margin-right: 1.5rem;
}

.mr-5 {
    margin-right: 3rem;
}

.mb-auto {
    margin-bottom: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

@media (min-width:992px) {
    .mb-lg-0 {
        margin-bottom: 0;
    }
    
    .mb-lg-1 {
        margin-bottom: 0.25rem;
    }
    
    .mb-lg-2 {
        margin-bottom: 0.5rem;
    }
    
    .mb-lg-3 {
        margin-bottom: 1rem;
    }
    
    .mb-lg-4 {
        margin-bottom: 1.5rem;
    }
    
    .mb-lg-5 {
        margin-bottom: 3rem;
    }

    .ml-lg-0 {
        margin-left: 0;
    }
    
    .ml-lg-1 {
        margin-left: 0.25rem;
    }
    
    .ml-lg-2 {
        margin-left: 0.5rem;
    }
    
    .ml-lg-3 {
        margin-left: 1rem !important;
    }
    
    .ml-lg-4 {
        margin-left: 1.5rem;
    }
    
    .ml-lg-5 {
        margin-left: 3rem;
    }
  
    .mt-lg-0 {
        margin-top: 0;
    }
    
    .mt-lg-1 {
        margin-top: 0.25rem;
    }
    
    .mt-lg-2 {
        margin-top: 0.5rem;
    }
    
    .mt-lg-3 {
        margin-top: 1rem;
    }
    
    .mt-lg-4 {
        margin-top: 1.5rem;
    }
    
    .mt-lg-5 {
        margin-top: 3rem;
    }
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-4 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.mx-5 {
    margin-left: 3rem;
    margin-right: 3rem;
}

/* end: margin properties */
/* start: column properties */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y);
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media (min-width: 1400px) {
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
/* end: column properties */
@media (min-width: 576px) {
    .container {
        max-width: 100%;
/*         min-width: 540px; */
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
/*         min-width: 720px; */
    }
}

@media (min-width: 992px) {
    .container {
        max-width: calc(100% - 80px);
        padding-left:0;
        padding-right:0;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: calc(100% - 280px);
    }
}
/*
@media (min-width: 1500px) {
    .container {
        max-width: 1274px;
        min-width: 1274px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1364px;
        min-width: 1364px;
    }
}

@media (min-width: 1700px) {
    .container {
        max-width: 1464px;
        min-width: 1464px;
    }
} */

@media (min-width: 1920px) {
    .container {
        max-width: 1640px;
    }
}
.header-section {
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

.navbar-links.top-nav-mobile {
  padding-bottom: 0px;
  margin-bottom: 8px;
}

#navbar {
  position: fixed;
  background-color: #1d1a39;
  border-bottom: 1px solid #009f9d;
  z-index: 99;
  transition: all 0.5s;
  width: 100%;
}

.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 99;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: auto;
  width: 100%;
  align-items: center;
}

.navbar-item {
  margin: 0px;
/*   width: 100%; */
}

.home-link,
.navbar-link {
  color: #A8A8AF;
  text-decoration: none;
/*   display: flex;
  align-items: center; */
}

.navbar-link {
  font-family: var(--font-ibm);
  justify-content: start;
  /* padding: 8px;
  width: 100%; */
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.13px;
  line-height: 22px;
}

.navbar-link:is(:focus, :hover) {
  color: #07a19f;
}

.navbar-logo {
  margin-top: 18px;
  margin-bottom: 18px;
}

.navbar-logo img,
.navbar-logo svg {
  height: 15px;
}
/*
.navbar-logo img:hover {
  filter: brightness(0) saturate(100%) invert(75%) sepia(88%) saturate(1815%) hue-rotate(100deg) brightness(101%) contrast(103%);
}*/

.navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 2px;
  background-color: #ffffff;
}

.navbar-toggle:is(:focus, :hover) .icon-bar {
  background-color: #ffffff;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:is(:first-child, :last-child) {
  position: absolute;
  margin: 0;
  width: 30px;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:first-child {
  transform: rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:last-child {
  transform: rotate(-45deg);
}

.navbar-menu {
  position: fixed;
  top: 55px;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  min-height: 55px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  padding-left: 0px;
  padding-bottom: 30px;
}

.navbar-toggle[aria-expanded="true"] + .navbar-menu {
  background-color: #1d1a39;
  opacity: 1;
  visibility: visible;
}

.navbar-toggle[aria-expanded="true"] + .navbar-menu .navbar-links {
  padding: 0;
}

.navbar-links {
  list-style: none;
  /* background-color: transparent; */
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-left: 32px;
  margin-right: 22.4px;
  margin-top: 1rem;
  border-radius: 5px;
  min-height: 55px;
  row-gap: 8px;
}

.contact-link {
  margin: 0;
  padding: 0;
  margin-left: 32px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.body-container-wrapper {
  padding-top: 59px;
}

@media screen and (max-width: 767px) {
  .navbar-links, .contact-link {
    max-width: 100%;
    min-width: 100%;
    padding-left: 32px !important;
    padding-right: 32px !important;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .navbar-links, .contact-link {
    max-width: 720px;
    min-width: 720px;
    padding-left: 32px !important;
    padding-right: 32px !important;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .navbar-menu {
    flex-direction: row;
    align-items: center;
    padding-left: 0px;
    height: auto;
    padding-bottom: 0px;
  }

  .navbar-links {
/*     width: 100%; */
    margin: 22.4px;
    align-items: center;
    justify-content: end;
    row-gap: unset;
  }

  .navbar-toggle[aria-expanded="true"] + .navbar-menu .navbar-links {
    padding: 16px;
  }

  .navbar-link {
/*     justify-content: center; */
/*     padding: 8px 4px; */
/*     width: 100%; */
    padding-left: 25px;
    padding-right: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
  }

  .navbar-toggle,
  .navbar-toggle[aria-expanded="true"] {
    display: none;
  }

  .navbar-menu,
  .navbar-toggle[aria-expanded="true"] .navbar-menu {
    visibility: visible;
    opacity: 1;
    position: static;
    display: flex;
    height: 100%;
    width: 55%;
  }

  .navbar-links,
  .navbar-toggle[aria-expanded="true"] .navbar-menu .navbar-links {
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: static;
    flex-direction: row;
    width: 100%;
    height: 100%;
  }

  .contact-link {
    margin-left: 80px;
  }

}

@media screen and (min-width: 1200px) {
  .contact-link {
    margin-left: 89px;
  }
}
.header-section {
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
}

.navbar-links.top-nav-mobile {
    padding-bottom: 0px;
    margin-bottom: 8px;
}

#navbar {
    position: fixed;
    background-color: #1d1a39;
    border-bottom: 1px solid #009f9d;
    z-index: 99;
    transition: all 0.5s;
    width: 100%;
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 99;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: auto;
    width: 100%;
    align-items: center;
}

.navbar-item {
    margin: 0px;
    /*   width: 100%; */
}

.navbar-item.nav-btn {
    flex: 1 0 auto;
}

.home-link,
.navbar-link {
    color: #FFFFFF;
    text-decoration: none;
    /*   display: flex;
    align-items: center; */
}

.navbar-link {
    font-family: var(--font-ibm);
    justify-content: start;
    /* padding: 8px;
    width: 100%; */
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 32px;
}

.navbar-link:is(:focus, :hover) {
    color: #07a19f;
}

.navbar-logo {
    margin-top: 18px;
    margin-bottom: 18px;
}

.navbar-logo img,
.navbar-logo svg {
    height: 15px;
}

/*
  .navbar-logo img:hover {
    filter: brightness(0) saturate(100%) invert(75%) sepia(88%) saturate(1815%) hue-rotate(100deg) brightness(101%) contrast(103%);
  }*/

.navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 2px;
    background-color: #ffffff;
}

.icon-bar:nth-child(2) {
    margin-left: 16px;
}

.navbar-toggle:is(:focus, :hover) .icon-bar {
    background-color: #ffffff;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:is(:first-child, :last-child) {
    position: absolute;
    margin: 0;
    width: 24px;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:first-child {
    transform: rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:last-child {
    transform: rotate(-45deg);
}

.navbar-menu {
    position: fixed;
    top: 55px;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    min-height: 55px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    padding-left: 0px;
    padding-bottom: 30px;
}

.navbar-toggle[aria-expanded="true"]+.navbar-menu {
    background-color: #1d1a39;
    opacity: 1;
    visibility: visible;
}

.navbar-toggle[aria-expanded="true"]+.navbar-menu .navbar-links {
    padding: 0;
}

.navbar-links {
    list-style: none;
    /* background-color: transparent; */
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-left: 32px;
    margin-right: 22.4px;
    margin-top: 1rem;
    border-radius: 5px;
    min-height: 55px;
    row-gap: 8px;
    margin-bottom: 8px;
}

.contact-link {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    /* margin-left: 32px; */
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.body-container-wrapper {
    padding-top: 59px;
}

.title-link:hover .dropdown-menu-title{
  color:#07a19f;
}

@media screen and (min-width:992px){
  .body-container-wrapper {
    padding-top:80px;
  }
  
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .dropdown-menu-title:first-child,
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .title-link:first-child .dropdown-menu-title{
      font-size:20px !important;
  }
  
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu#about\ us .col-12.col-lg-3:last-child{
      position:relative;
  }
  
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu#about\ us .col-12.col-lg-3:last-child:before {
      content:'';
      position:absolute;
      height:100%;
      width:1px;
      background:#fff;
      left:-20%;
      top:-10px;
  }
  
  .navbar3.newstyle .dropdown-menu-item{
    margin-bottom:10px;
    line-height:1.2;
  }
}
 
@media screen and (min-width:1500px){
  .body-container-wrapper {
    padding-top:99px;
  }
}
@media screen and (min-width:1600px){
  .body-container-wrapper {
    padding-top:119px;
  }
}

.list-none {
    list-style: none;
    padding-left: 16px;
}

.dropdown-menu-title {
    font-family: var(--font-ibm);
    font-size: 16px !important;
    font-weight: 600;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 24px;
}

.dropdown-menu-title.text-white {
    color: #ffffff;
}

.border-left {
    border-left: 1px solid #A2999E;
}

.dropdown-cta-content {
    padding-left: 16px;
}

.dropdown-cta-content p {
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 24px;
}

.dropdown-cta-content .btn-cta {
    background-color: #07A19F;
    color: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0px 3px 15px #07A19F33;
}

.dropdown-cta-content .btn-cta:hover,
.dropdown-cta-content .btn-cta:focus {
    background-color: #FFFFFF;
    color: #07A19F;
}

.dropdown-menu-horizontal {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.dropdown-menu-horizontal li a {
    font-weight: 600;
}

#navbar .title-link {
    text-decoration: none;
}

@media screen and (max-width: 767px) {

    .navbar-links,
    .contact-link {
        max-width: 100%;
        min-width: 100%;
        padding-left: 32px !important;
        padding-right: 32px !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 991px) {

    .navbar-links,
    .contact-link {
        max-width: 100%;
        min-width: 100%;
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-link:is(:focus, :hover) {
        color: #FFFFFF;
    }

    .navbar-item {
        width: 100%;
    }

    .navbar-link {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .dropdown-menu {
        list-style: none;
        padding-left: 0px;
    }

    .navbar-item.dropdown {
        position: relative;
    }

    .navbar-item.dropdown .navbar-link::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-size: 8px;
        font-weight: 600;
        margin-left: 4px;
    }

    .navbar-item.dropdown.active .navbar-link::after {
        content: '\f077';
        font-family: 'Font Awesome 6 Free';
        font-weight: 600;
        margin-left: 4px;
        font-size: 8px;
    }

    .dropdown-menu {
        height: 0;
        opacity: 0;
        overflow: hidden;
        transition: opacity 0.5s ease-in-out;
    }

    .navbar-item.dropdown.active>.dropdown-menu {
        height: 100%;
        opacity: 1;
        max-height: 270px;
        overflow-y: scroll;
    }
    .navbar-item.dropdown.multilang-mobile.active>.dropdown-menu {
      margin-left:83px;
    }

    .dropdown-menu-item {
        margin-bottom: 16px;
    }

    .dropdown-menu-item .dropdown-menu-link {
        text-decoration: none;
        color: #fff;
        font-size: 14px;
    }

    .dropdown-menu-item .dropdown-menu-link:hover {
        color: #07A19F;
    }

    .header-section fieldset {
        border: unset;
        width: 100%;
        padding: 0;
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .header-section .input-group {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
    }

    .header-section .form-control {
        display: block;
        width: 100%;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #ffffff;
        background-color: transparent;
        background-clip: padding-box;
        border: 1px solid #FFFFFF80;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 5px;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .header-section .input-group>.form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-right: 0;
        height: 44px;
    }

    .header-section .input-group>.form-control:focus-visible {
        outline: none;
    }

    .header-section .input-group .btn {
        padding: 10px 20px;
        background: transparent;
        color: #FFFFFF;
        border: 1px solid #FFFFFF80;
        border-left: unset;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin-left: -1px;
        position: relative;
        height: 44px;
    }

    .header-section .dropdown-menu .container {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu-title {
        color: #FFFFFF;
        margin-top: 24px;
    }

    .dropdown-menu-horizontal {
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu-horizontal li a {
        font-weight: 400;
    }

    .navbar-toggle[aria-expanded="true"]+.navbar-menu {
        display: block;
        max-height: 100vh;
        overflow-y: scroll;
    }

    .nav-btn {
        margin-top: 40px;
    }

    .nav-btn .navbar-link {
        background-color: #07A19F;
        border-radius: 4px;
        box-shadow: 0px 3px 15px #07A19F33;
        padding: 6px 18px;
        text-align: center;
        display: block;
        font-size: 14px;
        line-height: 24px;
    }

    .multilang-mobile span {
        opacity: 50%;
    }

}

/*start desktop style*/
@media screen and (min-width: 992px) {
    .navbar-menu {
        flex-direction: row;
        align-items: center;
        padding-left: 0px;
        height: auto;
        padding-bottom: 0px;
    }

    .navbar-links {
        /*     width: 100%; */
        margin: 22.4px;
        align-items: center;
        justify-content: flex-start;
        row-gap: unset;
    }

    .navbar-toggle[aria-expanded="true"]+.navbar-menu .navbar-links {
        padding: 16px;
    }

    .navbar-link {
        /*     justify-content: center; */
        /*     padding: 8px 4px; */
        /*     width: 100%; */
        padding: 0px 4px;
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
    }

    .navbar-toggle,
    .navbar-toggle[aria-expanded="true"] {
        display: none;
    }

    .navbar-menu,
    .navbar-toggle[aria-expanded="true"] .navbar-menu {
        visibility: visible;
        opacity: 1;
        position: static;
        display: flex;
        height: 100%;
        width: 80%;
    }

    .navbar-links,
    .navbar-toggle[aria-expanded="true"] .navbar-menu .navbar-links {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        flex-direction: row;
        width: 80%;
        height: 100%;
    }

    .contact-link {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        flex-grow: 1;
        flex-shrink: 0;
    }

    .navbar-item {
        margin-left: 10px;
    }

    .navbar-item.nav-btn {
        margin-left: 0;
    }

    .nav-btn .navbar-link {
        background-color: #07A19F;
        border-radius: 4px;
        box-shadow: 0px 3px 15px #07A19F33;
        padding: 6px 18px;
        font-size: 14px;
    }

    .nav-btn .navbar-link:hover,
    .nav-btn .navbar-link:focus {
        background-color: #ffffff;
        color: #07A19F;
    }

    .navbar-item.dropdown .navbar-link::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-size: inherit;
        font-weight: 600;
        margin-left: 4px;
        font-size: 12px;
    }

    .navbar-item.dropdown.active .navbar-link::after {
        content: '\f077';
        font-family: 'Font Awesome 6 Free';
        font-size: inherit;
        font-weight: 600;
        margin-left: 4px;
        font-size: 12px;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        width: 100%;
        background-color: #1D1A39;
        list-style: none;
        padding: 16px;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 3px 20px #00000029;
        transition: opacity 0.5s ease-in-out;
    }

    .multilang {
        position: relative;
    }

    .multilang .dropdown-menu {
        min-width: 3.5rem;
        top: calc(100% + 17px);
    }

    .navbar-links .dropdown-menu {
        min-width: 150px;
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .navbar-item.dropdown.active .dropdown-menu {
        visibility: visible;
        opacity: 1;
    }

    .dropdown-menu-item {
        margin-bottom: 16px;
    }

    .dropdown-menu-item:last-child {
        margin-bottom: 0;
    }

    .dropdown-menu-item .dropdown-menu-link {
        text-decoration: none;
        color: #ffffff;
      font-size:16px;
    }

    .dropdown-menu-item .dropdown-menu-link:hover {
        color: #07A19F;
    }

}

@media screen and (min-width:1280px) {
    .navbar-item.nav-btn {
        margin-left: 25px;
    }

    .navbar-item {
        margin-left: 20px;
    }
}

@media screen and (min-width:1400px){
    .navbar-item {
        margin-left: 25px;
    }
}

@media screen and (min-width: 1700px) {

    /* .contact-link {
      margin-left: 89px;
    } */
    .navbar-item {
        margin-left: 45px;
    }

    .dropdown-menu-item {
        margin-bottom: 24px;
    }

    .dropdown-menu .col-lg-7 {
        max-width: 860px;
    }

    .dropdown-menu-horizontal {
        justify-content: flex-start;
        gap: 6.5rem;
    }
}

/*navbar 3.0*/
.navbar3 #navbar {
    background-color: transparent;
    border-bottom: unset;
    top: 8px;
}

.navbar3 #navbar .container-parent {
    background: rgba(29,26,57,.9);
    border-radius: 16px;
/*     box-shadow: 0px 4px 12px 0px #1D1A3933; */
    backdrop-filter: blur(20px);
    padding-left: 16px;
    padding-right: 16px;
}

.navbar3 #navbar .dropdown-menu ul.list-none {
    padding-left: 0;
}

.navbar3 .nav-desktop {
    display: none;
}

.navbar3 .nav-mobile {
    display: block;
}

@media (min-width:768px) and (max-width:992px){
  .navbar3 #navbar>.container{
    max-width:100%;
  }
  .navbar3 #navbar.opened > .container::before{
    width:calc(100% - 80px) !important;
    transform: translateX(calc(-50% + 1px)) !important;
  }
}

@media (min-width:992px) {
    .navbar3 #navbar {
        top: 16px;
    }
  
    .navbar3 .navbar-link{
        font-size: 16px;
    }

    .navbar3 #navbar .container-parent {
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 24px;
        position: relative;
        background: rgba(29, 26, 57, 0.9);
        backdrop-filter: blur(20px);
          background: transparent;
        backdrop-filter: unset;
        box-shadow: none;
    }
  
    .navbar3 #navbar .container-parent::before{
        background: linear-gradient(180deg, hsla(248, 7%, 58%, .6), rgba(29, 26, 57, .6));
        border-radius: 24px;
        content: "";
        inset: 0;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        padding: 1px;
        position: absolute;
        display:none;
    }

    .navbar3 #navbar>.container {
        padding-left: 0;
        padding-right: 0;
/*         background: #1D1A39E5; */
        background:unset;
          backdrop-filter: blur(20px);
        background: rgba(29, 26, 57, .9);
        border-radius: 24px !important;
        max-width: calc(100% - 104px);
    }

    .navbar3 #navbar .navbar-menu {
        min-height: 60px;
    }

    .navbar3 #navbar .contact-link {
        justify-content: flex-end;
    }

    .navbar3 #navbar .dropdown-menu .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .navbar3 #navbar .dropdown-menu {
/*         background: rgba(29, 26, 57, 0.35); */
        top: calc(100% - 0.45px);
        padding:0px;
        box-shadow:unset;
/*         backdrop-filter: blur(20px); */
        border-radius: 0 0 24px 24px;
        background-color:unset;
    }
  
    .navbar3 #navbar .dropdown-menu > .container{
        border-radius: 0 0 24px 24px;
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 40px;
        padding-right: 40px;
        background: rgba(29, 26, 57, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
/*         box-shadow: 0px 4px 12px 0px rgba(29, 26, 57, 0.2); */
      box-shadow:none;
        position:relative;
    }
  
    .navbar3 #navbar .dropdown-menu > .container::before{
        background: linear-gradient(180deg, rgba(29, 26, 57, .6), hsla(248, 7%, 58%, .6));
        border-radius: 0 0 24px 24px;
        content: "";
/*         inset: 0; */
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        padding: 1px;
        position: absolute;
        z-index:-1;
        display:none;
    }

    .navbar3 #navbar .multilang {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
  
    .navbar3 #navbar .multilang.active .dropdown-menu{
        opacity:1;
        visibility:visible;
    }

    .navbar3 #navbar .multilang .icon-lang {
        display: inline-block;
        width: 24px;
        height: 24px;
        object-fit: cover;
        vertical-align: bottom;
    }

    .navbar3 #navbar .multilang .dropdown-menu {
        top: calc(100% + 17px);
        border-radius: unset;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        background: rgba(29, 26, 57, 0.75);
        backdrop-filter: blur(20px);
    }
  
    .navbar3 #navbar .multilang .dropdown-menu::before{
        background: linear-gradient(180deg, hsla(248, 7%, 58%, .6), rgba(29, 26, 57, .6));
        border-radius: 0 0 24px 24px;
        content: "";
        inset: 0;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        padding: 0px;
        position: absolute;
        z-index:-1;
    }

    .navbar3 #navbar .dropdown-menu .card a {
        text-decoration: none;
        width: 100%;
        height: 100%;
    }
    
    .navbar3 #navbar .dropdown-menu .card-body {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 24px;
        padding-right: 16px;
        z-index: 1;
        position: absolute;
        margin-top: auto;
        bottom: 16px;
        width: 100%;
    }
    
    .navbar3 #navbar .dropdown-menu .card-title {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #FFFFFF;
    }
    
    .navbar3 #navbar .dropdown-menu .card-img {
        position: absolute;
        border-radius: 24px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .navbar3 #navbar .dropdown-menu .card {
        display: block;
        width: 100%;
        max-width: 100%;
        border-radius: 24px;
        height: 240px;
        position: relative;
    }

    .navbar3 #navbar .dropdown-menu-item .dropdown-menu-link.read-more {
        text-decoration: underline;
    }

    .navbar3 .nav-desktop {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .navbar3 .nav-mobile {
        display: none;
      backdrop-filter:blur(20px);
    }
  
    .navbar3 .nav-desktop .navbar-links .dropdown-menu .row{
        row-gap:24px;
    }
  
    .navbar3 .nonborder{
        border-bottom-left-radius:0px !important;
        border-bottom-right-radius:0px !important;
        transition: border-radius .3s ease;
    }
  
    .navbar3 .nav-desktop .navbar-links .dropdown-menu .row{
        row-gap:24px;
    }
  
    .navbar3 .nonborder{
        border-bottom-left-radius:0px !important;
        border-bottom-right-radius:0px !important;
        transition: border-radius .3s ease;
    }

    .navbar3 #navbar>.container{
        position: relative;
    }

    .navbar3 #nav-dropdown-desktop{
        display: none;
        position: absolute;
        left: 0;
        top: calc(100% - 0.45px);
        width: 100%;
        background: rgba(29, 26, 57, 0.9);
        backdrop-filter: blur(20px);
        border-radius: 0 0 24px 24px;
        backdrop-filter: unset;
        background: transparent;
        position: relative;
    }

    .navbar3 #nav-dropdown-desktop .dropdown-menu,
    .navbar3 #nav-dropdown-desktop .dropdown-menu .container{
        background: unset;
        backdrop-filter: unset;
    }

    .navbar3 #nav-dropdown-desktop .dropdown-menu{
        position: unset;
        height: 0;
    }

    .navbar3 #nav-dropdown-desktop .dropdown-menu.active{
        height: auto;
        visibility: visible;
        opacity: 1;
    }

    .navbar3 #nav-dropdown-desktop.active{
        display: block;
    }

    .navbar3 .navbar-item.dropdown.active .dropdown-menu{
        visibility: hidden;
        opacity: 0;
    }
  
  /*new style navbar3 desktop start here*/
  .navbar3.newstyle .dropdown-menu-item .dropdown-menu-link{
    font-weight: 300;
    line-height:1.2;
  }
  
  .navbar3.newstyle .dropdown-menu-item .dropdown-menu-link[href=""]{
    pointer-events:none;
  }
  
  .navbar3.newstyle .title-link[href=""]{
    pointer-events:none;
  }
  
  .navbar3.newstyle .dropdown-menu-title{
    font-weight: 600;
    line-height:1.2;
  }
  
  .navbar3.newstyle #navbar .dropdown-menu ul.list-none{
    position:relative;
  }
  
  .navbar3.newstyle #navbar .dropdown-menu ul.list-none::before {
    content: "";
    width: 2px;
    height: calc(100% + 60px);
    position: absolute;
    left: -16px;
    top: calc(50% - 120px);
    display: block;
    transform: translateY(calc(-50% + 100px));
    background: linear-gradient(90deg, #009F9D 25%, rgba(217, 217, 217, 0) 100%);
    backdrop-filter:blur(1px);
    border-radius:50%;
    opacity:0;
    
    transition: opacity 0.4s ease-in-out;
  }
  
  .navbar3.newstyle #navbar .dropdown-menu ul.list-none::after {
    content: "";
    width: 7px;
    height: calc(100% + 60px);
    position: absolute;
    left: -17px;
    top: calc(50% - 120px);
    display: block;
    transform: translateY(calc(-50% + 100px));
    background: linear-gradient(90deg, rgba(0, 159, 157, 0.5) 0%, rgba(217, 217, 217, 0) 100%);
    backdrop-filter:blur(4px);
    border-radius:50%;
    opacity:0;
    
    transition: opacity 0.4s ease-in-out;
  }
  
  
  .navbar3.newstyle #navbar .dropdown-menu ul.list-none:hover::before,
  .navbar3.newstyle #navbar .dropdown-menu ul.list-none:hover::after{
    opacity:0.8;
  }
  
  .navbar3.newstyle .dropdown-menu ul.list-none.has_menu_below:not(:has(li)){
    margin-bottom:38px;
  }
  
  .navbar3.newstyle #solutions > div > div > div:nth-child(1) > ul:nth-child(2) > li:nth-child(1) > a,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > ul:nth-child(2) > li:nth-child(1) > a{
    font-weight:600;
  }
  
  .navbar3.newstyle #solutions > div > div > div:nth-child(2) > ul:nth-child(2) > li:nth-child(1) > a,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > ul:nth-child(2) > li:nth-child(1) > a{
    font-weight:600;
  }
  
  .navbar3.newstyle #solutions > div > div > div:nth-child(3) > ul.list-none.has_menu_below > li:nth-child(1) > a,
  .navbar3.newstyle #products > div > div > div:nth-child(3) > ul.list-none.has_menu_below > li:nth-child(1) > a{
    font-weight:600;
  }
  
  .navbar3 .navbar-item.search-item .input-group #search{
    position: absolute;
  }
  
  .navbar3 .navbar-item.search-item .input-group #search.active {
    position: absolute;
    top: 8px;
    z-index: 2;
    background: rgba(29, 26, 57, 1);
  }
  
}

@media (min-width:1280px){
    .navbar3 #navbar>.container {
      max-width: calc(100% - 304px);
    }
}

@media (min-width:1280px) and (max-width:1600px){
  .navbar3 .navbar-item.search-item .input-group #search.active{
    position: absolute;
    top: 8px;
    z-index: 2;
    background: rgba(29, 26, 57, 1);
  }
}

@media (min-width:993px) and (max-width:1300px){
  .navbar3 #navbar .navbar-menu{
    width:85%;
  }
}

@media(min-width:992px) and (max-width:1199px){
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .dropdown-menu-title:first-child,
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .title-link:first-child .dropdown-menu-title{
      font-size:14px !important;
  }
  
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(3),
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(5) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(5),
  .navbar3.newstyle #products > div > div > div:nth-child(3) > a > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > h4{
    margin-bottom:10px;
  }
  
  .navbar3.newstyle .dropdown-menu-title{
    font-size:14px !important;
  }
  
  .navbar3.newstyle .dropdown-menu-item .dropdown-menu-link{
    font-size:14px;
  }
  
  .navbar3.newstyle .dropdown-menu-title{
    margin-bottom:16px;
  }
  
  .navbar3.newstyle .navbar-item{
    margin-left:16px;
  }
  
  .navbar3.newstyle .navbar-link{
    font-size:14px;
  }
}

@media(min-width:1200px) and (max-width:1300px){
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .dropdown-menu-title:first-child,
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .title-link:first-child .dropdown-menu-title{
      font-size:15px !important;
  }
  
  .navbar3.newstyle .dropdown-menu-title{
    font-size:15px !important;
  }
  
  .navbar3.newstyle .dropdown-menu-item .dropdown-menu-link{
    font-size:14px;
  }
  
  .navbar3.newstyle .dropdown-menu-title{
    margin-bottom:16px;
  }
  
  .navbar3.newstyle .navbar-item{
    margin-left:16px;
  }
  
  .navbar3.newstyle .navbar-link{
    font-size:15px;
  }
}

@media (min-width:1301px) and (max-width:1400px){
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .dropdown-menu-title:first-child,
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .title-link:first-child .dropdown-menu-title{
      font-size:15px !important;
  }
  
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(3),
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(5) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(5),
  .navbar3.newstyle #products > div > div > div:nth-child(3) > a > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > h4{
    margin-bottom:10px;
  }
  
  .navbar3.newstyle .dropdown-menu-item .dropdown-menu-link{
    font-size:14px;
  }
  
  .navbar3.newstyle .dropdown-menu-title{
    margin-bottom:16px;
    font-size:14px !important;
  }
}

@media (min-width:1400px){
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .dropdown-menu-title:first-child,
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .title-link:first-child .dropdown-menu-title{
      font-size:16px !important;
  }
  
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(3),
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(5) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(5),
  .navbar3.newstyle #products > div > div > div:nth-child(3) > a > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > h4{
    margin-bottom:10px;
  }
}

@media (min-width:1700px) {
    .navbar3 #navbar .navbar-menu {
        min-height: 80px;
    }
  
  .navbar3 .navbar-item.search-item .input-group #search.active {
    top: 18px;

  }

    .navbar3 #navbar .dropdown-menu .card {
        height: 284px;
    }
    
    .navbar3 .navbar-logo img, .navbar3 .navbar-logo svg{
        height:24px;
        width:auto;
    }
    
    .navbar3 .navbar-link{
        font-size:16px;
    }
  
    .navbar3 .navbar-link.search-icon{
        font-size:24px;
    }
  
    .navbar3 #navbar .multilang{
        margin-left:40px;
    }
  
    .navbar3 #navbar .multilang .dropdown-menu{
        top: calc(100% + 27.5px);
    }
  
  .navbar3 #navbar .dropdown-menu .card{
    max-width:100%;
    width:100%;
  }
  
  /*new style navbar3 large desktop start here*/
  .navbar3.newstyle .dropdown-menu-title{
    margin-bottom:16px;
  }
  
  .navbar3.newstyle .dropdown-menu-item{
    margin-bottom:16px;
  }
  
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(3),
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(5) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(5),
  .navbar3.newstyle #products > div > div > div:nth-child(3) > a > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > h4{
    margin-bottom:16px;
  }
}

@media (min-width:1920px){
  .navbar3 #navbar>.container {
    max-width: 1640px;
  }
}

@media (max-width:992px) {
    .navbar3 #nav-dropdown-desktop{
        display: none;
    }
  
    .navbar3 #navbar .container-parent{
        position:relative;
    }
  
    .navbar3 .navbar-toggle[aria-expanded="true"]+.navbar-menu {
        background: unset;
        border-radius: 0px 0px 16px 16px;
        top: calc(100% - 0px);
        height: auto;
        overflow-y: unset;
        position: absolute;
    }

    .navbar3 #navbar>.container {
        padding-left: 0;
        padding-right: 0;
        border-radius: 16px;
        width: calc(100% - 48px);
        background: transparent;
        top: 40px;
    }
  
    .navbar3 #navbar.opened > .container::before{
        content: "";
        width: calc(100% - 48px);
        bottom: -1px;
        left: calc(50% - 1px);
        transform: translateX(calc(-50% + 0.5px));
        height: 24px;
        position: absolute;
        background: rgba(29, 26, 57, 0.9);
        z-index: -1;
        border: 0.5px solid rgba(29, 26, 57, 0.9);
        display:none;
    }
  
    .navbar3 #navbar.opened > .container{
        border-bottom-left-radius:0px;
        border-bottom-right-radius:0px;
    }
  
    .navbar3 #navbar.opened .container-parent{
        border-bottom-left-radius:0px;
        border-bottom-right-radius:0px;
    }

    .navbar3 .nav-mobile {
        height: 100%;
      overflow-y:scroll;
      height: 82vh;
    }

    .navbar3 .navbar-menu {
        padding-bottom: 0;
    }

    .navbar3 .search-item {
        display: block
    }

    .navbar3 .input-group #search {
        border-radius: 8px;
        border-width: 1px;
        border-right: 1px solid #ffffff80;
        height: 44px;
        min-width: 100%;
        padding: 8px 24px;
        width: 100%
    }

    .navbar3 .input-group .fa-search {
        bottom: 25%;
        color: #4A4861 !important;
        font-size: 20px;
        margin-right: 6px;
        margin-top: -20px;
        position: relative;
        position: absolute;
        right: 8px !important;
        z-index: 2;
    }

    .navbar3 .form-search {
        border: none;
        display: block !important;
        padding: 0;
    }

    .navbar3 .navbar-links,
    .navbar3 .contact-link {
        padding-top: 16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 16px !important;
        margin-top: 0;
        margin-bottom: 0;
        row-gap: 0px;
    }

    .navbar3 .navbar-links{
        height: 72vh;
        border-radius: 0px 0px 16px 16px;
    }

    .navbar3 .contact-link {
        padding-top: 16px !important;
        background-color: rgba(29,26,57,.9);
        backdrop-filter:blur(20px);
        margin-top: 0px;
        padding-bottom:0px !important;
    }

    .header-section.navbar3 .form-control {
        background-color: #D9D9D9;
        color: #4A4861;
    }

    .header-section.navbar3 .form-control::placeholder {
        color: #4A4861;
    }

    .navbar3 .navbar-link {
        justify-content: space-between;
        line-height: 1;
        display: block;
        width: calc(100% - 32px);
    }

    .navbar3 .search-icon {
        display: none
    }

    .navbar3 .navbar-item.dropdown .navbar-link::after {
        content: "\f054";
        font-size: 16px;
        position: absolute;
        width: 12px;
        height: 16px;
        right: 16px;
    }

    .navbar3 .navbar-item:not(.search-item) {
        border-bottom: 1px solid #8E8C9C;
        padding: 24px 0px;
    }

    .navbar3 .navbar-item:not(.search-item):last-child{
        border-bottom: unset;
    }

    .navbar3 #navbar .language-link {
        list-style: none;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 40px;
        margin-top: 0;
        margin-bottom: 0px;
    }

    .navbar3 #navbar .multilang-mobile {
        border-bottom: unset;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .navbar3 #navbar .multilang-mobile.active>.dropdown-menu {
        padding-top: 0px;
    }

    .navbar3 #navbar .multilang-mobile .navbar-link {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: baseline;
        width: 100%;
    }

    .navbar3 #navbar .multilang-mobile .navbar-link::after {
        content: "\f078";
        font-size: 14px;
        position: unset;
    }

    .navbar3 .navbar-item.dropdown.active:not(.multilang-mobile){
        position: unset;
    }

    .navbar3 .navbar-links{
        position: relative;
       backdrop-filter: blur(20px);
        background-color: rgba(29, 26, 57, .9);
    }

    .navbar3 .navbar-item.dropdown.active:not(.multilang-mobile) > .dropdown-menu {
        position: absolute;
        left: 0;
        top: 0;
        max-height: 100%;
        height: 100%;
/*         padding: 16px; */
        z-index: 1;
        width: 100%;
        background: transparent;
        border-radius: 0px 0px 16px 16px;
    }

    .navbar3 .backto{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        border-bottom: 1px solid #8E8C9C;
        padding-bottom: 16px;
        padding-top:24px;
    }

    .navbar3 .backto i, .navbar3 .backto svg{
        color: #009F9D;
        font-size: 16px;
    }   

    .navbar3 .backto-icon{
        background-color: #FFFFFF;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .navbar3 .card-menu .navbar-item{
        border-bottom: unset;
        padding: 8px 0px;
    }

    .navbar3 .card-menu .navbar-item:first-child{
        padding-top: 16px;
    }

    .navbar3 .card-menu .dropdown-menu .navbar-link{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .navbar3 .card-menu .dropdown-menu .navbar-link::after{
        display: none;
    }

    .navbar3 .card-menu .card{
        display: block;
        width: 100%;
        height: 120px;
        position: relative;
        border-radius: 16px;
    }

    .navbar3 .card-menu .card-img{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

    .navbar3 .card-menu .card-body{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 16px;
        padding-right: 8px;
        z-index: 1;
        position: absolute;
        margin-top: auto;
        bottom: 8px;
        width: 100%;
    }

    .navbar3 .card-menu .card-title{
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #FFFFFF;
    }

    .navbar3 .dropdown-menu .dropdown-menu-item{
        padding: 24px 0px;
        margin-bottom: 0;
        border-bottom: 1px solid #8E8C9C;
    }

    .navbar3 #navbar .multilang-mobile.active .dropdown-menu .dropdown-menu-item{
        padding: 8px 0px;
        border-bottom: unset;
    }

    .navbar3 .dropdown-menu .dropdown-menu-item:last-child{
        border-bottom: unset;
    }

    .navbar3 .dropdown-menu .dropdown-menu-item .dropdown-menu-link{
        font-size: 16px;
    }

    .navbar3 .dropdown-menu .dropdown-menu-item .dropdown-menu-link.read-more{
        text-decoration: underline;
    }

    .navbar3 .swipe-up{
        display: block;
        width: 120px;
        height: 8px;
        background-color: #C6C5CD;
        border-radius: 4px;
        position: absolute;
        left: 50%;
        bottom: 8px;
        transform: translateX(-50%);
        z-index:2;
    }
  
    .navbar3 .navbar-item.search-item .form-search{
        margin:0px;
    }
  
    .navbar3 .opened .navbar-toggle{
        padding-left:0px;
        padding-right:0px;
        align-items:flex-end;
    }
  
   .navbar3 .navbar-item > .navbar-link:not(:first-child) {
        padding:24px 0;
   }
  
  .navbar3 .navbar-item>.navbar-link:last-of-type{
      padding-bottom:0;
  }
  
  .navbar3 .navbar-item>.navbar-link:not(:first-child):before{
    content:"";
    position:absolute;
    border-bottom:1px solid #8e8c9c;
    width:100%;
    transform: translateY(-25px);
  }
  
  /*  adjust background menu mobile  */
  .navbar3 #navbar.opened .container-parent{
        flex-wrap:wrap;
            backdrop-filter: blur(20px);
    }
  
  .navbar3 #navbar.opened .container-parent.bg-change{
    /*background: rgba(29,26,57,.98)*/
  }
  
  .navbar3 #navbar.opened .navbar-links.hide > li > a,
  .navbar3 #navbar.opened .navbar-links.hide > li > .dropdown-menu.hide > a,
  .navbar3 #navbar.opened .navbar-links.hide > li > .dropdown-menu.hide > ul > li > a{
    display:none;
  }
  
  .navbar3 #navbar.opened .navbar-links.hide > li,
  .navbar3 #navbar.opened .navbar-links.hide > li > .dropdown-menu.hide > ul > li,
  .navbar3 #navbar.opened .navbar-links.hide > li > .dropdown-menu.hide > a,
  .navbar3 #navbar.opened  .level2 >.navbar-link:not(.active) ~ .dropdown-menu:not(.active)> ul >li,
  .navbar3 #navbar.opened  .level2 > .navbar-link:not(.active) ~ .dropdown-menu:not(.active)>.backto{
      border:none;
      padding:0;
  }
  
  .navbar3 #navbar.opened  .level2 >.navbar-link:not(.active) ~ .dropdown-menu:not(.active)> ul >li > a,
  .navbar3 #navbar.opened  .level2 > .navbar-link:not(.active) ~ .dropdown-menu:not(.active)>.backto{
      display:none;
  }

  .navbar3 #navbar.opened  .level2 > .navbar-link.active ~ .dropdown-menu.active> ul >li>a,
  .navbar3 #navbar.opened  .level2 > .navbar-link.active ~ .dropdown-menu.active>.backto{
      display:flex;
  }

  .navbar3 #navbar.opened  .level2 > .navbar-link.active ~ .dropdown-menu.active{
      z-index:2;
  }
  
  .navbar3 #navbar.opened .level3>.navbar-link:not(.active)~.dropdown-menu:not(.active)>ul>li,
  .navbar3 #navbar.opened .level3>.navbar-link:not(.active)~.dropdown-menu:not(.active)>.backto {
    border: none;
  }
  
  .navbar3 #navbar.opened .level3>.navbar-link:not(.active)~.dropdown-menu:not(.active)>ul>li>a,
  .navbar3 #navbar.opened .level3>.navbar-link:not(.active)~.dropdown-menu:not(.active)>.backto {
    display: none;
  }
  
  .navbar3 #navbar.opened .level3>.navbar-link.active~.dropdown-menu.active>ul>li>a,
  .navbar3 #navbar.opened .level3>.navbar-link.active~.dropdown-menu.active>.backto {
    display: flex;
  }
  
  .navbar3 #navbar.opened .level3>.navbar-link.active~.dropdown-menu.active {
    z-index: 3;
    min-height:500px;
    border-radius:0px;
  }
  
  .navbar3 .navbar-item.dropdown.level2 >.dropdown-menu.hide{
    height:100%;
    opacity:1;
  }

    .navbar3 #navbar.opened .container-parent{
        border-radius:16px;
    }
    
    .navbar3 .navbar-toggle[aria-expanded=true]+.navbar-menu {
        position:relative;
        width:100%;
    }

    .navbar3 .contact-link{
        padding-left:0 !important;
        padding-right:0 !important;
        background:unset;
        backdrop-filter:unset;
    }

    .navbar-toggle[aria-expanded=true]+.navbar-menu .navbar-links{
        padding:0 !important;
        background-color: transparent;
        backdrop-filter:unset;
    }
  
    .navbar3.newstyle .navbar-link{
      font-weight:600;
    }

    .navbar3.newstyle .backto{
      font-size:20px;
      font-weight:600;
    }
  
    .navbar3.newstyle .dropdown-menu .dropdown-menu-item .dropdown-menu-link{
      font-weight:300;
    }
  
    .navbar3.newstyle .dropdown-menu.regular-menu .navbar-item.dropdown .navbar-link{
      font-weight:300;
    }

    .navbar3.newstyle .dropdown-menu.regular-menu .navbar-item.dropdown .navbar-link::after{
      display:none;
    }
}

@media (min-width:1100px) and (max-width:1299px){
  .navbar3.newstyle .dropdown-menu-item {
    margin-bottom: 5px;
    line-height: 1;
  }
  .navbar3.newstyle .dropdown-menu-item .dropdown-menu-link {
    font-size: 12px;
    line-height:1;
    }
  
  .navbar3.newstyle #solutions > div > div > div:nth-child(2) > ul:nth-child(2) > li:nth-child(1) > a, .navbar3.newstyle #products > div > div > div:nth-child(2) > ul:nth-child(2) > li:nth-child(1) > a{
    font-size:13px;
  }
  
  .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .dropdown-menu-title:first-child, .navbar3.newstyle .nav-dropdown-desktop .dropdown-menu:not(#about\ us) .col-12 > .title-link:first-child .dropdown-menu-title{
    font-size:13px !important;
  }
  
  .navbar3.newstyle #solutions > div > div > div:nth-child(1) > ul:nth-child(2) > li:nth-child(1) > a,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > ul:nth-child(2) > li:nth-child(1) > a{
    font-size:13px;
  }
  
  .navbar3.newstyle #solutions > div > div > div:nth-child(2) > ul:nth-child(2) > li:nth-child(1) > a,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > ul:nth-child(2) > li:nth-child(1) > a{
    font-size:13px;
  }
  
  .navbar3.newstyle #solutions > div > div > div:nth-child(3) > ul.list-none.has_menu_below > li:nth-child(1) > a,
  .navbar3.newstyle #products > div > div > div:nth-child(3) > ul.list-none.has_menu_below > li:nth-child(1) > a{
    font-size:13px;
  }
  
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(3),
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > a:nth-child(5) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > h4:nth-child(5),
  .navbar3.newstyle #products > div > div > div:nth-child(3) > a > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(2) > a:nth-child(3) > h4,
  .navbar3.newstyle #products > div > div > div:nth-child(1) > h4{
    margin-bottom:5px;
  }
  
  .navbar3 .dropdown-menu ul.list-none.has_menu_below:has(li){
    margin-bottom: 24px !important;
  }
  .navbar3.newstyle .dropdown-menu-title{
    font-size:13px !important
  }
}
.banner-cta {
  padding-top: 58px;
  padding-bottom: 58px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-cta .title {
  margin: 0;
  font-family: var(--font-alegreya);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.56px;
  line-height: 60px;
  color: #FFFFFF;
  text-align: center;
}
.banner-cta p {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}
.banner-cta form fieldset {
  display: flex;
  align-items: center;
  flex-direction: column;
  column-gap: 40px;
}
.banner-cta form fieldset .hs-fieldtype-text,
.banner-cta form fieldset .hs-fieldtype-booleancheckbox,
.banner-cta form fieldset .hs-fieldtype-phonenumber,
.banner-cta form fieldset .hs-fieldtype-textarea{
  width: 100% !important;
}
.banner-cta form fieldset .hs-fieldtype-textarea textarea{
  width: 100% !important;
  height: 200px;
}
.banner-cta form label {
  font-family: var(--font-ibm);
  font-size: 17px;
  font-weight: 400;
  line-height: 34px;
  color: #FFFFFF;
}
.banner-cta form label.hs-error-msg {
  font-family: var(--font-ibm);
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  color: #ef6b51;
}
.banner-cta form input[type="email"], 
.banner-cta form input[type="file"], 
.banner-cta form input[type="number"], 
.banner-cta form input[type="password"], 
.banner-cta form input[type="tel"], 
.banner-cta form input[type="text"] {
  border-style: none;
  border-radius: 20px;
}
.banner-cta a {
  text-decoration: underline;
  color: #FFFFFF;
}
.banner-cta a:hover {
  color: #07A19F;
}
.banner-cta .grecaptcha-badge {
  margin: 0;
}
.banner-cta form .hs-button, 
.banner-cta form input[type="submit"] {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.42px;
  background-color: #009f9d;
    border-color: #009f9d;
    color: #ffffff;
    border-radius:15px;
  text-transform: uppercase;
  padding: 7px 26px;
	border: none;
	text-decoration: none;
	white-space: nowrap;
}
.banner-cta form .hs-button:hover, 
.banner-cta form .hs-button:focus,
.banner-cta form input[type="submit"]:hover, 
.banner-cta form input[type="submit"]:focus {
  background-color: #fff;
  color:#000;
  box-shadow: 0px 3px 15px #00000029;
}

@media (min-width:992px) {
  .banner-cta {
    padding-bottom: 75px;
  }
  .banner-cta .title {
    font-size: 50px;
    margin-bottom: 8px;
  }
  .banner-cta p {
    font-size: 22px;
    line-height: 34px;
  }
  .banner-cta form fieldset {
    flex-direction: row;
  }
  .banner-cta form fieldset .hs-fieldtype-text,
  .banner-cta form fieldset .hs-fieldtype-phonenumber,
  .banner-cta form fieldset .hs-fieldtype-booleancheckbox{
    width: 33% !important;
  }
  .banner-cta form fieldset .hs-fieldtype-textarea textarea{
    height: 140px;
  }
  .banner-cta form .hs-button, 
  .banner-cta form input[type="submit"] {
    font-size: 12px;
    line-height: 15px;
  }
  
  .banner-cta form .hs-fieldtype-booleancheckbox{
    margin-bottom:-20px;
  }
}
.banner-cta {
  padding-top: 58px;
  padding-bottom: 58px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-cta .title {
  margin: 0;
  font-family: var(--font-alegreya);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.56px;
  line-height: 60px;
  color: #FFFFFF;
  text-align: center;
}
.banner-cta p {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}
.banner-cta form fieldset {
  display: flex;
  align-items: center;
  flex-direction: column;
  column-gap: 40px;
}
.banner-cta form fieldset .hs-fieldtype-text,
.banner-cta form fieldset .hs-fieldtype-booleancheckbox,
.banner-cta form fieldset .hs-fieldtype-phonenumber,
.banner-cta form fieldset .hs-fieldtype-textarea{
  width: 100% !important;
}
.banner-cta form fieldset .hs-fieldtype-textarea textarea{
  width: 100% !important;
  height: 200px;
}
.banner-cta form label {
  font-family: var(--font-ibm);
  font-size: 17px;
  font-weight: 400;
  line-height: 34px;
  color: #FFFFFF;
}
.banner-cta form label.hs-error-msg {
  font-family: var(--font-ibm);
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  color: #ef6b51;
}
.banner-cta form input[type="email"], 
.banner-cta form input[type="file"], 
.banner-cta form input[type="number"], 
.banner-cta form input[type="password"], 
.banner-cta form input[type="tel"], 
.banner-cta form input[type="text"] {
  border-style: none;
  border-radius: 20px;
}
.banner-cta a {
  text-decoration: underline;
  color: #FFFFFF;
}
.banner-cta a:hover {
  color: #07A19F;
}
.banner-cta .grecaptcha-badge {
  margin: 0;
}
.banner-cta form .hs-button, 
.banner-cta form input[type="submit"] {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.42px;
  background-color: #009f9d;
    border-color: #009f9d;
    color: #ffffff;
    border-radius:15px;
  text-transform: uppercase;
  padding: 7px 26px;
	border: none;
	text-decoration: none;
	white-space: nowrap;
}
.banner-cta form .hs-button:hover, 
.banner-cta form .hs-button:focus,
.banner-cta form input[type="submit"]:hover, 
.banner-cta form input[type="submit"]:focus {
  background-color: #fff;
  color:#000;
  box-shadow: 0px 3px 15px #00000029;
}

@media (min-width:992px) {
  .banner-cta {
    padding-bottom: 75px;
  }
  .banner-cta .title {
    font-size: 50px;
    margin-bottom: 8px;
  }
  .banner-cta p {
    font-size: 22px;
    line-height: 34px;
  }
  .banner-cta form fieldset {
    flex-direction: row;
  }
  .banner-cta form fieldset .hs-fieldtype-text,
  .banner-cta form fieldset .hs-fieldtype-phonenumber,
  .banner-cta form fieldset .hs-fieldtype-booleancheckbox{
    width: 33% !important;
  }
  .banner-cta form fieldset .hs-fieldtype-textarea textarea{
    height: 140px;
  }
  .banner-cta form .hs-button, 
  .banner-cta form input[type="submit"] {
    font-size: 12px;
    line-height: 15px;
  }
  
  .banner-cta form .hs-fieldtype-booleancheckbox{
    margin-bottom:-20px;
  }
}
.banner-cta {
  padding-top: 58px;
  padding-bottom: 58px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-cta .title {
  margin: 0;
  font-family: var(--font-alegreya);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.56px;
  line-height: 60px;
  color: #FFFFFF;
  text-align: center;
}
.banner-cta p {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}
.banner-cta form fieldset {
  display: flex;
  align-items: center;
  flex-direction: column;
  column-gap: 40px;
}
.banner-cta form fieldset .hs-fieldtype-text,
.banner-cta form fieldset .hs-fieldtype-booleancheckbox,
.banner-cta form fieldset .hs-fieldtype-phonenumber,
.banner-cta form fieldset .hs-fieldtype-textarea{
  width: 100% !important;
}
.banner-cta form fieldset .hs-fieldtype-textarea textarea{
  width: 100% !important;
  height: 200px;
}
.banner-cta form label {
  font-family: var(--font-ibm);
  font-size: 17px;
  font-weight: 400;
  line-height: 34px;
  color: #FFFFFF;
}
.banner-cta form label.hs-error-msg {
  font-family: var(--font-ibm);
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  color: #ef6b51;
}
.banner-cta form input[type="email"], 
.banner-cta form input[type="file"], 
.banner-cta form input[type="number"], 
.banner-cta form input[type="password"], 
.banner-cta form input[type="tel"], 
.banner-cta form input[type="text"] {
  border-style: none;
  border-radius: 20px;
}
.banner-cta a {
  text-decoration: underline;
  color: #FFFFFF;
}
.banner-cta a:hover {
  color: #07A19F;
}
.banner-cta .grecaptcha-badge {
  margin: 0;
}
.banner-cta form .hs-button, 
.banner-cta form input[type="submit"] {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.42px;
  background-color: #009f9d;
    border-color: #009f9d;
    color: #ffffff;
    border-radius:15px;
  text-transform: uppercase;
  padding: 7px 26px;
	border: none;
	text-decoration: none;
	white-space: nowrap;
}
.banner-cta form .hs-button:hover, 
.banner-cta form .hs-button:focus,
.banner-cta form input[type="submit"]:hover, 
.banner-cta form input[type="submit"]:focus {
  background-color: #fff;
  color:#000;
  box-shadow: 0px 3px 15px #00000029;
}

@media (min-width:992px) {
  .banner-cta {
    padding-bottom: 75px;
  }
  .banner-cta .title {
    font-size: 50px;
    margin-bottom: 8px;
  }
  .banner-cta p {
    font-size: 22px;
    line-height: 34px;
  }
  .banner-cta form fieldset {
    flex-direction: row;
  }
  .banner-cta form fieldset .hs-fieldtype-text,
  .banner-cta form fieldset .hs-fieldtype-phonenumber,
  .banner-cta form fieldset .hs-fieldtype-booleancheckbox{
    width: 33% !important;
  }
  .banner-cta form fieldset .hs-fieldtype-textarea textarea{
    height: 140px;
  }
  .banner-cta form .hs-button, 
  .banner-cta form input[type="submit"] {
    font-size: 12px;
    line-height: 15px;
  }
  
  .banner-cta form .hs-fieldtype-booleancheckbox{
    margin-bottom:-20px;
  }
}
.single-card {
  padding-top: 30px;
  padding-bottom: 20px;
}
.single-card .section-title {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 17px;
  font-weight: 400;
  color: #3e3d40;
  letter-spacing: 0.42px;
  line-height: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.cards {
  background-color: #FFFFFF; 
}
.cards .card a {
  text-decoration: none;
  color: inherit;
}
.cards .card .card-header {
  position: relative;
  margin-bottom: 10px;
}
.cards .card .card-body {
  padding-right: 10px;
}
.cards .card .card-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 305px;
  max-height: 305px;
  border: 5px solid #07A19F;
}
.cards .card .card-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-alegreya);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.51px;
  line-height: 24px;
  color: #ffffff;
  text-transform: uppercase;
}

.cards .card .card-title {
  margin: 0;
  font-family: var(--font-alegreya);
  font-size: 17px;
  font-weight: 400;
  color: #07a19f;
  letter-spacing: 0.51px;
  line-height: 25px;
  margin-bottom: 10px;
}

.cards .card p, .cards .card .card-text {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #3e3d40;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .single-card .card .card-text {
    column-count: 2;
    column-gap: 50px;
  }
}
@media (min-width: 992px) {
  .single-card .card .card-text {
    column-count: 3;
    column-gap: 50px;
  }
  .single-card {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .cards {
    background-color: #eceded; 
  }
  .cards .card {
    box-shadow: 0px 3px 15px #00000029;
    background-color: #FFFFFF;
    height: 100%;
  }
  .cards .card .card-header {
    margin-bottom: 0;
  }
  .cards .card .card-label {
    left: 24px;
  }
  .cards .card .card-img {
    min-height: 380px;
    max-height: 380px;
  }
  .cards .card .card-body {
    padding: 24px;
  }
  .single-card .section-title {
    text-align: left;
    margin-left: 24px;
    font-size: 24px;
  }
  .cards .cards-row > * {
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }
  .cards .card-col:first-child, .cards .card-col:nth-child(4){
    padding-left: 0;
  }
  .cards .card-col:last-child, .cards .card-col:nth-child(3){
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .cards .card .card-img {
    min-height: 440px;
    max-height: 440px;
  }
}
@media (min-width: 1400px) {
  .single-card {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .cards .card .card-label {
    top: 20px;
    left: 40px;
    font-size: 20px;
    line-height: 24px;
  }
  .cards .card .card-title {
    font-size: 20px;
  }
  .cards .card .card-img {
    min-height: 460px;
    max-height: 460px;
  }
  .cards .card p, .cards .card .card-text {
    font-size: 16px;
    letter-spacing: 0.48px;
    line-height: 24px;
  }
  .single-card .section-title {
    margin-left: 3rem;
    margin-bottom: 50px;
  }
  .cards .cards-row > * {
    --bs-gutter-x : 32px;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }

}

@media (min-width: 1700px) {
  .cards .cards-row > * {
    --bs-gutter-x : 64px;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }
  .cards .card .card-img {
    min-height: 560px;
    max-height: 560px;
  }
  .single-card .card .card-text {
    column-gap: 80px;
  }
}
.content-slider {
    background-color: #ECEDED;
    padding-top: 42px;
    padding-bottom: 82px;
    position: relative;
    overflow: hidden;
}
.content-slider .content-swiper .lead {
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    color: #9C9E9F;
    margin-bottom: 20px;
/*     margin-left: 48px; */
}
.content-slider .content-swiper .title {
    font-family: var(--font-alegreya);
    font-size: 27px;
    line-height: 28px;
    font-weight: 500;
    color: #07A19F;
    margin-bottom: 10px;
}
.content-slider .content-swiper .content {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #3E3D40;
}
.content-slider .content-swiper .swiper-slide .container {
    --bs-gutter-x: 4.5rem;
}
.content-slider .content-swiper .swiper-slide .container .quote-img {
    position: absolute;
    top: -10px;
    left: -5px;
    width: 60px;
    height: 34px;
}
.content-slider .content-swiper .swiper-button-next, 
.content-slider .content-swiper .swiper-button-prev {
    top: unset;
    bottom: 22px;
    color: #07A19F;
    --swiper-navigation-size: 30px;
    width: auto;
}
.content-slider .content-swiper .swiper-button-next:hover, 
.content-slider .content-swiper .swiper-button-prev:hover {
    color: #1D1A39;
}
.content-slider .content-swiper .swiper-button-next {
    right: 36px;
}

.content-slider .content-swiper .swiper-button-prev {
    left: 36px;
}

@media (max-width:991px) {
    .swiper-button-next::after {
        content: '' !important;
    }
    .swiper-button-prev::after {
        content: '' !important;
    }
}
@media (min-width:768px) {
    .content-slider .content-swiper .swiper-button-next {
        right: 10%;
    }
    .content-slider .content-swiper .swiper-button-prev {
        left: 10%;
    }
}
@media (min-width:992px) {
    .content-slider {
        padding-top: 149px;
        padding-bottom: 149px;
    }
    .content-slider .content-swiper .lead {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 16px;
        margin-left: 0;
    }
    .content-slider .content-swiper .title {
        margin-bottom: 22px;
    }
    .content-slider .content-swiper .content {
        font-size: 16px;
        line-height: 24px;
    }
    .content-slider .content-swiper .swiper-slide .container {
        --bs-gutter-x: 1.5rem;
    }
    .content-slider .content-swiper .swiper-slide .container .quote-img {
        top: -20px;
        left: -90px;
        width: 75px;
    }
    .content-slider .content-swiper .swiper-button-next, 
    .content-slider .content-swiper .swiper-button-prev {
        top: 50%;
        bottom: unset;
        transform: translateY(-50%);
        --swiper-navigation-size: 50px
    }
    .content-slider .content-swiper .swiper-button-next {
        right: 12%;
    }
    .content-slider .content-swiper .swiper-button-prev {
        left: 12%;
    }
}
footer .footer-logo {
    background-color: #009F9D;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer .footer-menu {
    background-color: #1D1A39;
    padding-top: 24px;
    padding-bottom: 10px;
}
footer .footer-menu .footer-nav{
    padding-bottom: 48px;
}
footer .footer-menu .footer-nav .menu{
    list-style: none;
    padding: 0;
}
footer .footer-menu .footer-nav .menu .menu-item {
    margin-bottom: 5px;
}
footer .footer-menu .footer-nav .menu .menu-item a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}
footer .footer-menu .footer-copyright p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
footer .footer-menu .footer-copyright .text-white {
    color: #fff;
}
footer .footer-menu .footer-copyright .text-grey {
    color: #A8A8AF;
    margin-top: 24px;
}

@media (min-width:992px) {
    footer .footer-menu {
        padding-top: 36px;
        padding-bottom: 30px;
    }
    footer .footer-menu .footer-nav{
        padding-bottom: 0px;
    }
    footer .footer-menu .footer-copyright p {
        line-height: 24px;
        font-weight: 500;
    }
    footer .footer-menu .footer-copyright .text-grey {
        margin-top: 0;
    }
}
.project-gallery {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ECEDED;
}
.project-gallery .title {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #3E3D40;
}
.project-gallery .img-row {
    padding-left: 36px;
    padding-right: 36px;
}
.project-gallery .img-col {
    padding: 0;
}
.project-gallery .img-wrapper {
    background-color: #fff;
    border: 1px solid #ECEDED;
    width: 100%;
    height: 94px;
/*     padding: 16px; */
}
.project-gallery .img-wrapper img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (min-width:768px) {
    .project-gallery .img-wrapper {
        height: 157px;
/*         padding: 24px 36px; */
    }
/*     .project-gallery .img-wrapper img {
        max-height: 107px;
    } */
}

@media (min-width:992px) {
    .project-gallery {
        padding-top: 77px;
        padding-bottom: 104px;
    }
    .project-gallery .title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 35px;
    }
    .project-gallery .img-row {
        padding-left: 12px;
        padding-right: 12px;
    }
}
.grid2cols {
    background-color: #1D1A39;
/*     background-image: url("../img/grid2cols-bg-mobile.svg"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    padding-top: 34px;
    padding-bottom: 34px;
}
.grid2cols  .container {
    --bs-gutter-x: 4.5rem;
}
.grid2cols .img-wrapper {
/*     border: 5px solid #07A19F; */
    border: none;
    border-radius: 50%;
    background-color: transparent;
    width: 318px;
    min-width: 318px;
    max-width: 318px;
    height: 318px;
    min-height: 318px;
    max-height: 318px;
}
.grid2cols .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid2cols .text-wrapper .title {
    font-family: var(--font-alegreya);
    font-size: 25px;
    line-height: 33px;
    font-weight: 700;
    color: #07A19F;
    margin-top: 0;
}
.grid2cols .text-wrapper .content {
    padding-right: 14px;
}
.grid2cols .text-wrapper .content p {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #FFFFFF;
}
.grid2cols .logo-wrapper {
    margin-top: 63px;
}

@media (min-width:992px){
    .grid2cols {
/*         background-image: url("../img/grid2cols-bg.svg"); */
        background-position: left;
        padding-top: 104px;
        padding-bottom: 30px;
    }
    .grid2cols .img-wrapper {
        width: 416px;
        min-width: 416px;
        max-width: 416px;
        height: 416px;
        min-height: 416px;
        max-height: 416px;
    }
    .grid2cols .text-wrapper .title {
        font-size: 28px;
        line-height: 38px;
        margin-top: 0;
        padding-right: 40px;
    }
    .grid2cols .text-wrapper .content p {
      font-size: 16px;
      line-height: 24px;
    }
    .grid2cols .logo-wrapper {
        margin-top: 122px;
    }
    .twocols-img .content-left, .twocols-img .content-right{
      margin-bottom: 0px !important;
    }
}

/** remove margin top on title (Putu) **/
.twocols-img .title{
  margin-top:0;
}
.grid-3-cols{
    background-color: #1D1A39;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 28px;
    padding-bottom: 46px;
    background-position: top left;
}

.grid-3-cols .description{
    line-height: 1.5;
    letter-spacing: 0.48px;
}

.grid-3-cols .icon-box{
    gap: 50px;
}

.icon-box-wrap{
    gap: 16px;
    margin-bottom: 0.625rem;
}

.grid-3-cols .title{
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 1.813rem;
}

.grid-3-cols .icon-title{
    margin-bottom: 0rem;
    margin-top: 0;
    font-size: 17px;
    line-height: 22px;
}

.grid-3-cols .description{
    font-size: 15px;
    line-height: 20px;
}

.grid-3-cols img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

#hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card{
  background-color:#f5f5f5;
}

.grid-3-cols.related-cases .floating-banner{
  margin-bottom:-90px;
}

@media (min-width:992px){
    .grid-3-cols{
        padding-top: 4.875rem;
        padding-bottom: 6.25rem;
        background-position: right;
    }

    .grid-3-cols .icon-box{
        gap: 50px 30px;
        max-width: 768px;
    }

    .grid-3-cols .icon-box-col{
        width: 30.333333%;
    }

    .grid-3-cols .title{
        font-size: 24px;
        line-height: 24px;
        font-weight: 400;
        margin-bottom: 3.375rem;
    }

    .grid-3-cols .icon-title{
        margin-bottom: 4px;
        font-size: 16px;
        line-height: 20px;
    }
    .grid-3-cols .description{
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width:1200px){
  .grid-3-cols .icon-box{
    max-width: 940px;
  }
}

@media (min-width:1700px){
  .grid-3-cols .icon-box{
    max-width: 1230px;
  }
}

/*tablet*/
@media all and (min-width:600px) and (max-width:992px){
  .grid-3-cols.software .card .featured-image{
    display:block !important;
  }
  
  .grid-3-cols.software .card .content-wrap{
    padding:24px !important;
  }
  
  .grid-3-cols.software .card .content-wrap .link-cta{
    margin-bottom:16px;
  }
  
  .grid-3-cols.software .card .excerpt{
    display:block !important;
  }
}
/*
* Header Style
*/
.header .wrapper {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}
.header.blog .wrapper {
  padding-top:60px;
  padding-bottom:60px;
  height:auto;
}

.header.blog .header-row {
  padding-top: unset;
  height: calc(100% + 56px);
}
.container {
  padding-left: 24px;
  padding-right: 24px;
}
.header .container {
  position: relative;
  z-index: 3;
}
.header .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.header .subtitle {
  font-family: var(--font-ibm);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.42px;
  line-height: 30px;
  color: #07A19F;
  margin-bottom: 8px;
}
.header .title {
  font-family: var(--font-alegreya);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.56px;
  line-height: 38px;
  color: #ffffff;
  margin: 0;
}
.header .intro-box {
  margin-top: auto;
  background-color: #07A19F;
  padding: 20px 30px;
  margin-bottom: 40px;
}
.header .intro-title {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 17px;
  font-weight: bold;
  line-height: 28px;
  color: #1D1A39;
  margin-bottom: 8px;
}
.header .intro-text {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}
.header .read-more {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.42px;
  background-color: #ffffff;
  color: #1D1A39;
  text-transform: uppercase;
}
.header .read-more:hover, .header.read-more:focus {
  background-color: #1d1a39;
  color: #fff;
  box-shadow: 0px 3px 15px #00000029;
}
.header.blog .title-box {
  margin-top: 0rem;
}
@media (min-width: 992px) {
  .header.blog .wrapper {
    padding-top:120px;
    padding-bottom:120px;
    height:auto;
  }
  .container {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .header.blog .title-box {
    margin-top: 0rem;
  }
  .header .title-box {
    margin-top: auto;
  }
  .header .header-row {
    padding-top: 0;
  }
  .header .subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  .header .title {
    font-size: 40px;
    line-height: 1.2;
  }
  .header .intro-box {
    padding: 16px 30px;
    max-width: 400px;
  }
  .header .read-more {
    font-size: 12px;
    line-height: 15px;
  }
}
@media (min-width: 1400px) {
  .header .wrapper {
    max-height: 700px;
  }
  .header .subtitle {
    font-size: 24px;
  }
  .header .title {
    font-size: 50px;
    line-height: 60px;
  }
  .header .intro-title {
    font-size: 20px;
    line-height: 26px;
  }
  .header .intro-text {
    font-size: 16px;
    letter-spacing: 0.48px;
    line-height: 24px;
    max-width: 50%;
  }
  .header .intro-box {
    margin-bottom: 55px;
  }
}
@media (min-width: 1700px) {
  .header .wrapper {
/*     max-height: 800px; */
  }
  
  
}

@media (min-width:1920px){
  .header.blog .wrapper{
    padding-top:160px;
    padding-bottom:160px;
  }
}
.quote{
    background-color: #1D1A39; 
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 68px;
    padding-bottom: 64px;
    background-position: right;
}

.quote-wrap{
    max-width: 504px;
    margin: auto;
}
.quote-wrap p {
    font-family: 'Alegreya', serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}
.quote-first{
    margin-bottom: 12px;
}

.quote-second{
    color: #07A19F;
}

@media (min-width:992px){
    .quote{
        padding-top: 100px;
        padding-bottom: 80px;
        
    }

    .quote-wrap p{
      font-size: 28px;
      line-height: 38px;
    }
}
@media (min-width:1700px){
  .quote-wrap{
    max-width: 600px;
}
}
.team {
    background-color: #ECEDED;
    padding-top: 30px;
    padding-bottom: 50px;
}
.team .title {
    font-size: 1.0625rem;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #3E3D40;
}
.team .card .card-img {
    box-shadow: 0px 3px 15px #00000029;
    border-radius: 50%;
    background-color: #07A19F;
    width: 202px;
    height: 202px;
    object-fit: cover;
}
.team .card .card-body {
    padding-top: 20px;
    padding-bottom: 10px;
}
.team .card .card-body .card-name {
    font-size: 1.125rem;
    line-height: 24px;
    font-weight: 600;
    color: #3E3D40;
    margin-bottom:0;
}
.team .card .card-body .card-title {
    font-size: 1rem;
    line-height: 24px;
    font-weight: 400;
    color: #3E3D40;
    margin-bottom:0;
}
.team .card .card-icon .icon-item {
    width: 34px;
    min-width: 34px;
    max-width: 34px;
    height: 34px;
    min-height: 34px;
    max-height: 34px;
/*     background-color: #07A19F; */
    border: none;
}

@media (min-width:992px) {
    .team {
        padding-top: 64px;
        padding-bottom: 94px;
    }
    .team .title {
        font-size: 1.5rem;
        line-height: 24px;
        margin-bottom: 90px;
    }
    .team .card .card-body {
        padding-top: 40px;
        padding-bottom: 30px;
    }
}
.posts {
  padding-top: 40px;
  padding-bottom: 40px;
}
.posts .card a {
  text-decoration: none;
  color: inherit;
}
.posts .card {
  box-shadow: 0px 3px 15px #00000029;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.posts .card .card-header {
  position: relative;
}

.posts .card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.posts .card .card-img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 213px;
  max-height: 213px;
/*   border: 5px solid #07a19f; */
}

.posts .card .card-title {
  margin: 0;
  font-family: var(--font-alegreya);
  font-size: 20px;
  font-weight: 400;
  color: #3e3d40;
  line-height: 24px;
  margin-bottom: 10px;
}

.posts .card p,
.posts .card .card-text {
  font-family: var(--font-ibm);
  font-size: 16px;
  font-weight: 300 !important;
  line-height: 22px;
  letter-spacing: 0.48px;
  color: #3e3d40;
  margin-bottom: 30px;
}

.posts .card .read-more {
  font-family: var(--font-ibm);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.36px;
  line-height: 18px;
  color: #07a19f;
  margin-top: auto;
  transition: font-size 0.6s ease-in-out;
}
.posts .card .read-more:hover {
  font-size: 14px;
  color: #1d1a39;
}
.posts .card .read-more .decoration-underline {
  text-decoration: underline;
}
.posts .card .read-more .decoration-none {
  text-decoration: none;
  vertical-align: top;
}

/*filter style*/
.post-filter {
  display: flex;
  padding-left: 0;
  list-style: none;
  gap: 14px;
  margin-bottom: 40px;
  overflow: auto;
}
.filter-link {
  position: relative;
  display: block;
  color: #1D1A39;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #1D1A39;
  padding: 8px 20px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.filter-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: #07A19F;
  border-color: #07A19F;
}
.filter-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: #07A19F;
  border-color: #07A19F;
}

.filter-item.active .filter-link {
  z-index: 3;
  color: #fff;
  background-color: #07A19F;
  border-color: #07A19F;
}

/*pagination style*/
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  justify-content: center;
  gap:12px;
}
.page-link {
  font-size:16px;
  position: relative;
  display: block;
  color: #1D1A39;
  text-decoration: none;
  background-color: #fff;
  border: unset;
  border-radius:5px;
  padding: 0.375rem 0.75rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-link.dots{
  background-color:unset;
}

.page-item:last-child .page-link{
  background-color:unset;
}

.page-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: #07A19F;
  border-color: #07A19F;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #07A19F;
  border-color: #07A19F;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.result {
  font-family: var(--font-ibm);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #3E3D40;
}

.posts.related .image-overlay{
  opacity:35%;
}

@media (min-width: 992px) {
  .posts {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .posts .card {
    max-width: 100%;
  }
  .posts .card .read-more {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.42px;
    line-height: 22px;
  }
  .posts .post-list {
    --bs-gutter-x: -32px;
    margin-right: calc(var(--bs-gutter-x) * 0.5);
    margin-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .posts .post-list > * {
    --bs-gutter-x: 32px;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }
  .posts .post-item:first-child,
  .posts .post-item:nth-child(4),
  .posts .post-item:nth-child(7) {
/*     padding-left: 0; */
  }
  .posts .post-item:last-child,
  .posts .post-item:nth-child(3),
  .posts .post-item:nth-child(6) {
/*     padding-right: 0; */
  }

  .posts .post-item:last-child .card,
  .posts .post-item:nth-child(3) .card,
  .posts .post-item:nth-child(6) .card {
/*     margin-left: auto; */
  }

  .post-filter {
    margin-bottom: 60px;
  }
  
  .posts .card .card-title {
    font-size:18px;
    min-height:96px;
  }
}

@media (min-width:1300px){
  .posts .card .card-title {
    font-size:20px;
    min-height:96px;
  }
}

@media (min-width: 1700px) {
  .posts .card {
    max-width: 100%;
  }
   .posts .post-list {
    --bs-gutter-x: -64px;
    margin-right: calc(var(--bs-gutter-x) * 0.5);
    margin-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .posts .post-list > * {
    --bs-gutter-x: 64px;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
    margin-bottom: 32px;
  }
}

/*mobile style*/
@media (max-width:992px){
  .pagination{
    gap:12px;
    margin-top:8px;
  }
  
  .page-link{
    font-size:12px;
    font-weight:400;
    color:#1D1A39;
    border:unset;
    border-radius:5px;
  }
  
  .page-item:last-child .page-link{
    background-color:unset;
  }
  
  .page-link.dots{
    background-color:unset;
  }
}

@media (min-width:600px) and (max-width:992px){
  .posts.related .post-item{
    padding:0px 8px;
  }
}
.main-article {
  padding-top: 0px;
  padding-bottom: 40px;
}

.main-article .backto {
  font-family: var(--font-ibm);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #07a19f;
  text-decoration: none;
  margin-bottom: 53px;
}
.main-article .backto span {
  vertical-align: text-bottom;
}

.main-article h1,
.main-article .post-title {
  font-family: var(--font-alegreya);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  color: #1d1a39;
  margin-bottom: 40px;
}

.main-article .post-meta,
.main-article .table-of-content,
.main-article .social-share {
  margin-bottom: 40px;
}
.main-article .post-meta p {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  color: #a8a8af;
  margin: 0;
}
.main-article .table-of-content h3,
.main-article .table-of-content .title {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 20px;
  font-weight: 500;
  color: #3e3d40;
  line-height: 24px;
  margin-bottom: 20px;
}
.main-article .table-of-content ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.main-article .table-of-content ul li a {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  color: #07a19f;
  text-decoration: none;
  white-space: nowrap; 
  width: 100%; 
  overflow: hidden;
  text-overflow: ellipsis; 
  display: block
}
.main-article .social-share h3,
.main-article .social-share .title {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 20px;
  font-weight: 500;
  color: #3e3d40;
  line-height: 24px;
  margin-bottom: 20px;
}
.main-article .social-share ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.main-article .social-share ul li a{
  font-size: 20px;
  color: #07a19f
}
.main-article .social-share .social-icon {
  max-width: 32px;
}
.main-article .button-wrapper {
  margin-bottom: 40px;
}
.main-article .button-wrapper .cta-button {
  background-color: #009f9d;
  text-align: center;
  color: #FFF;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 30px;
}
.main-article .button-wrapper .cta-button:hover,
.main-article .button-wrapper .cta-button:focus{
  opacity: 80%;
}
.article img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 30px;
}
.article h3 {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 20px;
  font-weight: 400;
  color: #1d1a39;
  line-height: 28px;
  margin-bottom: 10px;
}
.article h2 {
  margin: 0;
  font-family: var(--font-ibm);
  font-size: 20px;
  font-weight: 400;
  color: #1d1a39;
  line-height: 28px;
  margin-bottom: 10px;
}
.article p {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.45px;
  color: #3e3d40;
  margin-bottom: 30px;
}

.article li {
  font-family: var(--font-ibm);
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.45px;
  color: #3e3d40;
  margin-bottom: 8px;
}

.article .hs-button {
  border-radius: 30px;
  padding: 8px 16px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}

/*post navigation style*/
.post-navigation {
  background-color: #1d1a39;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 25px;
  padding-bottom: 25px;
  background-position: right;
}

.post-navigation a {
  font-family: var(--font-ibm);
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.36px;
  text-decoration: none;
}
.post-navigation a span {
  vertical-align: text-top;
}
.related h3 {
	margin: 0;
	font-family: var(--font-alegreya);
	font-size: 20px;
	font-weight: 400;
	line-height: 38px;
	color: #3E3D40;
}
.related .see-all {
	color: #1D1A39;
	background-color: #ffffff;
	border: 1px solid #1D1A39;
	padding: 8px 20px;
	font-family: var(--font-ibm);
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
}
.related .see-all:hover {
	color: #ffffff;
	background-color: #07A19F;
	border: 1px solid #07A19F;
}
@media (min-width: 992px) {
	.main-article {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.main-article .backto {
		margin-bottom: 60px;
	}
  .post-navigation {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .post-navigation a {
    font-size: 14px;
  }
  .main-article h1,
  .main-article .post-title {
    font-size: 50px;
    line-height: 60px;
  }
  .main-article .table-of-content h3,
  .main-article .table-of-content .title {
    font-size: 24px;
  }
  .main-article .social-share h3,
  .main-article .social-share .title {
    font-size: 24px;
  }
  .main-article .button-wrapper .cta-button {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
	.related h3 {
		font-size: 28px;
	}
  
  .article img {
    object-position: top center;
    max-height:422px;
  }
  
	.aside {
		position: sticky;
    top: 120px;
		z-index: 2;
		transition: opacity 0.3s ease-in-out;
		opacity: 1;
    max-width: 230px;
	}
	.aside.disable {
		opacity: 0;
	}
}

/* limit table of contents */
@media (min-width: 992px) {
  .main-article .table-of-content ul li:nth-of-type(n+6){
    display: none;
  };
}
@media (min-width: 992px) and (min-height: 860px) {
  .main-article .table-of-content ul li:nth-of-type(n+6){
    display: unset;
  };
  .main-article .table-of-content ul li:nth-of-type(n+12){
    display: none;
  };
}
@media (min-width: 992px) and (min-height: 1080px) {
  .main-article .table-of-content ul li:nth-of-type(n+6){
    display: unset;
  };
  .main-article .table-of-content ul li:nth-of-type(n+12){
    display: unset;
  };
  .main-article .table-of-content ul li:nth-of-type(n+18){
    display: none;
  };
}

@media (min-width:1400px){
  .article img {
    max-height: 522px;
    object-position: center center;
  }
}

@media (min-width:1700px){
  .article img {
    max-height: 633px;
    object-position: center center;
  }
}

.breadcrumbs-wrapper.breadcrumbs-blogpost {
  color:#1d1a39;
  position:relative;
}

.breadcrumbs-wrapper.breadcrumbs-blogpost .hs-breadcrumb-menu-item:first-child{
  padding-left:0;
} 

.breadcrumbs-wrapper.breadcrumbs-blogpost .hs-breadcrumb-menu-item a{
  color:#07a19f;
}

.breadcrumbs-wrapper.breadcrumbs-blogpost .hs-breadcrumb-menu-item span{
  color:#1d1a39;
}

.toc-mobile-wrap{
/*   padding: 20px;
  background-image:url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/bg-gradient.png'); */
} 

@media (max-width:991px){
  .breadcrumbs-wrapper.breadcrumbs-blogpost {
/*     margin-bottom:53px; */
    margin-bottom:0px;
  }
  
  .main-article .table-of-content .title {
    font-size:16px;
    color:#07a19f;
  }
  
  .toc-mobile{
    width:100%;
    width: 100%;
    padding: 5px;
    font-size: 14px;
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(.75rem - 3px);
    background-color: transparent;
    color: #1d1a39;
/*     background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E"); */
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231d1a39' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
    background-position: right .75rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 1px solid #a4a3af;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

@media (min-width:992px){
  .breadcrumbs-wrapper.breadcrumbs-blogpost {
    margin-bottom:60px;
  }
}

@media (max-width:991px){
  .main-article .post-meta{
    margin-top:40px;
  }
}
.big-banner.error404 .wrapper {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}
.big-banner.error404 .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    object-position: center;
}
.big-banner.error404 h1,  .big-banner.error404 h2, .big-banner.error404 h3, .big-banner.error404 h4, .big-banner.error404 h5, .big-banner.error404 h6{
    font-family: var(--font-alegreya);
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.big-banner.error404 p, .big-banner.error404 span, .big-banner.error404 p, .big-banner.error404 ul li {
    font-family: var(--font-ibm);
    line-height: 1.5;
    font-weight: 400;
    color: #FFF;
}
.big-banner.error404 .btn-home {
    border-radius: 5px;
    background-color: #FFFFFF;
    border: none;
    padding: 7px 26px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #213059;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
}
.big-banner.error404 .btn-home:hover {
    background-color: #009f9d;
    color:#fff;
}
/* general Solutions */
.bg-overlay{
    position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.link-cta .icon{
    transition: .3s ease-out;
    display: inline-block;
}

.link-cta:hover .icon,
.card:hover .link-cta .icon{
    transform: translateX(4px);
}

.card.featured{
    overflow: hidden;
}

.featured-image{
    transition: .3s ease-out;
}

.subtitle{
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 500;
}

.title{
    font-size: 64px;
    font-weight: 500;
    line-height: 1.125;
    letter-spacing: 0;
    margin-top: 16px;
    margin-bottom: 16px;
}



.small-title{
    margin-top: 0;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 24px;
    font-weight: 500;
    font-family: var(--font-alegreya);
    color: #1D1A39;
}

.excerpt{
    color: #3E3D40;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
}



.cta-button.black{
    background-color: #1D1A39;
}



.grid-3-cols .card .img-wrapper .img-overlay{
    background: transparent linear-gradient(135deg, #1D1A39 0%, #07A19F 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    top: 0;
}

/* Header Solutions */
/* .header-solutions.big-padding .wrapper{
    padding-bottom: 230px;
} */

.header-solutions .title.short{
    max-width: 410px;
}

.header-solutions .banner-wrap{
    max-width: 844px;
}



/* 2 col with video */

.col-with-video.bg-white{
    background-color: #FFFFFF;
}

.col-with-video .container{
    gap: 30px;
}

.col-with-video .left-content{
    max-width: 100%;
}



.col-with-video .video-wrapper .video-container{
    position: relative;
    cursor: pointer;
  height:100%;
}

.col-with-video .video-wrapper .video-container.image{
    cursor: default;
}

.col-with-video .video-wrapper video{
    width: 100%;
    aspect-ratio: 16/9;
}

.col-with-video .video-overlay {
    position:absolute;
    top:0;
    width:100%;
    height:100%;
}

.col-with-video .video-overlay img{
    width:100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  height: auto;
}

.col-with-video .video-wrapper.image-only .video-overlay img{
  max-height:520px;
}

.srVideo-controls{
    position: absolute;
    top: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 0;
}



/* Sub solutions */
.grid-3-cols{
    background-color: #fff;
}

.grid-3-cols.bg-grey,
.case-slider.bg-grey{
    background-color: #F5F5F5;
}

.grid-3-cols.bg-grey .card{
    background-color: #fff;
}

.grid-3-cols .card.featured img{
    position: absolute;
    height: 100%;
  width:100%;
}

.grid-3-cols .card.featured .content-wrap{
    z-index: 1;
    margin-top: auto;
    
}

.grid-3-cols .card.featured .title,
.grid-3-cols .card.featured .excerpt, .grid-3-cols .card.featured p{
    color: #fff;
}

.grid-3-cols .card .featured-image{
    width: 42%;
    aspect-ratio: 536/331;
    object-fit: cover;
    height: auto;
    max-height: 100%;
/*     max-width:200px; */
/*     flex: 1 0 auto; */
}

.grid-3-cols .card .title{
    margin-top: 0;
    margin-bottom: 16px;
    color: #1D1A39;
    font-size: 24px;
    line-height: 1.33;
    font-weight: 600;
}

.grid-3-cols .card .excerpt{
    margin-bottom: 16px;
    min-height:72px; /*minimum 3row height*/
}



/* Software section */

.grid-3-cols.software .card .featured-image{
    aspect-ratio: 536/223;
}


/* Icons wrap */
.icons-wrap{
    padding-top: 120px;
}

.icons-wrap .card .content-wrap{
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.icons-wrap .icon-title{
    color: #07A19F;
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
}

.icons-wrap .card .title{
    margin-bottom: 0;
    color: #07A19F;
    font-weight: 600;
    font-size: 32px;
}

.icons-wrap .image-icon{
    max-width: 70px;
}

.icons-wrap .excerpt{
    letter-spacing: 0.48px;
}

/* case Slider */


.case-slider .swiper-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-top: 60px;
  padding-bottom:60px;
}



.case-slider .logo-img{
    width: auto;
    max-width:120px;
    height: auto;
    filter: invert(80%) sepia(29%) saturate(0%) hue-rotate(209deg) brightness(97%) contrast(86%);
}

.case-slider .subtitle{
    color: #07A19F;
}

.case-slider h2, .case-slider p {
  margin: 0;
}

.case-slider .image-container {
  flex: 0 0 50%;
  position: absolute;
  top: 0;
  right: 0;
  width: 45%; 
  height: 100%;
  max-width: 814px;
}

.case-slider img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.case-slider .brand-logo{
    display: block;
    width: 100%;
    max-width: 86px;
    margin-bottom: 16px;
}

.case-slider .slider-content{
    font-size: 16px;
    line-height: 1.33;
    margin-bottom: 40px;
    max-width: 674px;
}

.case-slider .case-slider-container .cta-button{
    background-color: #1D1A39;
}

.case-slider .subtitle{
    margin-bottom: 8px;
}

.case-slider .swiper-button-next:after, 
.case-slider .swiper-button-prev:after{
    font-size:28px;
    display: none;
}



.floating-banner .img-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
}

/* Featured Solutions */
.featured-solutions{
    padding-top: 60px;
    padding-bottom: 60px;
}

.featured-solutions .grid{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 66.66%;
}

.featured-solutions .left-content {
    width:33.33%;
    max-width:400px;
    flex:0 0 auto
}

.featured-solutions.bg-grey .left-content{
    max-width: 431px;
}

.featured-solutions .d-flex{
    gap:16px;
    justify-content:space-between;
}

.featured-solutions .content-text{
    color: #3E3D40;
    font-size: 16px;
}

.featured-solutions.bg-grey .content-text{
    letter-spacing: .48px;
}

.featured-solutions .content-wrap{
    background-color: #fff;
    border: 1px solid #F5F5F5;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.featured-solutions .content-wrap .link-cta{
    margin-top: auto;
}

.featured-solutions .title{
    font-weight: 600;
}

.featured-solutions .excerpt{
    margin-bottom: 8px;
}

.featured-solutions .excerpt p{
    margin-bottom: 0px;
}


.featured-solutions .card{
    overflow: hidden;
}

.featured-solutions .card:before,
.featured-solutions .card:after{
    content: "";
    position: absolute;
    opacity: 0; /* Start with a 0-width border */
    width: 100%;
    height: 100%;
    border: 2px solid transparent; /* Transparent border for the gradient */
    transition: all 0.3s ease-out;
}

.featured-solutions .card:hover:before,
.featured-solutions .card:hover:after {
    opacity: 1;
    border-image: linear-gradient(111deg, #07A19F 0%, #1D1A39 100%); /* Define the gradient colors and angle */
    border-image-slice: 1; /* Ensure the gradient covers the entire border */
    border-image-width: 2px; /* Set the border width to match the original width */
    border-image-outset: 0; /* Ensure no spacing outside the border */
    border-image-repeat: stretch; /* Stretch the gradient along the border */
  }

/* Accordion */
.faq-accordion{
    padding-top: 60px;
    padding-bottom: 60px;
}

.accordion-item {
    border: 1px solid #EBEBEB;
    margin-bottom: 16px;
    overflow: hidden;
    padding: 24px 32px;
}

.accordion-item:last-child{
  margin-bottom:0;
}

.faq-accordion.bg-grey .accordion-item{
    border: 1px solid #D1D1D7;
}

.accordion-header {
    cursor: pointer;
    font-size: 24px;
    line-height: 1.33;
    font-weight: 600;
    color: #1D1A39;
    transition: .3s ease-in-out;
    display: flex;
    justify-content: space-between;
}

.accordion-content {
    max-height: 0;
    height: 100%;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    font-size: 14px;
    line-height: 1.5;
    width: 90%;
  color: #3E3D40;
}

.accordion-content p {
    color: #3E3D40;
    line-height: 1.5;
}

.accordion-item.active .accordion-header{
    color: #1D1A39;
    padding-bottom: 16px;
}

span.accordion-icon{
    position:relative;
    width:30px;
}
span.accordion-icon:before {
    content:'';
    width:21px;
    height:3px;
    background:#1D1A39;
    position:absolute;
    top:14px;
    right: 0;
}

span.accordion-icon:after{
    content:'';
    width:3px;
    height:21px;
    background:#1D1A39;
    position:absolute;
    right:9px;
    top:5px;
}

.accordion-item.active .accordion-icon:after {
    display:none;
}

.faq-accordion .floating-banner{
    margin-bottom: 0;
    margin-top: 16px;
    max-width: 100%;
    padding: 18px 40px;
    background-color: #1D1A39;
}

.faq-accordion .floating-banner .small-title{
    font-size: 24px;
    margin-bottom: 0;
    font-family: var(--font-ibm);
}

/* Form contact */

/*
.form-wrap .form-title,
.form-wrap .wrap-title,
.form-wrap .content-text{
  text-align:center;
} */

.hs_recaptcha{
  justify-content: flex-start;
    display: flex;
    margin-top: 22px;
}
.form-contact{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #F5F5F5;
}
.form-contact .contact-wrap{
    max-width: 1364px;
    margin: auto;
    padding: 77px 71px;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.form-contact .form-wrap{
    max-width: 535px;
    z-index:1;
}

.form-contact .wrap-title{
    font-size: 40px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.form-contact .content-text{
    font-size: 20px;
    letter-spacing: 0.6px;
}

.form-contact form .hs-richtext{
  font-size: .775rem;
  margin-bottom:0;
}

.form-contact form .hs-richtext p{
  font-size: .775rem;
  margin-bottom:0;
}

.form-contact .form-group{
    margin-bottom: 16px;
}

.form-contact .form-wrap form input[type='text'],
.form-contact .form-wrap form input[type='email'],
.form-contact .form-wrap form input[type='tel'],
.form-contact .form-wrap form input[type='number'],
.form-contact .form-wrap form textarea,
.form-contact .form-wrap form select{
    background: #ffffff1a;
/*     background-color: rgba(255,255,255,0.1); */
    background-color: #ffffff1a;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    padding: 10px 24px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    width: 100% !important;
}

.form-contact .form-wrap form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 512 512" fill="%23ffffff"><path d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>);
    background-repeat: no-repeat;
    background-position: right 24px top 50%;
}

select option {
    color:#000;
    background-color:#ffffff;
}

.submitted-message{
    color:#ffffff;
}

.form-contact .form-wrap form input::placeholder,
.form-contact .form-wrap form label,
.form-contact .form-wrap form textarea::placeholder{
    color: #FFFFFF;
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #FFFFFF;
}

.form-contact .form-wrap form input[type='submit']{
    border: none;
    margin-top: 32px;
    padding: 6px 18px;
    background-color: #07A19F;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0px 3px 15px #07A19F33;
    text-transform: uppercase;
    line-height: 1.71;
    font-family: var(--font-ibm);
}

.form-contact .person-wrap{
    align-self: flex-end;
}

.form-contact .person-wrap .person-image{ 
    position: absolute;
    right: 0;
/*     top: -77px; */
    bottom:0;
    height: 100%;
/*     width:60%;
    z-index:0; */
}

.form-wrap .legal-consent-container a{
  color:#fff;
}

.person-bio{
    background-color: rgba(255,255,255,0.7);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    padding: 16px;
}

.person-bio .person-name,
.person-bio .job-title{
    color: #1D1A39;
    font-size: 18px;
    letter-spacing: 0.54px;
    line-height: 1.33;
    margin-bottom: 0;
}

.person-bio .person-name{
    font-weight: 700;
}

/* Mobile responsive */

/* General */
.cta-button{
    padding: 6px 18px;
    background-color: #009F9D;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.14px;
    font-weight: 500;
    box-shadow: 0px 3px 15px #07A19F33;
    text-transform: uppercase;
    line-height: 1.5;
    font-family: var(--font-ibm);
    white-space: nowrap;
}

/* built in CTA button */
body .body-wrapper #main-content a.cta_button:not(.emx-readmore-link){
    padding: 6px 18px !important;
    background-color: #07A19F !important;
    text-decoration: none !important;
    color: #fff !important;
    border-radius: 4px !important;
    display: inline-block !important;
    font-size: 12px !important;
    letter-spacing: 0.14px !important;
    font-weight: 500 !important;
    box-shadow: 0px 3px 15px #07A19F33 !important;
    text-transform: uppercase !important;
    line-height: 1.5 !important;
    font-family: var(--font-ibm) !important;
    white-space: nowrap !important;
    height:auto !important;
    width:auto !important;
}

.content-text{
    font-size: 14px;
    line-height: 1.33;
    margin-bottom: 24px;
    color: #3E3D40;
}

.wrap-title{
    margin-bottom: 24px;
    margin-top: 0;
    font-size: 24px;
    font-family: var(--font-alegreya);
    font-weight: 500;
    color: #1D1A39;
}

.link-cta{
    color: #07A19F;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 500;
}

.grid-3-cols .card,
.featured-solutions .card{
    background-color: #F5F5F5;
    text-decoration: none;
    color: inherit;
    display: flex;
    position: relative;
    transition: .3s ease-out;
}

/* header solutions */
.header-solutions{
    background-color: #f5f5f5;
}

.header-solutions .subtitle{
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 500;
}

.header-solutions .title{
    font-size: 32px;
    color: #1D1A39;
    font-weight: 500;
    line-height: 1.125;
    letter-spacing: 0;
    margin-top: 16px;
    margin-bottom: 16px;
}

.header-solutions .content-text{
    color: #3E3D40;
    max-width: 674px;
}

.header-solutions .bg-image,
.header-solutions .bg-overlay{
    min-height: 160px;
    height: 160px;
}



.header-solutions .wrapper{
    padding-top: 220px;
    padding-bottom: 60px;
    height: auto;
    max-height: unset;
}

/* cols wwith video  */
.col-with-video .video-wrapper{
    max-width: 812px;
    margin-bottom: 10px;
}

.col-with-video{
    color: #000;
    padding-top: 55px;
    padding-bottom: 80px;
    background-color: #F5F5F5;
}

.col-with-video .title{
    margin-top: 0;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: var(--font-alegreya);
    color: #1D1A39;
}

.col-with-video  .content-text{
    color: #3E3D40;
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: 0.06;
    line-height: 1.5;
}

.col-with-video .link-cta{
    font-size: 14px;
}

.srVideo-controls .playpause{
    background-color: rgba(7,161,159,0.5);
    border-radius: 50%;
    padding: 19px;
}

.srVideo-controls .playpause img{
    max-width: 12px;
}

/* Sub solutions */
.grid-3-cols .wrap-title{
    font-size: 24px;
}

.grid-3-cols .grid,
.software .grid{
    display: grid;
    gap: 16px;
}

.grid-3-cols .card{
    background-color: #F5F5F5;
    text-decoration: none;
    color: inherit;
    display: flex;
    position: relative;
}

.grid-3-cols .card .img-wrapper{
    position: relative;
    width: 40%;
    flex: 1 0 auto;
}

.grid-3-cols .card .content-wrap{
    padding: 16px 16px 16px 12px;
     display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.grid-3-cols .card .title,
.featured-solutions .card .title{
    margin-top: 0;
    margin-bottom: 8px;
    color: #1D1A39;
    font-size: 16px;
    line-height: 1.33;
    font-weight: 600;
}

.grid-3-cols{
    padding-top:60px;
    padding-bottom: 60px;
}

/* Software */
.grid-3-cols.software{
    padding-top: 60px;
    padding-bottom: 60px;
}

.software .grid{
    gap: 48px;
}

.software .wrap-title{
    margin-bottom: 48px;
}

.grid-3-cols.software .card .content-wrap{
    padding: 40px 16px;
    padding-bottom: 24px;
}

.grid-3-cols.software .card .title{
    font-size: 16px;
}

.software .image-icon{
    max-width: 50px;
    margin-top: -65px;
    margin-bottom: 16px;
    display: block;
}

/* Case Slider */
.case-slider {
    position: relative;
    padding: 1px 24px;
}

.floating-banner{
    max-width: 1088px;
    margin: auto;
    padding:24px 44px;
    position: relative;
    margin-bottom: 0px;
    z-index: 2;
    margin-top:-60px;
}

.floating-banner .wrapper{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:flex-start;
    text-align: center;
    z-index: 0;
    position: relative;
}

.floating-banner .small-title,
.case-slider .floating-banner .small-title{
    color: #fff;
    font-size: 24px;
    line-height: 1.16;
    margin-bottom: 8px;
}

.floating-banner .content-text{
    font-size: 14px;
    color: #EBEBEB;
    line-height: 1.5;
    margin-bottom: 16px;
}

.floating-banner .cta-button{
    padding: 5px 18px;
    box-shadow: 0px 3px 15px #07A19F33;
    font-size: 12px;
    letter-spacing: 0.14px;
}

.case-slider .small-title{
    margin-bottom: 16px;
    font-size: 20px;
}

.case-slider .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
}

.case-slider .slide-arrows .arrows-container{
    display:flex;
    justify-content:flex-end;
    max-width: 100%;
    position: absolute;
    right: 0;
    bottom: 0px;
}

.case-slider .swiper-button-next, 
.case-slider .swiper-button-prev{
    position:relative;
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
    width:48px;
    height:48px;
    background:transparent;
    border:1px solid #EBEBEB;
    color:#1D1A39;
    font-size:6px;
}

.case-slider .swiper-button-next svg, 
.case-slider .swiper-button-prev svg{
    width: 6px;
}

.case-slider .swiper-slide {
    display: flex;
    position: relative;
}

.case-slider .slide-arrows{
    position: relative;
    padding-top: 60px;
    border-bottom: 1px solid #EBEBEB;
}

.case-slider .slider-content p{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #3E3D40;
}

.case-slider .slider-content,
.case-slider .slider-content ul li{
   font-size: 14px;
    line-height: 1.5;
    color: #3E3D40;
}

.case-slider .brand-logo-wrapper{
    position: relative;
    padding: 0px;
    width: auto;
    max-width: 120px;
    margin-bottom: 16px;
}

.case-slider .brand-logo-wrapper::before {
    display: none;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(202,199,201, 0.3);
}

.case-slider .brand-logo-wrapper img{
    margin-bottom:0;
}

@media (min-width:600px) and (max-width:991px){
  .header-solutions .wrapper{
    padding-top:310px;
  }
  
  .header-solutions .bg-image, .header-solutions .bg-overlay{
    min-height:250px;
    height:250px;
  }
  
  .case-slider .brand-logo-wrapper{
    min-height:146px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  
  #hs_cos_wrapper_module_1697672130050 .case-slider .brand-logo-wrapper{
    min-height:unset;
  }
  
  .case-slider .brand-logo-wrapper img{
    height:100% !important;
    object-fit:contain;
  }
  
  #hs_cos_wrapper_widget_1697734255511 .separator{
    height:40px;
  }
}

@media (min-width:992px) {
  .faq-accordion,
  .col-with-video.video-stay{
    padding-top:120px;
    padding-bottom:120px;
  }
  
    .content-text,
    .header-solutions .content-text{
        font-size: 18px;
        color: #EBEBEB;
        margin-bottom: 40px;
    }

    .cta-button{
        font-size: 14px;
        padding: 10px 24px;
        letter-spacing: 0;
        line-height: 1.71;
    }
  
    body .body-wrapper #main-content a.cta_button:not(.emx-readmore-link){
        font-size: 14px !important;
        padding: 10px 24px !important;
        letter-spacing: 0 !important;
        line-height: 1.71 !important;
  }

    .wrap-title{
        margin-bottom: 40px;
        margin-top: 0;
        font-size: 48px;
    }

    .link-cta{
        font-size: 16px;
        letter-spacing: 0.48px;
    }

    /* Header solutions */
    .header-solutions .bg-image,
    .header-solutions .bg-overlay{
        min-height: 100%;
        height: 100%;
    }

    .header-solutions .subtitle{
        font-size: 16px;
    }
    
    .header-solutions .title{
        font-size: 64px;
        color: #fff;
    }

    .header-solutions .wrapper{
        padding-bottom: 120px;
        padding-top:120px;
    }
  
    .header-branding .wrapper{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* cols with video */
    .col-with-video .video-wrapper{
        transform: translateY(-165px);
        margin-bottom: -170px;
    }

    .col-with-video{
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .col-with-video .title{
        font-size: calc(24px + (32 - 24) * ((100vw - 1280px) / (1700 - 1280)));
        margin-bottom: 24px;
    }

    .col-with-video  .content-text{
        font-size: 16px;
        letter-spacing: 0;
    }

    .col-with-video .link-cta{
        font-size: 16px;
        letter-spacing: 0.42px;
    }
  
    .col-with-video.video-stay .container{
        align-items:center;
    }
  
    .col-with-video .video-wrapper{
        max-width:55%;
    }
  
    .col-with-video .left-content {
        max-width: 35%;
    }

    .srVideo-controls .playpause{
        padding: 31px;
        margin-top:-10%;
    }
    
    .srVideo-controls .playpause img{
        max-width: 23px;
    }

    /* Sub solutions */
    .grid-3-cols .wrap-title{
        font-size: 48px;
    }

    .grid-3-cols .grid,
    .software .grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .grid-3-cols .card.featured.big{
        grid-column: span 2;
        grid-row: span 1;
    }
  
    .grid-3-cols .card .featured-image{
        width:100%;
      max-width:100%;
    }

    .grid-3-cols .card.featured.big .content-wrap{
        max-width: 50%;
    }

    .grid-3-cols .card{
        flex-direction: column;
        height: 100%;
    }
  
    .grid-3-cols .card.featured .content-wrap .text-container{
      margin-top: auto;
    }

    .grid-3-cols .card .img-wrapper{
        width: 100%;
    }

    .grid-3-cols .card .content-wrap{
        padding: 24px;
    }

    .grid-3-cols .card .title,
    .featured-solutions .card .title{
        margin-bottom: 16px;
        font-size: 17px;
    }

    /* Software */
    .grid-3-cols.software{
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .grid-3-cols.software .card .content-wrap{
        padding: 30px;
        padding-bottom: 40px;
    }

    .grid-3-cols.software .card .title{
        font-size: 24px;
    }

    .software .wrap-title{
        margin-bottom: 40px;
    }

    .software .image-icon{
        margin-top: -55px;
        margin-bottom: 8px;
    }

    /* Case Slider */
    .case-slider {
        padding: 1px;
    }

    .case-slider .text-container {
        flex: 0 0 50%; 
        max-width: 50%;
    }

    .case-slider .swiper-container {
        padding-top: 0;
        padding-bottom:0;
    }

    .floating-banner{
        padding:72px 80px;
        margin-bottom: -140px;
        margin-top: -115px;
    }

    .floating-banner .wrapper{
        flex-direction: row;
        align-items:center;
        justify-content:space-between;
        text-align: left;
    }

    .floating-banner .small-title,
    .case-slider .floating-banner .small-title{
        color: #fff;
        font-size: 48px;
        margin-bottom: 8px;
    }

    .floating-banner .content-text{
        font-size: 20px;
        letter-spacing: 0.6px;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .floating-banner .cta-button{
        box-shadow: none;
        font-size: 14px;
        letter-spacing: 0;
        padding: 10px 24px;
    }

    .case-slider .small-title{
        margin-bottom: 40px;
        font-size: 32px;
    }

    .case-slider .container {
        align-items: flex-end;
        padding: 120px 0 120px 0;
    }

    .case-slider .slide-arrows .arrows-container{
        right: 34.7%;
    }

    .case-slider .swiper-button-next, 
    .case-slider .swiper-button-prev{
        width:148px;
        height:148px;
        background:#fff;
        border:1px solid #F5F5F5;
        font-size:14px;
    }

    .case-slider .swiper-button-next svg, 
    .case-slider .swiper-button-prev svg{
        width: 14px;
    }

    .case-slider .swiper-slide {
        min-height: 759px;
    }

    .case-slider .slide-arrows{
        padding-top: 0;
        border-bottom: none;
    }

    .case-slider .slider-content p{
        font-size: 16px;
        margin-bottom: 1rem;
        line-height: 1.33;
    }
  
    .case-slider .slider-content,
    .case-slider .slider-content ul li{
      font-size:16px;
      line-height: 1.33;
    }
  
    .case-slider img {
      height:759px;
    }
  
    /* Accordion     */
    .accordion-content {
        font-size: 16px;
    }
  
    .form-contact,
    .featured-solutions{
        padding-top: 120px;
        padding-bottom: 120px;
    }
  
    .form-contact .form-wrap form input[type='text'],
    .form-contact .form-wrap form input[type='email'],
    .form-contact .form-wrap form input[type='tel'],
    .form-contact .form-wrap form input[type='number'],
    .form-contact .form-wrap form textarea{
      font-size:16px;
    }
    .form-contact .form-wrap form input[type='submit']{
      padding:10px 24px;
    }
    
    .featured-solutions .content-wrap{
      padding: 24px;
    }
    
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 11;
    line-clamp: 11;
    -webkit-box-orient: vertical;
  }
  
  /*for specific products block on https://www.emixa.com/learning-training*/
  .hs-content-id-150696464679 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt{
    min-height:240px;
  }
  
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:220px;
  }
}

@media (min-width:1200px) and (max-width:1279px){
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt span {
    -webkit-line-clamp: 9;
    line-clamp: 9;
  }
  
  /*for specific products block on https://www.emixa.com/learning-training*/
  .hs-content-id-150696464679 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt{
    min-height:200px;
  }
  
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:170px;
  }
}

@media (min-width:1280px) and (max-width:1300px){
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt span {
    -webkit-line-clamp: 10;
    line-clamp: 10;
  }
  
  /*for specific products block on https://www.emixa.com/learning-training*/
  .hs-content-id-150696464679 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt{
    min-height:220px;
  }
  
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:195px;
  }
  
}

@media (min-width:1300px) and (max-width:1400px){
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt span {
    -webkit-line-clamp: 9;
    line-clamp: 9;
  }
  
  /*for specific products block on https://www.emixa.com/learning-training*/
  .hs-content-id-150696464679 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt{
    min-height:220px;
  }
  
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:170px;
  }
}

@media (min-width:1400px) and (max-width:1500px){
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt span {
    -webkit-line-clamp: 8;
    line-clamp: 8;
  }
  
  /*for specific products block on https://www.emixa.com/learning-training*/
  .hs-content-id-150696464679 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt{
    min-height:190px;
  }
  
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:170px;
  }
}

@media (min-width:1500px){
  .case-slider .floating-banner{
    margin-bottom: -180px;
  }
}

@media (min-width:1500px) and (max-width:1600px){
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt span {
    -webkit-line-clamp: 8;
    line-clamp: 8;
  }
  
  /*for specific products block on https://www.emixa.com/learning-training*/
  .hs-content-id-150696464679 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt{
    min-height:170px;
  }
  
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:150px;
  }
}

@media (min-width:1600px) and (max-width:1700px){
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt span {
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }
  
  /*for specific products block on https://www.emixa.com/learning-training*/
  .hs-content-id-150696464679 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt{
    min-height:150px;
  }
  
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:120px;
  }
}

@media (min-width:1700px){
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:145px;
  }
}

@media (min-width:1920px){
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt span {
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }
  
  .hs-content-id-149873109278 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  
  /*for specific industries block on https://www.emixa.com/industrial-engineering*/
  .hs-content-id-150096098452 #hs_cos_wrapper_module_16976722490206 .grid-3-cols .card .excerpt{
    min-height:auto;
  }
  
  /*for specific industries block on https://www.emixa.com/industrial-engineering*/
  .hs-content-id-150096098452 #hs_cos_wrapper_module_16976722490206 .grid-3-cols .card.featured .excerpt p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  
  /*for specific products block on https://www.emixa.com/utilities-digital-transformation*/
  .hs-content-id-150411800444 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
  }
  
  /*for specific products block on https://www.emixa.com/learning-training*/
  .hs-content-id-150696464679 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt{
    min-height:150px;
  }
  
  /*for specific product block on https://www.emixa.com/construction-digitalisation*/
  .hs-content-id-150410258322 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
  }
  
  /*for specific product block on https://www.emixa.com/infrastructure-digitalisation*/
  .hs-content-id-150410361458 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured .excerpt p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
  }
  
  /*for specific product block on https://www.emixa.com/cloud-erp-solutions*/
  .hs-content-id-149590001781 #hs_cos_wrapper_module_169767206053610 .grid-3-cols .card.featured.big .excerpt{
    min-height:100px;
  }
  
  .hs-content-id-150058593806 #hs_cos_wrapper_module_16976722490206 .grid-3-cols.bg-grey .card.featured .excerpt{
    min-height:120px;
  }
  
}

@media (min-width:1024px) and (max-width:1400px){
  .text-slider .slide-arrows .arrows-container{
    bottom: 10px !important;
  }
  .col-with-video .container {
    gap: 50px;
  }
  .header-solutions .wrapper,
  .header-events .wrapper{
    padding-top: 120px;
    }
}

@media (min-width:1024px) and (max-width:1500px){
  .floating-banner {
    padding: 72px 50px;
  }
  .text-slider .excerpt {
    margin-bottom: 16px;
    max-width: 96%;
  }
  .form-contact .person-wrap .person-image{
    height:100%;
/*     object-fit:fill; */
  }
  
  .form-contact .contact-wrap{
    padding:50px 40px;
  }
}

@media (min-width:1200px) and (max-width:1500px){
  .grid-3-cols .card .content-wrap{
    min-height: 264px;
  }
  
  .grid-3-cols .card.featured .content-wrap{
    height: auto;
  }
  
  .grid-3-cols .card.featured .content-wrap .text-container{
    margin-top: 0;
  }
  
  .grid-3-cols .card .title, .featured-solutions .card .title{
    font-size: 18px;
  }
}

@media (min-width:1500px) and (max-width:1700px){
  .col-with-video .container {
    gap: 50px;
  }
  
  .grid-3-cols .card .title, .featured-solutions .card .title{
    font-size: 20px;
  }
}

@media all and (min-width:1700px){
    .col-with-video .container{
        gap: 154px;
    }

    .grid-3-cols{
        padding-top: 120px;
      padding-bottom:120px;
    }

    .form-contact .content-text{
        font-size: 20px;
    }
  
    .col-with-video .video-wrapper{
        transform: translateY(-165px);
        margin-bottom: -170px;
    }
  
    .col-with-video .title{
        font-size: 32px;
        margin-bottom: 24px;
    }
  
    .col-with-video  .content-text{
        font-size: 18px;
        letter-spacing: 0;
    }
  
    .col-with-video .video-wrapper{
        max-width:812px;
    }
  
    .col-with-video .left-content {
        max-width: 536px;
    }
  
    .srVideo-controls .playpause{
        padding: 46px;
        margin-top: 0;
    }
  
    .grid-3-cols .card .content-wrap{
        padding: 40px;
    }
  
    .featured-solutions .content-wrap{
      padding: 40px;
    }
  
    .video-wrapper.image-only{
      transform: translateY(-130px);
    }
  
    .grid-3-cols .card .title, .featured-solutions .card .title{
      font-size: 24px;
    }
}

/*mobile style*/
@media (max-width:992px){
    .faq-accordion .floating-banner .wrapper{
        flex-direction: row;
        text-align: left;
        justify-content:space-between;
    }
  
  .person-bio .person-name,
  .person-bio .job-title{
      font-size:14px;
  }
  
  .col-with-video .title{
      font-size: 24px;
  }
  
  .grid-3-cols{
    padding-top:60px;
    padding-bottom:60px;
  }
  
  .featured-solutions .content-text,
  .featured-solutions .content-text p{
    font-size: 14px;
  }
  
  #hs_cos_wrapper_module_169767206053610 .grid-3-cols{
    padding-bottom:60px;
    padding-top:60px;
  }
  
  #hs_cos_wrapper_module_16976722490206 .grid-3-cols{
    padding-top:60px;
    padding-bottom:60px;
  }
  
  .hs-content-id-148950162254 #hs_cos_wrapper_module_169767206053610 .grid-3-cols.bg-grey{
    padding-top:0px;
  }
  
  .form-contact .form-wrap{
    max-width:100%;
    
  }
  
  .featured-solutions .left-content{
    max-width: 100%;
  }
  
  
  .case-slider{
    padding-top:60px;
  }
}


/* Tweak new request by Emixa : Putu */
@media (max-width:767px){
    .grid-3-cols .card{
        flex-direction: column;
    }
    .grid-3-cols .card .featured-image{
        width:100%;
    }
}

@media (min-width:992px){

  .grid-3-cols{
    padding-top:120px;
    padding-bottom:120px;
  }
  
}

/* Read more glitch on 1920 screen*/
@media (min-width:1920px){
  .featured-solutions .content-wrap{
    min-height: 285px;
  }
  
  .col-with-video,
  .case-slider .container{
    padding-top:160px;
    padding-bottom:160px;
  }
  
  .col-with-video .video-wrapper{
        margin-bottom: -270px;
        transform: translateY(-265px);
    }
  
  .grid-3-cols,
  .grid-3-cols.software,
  .faq-accordion,
  .form-contact,
  .featured-solutions,
  .col-with-video.video-stay,
  .header-solutions .wrapper{
    padding-top:160px;
    padding-bottom:160px;
  }
}

@media (max-width:991px){
  .case-slider .swiper-container .empty-navigation{
    padding-bottom:0px;
  }
  
  .case-slider .swiper-container{
    padding-bottom:60px;
    padding-top:60px
  }
}
/* Slider */
.text-slider{
    position: relative;
}

.text-slider .container.slider-wrap{
    background-color: #FFF;
    padding: 0px 50px 0px 0px;
    width: 72%;
    max-width: 1365px;
    min-width: auto;
    margin-left: auto;
    margin-right: 0; 
    position: absolute;
    right: 0;
    display: flex;
    align-items: flex-end;
    top: -122px;
    gap: 56px;
}

.text-slider .title{
    font-size :1.5rem;
    line-height: 24px;
    color: #1D1A39;
}

.text-slider .subtitle{
    color: #A2999E;
}

.text-slider .excerpt{
    margin-bottom: 16px;
}

.text-slider .swiper-button-next, 
.text-slider .swiper-button-prev{
    position:relative;
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
    width:100px;
    height:100px;
    background:#fff;
    border:1px solid #F5F5F5;
    color:#1D1A39;
    font-size:14px;
}

.text-slider .swiper-button-next:after, 
.text-slider .swiper-button-prev:after{
    font-size:28px;
    display: none;
}

.text-slider .slide-arrows{
    position: relative;
}

.text-slider .slide-arrows .arrows-container{
    display:flex;
    flex-direction: column;
    justify-content:center;
    max-width: 100%;
    position: relative;
    right: 0;
    bottom: 0px;
}

.text-slider .swiper-slide{
    padding-top: 40px;
    padding-bottom: 40px;
}

.text-slider .text-slide{
    overflow: hidden;
}

@media all and (min-width:1700px){
    .text-slider .container.slider-wrap{
        padding: 0px 140px 0px 0px;
       
    }
    
    .text-slider .swiper-slide{
        padding-top: 56px;
        padding-bottom: 56px;
    }
    
    .text-slider .swiper-button-next, 
    .text-slider .swiper-button-prev{
        width:122px;
        height:122px;
    }
}
/* end Slider */

/* Logo */
.industry-logo{
    padding-bottom: 120px;
    padding-top: 120px;
    background-color: #F5F5F5;
}

.industry-logo .logo-container{
    gap: 40px;
}

.industry-logo .logo-container:not(:last-child){
    margin-bottom: 60px;
}

.industry-logo .content{
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
}

.industry-logo .cta-button{
    background-color: #1D1A39;
}

.industry-logo .title{
    font-family: 'Alegreya';
    font-size: 3rem;
    margin-top: 0;
    max-width: 445px;
    color: #1D1A39;
}

.industry-logo .logo-wrapper img{
   width: 100%;
   filter: grayscale(100%);
   mix-blend-mode: multiply;
}

.industry-logo p {
    width: 100%;
    max-width: 400px;
    color: #3E3D40;
    letter-spacing: 0.48px;
    line-height: 1.5;
}

.industry-logo.with-overlay .logo-wrapper{
  position:relative;
  padding:16px;
}

.industry-logo.with-overlay .logo-wrapper::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color: rgba(61,61,61, 0.3);
}

/* downloads */
.download-grid{
    background-color: #FFF;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    & h2{
        font-family: 'Alegreya', serif;
        color: #1D1A39;
        font-size: 3rem;
    }
}

/* .download-grid .container{
    --bs-gutter-x: 4.5rem;
} */

.download-grid.cards .card .card-img{
    border-style: none;
}

.download-grid.cards .cards-grid,
.related-post.cards .cards-grid {
    display: flex;
    gap: 16px;
/*     grid-template-columns: repeat(4,minmax(0,1fr)); */
    flex-wrap: wrap;
    justify-content: center;
}

.download-grid .read-more{
    font-size:1rem;
}

.download-grid .content{
    margin-bottom: 2rem;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #3E3D40;
}

.download-grid.cards .card .card-img {
    min-height: auto;
}

.download-grid .cards-grid .card-body {
    padding: 1rem;
    
}

.download-grid.cards .card {
    height: 100%;
    box-shadow: none;
    background: #fff;
    display: flex;
    flex-direction: column;
    border: 1px solid #F5F5F5;
}

.download-grid.cards .cards-grid .card-title{
    font-size: 24px;
    line-height: 1.33;
    color: #3E3D40;
}

.download-grid .link-cta{
    font-size: 16px;
}

.download-grid a{
    text-decoration: none;
}

.download-grid .cta-button{
    margin-top: 8px;
}

.download-grid.cards .card .card-title{
    color : #1D1A39;
    font-family: "IBM Plex Sans";
}

.download-grid .cta-button{
    background-color: #1D1A39;
}

/* related post */
.related-post{
    background-color: #F5F5F5;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 60px;
    & h2{
        font-family: 'Alegreya', serif;
        color: #1D1A39;
        font-size: 3rem;
    }
}

.related-post.bg-white{
    background-color: #FFF;
}

.related-post.cards .card .card-img{
    border-style: none;
}

.related-post .read-more{
    font-size:1rem;
}

.related-post.cards .card .card-img {
    min-height: auto;
    display: block;
    width: 100%;
    object-fit: cover;
}


.related-post.cards .card {
    background: #fff;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.related-post.cards.bg-white .card-body{
    border: 1px solid #D1D1D7;
}


.related-post a{
    text-decoration: none;
}

.related-post.cards .card-col{
    flex: 1;
    margin: 0 10px;
    margin-bottom: 0px;
}

.related-post.cards .card .card-title{
    color : #1D1A39;
    font-family: "IBM Plex Sans";
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
    padding-bottom: 16px;
}

.related-post .cta-button{
    background-color: #1D1A39;
}

.related-post.cards .cards-grid{
    grid-template-columns: repeat(3,minmax(0,1fr));
}

.related-post.cards .card .card-body {
    background-color: #FFF;
}

@media (min-width:992px) {
    .related-post{
        padding-top: 120px;
        padding-bottom: 120px;
    }
  
    .related-post.cards .card .card-body {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
      justify-content:space-between;
    }
  
    .related-post.cards .card .card-img {
        min-height: 200px; 
        height:200px;
    }

    .related-post.w-floating-banner{
        position: relative;
        padding-top: 240px;
        padding-bottom:80px;
    }

    .related-post.w-floating-banner .floating-banner{
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
  
    .related-post.w-floating-banner .card .card-body{
      border:1px solid #D1D1D7;
    }

    .related-post.w-floating-banner .floating-banner .cta-button{
        background-color: #07A19F;
        box-shadow: 0px 3px 15px #07A19F33;
    }
  
    /*   donload block   */
    .product-download-grid .cta-button{
        margin-top:24px;
    } 
  
    .industry-logo .logo-container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
  
    .industry-logo.with-overlay .logo-container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
  
    .industry-logo.with-overlay .logo-container:not(:last-child){
        margin-bottom: 40px;
    }
  
    .industry-logo .title{
        font-size: calc(32px + (48 - 32) * ((100vw - 1280px) / (1700 - 1280)));
    }
}

@media (min-width: 1400px){
    .related-post.cards .card .card-img {
        min-height: 230px; 
        height:230px;
    }

    .industry-logo p {
        width: 400px;
    }
    
    .download-grid .content{
        margin-bottom: 2rem;
        width: 800px;
    }
}

@media (min-width: 1024px) and (max-width: 1500px) {
    .hs-content-id-148880265816 .floating-banner,
    .hs-content-id-150557081402 .floating-banner{
        margin-top:-150px;
    }
}

@media (min-width: 1700px){
    
  
    .related-post.cards .card .card-img {
        min-height: 330px; 
        height: 330px;
    }
  
    .industry-logo .logo-container{
        gap: 80px;
    }
  
    .industry-logo .title{
        font-size:48px;
    }

    .related-post.cards .card .card-body {
        padding: 40px;
    }

    .industry-logo{
        padding-top: 120px;
        padding-bottom:120px;
    }
  
    .industry-logo.with-overlay .logo-container:not(:last-child){
        margin-bottom:80px;
    }
}

/*mobile style*/
@media(max-width:992px){
    .related-post{
        padding-bottom: 60px;
        padding-top: 60px;
    }
    .related-post .wrap-title{
        font-size: 24px;
        color: #04002B;
    }

    .related-post.cards .cards-grid{
        grid-template-columns: 1fr;
    }

    .related-post.cards .card{
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .cards .card .card-header{
        margin-bottom: 0;
        /* flex: 1; */
        overflow: hidden;
    }
    .related-post.cards .card .card-img{
        height: 100%;
        object-fit: cover;
    }
    .related-post.cards .card .card-body{
        padding: 16px;
    }
    .related-post.cards .card .card-title{
        font-size: 16px;
        font-weight: 600;
    }
    .link-cta{
        font-size: 14px;
        font-weight: 400;
    }
    
    .related-post.cards .card-col{
        margin: 0;
    }
  
    .related-post.cards .card .card-header{
        width: 42%;
        flex: 0 0 auto;
    }
  
  /* Text slider */
    .text-slider .container.slider-wrap{
        padding: 24px 24px 48px;
        position: relative;
        width: 100%;
        top: 0;
        margin-right: auto;
    }

    .text-slider .swiper-slide{
        padding: 0;
    }

    .text-slider .excerpt{
        font-size: 14px;
        margin-bottom: 8px;
    }

    .text-slider .title{
        font-size: 18px;
        margin-top: 8px;
    }

    .text-slider .subtitle{
        font-size: 14px;
    }

    .text-slider .swiper-horizontal>.swiper-pagination-bullets{
        bottom: 24px;
    }
  
    .text-slider .swiper-pagination-bullet{
        background: #A2999E;
        opacity: 1;
        border-radius: 0;
        width: 8px;
        height: 8px;
    }

    .text-slider .swiper-pagination-bullet-active{
        background: #1D1A39;
    }
    
/*     .header-solutions.big-padding .wrapper{
        padding-bottom: 80px;
    } */
    
    /* Industry logo */
    .industry-logo .title{
        font-size: 24px;
    }

    .industry-logo .content{
        font-size: 14px;
        max-width: 100%;
    }

    .industry-logo .logo-wrap{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        margin-top: 42px;
    }
  
    .industry-logo .logo-wrap img{
        max-width: 100px;
    }
  
    .industry-logo{
        padding-top: 60px;
        padding-bottom: 60px;
    }
  
  .related-post.w-floating-banner{
    background-color:#f5f5f5 !important;
    padding-bottom:0px;
  }
  
  .related-post.w-floating-banner .floating-banner .cta-button{
    background-color:#07A19F;
  }
  
  .related-post.w-floating-banner .floating-banner{
    margin-top:0px;
    margin-bottom:60px;
  }
  
  .related-post.cards.w-floating-banner .card .card-title{
    padding-bottom:0px;
    margin-bottom:8px;
  }
  /*
  #hs_cos_wrapper_widget_1697469378882 .header-solutions .wrapper{
    padding-bottom:60px;
  }
  
  div#hs_cos_wrapper_module_1697672130050 .case-slider .swiper-container{
    padding-bottom:0px;
  }
  
  .hs-content-id-148880265816 #hs_cos_wrapper_module_169767206053610 .grid-3-cols,
  .hs-content-id-148905631517 #hs_cos_wrapper_module_169767206053610 .grid-3-cols,
  .hs-content-id-148910400845 #hs_cos_wrapper_module_169767206053610 .grid-3-cols{
    padding-top:0px;
  }
  
  .hs-content-id-150410361458 #hs_cos_wrapper_module_169767206053610 .grid-3-cols,
  .hs-content-id-150411800444 #hs_cos_wrapper_module_169767206053610 .grid-3-cols,
  .hs-content-id-150071128495 #hs_cos_wrapper_module_169767206053610 .grid-3-cols{
    padding-top:0px;
  }
  
  .hs-content-id-148905631517 #hs_cos_wrapper_widget_1698708282982 .people-logo{
    padding-top:0px;
  }
  
  .hs-content-id-148948624251 #hs_cos_wrapper_module_169767206053610 .grid-3-cols.bg-grey{
    padding-top:0px;
  } */
  
  .hs-content-id-150082117300 .related-post.w-floating-banner{
    padding-top:0px;
    padding-bottom:60px;
  } 
  
  .hs-content-id-150082117300 .twocols-img .content-left{
    border: 1px solid #f5f5f5;
  }
  
  .hs-content-id-148950162254 #hs_cos_wrapper_widget_1698708282982 .logo-wrapper{
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
  }
  
}

/*tablet style*/
@media (min-width:600px) and (max-width:992px){
  /*
  .hs-content-id-146201912884 .dnd_area-row-1-padding{
    padding-top:0px !important;
  }
  
  .hs-content-id-146201912884 .dnd_area-row-2-padding{
    padding-top:80px !important;
    padding-bottom:80px !important;
  } */
  
  .hs-content-id-146201912884 .dnd_area-row-3-padding{
    background-color:#f5f5f5;
  }
  .hs-content-id-140882739005 .row-fluid-wrapper.row-depth-1.row-number-4.dnd-row{
    height:80px;
  }
  
  #hs_cos_wrapper_widget_1698708282982 .logo-wrapper{
    height:40px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }
  
  #hs_cos_wrapper_widget_1698708282982 .industry-logo .logo-wrap img{
    width:auto;
    max-width:100px;
    height:30px;
  }
  
  #hs_cos_wrapper_widget_1697733394945 .logo-wrapper{
    min-height:40px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }
  
  #hs_cos_wrapper_widget_1700142432258 .logo-wrapper{
    min-height:40px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }
  
  .hs-content-id-148950162254 #hs_cos_wrapper_widget_1698708282982 .logo-wrapper{
    min-height:80px;
  }
  
  .hs-content-id-148950162254 #hs_cos_wrapper_widget_1698708282982 .logo-wrapper img{
    height:auto;
    width:100%;
  }
  
  .industry-logo p{
    max-width:100%;
  }
  
}

/* @media(min-width:992px) and (max-width:1400px){
  .industry-logo{
    padding-bottom: 60px;
    padding-top: 60px;
}
} */

@media (max-width:767px){
  .related-post.cards .card{
    flex-direction: column;
  }
  
  .related-post.cards .card .card-header{
    width:100%;
  }
}

@media (min-width:1920px){
    .related-post,
    .industry-logo{
        padding-top: 160px;
        padding-bottom: 160px;
    }
}
/* Quote */
/* .qoutegrid.bg-grey{
    padding-top: 160px;
    padding-bottom: 160px;
} */

.qoutegrid.bg-grey{
    background-color: #F5F5F5;
   
}

.qoutegrid .qoutegrid-wrap{
    max-width: 1364px;
    margin: auto;
    padding: 0;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    justify-content: space-between;
    background-color: #fff;
}

.qoutegrid .text-wrap{
    padding: 120px 70px 120px 70px;
    position: relative;
}


.qoutegrid .text-wrap .content-text{
    color: #3E3D40;
    font-size: 16px;
    letter-spacing: 0.48px;
    line-height: 1.5;
    font-family: var(--font-ibm);
    max-width: 522px;
}

.qoutegrid .text-wrap .content-text p{
    margin-bottom: 1rem;
}

.qoutegrid .text-wrap .double-quote{
    position: absolute;
    right: 70px;
    bottom: 120px;
    width:100px;
}

.qoutegrid .wrap-title{
    font-size: 32px;
    line-height: 1.25;
    max-width: 522px;
}

.qoutegrid .person-wrap{
    position: relative;
}

.qoutegrid .person-image{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.qoutegrid .person-bio{
    position: absolute;
    right: 40px;
    bottom: 40px;
}

img.qoute-brand{
    filter: invert(80%) sepia(29%) saturate(0%) hue-rotate(209deg) brightness(97%) contrast(86%);
}

/* col with video stay */
.col-with-video.video-stay{
    background-color: #fff;
}

.col-with-video.video-stay.bg-grey{
    background-color: #F5F5F5;
}

.col-with-video.video-stay .video-wrapper{
    transform: none;
    margin-bottom: 0;
}

/*mobile style*/
@media (max-width:992px) {
	.qoutegrid.bg-grey {
    padding-top: 60px;
    padding-bottom: 60px;
/* 		padding-top: 40px;
		padding-bottom: 0px; */
		background-color: #ffffff;
	}

	.qoutegrid .floating-banner {
		display: none;
	}

	.qoutegrid .qoutegrid-wrap {
		grid-template-columns: 1fr;
		background: unset;
    padding-bottom:0px;
	}

	.qoutegrid .text-wrap {
		padding: 0;
	}

	.qoutegrid .quote-brand {
		height: auto;
		max-width: 52px;
		margin-bottom: 8px;
	}

	.qoutegrid .wrap-title {
		font-size: 24px;
		margin-bottom: 16px;
    max-width: 100%;
	}

	.qoutegrid .text-wrap .content-text {
		font-size: 14px;
		line-height: 1.5;
    max-width:100%;
	}

	.qoutegrid .text-wrap .content-text p {
		font-size: 14px;
		line-height: 1.5;
	}

	.qoutegrid .text-wrap .double-quote {
		right: 0;
		width: 56px;
		bottom: -16px;
	}

	.qoutegrid .person-image {
		display: none;
	}

	.qoutegrid .person-bio {
		position: relative;
		bottom: unset;
		right: unset;
		background-color: unset;
		backdrop-filter: unset;
		padding: 0;
		margin-top: 20px;
	}

  .qoutegrid .cta-button{
    background-color: #1d1a39;
    margin-top: 20px;
  }

  .qoutegrid .cta-button.hideMobile{
    display:none;
  }
  
  .col-with-video.video-stay .container{
    gap:20px;
  }
  
  .col-with-video.video-stay .title{
    font-size:20px;
  }
}

/*tablet style*/
@media (min-width:600px) and (max-width:992px){
  .qoutegrid .floating-banner{
    display:block;
    margin-top: -50px;
    margin-bottom: 40px;
    max-width: 90%;
  }
  
  .qoutegrid .person-image{
    display:block;
    position: relative;
    max-height: 300px;
    margin-top: 100px;
  }
}

/* Desktops (from 1200px to 1920px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .qoutegrid{
      padding-top: 120px;
      padding-bottom: 120px;
  }
}

/* Fix desktop style because of margin */
/* @media (min-width:1100px) and (max-width:1365px){
  .qoutegrid .text-wrap {
    margin-top:150px;
  }
}
@media (min-width:1366px){
  .qoutegrid .text-wrap {
    margin-top:170px;
  }
} */
/*
header product
*/
.header-products fieldset {
  border: unset;
  padding: unset;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.header-products .hs-form-field {
  margin-bottom: 16px;
  width: 100%;
}

.header-products fieldset.form-columns-1 .hs-form-field .input .hs-input{
  width:100%;
}

.header-products .hs-form-field label,
.header-products .term {
  font-size: 16px;
  font-weight: 400;
  color: #003961;
}

.header-products .hs-form-field label {
  display: none;
}

.header-products .hs-form-field label.hs-error-msg {
  font-size: 14px;
  color: red;
}

.header-products form .hs-richtext{
  margin-bottom:0;
}

.header-products form .hs-richtext p{
  font-size: .775rem;
  color:#fff;
  margin-bottom:0;
}

.header-products .hs-form-field input[type='text'],
.header-products .hs-form-field input[type='email'],
.header-products .hs-form-field input[type='tel'],
.header-products .hs-form-field select{
  border-radius: 5px;
  height: 44px;
  background-color: #FFFFFF1A;
  border: 1px solid #FFFFFF;
  width: 100% !important;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 400;
  padding: 10px 16px;
}

.header-products textarea{
  border-radius: 5px;
  background-color: #FFFFFF1A;
  border: 1px solid #FFFFFF;
  width: 100% !important;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 400;
  padding: 10px 16px;
}

.header-products .hs-form-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E);
    background-position: right 16px top 50%;
    background-repeat: no-repeat;
}

.header-products input::placeholder, .header-products textarea::placeholder {
  color: #FFFFFF;
  opacity: 1;
  /* Firefox */
}

.header-products input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #FFFFFF;
}

.header-products .hs-submit {
  margin-bottom: 16px;
}

.header-products .hs-button {
  width: 100%;
  height: 40px;
  background: #07A19F;
  border: 0;
  border-radius: 4px;
  box-shadow: 0px 3px 15px #07A19F33;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
}

.header-products .submitted-message{
  margin-bottom:24px;
}

.header-products .form-wrap {
  background: linear-gradient(134deg, rgba(29, 26, 57, 1) -35%, rgba(7, 161, 159, 1) 250%);
  padding: 24px;
}

.header-products .form-wrap h3 {
  font-family: var(--font-alegreya);
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 16px;
}

.header-products .other-cta {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.header-products .other-cta p {
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.header-products .trial-cta {
  background-color: #F16462;
  color: #FFFFFF;
  font-size: 14px;
  width: 100%;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0px 3px 15px #07A19F33;
}

.header-products .brand-logo {
  display: block;
  width: 100%;
  max-width: 83px;
}

.header-products .content-text a {
  color: #07A19F;
  text-decoration: none;
}

/*
download grid
*/
.product-download-grid h2 {
  font-family: var(--font-alegreya);
  color: #1D1A39;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}

.product-download-grid p {
  color: #3E3D40;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}

.product-download-grid .card-download {
  border: 1px solid #F5F5F5;
  height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.product-download-grid .card-download .card-body {
  padding: 16px;
  height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-download-grid .card-download img {
  display: block;
  width: 100%;
}

.product-download-grid .card-download .card-title {
  margin-top: 0;
  font-size: 24px;
  font-weight: 500;
  color: #3E3D40;
}

.product-download-grid .card-download .card-link {
  color: #07A19F;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.42px;
  line-height: 1.71;
  font-weight: 500;
}

.product-download-grid .card-download .card-link .icon {
  transition: .3s ease-out;
  display: inline-block;
}

.product-download-grid .card-download .card-link:hover .icon {
  transform: translateX(4px);
}

/*
advantage
*/
.advantage {
  background-color: #F5F5F5;
  padding-top: 60px;
  padding-bottom: 60px;
}

.advantage h2 {
  font-family: var(--font-alegreya);
  color: #1D1A39;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 24px;
}

.advantage .card-advantage {
  background-color: #FFFFFF;
  padding: 24px;
  height:100%;
}

.advantage.bg-white .card-advantage {
  border: 1px solid #F5F5F5;
}

.advantage .card-advantage .card-title a {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 20px;
  color: #07A19F;
  text-decoration: none;
}

.advantage .card-advantage p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #3E3D40;
}

 .advantage .accordion-content{
    color:#3E3D40;
  }


/*
licensing options
*/
.licensing-options {
  background-color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 60px;
}

.licensing-options h2 {
  font-family: var(--font-alegreya);
  color: #1D1A39;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}

.licensing-options .table-wrap {
  overflow-x: auto;
}

.licensing-options table {
  width: 100%;
  margin-bottom: 0px;
}

.licensing-options table,
.licensing-options td {
  border-collapse: collapse;
}

.licensing-options thead {
  display: table;
  /* to take the same width as tr */
  width: calc(100% - 17px);
  /* - 17px because of the scrollbar width */
}

.licensing-options tbody {
  display: block;
  /* to enable vertical scrolling */
  max-height: 200px;
  /* e.g. */
  overflow-y: scroll;
  /* keeps the scrollbar even if it doesn't need it; display purpose */
  border: 1px solid #D1D1D7;
  box-shadow: inset 0px 0px 15px #EBEBEB;
}

.licensing-options th,
.licensing-options td {
  width: 33.33%;
  /* to enable "word-break: break-all" */
  padding: 8px;
  word-break: break-word;
  /* 4. */
}

.licensing-options tr {
  display: table;
  /* display purpose; th's border */
  width: 100%;
  box-sizing: border-box;
  /* because of the border (Chrome needs this line, but not FF) */
}

.licensing-options td {
  text-align: center;
  height: 40px;
  width: 12.5%;
  color: #3E3D40;
}

.licensing-options td.first-row {
  color: #A2999E;
}

.licensing-options tbody td:first-child {
  text-align: left;
  padding-left: 16px;
}

.licensing-options tbody tr {
  border-bottom: 1px solid #D1D1D7;
}

.licensing-options tbody tr:first-child {
  border-bottom: unset;
}

.licensing-options tbody tr td.check {
  color: #07A19F;
  vertical-align:middle;
}

.licensing-options th {
  color: #A2999E;
  font-size: 16px;
  width: 12.5%;
  vertical-align: top;
  line-height: 1.5;
  padding-bottom: 20px;
}

.btn-download,
.btn-black {
  display: inline-block;
  font-size: 14px;
  color: #FFFFFF;
  background-color: #1D1A39;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
}

/*
grid2cols overlapcta
*/
.grid2cols-overlapcta {
  position: relative;
  background-color: #F5F5F5;
}

.grid2cols-overlapcta .overlapcta {
  /* background: radial-gradient(circle at right top, #1D1A39 , #07A19F); */
  position: relative;
}

.grid2cols-overlapcta .overlapcta img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.grid2cols-overlapcta .overlapcta>div,
.grid2cols-overlapcta .overlapcta>a {
  z-index: 0;
}

.grid2cols-overlapcta .overlapcta {
  padding: 40px 24px;
}

.grid2cols-overlapcta .overlapcta h3 {
  font-family: var(--font-alegreya);
  margin-top: 0;
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.grid2cols-overlapcta .overlapcta p {
  font-size: 16px;
  font-weight: 400;
  color: #EBEBEB;
}

.grid2cols-overlapcta .overlapcta .cta-btn {
  color: #FFFFFF;
  background-color: #07A19F;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 4px;
}

.grid2cols-overlapcta .overlapcta-wrap {
  position: relative;
  margin-bottom: 24px;
  margin-top: -20%;
}

.grid2cols-overlapcta .content h4 {
  font-family: var(--font-alegreya);
  font-size: 20px;
  color: #1D1A39;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.grid2cols-overlapcta .content p,
.grid2cols-overlapcta .content div{
  font-size: 16px;
  line-height: 1.5;
  color: #3E3D40;
  font-weight: 400;
  margin-bottom: 16px;
}

.grid2cols-overlapcta .content,
.grid2cols-overlapcta .content div,
.grid2cols-overlapcta .content ul li{
  font-size: 16px;
  line-height: 1.5;
  color: #3E3D40;
  font-weight: 400;
}

.grid2cols-overlapcta .media img {
  display: block;
  width: 100%;
}

.bg-white {
  background-color: #ffffff;
}

#hs_cos_wrapper_dnd_area-module-2_ h1{
  font-family: var(--font-alegreya) !important;
}

#hs_cos_wrapper_dnd_area-module-2_ p{
  font-family: var(--font-ibm) !important;
}

@media (min-width:992px) {

  /* Header product */
  .header-products .content-text {
    color: #fff;
    font-weight: 400;
  }

  .header-products .wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
    max-height:100%;
  }

  .header-products .subtitle {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 500;
  }

  .header-products .title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.125;
    letter-spacing: 0;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .header-products .banner-wrap {
    max-width: 884px;
  }

  .header-products .form-wrap h3 {
    margin-bottom: 24px;
  }

  /*
  download grid
  */
  .product-download-grid h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .product-download-grid p {
    margin-bottom: 32px;
  }

  /*
  advantage
  */
  .advantage {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .advantage h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .advantage .card-advantage .card-title a {
    font-size: 24px;
  }

  /*
  licensing options
  */
  .licensing-options {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .licensing-options h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  /*
  grid2cols overlapingcta
  */
  .grid2cols-overlapcta .overlapcta h3 {
    font-size: 32px;
  }

  .grid2cols-overlapcta .overlapcta-wrap {
    position: absolute;
    margin-top: unset;
    margin-bottom: unset;
  }

  .grid2cols-overlapcta .overlapcta {
    padding: 56px 32px;
  }

  .grid2cols-overlapcta .content-left,
  .grid2cols-overlapcta .content-right {
    min-height: 400px;
  }

  .grid2cols-overlapcta .overlapcta p {
    font-size: 20px;
  }
  
  .grid2cols-overlapcta .content p{
    min-height: 120px;
  }
  
  .grid2cols-overlapcta .switch-col-text .content p{
    min-height:0;
  }

  .grid2cols-overlapcta .content {
    padding-right: 40px;
    margin-top: 120px;
    margin-bottom:120px;
  }

  .grid2cols-overlapcta .content h4 {
    font-size: 24px;
  }

  .grid2cols-overlapcta .content-right {
/*     flex-direction: row-reverse; */
  }

  .grid2cols-overlapcta .content-right .content {
    padding-right: 40px;
    padding-left: 40px;
  }
  
  .grid2cols-overlapcta .switch-text .switch-col-text .content {
    padding-left: 0px;
  }
  
  .grid2cols-overlapcta .content-right .btn-download{
    margin-left: 40px;
  }

  .grid2cols-overlapcta .row:nth-child(even) {
    margin-bottom: 0px;
  }

  .grid2cols-overlapcta .row:nth-child(2) {
    align-items: center;
  }

/*   .grid2cols-overlapcta .row:nth-child(3) {
    align-items: center;
  } */

/*   .grid2cols-overlapcta .row:nth-child(3) .content {
    margin-top: unset;
  } */
  
  .switch-col-text .content{
    flex-direction: column;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
  }
  
  /*generalize image ratio*/
  .grid2cols-overlapcta .media img {
    aspect-ratio: 820 / 764;
    height: 100%;
    object-fit: cover;
  }
  
  .hs-content-id-150069193110 .case-slider img{
    height:100%;
  }
  
  .hs-content-id-164231862904 .floating-banner.standalone{
    margin-top:0px;
  }
  
  .hs-content-id-149586503847 .case-slider img{
    height:100%;
  }
  
  .hs-content-id-149574316841 .case-slider img{
    height:100%;
  }

}

@media (min-width:1024px) and (max-width:1400px){
  .header.header-products .wrapper {
    max-height:800px;
    padding-top:120px;
    padding-bottom:120px;
  }
  .header-products .content-text {
    margin-right: 40px;
  }
}

@media (min-width:1024px) and (max-width:1300px){
  .floating-banner .cta-button {
    padding: 10px 20px;
  }
}

@media (min-width:1200px) {
  .header-products .wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (min-width:1700px) {

  .header-products .title {
    margin-bottom: 36px;
  }

  .header-products .content-text {
    font-size: 18px;
    max-width: 674px;
  }

  .header-products .wrapper {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  /*
  download grid
  */
  .product-download-grid h2 {
    font-size: 48px;
  }

  .product-download-grid p {
    margin-bottom: 40px;
  }

  /*
  advantage
  */
  .advantage h2 {
    font-size: 48px;
  }

  .advantage .card-advantage {
    padding: 40px;
  }

  .advantage .card-advantage .card-title a {
    font-size: 32px;
  }

  /*
  licensing options
  */
  .licensing-options h2 {
    font-size: 48px;
  }

  /*
  grid2cols overlaping cta
  */
  .grid2cols-overlapcta .overlapcta h3 {
    font-size: 48px;
  }

  .grid2cols-overlapcta .overlapcta {
    padding: 72px 56px;
  }

  .grid2cols-overlapcta .content {
    padding-right: 80px;
    margin-top: 120px;
    margint-bottom:120px;
  }

  .grid2cols-overlapcta .content h4 {
    font-size: 32px;
    line-height: 40px;
  }

  .grid2cols-overlapcta .content p {
    margin-bottom: 40px;
  }

  .grid2cols-overlapcta .content-right .content {
    padding-right: 80px;
    padding-left: 80px;
  }
  
  .grid2cols-overlapcta .content-right .btn-download{
    margin-left: 80px;
  }

  .grid2cols-overlapcta .row:nth-child(even) {
    margin-bottom: 0px;
  }

  .advantage.bg-white .card-advantage:nth-child(5) {
    padding-right: 29px;
  }
  
  .grid2cols-overlapcta .content-left,
  .grid2cols-overlapcta .content-right {
    min-height: 500px;
  }

}

/*mobile style*/
@media(max-width:992px) {
/*   .header.header-products {
    padding-top: 54px;
  }
 */
  
  .header-products{
    background-color:#f5f5f5;
  }
  
  .header.header-products .wrapper {
    padding-top: 160px;
    padding-bottom: 60px;
    height: auto;
    max-height: unset;
  }

  .header.header-products .bg-image {
    min-height: 160px;
    height: 160px;
  }

  .header.header-products .bg-overlay {
    min-height: 160px;
    height: 160px;
  }

  .header.header-products .header-row {
    padding-top: 60px;
  }

  .header-products .brand-logo {
    display: none;
  }

  .header-products .title {
    font-size: 32px;
    line-height: 40px;
    color: #1D1A39;
    margin-bottom: 16px;
    font-weight:500;
  }

  .header-products .content-text {
    line-height: 1.5;
    margin-bottom:0px;
  }

  .header-products .form-wrap {
    padding-top: 60px;
    padding-bottom: 44px;
  }

  .header-products .form-wrap h3{
    margin-bottom: 40px;
    
  }

  .header-products .hs-button {
    max-width: 133px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .header-products .other-cta {
    background: linear-gradient(21deg, rgba(29, 26, 57, 1) -35%, rgba(7, 161, 159, 1) 250%);
    margin-top: -1px;
    padding-top: 0;
    padding-bottom: 40px;
    border: unset;
  }

  .header-products .trial-cta {
    display: flex;
    flex-direction: column;
    max-width: 233px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .header-products fieldset {
    flex-direction: column;
  }

  .header-products .hs-form-field {
    width: 100% !important;
  }

  .floating-cta {
    display: none;
  }

  /**product download grid*/
  .product-download-grid {
    background: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .product-download-grid p {
    font-size: 14px;
    line-height: 1.5;
  }

  .product-download-grid .card-download {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 98px;
  }

  .product-download-grid .card-download>a {
    width: 35%;
  }

  .product-download-grid .card-download img {
    height: 100%;
    object-fit: cover;
  }

  .product-download-grid .card-download .card-title {
    font-size: 16px;
    color: #04002B;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .product-download-grid .card-download .card-link {
    font-size: 14px;
    font-weight: 400;
  }

  .faq-accordion {
    background: #fff;
  }

  .accordion-item {
    padding: 16px;
  }

  .accordion-header {
    font-size: 14px;
  }

  .accordion-item.active .accordion-header {
    font-size: 14px;
  }

  .accordion-content p {
    font-size: 14px;
  }

  span.accordion-icon:before {
    content: '';
    width: 10px;
    height: 2px;
    background: #1D1A39;
    position: absolute;
    top: 8px;
    right: 0;
  }

  span.accordion-icon:after {
    content: '';
    width: 2px;
    height: 10px;
    background: #1D1A39;
    position: absolute;
    right: 4px;
    top: 4px;
  }

  .faq-accordion .banner {
    padding: 16px 16px !important;
  }

  .faq-accordion .banner .small-title {
    font-size: 14px !important;
  }

  .faq-accordion .text-content {
    width: 47%;
  }

  .faq-accordion .cta-button {
    padding: 6px 18px;
    text-align: center;
  }

  .faq-accordion .floating-banner {
    padding: 16px;
  }

  .faq-accordion .floating-banner .small-title {
    font-size: 14px;
  }

  .advantage .card-advantage{
    padding: 16px;
  }

  .advantage .card-title{
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
  }
  .advantage .card-advantage p{
    font-size: 14px;
  }

  .advantage .row{
    display: none;
  }

  .advantage .accordion-item{
    background: #ffffff;
  }

  .advantage .accordion-header{
    font-size: 18px;
    color: #07A19F;
  }

  .advantage .accordion-item.active .accordion-header{
    font-size: 18px;
    color: #07A19F;
  }

  .advantage .accordion-item span.accordion-icon::before{
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    font-weight: 600;
    background: unset;
    width: auto;
    height: auto;
    top: 0;
  }

  .advantage .accordion-item.active span.accordion-icon::before{
    content: '\f077';
  }

  .advantage span.accordion-icon::after{
    display: none;
  }

  .licensing-options th, .licensing-options td{
    word-break: unset;
  }

  .licensing-options th{
    font-size: 14px;
  }
  .licensing-options th:nth-child(1){
    min-width:79px;
  }

  .featured-solutions{
    background: #ffffff;
  }
  
  .featured-solutions .d-flex{
    flex-direction: column;
  }
  .featured-solutions .left-content{
    width: 100%;
  }
  .featured-solutions .grid{
    grid-template-columns: 1fr;
    width: 100%;
  }
  .featured-solutions .content-wrap{
    padding: 15px 23px;
    width: 100%;
  }
  .featured-solutions .excerpt{
    display: none;
  }
  .grid-3-cols .card, .featured-solutions .card{
    width: 100%;
  }
  .featured-solutions .card:before, .featured-solutions .card:after{
    opacity: 1;
    border-image: linear-gradient(111deg, #07A19F 0%, #1D1A39 100%);
    border-image-slice: 1;
    border-image-width: 1px;
    border-image-outset: 0;
    border-image-repeat: stretch;
  }

  .form-contact .container{
    padding-left: 0;
    padding-right: 0;
  }
  .form-contact .contact-wrap{
    padding: 40px 24px;
    flex-direction:column;
  }
  .form-contact .wrap-title{
    font-size: 24px;
  }
  .form-contact .content-text{
    font-size: 14px;
    color: #EBEBEB;
    margin-bottom: 40px;
  }

  .form-contact .person-wrap{
    display: none;
  }

  .grid2cols-overlapcta .content-left, .grid2cols-overlapcta .content-right{
    display: none;
  }

  .grid2cols-overlapcta .swiper-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .grid2cols-overlapcta .swiper-container .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
  }

  .grid2cols-overlapcta .swiper-container .brand-logo {
    display: block;
    width: 100%;
    max-width: 86px;
    margin-bottom: 16px;
  }

  .grid2cols-overlapcta .swiper-container .small-title {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .grid2cols-overlapcta .swiper-container .slider-content {
    font-size: 16px;
    line-height: 1.33;
    margin-bottom: 40px;
    max-width: 674px;
  }

  .grid2cols-overlapcta .swiper-container .slider-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #3E3D40;
  }

  .grid2cols-overlapcta .swiper-container .cta-button {
    background-color: #1D1A39;
  }

  .grid2cols-overlapcta .swiper-container .slide-arrows {
    position: relative;
    padding-top: 20px;
    border-bottom: 1px solid #EBEBEB;
  }

  .grid2cols-overlapcta .swiper-container .slide-arrows .arrows-container {
    display: flex;
    justify-content: flex-end;
    max-width: 100%;
    position: absolute;
    right: 0;
    bottom: 0px;
  }

  .grid2cols-overlapcta .swiper-container .swiper-button-next, .grid2cols-overlapcta .swiper-container .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #EBEBEB;
    color: #1D1A39;
    font-size: 6px;
  }

  .grid2cols-overlapcta .swiper-container .swiper-button-next svg, .grid2cols-overlapcta .swiper-container .swiper-button-prev svg {
    width: 6px;
  }

  .grid2cols-overlapcta .swiper-container .swiper-button-next:after, .grid2cols-overlapcta .swiper-container .swiper-button-prev:after{
    display: none;
  }

  .grid2cols-overlapcta .swiper-container .slide-arrows {
    position: relative;
    padding-top: 20px;
    border-bottom: 1px solid #EBEBEB;
  }

  .grid2cols-overlapcta .overlapcta-wrap{
    margin-top: 0;
  }

  .grid2cols-overlapcta .container{
    padding-left: 0;
    padding-right: 0;
  }

  .grid2cols-overlapcta .overlapcta{
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .grid2cols-overlapcta .overlapcta p{
    font-size: 14px;
    max-width: 267px;
    margin: 0 auto;
    line-height: 1.5;
  }

  .grid2cols-overlapcta .overlapcta .cta-btn{
    font-size: 12px;
    font-weight: 500;
  }
  
  .product-download-grid .card-download .card-body {
    width:65%;
  }
  
  .hs-content-id-149408812350 #hs_cos_wrapper_widget_1699328608579 .case-slider{
    padding-bottom:0px;
  }
  
  .hs-content-id-150069193110 #hs_cos_wrapper_module_17013502183002 .case-slider{
    padding-top:0px;
  }
  
  .hs-content-id-150539287589 #hs_cos_wrapper_widget_1699328608579 .case-slider{
    padding-bottom:0px;
  }
  
  .hs-content-id-149424755864 #hs_cos_wrapper_widget_1699328608579 .case-slider{
    padding-bottom:0px;
  }
  
  .header-products .content-text p:last-child{
    margin-bottom:0px;
  }
  
  .header-products .cta-button{
    margin-top:16px;
  }
  
  .hs-content-id-151480902254 #hs_cos_wrapper_widget_1698715178267 .header-products .content-text{
    margin-bottom:24px;
  }
  
  .hs-content-id-164231862904 .floating-banner.standalone{
    margin-top:0px;
    margin-bottom:60px;
  }
  
  .hs-content-id-149587822728 .form-col-wrap{
    padding-top:0px;
  }
  
  .hs-content-id-149587822728 .header.header-training .content-text{
    margin-bottom:24px;
  }
  
  .hs-content-id-149563387796 .dnd_area-row-3-padding,
  .hs-content-id-149559008166 .dnd_area-row-3-padding{
    padding-bottom:0px !important;
  }
  
  .hs-content-id-149455158917 .dnd_area-row-6-padding{
    padding-top:60px !important;
  }
  
  .hs-content-id-149455158917 .cols-2-with-image.digital-transform .content-text{
    margin-bottom:0px;
  }
  
  .hs-content-id-149574316841 .dnd_area-row-2-padding{
    padding-bottom:0px !important;
  }
  
  .hs-content-id-149574316841 #hs_cos_wrapper_module_17013502183002 .case-slider .swiper-container{
    padding-top:0px;
  }

}

/*tablet*/
@media (min-width:600px) and (max-width:991px){
  .header.header-products .wrapper{
    padding-top:250px;
  }
  
  .header.header-products .bg-image, .header.header-products .bg-overlay{
    min-height:250px;
    height:250px;
  }
  
  .hs-content-id-149574316841 .case-slider .brand-logo-wrapper{
    min-height:unset;
    margin-bottom:8px;
  }
  
  .hs-content-id-164231862904 #hs_cos_wrapper_module_17129085188316 .grid-3-cols .card .content-wrap{
    width:58%;
  }
}

@media all and (min-width:1200px) and (max-width:1700px){
  .advantage,
  .licensing-options{
    padding-top:120px;
    padding-bottom:120px;
  }
}

@media all and (min-width:1920px){
  .switch-col-text .content{
    margin-top:160px;
    margin-bottom:40px;
  }
  
  .grid2cols-overlapcta .content{
    margin-top:160px;
    margin-bottom:160px;
  }
  
  .advantage,
  .licensing-options{
    padding-top:160px;
    padding-bottom:160px;
  }

}
/*
training overview style
*/

/*header training*/
.header-training fieldset {
  border: unset;
  padding: unset;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.header-training .brand-logo {
  width: 100%;
  display: block;
  max-width: 100px;
}

.header-training .form-group {
  margin-bottom: 16px;
}

.header-training .form-wrap form input[type='text'],
.header-training .form-wrap form input[type='email'],
.header-training .form-wrap form input[type='tel'],
.header-training .form-wrap form input[type='number'],
.header-training .form-wrap form input[type='date'],
.header-training .form-wrap form select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  padding: 10px 20px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.7;
  width: 100% !important;
}

.header-training .form-wrap form input::placeholder {
  color: #FFFFFF;
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #FFFFFF;
}

.header-training form .hs-richtext p{
  font-size: .775rem;
  color:#fff;
}

.header-training .form-wrap form input[type='submit']{
    width: auto;
    margin: 0 auto;
    padding: 6px 18px;
    background-color: #07A19F;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    display: block;
    font-size: 12px;
    letter-spacing: 0.14px;
    font-weight: 500;
    box-shadow: 0px 3px 15px #07A19F33;
    text-transform: uppercase;
    line-height: 1.5;
    font-family: var(--font-ibm);
    border: unset;
}

.header-training .hs-form-field{
  margin-bottom:10px;
  width:100%;
}

.header-training .form-wrap {
  background: linear-gradient(134deg, rgba(29, 26, 57, 1) -35%, rgba(7, 161, 159, 1) 250%);
  padding: 24px;
}

.header-training .form-wrap h3 {
  font-family: var(--font-alegreya);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-top: 0;
  margin-bottom: 16px;
}

/*floating cta*/
.floating-cta {
  background-color: #05A19F;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow: hidden;
  position: relative;
  width: 100%;
  top: 56px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.floating-cta.active{
  opacity: 1;
  z-index:98;
}

.floating-cta.fixed{
  position: fixed;
}

.floating-cta .cta-title {
  font-size: 28px;
  color: #FFFFFF;
  font-weight: 500;
  font-family: var(--font-alegreya);
  margin: 0;
}

.floating-cta form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 65%;
}

.floating-cta form input[type='text'],
.floating-cta form input[type='email'] {
  background-color: rgba(255, 255, 255, 0.8);
  border: unset;
  border-radius: 5px;
  padding: 12px 16px;
  color: #A2999E;
  font-size: 16px;
  line-height: 1.7;
  min-width: 400px;
  width: 100%;
}

.floating-cta form input[type='submit']{
    width: auto;
    margin: 0 auto;
    padding: 6px 18px;
    background-color: #FFFFFF;
    text-decoration: none;
    color: #05A19F;
    border-radius: 4px;
    display: block;
    font-size: 14px;
    letter-spacing: 0.14px;
    font-weight: 500;
    box-shadow: 0px 3px 15px #07A19F33;
    text-transform: uppercase;
    line-height: 1.5;
    font-family: var(--font-ibm);
    border: unset;
}

.floating-cta .cta-button {
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0px 3px 15px #07A19F33;
  border: unset;
  font-size: 14px;
  font-weight: 500;
  color: #05A19F;
  padding: 8px 24px;
}

.floating-cta p{
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

.training-list-accordion {
  background-color: #f5f5f5;
  padding-top: 60px;
  padding-bottom:60px;
}

.training-list-accordion .accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #EBEBEB;
}

.training-list-accordion .accordion-header {
  color: #1D1A39;
  font-weight: 600;
}

.training-list-accordion .accordion-content {
  margin-left: auto;
  margin-right: auto;
}

.training-list-accordion .accordion-item.active .accordion-header {
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 30px;
  color: #1D1A39;
}

.training-list-accordion .accordion-content .content {
  max-width: 400px;
}

.training-list-accordion .accordion-content ul {
  list-style: disc;
  padding-left: 17px;
  color: #07A19F;
}

.training-list-accordion .accordion-content ul li {
  margin-bottom: 4px;
}

.training-list-accordion .accordion-content a {
  color: #07A19F;
  font-weight: 500;
}

.training-list-accordion .accordion-content .cta-group {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 16px;
}

.training-list-accordion .accordion-content .cta-black {
  color: #ffffff;
  background-color: #1D1A39;
  padding: 10px 24px;
  text-align: center;
  display: block;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0px 3px 15px #04002B33;
}

.training-list-accordion .accordion-content .cta-white {
  color: #1D1A39;
  border: 1px solid #1D1A39;
  background-color: #ffffff;
  padding: 10px 24px;
  text-align: center;
  display: block;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0px 3px 15px #04002B1A;
}

.qoutegrid.bg-grey.w-overlapcta .qoutegrid-wrap {
  max-width: 100%;
}

.faq-accordion .banner {
  position: relative;
  padding: 24px 40px;
}

.faq-accordion .banner.bg-black{
  background-color: #1D1A39;
}

.faq-accordion .banner .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 0;
  position: relative;
}

.faq-accordion .banner .img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  left: 0;
  top: 0;
}

.faq-accordion .small-title{
  font-family: var(--font-ibm);
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.faq-accordion .banner .small-title{
  font-size: 24px;
}

.training-list-accordion .wrap-title{
  color: #040404;
}

.training-list-accordion .accordion-content p{
  color: #040404;
}

.header-training .content-text {
    color: #fff;
  }

@media(min-width:992px) {

  /* Header training */
  .header-training .content-text {
    color: #fff;
    font-weight: 400;
    margin-bottom:0px;
  }
  
  .header-training .content-text p:last-child{
    margin-bottom:0px;
  }

  .header-training .wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
    height: auto;
    max-height:100%;
  }

  .header-training .subtitle {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 500;
  }

  .header-training .title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.125;
    letter-spacing: 0;
    margin-top: 0px;
    margin-bottom: 16px;
  }
  
  .header-training .form-wrap form input[type='submit']{
    font-size: 14px;
    padding: 10px 24px;
    letter-spacing: 0;
    line-height: 1.71;
    width:100%;
  }
  
  .header-training .hs-form-field{
    margin-bottom:16px;
  }

  .header-training .banner-wrap {
    max-width: 884px;
  }

  .header-training .form-wrap h3 {
    margin-bottom: 24px;
  }

  .qoutegrid.bg-grey.w-overlapcta .floating-banner {
    max-width: 80%;
    padding: 40px 32px;
  }

  .qoutegrid.bg-grey.w-overlapcta .text-wrap {
    padding-top: 150px;
  }
  
  img.qoute-brand{
    width:86px;
    margin-bottom:16px;
  }
  
  .floating-cta .hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_form{
    width:65%;
  }
  
  .floating-cta .hs_cos_wrapper.form-title{
    display:none;
  }
  
  .floating-cta form{
    width:100%;
  }
  
  .floating-cta .hs-form-field{
    margin-bottom:0px;
  }
  
  .training-list-accordion {
    padding-top:120px;
    padding-bottom:120px;
  }
  
  /*faq accordion*/
/*   .faq-accordion .wrap-title{
    font-size: calc(32px + (48 - 32) * ((100vw - 1280px) / (1920 - 1280)));
  } */
}

@media (min-width:1200px) {
  .header-training .wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media(min-width:1700px) {

  .floating-cta form input[type='text'],
  .floating-cta form input[type='email'] {
    width: 462px;
  }

  .header-training .title {
    font-size: 64px;
  }
  
  .header-training .wrapper {
    padding-top:160px;
    padding-bottom: 160px;
  }

  .header-training .content-text {
    font-size: 18px;
  }

  .training-list-accordion .wrap-title{
    font-size: 40px;
  }

  .training-list-accordion .accordion-content ul {
    margin-bottom: 40px;
  }

  .training-list-accordion .accordion-item.active {
    padding-bottom: 80px;
  }

  .qoutegrid.bg-grey.w-overlapcta .text-wrap {
    padding-left: 138px;
    padding-bottom: 140px;
    padding-top: 240px;
  }

  .qoutegrid.bg-grey.w-overlapcta .floating-banner {
    max-width: 1088px;
    padding: 72px 80px;
  }
  
  .training-list-accordion {
    padding-top:160px;
    padding-bottom:160px;
  }
}

/*mobile style*/
@media (max-width:992px){
  .header.header-training{
    height: auto;
    background-color:#f5f5f5;
  }

  .header.header-training .wrapper{
    height: auto;
    max-height: unset;
  }

  .header.header-training .bg-image{
    min-height: 350px;
    height: 350px;
  }
  
  .header.header-training .bg-overlay{
    min-height: 100.95px;
    height: 100.95px;
  }

/*   .header.header-training .header-row{
    padding-top: 100px;
  } */

  .header.header-training .content-text{
    margin-top: 80px;
    color:#3E3D40;
  }

  .header.header-training .title{
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
  }

  .header.header-training .brand-logo{
/*     width: 40px; */
    max-width:80px;
  }
  .header-training .form-wrap form input[type='submit']{
    width: auto;
    margin: 0 auto;
    padding: 6px 18px;
    background-color: #07A19F;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    display: block;
    font-size: 14px;
    letter-spacing: 0.14px;
    font-weight: 500;
    box-shadow: 0px 3px 15px #07A19F33;
    text-transform: uppercase;
    line-height: 1.5;
    font-family: var(--font-ibm);
    margin-left:0;
  }
  .header-training .form-wrap h3{
    font-size: 16px;
    margin-bottom: 49px;
  }

  .training-list-accordion .media {
    display: none;
  }

  .training-list-accordion{
    background-color: #fff;
  }

  .training-list-accordion .accordion-content ul li{
    font-size: 14px;
  }

  .training-list-accordion .accordion-content .cta-white, .training-list-accordion .accordion-content .cta-black{
    font-size: 12px;
    padding: 6px 16px;
    line-height: normal;
  }

  .training-list-accordion .accordion-content .cta-group{
    gap: 16px;
  }

  .training-list-accordion .accordion-content{
    width: 100%;
  }

  .person-bio .person-name, .person-bio .job-title {
    font-size: 14px;
  }
  .header-training .form-wrap form input[type='text'],
  .header-training .form-wrap form input[type='email'],
  .header-training .form-wrap form input[type='tel'],
  .header-training .form-wrap form input[type='number'],
  .header-training .form-wrap form input[type='date'],
  .header-training .form-wrap form select {
    font-size:14px;
  }
  
  img.qoute-brand.mb-3{
    width:52px;
    margin-bottom:8px;
  }
}

/*tablet style*/
@media (min-width:767px) and (max-width:992px){
  .header.header-training .content-text{
    margin-top: 160px;
  }
  
  img.qoute-brand.mb-3{
    width:100px;
  }
  
  #hs_cos_wrapper_widget_1698682183332 img.qoute-brand.mb-3{
    width: auto;
    height: 30px !important;
  }
}
/*
header downloads
*/
.header-downloads .wrapper {
  height: 55vh;
}

.header-downloads .title.event-title{
  margin-bottom:0;
}

/*
download overview grid
*/
.downloads-overview {
  background-color: #F5F5F5;
  padding-top: 40px;
}

.downloads-overview h2 {
  font-family: var(--font-alegreya);
  color: #1D1A39;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}

.downloads-overview fieldset {
  border: unset;
  width: 100%;
  padding: 0;
}

.downloads-overview fieldset input,
.downloads-overview fieldset select {
  display: block;
  width: 100%;
}

.downloads-overview .reset-filter {
  color: #1D1A39;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  text-align: right;
  justify-content: flex-end;
  align-items:center;
  margin-bottom: 10px;
  margin-right: 8px;
}

.downloads-overview .reset-filter i {
  text-decoration: none;
}

.downloads-overview .form-label {
  display:none;
  margin-bottom: 0.5rem;
  color: #1D1A39;
  font-size: 16px;
  font-weight: 500;
}

.downloads-overview .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1D1A39;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #A4A3AF;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.downloads-overview .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1D1A39;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #A4A3AF;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.downloads-overview .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.downloads-overview .input-group>.form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.downloads-overview .input-group .btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid #A4A3AF;
  border-left: unset;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
  position: relative;
}

.downloads-overview .card-download .card-img{
  display: block;
  width: 100%;
}

.downloads-overview .card-download a {
  text-decoration: none;
}

.downloads-overview .card-download .card-title{
  font-size: 20px;
  font-weight: 600;
  color: #1D1A39;
  margin-top: 0;
  margin-bottom: 16px;
}

.downloads-overview .card-download p{
  font-size: 16px;
  font-weight: 400;
  color: #3E3D40;
  margin-bottom: 16px;
}

.downloads-overview .card-download .card-body{
  padding: 16px;
  background-color: #FFFFFF;
  width:100%;
}

.downloads-overview .card-download .card-link {
  color: #07A19F;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.42px;
  line-height: 1.71;
  font-weight: 500;
}

.downloads-overview .card-download .card-link .icon {
  transition: .3s ease-out;
  display: inline-block;
}

.downloads-overview .card-download .card-link:hover .icon {
  transform: translateX(4px);
}

#filter-mobile{
  font-family: var(--font-ibm);
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0px 3px 15px #1D1A3933;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 10px 16px;
  text-transform: uppercase;
  width: 100%;
  border: unset;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  overflow: auto; /* Enable scroll if needed */
  background-color: #FFFFFF;
  box-shadow: 0px 3px 15px #1D1A3933;
  border-radius: 4px;
}

/* Modal Content/Box */
.modal-content {
  padding: 9px 16px 16px;
  /* border: 1px solid #888; */
  width: 100%; /* Could be more or less, depending on screen size */
}

.modal-header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.modal-title{
  font-family: var(--font-ibm);
  font-size: 12px;
  font-weight: 500;
  color: #1D1A39;
  margin: 0 auto;
}

.modal-content .btn-group a, .modal-content .btn-group .btn{
  width: 50%;
}

.modal-content .btn-group .reset-filter{
  text-align: center;
  justify-content: center;
}

.modal-content .btn-group .btn{
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14px;
  text-transform: uppercase;
}

.modal-content .form-select{
  color: rgba(29, 26, 57, 0.8);
}

/* The Close Button */
.close {
  font-family: var(--font-ibm);
  color: #1D1A39;
  float: right;
  font-size: 16px;
  font-weight: 500;
}

.close:hover,
.close:focus {
  color: #1D1A39;
  text-decoration: none;
  cursor: pointer;
}

.header-downloads .bg-overlay{
  background:transparent linear-gradient(to bottom right,rgba(29,26,57,1),rgba(7,161,159,1)) 0 0 no-repeat padding-box !important;
}

.header-downloads .bg-overlay{
  opacity:75%;
}

@media (min-width:992px) {

  /*
    header downloads
    */
  
  .header-downloads .title{
    font-size: calc(40px + (64 - 40) * ((100vw - 1280px) / (1700 - 1280)));
  }
  
  .header-downloads .wrapper {
    padding-top: 120px;
    padding-bottom:120px;
    height: auto;
  }

  /*
  download overview grid
  */
  .downloads-overview {
    padding-top: 80px;
  }

  .downloads-overview h2 {
    font-size: calc(30px + (48 - 30) * ((100vw - 1280px) / (1700 - 1280)));
    margin-bottom: 24px;
  }

  .downloads-overview .card-download .card-title{
    font-size: calc(20px + (24 - 20) * ((100vw - 1280px) / (1700 - 1280)));
  }
  
  .downloads-overview .form-label {
    display:inline-block;
  }
  
  .downloads-overview .card-download .card-img{
    height:230px;
    object-fit:cover;
  }

}

@media (min-width:1700px) {

  .header-downloads .title{
    font-size: 64px;
    margin-bottom: 24px;
  }

  .header-downloads .content-text{
    font-size: 18px;
    line-height: 1.5;
    max-width: 710px;
  }

  /*
  downloads overview grid
  */
  .downloads-overview h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }
  
  .downloads-overview .card-download .card-title{
    font-size: 24px;
  }

  .downloads-overview .card-download .card-body{
    padding: 24px 35px;
  }

  .downloads-overview .row-filter {
    margin-bottom: 40px;
  }
  
  .downloads-overview .card-download .card-img{
    height:330px;
  }
}


/*
download detail style
*/
.download-detail{
  padding-top: 60px;
  padding-bottom:60px;
}

.download-detail .form-wrap{
  padding: 24px;
  margin-left: auto;
}
.download-detail .form-group{
  margin-bottom: 16px;
}
.download-detail .form-wrap form input[type='text'],
.download-detail .form-wrap form input[type='email'],
.download-detail .form-wrap form input[type='tel'],
.download-detail .form-wrap form input[type='number'],
.download-detail .form-wrap form select,
.download-detail .form-wrap form textarea{
    background-color: rgba(255,255,255,0.1);
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    padding: 10px 20px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.7;
    width: 100% !important;
}

.download-detail .form-wrap form input::placeholder,
.download-detail .form-wrap form .hs-form-booleancheckbox label,
.download-detail .form-wrap form textarea::placeholder {
    color: #FFFFFF;
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #FFFFFF;
}

.download-detail .form-wrap form input[type='submit']{
    border: none;
    padding: 10px 24px;
    background-color: #07A19F;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0px 3px 15px #07A19F33;
    text-transform: capitalize;
    line-height: 1.71;
    font-family: var(--font-ibm);
}

.download-detail .form-wrap .form-title{
  font-family: var(--font-alegreya);
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 500;
  margin-top: 0;
}

.download-detail h2{
  font-family: var(--font-alegreya);
  color: #1D1A39;
  font-size: 32px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 24px;
}

.download-detail p{
  color: #3E3D40;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.5;
}

.download-detail p:last-child{
  margin-bottom:0;
}

.download-detail img {
  display: block;
  width: 100%;
  max-width: 950px;
  margin-bottom: 16px;
}

.download-detail form label{
  display:none;
}

@media(min-width:992px){
  .download-detail{
    padding-top: 120px;
    padding-bottom:120px;
  }

  .download-detail h2{
    font-size: calc(30px + (48 - 30) * ((100vw - 1280px) / (1920 - 1280)));
    margin-bottom: 24px;
  }

  .download-detail p{
    margin-bottom: 24px;
  }

  .download-detail img {
    margin-bottom: 24px;
  }

  .download-detail .form-wrap{
    max-width: 80%;
  }
}

@media (min-width:1700px){
  .download-detail{
    padding-top:160px;
    padding-bottom:160px;
  }
}

@media (min-width:1920px){
  .download-detail h2{
    font-size: 48px;
    margin-bottom: 40px;
  }

  .download-detail p{
    margin-bottom: 40px;
  }

  .download-detail img {
    margin-bottom: 40px;
  }

  .download-detail .form-wrap{
    max-width: 536px;
  }
}

/*mobile style*/

@media (max-width:992px){
  .header-downloads{
    height: auto;
  }
  .header-downloads .wrapper {
    height: auto;
    background: #f5f5f5;
  }
  .header-downloads .bg-image{
    position: relative;
    height: 160px;
    display:block;
  }
  .header-downloads .bg-overlay{
    min-height:160px;
  }

  .header.header-downloads .header-row{
    padding-top: 60px;
    padding-bottom:60px;
  }

  .header.header-downloads .title{
    color: #1D1A39;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .downloads-overview .card-download{
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .downloads-overview .card-download > a{
    max-width: 100%;
  }

  .downloads-overview .card-download .card-img{
    height: 100%;
    object-fit: cover;
    width:100%;
  }

  .downloads-overview .card-download .card-title{
    font-size: 16px;
    margin-bottom:8px;
  }

  .downloads-overview .card-download p{
    font-size:14px;
  }

  .downloads-overview .card-download .card-link{
    font-size: 14px;
    font-weight: 400;
  }

  .download-detail .row{
    flex-direction: column-reverse;
  }

  .download-detail .form-wrap{
    margin-bottom: 60px;
  }
  
  .download-detail h2{
    font-size:24px;
    margin-bottom:16px;
    max-width:80%;
  }

  .download-detail p{
    font-size: 14px;
  }
  
  .download-detail .form-wrap form input[type='text'],
  .download-detail .form-wrap form input[type='email'],
  .download-detail .form-wrap form input[type='tel'],
  .download-detail .form-wrap form input[type='number'],
  .download-detail .form-wrap form select,
  .download-detail .form-wrap form textarea{
    font-size:14px;
  }
  
  .download-detail .form-wrap form input[type=submit]{
    padding:6px 18px;
  }
  
  /*filter on mobile*/
  .downloads-overview .input-group{
    flex-direction: row-reverse;
  }

  .downloads-overview .input-group>.form-control{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-left: 0;
  }

  .downloads-overview .input-group .btn{
    margin-left: 0;
    margin-right: -1px;
    border-right: unset;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-left: 1px solid #A4A3AF;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

}

@media (min-width:1920px){
  .header-downloads .wrapper {
    padding-top:160px;
    padding-bottom:160px;
  }
}
/*
header training detail
*/
.header-training-detail .wrapper {
  height: auto;
}

.header-training-detail .subtitle{
  font-size: 14px;
  line-height:normal;
  margin-bottom:0;
}

.header-training-detail .header-row{
  padding-top: 60px;
  padding-bottom:60px;
}

.header-training-detail .bg-image{
  height: 200px;
}

/*
training detail style
*/
.training-detail {
  padding-top: 60px;
  padding-bottom:60px;
}

.training-detail .form-wrap {
  padding: 24px;
  margin-left: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.training-detail .form-group {
  margin-bottom: 16px;
}

.training-detail .form-half{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.training-detail .form-half > * {
  max-width: calc(50% - 8px);
}

.training-detail ::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.training-detail form .hs-richtext p{
  font-size: .775rem;
  color:#fff;
}

.training-detail .form-wrap form input[type='text'],
.training-detail .form-wrap form input[type='email'],
.training-detail .form-wrap form input[type='tel'],
.training-detail .form-wrap form input[type='number'],
.training-detail .form-wrap form input[type='date'],
.training-detail .form-wrap form select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  padding: 10px 20px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.7;
  width: 100% !important;
  height:51px;
}
.training-detail .form-wrap form input[type="date"]::before {
  content: attr(placeholder);
  position: absolute;
  color: #FFFFFF;
}

.training-detail .form-wrap form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E);
    background-position: right 14px top 50%;
    background-repeat: no-repeat;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.training-detail .form-wrap .hs-fieldtype-text label,
.training-detail .form-wrap .hs-fieldtype-select label,
.training-detail .form-wrap .hs-fieldtype-phonenumber label{
    display:none;
}

.training-detail .form-wrap ul {
    column-count:1;
}

.training-detail .form-wrap  label{
    color:#fff;
}

.training-detail .form-wrap form input[type="date"] {
  color: #ffffff;
}

.training-detail .form-wrap form input[type="date"]:focus,
.training-detail .form-wrap form input[type="date"]:valid {
  color: #FFFFFF;
}

.training-detail .form-wrap form input[type="date"]:focus::before,
.training-detail .form-wrap form input[type="date"]:valid::before {
  content: "";
}

.training-detail .form-wrap form input::placeholder {
  color: #FFFFFF;
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #FFFFFF;
}

.training-detail .form-wrap form input[type='submit'] {
  border: none;
  padding: 6px 14px;
  background-color: #07A19F;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.14px;
  font-weight: 500;
  box-shadow: 0px 3px 15px #07A19F33;
  text-transform: uppercase;
  line-height: 1.5;
  font-family: var(--font-ibm);
}

.training-detail .form-wrap .form-title {
  font-family: var(--font-alegreya);
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 500;
  margin-top: 0;
}

.training-detail .form-wrap .form-desc{
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}

.training-detail h2 {
  font-family: var(--font-alegreya);
  color: #1D1A39;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0px;
}

.training-detail h3{
  font-family: var(--font-alegreya);
  color: #1D1A39;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}

.training-detail p {
  color: #3E3D40;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.5;
}

.training-detail img {
  display: block;
  width: 100%;
  max-width: 950px;
  margin-bottom: 16px;
}

.training-detail ul {
  padding-left: 16px;
  column-count: 1;
  list-style: disc;
}

.training-detail .content > ul > li > ul{
  margin-top:8px;
}

.training-detail ul li {
  color: #1A1818;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.training-detail ul li span{
  font-family: IBM Plex Sans,sans-serif !important;
}

.training-detail a{
  color: #05A19F;
  font-weight: 500;
}

.training-detail p.training-meta{
  color: #707070;
  margin-bottom:0px;
}

.training-detail span.green{
  color: #07A19F;
}

.training-detail .date-location {
  margin-bottom: 24px;
}

.training-detail .date-location .label{
  color: #707070;
  font-weight: 600;
  margin-bottom: 10px;
}

.training-detail .date-location .date{
  margin-bottom: 4px;
  color: #707070;
}

.header-training-detail .title{
  font-family: var(--font-alegreya);
  font-weight: 500;
  font-size:32px;
}

.training-detail p.mb-0{
  margin-bottom:0px !important;
}

@media(min-width:992px) {
  .header-training-detail .wrapper {
    padding-top: 120px;
    padding-bottom:120px;
  }

  .header-training-detail .header-row{
    padding-top: 0;
    padding-bottom:0;
  }

  .header-training-detail .subtitle{
    font-size: 16px;
    margin-bottom:8px;
  }
  
  .header-training-detail .bg-image{
    height: auto;
  }

  .training-detail .content > ul {
/*     column-count: 2; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 40px;
    margin-bottom: 24px;
  }

  .training-detail {
    padding-top: 120px;
    padding-bottom:120px;
  }

  .training-detail h2 {
    font-size: 48px;
    margin-bottom: 0px;
  }

  .training-detail h3{
    font-size: 40px;
  }

  .training-detail p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .training-detail p.mb-0{
    margin-bottom:0px !important;
  }

  .training-detail img {
    margin-bottom: 30px;
  }

  .training-detail .date-location {
    margin-bottom: 40px;
  }

  .training-detail .form-wrap {
    max-width: 400px;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .training-detail .date-location .date{
    margin-bottom: 8px;
  }

  .training-detail .date-location .label{
    margin-bottom: 16px;
  }

  .training-detail ul li {
    font-size: 16px;
  }
  
  .training-detail .form-wrap form input[type='submit'] {
    font-size: 14px;
    padding: 10px 24px;
    letter-spacing: 0;
    line-height: 1.71;
  }
  
  .training-detail .form-wrap form select{
    min-height: 51px;
  }
  
  .header-training-detail .title{
    font-size:50px;
    line-height:60px;
  }
  
  .training-detail .form-wrap form input[type='text'],
  .training-detail .form-wrap form input[type='email'],
  .training-detail .form-wrap form input[type='tel'],
  .training-detail .form-wrap form input[type='number'],
  .training-detail .form-wrap form input[type='date'],
  .training-detail .form-wrap form select {
    font-size:16px;
  }
  
  .training-detail .hs-dateinput:before{
    display:none;
  }
}

@media (min-width:1700px) {
  .header-training-detail .wrapper {
    padding-top: 160px;
    padding-bottom:160px;
    height: auto;
  }
  
  .training-detail h2 {
    margin-bottom: 0px;
  }

  .training-detail p {
    margin-bottom: 40px;
  }

  .training-detail img {
    margin-bottom: 40px;
  }

  .training-detail .content > ul {
    margin-bottom: 40px;
  }

  .training-detail .form-wrap {
    max-width: 536px;
  }

  .training-detail .date-location{
    margin-bottom: 40px;
  }

  .training-detail .date-location .date{
    margin-bottom: 12px;
  }

  .training-detail .date-location .label{
    font-size: 20px;
  }

  .header-training-detail .title{
    font-size: 64px;
  }
}

/*mobile style*/
@media (max-width:992px){
  ul.training-meta{
    list-style:none;
    padding-left:0;
  }
  
  .training-meta li{
    display:flex;
    flex-direction:row;
    gap:12px;
    color:#707070 !important;
  }
  
  .training-meta li span.training-meta-title{
    min-width:78px;
    font-weight:400;
  }
  
  .training-detail .hs-dateinput:before{
    display:none;
  }
}

@media (max-width:480px){
  fieldset.form-columns-1 .input, fieldset.form-columns-2 .input{
    margin-right:0px;
  }
}

.training-detail a.cta-button{
  color:#fff;
}

.training-detail .sidebar-right{
  max-width:400px;
  margin-top: 20px;
  margin-left:auto;
}

.training-detail .sidebar-right .cta-button{
  color:#fff;
}
@media (min-width:1700px){
  .training-detail .sidebar-right{
    max-width: 536px;
  }
}

@media (max-width:992px){
  .training-detail .sidebar-right{
    margin-left: auto;
  }
}

@media (min-width:600px) and (max-width:992px){
.training-detail .sidebar-right{
  margin-left:unset;
}
}

@media (min-width:1920px){
  .training-detail {
    padding-top:160px;
    padding-bottom:160px;
  }
}
.one-column {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #f5f5f5;
}

.one-column .title {
	font-family: 'Alegreya';
	font-size: 2.5rem;
	line-height: 3rem;
	color: #1D1A39;
}

.one-column .subtitle {
	font-family: 'IBM Plex Sans';
	font-size: 1.125rem;
	line-height: 1.5rem;
	color: #3E3D40;
}

.twocols-img .title {
	font-family: 'Alegreya';
	font-size: 2rem;
	line-height: 2.5rem;
	color: #1D1A39;
	word-break: break-word;
	max-width: 90%;
}

.twocols-img .icon-cta {
	width: 15px;
	margin-right: 15px;
}

.twocols-img .content {
	max-width: 80%;
	font-family: 'IBM Plex Sans';
	font-size: 1rem;
	line-height: 1.5rem;
	color: #3E3D40;
}

.twocols-img .content-right {
	margin-bottom: 30px;
}

.twocols-img .content-left {
	margin-bottom: 30px;
}

.twocols-img .cta-button {
	background-color: #1D1A39;
}

.twocols-img .right {
	background-color: #fff;
}


@media all and (min-width:1080px) {
	.twocols-img .content-right {
		padding: 0 30px;
	}
}

@media (min-width:1400px) {
	.twocols-img .right {
		max-width: 1300px;
		padding-left: 170px;
		background-color: #fff;
	}
}

@media (min-width:1700px) {
	.twocols-img .right {
		max-width: 950px;
		padding-left: 120px;
		background-color: #fff;
	}
}

.twocols-img .cta-button .hover {
	opacity: 0;
	transition: opacity .5s;
	display: none;
}

.twocols-img .cta-button:hover .hover {
	display: inline;
	opacity: 1;
}

.twocols-img {
	background-color: #f5f5f5;
}

.twocols-img img {
	width: 100%;
}

@media (min-width:992px){
  .twocols-img img:not(.icon-cta){
    aspect-ratio: 796/742;
    max-height:742px;
  }
}

/*mobile style*/
@media (max-width:992px) {
	.one-column {
		padding-top: 0;
		padding-bottom: 80px;
	}

	.one-column .title {
		font-size: 24px;
		line-height: 34px;
		margin-top: 0;
		margin-bottom: 16px;
	}

	.one-column .subtitle {
		font-size: 14px;
		color: #3E3D40;
		line-height: 1.5;
		font-weight: 400;
	}

	.twocols-img .right{
		background-color: unset;
	}

	.twocols-img .row{
		flex-direction: column-reverse;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
	}
  
  .twocols-img .row.row-right{
    flex-direction:column;
  }
  
  .twocols-img .col-12:not(.content-left){
		padding-left: 0;
		padding-right: 0;
	}
  
	.twocols-img .content-left,
  .twocols-img .col-12.content-right{
		background-color: #fff;
    padding: 30px;
    padding-top: 16px;
    padding-bottom: 40px;
		margin-bottom: 0;
	}

	.twocols-img .title{
		margin-top: 0;
    font-size: 24px;
    line-height: 34px;
    max-width: 100%;
	}

	.twocols-img .content{
		font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 16px;
	}
  
  .twocols-img .content p{
    font-size:14px;
  }

	.twocols-img img:not(.icon-cta){
		height: 100%;
    display: block;
    object-fit: cover;
	}

	.twocols-img.left .row{
		flex-direction: column;
	}

	.twocols-img.left .content-right{
		background: #fff;
		padding: 30px;
		padding-top: 16px;
		padding-bottom: 40px;
	}
  
  .twocols-img .cta-button{
    font-size:14px;
  }
}
.header-solutions .title.little {
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
}

.header-solutions .content-text a{
    color: #07A19F;
    text-decoration: none;
}

.brand-readmore{
    color: #07A19F;
    text-decoration: none;
}

.cols-text-only{
    padding: 120px 0;
    background-color: #F5F5F5;
}

.cta-button.white{
    color: #07A19F !important;
    text-decoration: none;
    background-color: #fff !important;
    margin-left: 1rem;
}

.cols-text-only .title{
    color:#1D1A39;
    font-family:'Alegreya','sans-serif';
    font-size:48px;
    line-height: 56px;
    margin-top:0;
}

.cols-text-only .text{
    margin: 1rem 0;
    font-family:'IBM Plex Sans', sans-serif;
    font-size:16px;
    line-height: 24px;
}

.cols-text-only .text.dark{
    color:#3E3D40;
    font-weight: 600;
}

.cols-text-only .text.default{
    color:#3E3D40;
}

.cols-text-only .text p{
    font-size:16px;
    color:#3E3D40;
    line-height:1.5;
}

/*mobile style*/
@media (max-width:992px){
  .header.header-solutions .content img{
    max-width:120px;
    margin-bottom:0px;
  }
  
  .header-solutions .title.little{
    font-size: 32px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 16px;
  }
  
  .cols-text-only{
    padding-top: 0;
    padding-bottom: 80px;
  }
  
  .cols-text-only .title{
    font-size: 24px;
    line-height: 1.2;
  }
  
  .cols-text-only .text p{
    font-size:14px;
    color:#3E3D40;
    line-height:1.5;
  }
  
  .hs-content-id-152035552784 .header-solutions .bg-overlay{
    height:100%;
  }
}
/* Grid 3 cols home */
.grid-3-cols.industry-home .card.featured.fullwidth,
.grid-3-cols.industry-home .card.featured.doublewidth{
    grid-column: span 3;
    grid-row: span 1;
    aspect-ratio: auto;
}

.grid-3-cols.industry-home .card.featured.doublewidth{
    grid-column: span 2;
}

.grid-3-cols.industry-home .card.featured.fullwidth .content-wrap{
    max-width: 840px;
}

.grid-3-cols.industry-home .card.featured .image-overlay{
    background: transparent linear-gradient(0deg, #1D1A39 0%, #124971 100%) 0% 0% no-repeat padding-box;
    opacity: 0.4;
}

.grid-3-cols.industry-home .card.featured{
    width: 100%;
    height: 100%;
}

/* 2 cols with image */
.cols-2-with-image{
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 120px;
}

.cols-2-with-image .left-content{
    max-width: 798px;
}

.cols-2-with-image .wrap-title{
    font-size: 40px;
}

.cols-2-with-image .content-text p{
    margin-bottom: 16px;
}

/* advantage content only*/
.advantage.with-right-image .content-only{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}



/* two-col-with-image */
.two-col-with-image{
  padding-top:60px;
  padding-bottom:60px;
}

.two-col-with-image .img-float{
    position: absolute;
    left: 0;
    max-width: 50%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.two-col-with-image .text-container{
    padding: 200px 0px 190px 114px;
}

.two-col-with-image .subtitle{
    font-size: 16px;
    color: #07A19F;
    font-weight: 500;
    margin-bottom: 16px;
}

.two-col-with-image .content-text{
    font-size: 18px;
    line-height: 1.33;
    margin-bottom: 40px;
    color: #000;
}

.cols-2-with-image .content-text{
    font-size: 16px;
    line-height: 1.5;
}

.two-col-with-image .wrap-title{
    color: #000;
    line-height: 1.2;
}

.two-col-with-image .text-content{
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 24px;
}

@media (min-width:992px){
  .grid-3-cols.industry-home .card.featured .title.mobile{
    display:none;
  }
}

@media (min-width:1200px){
  .grid-3-cols.industry-home .card.featured.doublewidth, 
  .grid-3-cols.industry-home .card.featured.fullwidth{
    min-height: 335px;
  }
  .grid-3-cols.industry-home .card.featured{
    min-height: 335px;
  }
  .grid-3-cols.industry-home .card.featured.fullwidth .content-wrap{
    justify-content: flex-end;
  }
}

@media (min-width:1700px) {
    .cols-2-with-image .left-content{
        padding-left: 10rem;
    }

    .two-col-with-image .wrap-title{
        font-size: 48px;
        max-width: 440px;
    }
}

@media all and (max-width:992px){
  .grid-3-cols.industry-home .grid{
    grid-template-columns: 1fr;
  }
  
  .grid-3-cols.industry-home .card.featured.doublewidth,
  .grid-3-cols.industry-home .card.featured.fullwidth,
  .grid-3-cols.industry-home .card.featured{
    grid-column: auto;
    align-items:center;
    aspect-ratio: auto;
    flex-direction: column;
  }
  
  .grid-3-cols.industry-home .card.featured .title{
    color:#04002B;
  }
  
  .grid-3-cols.industry-home .card.featured .title.mobile{
    color:#ffffff;
    width:100%;
    margin-top:-40px;
    z-index:1;
    padding-left:16px;
    font-size:20px;
  }
  
  .grid-3-cols.industry-home .card.featured .title.desktop{
    display:none;
  }
  
  .grid-3-cols.industry-home .card.featured img{
    position:relative;
    width:100%;
  }
  
  .grid-3-cols.industry-home .card.featured .content-wrap{
    margin-top: 0;
/*     width: 60%; */
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height:unset;
    padding:20px 16px;
  }
  
  .grid-3-cols.industry-home .card.featured.fullwidth{
    flex-direction: column;
  }
  
  .grid-3-cols.industry-home .card.featured .content-wrap .excerpt{
    color: #3e3d40;
    font-size:14px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
  }
  
/*  advantage home  */
  .advantage.with-right-image{
    padding-top:60px;
    padding-bottom:60px;
  }
  
  .advantage.with-right-image .row{
    display:block;
  }
  
  .advantage.with-right-image .row.home-services{
    max-width:100%;
  }
  
  .advantage.with-right-image .container{
    padding-left:0;
    padding-right:0;
  }
  
  .advantage.with-right-image .wrap-title{
    padding-left:24px;
    padding-right:24px;
  }
  
  .advantage.with-right-image .content-only{
    grid-template-columns: minmax(0,1fr);
    margin-left: 10px;
  }
  
  .advantage.with-right-image .card-advantage{
    padding:24px;
  }
  
  .advantage.with-right-image .card-advantage img{
    width:38px;
    margin-bottom:10px;
  }
  
  .advantage.with-right-image .card-advantage .card-title a{
    font-size:16px;
  }
  
  .advantage.with-right-image .cta-button{
    margin-left:24px;
  }
  
/*  digital transform  */
  .cols-2-with-image.digital-transform{
    padding-top:60px;
    padding-bottom:60px;
  }
  
  .cols-2-with-image.digital-transform .right-content{
    text-align:center;
    margin-bottom:47px;
  }
  
  .cols-2-with-image.digital-transform .right-content img{
    max-width:304px;
  }
  
  .cols-2-with-image.digital-transform .wrap-title{
    font-size:20px;
/*     max-width:288px; */
    max-width:100%;
  }
  
  .cols-2-with-image.digital-transform .content-text,
  .cols-2-with-image.digital-transform .content-text p{
    font-size:14px;
    color:#FFFFFF;
  }
  
/*  two cols image  */
  .two-col-with-image.fullwidth-homepage .image-container img{
    position: relative;
    max-width: 100%;
    display:block;
  }
  
  .two-col-with-image.fullwidth-homepage .text-container{
    padding:0 0 14px 0;
  }
  
  .two-col-with-image .subtitle,
  .two-col-with-image .text-content{
    font-size:14px;
  }
}

@media all and (min-width:992px){
  .two-col-with-image .img-float{
    margin:80px 0;
    top: 0;
    height: calc(100% - 160px);
    max-height:900px;
  }
  
  .advantage.with-right-image .card-advantage img{
    width:48px;
  }
}

@media all and (min-width:1200px){
  .two-col-with-image{
    padding-top:120px;
    padding-bottom:120px;
  }
  
  .two-col-with-image .img-float{
    margin:120px 0;
    top: 0;
    height: calc(100% - 240px);
  }
}

@media all and (min-width:600px) and (max-width:992px){
  .case-slider .floating-banner,
  .case-slider .swiper-container{
    max-width:672px;
  }
  
  .case-slider .swiper-container{
    margin:auto;
  }
  
  .grid-3-cols.industry-home .card.featured, .grid-3-cols.industry-home .card.featured.doublewidth, .grid-3-cols.industry-home .card.featured.fullwidth{
    flex-direction:row;
  }
  
  .grid-3-cols.industry-home .card.featured img{
    width:45%;
  }
  
  .grid-3-cols.industry-home .card.featured .title.mobile{
    display:none;
  }
  
  .grid-3-cols.industry-home .card.featured .title.desktop{
    display:block;
  }
  
}

@media (min-width:1920px){
  .cols-2-with-image,
  .two-col-with-image{
    padding-top: 160px;
    padding-bottom: 160px;
  }
  
  .two-col-with-image .img-float{
      height: calc(100% - 320px);
      margin: 160px 0;
      top: 0;
  }
}
footer.footer-new .footer-menu {
    background-color: #1D1A39;
    padding-top: 24px;
    padding-bottom: 10px;
}
footer.footer-new .footer-menu .footer-nav{
    padding-bottom: 48px;
}
footer.footer-new .footer-menu .footer-nav .menu{
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
footer.footer-new .footer-menu .footer-nav .menu .menu-item {
    margin-bottom: 0px;
}
footer.footer-new .footer-menu .footer-nav .menu .menu-item a {
    font-size: 1.125rem;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}
footer .footer-menu .footer-copyright p {
    font-size: 0.875rem;
    line-height: 20px;
    font-weight: 400;
    color: #ffffffcc;
}
footer.footer-new .footer-menu .footer-copyright .text-white {
    color: #fff;
}
footer.footer-new .footer-menu .footer-copyright .text-grey {
    color: #ffffffcc;
    margin-top: 24px;
}

footer.footer-new .title{
    font-size: 1.125rem;
    line-height: 1.33;
    color: #A2999E;
    font-weight: 600;
}


/* newsletter */
footer.footer-new .newsletter-wrap .title{
    font-size: 0.875rem;
    font-weight: 400;
}

footer.footer-new .newsletter-wrap form{
    margin-top: 24px;
}

footer .newsletter-wrap input[type="email"] {
    background: #FFFFFF1A 0% 0% no-repeat padding-box;
border: 1px solid #FFFFFF;
border-radius: 5px;
    padding:12px 16px;
    padding-right: 50px;
    width:100%;
    font-size:1rem;
    color:#FFFFFF;
}

footer .newsletter-wrap form{
    position:relative;
}

footer .newsletter-wrap .hs_submit {
    position: absolute;
    top: -1px;
    right: 0;
    width: 44px;
    font-size:0;
   
}

footer .newsletter-wrap input[type="submit"] {
/*     position:absolute; */
    right:0;
    min-height:46px;
    height:100%;
    border-radius:0 5px 5px 0;
    width:44px;
    background: #07A19F 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 6px 15px #05858433;
    border-radius: 0px 5px 5px 0px;
    opacity: 1;
    border:none;
    background-position: center;
/*     background-image: url(https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/images/icon-pesawat.png); */
    background-image: unset;
    width: 100%;
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

footer .newsletter-wrap .action{
  display:flex;
  flex-direction:column;
  width:100%;
}

footer .newsletter-wrap select{
  background-color: #ffffff1a;
  color: #a2999e;
  border-radius: 4px;
  border: 1px solid #fff;
}

footer .newsletter-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a2999e' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E);
    background-position: right 16px top 50%;
    background-repeat: no-repeat;
}

/*new style newsletter submit button*/
footer .newsletter-wrap .hs_submit{
  font-size: 16px;
  position: relative;
  width:100%;
}

/* bottom menu */
footer .bottom-menu{
    gap: 40px;
}

footer .bottom-menu a{
    font-size: 1.125rem;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
}


@media (min-width:992px) {
    footer.footer-new .footer-menu {
        padding-top: 75px;
        padding-bottom: 30px;
    }
    footer.footer-new .footer-menu .footer-nav{
        padding-bottom: 102px;
    }
    footer.footer-new .footer-menu .footer-copyright p {
        line-height: 24px;
        font-weight: 400;
        font-size: 1.125rem;
    }
    footer.footer-new .footer-menu .footer-copyright .text-grey {
        margin-top: 0;
      margin-bottom:0;
    }
  
    footer.footer-new .newsletter-wrap .title{
      text-transform:uppercase;
    }
  
/*     footer.footer-new .footer-menu .footer-nav .footer-nav-wrap{
      width:auto;
        max-width:16.66666667%;
    } */
    
}

@media all and (max-width:992px){
  
  footer.footer-new .title{
    font-size:1rem;
  }
  
  footer.footer-new .footer-menu .footer-nav .menu .menu-item a,
  footer .bottom-menu a{
    font-size:14px;
  }
  
  footer .bottom-menu.privacy{
    gap:0;
    justify-content:space-between;
  }
  
  footer .bottom-menu.privacy a,
  footer.footer-new .footer-menu .footer-copyright .text-grey{
    font-size:12px;
    color:#A2999E;
  }
  
  footer.footer-new .newsletter-wrap .title{
    font-size:16px;
  }
}

@media all and (min-width:992px) and (max-width:1500px){
  footer .bottom-menu.privacy{
    gap:16px;
  }
  
  footer .bottom-menu a{
    font-size:14px;
  }
  
  footer.footer-new .footer-menu .footer-copyright .text-grey{
    font-size:14px;
  }
}
/* About general */
.image-overlay{
    background: transparent linear-gradient(135deg, #1D1A39 0%, #07A19F 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    top: 0;
}

/* 3 cols icon about box */
.icon-about-box{
    padding-top: 120px;
    padding-bottom: 120px;
}

.icon-about-box .icon-box-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom:0;
}

.icon-about-box .icon-image{
    max-width: 125px;
    height: 81px;
    object-fit: cover;
    width:auto;
}

.icon-about-box .content-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.icon-about-box .number{
    font-size: 64px;
    font-weight: 700;
    font-family: var(--font-ibm);
    letter-spacing: 1.92px;
    line-height: 1;
    color: #1D1A39;
}

.icon-about-box .content-text{
    margin-bottom: 0;
    font-family: var(--font-alegreya);
    font-size: 32px;
    color: #1D1A39;
    line-height: 1.21;
}

/* Advantage with right image */
.advantage.with-right-image .left-content{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.advantage.with-right-image .image-container,
.advantage.with-right-image .image-container img{
    width: 100%;
    height: 100%;
}

.advantage.with-right-image .image-container img{
    object-fit: cover;
}

.advantage.with-right-image .right-content{
    padding-left: 4px;
}

.advantage.with-right-image .card-title a{
    font-size: 1.5rem;
    color: #3E3D40;
    line-height: 1.2;
    font-weight: 600;
    font-family: 'IBM Plex Sans';
    margin-bottom: 0.5rem;
}

/* Timeline History */
.timeline{
    padding-top:120px;
    padding-bottom:120px;
  }

.timeline .timeline-wrap{
    display: grid;
    gap: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 120px;
}

.timeline .line{
    position: absolute;
    width: 100%;
    border-top: 4px solid #07A19F;
    bottom: -16px;
    border-radius: 4px
}

.timeline .line:before,
.timeline .line:after {
    content:'';
    position: absolute;
    right: -2px;
    width: 15px;
    border-top: 4px solid #07A19F;
    top: -8px;
    border-radius: 4px;
    z-index: -1;
    transform: rotate(45deg);
}

.timeline .line:after  {
    top: auto;
    bottom:-5px;
    transform: rotate(-45deg);
}

.timeline .text-container{
    text-align: center;
    color: #3E3D40;
    letter-spacing: 0.48px;
    max-width: 220px;
    margin: auto;
    line-height: 1.5; 
}

.timeline .timeline-card{
    position: relative;
}

.timeline .timeline-card:before{
    content:'';
    position: absolute;
    height: 24px;
    width: 4px;
    background: #07A19F;
    bottom: -26px;
    border-radius: 4px;
    left: 50%;
}

.timeline .timeline-card:nth-child(odd){
    transform: translateY(calc(100% + 28px));
}

.timeline .timeline-card:nth-child(odd):before{
    bottom: auto;
    top: -26px;
}

/* grid2cols-overlapcta */
.grid2cols-overlapcta.with-subtitle .subtitle{
    color: #07A19F;
}

.grid2cols-overlapcta.with-subtitle .row:nth-child(2n){
    margin-bottom: 0;
}

.grid2cols-overlapcta.with-subtitle .row > *{
    padding-left: 0;
    padding-right: 0;
}

.grid2cols-overlapcta{
  padding:1px;
}

/* 2 cols with right image */
.col-2-with-image .image-right{
    position: absolute;
    height: 100%;
    width: 55%;
    object-fit: cover;
    right: 0;
}

.col-2-with-image.map-wrap .image-right{
    object-position:left;
}

.col-2-with-image .content-text{
    color: #3E3D40;
    letter-spacing: .48px;
    line-height: 1.5;
    max-width: 538px;
}

@media (min-width:1200px) and (max-width:1400px){
  .col-2-with-image .content-text{
    max-width: 480px;
  }
}

/* Gallery */
.gallery .gallery-wrap{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
}

.gallery .gallery-wrap.mobile-only{
    display:none;
  }

.gallery .image-item {
    grid-column: span 1;
    grid-row: span 1;
    width: 100%;
    height: 100%;

}

.gallery .image-item.big-width {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery .image-item.big-height {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery .image-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-dna {
    background-color: #F5F5F5;
    padding-top: 60px;
    padding-bottom: 120px;
}

.our-dna.white {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 120px;
}
.our-dna.white .card{
    background-color: #F5F5F5;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: .3s ease-out;  
}
.our-dna.white .card{
   text-decoration: none;
   
}
.our-dna.white .card:after {
        content: "";
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        border: 2px solid transparent;
        transition: all 0.3s ease-out;
}
.our-dna.white .card:before {
    content: "";
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease-out;
}

.our-dna.white .card:hover:before,
.our-dna.white .card:hover:after {
    opacity: 1;
    border-image: linear-gradient(111deg, #07A19F 0%, #1D1A39 100%); /* Define the gradient colors and angle */
    border-image-slice: 1; /* Ensure the gradient covers the entire border */
    border-image-width: 2px; /* Set the border width to match the original width */
    border-image-outset: 0; /* Ensure no spacing outside the border */
    border-image-repeat: stretch; /* Stretch the gradient along the border */
  }



.our-dna .desc-wrapper{
    padding: 30px;
}

.our-dna .inline-title{
  padding:30px 42px;
}

.our-dna .inline-title .title {
    margin-bottom: 2rem;
    font-size: 3rem;
    line-height: 56px;
    font-family: 'Alegreya';
    margin-top:0;
}

.our-dna .content-title {
    font-size: 1.5rem;
    color: #3E3D40;
    line-height: 1.5rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans';
    margin-bottom: 0.5rem;
}

.our-dna .subtitle {
    max-width: 406px;
    font-family: 'IBM Plex Sans';
    font-size: 1rem;
    line-height: 24px;
    color: #3E3D40;
    font-weight:400;
}

.our-dna .content-wrapper {
    border: 2px solid #ebebeb;
    background-color: #fff;
    padding: 30px;
    height:100%;
}

.our-dna .img-wrapper {
    max-width: 40px;
    margin-bottom: 0.5rem;
}

.our-dna .content-wrapper .subtitle {
    max-width: 422px;
    font-family: 'IBM Plex Sans';
    font-size: 1rem;
    line-height: 24px;
    color: #3E3D40;
    font-weight:400;
}

@media (min-width:600px) and (max-width:990px){
  .col-2-with-image .content-text{
    max-width: 100%;
  }
  .gallery{
    padding : 40px 0;
  }
}
@media (max-width:990px){
  .col-2-with-image.map-wrap{
    padding-top:60px;
    padding-bottom:60px;
  }
  
}
@media (min-width: 990px){
  .container.about-map {
    padding: 120px 0;
    z-index: 1;
    position: relative;
  }
  
  .our-dna .content-title {
    font-size:17px;
  }
  
  .our-dna.white{
    padding-top:120px;
    padding-bottom:120px;
  }
  
  #hs_cos_wrapper_widget_1700141910897 .gallery{
    padding-bottom:120px;
  }
  
  .timeline .timeline-wrap{
    margin-bottom:100px;
  }
  
  .col-2-with-image.map-wrap .content-text{
    margin-bottom:0px;
  }
}

@media (min-width:1300px){
  .our-dna .content-title {
    font-size:18px;
  }
}

@media (min-width:1400px){
  .our-dna .content-title {
    font-size:20px;
  }
}

@media (min-width:1500px){
  .our-dna .content-title {
    font-size:24px;
  }
}

@media (min-width:1700px){
    .container.about-map{
        padding: 160px 0;
    }
  
    .our-dna.white{
      padding-top:160px;
      padding-bottom:160px;
    }
  
    #hs_cos_wrapper_widget_1700141910897 .gallery{
      padding-bottom:160px;
    }
}

@media (min-width:1700px) {
    .advantage.with-right-image .card-title a{
        font-size: 32px;
        margin: 0;
    }
  
    .col-2-with-image.map-wrap .image-right{
        width:65%;
    }
}


@media (min-width: 1700px){
    .grid2cols-overlapcta.about .content p {
        margin-bottom: 10px;
    }
}

@media all and (min-width:1920px){
  .icon-about-box,
  .timeline{
    padding-top:160px;
    padding-bottom:160px;
  }
}

/*mobile*/
@media (max-width:992px){
  .icon-about-box{
      padding-top: 60px;
      padding-bottom: 60px;
  }
  
  .grid-3-cols.icon-about-box .grid{
    gap:0;
  }
  
  .icon-about-box .container{
    padding:0;
  }
  
  .icon-about-box .icon-box-wrap{
    padding:24px;
    border-bottom:1px solid #EBEBEB;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    gap:34px;
  }
  
  .icon-about-box .icon-box-wrap:first-child{
    padding-top:0px;
  }
  
  .icon-about-box .icon-box-wrap:last-child{
    padding-bottom:0px;
  }
  
  .icon-about-box .icon-box-wrap:last-child{
    border-bottom:none;
  }
  
  .icon-about-box .content-wrap{
    flex-direction:row;
    align-items:center;
    gap:6px;
  }
  
  .icon-about-box .image-wrap{
    min-width:56px;
    min-height:56px;
    max-width:56px;
    max-height:56px;
    border-radius:50%;
    background-color:#F5F5F5;
    padding:19px 13px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  .icon-about-box .image-wrap img{
    width:100%;
    height:100%;
    max-height: 20px;
    object-fit:contain;
  }
  
  .icon-about-box .number{
    margin-bottom:0;
    font-size:20px;
    letter-spacing:0;
  }
  
  .icon-about-box .content-text{
    font-size:14px;
    line-height:1;
  }
  
/*  Our DNA  */
  .our-dna .inline-title .title {
      font-size:24px;
      margin-bottom:16px;
    line-height:1.2;
  }
  
  .our-dna .inline-title{
    padding:0 calc(var(--bs-gutter-x)*.5);
  }
  
  .our-dna .content-wrapper .content-title{
    font-size:16px;
  }
  
  .our-dna .content-wrapper .content-title.bigger-mobile{
    font-size:18px;
  }
  
  .our-dna .container .content-wrapper .subtitle,
  .our-dna .inline-title .subtitle{
    max-width:100%;
    font-size:14px;
    margin-bottom:0;
  }
  
  .our-dna .container .content-wrapper{
    padding:23px;
    width:100%;
  }
  
  .our-dna .content-text{
    margin-bottom:0;  
  }
  
  /* Timeline History */
  .timeline{
    padding-top:60px;
    padding-bottom:60px;
  }
  
  .timeline .timeline-wrap{
      grid-template-columns: repeat(1, minmax(0, 1fr));
      margin-bottom: 0px;
      gap:40px;
  }
  .timeline .line{
    width: 0px;
    border-right: 3px solid #07a19f;
    height: 100%;
    top:10px;
  }
  
  .timeline .line:after, 
  .timeline .line:before{
    display:none;
  }
  
  .timeline .text-container{
    max-width: 100%;
    text-align: left;
    padding-left: 40px;
    font-size:14px;
  }
  
  .timeline .timeline-card:before,
  .timeline .timeline-card:nth-child(odd):before{
    left:0;
    height: 3px;
    width: 27px;
    bottom: auto;
    top: 10px;
  }
  
  .timeline .timeline-card:nth-child(odd){
    transform:none;
  }
  
/*  map image  */
  .col-2-with-image.map-wrap .image-right{
      position:relative;
      width:100%;
  }
  
  .col-2-with-image.map-wrap .about-map{
    padding:24px;
    padding-bottom:0;
  }
  
  .col-2-with-image.map-wrap .content-text{
    margin-bottom:0;
  }
/*   Gallery */
  .gallery .gallery-wrap.hideMobile{
    display:none;
  }
  
  .gallery .gallery-wrap.mobile-only{
    display:grid;
  }
  
  .gallery .gallery-wrap.type-1{
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
  }
  
  .gallery .gallery-wrap.type-2{
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 6px;
  }
  
/*  Our DNA white  */
  .our-dna.white{
    padding-top: 60px;
    background: #ffffff;
    padding-bottom:60px;
  }
  .our-dna.white .d-flex{
    flex-direction: column;
  }
  .our-dna.white .left-content{
    width: 100%;
  }
  .our-dna.white .grid{
    grid-template-columns: 1fr;
    width: 100%;
  }
  .our-dna.white .content-wrap{
    padding: 15px 23px;
    width: 100%;
  }
  
  .our-dna.white .card .subtitle{
    display: none;
  }
  
  .our-dna.white .card{
    width: 100%;
  }
  
  .our-dna.white .card:before, 
  .our-dna.white .card:after{
    opacity: 1;
    border-image: linear-gradient(111deg, #07A19F 0%, #1D1A39 100%);
    border-image-slice: 1;
    border-image-width: 1px;
    border-image-outset: 0;
    border-image-repeat: stretch;
  }
  
  .our-dna.white .desc-wrapper{
    padding:0;
  }
  
  .our-dna.white .title{
    font-size:24px;
    line-height:1.2;
    margin-bottom:8px;
    margin-top:0;
  }
  
  .industry-logo .logo-container:not(:last-child){
    margin-bottom:0px;
  }
  
  #hs_cos_wrapper_widget_1700141910897 .gallery{
    padding-bottom:60px;
  }
  
  #hs_cos_wrapper_widget_1700139946142 .col-2-with-image{
    padding-top:0px;
  }
  
  #hs_cos_wrapper_widget_1700142432258 .logo-wrapper {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    min-height: 40px;
    height:80px;
    justify-content:center;
  }
}

/*tablet style*/
@media (min-width:600px) and (max-width:1024px){
  .timeline .timeline-wrap{
    margin-bottom:10px;
  }
  
  .grid-3-cols.icon-about-box .grid{
    grid-template-columns:repeat(3, 1fr);
  }
  
  .icon-about-box .icon-box-wrap{
    align-items: center;
    border-bottom: none;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    padding: 24px;
    padding-top:0px;
    padding-bottom:0px;
  }
  
  .icon-about-box .image-wrap{
    align-items: center;
    background-color: unset;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    max-height: unset;
    max-width: unset;
    min-height: unset;
    min-width: unset;
    padding: 19px 13px;
  }
  
  .icon-about-box .image-wrap img{
    max-height:40px;
  }
  
  .icon-about-box .content-wrap{
    flex-direction:column;
  }
  
  .icon-about-box .number{
    font-size:24px;
  }
  
  #hs_cos_wrapper_widget_1700141910897 .gallery{
    padding-top:0px;
  }
  
  #hs_cos_wrapper_widget_1700142432258 .logo-wrapper{
    height:80px;
    justify-content:center;
  }
}
.video-single {
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 120px;
}

.video-single h2 {
    font-size: 48px;
    line-height: 56px;
    font-family: 'Alegreya';
  font-weight:500;
}

.video-single .video-wrapper .video-container {
    position: relative;
    cursor: pointer;
}

.video-single video.source-video.srVideo {
    width: 100%;
}

.video-single .video-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-single .video-overlay img {
    width: 100%;
    height:100%;
}


.video-single .video-wrapper video {
    width: 100%;
}

.people-logo {
    padding-bottom: 60px;
    padding-top: 60px;
    background-color: #fff;
}

.people-logo .logo-container {
    gap: 40px;
}

.people-logo .logo-container:not(:last-child) {
    margin-bottom: 60px;
}

.people-logo .content {
    margin-bottom: 2rem;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
}

.people-logo .cta-button {
    margin-bottom: 30px;
    background-color: #1D1A39;
}

.people-logo .title {
    font-family: 'Alegreya';
    font-size: 3rem;
    margin-top: 0;
    /* max-width: 400px; */
    color: #1D1A39;
}

.people-logo .logo-wrapper {
    margin: 0 auto;
}

.people-logo .logo-wrapper img {
    width: 100%;
    filter: grayscale(100%);
}

.people-logo p {
    width: 100%;
    max-width: 400px;
    color: #3E3D40;
    letter-spacing: 0.48px;
    line-height: 1.5;
}

@media (min-width:1200px){
  .people-logo {
    padding-top: 120px;
    padding-bottom:120px;
  }
}

.our-dna {
    background-color: #F5F5F5;
    padding-top: 120px;
    padding-bottom: 120px;
}

.our-dna .title {
    margin-bottom: 2rem;
    margin-top: -26px;
    font-size: 3rem;
    line-height: 56px;
    font-family: 'Alegreya';
}

.our-dna .content-title {
    font-size: 1.5rem;
    color: #3E3D40;
    line-height: 1.5rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans';
    margin-bottom: 0.5rem;
}

@media (min-width: 990px){
  .our-dna .content-title {
    font-size:24px;
    min-height:48px;
    margin-bottom:16px;
  }
}

@media (min-width:1400px){
  .our-dna .content-title {
    font-size:24px;
  }
}

@media (min-width:1500px){
  .our-dna .content-title {
    font-size:24px;
    min-height:30px;
  }
}

@media (min-width:1920px){
  .our-dna .content-title {
    min-height:48px;
  }
}



.our-dna .subtitle {
    max-width: 406px;
    font-family: 'IBM Plex Sans';
    font-size: 1rem;
    line-height: 24px;
    color: #3E3D40;
}

.our-dna .content-wrapper {
    background-color: #fff;
    padding: 30px;
}

.our-dna .img-wrapper {
    max-width: 40px;
    margin-bottom: 0.5rem;
}

.our-dna .content-wrapper .subtitle {
    max-width: 422px;
    font-family: 'IBM Plex Sans';
    font-size: 1rem;
    line-height: 24px;
    color: #3E3D40;
}


.vacancy-list .floating-banner .small-title {
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
}

.two-cols-cta {
    background-color: #F5F5F5;
    padding-top: 60px;
    padding-bottom: 120px;
}

@media (min-width:992px){
  .two-cols-cta {
    padding-top:120px;
  }
}

@media (min-width:1700px){
  .two-cols-cta {
    padding-top:160px;
    padding-bottom:160px;
  }
}

.two-cols-cta .cta-wrap {
    background-color: #fff;
}

.two-cols-cta .content-wrap {
    padding: 15px 30px;
}

.two-cols-cta .title {
    margin-bottom: 2rem;
    font-size: 3rem;
    line-height: 56px;
    font-family: 'Alegreya';
}

.two-cols-cta .subtitle {
    max-width: 640px;
    font-family: 'IBM Plex Sans';
    font-size: 1rem;
    line-height: 24px;
    color: #3E3D40;
    font-weight:400;
}

.two-cols-cta .cta-button {
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: #1D1A39;
}

.two-cols-cta .col-12 {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

@media all and (min-width:1400px) {
    .two-cols-cta .col-12 {
        margin: inherit;
    }
}

@media all and (min-width:1600px) {
    .two-cols-cta .content-wrap {
        padding: 15px 120px;
    }

    .people-logo {
        padding-top: 120px;
        padding-bottom:120px;
    }
}

.two-cols-cta .col-12 .img {
    flex: 1;
    max-width: 100%;
    height: auto;
    display:block;
}

.vacancy-list {
    background-color: #F5F5F5;
    padding-top: 60px;
    padding-bottom: 120px;
}

.vacancy-list .floating-banner .img-overlay {
    position: absolute;
    width: 100%;
    height: 120px;
    z-index: 0;
    left: 0;
    top: 0;
}

.vacancy-list .floating-banner {
    max-width: 100%;
    margin-top: 16px;
    padding: 30px;
    position: relative;
    margin-bottom: -115px;
    /* margin-top: -115px; */
    z-index: 2;
}

.vacancy-list .title {
    font-size: 3rem;
    line-height: 56px;
    font-family: 'Alegreya';
    color: #3E3D40;
    font-weight:500;
}

.vacancy-list .vacancy-item {
    padding: 1.5rem;
    margin: 0.5rem 0;
    background-color: #fff;
}

.vacancy-item .vacancy-title {
    text-decoration: underline;
    color: #07A19F;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.vacancy-item p {
    margin: 0.5rem 0;
    color: #A2999E;
    font-size: 1rem;
    line-height: 1.5rem;
}

.vacancy-item .vacancy-tags {
    margin-right: 0.5rem;
}

.vacancy-list .cta-button {
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #07A19F;
}

.two-cols-quote {
    background-color: #F5F5F5;
    padding-top: 60px;
    padding-bottom: 120px;
}

.two-cols-quote .cta-wrap {
    background-color: #fff;
}

.two-cols-quote .content-wrap {
    padding: 15px 30px;
    position: relative;
    z-index: 1;
}

.two-cols-quote .title {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 2.5rem;
    font-family: 'Alegreya';
    color:#1D1A39;
}

.two-cols-quote .subtitle {
    word-break: break-word;
    margin: 0.75rem 0;
    max-width: 510px;
    font-family: 'IBM Plex Sans';
    font-size: 1rem;
    line-height: 24px;
    color: #3E3D40;
}

.two-cols-quote .cta-button {
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: #1D1A39;
}

.two-cols-quote .person-wrap {
    position: relative;
    align-self: flex-end;
}

.two-cols-quote .col-12 {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

@media all and (min-width:1400px) {
    .two-cols-quote .col-12 {
        margin: inherit;
    }
}

@media all and (min-width:1600px) {
    .two-cols-quote .content-wrap {
        padding: 15px 120px;
    }
}

.two-cols-quote .col-12 .img {
    flex: 1;
    max-width: 100%;
    height: auto;
}

.two-cols-quote .person-bio {
    width: max-content;
    position: absolute;
    top: -120px;
    right: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    padding: 16px;
}

.two-cols-quote .double-quote {
    position: relative;
    z-index: -1;
    float: right;
    margin-top: -30px;
}

@media (min-width:600px) and (max-width:992px){
  .our-dna .subtitle {
    max-width: 100%;
  }
}

@media all and (max-width:992px){
  .our-dna .subtitle{
    font-size:14px;
  }
  
  .our-dna{
    padding-bottom:60px;
    padding-top:60px;
  }
  
/*  Video single  */
  .video-single{
    padding-top:60px;
    padding-bottom:60px;
  }
  
  .video-single h2 {
    font-size: 24px;
    line-height: 40px;
    margin-bottom:11px;
  }
  
  /* People logo */
    .people-logo .title{
        font-size: 24px;
    }

    .people-logo .content{
        font-size: 14px;
        max-width:100%;
    }

    .people-logo .logo-wrap{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        margin-top: 42px;
    }
  
    .people-logo .logo-wrap img{
        max-width: 100%;
        max-height:60px;
    }
  
    .people-logo .logo-container{
      gap:80px;
    }
  
    .people-logo .logo-container:not(:last-child){
      margin-bottom:0;
    }
  
    .people-logo{
        padding-top: 60px;
        padding-bottom: 60px;
    }
  
/*  two cols text with image  */
  .two-cols-cta{
    padding-bottom:60px;
  }
  
  .two-cols-cta .cta-wrap{
    background-color:#f5f5f5;
  }
  
  .two-cols-cta .content-wrap{
    padding:0;
    margin-bottom:80px;
    width: 100%;
  }
  
  .hs-content-id-163719816849 .two-cols-cta .content-wrap{
    margin-bottom:0px;
  }
  
  .two-cols-cta .title{
    font-size:24px;
    margin: 0;
  }
  
  .two-cols-cta .subtitle{
    font-size:14px;
    max-width:100%;
  }
  
  .two-cols-cta .cta-button{
    margin:0;
  }
  
/*  Vacancy List  */
  .vacancy-list .title{
    font-size:24px;
    line-height:1.2;
    margin-bottom:30px;
    margin-top:0;
    padding-left:24px;
    padding-right:24px;
  }
  
  .vacancy-list .container{
    padding:0;
  }
  
  .vacancy-list .container > .row{
    padding-left:24px;
    padding-right:24px;
    margin-left:0;
    margin-right:0;
  }
  
  .vacancy-list .container > .row > .col-12{
    padding-left:0;
    padding-right:0;
  }
  
  .vacancy-list .vacancy-item{
    padding:14px;
  }
  
  .vacancy-item .vacancy-title{
    font-size:16px;
    
  }
  
  .vacancy-item p{
    font-size:14px;
  }
  
  .vacancy-list .floating-banner{
    margin-top:80px;
  }
  
  .vacancy-list .floating-banner .img-overlay{
    height:100%;
  }
  
  .vacancy-list .floating-banner .small-title{
    font-size:24px;
  }
  
  .vacancy-list .floating-banner .cta-button{
    margin:0;
  }
}

@media all and (max-width:500px){
    .people-logo .logo-wrap img{
        max-width: 200px;
    }
}

/*tablet*/
@media (min-width:600px) and (max-width:992px){
  #hs_cos_wrapper_module_16998447452744 .people-logo .logo-wrap .logo-container .logo-wrapper{
    min-height:50px !important;
  }
  
  #hs_cos_wrapper_module_16998447452744 .people-logo .logo-wrap img{
    max-height:50px !important;
  }
}

@media (min-width:1920px){
  .people-logo,
  .our-dna,
  .video-single{
    padding-top:160px;
    padding-bottom:160px;
  }

}
.grid-3-cols.featured-cases {
  padding-top: 0;
  margin-top: -120px;
}

.grid-3-cols.featured-cases .wrap-title {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #A4A3AF;
  margin-bottom: 24px;
}

.grid-3-cols.featured-cases .post-wrap {
  display: flex;
  flex-direction: column;
}

.grid-3-cols.featured-cases .brand-icon {
  max-height: 18px;
  filter: invert(86%) sepia(4%) saturate(4%) hue-rotate(59deg) brightness(92%) contrast(94%);
}

/*case overview*/
.cases-overview {
  background-color: #F5F5F5;
  padding-top: 0px;
}

.cases-overview h2 {
  font-family: var(--font-alegreya);
  color: #1D1A39;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}

.cases-overview fieldset {
  border: unset;
  width: 100%;
  padding: 0;
}

.cases-overview fieldset input,
.cases-overview fieldset select {
  display: block;
  width: 100%;
}

.cases-overview .reset-filter {
  color: #1D1A39;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 8px;
}

.cases-overview .reset-filter i {
  text-decoration: none;
}

.cases-overview .form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #1D1A39;
  font-size: 16px;
  font-weight: 500;
}

.cases-overview .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1D1A39;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #A4A3AF;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.cases-overview .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1D1A39;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #A4A3AF;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cases-overview .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.cases-overview .input-group>.form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.cases-overview .input-group .btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid #A4A3AF;
  border-left: unset;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
  position: relative;
}

.card-cases{
  display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.cases-overview .card-cases .card-img {
  display: block;
  width: 100%;
  height:100%;
  max-height: 330px;
  object-fit: cover;
}

.cases-overview .card-cases a {
  text-decoration: none;
  position:relative;
}

.cases-overview .card-cases .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1D1A39;
  margin-top: 0;
  margin-bottom: 16px;
}

.cases-overview .card-cases p {
  font-size: 16px;
  font-weight: 400;
  color: #3E3D40;
  margin-bottom: 16px;
}

.cases-overview .card-cases .card-body {
  padding: 16px;
  background-color: #FFFFFF;
  height:100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  flex:1;
}

.cases-overview .card-cases .brand-icon{
  max-height: 18px;
  filter: invert(86%) sepia(4%) saturate(4%) hue-rotate(59deg) brightness(92%) contrast(94%);
}

.cases-overview .card-cases .card-link {
  color: #07A19F;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.42px;
  line-height: 1.71;
  font-weight: 500;
}

.cases-overview .card-cases .card-link .icon {
  transition: .3s ease-out;
  display: inline-block;
}

.cases-overview .card-cases .card-link:hover .icon {
  transform: translateX(4px);
}

.no-result{
  font-family: var(--font-alegreya);
  font-size: 40px;
  font-weight: 500;
  color: #A2999E;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.qoutegrid.fullwidth .qoutegrid-wrap{
  max-width: 100%;
}

/*case detail*/

.grid-3-cols.featured-list{
  padding-top: 0;
  margin-top: -80px;
}

.grid-3-cols.featured-list ul{
  padding-left: 16px;
  margin-bottom:0px;
}

.grid-3-cols.featured-list ul li{
  margin-bottom: 8px;
}

.grid-3-cols.featured-list .post-wrap {
  display: flex;
  flex-direction: column;
}

.grid-3-cols.related-cases .case-image{
  display: block;
  width: 100%;
  height:100%;
  max-height: 330px;
  object-fit: cover;
}

.grid-3-cols.related-cases .brand-icon{
  max-height: 18px;
  width:64px;
}

.grid-3-cols.related-cases .brand-icon{
  filter: invert(86%) sepia(4%) saturate(4%) hue-rotate(59deg) brightness(92%) contrast(94%);
}

.grid-3-cols.related-cases .post-wrap{
  display: flex;
  flex-direction: column;
}

.grid-3-cols.related-cases .card .content-wrap{
  padding: 24px;
}

.grid2cols-case-detail{
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}

.grid2cols-case-detail .video-wrapper{
  max-width: 675px;
  margin-left: auto;
}

.grid2cols-case-detail .video-container{
  position: relative;
  cursor: pointer;
}

.grid2cols-case-detail .video-wrapper video{
  width: 100%;
  aspect-ratio: 16/9;
}

.grid2cols-case-detail .video-overlay{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.grid2cols-case-detail .video-overlay img{
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.grid2cols-case-detail h2{
  font-family: var(--font-alegreya);
  font-size: 32px;
  font-weight: 500;
  color: #1D1A39;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 24px;
}

.grid2cols-case-detail h3{
  font-family: var(--font-alegreya);
  font-size: 24px;
  font-weight: 500;
  color: #1D1A39;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 24px;
}

.grid2cols-case-detail p{
  font-size: 16px;
  font-weight: 400;
  color: #3E3D40;
  line-height: 1.5;
  margin-bottom: 16px;
}

.grid2cols-case-detail p:last-child{
  margin-bottom:0px;
}

.grid2cols-case-detail .media img{
  display: block;
  width: 100%;
  object-fit: cover;
  max-width: 674px;
}

.grid2cols-case-detail .image-bottom{
  margin-bottom: -240px;
}

.grid2cols-case-detail .media img.w-full{
  width: 100%;
}

.first-grid-row{
  padding-top: 0 !important;
}

#hs_cos_wrapper_widget_1697473612950 .col-with-video p:last-child{
  margin-bottom:0px;
}

@media (min-width:992px) {
  .grid-3-cols.featured-cases {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .grid-3-cols.featured-cases .post-wrap {
    display: grid;
  }

  .cases-overview h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .cases-overview .card-cases .card-title {
    font-size: 17px;
  }
  
  .cases-overview .card-cases .card-img {
    height:230px;
  }
  
  .cases-overview .dnd-section .dnd-column{
    padding: 0px;
  }

  .no-result{
    font-size: 56px;
  }

  /*case detail*/
  .grid-3-cols.featured-list .post-wrap {
    display: grid;
  }
  
  .grid-3-cols.featured-list .card .content-wrap{
    justify-content: flex-start;
  }

  .grid-3-cols.related-cases .post-wrap{
    display: grid;
/*     display: flex;
    flex-direction: row; */
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
  }
  
  .grid-3-cols.related-cases .card .excerpt{
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 5; /* number of lines to show */
           line-clamp: 5; 
   -webkit-box-orient: vertical;
  }
  
/*   .grid-3-cols.related-cases .post-wrap div{
    flex: 1;
  } */

  /* .grid2cols-case-detail p{
    margin-bottom: 24px;
  } */

  .grid2cols-case-detail .media img{
    width: auto;
    max-width:100%;
  }
  
  .grid-3-cols.related-cases .link-cta{
    margin-top: auto;
  }
  
  .grid-3-cols.related-cases .card .title{
    font-size:17px;
  }
}

@media all and (min-width:993px) and (max-width:1200px){
    .grid2cols-case-detail .media img{
      height:auto;
    }
  
}

@media (min-width:1400px){
  .cases-overview .card-cases .card-title {
    font-size:17px;
  }
  
  .grid-3-cols.related-cases .card .title{
    font-size:17px;
  }
}

@media (min-width:1500px){
  .cases-overview .card-cases .card-title {
    font-size:20px;
  }
  
  .grid-3-cols.related-cases .card .title{
    font-size:20px;
  }
}

@media (min-width:1700px) {
  .grid-3-cols.featured-cases {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .cases-overview h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }
  
  .cases-overview .card-cases .card-title {
    font-size: 20px;
  }

  .cases-overview .card-cases .card-body {
    padding: 24px 35px;
  }

  .cases-overview .row-filter {
    margin-bottom: 40px;
  }
  
  .cases-overview .card-cases .card-img {
    height:330px;
  }

  .no-result{
    font-size: 64px;
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .qoutegrid.fullwidth .text-wrap{
    padding-top: 118px;
    padding-left: 138px;
    padding-bottom: 140px;
    padding-right: 146px;
  }

  /*case detail*/
  .grid-3-cols.related-cases .card .content-wrap{
    padding: 40px;
  }

  .grid2cols-case-detail h2{
    font-size: 48px;
    margin-bottom: 40px;
  }

  .grid2cols-case-detail h3{
    font-size: 32px;
    margin-bottom: 24px;
  }

  .grid2cols-case-detail p{
    margin-bottom: 40px;
  }

  .grid2cols-case-detail{
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .grid-3-cols.featured-list ul{
    font-size: 18px;
  }

  .grid-3-cols.featured-list ul li{
    font-size: 18px;
  }
}

@media (min-width:1920px){
  .cases-overview .card-cases .card-title {
    font-size:24px;
  }
  
  .grid-3-cols.related-cases .card .title{
    font-size:24px;
  }
  
  .grid2cols-case-detail,
  .qoutegrid.bg-grey.with-banner{
    padding-top:160px;
    padding-bottom:160px;
  }
  
  .qoutegrid.bg-grey{
    padding-top:160px;
    padding-bottom:160px;
  }
  
  #hs_cos_wrapper_related_cases .grid-3-cols.related-cases .card .content-wrap{
    padding-bottom:0px;
  }
  
}

/*mobile style*/
@media (max-width:992px){
  .card-cases{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .cases-overview{
    padding-top:0px;
  }
  
  .cases-overview .card-cases .card-img{
    width: 100%;
    height: 100%;
  }
  .cases-overview .card-cases .card-body{
    padding: 8px 16px;
  }
  .cases-overview .card-cases .brand-icon{
    max-height: 12px;
    margin-bottom: 4px;
  }
  .cases-overview .card-cases .card-title{
    font-size: 16px;
    margin-bottom: 8px;
  }
  .cases-overview .card-cases p{
    font-size:14px;
  }
  .cases-overview .card-cases .card-link{
    font-size: 14px;
    font-weight: 400;
  }

  .cases-overview .row-filter {
    display: none;
  }

  .grid-3-cols.featured-cases{
    margin-top: -80px;
    background-color: #FFFFFF;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-3-cols.featured-cases .wrap-title{
    font-size: 24px;
    color: #04002B;
    margin-bottom: 16px;
    line-height: normal;
  }

  .grid-3-cols.featured-cases .card{
    width: 100%;
    position: relative;
  }
  .grid-3-cols.featured-cases .content-wrap{
    padding: 15px 23px;
    width: 100%;
  }
  
  .grid-3-cols.featured-cases .card .excerpt{
    display:none;
  }

  .grid-3-cols.featured-cases .card:before, .grid-3-cols.featured-cases .card:after {
    content: "";
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease-out;
  }

  .grid-3-cols.featured-cases .card:before, .grid-3-cols.featured-cases .card:after {
    opacity: 1;
    border-image: linear-gradient(111deg, #07A19F 0%, #1D1A39 100%);
    border-image-slice: 1;
    border-image-width: 1px;
    border-image-outset: 0;
    border-image-repeat: stretch;
  }

  .grid-3-cols.featured-cases .brand-icon{
    display: none;
  }

  .grid-3-cols.featured-cases .link-cta{
    font-weight: 400;
  }
  
  .grid-3-cols.related-cases{
    padding-top:80px;
    padding-bottom:0px;
  }
  
  .grid-3-cols.related-cases .card{
    display:flex;
    flex-direction:row;
    align-items: stretch;
    width:100%;
  }
  
  .grid-3-cols.related-cases .case-image{
    width:127px;
    height:100%;
    display:block;
    object-fit:cover;
  }
  
  .grid-3-cols.related-cases .card .content-wrap{
    padding:8px 16px;
  }
  
  .grid-3-cols.related-cases .card .excerpt{
    display:none;
  }
  
  .grid-3-cols.related-cases .brand-icon{
    display:none;
  }
  
  .grid2cols-case-detail{
    padding-top:60px;
    padding-bottom:60px;
  }
  
  .grid2cols-case-detail .media img{
    object-position:top;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .grid2cols-case-detail p{
    font-size:14px;
    line-height:1.5;
  }
  
  .grid2cols-case-detail h3{
    margin-bottom:16px;
  }
  
  .grid2cols-case-detail .media{
    overflow:hidden;
    max-width:100%;
  }
  
  .grid2cols-case-detail.bg-grey.content-text-left:first-child .row{
    flex-direction:column-reverse;
  }
  
  .grid2cols-case-detail h2{
    font-size:24px;
    margin-bottom:24px;
  }
  
  .grid-3-cols.featured-list{
    padding-bottom:0px;
    margin-top:0;
    background-color:#f2f2f2;
  }
  
  .grid-3-cols.featured-list .card{
    background-color:unset;
  }
  
  .grid-3-cols.featured-list .content-wrap{
    padding:0;
  }
  
  .grid-3-cols.featured-list ul li{
    margin-bottom:0px;
    font-size:14px;
  }
  
  .header-case-detail .wrapper{
    padding-top:40px;
  }
  
  .header-case-detail .title{
    margin-top:0;
    margin-bottom:0;
    color:#ffffff;
  }
  
  .header-case-detail .subtitle{
    margin-bottom:0;
  }
  
  .header-case-detail .cta-button{
    display:none;
  }
  
  .no-result{
    margin-top:-40px;
  }
  
  .qoutegrid.bg-grey.with-banner{
    padding-bottom:60px;
    padding-top:60px;
  }
  
  .grid2cols-case-detail.content-text-left .col-12.col-lg-6.mb-4.mb-lg-0:last-child{
    margin-bottom:0px;
  }
  
  .qoutegrid.bg-grey{
    background-color:#f5f5f5;
  }
  
  #hs_cos_wrapper_related_cases .grid-3-cols{
    padding-top:60px;
    padding-bottom:60px;
  }
  
}

@media (max-width:767px){
  .case-post-container .header-partners .bg-image, .case-post-container .header-partners .bg-overlay{
    height: 100%;
    min-height: 100%;
  }
  
  .case-post-container .grid-3-cols.featured-list {
    padding-top: 60px;
    padding-bottom:60px
  }
}

/*tablet*/
@media (min-width:767px) and (max-width:992px){
  .cases-overview .card-cases .card-img{
    height:200px;
  }
  
  .cases-overview{
    padding-top:0px;
  }
  
  #hs_cos_wrapper_widget_1702298861755 .header-solutions.header-cases .wrapper{
    padding-bottom:0px;
  }
  
   .case-post-container .grid-3-cols.featured-list {
    padding-top: 60px;
    padding-bottom:60px
  }
  
/*   .hs-blog-id-149387766821 .header.header-solutions.header-partners .wrapper{
    padding-bottom:0px;
    padding-top:100px;
  } */
  
/*   .hs-blog-id-149387766821 .header.header-solutions.header-partners .banner-wrap{
    padding-bottom:20px;
  } */
  
  .body-wrapper.hs-content-id-149387766822.hs-blog-listing.hs-blog-id-149387766821 .dnd_area-row-0-padding{
    padding-top:60px !important;
  }
}
/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
.partners-cols .subtitle{
    font-weight: bold;
}

#hs_cos_wrapper_widget_1699933627680 .grid-3-cols.partner.bg-grey .link-cta{
  margin-top:16px;
}

#hs_cos_wrapper_widget_1699933627680 .grid-3-cols.partner.bg-grey .card.featured .content-wrap span{
  color:#ffffff;
}

@media (min-width:992px){
/*     .header-partners .wrapper{
        padding-bottom: 165px;
    } */

    .grid-3-cols.partners-cols{
        padding-top: 0;
        margin-top: -40px;
    }
  
    .grid-3-cols.partners-cols .card {
      align-items: stretch;
    }
  
    .grid-3-cols.partners-cols .card .content-wrap {
      justify-content: unset;  
    } 
  
    .grid-3-cols.partners-cols .link-cta {
      margin-top: auto;
    }
}

@media (max-width:992px){
  .header-partners .wrapper{
    padding-top:60px;
    padding-bottom:60px;
  }
  
  .header-partners .bg-image, .header-partners .bg-overlay{
    min-height:296px;
    height:296px;
  }
  
  .header-partners .title{
    color:#ffffff;
  }
  
  .header-partners .content-text{
    margin-top:140px;
  }
  
  .grid-3-cols.partners-cols{
    margin-top:-100px;
  }
  
  .grid-3-cols.partners-cols .card .content-wrap{
    padding:16px;
    width:100%;
  }
  
  .grid-3-cols.partners-cols .card .title{
    margin-bottom:0;
  }
  
  .grid-3-cols.partners-cols .subtitle{
    display:none;
  }
  
  .grid-3-cols.partners-cols .card .excerpt{
    display:none;
  }
  
  .grid-3-cols.partners-cols .link-cta{
    display:none;
  }
  
  .grid-3-cols.partners-cols .card.featured img{
    display:none;
  }
  
  .grid-3-cols.partners-cols .card.featured .title{
    color:#1D1A39;
  }
  
  .grid-3-cols.partners-cols .card .content-wrap::after {
    content: "\f054";
    font-family: "font awesome 6 free";
    font-weight: 600;
    font-size: 14px;
    right: 16px;
    position: absolute;
    bottom: 16px;
  }
}

/*tablet style*/
@media (min-width:767px) and (max-width:992px){
  .header-partners .content-text{
    margin-top: 160px;
  }
}
/*
header events
*/
.header-events .wrapper {
  height: auto;
}

.header-events .subtitle{
  margin-bottom: 0;
  font-size: 16px;
}

.header-events .title{
  margin-bottom: 16px;
}

.header-events .content-text{
  margin-bottom: 24px;
}

.header-events .event-datetime{
  display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 8px;
}

.header-events .event-location{
  margin-bottom: 30px;
}

.header-events .event-datetime span{
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
}

.header-events .event-location span{
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height:1.2;
}

/*
  events overview grid
  */
.events-overview {
  background-color: #F5F5F5;
  padding-top: 60px;
}

.events-overview h2 {
  color: #1D1A39;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}

.events-overview fieldset {
  border: unset;
  width: 100%;
  padding: 0;
}

.events-overview fieldset input,
.events-overview fieldset select {
  display: block;
  width: 100%;
}

.events-overview .reset-filter {
  color: #1D1A39;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  text-align: right;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.events-overview .reset-filter i {
  text-decoration: none;
}

.events-overview .form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #1D1A39;
  font-size: 16px;
  font-weight: 500;
}

.events-overview .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1D1A39;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #A4A3AF;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.events-overview .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1D1A39;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #A4A3AF;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.events-overview .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.events-overview .input-group>.form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.events-overview .input-group .btn {
  padding: 0.77rem 0.75rem;
  border: 1px solid #A4A3AF;
  border-left: unset;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
  position: relative;
}

.events-overview .card-event{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.events-overview .card-event .card-img {
  display: block;
  width: 100%;
  object-fit: cover;
  max-height: 330px;
  min-height:330px;
}

.events-overview .card-event a {
  text-decoration: none;
  position: relative;
}

.events-overview .card-event .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1D1A39;
  margin-top: 0;
  margin-bottom: 16px;
}

.events-overview .card-event p {
  font-size: 16px;
  font-weight: 400;
  color: #3E3D40;
  margin-bottom: 16px;
}

.events-overview .card-event .card-body {
  padding: 16px;
  background-color: #FFFFFF;
  flex-grow:1;
}

.events-overview .card-event .card-link {
  color: #07A19F;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.42px;
  line-height: 1.71;
  font-weight: 500;
}

.events-overview .card-event .card-link .icon {
  transition: .3s ease-out;
  display: inline-block;
}

.events-overview .card-event .card-link:hover .icon {
  transform: translateX(4px);
}

.events-overview .card-event .card-meta {
  display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 16px;
}

.events-overview .card-event .card-meta span{
  color: #A2999E;
  font-size: 16px;
  font-weight: 400;
}

.events-overview .card-event .card-label{
  background-color: #FFFFFF;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.events-overview .card-event .card-label span{
  color: #1D1A39;
  font-size: 16px;
  font-weight: bold;
}

.events-overview .card-event .card-label span.date{
  font-size: 24px;
}

@media (min-width:992px) {

  /*
  header events
  */
  .header-events .wrapper {
    padding-top: 120px;
    padding-bottom:120px;
    height: auto;
  }

  .header-events .content{
    max-width: 700px;
  }

  .header-events .title{
    font-size: 48px;
    margin-bottom: 16px;
  }

  .header-events .subtitle {
    font-size: 16px;
    margin-bottom: 0;
  }

  .header-events .content-text{
    font-size: 18px;
    margin-bottom: 24px;
  }

  .header-events .event-datetime span{
    font-size: 18px;
  }
  
  .header-events .event-location span{
    font-size: 18px;
  }

  /*
    events overview grid
    */
  .events-overview {
    padding-top: 80px;
  }

  .events-overview h2 {
    font-size: 48px;
    margin-bottom: 24px;
  }

  .events-overview .card-event .card-title {
    font-size: 14px;
    min-height:40px;
  }

  .events-overview .card-event .card-meta span{
    font-size: 14px;
  }
  
  .events-overview .card-event .card-meta span.location{
    min-height:35px;
  }
  
  .events-overview .card-event .card-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

}

@media (min-width:993px) and (max-width:1199px){
  .events-overview .card-event .card-title{
    font-size:14px;
  }
  
  .events-overview .card-event .text-excerpt{
    font-size:14px;
  }
  
  .events-overview .card-event p{
    font-size:14px;
  }
  
  .events-overview .card-event .card-link{
    font-size:14px;
  }
  
  .events-overview .card-event .card-meta span{
    font-size:13px;
  }
  
  .events-overview .card-event .card-meta{
    margin-bottom:8px;
  }
}

@media (min-width:1200px){
  .events-overview .card-event .card-title {
    font-size: 17px;
    min-height:48px;
  }
}

@media (min-width:1280px){
  .events-overview .card-event .card-title {
    font-size: 15px;
    min-height:35px;
  }

  .events-overview .card-event .card-meta span{
    font-size: 12px;
  }
  
  .events-overview .card-event .card-meta span.location{
    min-height:35px;
  }
}

@media (min-width:1300px){
  .events-overview .card-event .card-title {
    font-size: 17px;
    min-height:50px;
  }

  .events-overview .card-event .card-meta span{
    font-size: 13px;
  }
  
  .events-overview .card-event .card-meta span.location{
    min-height:38px;
  }
}

@media (min-width:1400px){
  .events-overview .card-event .card-title {
    font-size: 18px;
    min-height:54px;
  }

  .events-overview .card-event .card-meta span{
    font-size: 15px;
  }
  
  .events-overview .card-event .card-meta span.location{
    min-height:40px;
  }
}

@media (min-width:1500px){
  .events-overview .card-event .card-title {
    font-size: 20px;
    min-height:60px;
  }

  .events-overview .card-event .card-meta span{
    font-size: 15px;
  }
  
  .events-overview .card-event .card-meta span.location{
    min-height:42px;
  }
}

@media (min-width:1700px) {

  /*
  header events
  */
  .header-events .title {
    font-size: 48px;
  }

  /*
    events overview grid
    */
  .events-overview h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .events-overview .card-event .card-body {
    padding: 24px 35px;
  }

  .events-overview .row-filter {
    margin-bottom: 40px;
  }
}

@media (min-width:1920px){
  .events-overview .card-event .card-title {
    font-size: 24px;
    min-height:70px;
  }

  .events-overview .card-event .card-meta span{
    font-size: 18px;
  }
  
  .events-overview .card-event .card-meta span.location{
    min-height:50px;
  }
  
  .header-events .wrapper{
    padding-top:160px;
    padding-bottom:160px;
  }
}

/*mobile style*/
@media (max-width:992px){
  .header-events{
    background-color:#f5f5f5;
  }
  .header-events .bg-image{
    min-height:160px;
    height:160px;
    position:relative;
    display:block;
  }
  
  .header-events .bg-overlay{
    min-height:160px;
    height:160px;
  }
  
  .header-events .header-row{
    padding-top:60px;
  }
  
  .header-events .subtitle{
    font-weight:500;
  }
  
  .header-events .title{
    color: #1D1A39;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
  }
  
  .header-events .content-text{
    color: #3E3D40;
    line-height:24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
  }
  
  .header-events .event-datetime span, .header-events .event-location span{
    color: #3E3D40;
    font-size: 14px;
    line-height:24px;
  }
  
  .header-events .event-datetime{
    margin-bottom:4px;
  }
  
  .events-overview .row-filter{
    display:none;
  }
  
  .truncate-mobile{
     -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
  }
  
  .events-overview .card-event{
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }
  
  .events-overview .card-event .card-img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:0;
  }
  
  .events-overview .card-event .card-label{
    width: 36px;
    height: 36px;
    top: 8px;
    left: 8px;
  }
  
  .events-overview .card-event .card-label span.date{
    font-size: 14px;
    line-height: normal;
  }
  
  .events-overview .card-event .card-label span.month{
    margin-top:-4px;
  }
  
  .events-overview .card-event .card-label span{
    font-size: 14px;
    line-height: normal;
  }
  
  .events-overview .card-event .card-title{
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .events-overview .card-event .card-meta{
    margin-bottom:8px;
  }
  
  .events-overview .card-event .card-meta span{
    font-size:14px;
  }
  
  .events-overview .card-event p{
    font-size:14px;
  }
  
  .events-overview .card-event .card-link{
    font-size:14px;
  }
}

@media (min-width:1024px) and (max-width:1400px){
  .header-solutions .wrapper,
  .header-events .wrapper{
    padding-top: 120px;
    }
}

@media all and (min-width:993px) and (max-width:1700px){
  .events-overview .card-event .card-img {
    max-height: 260px;
    min-height:260px;
  }
}
.related-cases.with-banner {
    padding-top:60px;
    padding-bottom:60px;
  }

.related-cases.with-banner .container{
      margin-top:60px;
  }

@media (max-width:991px){
  .related-cases.with-banner .container{
      margin-top: 150px;
  }
}
/* Landing page */
.twocols-img{
  padding-top:60px;
  padding-bottom:60px;
}

@media all and (min-width:992px){

  .related-cases.with-banner .container{
      margin-top:120px;
  }
  
  .related-cases.with-banner {
    padding-top:1px;
    padding-bottom:120px;
  }
  
  /* Landing page */
  .twocols-img{
    padding-top:120px;
    padding-bottom:120px;
  }
  
  section.twocols-img .overlap-bg{
    height: calc(100% - 240px);
  }
}

@media all and (min-width:1920px){

  .related-cases.with-banner .container{
      margin-top:160px;
  }
  
  .related-cases.with-banner {
    padding-top:1px;
    padding-bottom:160px;
  }
  
  /* Landing page */
  .twocols-img{
    padding-top:160px;
    padding-bottom:160px;
  }
  
  section.twocols-img .overlap-bg{
    height: calc(100% - 320px);
  }
}

@media (min-width:1100px) and (max-width:1500px){
  .grid-3-cols.related-cases .card .content-wrap{
    min-height:auto;
  }

  .grid-3-cols.partner .card .content-wrap{
    justify-content: stretch;
  }
}
/* Breadcrumbs style : Emixa request *Putu */
@media (min-width:992px){
  .header-solutions .breadcrumbs-wrapper{
    position: absolute;
    width: 100%;
    top: 10%;
    color: #fff;
  }
  
  .header-solutions .breadcrumbs-wrapper .hs-breadcrumb-menu-item a{
    color:#fff;
  }
  
  .breadcrumbs-wrapper{
    position: absolute;
    width: 100%;
    top: 10%;
    color: #fff;
  }
  
  .breadcrumbs-wrapper .hs-breadcrumb-menu-item a{
    color:#fff;
  }
  
  .header.blog .breadcrumbs-wrapper{
    z-index: 4;
  }
}

@media (min-width:1600px){
  .header-solutions .breadcrumbs-wrapper{
    top: 8%;
  }
  .breadcrumbs-wrapper{
    top: 8%;
  }
}

/* mobile style*/
@media (max-width:992px){
  .breadcrumbs-wrapper{
    position: absolute;
    width:100%;
  }
  
  .hs-breadcrumb-menu{
    overflow-x: scroll;
    padding: 0;
    white-space:nowrap;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  .hs-breadcrumb-menu::-webkit-scrollbar {
    display: none;
  }
  
  .hs-breadcrumb-menu-item{
    display:inline-block;
    float: unset;
    font-size: 14px;
    padding: 20px 0px 10px 10px
  }
  
  .hs-breadcrumb-menu-item a, .hs-breadcrumb-menu-item span{
    color:#fff;
  }
}
.header.header-bg-video .cta-button{
    padding: 14px 17px;
    background-color: #009F9D;
    border: 1.5px solid #009F9D;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;
    line-height: 1;
    font-family: var(--font-ibm);
    white-space: nowrap;
    border-radius: 8px;
    text-align: center;
}

.cta-button.border-gradient:before{
  border-radius:8px;
}

.header.header-bg-video  .cta-button.secondary{
  border: 1.5px solid #009F9D;
  background-color: transparent;
}

.header.header-bg-video .breadcrumbs-wrapper{
  position:relative;
  top:0;
  padding: 13px 0;
  color:#C6C5CD;
  font-weight:500;
}

.header.header-bg-video .breadcrumbs-wrapper a,
.header.header-bg-video .breadcrumbs-wrapper a ~ span{
  color:#C6C5CD;
  font-size:14px;
  text-decoration:none;
}

.header.header-bg-video .breadcrumbs-wrapper .last-crumb,
.header.header-bg-video .breadcrumbs-wrapper .last-crumb span{
  color:#C6C5CD;
  font-weight:700;
}

.header.header-bg-video .breadcrumbs-wrapper .hs-breadcrumb-menu-item{
  padding:0;
  font-size:14px;
}

.header.header-bg-video .breadcrumbs-wrapper .hs-breadcrumb-menu-item:first-child{
  display: flex;
    align-items: flex-end;
    padding-left: 5px;
}

.header.header-bg-video .breadcrumbs-wrapper .hs-breadcrumb-menu-divider:before{
  padding-left:16px;
  padding-right:16px;
}

.header.header-bg-video .breadcrumbs-wrapper .hs-breadcrumb-menu {
  display:flex;
  flex-wrap:wrap;
      padding-left: calc(var(--bs-gutter-x)* .5);
    padding-right: calc(var(--bs-gutter-x)* .5);
}

.header.header-bg-video{
/*     margin-top:24px; */
    padding-left:24px;
    padding-right:24px;
/*     padding-bottom: 60px; */
    background-color: #fff;
}

.header.header-bg-video.with-breadcrumbs{
  margin-top:0;
}

.header.header-bg-video .wrapper{
    padding-top:0;
    padding-bottom:0;
    height:100%;
}

.header.header-bg-video .header-row{
    min-height:590px;
    padding: 8px;
}

.header.header-bg-video .container{
    border-radius:24px;
    overflow:hidden;
    /* padding: 40px; */
    padding: 0;
}

.header.header-bg-video .container.border-gradient:before{
  z-index:1;
}

.header-bg-video .video-container {
    position:absolute;
    width: 100%;
    height:100%;
    max-width: 100%;
    left: 0;
    top: 0;
}

.header-bg-video .video-container video{
    object-fit:cover;
    width: 100%;
    height:100%;
}
  
.banner-border-wrapper .banner-wrap {
    
    z-index: 2;
    background: rgba(29, 26, 57, 0.2);
    border-radius: 16px;
    position: relative;
    padding: 32px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.header-bg-video.second-style .banner-border-wrapper .banner-wrap {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.banner-border-wrapper .banner-wrap:before{
    content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px; 
  padding: 1px; 
  background:linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%); 
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
mask-composite: exclude; 
}

.header.header-bg-video .bg-image, 
.header.header-bg-video .bg-overlay{
  width:100%;
  height:100%;
  object-fit:cover;
}

.header.header-bg-video .title{
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.33;
    color: #fff;
}

.header.header-bg-video .content-text{
    margin-bottom: 32px;
    color: #fff;
    line-height: 1.71;
}

.header.header-bg-video .content-text p,
.header.header-bg-video .content-text span{
  font-size:14px;
}

.header.header-bg-video .buttons-wrap{
    display: flex;
    gap:8px;
    z-index: 1;
    position: relative;
    flex-direction: column;
}

/* Style 2 */
.header.header-bg-video.second-style .header-row{
    padding: 40px;
}

.header.header-bg-video.second-style .srVideo-controls .playpause{
    background: linear-gradient(180deg, rgba(198, 197, 205, 0.6) 0%, rgba(74, 72, 97, 0.6) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.header.header-bg-video.second-style .srVideo-controls .playpause.border-gradient:before{
  border-radius:50%;
}

.header.header-bg-video.second-style .video-overlay{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
}

.header.header-bg-video.second-style .video-overlay img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header.header-bg-video.second-style .banner-border-wrapper .banner-wrap{
    margin-left: auto;
    background: none;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
}

.header.header-bg-video.second-style .banner-border-wrapper .banner-wrap::before{
    display: none;
}

.header.header-bg-video.second-style .buttons-wrap{
    justify-content: flex-end;
}

@media (min-width: 992px){
    .header.header-bg-video{
        padding-left:0;
        padding-right:0px;
/*         padding-bottom: 120px; */
    }
  
  .header.header-bg-video .wrapper,
  .header.header-bg-video.second-style .wrapper{
    padding-left: calc(var(--bs-gutter-x)* .5);
        padding-right: calc(var(--bs-gutter-x)* .5);
  }

    .header.header-bg-video.second-style .banner-border-wrapper .banner-wrap{
        text-align: right;
    }

    .header.header-bg-video .header-row{
        min-height:600px;
        padding: 80px 80px 40px 40px;
    }

    .banner-border-wrapper .banner-wrap {
        padding: 40px;
        max-width: 674px;
/*       max-width: 600px; */
    }

    .header.header-bg-video .title{
        font-size: 32px;
        line-height: 1.167;
        margin-bottom: 24px;
    }

    .header.header-bg-video .buttons-wrap{
        flex-direction: row;
        gap: 16px;
    }

    .header.header-bg-video.second-style .title{
        margin-bottom: 40px;
        font-size: 32px;
        line-height: 40px;
    }
  
  .header.header-bg-video .content-text p,
  .header.header-bg-video .content-text span{
    font-size:18px;
  }

}

@media (min-width: 1280px){
/*   .header.header-bg-video .container{
    max-width: calc(100% - 268px);
  } */
}
@media (min-width: 1500px) {
   .header.header-bg-video .header-row{
        min-height:800px;
    }
  .header.header-bg-video .title{
        font-size: 30px;
   }
}

@media (min-width:1700px){
  .header.header-bg-video .title{
    font-size: 38px;
   }
}
@media (min-width: 1920px) {
    
    .header.header-bg-video{
/*         padding-bottom: 160px; */
    }
  
  .header.header-bg-video .container{
             max-width: 1640px;
  }
  .header.header-bg-video .title{
    font-size: 48px;
   }
  
}
@media (max-width:992px){
  .header.header-bg-video .source-video.desktop{
    display:none;
  }
  .header.header-bg-video .source-video.mobile{
    display:block;
  }
  .header.header-bg-video.second-style .header-row{
    padding-left:16px;
    padding-right:16px;
  }
}
@media (min-width:992px){
  .header.header-bg-video .source-video.desktop{
    display:block;
  }
  .header.header-bg-video .source-video.mobile{
    display:none;
  }
}
.usp-section{
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    overflow: visible;
}

.usp-section .container{
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    /*background: rgba(1,8,24, 0.3); */
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter:blur(20px);
}

.usp-section .container.border-gradient:before{
    z-index:1;
}

.usp-section .wrapper{
    position: relative;
    padding: 60px 40px 40px;
    z-index: 1;
  color:#fff;
}

.usp-section .section-title{
    font-family: var(--font-ibm);
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    line-height: 36px;
    margin-top: 0px;
    margin-bottom: 24px;
}

.usp-section p,
.usp-section a,
.usp-section .usp-body{
    font-family: var(--font-ibm);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin: 0px;
    color: #ffffff;
}

.usp-section .usp-grid{
    display: grid;
    grid-template-columns: minmax(1fr, 266px);
    gap: 20px;
    margin-top: 44px;
}

.usp-section .usp-item{
    position: relative;
    border-radius: 16px;
    border: 1px none;
/*     background: rgba(255, 255, 255, 0.03) !important; */
  background:transparent !important;
}

.usp-section .usp-item::after {
    backdrop-filter: unset;
-webkit-backdrop-filter: unset;
background: hsla(0,0%,100%,.03)!important;
border: 1px;
border-radius: 16px;
position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top:0;
  z-index:-2;
}

.usp-section .usp-item .item-wrapper{
    padding: 24px 24px 24px;
  position:relative;
  z-index:2;
}

.usp-section .read-more-arrow{
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


@media (max-width:991px){
  .usp-section .usp-item .item-wrapper{
    padding: 24px 18px 24px;
  }
}
.usp-section .usp-item::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.usp-section .usp-item .usp-head{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.usp-section .usp-item .usp-title{
    margin: 0px;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #ffffff;
}

.usp-section .usp-icon{
    display: block;
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
}

.usp-section .bg-blur{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.usp-section .bg-blur img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.usp-section .usp-body > *{
  margin:0;
}

@media (min-width:768px){
    .usp-section .usp-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .usp-section .usp-icon{
        width: 30px !important;
        height: 30px !important;
        object-fit:contain;
    }

    .usp-section .bg-blur img{
        transform: rotate(180deg);
    }
}

@media (min-width:992px){
    .usp-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .usp-section .section-title{
        font-size: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
        margin-bottom:32px;
    }

    .usp-section p,
  .usp-section a,
  .usp-section .usp-body{
        font-size: 16px;
        font-weight:500;
    }

    .usp-section .usp-grid{
        margin-top: calc(44px + (80 - 44) * ((100vw - 992px) / (1700 - 992)));
    }

    .usp-section .usp-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }

    .usp-section .usp-item .item-wrapper{
        padding: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
    }

    .usp-section .usp-item .usp-title{
        font-size: 20px;
        line-height: 1.2;
        max-width: 323px;
    }

    .usp-section .usp-icon{
        width: 37px !important;
        height: 40px !important;
    }

/*     .usp-section .usp-item .usp-head{
        height: 48px;
    } */
  
    .usp-section .wrapper{
        padding-top: 80px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 80px;
    }
  
  .usp-section .usp-body{
    display:flex;
    flex-direction:column;
    height:100%;
    justify-content:space-between;
  }
}

@media (min-width:1300px){
    .usp-section{
        padding-left:10px;
        padding-right:10px;
    }
    .usp-section .usp-item .usp-title{
        font-size: 24px;
    }

/*     .usp-section .usp-item .usp-head{
        height: 60px;
    } */
}

@media (min-width:992px) and (max-width:1500px){
  .usp-section .usp-item .usp-title{
    width:75%;
  }
}

@media (min-width:1700px){
    .usp-section .section-title{
        font-size: 40px;
    }

    .usp-section p,
  .usp-section a,
  .usp-section .usp-body{
        font-size: 18px;
    }

    .usp-section .usp-grid{
        margin-top: 80px;
        gap: 40px;
    }

    .usp-section .usp-item .item-wrapper{
        padding: 40px;
    }

    .usp-section .usp-item .usp-title{
        font-size: 32px;
        line-height: 40px;
    }

    .usp-section .usp-item .usp-head{
/*         height: 78px; */
/*         margin-bottom: 32px; */
    }
  
    .usp-section .wrapper{
        padding-top: 80px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 80px;
    }
}

@media (min-width:1920px){
  .usp-section{
    padding-left:0px;
    padding-right:0px;
  }
}

/*mobile design changes*/
@media (max-width:992px){
  .usp-section{
    padding-bottom:0px;
  }
  .usp-section .container::before{
    display:none;
  }
  
  .usp-section .container{
    border-radius: unset;
    background: unset;
    backdrop-filter: unset;
    -webkit-backdrop-filter:unset;
  }
  
  .usp-section .wrapper{
    padding:0px;
  }
  
  .usp-section .usp-grid{
    margin-top:24px;
    gap:8px;
  }
  
  .usp-section .usp-item .usp-head{
    height:auto !important;
  }
  
  .usp-section .usp-item .usp-title{
    max-width:85%;
  }
  
  .usp-section .usp-item.closed .usp-head{
    margin-bottom:0px;
  }
  
  .usp-section .usp-item.closed .usp-body{
    opacity:0;
    visibility:hidden;
    height:0px;
    transition: height 0.3s ease-in-out;
  }
}
.grid-3-cols.sub-solutions-v3{
    background-color: transparent !important;
    position: relative;
}

.grid-3-cols.sub-solutions-v3 .wrap-title{
    font-family: var(--font-ibm);
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    line-height: 36px;
    margin-top: 0px;
    margin-bottom: 32px;
}

.grid-3-cols.sub-solutions-v3 .card{
    border-radius: 16px;
    overflow: hidden;
    flex-direction:column;
}

.grid-3-cols.sub-solutions-v3 .card .title{
    font-size:20px;
}

.grid-3-cols.sub-solutions-v3 .border-gradient:before{
    border-radius: 16px;
}

.sub-solutions-v3 .bg-image{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  opacity:0.5;
}

.grid-3-cols.sub-solutions-v3 .card .title,
.grid-3-cols.sub-solutions-v3 .card .excerpt{
    color: #fff;
}

.grid-3-cols.sub-solutions-v3 .card .excerpt{
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 14px;
}

.grid-3-cols.sub-solutions-v3  .card .content-wrap{
    justify-content: flex-start;
}

.grid-3-cols.sub-solutions-v3 .card .featured-image{
    padding: 1px;
    border-radius: 16px 16px 0 0;
    width:100%;
    aspect-ratio: unset;
    height: 176px;
    display:block;
    object-fit: cover;
}

.grid-3-cols.sub-solutions-v3 .card .content-wrap{
    padding: 16px;
    padding-bottom: 24px;
    padding-top: 32px;
}

.grid-3-cols.sub-solutions-v3 .card .read-more-arrow{
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 1;
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
    right: 23px;
    top: 23px;
}

.grid-3-cols.sub-solutions-v3 .card-blur.border-gradient:hover:before{
  background: linear-gradient(180deg, rgba(142, 140, 156, 0.8) 0%, rgba(29, 26, 57, 0.8) 100%);
}

.grid-3-cols.sub-solutions-v3 .card-blur:hover{
  background: rgba(74, 72, 97, 0.26) !important;
}

.grid-3-cols.sub-solutions-v3 .card:hover .read-more-arrow{
  background-color: #5B5970;
}

.grid-3-cols.sub-solutions-v3 .read-more-arrow.border-gradient:before{
    border-radius: 50%;
}

.grid-3-cols.sub-solutions-v3 .card .read-more-arrow svg{
    width: 8px;
}

.grid-3-cols.sub-solutions-v3 .card .img-wrapper{
    width: 100%;
}

.grid-3-cols.sub-solutions-v3 .grid{
    gap: 20px;
}

@media (min-width: 992px) {
    .grid-3-cols.sub-solutions-v3{
        padding-bottom:0px;
    }
    .grid-3-cols.sub-solutions-v3 .grid{
        gap: 20px;
    }
  
  
    .grid-3-cols.sub-solutions-v3 .wrap-title{
      font-size: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
    }

    .grid-3-cols.sub-solutions-v3 .card .read-more-arrow{
        width: 36px;
        height: 36px;
    }

    .grid-3-cols.sub-solutions-v3 .card .read-more-arrow svg{
        width: 10px;
    }

    .grid-3-cols.sub-solutions-v3 .card .content-wrap{
        padding: 24px;
        padding-bottom: 24px;
    }

    .grid-3-cols.sub-solutions-v3 .card .featured-image{
        height: 176px;
    }

    .grid-3-cols.sub-solutions-v3 .card .title{
        margin-bottom: 24px;
        font-size: 24px;
    }

    .grid-3-cols.sub-solutions-v3 .card .excerpt{
        font-size: 18px;
/*         min-height: 109px; */
        font-weight:500;
    }
  
    .grid-3-cols.sub-solutions-v3 .card .content-wrap{
        min-height:200px;
    }
}

@media (min-width:1700px){
    .grid-3-cols.sub-solutions-v3 .wrap-title{
      font-size: 40px;
    }
  
    .grid-3-cols.sub-solutions-v3 .grid{
        gap: 40px;
    }
  
    .grid-3-cols.sub-solutions-v3 .card .content-wrap{
        padding: 24px;
        padding-bottom: 40px;
    }
  
    .grid-3-cols.sub-solutions-v3 .card .featured-image{
        height: 267px;
    }
}

@media (max-width:992px){
    .grid-3-cols.sub-solutions-v3{
        padding-bottom:0px;
    }
}
.singular-case{
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
  padding-top:40px;
  padding-bottom:0px;
}

.singular-case .container{
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.singular-case .wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.singular-case .background-media{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 20%;
}

.singular-case .background-media video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  pointer-events: none;
}

.singular-case .content-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px 24px;
    z-index: 1;
    width: 100%;
}

.singular-case .icon-item {
    display:flex;
    align-items:center;
    gap:24px;
    color:#fff;
    margin-bottom:30px;
}

.singular-case .icon-item span{
   font-weight:500;
}

.singular-case .icon-item img{
    width:25px;
    object-fit:contain;
}

.singular-case .media-slide{
    padding-bottom:40px;
  width:100%;
  margin-right:0;
}

.singular-case .media-slide .swiper-slide img{
    width:100%;
  height:100%;
}
.singular-case .swiper-pagination {
        text-align: right;
    right: 0px;
    left: auto;
    bottom:0;
}

.singular-case .swiper-pagination .swiper-pagination-bullet{
     backdrop-filter: blur(4px);
    background: rgba(74, 72, 97, .75);
    border: 1px solid linear-gradient(180deg, hsla(248, 7%, 58%, .6), rgba(29, 26, 57, .6));
    box-shadow: 0 0 40px rgba(8, 7, 16, .6);
    height: 16px;
    opacity: 1;
    width: 16px;
    
}
.singular-case .swiper-pagination .swiper-pagination-bullet-active{
    background: rgba(0,159,157,1.0);
}



@media (max-width:991px){
  .singular-case .content-wrap{
      padding: 40px 18px 24px;
  }
}
.singular-case .media,
.singular-case .video-container{
    text-align: center;
    align-self: center;
    margin-bottom: 38px;
}

.sound-wrap{
    position:absolute;
    width:24px;
    right:10px;
    bottom:10px;
    z-index:1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.sound-wrap .sound-icon svg{
    width:24px;
    stroke:#fff;
    cursor:pointer;
}

.sound-wrap .sound-icon svg.sound-on{
    display:none;
}

.singular-case .media img{
    display: block;
    width: 100%;
  border-radius:16px;
}

.singular-case .content .title{
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 24px;
}

.singular-case .content p{
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 32px;
}

.singular-case .content .buttons-wrap{
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
    margin-top:16px;
}

.singular-case .video-container video{
  width:100%;
  border-radius:16px;
}

.singular-case .cta-button.secondary{
  text-align:center;
}



@media (min-width:992px){
    .singular-case{
      padding-left: 10px;
      padding-right: 10px;
      padding-top:80px;
      padding-bottom:0px;
    }
  
  .singular-case .content p{
    font-weight:500;
  }
  
  .singular-case .content p:last-of-type,
  .singular-case .content-text{
    margin-bottom: 0px;
  }

    .singular-case .wrapper{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .singular-case .content-wrap{
        flex-direction: row;
        justify-content: space-between;
      align-items:center;
    }
  
    .singular-case .right-media .content-wrap {
      flex-direction:row-reverse;
    }

    .singular-case .media,
    .singular-case .video-container{
        width: 50%;
      margin-bottom:0;
    }
  
    

    .singular-case .content{
        width: 45%;
        max-width: 594px;
    }

    .singular-case .content .buttons-wrap{
        flex-direction: row;
        gap: 16px;
      margin-top:24px;
    }

    .singular-case .content-wrap{
        padding: 80px 40px 80px 40px;
    }

    .singular-case .media img{
        width: 100%;
        height: 574px;
        margin-left: auto;
        margin-right: auto;
      object-fit:cover;
      border-radius:24px;
    }

    .singular-case .content p{
        font-size: calc(14px + (18 - 14) * ((100vw - 992px) / (1700 - 992)));
    }

    .singular-case .content .title{
        font-size: calc(24px + (48 - 24) * ((100vw - 992px) / (1700 - 992)));
        line-height: 1.2;
    }
  
  .singular-case .video-container iframe{
    border-radius:16px;
  }
}

@media (min-width:1300px){
  .singular-case{
    padding-left:10px;
    padding-right:10px;
  }
}

@media (min-width:1700px){
    .singular-case .content-wrap{
        padding: 80px 40px 80px 40px;
    }

    .singular-case .content .title{
        font-size: 48px;
        line-height: 56px;
    }

    .singular-case .content p{
        font-size: 18px;
    }

    .singular-case .media img{
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width:1920px){
  .singular-case{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (max-width:992px){
  .singular-case .container{
      border-radius:16px;
  }
  
  .singular-case .container::before{
    border-radius:16px;
  }
  
  .singular-case .content-text{
    margin-bottom:0px !important;
  }
  
  .singular-case .cta-button.secondary{
    justify-content:center;
  }
  
  .singular-case .video-container{
    width:100%;
    margin-bottom:16px;
  }
  
  .singular-case .video-container iframe{
    border-radius:16px;
  }
}
.statistics {
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: visible;
}

.statistics .container {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(1, 8, 24, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.statistics .container.border-gradient:before {
    z-index: 1;
}



.statistics .wrapper {
    position: relative;
    padding: 32px 24px 8px;
    z-index: 1;
}

.statistics .section-title {
    font-family: var(--font-ibm);
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    line-height: 32px;
    margin-top: 0px;
    margin-bottom: 24px;
}

.statistics p,
.statistics .description{
    font-family: var(--font-ibm);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin: 0px;
    color: #ffffff;
}

.statistics .description{
    font-weight:400;
}

.statistics .statistics-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 40px;
}

.statistics .statistics-item{
    position: relative;
    text-decoration: none;
    border-radius: 8px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.statistics .statistics-item:hover{
    background: rgba(255, 255, 255, 0.05) !important;
}

.statistics .statistics-item::before{
    border-radius: 8px;
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.statistics .statistics-item .statistics-desc{
   /* display: none; */
}

.statistics .statistics-item .item-head{
    position: relative;
    width: 100%;
}

.statistics .statistics-item .statistics-title{
    margin: 0;
    font-family: var(--font-ibm);
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.statistics .statistics-item .statistics-title span{
    font-size: inherit;
    color: inherit;
    line-height:1.2;
}

.statistics .read-more-arrow{
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 8px;
    bottom: 0px;
    width: 36px;
    z-index: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
}

.statistics .read-more-arrow svg{
    width: 8px;
}

.statistics .border-glass {
    border: 1px solid hsla(248, 7%, 58%, .6) !important;
}

.statistics .bg-blur{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.statistics .bg-blur img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.statistics .title-img{
    overflow: hidden;
    width: 148px;
    height: 148px;
    border-radius: 24px;
}

.statistics .title-wrap{
    flex-direction:column;
    gap:24px;
  }

.statistics .title-img img{
  width:100%;
  height:100%;
}

.statistics .title-img-wrap{
  display:flex;
  gap:24px;
}

@media (min-width:992px) {
    .statistics {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 80px;
        padding-top: 80px;
    }
  
  .statistics .title-content.with-image{
    max-width:974px;
  }
  
  .statistics .title-wrap{
    flex-direction:row;
  }

    .statistics .section-title {
        font-size: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
        line-height:1.2;
    }

    .statistics p,
  .statistics .description{
        font-size: 16px;
    }
  
  .statistics .description{
      font-weight:500;
  }

    .statistics .wrapper {
        padding-top: 80px;
        padding-left: 40px;
        padding-right:40px;
        padding-bottom: 80px;
    }

    .statistics .statistics-grid{
        margin-top: calc(44px + (80 - 44) * ((100vw - 992px) / (1700 - 992)));
    }

    .statistics .statistics-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .statistics .statistics-item{
        border-radius: 16px;
        padding: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
    }
    
    .statistics .statistics-item::before{
        border-radius: 16px;
    }

    .statistics .statistics-item .statistics-desc{
        display: block;
    }

    .statistics .statistics-item .item-head{
        margin-bottom: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
    }

    .statistics .read-more-arrow{
        bottom: unset;
        top: 0;
        right: 0;
    }

    .statistics .statistics-item .statistics-title{
        font-size: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
    }
}

@media (min-width:1300px) {
    .statistics {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width:1700px) {
    .statistics .section-title {
        font-size: 40px;
    }

    .statistics p,
  .statistics .description{
        font-size: 18px;
    }

    .statistics .wrapper {
        padding-top: 80px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 80px;
    }

    .statistics .statistics-grid{
        gap: 40px;
        margin-top:80px;
    }

    .statistics .statistics-item{
        padding: 40px;
    }
  
    .statistics .statistics-item .statistics-title{
        font-size:40px;
    }
}

@media (min-width:1920px) {
    .statistics {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (max-width:992px){
    .statistics .wrapper{
        padding:0px;
    }
  
    .statistics .container{
        border-radius:unset !important;
        background:unset !important;
        backdrop-filter:unset !important;
    }
  
    .statistics .container.border-gradient:before{
        background:unset !important;
        display:none;
    }
  
    .statistics .statistics-grid{
        margin-top:24px;
    }
  
    .statistics .statistics-item .statistics-title{
        font-size:24px;
    }
  
    .statistics .read-more-arrow{
        bottom:50%;
        transform: translateY(50%);
    }
  
  .statistics .statistics-item .statistics-desc{
    display: none;
    margin-top:16px;
  }
  
  .statistics .statistics-item.active .statistics-desc{
    display: block;
  }
}
.featured-blog {
    position: relative;
    overflow: hidden;
}

.featured-blog .section-title {
    font-family: var(--font-ibm);
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    line-height: 32px;
    margin-top: 0px;
    margin-bottom: 24px;
}

.featured-blog .card-blog {
    border-radius: 8px;
    position: relative;
    border: 1px none;
    /* background: rgba(255, 255, 255, 0.03) !important; */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    height:100%;
}

@media (max-width:991px){
  .featured-blog .card-blog{
      padding: 24px 18px;
    height:100%;
        display: flex;
    flex-direction: column;
  }
}

.featured-blog .card-blog:hover{
    background: rgba(255, 255, 255, 0.05) !important;
}

.featured-blog .card-blog::before {
    border-radius: 8px;
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.featured-blog .card-blog img {
    border-radius: 8px;
    display: block;
    width: 100%;
    object-fit: cover;
  height:100%;
}

.featured-blog .card-blog .card-body {
    margin-top: 16px;
}

.featured-blog .card-blog .card-title {
    font-family: var(--font-ibm);
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 16px;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-blog .card-blog .tag-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
}

.featured-blog .card-blog .tag-item .tag-link {
    border: 1px solid #4A4861;
    padding: 4px 12px;
    text-decoration: none;
    color: #C6C5CD;
    font-size: 14px;
    border-radius: 8px;
    white-space:nowrap;
    display:block;
    text-align:center;
}

.featured-blog .card-blog a{
    text-decoration: none;
}

.featured-blog .read-more {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 36px;
    height: 36px;
    z-index: 1;
}

.featured-blog .read-more-arrow {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 36px;
    z-index: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
}

.featured-blog .read-more-arrow svg {
    width: 8px;
}

.featured-blog .border-glass {
    border: 1px solid hsla(248, 7%, 58%, .6) !important;
}

.featured-blog .swiper-button-next:after,
.featured-blog .swiper-button-prev:after {
    display: none;
}

.featured-blog .swiper-button-next,
.featured-blog .swiper-button-prev {
    top: unset;
    bottom: 0px;
}

.featured-blog .featured-blog-slider {
    padding-bottom: 60px;
}

.featured-blog .swiper-button-next {
    right: 0;
}

.featured-blog .swiper-button-prev {
    left: unset;
    right: 52px;
}

.featured-blog .swiper-button-prev svg {
    transform: rotate(180deg);
}

.featured-blog .blur-layer {
    display: none;
}

.featured-blog .card-blog {
  margin-right: 24px;
}

@media(min-width:768px) {
    .featured-blog .card-blog {
        margin-right: 24px;
    }
}

@media(min-width:992px) {
    .featured-blog .section-title {
        font-size: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
    }

    .featured-blog .card-blog {
        display: flex;
        flex-direction: row;
        gap: 24px;
        border-radius: 16px;
/*         box-shadow: 0 0 40px rgba(8, 7, 16, 0.6); */
        box-shadow:unset;
    }

    .featured-blog .card-blog::before {
        border-radius: 16px;
    }

    .featured-blog .card-blog .card-body {
        margin-top: auto;
        margin-bottom: 40px;
    }

    .featured-blog .card-blog img {
        width: 200px;
        border-radius: 16px;
        aspect-ratio:300/360;
    }

    .featured-blog .read-more {
        top: unset;
        bottom: 24px;
        right: 24px;
    }

    .featured-blog .row {
        position: relative;
    }

    .featured-blog .featured-blog-slider {
        position: unset;
        padding-bottom: 0;
    }

    .featured-blog .swiper-button-prev {
        left: 32px;
        right: unset;
    }

    .featured-blog .swiper-button-next {
        right: unset;
        left: 80px;
    }

    .featured-blog .blur-layer {
        display: none;
        position: absolute;
        right: -250px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 500px;
        height: 500px;
        border-radius: 1000px 0px 0px 1000px;
        background: radial-gradient(farthest-corner at 60% 55%, #0c113d 0%, transparent 60%);
        
    }
  
    .featured-blog .swiper-slide{
      height:auto;
    }
  
    .featured-blog .swiper-slide-next{
        -webkit-mask:linear-gradient(270deg,transparent 50%, black 85%) no-repeat;
      -webkit-mask: linear-gradient(270deg, transparent 65%, #000 100%) no-repeat;
    }

    .featured-blog .swiper-slide-next::after{
        content: "";
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }
  
  .featured-blog .swiper-pagination{
    display:none;
  }
  
  .featured-blog .card-blog .tag-item .tag-link{
    max-width:240px;
  }
  
  .featured-blog .card-blog .card-title{
    font-size:18px;
    margin-bottom:0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .featured-blog .card-blog .tag-list{
    flex-direction:row;
    margin-bottom:16px;
  }
}

@media(min-width:1200px){
  .featured-blog .swiper-slide-next{
        -webkit-mask:linear-gradient(270deg,transparent 61%, black 85%) no-repeat;
    }
}

@media(min-width:1280px){
  .featured-blog .swiper-slide-next{
        -webkit-mask: linear-gradient(270deg,transparent 60%, black 120%) no-repeat;
    }
}

@media(min-width:992px) and (max-width:1200px){
  .featured-blog .card-blog img{
    width:140px;
  }
  
  .featured-blog .card-blog{
    gap:16px;
  }
}

@media(min-width:1200px) and (max-width:1300px){
  .featured-blog .card-blog img{
    width:160px;
  }
}

@media(min-width:1700px) {
    .featured-blog .section-title {
        font-size: 40px;
    }

    .featured-blog .card-blog {
        gap: 40px;
        padding: 40px;
    }

    .featured-blog .card-blog img {
        width: 300px;
    }

    .featured-blog .read-more {
        bottom: 40px;
        right: 32px;
    }

    .featured-blog .card-blog {
        margin-right: 40px;
    }

    .featured-blog .blur-layer{
        width: 600px;
        height: 600px;
        right: -300px;
    }
  
/*     .featured-blog .swiper-slide{
        min-width:819px;
    } */
  
    .featured-blog .card-blog .card-title{
        font-size:24px;
    }
  
    .featured-blog .swiper-slide-next{
        -webkit-mask: linear-gradient(270deg,transparent 65%, black 120%) no-repeat;
    }
}

@media(min-width:1920px){
  .featured-blog .swiper-slide-next{
        -webkit-mask: linear-gradient(270deg,transparent 67%, black 120%) no-repeat;
    }
}

/* @media (max-width:425px){
  .featured-blog .card-blog{
    max-width:318px;
  }
} */

@media (max-width:992px){
  .featured-blog .card-blog img{
    aspect-ratio:270/321;
/*     max-width:270px; */
    max-height:321px;
  }
  
  .featured-blog .swiper-slide{
    height: auto;
  }
  
/*   .featured-blog .card-blog{
    max-width:400px;
  } */
  
  .featured-blog .card-blog .card-body{
    margin-top:44px;
    height:100%;
    display: flex;
    flex-direction: column;
  }
  
  .featured-blog .card-blog .card-body a{
    margin-top: auto;
    display: block;
  }
  
  .featured-blog .swiper-pagination{
    display:block;
  }
  
  .featured-blog .swiper-button-next, .featured-blog .swiper-button-prev{
    display:none;
  }
  
  .featured-blog .swiper-pagination-bullet{
    width: 16px;
    height: 16px;
    background: hsla(245, 15%, 33%, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    opacity:1;
  }
  
  .featured-blog .swiper-pagination-bullet-active{
    background: rgba(248, 212, 131, 1);
  }
  
  .featured-blog .card-blog .tag-list{
    flex-direction:row;
  }
  
  .featured-blog .card-blog .card-title{
    margin-bottom:0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .featured-blog .card-blog .tag-list{
    margin-bottom:16px;
  }
}

@media (max-width:480px){
  .featured-blog .container{
    padding-right:0px;
  }
}
.highlighted-blog{
    position: relative;
}

.highlighted-blog .title{
    font-family: var(--font-ibm);
    font-size: 24px;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 24px;
}

.highlighted-blog .content{
    margin-bottom: 24px;
}

.highlighted-blog .card-blog {
    border-radius: 8px;
    position: relative;
    border: 1px none;
    /* background: rgba(255, 255, 255, 0.03) !important; */
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    padding: 24px;
}

/* form style */
.highlighted-blog .card-with-form .text {
    margin-top:16px;
    color:#fff;
}

.highlighted-blog .card-with-form .card-body{
    width:100%;
}

.highlighted-blog .card-with-form .form-wrapper,
.highlighted-blog .card-with-form .form-wrapper a{
    color:#fff;
}

.highlighted-blog .card-with-form .form-wrapper a{
    text-decoration:underline;
}

form input[type=email], 
form input[type=file], 
form input[type=number], 
form input[type=password], 
form input[type=tel], 
form input[type=text], 
form select, 
form textarea{
    background:#D9D9D9;
    border-radius:8px;
    border:none;
    min-height:44px;
}

.highlighted-blog .card-with-form .form-wrapper form.hs-form .hs-form-field .hs-input:not([type=checkbox]){
    width:100%;
}

.legal-consent-container .hs-form-booleancheckbox-display input{
  margin-top:4px;
}

form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E);
    background-position: right 14px top 50%;
    background-repeat: no-repeat;
    text-overflow: ellipsis;
    white-space: nowrap;
}

form .hs-button, form input[type=submit]{
    border-radius: 8px;
    box-shadow: none;
    display: inline-flex;
    font-family: var(--font-ibm);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 17px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Whitepaper style */
.highlighted-blog .card-whitepaper .card-body {
    display: flex;
    flex-direction: column;
    margin-bottom:0;
}

.highlighted-blog .card-whitepaper .card-body-content {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    align-items: flex-start;
  height: 100%;
}

.highlighted-blog .card-whitepaper .card-body .cta-button{
    display:flex;
    align-items:center;
    gap:10px;
    background-color:#009F9D;
  margin-top:16px;
}

.highlighted-blog .card-whitepaper .card-body .cta-button svg{
  width:18px;
  height:18px;
}

@media (max-width:991px){
  .highlighted-blog .card-blog{
    padding: 24px 18px;
  }
}
.highlighted-blog .card-blog::before {
    border-radius: 8px;
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.highlighted-blog .card-blog img {
    border-radius: 8px;
    display: block;
    width: 100%;
    object-fit: contain;
}

.highlighted-blog .card-blog .card-body {
    margin-top: 16px;
}

.highlighted-blog .card-blog .card-title {
    font-family: var(--font-ibm);
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
}

.highlighted-blog .card-blog .tag-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 0;
    margin-bottom:16px;
}

.highlighted-blog .card-blog .tag-item .tag-link {
    border: 1px solid #4A4861;
    padding: 4px 12px;
    text-decoration: none;
    color: #C6C5CD;
    font-size: 14px;
    border-radius: 8px;
    display:inline-block;
}

.highlighted-blog .card-blog a{
    text-decoration: none;
}

.highlighted-blog .read-more {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 36px;
    height: 36px;
    z-index: 1;
}

.highlighted-blog .read-more-arrow {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 8px;
    bottom: 0px;
    width: 36px;
    z-index: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
}

.highlighted-blog .read-more-arrow svg {
    width: 8px;
}

.highlighted-blog .border-glass {
    border: 1px solid hsla(248, 7%, 58%, .6) !important;
}

.buttons-wrap{
    display: flex;
    gap:8px;
    z-index: 1;
    position: relative;
    flex-direction: column;
}

.highlighted-blog .content .text{
  color:#fff;
}

.highlighted-blog .buttons-wrap{
  margin-top:24px;
}

@media(min-width:992px){
    .highlighted-blog .content{
        margin-bottom: 0px;
        max-width: 594px;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-right: 40px;
    }
  
  .highlighted-blog .wrapper{
    overflow:hidden;
    border-radius:24px;
  }

    .highlighted-blog .buttons-wrap{
        flex-direction: row;
    }

    .highlighted-blog .wrapper::before{
        border-radius: 24px;
    }

    .highlighted-blog .wrapper{
        padding: 80px 40px 80px 40px;
    }

    .highlighted-blog .title {
        font-size: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
    }

    .highlighted-blog .card-blog {
        display: flex;
        flex-direction: row;
        gap: 24px;
        border-radius: 16px;
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
    }

    .highlighted-blog .card-blog::before {
        border-radius: 16px;
    }

    .highlighted-blog .card-blog .card-body {
        margin-top: 0px;
        /*margin-bottom: 32px;*/
      margin-bottom: 0px;
    }

    .highlighted-blog .card-blog img {
        width: 210px;
        height: 100%;
        aspect-ratio: 1/1;
        border-radius: 16px;
    }

    .highlighted-blog .read-more {
        top: unset;
        bottom: 24px;
        right: 16px;
    }

    .highlighted-blog .card-blog .card-title{
        font-size: 20px;
        line-height:1.2;
    }

    .highlighted-blog .row{
        margin-left: 0;
        margin-right: 0;
    }

    .highlighted-blog .content-wrapper{
        width: 45%;
        padding: 0;
    }

    .highlighted-blog .blog-wrapper{
        width: 55%;
        padding: 0;
        max-width: 787px;
    }
}

@media(min-width:992px) and (max-width:1200px){
  .highlighted-blog .content-wrapper{
        width: 38%;
    }

    .highlighted-blog .blog-wrapper{
        width: 62%;
    }
}
@media(min-width:1700px){
    .highlighted-blog .wrapper{
        padding: 80px 40px 80px 40px;
    }

    .highlighted-blog .title {
        font-size: 40px;
    }

    .highlighted-blog .card-blog {
        gap: 40px;
        padding: 40px;
    }

    .highlighted-blog .card-blog img {
        width: 302px;
        height: 268px;
        object-fit: contain;
        object-position: center;
    }

    .highlighted-blog .read-more {
        bottom: 40px;
        right: 32px;
    }

    .highlighted-blog .card-blog .card-title{
        font-size: 24px;
        line-height:32px;
    }

    .highlighted-blog .content{
        padding-right: 0;
    }
}

@media(max-width:992px){
    .highlighted-blog .wrapper{
      background:transparent;
      backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    }
  
    .highlighted-blog .wrapper::before{
        display: none;
    }

    .highlighted-blog .buttons-wrap{
        margin-top: 24px;
    }

    .highlighted-blog .card-blog img{
        aspect-ratio: 300/360;
        border-radius:4px;
    }
  
    .highlighted-blog .cta-button{
        justify-content:center;
    }
  
    .highlighted-blog .read-more-arrow{
        right:0;
    }
  
}

@media (max-width:400px){
  .highlighted-blog .card-blog img{
    aspect-ratio: 294/261;
    border-radius:4px;
  }
}
.quote-slider-v3 {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: visible;
}

.quote-slider-v3 .container {
    position: relative;
    overflow: hidden;
}

.quote-slider-v3 .container.border-gradient:before {
    z-index: 1;
}

.quote-slider-v3 .wrapper {
    position: relative;
    z-index: 1;
}

.quote-slider-v3 .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
}

.quote-slider-v3 .swiper-pagination {
    display: block;
}

.quote-slider-v3 .swiper-button-next,
.quote-slider-v3 .swiper-button-prev {
    display: none;
}

.quote-slider-v3 .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: hsla(245, 15%, 33%, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    opacity: 1;
}

.quote-slider-v3 .swiper-pagination-bullet-active {
    background: rgba(248, 212, 131, 1);
}

.quote-slider-v3.green-style .swiper-pagination-bullet-active{
    background: rgba(0, 159, 157, 1);
}

.quote-slider-v3 .quote-card{
    position: relative;
  height:100%;
}

.quote-slider-v3 .quote-card:hover{
    background: rgba(255, 255, 255, 0.05) !important;
}

.quote-slider-v3 .full-link{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}


.quote-slider-v3.green-style .content{
    position: relative;
    min-height:0;
}

.quote-slider-v3.green-style .content.with-bg-image {
    border-radius: 8px;
    min-height: 322px;
    padding: 24px;
}

.quote-slider-v3.green-style .background-image{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.quote-slider-v3 .cta-button{
  display:inline-block;
}

.quote-slider-v3 .buttons-wrap{
  display:block;
}

.quote-slider-v3.green-style .background-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.quote-slider-v3.green-style .content-wrapper{
    padding-right: 0;
  padding-left:0;
  height:100%;
}

.quote-slider-v3.green-style .content{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.quote-slider-v3.green-style .title-only .content{
    justify-content: flex-start;
}

.quote-slider-v3.green-style .text-wrapper{
    position: relative;
    z-index: 1;
}

.quote-slider-v3.green-style .bg-overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(29, 26, 57, 1) 100%);
    backdrop-filter: blur(20px);
    opacity: 0.35;
    border-radius: 8px;
}

.quote-slider-v3.green-style .content .text-wrapper .card-title{
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0%;
    max-width: 100%;
    margin-bottom: 16px;
}

.quote-slider-v3 .swiper-slide{
  height: auto;
}

.quote-slider-v3 .card-author{
  margin-top:auto;
}

@media (min-width:992px) {
    .quote-slider-v3 .wrapper {
/*         padding-top: calc(40px + (80 - 40) * ((100vw - 992px) / (1700 - 992)));
        padding-left: calc(40px + (80 - 40) * ((100vw - 992px) / (1700 - 992)));
        padding-right: calc(40px + (80 - 40) * ((100vw - 992px) / (1700 - 992)));
        padding-bottom: calc(40px + (80 - 40) * ((100vw - 992px) / (1700 - 992))); */
      padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }

    .quote-slider-v3 .title{
        font-size: calc(24px + (40 - 24) * ((100vw - 992px) / (1700 - 992)));
        line-height: 1.2;
    }

    .quote-slider-v3 .quote-card {
        border-radius: 8px;
        padding: 24px;
        max-width: 100%;
        margin-right: 20px;
        margin-left:20px;
        display: flex;
        flex-direction: column;
    }

    .quote-slider-v3 .quote-card::before {
        border-radius: 8px;
    }

    .quote-slider-v3 .row{
        flex-direction: row-reverse;
    }

    .quote-slider-v3 .card-title {
        font-size: calc(20px + (32 - 20) * ((100vw - 992px) / (1700 - 992)));
        font-weight: 500;
        color: #ffffff;
        line-height: 1.2;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 70%;
    }

    .quote-slider-v3 .card-head {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .quote-slider-v3 .card-icon {
        width: 32px;
        height: 20px;
        object-fit: contain;
    }

    

    .quote-slider-v3 .card-body p,
  .quote-slider-v3 .card-body{
        margin-top: 0;
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        line-height: 24px;
    }
  
  .quote-slider-v3 .card-body {
        margin-bottom: 16px;
    }

    .quote-slider-v3 .card-author p {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 500;
        color: #8E8C9C;
        line-height: 24px;
    }

    .quote-slider-v3 .quote-wrapper{
        padding-bottom: 40px;
      position:static;
    }

    .quote-slider-v3 .content-wrapper{
        padding-left: 40px;
    }

    .quote-slider-v3 .swiper-pagination{
        text-align: left;
        bottom: 0;
    }

    .quote-slider-v3.green-style .row{
        flex-direction: row;
      position:relative;
    }

    .quote-slider-v3.green-style .content-wrapper{
        padding-left: 20px;
        padding-right: 20px;
      padding-bottom:40px;
      
    }

    .quote-slider-v3.green-style .swiper-pagination{
        text-align: right;
        bottom: 0;
        right: 20px;
        left: auto;
    }

    .quote-slider-v3.green-style .content.with-bg-image{
        height: 100%;
        padding: 24px;
    }
}

@media (min-width:1700px) {
    .quote-slider-v3 .wrapper {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }

    .quote-slider-v3 .quote-card {
        padding: 40px;
        max-width: 100%;
        margin-right: 20px;
      margin-left:20px;
    }

    .quote-slider-v3 .title{
        font-size: 40px;
    }

    .quote-slider-v3 .card-title {
        font-size: 32px;
        line-height: 40px;
    }

    .quote-slider-v3 .card-head{
        margin-bottom: 40px;
    }

    .quote-slider-v3 .card-body{
        margin-bottom: 40px;
    }

    .quote-slider-v3 .card-icon {
        width: 49.15px;
        height: 32px;
        object-fit: contain;
    }

    .quote-slider-v3 .card-body p,
  .quote-slider-v3 .card-body{
        font-size: 18px;
    }

    .quote-slider-v3 .card-author p {
        font-size: 18px;
    }

    .quote-slider-v3 .content-wrapper{
        padding-left: 68px;
    }

    .quote-slider-v3.green-style .content-wrapper{
        padding-left: 20px;
        padding-right: 20px;
    }

    .quote-slider-v3.green-style .content.with-bg-image{
        padding: 40px;
    }

    .quote-slider-v3.green-style .content .text-wrapper .card-title{
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }

}

@media (max-width:992px) {
  
  .quote-slider-v3 .container{
    padding-left:0px;
    padding-right:0px;
  }
    .quote-slider-v3 .wrapper {
        border-radius: unset;
        background-color:transparent;
    }
  
  .quote-slider-v3.green-style .content-wrapper{
    padding-left:24px;
    padding-right:24px;
  }
  
  .quote-slider-v3.green-style{
    padding-left:0;
    padding-right:0;
  }
  
  .quote-slider-v3.green-style .slider-quote-col{
    padding-left:36px;
    padding-right:0;
  }
  
  .quote-slider-v3 .swiper-pagination{
    text-align:center;
    left:0;
    right:0;
  }
  
  .quote-slider-v3.green-style .content.with-bg-image{
    aspect-ratio:1/1;
  }

    .quote-slider-v3 .wrapper.border-gradient:before {
        display: none;
    }

    .quote-slider-v3 .quote-wrapper {
        margin-top: 24px;
    }

    .quote-slider-v3 .quote-card {
        border-radius: 8px;
        padding: 24px;
        margin-right: 24px;
    }

    .quote-slider-v3 .quote-card::before {
        border-radius: 8px;
    }

    .quote-slider-v3 .card-title {
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
        line-height: 28px;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 50%;
    }

    .quote-slider-v3 .card-head {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .quote-slider-v3 .card-icon {
        width: 22.32px;
        height: 16px;
        object-fit: contain;
    }


    .quote-slider-v3 .card-body p,
  .quote-slider-v3 .card-body{
        margin-top: 0;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 400;
        color: #ffffff;
        line-height: 24px;
    }
  
  .quote-slider-v3 .card-body {
        margin-bottom: 16px;
    }

    .quote-slider-v3 .card-author p {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 500;
        color: #8E8C9C;
        line-height: 24px;
    }

    .quote-slider-v3 .content {
        padding-right: 24px;
    }

    .quote-slider-v3 .quote-wrapper{
        padding-bottom: 60px;
    }
}

@media (max-width:767px){
    .quote-slider-v3 .content .title{
        max-width: 318px;
    }
}
.solutions-v3 .statistics-grid{
    display: flex;
    gap: 0;
    padding-top: 40px;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
}

.solutions-v3 .statistics-item {
    width:100%;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: hsla(0, 0%, 100%, .03) !important;
      --distance: -4rem;
    transition:.3s ease-in-out;
    box-shadow: -40px 0px 40px 0px rgba(0, 0, 0, 0.64);
    z-index: 2;
  will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.solutions-v3 .statistics-item:hover{
  background: hsla(0, 0%, 100%, .03) !important;
}

.solutions-v3 .statistics-item img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 23px;
  display: none;
}

.solutions-v3 .statistics-item.swiper-slide{
  height:auto;
}

.statistics.solutions-v3  .statistics-item .item-head{
  margin-bottom: 24px;
}

.statistics.solutions-v3 .read-more-arrow{
  bottom: 32px;
  top: auto;
  right: 32px;
}

.statistics.solutions-v3  .statistics-item .statistics-title{
  font-size: 20px;
}

.solutions-v3 .statistics-item::after {
  border-radius: 16px;
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
/*   background: rgba(74, 72, 97, 0.4); */
  z-index: 1;
  backdrop-filter:unset;
  -webkit-backdrop-filter:unset;
}

.statistics.solutions-v3 .mobile-only{
    display:none;
}

.statistics.solutions-v3.statistics .container{
  backdrop-filter: unset;
}

.statistics.solutions-v3 .statistics-item .statistics-desc,
.statistics.solutions-v3 .statistics-item .item-head,
.statistics.solutions-v3 .read-more-arrow{
  z-index:2
}

.statistics.solutions-v3 .statistics-item .statistics-desc{
  position:relative;
}


.solutions-v3 .statistics-item::after {
  background: hsla(0, 0%, 100%, .03);
}
 
@media (min-width:768px) and (max-width:991px){
  .solutions-v3 .statistics-item.swiper-slide{
    height:100%;
  }
}

@media (max-width:991px) {
  .statistics.solutions-v3 .container{
    background: none;
  }
  
  .solutions-v3 .statistics-item.active .statistics-desc {
    display:block;
  }
  
  .statistics.solutions-v3 .desktop-only,
  .solutions-v3 .statistics-grid.has-slider{
    display:none;
  }
  
  .statistics.solutions-v3 .mobile-only{
    display:flex;
  }
  
  .statistics.solutions-v3 .read-more-arrow{
    transform:unset;
  }

  .statistics.solutions-v3 .container::before{
    display: none;
  }

  .statistics.solutions-v3 .wrapper{
    padding: 0;
  }

  .solutions-v3 .statistics-item {
      padding: 30px 24px;
      box-shadow: none;
  }

  .solutions-v3 .statistics-grid{
    margin: 0;
  }

  .statistics.solutions-v3 .statistics-item .item-head{
    margin-bottom: 0;
    display:flex;
    justify-content:space-between;
    gap:12px;
  }
  
  .statistics.solutions-v3 .media-slide .statistics-item .item-head{
    display:block;
  }

  .statistics.solutions-v3 .read-more-arrow{
      position:relative;
      top:auto;
      bottom:auto;
      right:auto;
      width:36px;
      flex:unset;
      min-width:36px;
      height:36px;
  }
  
  .statistics.solutions-v3 .media-slide .read-more-arrow{
    bottom: 32px;
    top: auto;
    right: 32px;
    position:absolute;
  }

  .solutions-v3 .statistics-item{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap: 24px;
  }

  .solutions-v3 .statistics-item::after {
    border-radius: 8px;
  }

  .statistics.solutions-v3  .container{
    border-radius: 0;
  }
  
  .solutions-v3 .media-slide,
  .solutions-v3 .container .wrapper > .content{
    padding-left:24px;
    padding-right:24px;
  }
  
  .solutions-v3 .container .wrapper > .content{
    margin-bottom:24px;
  }
  
  .solutions-v3 .media-slide .statistics-item img{
    display:block;
  }
  
  .solutions-v3 .media-slide .statistics-item .statistics-desc{
    display:block;
  }
  
  .solutions-v3 .media-slide .statistics-item{
    padding-bottom:80px;
    gap:0;
  }
  
  .solutions-v3 .media-slide .swiper-pagination{
    bottom:0;
    position:relative;
    margin-top:20px;
  }
  
  .solutions-v3 .media-slide .swiper-pagination-bullet{
    backdrop-filter: blur(4px);
    background: rgba(74, 72, 97, .75);
    border: 1px solid linear-gradient(180deg,hsla(248,7%,58%,.6),rgba(29,26,57,.6));
    box-shadow: 0 0 40px rgba(8, 7, 16, .6);
    height: 16px;
    opacity: 1;
    width: 16px;
  }
  
  .solutions-v3 .media-slide .swiper-pagination-bullet-active{
    background: #009f9d;
  }
  
  .statistics.solutions-v3.has-slider{
    padding-left:0;
    padding-right:0;
  }
  
  
}


@media (min-width:992px) {
  .solutions-v3 .media-slide{
    display:none;
  }
  
  .statistics.solutions-v3  .statistics-item .statistics-title{
    font-size: 32px;
  }

  .solutions-v3 .statistics-grid{
      flex-direction: row;
      gap: 0;
      overflow-x: hidden;
      scrollbar-width: 1px;
  }

  .solutions-v3 .statistics-grid::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  .solutions-v3 .statistics-grid::-webkit-scrollbar-thumb {
    backdrop-filter: blur(40px);
    background-color: rgba(74, 72, 97, 0.4);
    box-shadow: -40px 0px 40px 0px rgba(0, 0, 0, 0.64);
    border-radius: 10px;
    /* box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25); */
  }

  .solutions-v3 .statistics-grid::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #201c29, #201c29 1px, #17141d 0, #17141d);
  }

  .solutions-v3 .statistics-item{
    width: calc(15% + 107px);
    margin-right:-112px;
   background: hsla(0, 0%, 100%, .03) !important;
/*     background: rgba(74, 72, 97, 0.4) !important; */
    padding-bottom: 80px;
    --distance: -3.45rem;
  }
  
  .solutions-v3.max-card-1 .statistics-item{
    width: 100%;
  }
  
  .solutions-v3.max-card-2 .statistics-item{
    width: calc(50% + 56px);
  }
  
  .solutions-v3.max-card-3 .statistics-item{
     width: calc(33% + 78px);
  }
  
  .solutions-v3.max-card-4 .statistics-item{
     width: calc(25% + 84px);
  }
  .solutions-v3.max-card-5 .statistics-item{
     width: calc(20% + 89px);
  }
  
  .solutions-v3.max-card-7 .statistics-item{
     width: calc(14.285% + 96px);
  }
  .solutions-v3.max-card-8 .statistics-item {
    width: calc(12.5% + 98px);
  }
  .solutions-v3.max-card-9 .statistics-item {
    width: calc(11.11% + 99px);
  }

  .solutions-v3 .statistics-item img{
    display: block;
  }

  .solutions-v3 .statistics-item:not(:last-of-type).hover-right{
    transform: translateX(calc(var(--distance) * -2));
  }
  
  .solutions-v3 .statistics-item:not(:first-child).hover-left{
    transform: translateX(calc(var(--distance) * 2));
  }

  .solutions-v3 .statistics-item:hover~.statistics-item{
    transform: translateX(112px);
  }
  
  .solutions-v3 .statistics-item:hover,
  .solutions-v3 .statistics-item:focus-within{
    z-index: 2;
    transform: translateY(-16px);
  }
}

@media (min-width:1200px) {
  .solutions-v3 .statistics-item{
    width: calc(15% + 111px);
    margin-right:-112px;
  }
  .solutions-v3.max-card-1 .statistics-item{
    width: 100%;
  }
  .solutions-v3.max-card-2 .statistics-item{
    width: calc(50% + 56px);
  }
  .solutions-v3.max-card-3 .statistics-item{
     width: calc(33% + 78px);
  }
  .solutions-v3.max-card-4 .statistics-item{
     width: calc(25% + 84px);
  }
  .solutions-v3.max-card-5 .statistics-item{
     width: calc(20% + 89px);
  }
  .solutions-v3.max-card-7 .statistics-item {
    width: calc(14.285% + 96px);
  }
  .solutions-v3.max-card-8 .statistics-item {
    width: calc(12.5% + 98px);
  }
  .solutions-v3.max-card-9 .statistics-item {
    width: calc(11.11% + 99px);
  }
}

@media (min-width:1700px) {
  .solutions-v3 .statistics-item{
    width: calc(16% + 102px);
    margin-right:-112px;
  }
  .solutions-v3.max-card-1 .statistics-item{
    width: 100%;
  }
  .solutions-v3.max-card-2 .statistics-item{
    width: calc(50% + 56px);
  }
  .solutions-v3.max-card-3 .statistics-item{
     width: calc(33% + 78px);
  }
  .solutions-v3.max-card-4 .statistics-item{
     width: calc(25% + 84px);
  }
  .solutions-v3.max-card-5 .statistics-item{
     width: calc(20% + 89px);
  }
  .solutions-v3.max-card-7 .statistics-item {
    width: calc(14.285% + 96px);
  }
  .solutions-v3.max-card-8 .statistics-item {
    width: calc(12.5% + 98px);
  }
  .solutions-v3.max-card-9 .statistics-item {
    width: calc(11.11% + 99px);
  }
  
  
}

@media (min-width:1920px) {
  .solutions-v3 .statistics-item{
    width:353px;
    margin-right:-112px;
  }
  .solutions-v3.max-card-1 .statistics-item{
    width: 100%;
  }
  
  .solutions-v3.max-card-2 .statistics-item{
    width: calc(50% + 56px);
  }
  .solutions-v3.max-card-3 .statistics-item{
     width: calc(33% + 78px);
  }
  .solutions-v3.max-card-4 .statistics-item{
     width: calc(25% + 84px);
  }
  .solutions-v3.max-card-5 .statistics-item{
     width: calc(20% + 89px);
  }
  .solutions-v3.max-card-7 .statistics-item {
    width: calc(14.285% + 96px);
  }
  .solutions-v3.max-card-8 .statistics-item {
    width: calc(12.5% + 98px);
  }
  .solutions-v3.max-card-9 .statistics-item {
    width: calc(11.11% + 99px);
  }
}
.multiple-case-v3{
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    padding-top:40px;
    padding-bottom:40px;
}

.multiple-case-v3 .container{
    border-radius: 24px;
    overflow: hidden;
}

.multiple-case-v3 .wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
}

.multiple-case-v3 .background-media{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
}

.multiple-case-v3 .background-media .bg-image{
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius:8px;
}

.multiple-case-v3 .background-media .bg-image.active{
    display: block;
}

.multiple-case-v3 .background-media .bg-overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(29, 26, 57, 1) 100%);
    backdrop-filter: blur(20px);
    opacity: 0.35;
    border-radius: 24px;
}

.multiple-case-v3 .content-text .title{
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    font-family: var(--font-ibm);
    margin-top: 0;
    margin-bottom: 24px;
}

.multiple-case-v3 .content-text{
    padding-left: 18px;
    padding-right: 18px;
}

.multiple-case-v3 .content-text .tab-content{
    display: none;
}

.multiple-case-v3 .content-text .tab-content.active{
    display: block;
}

.multiple-case-v3 .content-wrap{
    z-index: 1;
    width: 100%;
}

.multiple-case-v3 .content-text p,
.multiple-case-v3 .content-text div{
    font-family: var(--font-ibm);
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 24px;
}

.multiple-case-v3 .client-list{
    margin-top: 0;
    margin-bottom: 60px;
    padding: 8px 16px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    list-style: none;
    
}

.multiple-case-v3 .client-list .client-item{
    flex: 1;
}

.multiple-case-v3 .client-list .client-item .item-button{
    position: relative;
    background-color: transparent;
    padding: 24px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, 0.4);
    border: unset;
    border-color: 1px solid rgba(74, 72, 97, 0.4);
    outline: unset;
    outline-color:rgba(74, 72, 97, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    pointer-events: all;
    cursor: pointer;
}

.multiple-case-v3 .client-list .client-item:first-child .item-button{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.multiple-case-v3 .client-list .client-item:last-child .item-button{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.multiple-case-v3 .client-list .client-item:not(:first-child):not(:last-child){
    border-left: 1px solid rgba(74, 72, 97, 0.4);
    border-right: 1px solid rgba(74, 72, 97, 0.4);
}

.multiple-case-v3 .client-list .client-item:not(:first-child):not(:last-child) .item-button{
    border-radius: 0px;
}

.multiple-case-v3 .client-list .client-logo{
    display: block;
    width: auto;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

.multiple-case-v3 .client-list .client-item .client-logo{
    display: block;
    width: 58px;
    height: 16px;
    object-fit: contain;
    object-position: center;
    opacity: 0.4;
}

.multiple-case-v3 .client-list .client-item.active .client-logo{
    opacity: 1;
}

.multiple-case-v3 .client-list .client-item .item-button::after{
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid rgba(142, 140, 156, 0.4);
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.multiple-case-v3 .client-list .client-item.active .item-button::after{
    opacity: 1;
}

.multiple-case-v3 .client-list .client-item .item-button:hover img{
    opacity: 1;
}

@media(min-width:992px){
    .multiple-case-v3{
        padding-left: 0;
        padding-right: 0;
        padding-top:80px;
        padding-bottom:80px;
    }

    .multiple-case-v3 .client-list .client-item .client-logo{
        width: auto;
        height: 20px;
    }

    .multiple-case-v3 .client-list .client-item:not(:first-child):not(:last-child){
        border-top: 1px solid rgba(74, 72, 97, 0.4);
        border-bottom: 2px solid rgba(74, 72, 97, 0.4);
        border-left: unset;
        border-right: unset;
    }

    .multiple-case-v3 .content-wrap{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px;
    }

    .multiple-case-v3 .client-list{
        flex-direction: column;
        margin-bottom: 0px;
        padding:0;
    }

    .multiple-case-v3 .content-text{
        margin-bottom: 0px;
        padding-left: 60px;
        max-width: 812px;
        margin-right: auto;
    }

    .multiple-case-v3 .client-list .client-item:first-child .item-button{
        border-top-right-radius: 16px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 16px;
    }
    
    .multiple-case-v3 .client-list .client-item:last-child .item-button{
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .multiple-case-v3 .client-list .client-item .item-button{
        padding: 45px 30px;
    }

    .multiple-case-v3 .client-list .client-item .item-button::after{
        left: unset;
        top: 50%;
        transform: translateY(-50%) rotate(270deg);
        right: -30px;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid hsla(248,7%,58%,.4);
    }

    .multiple-case-v3 .content-text .title{
        font-size: 28px !important;
        line-height: 36px !important;
        font-weight: 500;
    }

    .multiple-case-v3 .content-text p,
  .multiple-case-v3 .content-text div{
        font-size: 16px;
        line-height: 24px;
    }
  
    .multiple-case-v3 .buttons-wrap{
        align-items:flex-start;
    }
  
    .multiple-case-v3 .cta-button{
        display:inline-block;
    }
  
    .multiple-case-v3 .background-media .bg-image{
        border-radius:24px;
    }
}

@media(min-width:1700px){
    .multiple-case-v3 .content-wrap{
        padding: 80px;
    }

    .multiple-case-v3 .client-list .client-item .item-button{
        padding: 90px 60px;
    }

    .multiple-case-v3 .content-text .title{
        font-size: 32px !important;
        line-height: 40px !important;
        font-weight: 500;
        margin-bottom: 32px;
    }

    .multiple-case-v3 .content-text p,
  .multiple-case-v3 .content-text div{
        font-size: 18px !important;
        margin-bottom: 32px;
    }

    .multiple-case-v3 .content-text{
        margin-bottom: 0px;
        padding-left: 80px;
        max-width: 812px;
        margin-right: auto;
    }

    .multiple-case-v3 .client-list .client-item .client-logo{
        width: auto;
        height: 33.15px;
    }
}

@media (max-width:992px){
    .multiple-case-v3 .cta-button{
        display: block;
        text-align: center;
    }
  
  .client-item.active{
    position: relative;
  }

  .client-item:after {
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 17px solid rgba(29,26,57,0.4);
    bottom: -16px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity .4s ease-in-out;
    z-index: -1
  }
  
  .client-item.active:after {
    opacity: 1;
  }

    .multiple-case-v3 .container{
        border-radius: 8px;
        padding-left: 0px;
        padding-right: 0px;
    }
  
    .multiple-case-v3 .wrapper{
        border-radius: 8px;
    }

    .multiple-case-v3 .wrapper::before{
        border-radius: 8px;
    }
  
  .multiple-case-v3 .client-list .client-item .item-button{
    padding:0px 10px;
    min-height:64px;
    justify-content:center;
  }
  
  
  .multiple-case-v3 .client-list .client-item .item-button:before {
    background: linear-gradient(180deg, hsla(248, 7%, 58%, .6), rgba(29, 26, 57, .6));
      border-radius: 7px;
      content: "";
      inset: 0;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      padding: 1px;
      position: absolute;
  }

  .multiple-case-v3 .client-list .client-item:first-child .item-button:before {
    border-bottom-right-radius: 0;
      border-top-right-radius: 0;
  }
  .multiple-case-v3 .client-list .client-item:not(:first-child):not(:last-child) .item-button:before{
    border-radius:0;
  }
  .multiple-case-v3 .client-list .client-item:last-child .item-button:before {
    border-bottom-left-radius:  0;
      border-top-left-radius: 0;
  }

  .multiple-case-v3 .client-list .client-item:not(:first-child):not(:last-child){
    border:none;
  }
}
.faq-accordion.v3-style .wrapper {
    display:grid;
    justify-content:space-between;
    gap:24px;
  backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
  background:transparent;
}

.faq-accordion.v3-style .wrapper:before{
  display:none;
}

.faq-accordion.v3-style .wrapper .question-wrap,
.faq-accordion.v3-style .answer-wrap{
    flex:1;
    position:relative;
}



.faq-accordion.v3-style .accordion-item{
    border-radius:0;
    padding:32px 0;
    border:none;
    border-top:1px solid #4A4861;
    margin-bottom:0;
}

.faq-accordion.v3-style .accordion-item:last-child{
    border-bottom:1px solid #4A4861;
}

.faq-accordion.v3-style .wrap-title,
.faq-accordion.v3-style .accordion-item .accordion-header,
.faq-accordion.v3-style .answer-wrap .default-answer .card-title{
    color:#fff;
}

.faq-accordion.v3-style .answer-wrap .default-answer .content{
    height:100%;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
  min-heigt:322px;
}

.faq-accordion.v3-style .answer-wrap .default-answer{
    height:100%;
}

.faq-accordion.v3-style .answer-wrap .default-answer .background-image{
    position:relative;
    width:100%;
    border-radius:16px;
    overflow:hidden;
    height:100%;
    position:absolute;
}

.faq-accordion.v3-style .bg-overlay{
        backdrop-filter: blur(20px);
    background: linear-gradient(180deg, #000, #1d1a39);
    border-radius: 16px;
    height: 100%;
    left: 0;
    opacity: .35;
    position: absolute;
    top: 0;
    width: 100%;
}

.faq-accordion.v3-style .answer-wrap .default-answer .background-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.faq-accordion.v3-style .answer-wrap .default-answer .text-wrapper{
    padding:24px 16px;
    z-index:2;
}

.faq-accordion.v3-style .answer-wrap .default-answer .cta-button{
    display:inline-block;
}

.faq-accordion.v3-style .buttons-wrap{
    align-items:flex-start    
}

.faq-accordion.v3-style .cta-button{
  padding:14px 24px;
  text-transform:none;
}

.faq-accordion.v3-style .read-more-arrow {
    align-items: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
    border-radius: 50%;
    bottom: 0;
    display: flex;
    height: 36px;
    justify-content: center;
    width: 36px;
    z-index: 1;
  transform:rotate(90deg);
  min-width:36px;
}

.faq-accordion.v3-style .accordion-item .accordion-header{
    align-items:center;
  gap:16px;
}

.faq-accordion.v3-style .accordion-item.active .read-more-arrow{
    transform:rotate(270deg);
}

.faq-accordion.v3-style .answer{
    display:none;
    padding:40px;
    background-color:rgba(0, 159, 157, 0.4);
    border-radius:24px;
}

.faq-accordion.v3-style .answer-wrap{
        display: flex;
    flex-direction: column;
}

.faq-accordion.v3-style .title-container {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-bottom:40px;
    border-bottom:1px solid rgba(0, 159, 157, 0.5);
    margin-bottom:40px;
      gap:24px;
}

.faq-accordion.v3-style .title-container > *{
    margin-bottom:0;
    color:#fff;
}

.faq-accordion.v3-style .answer .content{
    color:#fff;
}

.faq-accordion.v3-style .answer .cta-button{
    background-color:#fff;
    color:#1D1A39;
    text-transform:none;
  position:relative;
}

.faq-accordion.v3-style .accordion-content{
  display:block;
  color:#fff;
      transition: none;
}

.faq-accordion.v3-style .accordion-item.active .accordion-content{
  margin-top:24px;
}

.faq-accordion.v3-style .accordion-content p{
  color:#fff;
}

.faq-accordion.v3-style .accordion-header{
  font-size:14px;
}

.faq-accordion.v3-style .accordion-item.active .accordion-header{
  padding-bottom:0;
}

.faq-accordion.v3-style .answer-wrap .default-answer .content{
  aspect-ratio:1/1;
}

.faq-accordion.v3-style .btn-wrap{
  margin-top:16px;
}

.faq-accordion.v3-style .answer .content-container{
    z-index:9;
    position:relative;
  }

@media (min-width:992px){
  .faq-accordion.v3-style .wrapper .question-wrap{
      max-width:732px;
  }
  
  .faq-accordion.v3-style .answer-wrap .default-answer .background-image{
    border-radius:24px;
}
  
  .faq-accordion.v3-style .answer-wrap{
      max-width:594px;
      margin-left: auto;
  }
  
  .faq-accordion.v3-style .answer-wrap .default-answer .content{
    aspect-ratio:unset;
  }
  
  .faq-accordion.v3-style .read-more-arrow {
    transform:rotate(90deg);
    flex: unset;
  }
  
  .faq-accordion.v3-style .answer-wrap .default-answer .text-wrapper{
      padding:40px;
  }
  
  .faq-accordion.v3-style .wrapper .question-wrap.has-active .accordion-item:not(.active) .accordion-header{
    color:rgba(255, 255, 255, 0.6);
  }

  
  .faq-accordion.v3-style .answer-wrap .default-answer.hide{
    display:none;
  }
  
  
  
  .faq-accordion.v3-style .accordion-item.active .read-more-arrow{
      transform:unset;
  }
  
  
  .faq-accordion.v3-style .wrapper {
      grid-template-columns:repeat(2, minmax(0, 1fr) );
  }
  
  .faq-accordion.v3-style .wrapper {
      padding:40px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
        background: hsla(0, 0%, 100%, .03);
  }

  .faq-accordion.v3-style .wrapper:before{
    display:block;
  }
  
  .faq-accordion.v3-style .answer.active{
    display:block;
    height:100%;
  }

  .faq-accordion.v3-style .accordion-content{
    display:none;
  }

  .faq-accordion.v3-style .accordion-header{
    font-size:16px;
  }
}

@media (min-width:1700px){
  .faq-accordion.v3-style .accordion-header{
    font-size:18px;
  }
}
.list-view-v3{
    position: relative;
}

.list-view-v3 .wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 700px;
    overflow-y: auto;
    scrollbar-width: 8px;
    border-radius: 16px;
    scrollbar-color: #ffffff rgba(74, 72, 97, 0.2);
    padding-right: 8px;
}

.list-view-v3 .wrapper::-webkit-scrollbar-track {
    background: rgba(74, 72, 97, 0.2);
    border-radius: 16px;
    -webkit-box-shadow: inset 0 0 16px rgba(74, 72, 97, 0.2);
}

.list-view-v3 .wrapper::-webkit-scrollbar {
    width: 12px;
    background-color: rgba(74, 72, 97, 0.2);
}

.list-view-v3 .wrapper::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 16px;
    border: 3px solid rgba(74, 72, 97, 0.2);
}

.list-view-v3 .wrapper {
    -webkit-overflow-scrolling: touch; /* Ensure smooth scrolling */
}

.list-view-v3 .list-item{
    border-radius: 16px;
    margin-bottom: 16px;
}

.list-view-v3 .list-item::before{
    border-radius: 16px;
}

.list-view-v3 .list-item .card-item{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 1;
    gap: 16px;
}

.list-view-v3 .card-item .image-wrap{
    margin: 16px;
    margin-right: 0;
    max-width: 223px;
}

.list-view-v3 .card-item .card-image{
    display: block;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-view-v3 .content-wrap{
    padding-top: 16px;
    padding-bottom: 16px;
}

.list-view-v3 .content-wrap .title{
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    margin-top: 0;
    margin-bottom: 4px;
}

.list-view-v3 .content-wrap p{
    font-family: var(--font-ibm);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
}

.list-view-v3 .content-wrap .tag-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.list-view-v3 .content-wrap .tag-item .tag-link {
    border: 1px solid #4A4861;
    padding: 4px 12px;
    text-decoration: none;
    color: #C6C5CD;
    font-size: 14px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
  display:inline-block;
}

.list-view-v3 .content-wrap .date {
    border: 1px solid #4A4861;
    padding: 4px 12px;
    text-decoration: none;
    color: #C6C5CD;
    font-size: 14px;
    font-weight:500;
    border-radius: 8px;
    line-height: normal;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
}

.list-view-v3 .content-wrap .upper-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.list-view-v3 .cta-group{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-right: 16px;
    align-self: center;
}

@media(min-width:992px){
    .list-view-v3 .content-wrap .upper-content{
      flex-direction: row;
      align-items: flex-start;
  }
  
    .list-view-v3 .content-wrap .title{
        font-family: var(--font-ibm);
        font-weight: 500;
        font-size: 32px;
        line-height: 1.2;
        color: #fff;
        margin-top: 0;
        margin-bottom: 8px;
    }

    .list-view-v3 .content-wrap p{
        font-size: 16px;
    }
  
    .list-view-v3 .content-wrap .date{
        flex: 0 0 auto;
    }

    .list-view-v3 .list-item .card-item{
        gap: 20px;
    }
  
    .list-view-v3 .card-item .image-wrap{
        min-width:223px;
        height:181px;
        align-self:center;
    }

    .list-view-v3 .cta-group{
        margin-right: 20px;
        margin-left: auto;
    }

    .list-view-v3 .content-wrap .upper-content{
        gap: 16px;
    }

    .list-view-v3 .content-wrap .tag-list{
        gap: 16px;
    }

    .list-view-v3 .content-wrap{
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .list-view-v3 .wrapper{
        padding-right: 16px;
    }
}

@media(min-width:1700px){
    .list-view-v3 .content-wrap .title{
        font-family: var(--font-ibm);
        font-weight: 500;
        font-size: 40px !important;
        line-height: 1.2;
        color: #fff;
        margin-top: 0;
        margin-bottom: 16px;
    }

    .list-view-v3 .content-wrap p{
        font-size: 18px;
        line-height: 24px;
    }

    .list-view-v3 .list-item .card-item{
        gap: 40px;
    }

    .list-view-v3 .cta-group{
        margin-right: 40px;
    }

    .list-view-v3 .content-wrap{
        padding-top: 34px;
        padding-bottom: 24px;
    }

    .list-view-v3 .list-item{
        margin-bottom: 24px;
    }

    .list-view-v3 .wrapper::-webkit-scrollbar {
        width: 18px;
        background-color: #ffffff;
    }
}

@media(max-width:992px){
    .list-view-v3 .list-item .card-item{
        flex-direction: column;
    }
    .list-view-v3 .card-item .image-wrap{
        max-width: 100%;
        margin-right: 16px;
        margin-bottom: 0;
    }

    .list-view-v3 .content-wrap{
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 0;
    }

    .list-view-v3 .content-wrap .title{
        font-size: 32px;
    }

    .list-view-v3 .cta-group{
        margin-right: 0px;
        margin-left: 0px;
        padding: 0 16px;
        width: 100%;
        margin-bottom: 16px;
    }
}
.search-filter-v3 {
    position: relative;
    z-index:9;
}

.search-filter-v3.hs-search-v3{
  padding-top:40px;  
}

.search-filter-v3 .hs-search-field--open .hs-search-field__suggestions{
  display:none;
}

.grid-3-cols.sub-solutions-v3.hs-search-v3{
      padding-bottom:40px;
    }

.grid-3-cols.sub-solutions-v3 .grid .text-center.text-white{
  grid-column: span 3 / span 3;
}

.search-filter-v3 .content-wrap {
    position: relative;
    z-index: 1;
    padding: 24px;
  color:#fff;
}

.search-filter-v3 .content-wrap .title {
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
    margin-top: 0;
    margin-bottom: 8px;
}

.search-filter-v3 .content-wrap p {
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
}

.search-filter-v3 .filter-wrap {
    margin-top: 30px;
}

.search-filter-v3 .cta-button.view-all-btn{
  height:auto;
  padding-top:10px;
  padding-bottom:10px;
}

.search-filter-v3 form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-filter-v3 fieldset {
    border: unset;
    padding: 0;
    margin: 0;
    flex: 1;
}

.search-filter-v3 input[type="text"],
.search-filter-v3 input[type="date"] {
    font-family: var(--font-ibm);
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 16px;
    border: 1px solid #4A4861;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
    width: 100%;
}

.search-filter-v3 input::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.search-filter-v3 input::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

.search-filter-v3 input:-ms-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.search-filter-v3 input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.search-filter-v3 input[type="date"] {
    accent-color: white;
}

.search-filter-v3 input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.search-filter-v3 select {
    font-family: var(--font-ibm);
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 16px;
    border: 1px solid #4A4861;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
    min-width: 200px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.search-filter-v3 input[type="text"]::placeholder, 
.search-filter-v3 input[type="date"]::placeholder{
    opacity:0.5;
}

.search-filter-v3 select option {
    background-color: rgba(74, 72, 97, .4);
}

/*choices overide css*/
.search-filter-v3 .choices__inner {
    font-family: var(--font-ibm);
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 16px;
    border: 1px solid #4A4861;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
}

.search-filter-v3 .choices[data-type*='select-one']::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3e%3cpath fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2 5l6 6 6-6"/%3e%3c/svg%3e') no-repeat center center;
    background-size: contain;
    border: none;
    margin-top: -6px;
    pointer-events: none;
}

.search-filter-v3 .choices[data-type*=select-one] .choices__inner {
    padding-bottom: 10px;
    padding-top:10px;
    height:44px;
}

.search-filter-v3 .choices__list--single {
    padding: 0px;
}

.search-filter-v3 .is-open .choices__inner {
    border-color: #4A4861;
    border-radius: 16px 16px 0px 0px;
}

.search-filter-v3 .choices__list--dropdown,
.search-filter-v3 .choices__list[aria-expanded] {
    font-family: var(--font-ibm);
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, 0.4);
    border: 1px solid #4A4861;
}

.search-filter-v3 .choices__list--dropdown .choices__item--selectable.is-highlighted,
.search-filter-v3 .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    font-family: var(--font-ibm);
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
}

.search-filter-v3 .is-open .choices__list--dropdown,
.search-filter-v3 .is-open .choices__list[aria-expanded] {
    border-color: #4A4861;
    border-radius: 0px 0px 16px 16px;
}

.search-filter-v3 .is-focused:not(.is-open) .choices__inner {
    border-radius: 16px;
}

.search-filter-v3 .cta-button {
    border-radius: 16px;
    min-width: 145px;
    align-items:center;
    justify-content:center;
    border: unset;
    border-color: transparent;
}

.search-filter-v3 .choices__list--single .choices__item{
  font-family: var(--font-ibm) !important;
  font-weight: 500;
  font-size:14px;
}

.search-filter-v3 .choices__list--dropdown .choices__list{
  -webkit-overflow-scrolling: touch; /* Ensure smooth scrolling */
  backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, .4);
  max-height: unset !important;
}

.search-filter-v3 .choices__list--dropdown .choices__list::-webkit-scrollbar-track {
    background: rgba(74, 72, 97, 0.2);
    border-radius: 16px;
    -webkit-box-shadow: inset 0 0 16px rgba(74, 72, 97, 0.2);
}

.search-filter-v3 .choices__list--dropdown .choices__list::-webkit-scrollbar {
    width: 2px;
    background-color: rgba(74, 72, 97, 0.2);
}

.search-filter-v3 .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
    background-color: rgba(74, 72, 97, .4);
    border-radius: 16px;
    border: 3px solid rgba(74, 72, 97, 0.2);
}

.search-filter-v3 .choices__list.choices__list--dropdown.is-active{
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(29, 26, 57, 0.6);
}

.search-filter-v3 .choices__list.choices__list--dropdown.is-active > .choices__list{
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(29, 26, 57, 0.6);
}

.search-filter-v3 .choices__list.choices__list--dropdown.is-active > .choices__list::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0;
    padding: 0;
    background: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/*customize datepicker*/
.air-datepicker {
    font-family: var(--font-ibm) !important;
    background: rgba(74, 72, 97, 0.26) !important;
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
    background: rgba(74, 72, 97, 0.26);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-)::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background-color: transparent;
    background: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.air-datepicker-nav {
    border-bottom: unset !important;
}

.air-datepicker--buttons,
.air-datepicker--time {
    border-top: unset !important;
}

.air-datepicker-nav--title {
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    padding: 0px !important;
}

.air-datepicker-button.custom-apply-button {
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background: #009F9D;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    margin: 0;
}

.air-datepicker-button.custom-reset-button {
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border: 1px solid #009F9D;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    margin: 0;
}

.air-datepicker-button.custom-reset-button:hover{
  color:#009F9D;
}

.air-datepicker-cell.-year-.-other-decade-,
.air-datepicker-cell.-day-.-other-month- {
    color: transparent !important;
}

.air-datepicker-cell {
    color: #fff;
}

.air-datepicker-buttons {
    column-gap: 16px;
}

.air-datepicker--buttons {
    margin-top: 16px;
    padding: 0px !important;
}

.air-datepicker-body--day-names {
    margin-top: 16px !important;
    margin-bottom: 8px !important;
    grid-template-columns: repeat(7, 40px) !important;
    grid-auto-rows: 40px !important;
}

.air-datepicker--navigation {
    margin-bottom: 16px;
    position: relative;
}

.air-datepicker-body--day-name {
    color: #fff !important;
}

.air-datepicker-cell.-current- {
/*     background-color: transparent !important; */
    /* your preferred hover background */
  background: #D9D9D9 !important;
   color: #1D1A39 !important;
    border-radius: 50%;
    /* your preferred hover text color */
/*     border: 2px solid #009F9D; */
}

.air-datepicker-cell.-selected- {
    color: #1D1A39 !important;
    background: #D9D9D9 !important;
    border-radius: 50% !important;
}

.air-datepicker-body--cells.-days- {
    grid-template-columns: repeat(7, 40px) !important;
    grid-auto-rows: 40px !important;
}

.air-datepicker-cell.-day-:hover {
    color: #1D1A39 !important;
    background: #D9D9D9 !important;
    border-radius: 50% !important;
}

.air-datepicker-cell.-month-:hover {
    color: #1D1A39 !important;
    background: #D9D9D9 !important;
    border-radius: 50% !important;
}

.air-datepicker-cell.-month- {
    padding: 8px;
    width: 48px;
    height: 48px;
}

.air-datepicker-nav--title:hover {
    background: transparent !important;
}

.air-datepicker-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.air-datepicker--content {
    background: rgba(142, 140, 156, 0.4) !important;
    border-radius: 21px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.current-month-display {
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    width: 100%;
    text-align: left;
    padding-left: 16px;
}

.air-datepicker-nav--action[data-action="next"] {
    position: absolute;
    right: 30px;
    bottom: -60px;
    background: rgba(74, 72, 97, 0.4);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid hsla(248, 7%, 58%, .6) !important;
}

.air-datepicker-nav--action[data-action="prev"] {
    position: absolute;
    right: 76px;
    bottom: -60px;
    background: rgba(74, 72, 97, 0.4);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid hsla(248, 7%, 58%, .6) !important;
}

.air-datepicker-cell.-in-range-{
    background: transparent;
    border-radius: 50%;
    border: 2px solid #009F9D;
}

@media(min-width:992px) {
    .grid-3-cols.sub-solutions-v3.hs-search-v3{
      padding-bottom:80px;
    }

    .search-filter-v3 .content-wrap .title {
        margin-bottom: 16px;
    }

    .search-filter-v3 .content-wrap p {
        font-size: 16px;
    }

    .search-filter-v3 .filter-wrap {
        margin-top: 24px;
    }

    .search-filter-v3 form {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .search-filter-v3 input[name="search"] {
        max-width: 260px;
        width: 100%;
    }

    .search-filter-v3 .content-wrap {
        padding-top: 60px;
        padding-bottom: 30px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .search-filter-v3 input[type="text"],
    .search-filter-v3 input[type="date"] {
        padding: 14px 16px;
        font-size: 16px;
        line-height:16px;
        height:44px;
    }

    .search-filter-v3 select {
        padding: 14px 16px;
        min-width: auto;
    }

    .search-filter-v3 form {
        gap: 10px;
    }

    .search-filter-v3 input[name="date"] {
        max-width: 140px;
    }

    .search-filter-v3 .cta-button {
        min-width: 129px;
        height:44px;
    }
  
    .search-filter-v3 .choices__list--single .choices__item{
      font-family: var(--font-ibm) !important;
      font-weight: 500;
      font-size:16px;
      white-space: nowrap;
      text-overflow: ellipsis;
      width: 94px;
      overflow: hidden;
    }
  
  .search-filter-v3 input[type="text"],
  .search-filter-v3 input[type="date"] {
    min-width:150px;
  }
  
  .search-filter-v3 .cta-button.view-all-btn{
    height:auto;
    padding-top:10px !important;
    padding-bottom:10px !important;
  }
}

@media(min-width:1300px) {
    .search-filter-v3 input[name="search"] {
        min-width: 260px;
        width: 100%;
    }
}

@media(min-width:1400px) {
    .search-filter-v3 select {
        min-width: 140px;
    }
}

@media (min-width:992px) and (max-width:1500px){
  .air-datepicker.-is-mobile-.-active-:not(.-custom-position-){
    min-width:420px;
  }
  
  .air-datepicker-body--cells{
    gap:16px;
  }
  
  .air-datepicker-body--day-names{
    gap:16px;
  }
  
  .air-datepicker{
    width:420px !important;
  }
  
  .search-filter-v3 .choices__list--dropdown, .search-filter-v3 .choices__list[aria-expanded]{
    min-width:200px;
  }
}

@media(min-width:1700px) {
    .search-filter-v3 .content-wrap .title {
        font-family: var(--font-ibm);
        font-weight: 500;
        font-size: 40px;
        line-height: 1.2;
        color: #fff;
        margin-top: 0;
        margin-bottom: 24px;
    }

    .search-filter-v3 .content-wrap p {
        font-size: 18px;
        line-height: 24px;
    }

    .search-filter-v3 .filter-wrap {
        margin-top: 24px;
    }

    .search-filter-v3 .content-wrap {
        padding-top: 60px;
        padding-bottom: 30px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .search-filter-v3 input[name="search"] {
        width: 100%;
        min-width: 479px;
        max-width: 479px;
    }

    .search-filter-v3 input[type="text"],
    .search-filter-v3 input[type="date"] {
        padding: 14px 24px;
    }

    .search-filter-v3 select {
        min-width: 200px;
        padding: 14px 24px;
    }

    .search-filter-v3 form {
        gap: 16px;
    }

    .search-filter-v3 .cta-button {
        min-width: 165px;
    }

    .search-filter-v3 input[name="date"] {
        max-width: 180px;
    }

    .air-datepicker {
        width: 568px !important;
    }

    .air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
        min-width: 568px;
        border-radius: 24px;
        padding-top: 44px;
        padding-left: 41px;
        padding-right: 45px;
        padding-bottom: 43px;
    }

    .air-datepicker.-is-mobile-.-active-:not(.-custom-position-)::before {
        border-radius: 24px;
    }

    .air-datepicker-button {
        height: 45px !important;
    }

    .air-datepicker-buttons {
        column-gap: 28px;
    }

    .air-datepicker--buttons {
        margin-top: 32px;
        padding: 0px !important;
    }

    .air-datepicker-body--day-names {
        margin-top: 33px !important;
        margin-bottom: 40px !important;
    }

    .air-datepicker--navigation {
        margin-bottom: 24px;
        position: relative;
    }

    .air-datepicker-button.custom-reset-button {
        font-size: 18px;
    }

    .air-datepicker-button.custom-apply-button {
        font-size: 18px;
    }

    .air-datepicker-cell {
        font-size: 24px !important;
    }

    .air-datepicker-body--day-name {
        font-size: 24px !important;
    }

    .air-datepicker--content {
        background: rgba(142, 140, 156, 0.4) !important;
        border-radius: 21px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .air-datepicker-nav--title {
        font-size: 40px !important;
    }

    .current-month-display {
        font-size: 24px;
        padding-left: 20px;
    }

    .air-datepicker-body--cells {
        gap: 24px;
    }

    .air-datepicker-nav--action[data-action="next"] {
        position: absolute;
        right: 50px;
        bottom: -96px;
        background: rgba(74, 72, 97, 0.4);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 2px;
        border: 1px solid hsla(248, 7%, 58%, .6) !important;
    }

    .air-datepicker-cell.-month- {
        padding: 8px;
        width: 64px;
        height: 64px;
    }

    .air-datepicker-nav--action[data-action="prev"] {
        position: absolute;
        right: 100px;
        bottom: -96px;
        background: rgba(74, 72, 97, 0.4);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 4px;
        border: 1px solid hsla(248, 7%, 58%, .6) !important;
    }

    .air-datepicker-nav--action svg {
        width: 36px !important;
        height: 36px !important;
    }

    .air-datepicker-body--cells.-days- {
        grid-template-columns: repeat(7, 47px) !important;
        grid-auto-rows: 47px !important;
    }

    .air-datepicker-body--day-names {
        margin-top: 16px !important;
        margin-bottom: 16px !important;
        grid-template-columns: repeat(7, 47px) !important;
        grid-auto-rows: 47px !important;
        gap: 24px;
    }
  
    .search-filter-v3 .choices[data-type*=select-one] .choices__inner {
        padding-bottom: 12px;
/*         height:52.69px; */
      height:44px;
    }
  
    .search-filter-v3 .choices__list--single .choices__item{
      font-family: var(--font-ibm) !important;
      font-weight: 500;
      white-space: nowrap;
      text-overflow: ellipsis;
      width: 150px;
      overflow: hidden;
    }
}
.timeline-v3{
    position: relative;
}

.timeline-v3 .title{
    font-family: var(--font-ibm);
    font-size: 24px;
    line-height:30px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    margin-top: 0;
}

.timeline-v3 .timeline-grid{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-v3 .timeline-card{
    cursor: pointer;
    background: rgba(74, 72, 97, 0.4) !important;
    transition: background 400ms ease-in-out;
    border-radius: 24px;
    padding: 20px 19px 32px;
}

.timeline-v3 .timeline-item:hover .timeline-card{
/*     background: rgba(74, 72, 97, 0.5) !important; */
    background: linear-gradient(0deg, rgba(142, 140, 156, 0.05), rgba(142, 140, 156, 0.05)),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, rgba(0, 159, 157, 0.3) 40.7%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.timeline-v3 .timeline-card .timeline-title{
    font-family: var(--font-ibm);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    margin-bottom: 16px;
    margin-top: 0;
}

.timeline-v3 .timeline-card p{
    font-family: var(--font-ibm);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 22px;
    margin-bottom: 0;
    margin-top: 0;
}

.timeline-v3 .timeline-card .content{
    position: relative;
    z-index: 1;
}

.timeline-v3 .timeline-item .number{
    border: 1px solid hsla(248,7%,58%,.6);
    background: rgba(74, 72, 97, 0.4) !important;
}

.timeline-v3 .timeline-item:hover .number{
/*     background: rgba(74, 72, 97, 0.5) !important; */
    background: rgba(0, 159, 157, 0.4) !important;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%) !important;
    color: #fff;
}

.timeline-v3 .timeline-item.activated .timeline-card{
    background: linear-gradient(0deg, rgba(142, 140, 156, 0.05), rgba(142, 140, 156, 0.05)),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, rgba(0, 159, 157, 0.3) 40.7%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.timeline-v3 .timeline-item.activated .number{
    background: rgba(0, 159, 157, 0.4) !important;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%) !important;
    color: #fff;
}

@media(min-width:992px){
    .timeline-v3 .title{
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 32px;
    }

    .timeline-v3 .timeline-grid{
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-bottom: 64px;
    }

    .timeline-v3 .timeline-grid .timeline-line{
        position: absolute;
        border: 1px solid rgba(74, 72, 97, .4);
        width: 100%;
        bottom: calc(80px + 20px);
        left: 250px;
    }

    .timeline-v3 .timeline-item{
        position: relative;
    }

    .timeline-v3 .timeline-item .number{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -64px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid hsla(248,7%,58%,.6);
        color: #4A4861;
        font-size: 20px;
        border-radius: 50%;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        background-color: rgba(74, 72, 97, .4);
        cursor: pointer;
    }

    .timeline-v3 .timeline-card{
        border-radius: 24px;
        padding: 20px 19px 32px;
        height: 100%;
    }

    .timeline-v3 .timeline-card p{
        font-family: var(--font-ibm);
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        line-height: 24px;
    }

    .timeline-v3 .timeline-card .timeline-title{
        font-family: var(--font-ibm);
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        color: #fff;
        margin-bottom: 16px;
    }
}

@media(min-width:1000px) and (max-width:1200px){
    .timeline-v3 .timeline-grid .timeline-line{
        left: 150px;
    }
}

@media(min-width:1700px){
  
    .timeline-v3 .title{
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 32px;
    }
    
    .timeline-v3 .timeline-card{
        padding: 40px 38px 64px;
    }

    .timeline-v3 .timeline-grid{
        margin-bottom: 81px;
    }

    .timeline-v3 .timeline-item .number{
        bottom: -81px;
        font-size: 24px;
        width: 48px;
        height: 48px;
    }

    .timeline-v3 .timeline-grid .timeline-line{
        bottom: calc(80px + 24px);
        left: 300px;
    }

    .timeline-v3 .timeline-card .timeline-title{
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
    }
  
    .timeline-v3 .timeline-card p{
        font-size: 18px;
        line-height: 24px;
    }
}

@media(min-width:1920px){
    .timeline-v3 .title{
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 57px;
    }
}

@media(min-width:2500px){
    .timeline-v3 .timeline-grid .timeline-line{
        left: 25%;
    }
}

@media(max-width:992px){
    .timeline-v3 .timeline-grid .timeline-line{
        position: absolute;
    }

    .timeline-v3 .timeline-grid{
        position: relative;
        overflow: hidden;
    }

    .timeline-v3 .timeline-item{
        margin-left: 40px;
        position: relative;
    }

    .timeline-v3 .timeline-item .number{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border: 1px solid #4A4861;
        color: #4A4861;
        font-size: 16px;
        border-radius: 50%;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        background-color: rgba(74, 72, 97, .4);
        cursor: pointer;
    }

    .timeline-v3 .timeline-grid .timeline-line{
        position: absolute;
        border: 1px solid rgba(74, 72, 97, .4);
        width: 2px;
        height: 100%;
        left: 15px;
        top: 80px;
    }
}
.footer-3 {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
}

.footer-3 .container {
    background-color: rgba(29, 26, 57, 0.9);
    backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding-bottom: 16px;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    box-shadow: 0 4px 12px 0 #1d1a3933;
}

.footer-3 .footer-newsletter {
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid #4A4861;
    padding-bottom: 16px;
}

.footer-3 .footer-nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-3 .footer-newsletter p {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0px;
    margin-bottom: 24px;
}

.footer-3 .footer-newsletter .footer-content p{
  font-size: 13px;
}

.footer-3 .footer-newsletter p a {
    font-size: inherit;
    color: inherit;
}

.footer-3 .footer-newsletter form {
    margin-bottom: 24px;
    display: flex;
    flex-direction: row;
}

.footer-3 .footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #8E8C9C;
    line-height: 24px;
    margin-top: 0px;
    margin-bottom: 16px;
}

.footer-3 .footer-nav-wrap p {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 24px;
}

.footer-3 .footer-nav-wrap p a {
    color: inherit;
    font-size: inherit;
}

.footer-3 .start-chat {
    display: flex;
    flex-direction: row;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    gap: 8px;
    align-items:center;
}

.footer-3 .chat-icon {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: cover;
}

.footer-3 .start-chat .chat-label {
    margin: 0;
}

.footer-3 .get-in-touch {
    border-bottom: 1px solid #4A4861;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-3 .get-in-touch .copyright {
    display: none;
}

.footer-3 .copyright {
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: #8E8C9C;
    font-weight: 400;
}


.footer-3 .menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
}

.footer-3 .menu-item {
    margin: 0;
}

.footer-3 .menu-item a,
.footer-3 .menu a{
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    line-height: 24px;
    text-decoration:underline;
}

.footer-3 .footer-col-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer-3 .get-in-touch {
    width: 100%;
    order: 1;
}

.footer-3 .footer-col-right .footer-nav-wrap:not(.get-in-touch) {
    width: 50%;
    order: 2;
}

.footer-3 .footer-newsletter input[type="email"] {
    background: #D9D9D9;
    border: 1px solid #FFFFFF;
    border-radius: 8px 0 0 8px;
    padding: 12px 16px;
/*     padding-right: 50px; */
    width: 100%;
    font-size: 1rem;
    color: #4A4861;
    height: 43px;
}

.footer-3 .footer-newsletter select {
    background-color: #D9D9D9;
    color: #a2999e;
    border-radius: 4px;
    border: 1px solid #fff;
}

.footer-3 .footer-newsletter select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a2999e' viewBox='0 0 512 512'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
    background-position: right 16px top 50%;
    background-repeat: no-repeat;
}

.footer-3 .footer-newsletter .hs-form-field {
    margin-bottom: 0px;
  flex:1;
}

.footer-3 .footer-newsletter .hs_error_rollup{
    display: none;
}

.footer-3 .footer-newsletter input[type=submit] {
    background: #009F9D 0 0 no-repeat padding-box;
    background-image: unset;
    background-position: 50%;
    border: none;
    border-radius: 0 8px 8px 0;
    box-shadow: inset 0 6px 15px #05858433;
    height: 100%;
    min-height: 44px;
    opacity: 1;
    padding: .5rem 1rem;
    right: 0;
    width: 100%;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.footer-3 .footer-newsletter .hs-error-msgs{
    list-style: none;
    padding-left: 0px;
}

.footer-3 .footer-newsletter label{
    margin-bottom:0;
}

.footer-3 .footer-newsletter label.hs-error-msg{
    font-size: 14px;
    color: red;
}

.footer-3 .legal-consent-container{
    order: 2;
    width: 100%;
}

.footer-3 .footer-newsletter form{
  flex-wrap : wrap;
}

.footer-3 .legal-consent-container .hs-form-booleancheckbox-display>span{
  color:#fff;
}

@media(min-width:992px) {
    .footer-3 {
          --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
      padding-left: calc(var(--bs-gutter-x)* .5);
        padding-right: calc(var(--bs-gutter-x)* .5);
    }

    .footer-3 .container {
        padding-top: 0;
        padding-bottom: 0;
/*       max-width: calc(100% - 104px); */
    }

    .footer-3 .footer-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-3 .footer-col-left {
        width: 35%;
    }

    .footer-3 .footer-col-right {
        width: 65%;
        gap: 0.5rem;
    }

    .footer-3 .footer-nav-wrap {
        padding: 0px;
        border-bottom: unset;
        width: 100%;
        max-width: 100%;
    }

    .footer-3 .footer-newsletter {
        padding: 0;
        border-bottom: unset;
    }

    .footer-3 .footer-col-right .footer-nav-wrap {
        flex: 1 0 0%;
    }

    .footer-3 .footer-col-right .footer-nav-wrap:not(.get-in-touch) {
        width: 100%;
        max-width: 100%;
        order: 1;
    }

    .footer-3 .get-in-touch {
        order: 2;
    }

    .footer-3 .footer-col-left {
        border-right: 1px solid #4A4861;
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 56px;
        padding-right: 56px;
    }

    .footer-3 .footer-col-right {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 56px;
        padding-right: 56px;
    }

    .footer-3 .footer-nav-wrap:not(.get-in-touch) .footer-title {
        display: block;
    }

    .footer-3 .get-in-touch .copyright {
        display: block;
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        color: #8E8C9C;
        margin-bottom: 0;
    }

    .footer-3 .start-chat {
        margin-bottom: 24px;
        align-items: center;
    }

    .footer-3 .menu {
        gap: 24px;
    }

    .footer-3 .footer-newsletter p:last-child {
        margin-bottom: 0;
    }

    .footer-3 .footer-partners {
        border-top: 1px solid #4A4861;
        padding-top: 24px;
        padding-bottom: 24px;
        padding-left: 56px;
        padding-right: 56px;
    }

    .footer-3 .footer-partners ul {
        margin: 0;
        display: flex;
        list-style: none;
        padding: 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .footer-3 .footer-partners .partner-item img {
        display: block;
        width: auto;
        height: 50px;
        object-fit: contain;
    }
}

@media (min-width:1200px) {
    .footer-3 .menu-item a,
    .footer-3 .menu a{
        font-size: 18px;
        text-decoration:none;
    }
  
  .footer-3 .start-chat {
    text-decoration:none;
  }

    .footer-3 .footer-title {
        font-size: 18px;
    }

    .footer-3 .footer-newsletter p,
    .footer-3 .footer-newsletter .footer-content p{
        font-size: 16px;
    }

    .footer-3 .footer-nav-wrap p,
  .footer-3 .start-chat {
        font-size: 18px;
    }

    .footer-3 .chat-icon {
        width: 24px;
        height: 24px;
    }
}
/* @media (min-width:1280px) {
  .footer-3 .container{
     max-width: calc(100% - 302px);
  }

} */
@media (min-width:1300px) {
    .footer-3 .footer-nav-wrap p {
        margin-bottom: 40px;
    }

    .footer-3 .start-chat {
        margin-bottom: 40px;
    }

    .footer-3 .footer-col-left {
        padding-left: 69px;
        padding-right: 69px;
    }

    .footer-3 .footer-col-right {
        padding-left: 69px;
        padding-right: 69px;
    }

    .footer-3 .footer-partners {
        padding-left: 69px;
        padding-right: 69px;
    }
}

@media (min-width:1700px) {
    .footer-3 {
        padding-bottom: 16px;
    }

    .footer-3 .footer-col-left {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 138px;
        padding-right: 95px;
    }

    .footer-3 .footer-col-right {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 118px;
        padding-right: 122px;
    }

    .footer-3 .footer-partners {
        padding-left: 138px;
        padding-right: 122px;
    }
}

@media (max-width:992px){
    .footer-3 .footer-newsletter input[type="submit"]{
        background-image: url(https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/images/icon-pesawat.png);
        font-size: 0px;
        color: transparent;
        width: 43px;
    }

    .footer-3 .footer-newsletter .hs_email.hs-email{
        width: calc(100% - 43px);
    }
}
.brands-slider{
  padding-bottom:40px;
}

.brands-slider h2{
  color:#fff;
  margin-bottom:40px;
}

.logo-slider .swiper-slide{
  border:2px solid #4A4861;
  border-radius:8px;
  display:flex;
  justify-content:center;
  flex-direction:column;
  align-items:center;
  width:100%;
  height:auto;
}

.logo-slider .swiper-slide .logo-wrapper img{
  width:100%;
  height:42px;
  max-width:147px;
  object-fit:contain;
}

.logo-slider .logo-wrapper{
  width:100%;
  text-align:center;
  padding:28px;
  display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slider .logo-wrapper span:before{
    backface-visibility: hidden;
    content: attr(data-hover);
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 100%;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    transition: color .3s;
    width: 100%;
  color:#576072;
  font-size:14px;
  line-height:22px;
  display: flex;
    justify-content: center;
    align-items: center;
}
.logo-slider .logo-wrapper span{
      display: flex;
    justify-content: center;
  align-items:center;
    gap: 16px;
  width:100%;
    padding: 0;
    position: relative;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
    transition: transform .3s;
}

.logo-slider .logo-wrapper:hover span{
      transform: rotateX(90deg) translateY(-22px);
}

.brands-slider .swiper-button-next:after,
.brands-slider  .swiper-button-prev:after {
    display: none;
}

.brands-slider  .swiper-button-next,
.brands-slider  .swiper-button-prev {
    top: 24px;
}

.brands-slider .swiper-button-next {
    right: 0;
}

.brands-slider.swiper-button-prev {
    left: unset;
    right: 52px;
}

.brands-slider .swiper-button-prev svg {
    transform: rotate(180deg);
}

.brands-slider .read-more-arrow{
  width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
}

@media (max-width:992px){
.brands-slider .swiper-button-next, .brands-slider .swiper-button-prev{
    display:none;
  }
  
}

@media (min-width:992px){
  .brands-slider h2{
    max-width:calc(100% - 150px);
  }
  
    .brands-slider .swiper-button-prev {
        left: auto;
        right: 82px;
    }

   .brands-slider .swiper-button-next {
        right: 32px;
        left: auto;
    }
  
  .logo-slider .swiper-slide-active {
    -webkit-mask: linear-gradient(90deg, transparent 58%, #000 100%) no-repeat;
  }

  .logo-slider .slide-visible-last:not(:last-of-type){
    -webkit-mask: linear-gradient(270deg, transparent 60%, #000 100%) no-repeat;
  }
  
  .logo-slider .swiper-slide{
    max-width:307px;
  }
  
  .brands-slider{
    padding-bottom:80px;
  }
  
  .logo-slider .logo-wrapper span:before{
    font-size:16px;
  }

} 

@media (min-width:1200px){
  .logo-slider .slide-visible-last:not(:last-of-type){
    -webkit-mask: linear-gradient(270deg, transparent 50%, #000 100%) no-repeat;
  }
}

@media (min-width:1400px){
  .logo-slider .slide-visible-last:not(:last-of-type){
    -webkit-mask: linear-gradient(270deg, transparent 60%, #000 100%) no-repeat;
  }
}

@media (min-width:1700px){
  .logo-slider .slide-visible-last:not(:last-of-type){
    -webkit-mask: linear-gradient(270deg, transparent 70%, #000 100%) no-repeat;
  }
  
  .logo-slider .swiper-slide-active {
    -webkit-mask: linear-gradient(90deg, transparent 40%, #000 100%) no-repeat;
  }
  
  .logo-slider .logo-wrapper span:before{
    font-size:18px;
    line-height:24px;
  }

} 

@media (min-width:1900px){
  
  .logo-slider .slide-visible-last:not(:last-of-type){
    -webkit-mask: linear-gradient(270deg, transparent 70%, #000 100%) no-repeat;
  }

}
.cta-banner{
  padding-top:40px;
}

.cta-banner .floating-banner{
      background: linear-gradient(110deg, rgba(0, 0, 0, 0) 15%,  rgb(0, 159, 157) 130% );
}

.cta-banner .floating-banner .cta-button{
  background:#fff;
  color:#1D1A39;
  font-size:14px;
  font-weight:500;
  text-transform:none;
  padding:13px 47px 13px 47px;
}

.cta-banner .floating-banner .content-text{
  font-weight:300;
  color:#fff;
  letter-spacing:0;
}

.cta-banner .floating-banner{
      padding: 24px 16px;
}

@media (min-width:992px){
  .cta-banner{
    padding-top:80px;
  }
  
  .cta-banner .floating-banner{
    padding: 86px 40px 87px;
    margin-bottom:40px;
  }
  
  .cta-banner .floating-banner{
    max-width:100%;
  }
  
  .cta-banner .floating-banner .cta-button{
    font-size:16px;
  }
}

@media(min-width:992px) and (max-width:1200px){
  .cta-banner .floating-banner .wrapper{
    gap:40px;
  }
}

@media (min-width:1700px){
  .cta-banner .floating-banner .cta-button{
    font-size:18px;
  }

}

@media (max-width:992px){
  .cta-banner .floating-banner{
    margin-bottom:0px;
  }
}
.contact-form-v3{
    position: relative;
}

.contact-form-v3 .wrapper{
    border-radius:24px;
}

.contact-form-v3 .form-title{
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0px;
}

.contact-form-v3 .form-wrapper{
    margin-top: 16px;
}

.contact-form-v3 .form-wrapper .form-title{
    display:none;
}

.contact-form-v3 .contact-row{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
    position: relative;
    z-index: 1;
}

.contact-form-v3 .media-wrapper img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    min-height:300px;
}

.contact-form-v3 .media-wrapper{
    position: relative;
    border-radius: 24px;
    margin-top: 16px;
}

.contact-form-v3.no-photo .content-wrapper{
    width: 100%;
    max-width: 100%;
}

.contact-form-v3.no-photo .media-wrapper{
    display: none;
}

.contact-form-v3 .media-wrapper .person-wrap{
    position: absolute;
    bottom: 16px;
    margin-left: 16px;
    margin-right: 16px;
}

.contact-form-v3 .media-wrapper .person-card{
    padding: 16px;
    position: relative;
    border-radius: 24px;
}

.contact-form-v3 .media-wrapper .person-card::before{
    background: linear-gradient(180deg, hsla(248, 7%, 58%, .6), rgba(29, 26, 57, .6));
    border-radius: 24px;
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    position: absolute;
    z-index: -1;
}

.contact-form-v3 .media-wrapper .person-card p{
    font-family: var(--font-ibm);
    margin-top: 0;
    color: #fff;
    margin-bottom: 0;
}

.contact-form-v3 .media-wrapper .person-card p.person-quote{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-form-v3 .media-wrapper .person-card p.person-name{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 4px;
}

.contact-form-v3 .media-wrapper .person-card p.person-role{
    font-size: 14px;
    font-weight: 300;
}

.contact-form-v3 form .hs-button, 
.contact-form-v3 form input[type=submit]{
    font-size:16px;
    line-height:24px;
}

@media(min-width:768px){
    .contact-form-v3 .contact-row{
        padding: 24px;
    }
}

@media(min-width:992px){

    .contact-form-v3 .contact-row{
        flex-direction: row;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 30px;
        padding-bottom: 30px;
        align-items: stretch;
    }

    .contact-form-v3 .content-wrapper{
        width: 40%;
        max-width: 563px;
        margin-top: 20px;
        padding: 0px;
        margin-left: 0;
    }

    .contact-form-v3 .media-wrapper{
        width: 55%;
        max-width: 868px;
        margin-top: 0;
    }

    .contact-form-v3 .media-wrapper .person-wrap{
        bottom: 20px;
        margin-left: 20px;
        margin-right: 0;
        width: 75%;
        max-width: 643px;
    }

    .contact-form-v3 .media-wrapper .person-card{
        padding: 24px;
    }

    .contact-form-v3 .media-wrapper .person-card p.person-quote{
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .contact-form-v3 .media-wrapper .person-card p.person-name{
        font-size: 16px;
    }

    .contact-form-v3 .media-wrapper .person-card p.person-role{
        font-size: 16px;
    }

    .contact-form-v3 .form-wrapper{
        margin-top: 24px;
    }
}

@media(min-width:1700px){

    .contact-form-v3 .form-title{
        font-family: var(--font-ibm);
        font-weight: 500;
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 0%;
    }

    .contact-form-v3 .contact-row{
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 47px;
        padding-bottom: 47px;
    }

    .contact-form-v3 .media-wrapper{
        width: 55%;
    }

    .contact-form-v3 .media-wrapper .person-wrap{
        bottom: 41px;
        margin-left: 40px;
        margin-right: 0;
        width: 75%;
        max-width: 643px;
    }

    .contact-form-v3 .media-wrapper .person-card{
        padding-top: 28px;
        padding-bottom: 24px;
        padding-inline: 26px;
    }

    .contact-form-v3 .media-wrapper .person-card p.person-quote{
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 40px;
    }

    .contact-form-v3 .media-wrapper .person-card p.person-name{
        font-size: 20px;
    }

    .contact-form-v3 .media-wrapper .person-card p.person-role{
        font-size: 20px;
    }

    .contact-form-v3 .content-wrapper{
        margin-top: 53px;
        margin-left: 0px;
    }

    .contact-form-v3 .form-wrapper{
        margin-top: 49px;
    }

    .contact-form-v3 .media-wrapper img{
        max-height: 100%;
    }
}

@media(min-width:1920px){
  .contact-form-v3 .media-wrapper{
        width: 60%;
  }
  
  .contact-form-v3 .form-title{
        font-family: var(--font-ibm);
        font-weight: 500;
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 0%;
    }
}

@media(max-width:992px){
  .contact-form-v3 .content-wrapper{
    padding:0px;
    width:100%;
  }
}

@media (max-width: 480px) {
    .contact-form-v3 fieldset.form-columns-1 .input, 
    .contact-form-v3 fieldset.form-columns-2 .input {
        margin-right: 0 !important;
    }
}
.floating-cta.v3-style{
    position: fixed;
    top: calc(76px + 37px);
    background-color: transparent;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.floating-cta.v3-style .container{
    background:unset;
    padding:0px;
}

.floating-cta.v3-style .wrapper{
    position: relative;
    background: rgba(74, 72, 97, 0.6);
    border-radius: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 16px;
    padding-right: 16px;
}

.floating-cta.v3-style .wrapper::before{
    border-radius: 16px;
}

.floating-cta.v3-style .offer-label{
    font-family: var(--font-ibm);
    color: rgba(29, 26, 57, 1);
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(238, 112, 108, 1);
    padding: 4px 12px;
    border-radius: 8px;
    margin-right: 24px;
}

.floating-cta.v3-style .content-offer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.floating-cta.v3-style .content-offer p{
    font-family: var(--font-ibm);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: none;
}

.floating-cta.v3-style .content-offer p a{
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

.floating-cta.v3-style .content-offer .arrow-button{
    margin-left: 16px;
}

@media(min-width:992px){
  .floating-cta.v3-style.active .container{
    max-width: calc(100% - 104px);
  }
}

@media (min-width:1280px){
    .floating-cta.v3-style.active .container{
      max-width: calc(100% - 304px);
    }
}

@media(min-width:1700px){
  .floating-cta.v3-style{
    top: calc(96px + 37px);
  }
}

@media (min-width:1920px){
  .floating-cta.v3-style.active .container{
    max-width: 1640px;
  }
}
.cross-sell{
  padding-top:40px;
}

.cross-sell .text-content-wrap{
  align-self:center;
}

.cross-sell h1{
  color:#fff;
  margin-bottom:24px;
  margin-top:0;
}

.cross-sell .content-text{
  color:#fff;
}

.cross-sell .container .col-wrap{
  gap:40px;
}

.cross-sell .container .col-wrap > * {
  flex:1;
}

.cross-sell .content {
  max-width: 638px;
  justify-content: flex-start;
}

.cross-sell .buttons-wrap{
  display: inline-flex;
}

.cross-sell .cta-button{
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  padding: 14px 24px;
}

.cross-sell .card-wrap{
  gap:24px;
  display: grid;
  max-width: 690px;
  margin-left: auto;
}

.cross-sell .card-wrap .card-cross{
  padding: 16px;
  border-radius: 24px;
  padding-bottom: 38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.cross-sell .card-wrap .card-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: #fff;
}

.cross-sell .card-wrap .card-title{
  margin-bottom: 0;
}

.cross-sell .read-more-arrow{
  align-items: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(74,72,97,.4);
  border-radius: 50%;
  bottom: 0;
  display: flex;
  height: 36px;
  justify-content: center;
  min-width: 36px;
  width: 36px;
  z-index: 1;
}

.cross-sell .usp-body{
  color: #fff;
}

.cross-sell .img-bg{
  position: absolute;
  z-index: -1;
  left: -100px;
  top: 44px;
}

.cross-sell .items-4 .img-bg{
  top: 15%;
}

.cross-sell .items-5 .img-bg{
  top: 25%;
}

@media (min-width:992px){
  .cross-sell .card-wrap{
    height:100%;
    min-height:600px;
  }
  
  .cross-sell .card-wrap .card-cross{
    padding: 51px 37px;
  }
  
  .cross-sell{
  padding-top:80px;
}
  
  .cross-sell .read-more-arrow{
    margin-top:-28px; 
  }
}

@media (max-width:991px){
  .cross-sell .img-bg{
    width: 100%;
    object-fit: contain;
    left: 0;
  }
  
  .cross-sell .content{
    max-width:100%;
  }
  
  .cross-sell .card-wrap{
    max-width:100%;
  }
}
.product-download-grid.style-v3{
  padding-top:40px;
}

.product-download-grid.style-v3 h2{
  margin-bottom: 24px;
  color: #fff;
}

.product-download-grid.style-v3 .content {
  margin-bottom: 35px;
}

.product-download-grid.style-v3 .content .cta-button{
  margin-top: 0;
  backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(74, 72, 97, 0.4);
    border: 1px transparent;
  border-radius:10px;
  text-transform: none;
}

.product-download-grid.style-v3 .content .cta-button:before{
  border-radius:10px;
}

.product-download-grid.style-v3 .card-download{
  border: none;
  border-radius: 15px;
  overflow: hidden;
  min-height: 292px;
  flex-direction:column;
}

.product-download-grid.style-v3 .card-download.border-gradient:before{
  border-radius: 15px;
}

.product-download-grid.style-v3 .card-wrap{
  display: grid;
  gap: 25px;
}

.product-download-grid.style-v3 .card-wrap .img-wrap{
  width:100%;
  max-height:192px;
  min-height:192px;
}

.product-download-grid.style-v3 .card-wrap .img-wrap img{
  height:100%;
  object-fit:cover;
}

.product-download-grid.style-v3 .card-wrap .card-body{
  display: inline-flex; 
  width: 100%;
  display: flex;
  align-items:flex-start;
  flex-direction: column;
  z-index: 1;
  padding: 16px;
  height: auto;
  margin-top: 0;
  gap: 20px
}

.product-download-grid.style-v3 .card-wrapper{
  border-radius: 16px;
      max-height: 800px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-color: #fff rgba(74,72,97,.2);
  scrollbar-width: 8px;
  width: 100%;
}

.product-download-grid.style-v3.overview-download .card-wrapper{
  max-height: unset;
}


.product-download-grid.style-v3 .card-download .card-body .card-title{
  margin-bottom:0;
  color:#fff;
}

.product-download-grid.style-v3 .card-download .card-body .cta-button{
  margin-top:0;
  text-transform: none;
  font-weight: 500;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(74,72,97,.4);
  border: 1px transparent;
  border-radius:10px;
}

#main-content .product-download-grid.style-v3 .card-download .card-body .cta-button{
  padding-left:15px;
  padding-right:15px;
}

.product-download-grid.style-v3 .card-download .card-body .cta-button:before{
  border-radius:10px;
}

.product-download-grid.style-v3 .card-download .card-body .cta-button:hover{
  background-color: rgba(0, 159, 157, 0.4);
}

.product-download-grid.style-v3 .card-wrapper .load-more-btn{
  text-align:center;
  z-index: 2;
  position:relative;
  margin-top: -120px;
  margin-bottom:32px;
}

.product-download-grid.style-v3 .card-wrapper .load-more-btn .cta-button{
    font-size: 14px;
    line-height:22px;
    text-transform: none;
    padding: 13px 59px;
}

.product-download-grid.style-v3 .card-wrapper .load-more-btn.hide{
  display:none;
}

.product-download-grid.style-v3 .card-download.card-hidden{
  -webkit-mask: linear-gradient(0deg,transparent 0%,#000) no-repeat;
  filter: blur(4px);
  height: 102px;
  min-height: 102px;
  border-radius: 24px 24px 0 0;
}


.product-download-grid.style-v3 .card-download.card-hidden.hide-active{
  display:none;
}

@media (max-width:992px){
  .product-download-grid.style-v3 .card-download.card-hidden:not(.first-card-hidden){
    display:none
  }
}

@media (min-width:992px){
  .product-download-grid.style-v3 .card-wrapper .load-more-btn.load-more-6,
  .product-download-grid.style-v3 .card-wrapper .load-more-btn.load-more-7,
  .product-download-grid.style-v3 .card-wrapper .load-more-btn.load-more-8{
    display:none;
  }
  
  .product-download-grid.style-v3 .card-wrap{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .product-download-grid.style-v3 h2{
    margin-bottom: 0px;
  }
  
  .product-download-grid.style-v3 .card-wrapper .load-more-btn .cta-button{
      font-size: 16px;
  }
  
  .product-download-grid.style-v3{
    padding-top:80px;
  }
  
  .product-download-grid.style-v3 .card-wrap .card-body{
    padding: 24px;
    flex-direction:row;
  }
}

@media (min-width:1280px) and (max-width:1400px){
  .product-download-grid.style-v3 .card-wrap .card-body{
    padding:24px 16px;
    gap:10px;
  }
  
  .product-download-grid .card-download .card-title{
    font-size:16px !important;
  }
  
  .product-download-grid.style-v3 .card-download .card-body .cta-button{
    font-size:14px !important;
  }
}

@media (min-width:992px) and (max-width:1200px){
  .product-download-grid.style-v3 .card-wrap{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .product-download-grid.style-v3 .card-download.card-hidden.first-card-hidden {
      -webkit-mask:unset;
      height: auto;
      min-height: 102px;
          filter: unset;
  }
  
/*   #main-content .product-download-grid.style-v3 .card-download .card-body .cta-button{
    font-size:14px;
  }
  
  .product-download-grid.style-v3 .card-wrap{
    gap:16px;
  }
  
  .product-download-grid.style-v3 .card-wrap .card-body{
    padding: 24px 10px;
  } */
}

@media (min-width:1700px){
  
  .product-download-grid.style-v3 .card-wrapper .load-more-btn .cta-button{
      font-size: 18px;
      line-height:24px;
  }
}
.header.v3-style.list-view-v3 .wrapper{
  overflow-y:hidden;
  flex-direction:row-reverse;
          max-height: unset;
  padding:0;
  height:auto;
}

.header-training-v3 h1{
  color:#fff;
  margin-top:15px;
  margin-bottom:17px;
}

.singular-case.header-training-v3.header.v3-style{
  padding-left:24px;
  padding-right:24px;
}

@media (max-width: 991px) {
  .header-training-v3.list-view-v3 .content-wrap{
    padding-bottom:16px;
  }
}



@media (min-width: 992px) {
    .singular-case.header-training-v3 .content {
        max-width: 873px;
        width: 50%;
    }
  
  .singular-case.header-training-v3 .content.w-full{
    max-width:100%;
    width:100%;
  }
  
  .singular-case.header-training-v3 .content-text{
    max-width:732px;
  }
  
  .singular-case.header-training-v3.header.v3-style{
       padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }
}

@media (min-width: 1700px) {
   .header-training-v3.singular-case .right-media .content-wrap {
        padding-top:87px;
        padding-bottom:67px;
    }
 
}
.licensing-options.comparison-table-v3{
    position: relative;
    background-color: transparent;
}

.licensing-options.comparison-table-v3 thead{
  width: 100%;
}

.licensing-options.comparison-table-v3 tbody tr{
  border-color: #8E8C9C;
}

.licensing-options.comparison-table-v3 .table-header{
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.licensing-options.comparison-table-v3 .row{
    position: relative;
    z-index: 1;
}

.licensing-options.comparison-table-v3 .table-header h2{
    font-family: var(--font-ibm);
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0px;
}

.licensing-options.comparison-table-v3 td  {
    padding:20px;
}

.licensing-options.comparison-table-v3 tbody td:first-child{
    padding-left:0;
}

.licensing-options.comparison-table-v3 .wrapper{
    border-radius: 16px;
    overflow-y: scroll;
    scrollbar-color: #ffffff rgba(74, 72, 97, 0.2);
    scrollbar-width: 8px;
    padding-right: 8px;
}

.licensing-options.comparison-table-v3 .table-content{
    padding-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 30px;
    border-radius: 16px;
}

.licensing-options.comparison-table-v3 .wrapper::-webkit-scrollbar-track {
    background: rgba(74, 72, 97, 0.2);
    border-radius: 16px;
    -webkit-box-shadow: inset 0 0 16px rgba(74, 72, 97, 0.2);
}

.licensing-options.comparison-table-v3 .wrapper::-webkit-scrollbar {
    width: 12px;
    background-color: #ffffff;
}

.licensing-options.comparison-table-v3 .wrapper::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 16px;
    border: 3px solid rgba(74, 72, 97, 0.2);
}


.licensing-options.comparison-table-v3 .table-content::before{
    border-radius: 16px;
}

.licensing-options.comparison-table-v3 .table-wrap{
    overflow-x: auto;
}

.licensing-options.comparison-table-v3 tbody{
    border: unset;
    box-shadow: unset;
    overflow-y: unset;
  max-height:unset;
}

.licensing-options.comparison-table-v3 th{
    color: #C6C5CD;
    font-weight: 500;
    padding: 10px;
  min-width:80px;
}

.licensing-options.comparison-table-v3 th:nth-child(4),
.licensing-options.comparison-table-v3 td{
    color: #ffffff;
}

.licensing-options.comparison-table-v3 td.first-row{
    padding-left: 0;
    padding-top: 35px;
    padding-right: 0px;
    padding-bottom:35px;
    color: #ffffff;
}

.licensing-options.comparison-table-v3 tbody td:first-child{
  font-weight:300;
}

.licensing-options.comparison-table-v3 table.first-row-table{
    border-radius: 10px;
    border: 1px solid #8E8C9C99;
    border-collapse: separate;
    padding: 9px 24px;
    background: var(--fill-card, #4A486133);
    backdrop-filter: blur(20px);
}

.licensing-options.comparison-table-v3 table.first-row-table td{
    padding: 0px;
    line-height: 1;
    height: auto;
    color: #ffffff;
  font-weight:500;
}

.licensing-options.comparison-table-v3 .arrow-icon {
  color: #fff;
  border-radius: 50%;
  background: #009F9D;
  width: 26px;
  height: 26px;
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  line-height: 26px;
}

 .licensing-options.comparison-table-v3 .table-header{
   margin-bottom: 24px;
}

.licensing-options.comparison-table-v3 .table-header .cta-button{
  margin-top:16px;
}


@media(min-width:992px){
  /* Sticky header */
  .licensing-options.comparison-table-v3 thead {
    position: sticky;
    top: 24px;
    /* background-color: #fff; /* or any other background color to avoid transparency */ */
    z-index: 1; /* Ensures header stays above content */
  }

  /* Sticky featured-category rows */
  .licensing-options.comparison-table-v3 tbody tr.featured-category {
    position: sticky;
    top: 72px; /* Adjust this value based on your header height */
    /* background-color: #fff; /* Ensures the sticky rows have a solid background */ */
    z-index: 1; /* Keeps featured rows above the other content */
  }
  .licensing-options.comparison-table-v3 .table-header .cta-button{
    margin-top:0px;
  }
  
  .licensing-options.comparison-table-v3 .table-content{
    padding-top: 30px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 30px;
}
  
  .licensing-options.comparison-table-v3 .table-wrap{
    overflow-x: unset;
}
  
    .licensing-options.comparison-table-v3 .wrapper{
        padding-right: 16px;
      max-height:509px;
    }

    .licensing-options.comparison-table-v3 .cta-button{
        font-size: 16px;
        line-height: 24px;
    }
}

@media(min-width:1700px){
    .licensing-options.comparison-table-v3 .table-header h2{
        font-family: var(--font-ibm);
        font-weight: 500;
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 0%;
    }

    .licensing-options.comparison-table-v3 .table-header{
        margin-bottom: 52px;
    }
    
}

@media(min-width:1920px){
    .licensing-options.comparison-table-v3 .table-header h2{
        font-family: var(--font-ibm);
        font-weight: 500;
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 0%;
    }

    .licensing-options.comparison-table-v3 .cta-button{
        font-size: 18px;
        line-height: 24px;
    }

    .licensing-options.comparison-table-v3 th{
        font-size: 18px;
        line-height: 24px;
    }

    .licensing-options.comparison-table-v3 table.first-row-table td{
        font-size: 18px;
    }
}
.body-container--blog-post .header h1{
     padding:45px 30px;
  margin-bottom:0;
  border-radius:16px;
  max-width: 1106px;
  background:rgba(29,26,57,0.6) !important;
      backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.body-container--blog-post .header.v3-style .breadcrumbs-wrapper .hs-breadcrumb-menu-item:first-child{
  padding-left:0;
}

.main-article .table-of-content ul li:nth-of-type(n+6){
  display:block;
}

.body-container--blog-post .header.v3-style .breadcrumbs-wrapper .last-crumb span{
  white-space: break-spaces;
}

.body-container--blog-post .aside.disable{
  opacity:1;
}

.body-container--blog-post h2{
    scroll-margin-top:60px;
}

.body-container--blog-post .list-view-v3 .content-wrap .tag-item .tag-link{
  background-color: rgba(74, 72, 97, 0.2);
  border:none;
  color:#fff;
   backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main-article .button-wrapper{
  margin-bottom:0;
}

.body-container--blog-post .article p,
.body-container--blog-post .article h2,
.body-container--blog-post .article h3,
.body-container--blog-post .article h4,
.body-container--blog-post .article li,
.main-article .post-meta p,
.toc-mobile{
  color:#fff;
}

.main-article .post-meta{
  margin-top:0;
}

.body-container--blog-post .article p,
.body-container--blog-post .article li,
.main-article .post-meta p,
.main-article .table-of-content ul li a{
   font-size:14px;
}

.main-article .table-of-content ul li a{
  color:#8E8C9C;
}

.main-article .table-of-content ul li a:hover,
.main-article .table-of-content ul li a.active{
   color:#fff;
}

.body-container--blog-post .article h3,
.body-container--blog-post .article h4{
  font-size:16px;
  line-height:22px;
}

.body-container--blog-post .article h2{
  font-size:24px;
  line-height:30px;
}

.main-article{
  padding-top:40px;
  padding-bottom:40px;
}

.body-container--blog-post .aside{
/*   border-radius:24px; */
  padding:0px;
  max-width: 100%;
}

.body-container--blog-post .post-meta-wrap{
  padding:20px;
  border-radius:24px;
}

.body-container--blog-post .side-form{
  padding:16px;
  border-radius:24px;
}

.body-container--blog-post .social-share{
  position:relative;
  z-index:1;
}

.body-container--blog-post .social-share .title{
  font-size:18px;
  color:#fff;
}

.body-container--blog-post .side-form{
  margin-top:24px;
}

.body-container--blog-post .side-form .form-wrap{
  background:transparent !important;
  position:relative;
  z-index:1;
}

.body-container--blog-post .side-form .form-wrap form label,
.body-container--blog-post .side-form .form-wrap form .hs-richtext p,
.popup-content .form-wrapper form label,
.popup-content .form-wrapper .hs-form-required{
  color:#fff;
}

.body-container--blog-post .side-form .form-wrap form.hs-form .hs-form-field .hs-input{
  width:100%;
}

.body-container--blog-post .side-form .form-wrap .form-title{
  font-size:18px !important;
  color:#fff;
  line-height:1.5 !important;
}

.table-of-content,
.main-article .button-wrapper{
  position:relative;
  z-index:1;
}

.main-article .button-wrapper .cta-button{
  display:inline-block;
  width:auto;
  padding:14px 24px;
  text-transform:none;
}

.main-article .table-of-content ul li a{
  text-overflow: unset;
  white-space: unset;
}

.body-container--blog-post .side-form .highlighted-blog .wrapper,
.body-container--blog-post .side-form .highlighted-blog .card-blog,
.body-container--blog-post .side-form .highlighted-blog .row,
.body-container--blog-post #hs_cos_wrapper_Download_Whitepaper .highlighted-blog .card-blog{
    padding: 0;
    background: transparent !important;
    backdrop-filter: unset !important;
    border-radius: 0;
    -webkit-backdrop-filter: unset !important;
    box-shadow: unset;
}

.body-container--blog-post .side-form .highlighted-blog .wrapper::before,
.body-container--blog-post .side-form .highlighted-blog .card-blog:before,
.body-container--blog-post .side-form .highlighted-blog .content-wrapper{
  display:none;
}

.body-container--blog-post .side-form .highlighted-blog .blog-wrapper{
  width:100%;
}

.body-container--blog-post .side-form .highlighted-blog .card-blog{
      flex-direction: column;
  gap:10px;
}

.body-container--blog-post .side-form .highlighted-blog .card-blog img{
    height: 186px;
    width: 100%;
    text-align: center;
    max-width: 209px;
    align-self: center;
    object-fit: contain;
  justify-self:center;
}

.body-container--blog-post .side-form .highlighted-blog .container{
  max-width:100%;
  padding-left:0;
  padding-right:0;
}

.popup-wrap{
  position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  display:none;
  padding:20px;
}

.popup-wrap .popup-content {
    padding:20px;
    background:rgba(74, 72, 97, 0.26);
    border-radius:24px;
    backdrop-filter:blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width:661px;
}

.popup-wrap .popup-content .close-popup{
  position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
      width: 16px;
    height: 16px;
}

.popup-wrap .popup-content h5{
  font-size:16px;
  color:#fff;
}

.popup-wrap .form-wrapper form.hs-form .hs-form-field .hs-input,
.popup-wrap .form-wrapper form.hs-form fieldset.form-columns-1 .hs-input,
.popup-wrap .form-wrapper form.hs-form .hs-button{
  width:100%;
}

.popup-wrap .form-wrapper form.hs-form .hs-button{
  border:none;
}

.popup-wrap .form-wrapper,
.popup-wrap h5{
  position:relative;
  z-index:1;
}

.popup-wrap .form-wrapper .hs_error_rollup{
  display:none;
}

.body-container--blog-post .side-form .card-body-content .cta-button svg{
  display:none;
}

.body-container--blog-post .article img{
    border-radius:16px;
  }

/* .body-container--blog-post .contact-form-v3 .media-wrapper .person-card p.person-quote.disable-margin{
  margin-bottom:0;
} */

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
    .popup-wrap .form-wrapper form.hs-form .hs-form-field .hs-input, 
  .popup-wrap .form-wrapper form.hs-form fieldset.form-columns-1 .hs-input, 
  .popup-wrap .form-wrapper form.hs-form .hs-button,
  .popup-wrap .form-wrapper form.hs-form .form-columns-2 .hs-form-field .hs-input, 
  .popup-wrap .form-wrapper form.hs-form .form-columns-3 .hs-form-field .hs-input{
        width: 100%;
    }
}


@media (min-width:992px){
  .body-container--blog-post .side-form{
    padding:20px;
  }
  
  form .hs-button, form input[type=submit],
  .contact-form-v3 form .hs-button, .contact-form-v3 form input[type=submit]{
    padding:14px 31px;
    line-height:1em;
  }
  
  .popup-wrap .popup-content .close-popup{
      right: 20px;
      top: 20px;
        width: 24px;
    height: 24px;
  }
  
  .popup-wrap .popup-content h5{
    font-size:24px;
  }
  
  .body-container--blog-post .aside{
    max-width:414px;
    margin-left:auto;
  }
  
  .popup-wrap .popup-content {
    padding:45px;
}
  
  .body-container--blog-post .header-training-v3.singular-case .right-media .content-wrap{
    padding-left:30px;
    padding-bottom:33px;
  }
  
  .body-container--blog-post .side-form .highlighted-blog .card-title{
    font-size:18px !important;
    line-height:1.5 !important;
  }
  
  .body-container--blog-post .aside{
    position:sticky;  
  }
  
  .body-container--blog-post .article p:first-child{
      margin-bottom:78px;
  }

  .hs-blog-post #main-content{
    overflow:unset; 
  }
  
  .body-container--blog-post .article{
    max-width:1059px;  
  }
  
  .main-article{
    padding-top:66px;
    padding-bottom:80px;
  }
  
  .body-container--blog-post .article p,
  .body-container--blog-post .article li,
  .main-article .post-meta p,
  .main-article .table-of-content ul li a{
    font-size:16px;
  }
  
  .body-container--blog-post .article h2{
    font-size:24px;
    line-height:30px;
  }
  
  .body-container--blog-post .article h3,
  .body-container--blog-post .article h4{
    font-size:18px;
    line-height:24px;
  }
  
  .body-container--blog-post .article img{
    border-radius:24px;
  }
}

@media (min-width:1700px){
  /*  Setup heading font size  */
  .body-container--blog-post .article p,
  .body-container--blog-post .article li,
  .main-article .post-meta p,
  .main-article .table-of-content ul li a{
    font-size:16px;
  }
  
  .body-container--blog-post .article h2{
    font-size:32px;
    line-height:40px;
  }
  
  .body-container--blog-post .article h3,
  .body-container--blog-post .article h4{
    font-size:24px;
    line-height:30px;
  }
  
  .body-container--blog-post .side-form .highlighted-blog .card-title{
    font-size:24px;
    line-height:1.5;
  }
}

@media (min-width:1920px){
  .body-container--blog-post .article h2{
    font-size:40px;
    line-height:48px;
  }
  
  .body-container--blog-post .article h3,
  .body-container--blog-post .article h4{
    font-size:32px;
    line-height:40px;
  }
  
  .body-container--blog-post .side-form .highlighted-blog .card-title{
    font-size:24px;
    line-height:1.5;
  }
}

@media (max-width:767px){
  .body-container--blog-post .header.v3-style .bg-image{
    border-radius:16px;
  }
}
.blog-listing-v3 .card .tag-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    padding: 0px 16px;
    position: absolute;
    bottom: 0px;
}

.blog-listing-v3 .card .excerpt{
  display: -webkit-box;           
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;         
  overflow: hidden;             
  text-overflow: ellipsis;
}

.blog-listing-v3 .card .tag-item .tag-link {
    border: none;
    padding: 4px 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    border-radius: 8px;
    white-space:nowrap;
    display:block;
    text-align:center;
    background: rgba(74, 72, 97, 0.75) !important;
}

.blog-listing-v3 .card .tag-item .tag-link:before{
  border-radius:8px;
}

.blog-listing-v3 .pagination,
.grid-3-cols.sub-solutions-v3 .pagination{
    margin-top:50px;
    margin-bottom:0px;
}

.blog-listing-v3 .page-item .page-link,
.grid-3-cols.sub-solutions-v3 .page-item  .page-link,
.product-download-grid.overview-download .page-item  .page-link{
  border-radius: 50%;
  background: transparent;
  color:#fff;
}

.blog-listing-v3 .page-item.active .page-link,
.blog-listing-v3 .page-item:hover .page-link,
.grid-3-cols.sub-solutions-v3 .page-item.active .page-link,
.grid-3-cols.sub-solutions-v3 .page-item:hover .page-link,
.product-download-grid.overview-download .page-item.active  .page-link,
.product-download-grid.overview-download .page-item:hover  .page-link{
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.blog-listing-v3 .page-item.active .page-link:before,
.blog-listing-v3 .page-item:hover .page-link:before,
.grid-3-cols.sub-solutions-v3 .page-item.active .page-link:before,
.grid-3-cols.sub-solutions-v3 .page-item:hover .page-link:before,
.product-download-grid.overview-download .page-item.active  .page-link:before,
.product-download-grid.overview-download .page-item:hover  .page-link:before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background-color: transparent;
    background: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


@media(min-width:992px) {
  .blog-listing-v3 .card .tag-list {
    padding: 0px 24px;
  }

  
  .blog-listing-v3 .card .tag-list{
    flex-direction:row;
    margin-bottom:16px;
  }
}


@media (max-width:992px){
 
  
  .blog-listing-v3 .card .tag-list{
    flex-direction:row;
  }
  

  
  .blog-listing-v3 .card .tag-list{
    margin-bottom:16px;
  }
}
/* body .dnd-section .row-fluid section,
body .dnd-section .row-fluid header{
    background:#fff !important;
}
 */

body .dnd-section .row-fluid header,
body .cases-overview,
body .header-solutions,
.training-list-accordion, .advantage, .twocols-img, .related-post, .our-dna{
    background: #fff;
    background-color: #fff;
}

h1,h2,h3,h4,h5,h6{
  font-family: IBM Plex Sans, sans-serif !important;
}

form legend{
  color:#fff;
  margin-bottom: 10px;
}

.form-wrap{
  background-size:cover;
  background-repeat:no-repeat;
}

@media screen and (max-width: 414px){
  .body-container-wrapper {
    padding-top: 65px;
  }
}
@media screen and (max-width: 991px){
  .body-container-wrapper {
    padding-top: 66px;
  }
}
@media screen and (min-width: 992px){
  .body-container-wrapper {
    padding-top: 76px;
  }
}
@media screen and (min-width: 1500px){
  .body-container-wrapper {
    padding-top: 76px;
  }
}
@media screen and (min-width: 1600px){
  .body-container-wrapper {
    padding-top: 96px;
  }
}
div[class*="force-full-width-section"] .dnd-column {
  padding: 0 !important;
}

.border-gradient{
  position:relative;
}

.border-gradient:before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
  background-color: transparent;
    background: linear-gradient(180deg, rgba(142, 140, 156, 0.6) 0%, rgba(29, 26, 57, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.cta-button.secondary {
    border: 1.5px solid #009F9D;
    background-color: transparent;
}

.border-glass{
  border:1px solid hsla(248,7%,58%,.6) !important;
}

.section-blur{
/*   background: rgba(142, 140, 156, .05); */
  background-color: rgba(255,255,255,0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.card-blur{
/*   background: rgba(74, 72, 97, 0.2) !important; */
  background-color: rgba(255,255,255,0.03) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.read-more-arrow{
  /*background: rgba(74, 72, 97, 0.1); */
      background-color: rgba(74,72,97,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.read-more-arrow:hover{
      background-color: #5B5970;
}


.cta-button,
.form-contact .form-wrap form input[type=submit],
.download-detail .form-wrap form input[type=submit]{
    padding: 14px 17px;
    text-decoration: none;
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;
    line-height: 1;
    font-family: var(--font-ibm);
    white-space: nowrap;
    border-radius: 8px;
  text-transform:uppercase;
}

.cta_button.emx-readmore-link{
  padding: 14px 17px !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    line-height: 1 !important;
    font-family: var(--font-ibm) !important;
    white-space: nowrap !important;
    border-radius: 8px !important;
}

.col-with-video .container{
  align-items:center;
  justify-content:space-between;
}

.col-with-video .video-wrapper{
    margin-bottom: 0;
    transform: none;
  width:100%;
  max-width:100%;
}

.col-with-video .video-overlay img{
  height:100%;
}

/* menu navigation */
.navbar3 .dropdown-menu ul.list-none.has_menu_below:not(:has(li)) {
    margin-bottom:48px;
}

.navbar3 .dropdown-menu ul.list-none.has_menu_below:has(li) {
    margin-bottom:48px;
}

.col-with-video .video-wrapper video,
.col-2-with-image.map-wrap .image-right,
.video-single video.source-video.srVideo{
  display:block;
}

.related-post.cards .card,
.grid-3-cols.industry-home .card.featured, 
.grid-3-cols.industry-home .card.featured.doublewidth, 
.grid-3-cols.industry-home .card.featured.fullwidth,
.form-contact .contact-wrap,
.advantage.bg-white .card-advantage,
.grid-3-cols .card,
.advantage .card-advantage,
.col-with-video .video-wrapper video,
.accordion-item,
.cards .card .card-header,
.floating-banner,
.featured-solutions .content-wrap,
.featured-solutions .card,
.col-with-video .video-overlay img,
.download-detail .form-wrap,
.video-single video.source-video.srVideo,
.our-dna .content-wrapper,
.qoutegrid .qoutegrid-wrap,
.twocols-img img:not(.icon-cta),
.header-products .form-wrap,
.gallery .image-item,
.hs-search-results .card-cases,
.training-detail .form-wrap{
    border-radius:16px;
}

.hs-search-results .card-cases{
   background:#f5f5f5;
  overflow:hidden;
}

.hs-search-results .card-cases .card-body{
  background-color:transparent;
}

.related-post.cards .card .card-header{
  border-radius : 16px 16px 0 0;
}
.grid-3-cols .card,
.cards .card .card-header,
.qoutegrid .qoutegrid-wrap,
.floating-banner,
.gallery .image-item{
  overflow:hidden;
}
.featured-solutions .card:before, 
.featured-solutions .card:after{
    border-radius: 16px;
}

.featured-solutions .card:hover:before, 
.featured-solutions .card:hover:after{
  opacity: 1;
    border-image: unset;
    border-image-slice: unset;
    border-image-width: unset;
    border-image-outset: unset;
    border-image-repeat: unset;
    background: linear-gradient(111deg, #07A19F 0%, #1D1A39 100%);
    border-radius: 16px;
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 0px;
    position: absolute;
}

.col-with-video.video-stay, .faq-accordion, .featured-solutions, .form-contact, .grid-3-cols, .grid-3-cols.software, 
 .two-col-with-image,
.our-dna, .people-logo, .video-single,
.advantage, .licensing-options,
.case-slider:not(.trial-banner) .container, 
.col-with-video,
.industry-logo, 
.related-post,
.case-slider.trial-banner, 
body .grid2cols-overlapcta.trial-banner.switch-to-text,
.download-detail,
.gallery,
.grid2cols-overlapcta.trial-banner,
.dnd-module > .hs_cos_wrapper_type_module.widget-type-rich_text,
.twocols-img,
.training-detail,
.training-list-accordion,
.grid2cols-case-detail,
.case-post-container .grid-3-cols.featured-list{
  padding-bottom:0px;
  padding-top:40px;
  /*background: #fff !important; */
}

.cols-2-with-image{
  margin-top:40px;
  margin-bottom:0;
}

.dnd-module > .hs_cos_wrapper_type_module.widget-type-rich_text h1{
  margin-top:0;
}

.header-solutions .wrapper,
.header-products .wrapper,
 .header-downloads .wrapper,
.cols-2-with-image{
  padding-bottom:40px;
  padding-top:40px;
}

.header-downloads .wrapper{
  padding-top:0;
}

.header-downloads.v3-style .wrapper,
.qoutegrid.bg-grey{
  background:#fff;
}

.dnd-section:last-of-type section,
.training-list-accordion{
    padding-bottom:40px;
}

.two-col-with-image img.img-float{
    width: 100%;
    height: 100%;
    max-width: unset;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 16px;
  }

.form-contact .contact-wrap{
  max-width:100%;
}

.related-post.cards .card-col{
  margin:0;
}

.cols-2-with-image.digital-transform .row{
  margin-left:0;
  margin-right:0;
}

.cols-2-with-image.digital-transform .left-content{
  padding-left:0;
}

/* Header product restyle */
.header-products.v3-style,
.header.v3-style{
  padding-left:24px;
  padding-right:24px;
}

.header.v3-style .hs-button{
  width:100%;
  max-width:100%;
}

.header-products.v3-style .wrapper,
.header.v3-style{
  padding-top:0;
  padding-bottom:0;
  padding-left:0px;
  padding-right:0px;
}

.header.v3-style .bg-image,
.header.v3-style .bg-overlay{
  border-radius:24px;
  height:100%;
  position:absolute;
}

.header.v3-style .wrapper > .container{
  padding-top:32px;
  padding-left:8px;
  padding-right:8px;
  padding-bottom:8px;
  min-height:590px;
  display:flex;
    flex-direction:column;
    justify-content: flex-end;
}

.header.v3-style .wrapper{
  padding-left:24px;
  padding-right:24px;
  padding-top:0;
  padding-bottom:0;
}

.header.v3-style .header-row,
.header.v3-style .hs_cos_wrapper_type_form,
.header.v3-style .banner-wrap .content div{
  position: relative;
}

.header.v3-style .form-wrap{
  border-radius:16px;
     background: transparent;
    padding: 0;
}

.header.v3-style  .bg-image{
  width:100%;
}

.header.v3-style .banner-wrap .content{
  border: 1px none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
      padding: 32px 16px;
  overflow:hidden;
  border-radius: 16px;
}

.header.v3-style .banner-wrap .content:before{
  background: linear-gradient(180deg, hsla(248, 7%, 58%, .6), rgba(29, 26, 57, 0));
    border-radius: 16px;
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    position: absolute;
}

.header.v3-style .title{
  color: #fff;
    font-family: IBM Plex Sans, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.33;
}

.header.v3-style .content-text p,
.header.v3-style .content-text,
.header.v3-style .content-text span{
  font-size:14px;
  color:#fff;
}

/* floating CTA */
.floating-cta{
    padding:0;
    top:75px;
}

.floating-cta .container{
    padding:16px;
    background:#07a19f;
    border-radius:24px;
}

/* breadcrumbs */
.header.v3-style .breadcrumbs-wrapper{
  position:relative;
  top:0;
  padding: 13px 0;
  color:#C6C5CD;
  font-weight:500;
}

.header.v3-style .breadcrumbs-wrapper .container{
  padding:0;
}

.header.v3-style .breadcrumbs-wrapper a,
.header.v3-style .breadcrumbs-wrapper a ~ span{
  color:#C6C5CD;
  font-size:14px;
  text-decoration:none;
}

.header.v3-style .breadcrumbs-wrapper .last-crumb,
.header.v3-style .breadcrumbs-wrapper .last-crumb span{
  color:#C6C5CD;
  font-weight:700;
}

.header.v3-style .breadcrumbs-wrapper .hs-breadcrumb-menu-item{
  padding:0;
  font-size:14px;
}

.header.v3-style .breadcrumbs-wrapper .hs-breadcrumb-menu-item:first-child{
  display: flex;
    align-items: flex-end;
    padding-left: 5px;
}

.header.v3-style .breadcrumbs-wrapper .hs-breadcrumb-menu-divider:before{
  padding-left:16px;
  padding-right:16px;
}

.header.v3-style .breadcrumbs-wrapper .hs-breadcrumb-menu {
  display:flex;
  flex-wrap:wrap;
      padding-left: calc(var(--bs-gutter-x)* .5);
    padding-right: calc(var(--bs-gutter-x)* .5);
}

/* two cols restyle */
.twocols-img .col-12 > .position-relative,
.col-with-video .video-overlay > .position-relative,
.grid2cols-overlapcta .col-12 > .position-relative,
.grid2cols-overlapcta.trial-banner .media.only-one{
  border-radius:16px;
  width:100%;
  overflow:hidden;
}



.grid2cols-overlapcta .row{
  margin:0;
}

.col-with-video .video-wrapper.image-only .video-overlay img{
  display:block;
}

.dnd-section .dnd-column{
    padding-left:0 !important;
    padding-right:0 !important;
  }

.two-col-with-image .container,
.twocols-img .container > .row.row-right{
  flex-direction:column;
  gap:20px;
}

.twocols-img .container > .row{
  flex-direction:column-reverse;
}

.two-col-with-image .text-content{
  color: #3e3d40;
}

@media (max-width:767px){
  .desktop-hide-mobile{
    display:none !important;
  }
}

@media (min-width: 600px) and (max-width: 992px) {
    .case-slider .floating-banner, 
  .case-slider .swiper-container {
        max-width: 100%;
    }
  
/*   .header.v3-style .wrapper > .container{
    padding-top:250px;
  } */
}


@media (min-width: 600px) and (max-width: 1024px) {
    .timeline .timeline-wrap {
        margin-bottom: 100px;
    }
}

@media (max-width: 992px) {
  .header-solutions .banner-wrap{
    max-width:100%;
  }
  
  .icon-about-box .container{
    padding-left:24px;
    padding-right:24px;
  }
  
  .grid-3-cols.industry-home .card.featured .content-wrap{
    background:#f5f5f5;
  }
  
    .industry-home .card.featured p{
              color: #3e3d40;
        font-size: 14px;
    }

    .navbar3 .navbar-item > .navbar-link:nth-child(3) {
       padding-top:48px;
    }
  
    .has_menu_below{
      margin-bottom:24px;
    }
  
    .dnd-row .dnd-module:last-of-type .card--pricing {
      margin-bottom:0;
    }
  
    .form-contact .container,
  .advantage.with-right-image .container{
        padding-left: 24px;
        padding-right: 24px;
    }
  
  .advantage.with-right-image .row.home-services{
    margin:0;
  }
  
  .advantage.with-right-image .content-only{
    margin-left:0;
    padding:0;
  }
  
  .twocols-img .col-12.content-right, 
  .twocols-img .content-left{
    padding:40px 0 0 0;
  }
  
  .download-detail .form-wrap{
    margin-bottom:0;
  }
  
  .qoutegrid .qoutegrid-wrap{
    border-radius:0;
  }
  
  .header .form-col-wrap,
  .header.header-products .header-row,
  .download-detail .content{
    padding-top:40px;
  }
  
  .timeline .line{
    height: calc(100% - 10px);
  }
  
  .header-solutions .bg-overlay{
    height:100%;
  }
  
  .dnd-section .dnd-column{
    padding-left:0 !important;
    padding-right:0 !important;
  }
  
  .case-slider.trial-banner, 
  .grid2cols-overlapcta.trial-banner.switch-to-text,
  .header.header-downloads .header-row,
  .qoutegrid.bg-grey.with-banner{
      padding-bottom:0px;
      padding-top:40px;
  }
  
  .header.header-products .wrapper,
  .col-2-with-image.map-wrap,
  .timeline,
  body .case-slider.trial-banner, 
  .grid2cols-overlapcta.trial-banner.switch-to-text{
    padding-bottom:0;
  }
  
  .case-slider .swiper-container{
    padding-top:0;
    padding-bottom:0;
  }
  
  .featured-solutions .card:after, .featured-solutions .card:before{
    border-image: none;
  }
  
  .icon-about-box .icon-box-wrap{
    border-bottom: none;
  }
  
  .#hs_cos_wrapper_cta_with_form .form-contact{
    padding-bottom:40px;
  }
  
  .row-cases-post{
    padding-top:40px;
  }
  
  .events-overview{
    padding-top:40px;
  }
  
  .two-cols-cta .cta-wrap {
      background-color: transparent;
      color: #3e3d40;
   }
  .two-cols-cta .content-wrap{
    margin-bottom:40px
  }
  .two-cols-cta .content-wrap .title{
    margin-bottom:16px;
  }
  .two-cols-cta .content-wrap p{
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .48px;
  }
  .people-logo, .two-cols-cta {
    padding-bottom: 0px;
  }
  
  .header.header-training .content-text {
        margin-bottom: 0;
        margin-top: 24px;
  }
}
@media (max-width:991px){
  .header.v3-style .wrapper>.container{
    padding: 8px;
    min-height: 300px;
  }
}
@media (min-width:992px){
  .two-col-with-image .text-content,
  .two-col-with-image .text-content p,
  .content-text, 
  .content-text p, 
  .header-solutions .content-text,
  .header-solutions .content-text p,
  .form-contact .content-text,
  .floating-banner .content-text,
  .floating-banner .content-text p,
  .col-with-video .content-text,
  .col-with-video .content-text p{
    font-size:16px;
  }
  
  .grid-3-cols.featured-cases{
    margin-top:80px;
  }
  
  .header.v3-style .hs-button{
    width: auto;
      padding: 14px 17px;
      height: auto;
      font-family: var(--font-ibm);
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
    text-transform:uppercase;
  }
  
  .col-with-video.video-stay .container,
  .two-col-with-image .container,
  .twocols-img .container > .row,
  .grid2cols-overlapcta:not(.switch-to-text) .row,
  .grid2cols-overlapcta:not(.switch-to-text) .row:nth-child(2){
    align-items: center;
    gap:80px;
  }
  
  .twocols-img .container>.row{
    margin:0;
  }
  
  .col-with-video .video-wrapper{
    height:auto;
  }
  
  .col-with-video .video-wrapper .video-container,
  .grid2cols-overlapcta .col-12>.media,
  .two-col-with-image .image-container,
  .col-with-video .video-wrapper.image-only .video-overlay img{
    height:100%;
    max-height:540px;
  }
  
  .two-col-with-image.fullwidth-homepage .image-container{
    max-height:unset;
  }
  
  .col-with-video .video-wrapper video{
    aspect-ratio:8/6;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
  }
  
  .col-with-video .video-wrapper,
  .col-with-video .left-content{
    flex:1;
  }
  
  .two-col-with-image .wrap-title,
  .twocols-img .title,
  .grid2cols-overlapcta .content h4{
    font-size:calc(-.38095px + 1.90476vw);
    margin-bottom:24px;
    line-height:1.3;
  }
  
  .grid2cols-overlapcta.with-f-banner .row:nth-child(2) .col-12>.media{
    margin-top:190px;
  }
  
  .col-with-video .video-overlay > .position-relative{
    height:100%;
  }
  
  section.two-col-with-image img.img-float,
  .col-with-video .video-wrapper.image-only .video-overlay img{
    position:relative;
    aspect-ratio:8/6;
    display:inline-block;
  }
  
  .col-with-video .container,
  .two-col-with-image .container, 
  .twocols-img .container > .row.row-right{
    gap:80px;
  }

  
  .col-with-video .left-content,
  .twocols-img .content-left,
  .twocols-img .content-right,
   .trial-banner .content-left .col-12:nth-child(odd):not(.switch-col-text),
  .trial-banner .content-right .col-12:nth-child(odd):not(.switch-col-text){
    align-self:center;
  }
  
  .twocols-img img:not(.icon-cta){
    aspect-ratio:8/6;
    max-height:unset;
  }
  
  .two-col-with-image .container,
  .twocols-img .container > .row,
  .twocols-img .container > .row.row-right{
    justify-content:space-between;
    flex-direction:row;
  }
  
  section.two-col-with-image .text-container,
  .twocols-img .content-left,
  .col-with-video .left-content,
  .twocols-img .content-right,
  .trial-banner .content-left .col-12:nth-child(odd):not(.switch-col-text),
  .trial-banner .content-right .col-12:nth-child(odd):not(.switch-col-text){
    padding:0;
    max-width:50%;
    width:100%;
    flex:1;
  }
  
  .grid2cols-overlapcta .col-12:not(.switch-col-text) .content{
    padding-right:0;
  }
  
  .two-col-with-image .image-container,
  .twocols-img .img-wrapper,
  .col-with-video .video-wrapper.image-only,
  .col-with-video .video-wrapper,
  .trial-banner .content-left .col-12:nth-child(even):not(.switch-col-text),
  .trial-banner .content-right .col-12:nth-child(even):not(.switch-col-text){
    max-width:50%;
    width: 100%;
    flex:1;
  }
  
  .twocols-img .img-wrapper,
  .grid2cols-overlapcta .content-right .content{
    padding-left:0;
    padding-right:0;
  }
  
  .trial-banner .content-right .col-12:nth-child(odd):not(.switch-col-text){
    text-align:left;
  }
  
  .header.v3-style .banner-wrap .content{
      max-width: 590px;
      padding: 40px;
  }
  
  .header.v3-style .wrapper > .container{
    min-height:600px;
  }
  
  .header-training.v3-style .wrapper > .container{
    min-height:300px;
  }
  
  .header.header-products.v3-style .wrapper,
  .header.v3-style .wrapper{
      max-height: 100%;
  }
  
  .related-post.cards .card .card-body{
    border-radius: 0px 0px 16px 16px;
  }
  
   .header.v3-style .header-row{
    gap:25px;
  }
  
  .header.v3-style .wrapper{
    padding-left: calc(var(--bs-gutter-x)* .5);
    padding-right: calc(var(--bs-gutter-x)* .5);
  }
  
  .header.v3-style .title {
    font-size: 32px;
    line-height: 1.167;
    margin-bottom: 24px;
  }
  
  .header.v3-style .content-text p,
  .header.v3-style .content-text,
  .header.v3-style .content-text span{
    font-size:16px;
  }
  
  .floating-banner{
     max-width: calc(100% - 104px);
   }
  
  .case-slider .text-container{
    margin-bottom:160px;
  }
  
  .grid2cols-overlapcta .media img{
    aspect-ratio:8/6;
    max-height:540px;
  }
  
  .people-logo .logo-wrap .logo-container{
    flex: 1 !important;
  }
  
  .case-slider .container{
    padding: 120px calc(var(--bs-gutter-x)*.5);
  }
  
  .col-with-video.video-stay, .faq-accordion, .featured-solutions, .form-contact, .grid-3-cols, .grid-3-cols.software,
  .two-col-with-image,
  .our-dna, .people-logo, .video-single,
  .advantage, .licensing-options,
  .case-slider .container, .col-with-video,
  .industry-logo, 
  .related-post,
  .twocols-img,
  .container.about-map,
  .grid2cols-case-detail, 
  .qoutegrid.bg-grey, 
  .qoutegrid.bg-grey.with-banner,
  .timeline,
  .grid2cols-overlapcta.switch-text, 
  body .grid2cols-overlapcta.trial-banner.switch-to-text,
  .download-detail,
  .gallery,
  .dnd-module > .hs_cos_wrapper_type_module.widget-type-rich_text,
  .grid2cols-overlapcta.trial-banner,
  .training-detail,
  .training-list-accordion,
  .grid2cols-case-detail,
  .case-post-container .grid-3-cols.featured-list{
    padding-bottom:0px;
    padding-top:80px;
  }
  
  .case-post-container .grid-3-cols.featured-list{
    margin-top:0;
  }
  
  .cols-2-with-image,
  .grid2cols-overlapcta .content-right{
    margin-top:80px;
    margin-bottom:0;
  }
  
  .header-solutions .wrapper,
  .header-products .wrapper,
   .header-downloads .wrapper,
  .cols-2-with-image,
  .banner-cta{
    padding-bottom:80px;
    padding-top:80px;
  }
  
  /* Header new style   */
  .header-solutions.v3-style .wrapper{
    padding-top:0;
    padding-bottom:0;
  }
  
  .grid2cols-overlapcta .content-right{
    align-items:center;
  }

  
  .dnd-section:last-of-type section,
  #hs_cos_wrapper_cta_form .form-contact, 
  #hs_cos_wrapper_cta_with_form .form-contact,
  .training-list-accordion{
      padding-bottom:80px;
  }
  
  .case-slider .container{
    padding-bottom:120px;
  }
  
  .switch-col-text .content,
  .grid2cols-overlapcta .content,
  body .grid2cols-overlapcta.trial-banner .media.only-one{
    margin:0;
  }
  
  .two-col-with-image .text-container{
    padding: 0px 0 0px 114px;
  }
  
  .two-col-with-image .img-float{
    margin-bottom:80px;
    margin-top:80px;
    height: calc(100% - 160px);
  }
  
/*  two col image homepage  */
  .two-col-with-image .container{
    align-items:center;
  }
  
  .two-col-with-image .image-container{
    position: relative;
    height: auto;
    align-self: center;
  }
  
  .two-col-with-image img.img-float{
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: unset;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 24px;
  }
  
/*   header product restyle */
  .header-products.v3-style .wrapper,
  .header-solutions.v3-style .wrapper{
    padding-left: calc(var(--bs-gutter-x)* .5);
    padding-right: calc(var(--bs-gutter-x)* .5);
  }
  
  .header.v3-style .wrapper > .container{
    border-radius: 24px;
    overflow: hidden;
    padding:80px 80px 40px 40px;
  }
  
  .header-training.v3-style .wrapper > .container{
    padding:40px 80px 40px 40px;
    justify-content: center;
  }
  
  .header-products.v3-style,
  .header.v3-style{
    padding-left:0;
    padding-right:0;
  }
  
  .col-2-with-image .image-right{
    height:calc(100% - 80px);
  }
  
  .case-slider .floating-banner {
    transform: translateY(0) !important; 
    margin-bottom:80px;
  }
  
  .case-slider .container{
    align-items:center;
  }
  
  .case-slider .image-container img{
    aspect-ratio: 8/6;
    max-height: 540px;
  }
  
  .our-dna.white .card:after, .our-dna.white .card:before{
    border:none;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .case-slider .text-container{
    margin-top:0px;
  }
  
  .two-col-with-image img.img-float{
    position:relative;
  }

  .floating-cta.active .container{
    max-width: calc(100% - 303px);
  }
  
  .header.v3-style .header-row{
    gap:25px;
  }
  
  .header.v3-style .circle-item, .circle-text-container a, 
  .header.v3-style .circle-text-container p{
    font-size:12px;
  }
  
}

@media (min-width: 1280px) {
    .floating-banner {
        max-width: calc(100% - 304px);
    }
    .grid2cols-overlapcta.with-f-banner  .floating-banner {
      max-width:100%;
    }
}

@media (min-width: 1300px) and (max-width: 1500px) {
    .two-col-with-image .container .text-container {
        padding-bottom:0px;
    padding-top:0px;
    }
}
@media (min-width:1500px){
  .header.v3-style .wrapper > .container{
    min-height:800px;
  }
  .header-training.v3-style .wrapper > .container{
    min-height:300px;
  }
}
@media (min-width:1700px){
  section.two-col-with-image .text-container,
  .col-with-video .left-content,
  .twocols-img .content-left,
  .twocols-img .content-right,
  .trial-banner .content-left .col-12:nth-child(odd):not(.switch-col-text),
  .trial-banner .content-right .col-12:nth-child(odd):not(.switch-col-text){
    max-width:50%;
  }
  
  .two-col-with-image .image-container,
  .col-with-video .video-wrapper,
  .twocols-img .img-wrapper,
  .col-with-video .video-wrapper.image-only,
  .trial-banner .content-left .col-12:nth-child(even):not(.switch-col-text),
  .trial-banner .content-right .col-12:nth-child(even):not(.switch-col-text){
    max-width:50%;
  }
  
  .two-col-with-image .wrap-title,
  .twocols-img .title,
  .grid2cols-overlapcta .content h4{
    font-size:32px;
  }
 
 
  .header.v3-style .title {
    font-size: 38px;
    line-height: 1.167;
    margin-bottom: 24px;
  }
  
  .advantage.with-right-image .card-title a {
        font-size: 24px;
        margin: 0
  }
  
   .training-list-accordion{
    padding-bottom:0px;
    padding-top:80px;
  }
  
  .two-col-with-image .text-content,
  .two-col-with-image .text-content p,
  .content-text, 
  .content-text p, 
  .header-solutions .content-text,
  .header-solutions .content-text p,
  .form-contact .content-text,
  .floating-banner .content-text,
  .floating-banner .content-text p,
  .col-with-video .content-text,
  .col-with-video .content-text p, 
  .grid-3-cols .card .excerpt, 
  .excerpt, .people-logo .content,
  .advantage .card-advantage p,
  .header.v3-style .content-text, 
  .header.v3-style .content-text p, 
  .header.v3-style .content-text span{
    font-size:18px;
  }
}

@media (min-width: 1920px){
  .container,
  .case-slider .container{
    padding-left:0;
    padding-right:0;
  }
  .dnd-section .dnd-column{
    padding-left:0 !important;
    padding-right:0 !important;
  }
  
  .floating-banner,
  .floating-cta.active .container{
        max-width: 1640px;
    }
  .header.v3-style .title {
    font-size: 48px;
    line-height: 1.167;
    margin-bottom: 24px;
  }
}

.grid-3-cols .bg-grey{
  background-color:#fff;
}

.case-slider .swiper-button-next{
  border-radius: 0 16px 0 0;
} 
.case-slider .swiper-button-prev{
  border-radius: 16px 0 0 0;
}

.col-with-video{
  background-color:transparent;
}
.grid-3-cols.bg-grey, .case-slider.bg-grey{
  background-color:transparent;
}

.separator{
  display:none !Important;
}

.two-cols-cta{
  background-color:#fff !Important;
}

.grid-3-cols{
  background-color:#fff !Important;
}

.related-cases.with-banner{
  padding-bottom:0;
}

.grid-3-cols.related-cases.with-banner .card .content-wrap{
  background-color:#f5f5f5;
}

.case-slider.bg-grey{
background-color:#fff !Important;
}

.grid2cols-case-detail.first-grid-row{
  padding-top:80px !important;
  padding-bottom:0;
}
@media (max-width: 992px){  
  .grid2cols-case-detail.first-grid-row{
    padding-top:40px !important;
    padding-bottom:0;
  }
  
  .grid-3-cols.featured-list .content-wrap{
    padding:20px;
  }
}
@media (max-width: 992px){
  #hs_cos_wrapper_widget_1697469378882 .header-solutions .wrapper {
      padding-bottom: 0px !Important;
  }
  @media (max-width: 992px)
  .advantage.with-right-image {
    padding-bottom: 0px !important;
    padding-top: 40px !important;
  }
  .header-events .event-datetime span, .header-events .event-location span{
    color:#fff;
  }
}

@media (min-width: 1024px) and (max-width: 1500px){
  .hs-content-id-148880265816 .floating-banner, .hs-content-id-150557081402 .floating-banner {
    margin-top: 0;
  }
}

@media (min-width: 1700px){
  .two-col-with-image .wrap-title {
      max-width: 100%;
  }
}

.text-slider{
  display:none;
}

.bg-grey,
.events-overview,
.grid-3-cols.bg-grey .card,
.grid2cols-overlapcta{
  background:#fff;
}

.grid-3-cols.bg-grey .card{
  background:#f5f5f5;
}

.header.v3-style .bg-image, 
.header.v3-style .bg-overlay{
  object-fit:cover;
}

#hs_cos_wrapper_cta_with_form .form-contact,
.download-detail.event-page{
  padding-top:40px;
  padding-bottom:40px;
}

.col-2-with-image.map-wrap,
section.our-dna.white{
  padding-bottom:0px;
  padding-top:40px;
  background-color:#fff;
}

.cases-overview .card-cases,
.events-overview .card-event{
   background:#f5f5f5;
  overflow:hidden;
  border-radius:16px;
}

.cases-overview .card-cases .card-body,
.events-overview .card-event .card-body,
.floating-cta,
.our-dna.white .card{
  background-color:transparent;
}

/* .floating-cta{
  padding-left: calc(var(--bs-gutter-x)* .5);
  padding-right: calc(var(--bs-gutter-x)* .5);
} */

.grid2cols-case-detail .media img{
  border-radius:16px;
          aspect-ratio: 8 / 6;
        position: relative;
  height:100%;
  width:100%;
}

.our-dna .row.grid-inline{
  gap:0;
  row-gap:24px;
}

/* blog */
.posts .card{
    border-radius:16px;
    overflow:hidden;
}

.filter-link{
  border-radius:16px;
}

.floating-banner{
  margin-bottom:40px;
  margin-top:0;
}

/* .case-slider .floating-banner{
    transform: translateY(60px);
}

.case-slider .floating-banner ~ .case-slider-container{
     margin-bottom: 60px;
    transform: translateY(60px);
} */

.two-cols-cta .cta-wrap .col-12.col-lg-6 .position-relative{
    border-radius:16px;
    overflow:hidden;
}

.two-cols-cta .cta-wrap{
  margin-left:0;
  margin-right:0;
}

.two-cols-cta .col-12{
  padding-left:0;
  padding-right:0;
}

.case-slider .image-container{
  position:relative;
  width: 50%;
}

.case-slider .swiper-slide{
  min-height:0;
}



@media (min-width:992px){
  /*
  #main-content h1{
    font-size:32px !important;
  }
  #main-content h2{
    font-size:28px !important;
  }
  #main-content h3,
  #main-content h4{
    font-size:24px !important;
  } */
  
  .header.header-bg-video.second-style h1.title{
    font-size:32px;
    line-height:1.15;
  }
  
  .advantage h2,
  .download-detail h2,
  .people-logo .title,
  .grid-3-cols .wrap-title,
  .form-contact .wrap-title,
  .case-slider .floating-banner .small-title, 
  .floating-banner .small-title,
  .licensing-options h2,
  .cols-2-with-image .wrap-title,
  .case-slider .small-title,
  .wrap-title,
  .col-with-video .title,
  .two-col-with-image .wrap-title, 
  .twocols-img .title,
  .video-single h2,
  .our-dna .inline-title .title,
  .related-post h2,
  .qoutegrid .wrap-title,
  #main-content .grid2cols-overlapcta .content h4,
  #main-content .banner-cta .title,
  .header.v3-style h2.title,
  .product-download-grid h2{
      font-size: 24px;
  }
  
  #main-content h3,
  .advantage .card-advantage .card-title a,
  #main-content h4{
    font-size:18px;
  }
  
  .grid2cols-overlapcta .overlapcta-wrap{
    position:relative;
  }
  
  .grid2cols-overlapcta.with-f-banner .row:nth-child(2) .col-12>.media{
    margin-top:0;
  }
  
  .case-slider .swiper-button-next, .case-slider .swiper-button-prev{
    height:100px;
    width:100px;
  }
  
  .case-slider .text-container{
    margin-bottom:0;
    flex:1;
  }
  
  .case-slider:not(.trial-banner) .swiper-slide .container{
    gap:80px;
    padding-top:0;
  }
  
  .case-slider .image-container{
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    max-height: 540px;
    flex:1;
  }
  
  .floating-cta.active .container{
    max-width: calc(100% - 303px);
  }
  
  .col-2-with-image.map-wrap,
  section.our-dna.white,
  #hs_cos_wrapper_widget_1700141910897 .gallery, .our-dna.white{
    padding-bottom:0px;
    padding-top:80px;
  }
  
  .two-cols-cta .cta-wrap .col-12.col-lg-6 .position-relative{
      border-radius:24px;
  }
  
  .floating-banner{
    margin-bottom:80px;
    margin-top:0;
  }
  
  .case-slider .swiper-button-next{
    border-radius: 0 16px 16px 0;
  }
  
  .case-slider .swiper-button-prev{
    border-radius: 16px 0 0 16px;
  }
  
/*   .case-slider .floating-banner{
    transform: translateY(80px);
  }

  .case-slider .floating-banner ~ .case-slider-container{
    margin-bottom: 80px;
    transform: translateY(80px);
  } */
  
/*   .case-slider .slide-arrows .arrows-container{
     right: 42%;
  } */
  
  #hs_cos_wrapper_cta_with_form .form-contact,
  .download-detail.event-page{
    padding-top:80px;
    padding-bottom:80px;
  }
  
  .col-with-video .video-wrapper video{
    max-height:540px;
  }

  
  .grid2cols-case-detail .media img{
     max-height: 540px;
  }
  
  .grid2cols-case-detail .media img{
    border-radius:24px;
  }
  
/*   .case-slider .floating-banner{
      transform: translateY(80px);
  }

  .case-slider .floating-banner ~ .case-slider-container{
          margin-bottom: 80px;
      transform: translateY(80px);
  } */
  .grid2cols-overlapcta.with-f-banner .overlapcta-wrap{
    padding-left:0;
    padding-right:0;
  }
   .grid2cols-overlapcta.with-f-banner .floating-banner{
      max-width: 100%;
  }
  .grid2cols-overlapcta.only-banner .floating-banner{
      margin-bottom:0;
  }
}

@media (min-width:1700px){
  
  .header.header-bg-video.second-style h1.title {
    font-size:38px;
  }
  
  h1.title,
  h1{
    font-size:48px;
  }
  
  .advantage h2,
  .download-detail h2,
  .people-logo .title,
  .grid-3-cols .wrap-title,
  .form-contact .wrap-title,
  .case-slider .floating-banner .small-title, 
  .floating-banner .small-title,
  .licensing-options h2,
  .cols-2-with-image .wrap-title,
  .case-slider .small-title,
  .wrap-title,
  .col-with-video .title,
  .two-col-with-image .wrap-title, 
  .twocols-img .title,
  .video-single h2,
  .our-dna .inline-title .title,
  .related-post h2,
  .qoutegrid .wrap-title,
  #main-content .grid2cols-overlapcta .content h4,
  #main-content .banner-cta .title, 
  .header.v3-style h2.title,
  .product-download-grid h2{
    font-size:40px;
  }
  
  #main-content h3,
  .advantage .card-advantage .card-title a,
  #main-content h4{
    font-size:32px;
  }
  
  #hs_cos_wrapper_related_cases .grid-3-cols.related-cases .card .content-wrap{
    padding:40px;
  }
  
  .floating-cta{
    top:96px;
  }
  
  .container.about-map{
    padding-left:calc(var(--bs-gutter-x)*.5);
    padding-right:calc(var(--bs-gutter-x)*.5);
  }
  
  .two-cols-cta{
     padding-bottom:0px;
    padding-top:80px;
  }
}

@media (min-width: 1920px) {
    
    .header.header-bg-video.second-style h1.title {
      font-size:42px;
    }

    .advantage h2,
    .download-detail h2,
  .grid-3-cols .wrap-title{
      font-size:40px;
    }
  
    .floating-banner, .floating-cta.active .container {
        max-width: 1640px;
    }
}

.accordion-header{
  font-size:18px;
}

@media (min-width: 1700px) {
  .accordion-header{
    font-size:24px;
  }
}


.training-detail{
  background-color:#fff;
}
body {
    background-image: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/images/bg-blur-mobile.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background image fixed during scrolling */
    background-position: center; /* Centers the image */
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
    height: 100vh; /* Ensures the body takes up the full viewport height */
}
  
body, body .hs_cos_wrapper header.header, body .hs_cos_wrapper section{
  background-color:transparent;
}

.body-wrapper{
  background-color: rgba(0,0,0,.5);
}

body,
p,
.quote-slider-v3 .card-author p, 
.quote-slider-v3 .card-body, 
.quote-slider-v3 .card-body p,
.usp-section .usp-body, 
.usp-section p,
.grid-3-cols.sub-solutions-v3 .card .excerpt,
.singular-case .content-text,
.statistics .description,
.statistics p,
.singular-case .content p{
  font-size:14px;
}

.two-col-with-image.fullwidth-homepage.phase-2 h2,
.two-col-with-image.fullwidth-homepage.phase-2 .text-content,
.two-col-with-image.fullwidth-homepage.phase-2 .text-content p,
section.phase-2 h2,
section.phase-2 h2.title,
section.phase-2 .text-content,
section.phase-2 .content,
section.phase-2 .content p,
section.phase-2 .text-content p,
.singular-case .content-text{
    color:#fff;
}

.grid-3-cols.phase-2{
  background:transparent !important;
}

.floating-banner{
  border-radius:24px;
}

@media (min-width:768px) and (max-width:992px){
  .grid-3-cols.sub-solutions-v3 .card .featured-image,
  .singular-case .media img,
  .featured-blog .card-blog img,
  .highlighted-blog .card-blog img,
  .solutions-v3 .statistics-item img,
  .quote-slider-v3.green-style .background-image img,
  .faq-accordion.v3-style .answer-wrap .default-answer .background-image img{
        aspect-ratio: 325 / 174;
    height:100%;
    object-fit:cover;
  }
  
  .quote-slider-v3.green-style .content.with-bg-image,
  .faq-accordion.v3-style .answer-wrap .default-answer .content{
    aspect-ratio: 325 / 174;
  }
}

@media (min-width: 992px) {
    .singular-case .content-wrap,
    .usp-section .wrapper,
  .statistics .wrapper,
  .highlighted-blog .wrapper{
        padding: 40px;
    }
  
  .singular-case .media-slide.align-left{
    margin-left:0;
  }
  
  .highlighted-blog .content-wrapper{
    margin-left:0;
  }
  
  body,
  p,
  .quote-slider-v3 .card-author p, 
  .quote-slider-v3 .card-body, 
  .quote-slider-v3 .card-body p,
  .usp-section .usp-body, 
  .usp-section p,
  .grid-3-cols.sub-solutions-v3 .card .excerpt,
  .singular-case .content-text,
  .statistics .description,
  .statistics p,
  .singular-case .content p{
    font-size:16px;
  }
  
  .usp-section .usp-item .item-wrapper{
    height: 100%;
        display: flex;
        flex-direction: column;
    gap:16px;
  }
  

  .usp-section .usp-item .buttons-wrapper {
      margin-top: auto;
  }
}

@media (min-width: 1700px) {
  body,
  p,
  .quote-slider-v3 .card-author p, 
  .quote-slider-v3 .card-body, 
  .quote-slider-v3 .card-body p,
  .usp-section .usp-body, 
  .usp-section p,
  .grid-3-cols.sub-solutions-v3 .card .excerpt,
  .singular-case .content-text,
  .statistics .description,
  .statistics p,
  .singular-case .content p{
    font-size:16px;
  }
}
.header-section.navbar3.newstyle.extends-v4 #navbar {
    top:0;
    background: rgba(0, 0, 0, 0.20);
  backdrop-filter:none;
}

.navbar3.extends-v4 .navbar-logo img, 
  .navbar3.extends-v4 .navbar-logo svg{
    height:18px;
  }

.navbar3.extends-v4 .navbar-link{
  font-family:"GT Standard Trial";
  font-weight:400;
}

.navbar3.extends-v4 #navbar .container-parent,
.navbar3.extends-v4 #navbar .container{
    background:transparent;
}

.navbar3.extends-v4 .nav-desktop {
  justify-content:center;
}

.navbar3.extends-v4 .cta-wrap {
  z-index:100;
  height:0;
}

.navbar3.extends-v4 .cta-wrap .container{
  text-align:right;
}

.navbar3.extends-v4 .cta-wrap .container-parent{
  display:flex;
  justify-content:flex-end;
}

.navbar3.extends-v4 .cta-wrap .cta-button {
  position: absolute;
  transform: translateY(19px);
  border-radius: 9999px;
  background: #FE2C02;
    font-size:14px;
  font-weight:400;

}

.navbar3.extends-v4 .navbar-item.dropdown.multilang .navbar-link::after{
  display:none;
}

.navbar3.extends-v4 .icon-bar:nth-child(2){
  display:none;
}

.navbar3.extends-v4 .navbar-logo{
  margin-top:0;
  margin-bottom:0;
}

.navbar3.extends-v4 .navbar-logo img{
  max-width:118px;
}

.navbar3.extends-v4 .contact-link .navbar-item:not(.cta-button-wrap){
    width:48px;
    height:48px;
    justify-content:center;
    
}

.navbar3.extends-v4 .contact-link .navbar-item:not(.cta-button-wrap) a{
    line-height:48px;
    display:flex;
    align-items:center;
}

.navbar3.extends-v4 #navbar .multilang .dropdown-menu::before{
    display:none;
}

.navbar3.extends-v4 #navbar .multilang .dropdown-menu{
            background: #fff;
        backdrop-filter: blur(5px);
    mix-blend-mode: difference;
}

.navbar3.extends-v4 #navbar .multilang .dropdown-menu-item .dropdown-menu-link{
    color:#000f10
}

.navbar3.extends-v4 #navbar .contact-link.nav-desktop{
  width:auto;
}


@media screen and (max-width:992px){
  .navbar3.extends-v4 #navbar .mobile-btn-wrap{
    padding:0px;
    margin-top:auto;
  }
  
  .navbar3.extends-v4 .navbar-item.search-item .input-group #search{
    
    /* Body/body md */
    font-family: var(--Typography-Font-family-body-md, "GT Standard Trial");
    font-size: var(--Typography-Font-size-body-md, 16px);
    color: var(--Color-Neutrals-500, #000f10) !important;
    font-weight: 300;
    line-height: var(--Typography-Line-height-body-md, 24px); /* 150% */
    letter-spacing: -0.48px;
    padding-left:52px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #D6D6D1;
  }
  
  .navbar3.extends-v4 .navbar-item.search-item .input-group #search::placeholder{
    font-style: italic;
    color: var(--Color-Neutrals-500, #706E6C) !important;
    font-weight: 300;
    letter-spacing: -0.48px;
  }
  
  .navbar3.extends-v4 .contact-link .search-item.navbar-item:not(.cta-button-wrap){
    width:100%;
    height:auto;
    margin-bottom:32px;
  }
  
  .navbar3.extends-v4 .navbar-item.search-item .input-group .fa-search{
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    left: 16px;
    font-size: 16px;
    bottom: 12px;
    color: #FE2C02 !important;
    width:25px;
  }
  
  .navbar3.extends-v4 #navbar .cta-button{
      padding:14px 16px;
    justify-content:center;
    font-size:20px;
    font-weight:400;
  }
  
  .navbar3.extends-v4 .contact-link{
    padding-top:0 !important;
  }
  
  .navbar3.extends-v4 .nav-mobile{
    height: calc(100vh - 55px);
    display: flex;
    flex-direction: column;
    background: #000F10;
    padding: 32px 16px;
    border-top: 1px solid #0A2D33;
  }
  
  .navbar3.extends-v4 #navbar .container-parent{
    backdrop-filter:blur(0px);
    height: 56px;
    align-items: center;
    background: #000F10;
    border-radius: 0;
  }
  
  .navbar3.extends-v4 #navbar.opened .navbar-menu{
    opacity:1;
    visibility:visible;
  }
  
  .navbar3.extends-v4 #navbar>.container{
    width:100%;
  }
  
  .navbar3.extends-v4 .navbar-links{
    border-radius:0;
    background:#000F10;
    padding:0px !important;
    height:auto;
    font-size:20px;
  }
  
  .navbar3.extends-v4 .navbar-item:not(.search-item){
            border-bottom: 1px solid #43E0FF;
        padding: 18px 0px;
  }
  
  .navbar3.extends-v4 .navbar-item:not(.search-item):first-child{
    border-top: 1px solid #43E0FF;
  }
  
  .navbar3.extends-v4 .navbar-toggle{
    min-width:40px;
    width:40px;
  }
  
  .button-menu-wrap{
    gap:16px;
    align-items:center;
  }
  
  .icon-item-wrap{
    margin-top:16px;
  }
  
  .icon-item-wrap .icon-wrap-support,
  .icon-item-mobile{
    display:flex;
    align-items:center;
    color: var(--Color-Neutrals-0, #FFF);
    padding:12px 0;
    /* Button/button md */
    font-family: var(--Typography-Font-family-button-md, "GT Standard Trial");
    font-size: var(--Typography-Font-size-button-md, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typography-Line-height-button-md, 24px); /* 150% */
    gap:8px;
    text-decoration:none;
  }
  
  .navbar3.extends-v4 .icon-item-mobile.navbar-item:not(.search-item){
    border-bottom:0;
  }
  
  .navbar3.extends-v4 .icon-item-mobile .navbar-link{
    display:flex;
    align-items:center;
    gap:8px;
        justify-content: flex-start;
    flex:1;
  }
  
  .navbar3.extends-v4 #navbar .multilang .dropdown-menu{
    opacity: 1;
    visibility: visible;
    height: auto;
    width: auto;
    display: flex;
    background: transparent;
    color: white;
    flex:1;
    gap: 34px;
    justify-content: flex-end;
    margin-bottom:0;
  }
  
  .navbar3.extends-v4 #navbar .multilang .dropdown-menu .dropdown-menu-item.active .dropdown-menu-link{
    text-decoration:underline;
  }
  
  .navbar3.extends-v4 .dropdown-menu .dropdown-menu-item{
    padding:0;
    border-bottom:0;
  }
  
  .navbar3.extends-v4 #navbar .multilang .dropdown-menu-item .dropdown-menu-link{
    color:#fff;
  }
}

@media screen and (min-width:993px){
  .navbar3.extends-v4 #navbar .cta-button{
    visibility:hidden;
    font-size:16px;
  }
  
  .navbar3.extends-v4 .navbar-logo img, 
  .navbar3.extends-v4 .navbar-logo svg{
    height:auto;
  }
  
  .navbar3.extends-v4 .home-link{
    width:340px;
  }

  /* Match Case Slider alignment: clamp(60px, calc((100% - 1400px) / 2), 240px)
     1920px → 240px each side (content = 1440px)
     1700px → 150px each side (content = 1400px)
     1440px →  60px each side (content = 1320px)
     ≤1399px →  60px each side (content scales)
  */
  .navbar3.extends-v4 #navbar > .container,
  .navbar3.extends-v4 .cta-wrap > .container {
    max-width: none;
    width: 100%;
    padding-left: clamp(60px, calc((100% - 1400px) / 2), 240px);
    padding-right: clamp(60px, calc((100% - 1400px) / 2), 240px);
  }
  
  .navbar3.extends-v4 #navbar .container-parent{
    padding-left:0;
    padding-right:0;
  }
  
  .header-section.navbar3.newstyle.extends-v4 #navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.00) 100%);
    backdrop-filter: blur(1px);
    mix-blend-mode: difference;
  }
  
  .navbar3.extends-v4 .cta-wrap .cta-button {
    font-size:16px;
  }
  
  .navbar3.extends-v4 .navbar-link.search-icon{
    margin-top:4px;
  }
  
  .navbar3.extends-v4 .cta-wrap .cta-button{
    transform: translateY(7px);
  }
}

@media (min-width:993px) and (max-width: 1199px) {
    .navbar3.extends-v4 #navbar > .container, 
  .navbar3.extends-v4 .cta-wrap > .container {
        padding: 0px 16px;
    }
}

@media screen and (min-width:1280px) {

    .navbar-item {
       margin-left: 16px;
      margin-right:16px;
    }
   .contact-link .navbar-item  {
       margin-left: 8px;
      margin-right:8px;
    }
  
  .navbar3.extends-v4 #navbar .multilang{
    margin-left: 8px;
      margin-right:8px;
  }
  
}

@media screen and (min-width:1400px){
    .navbar-item {
        margin-left: 20px;
      margin-right:20px;
    }
  .contact-link .navbar-item  {
       margin-left: 8px;
      margin-right:8px;
    }
  .navbar3.extends-v4 #navbar .multilang{
    margin-left: 8px;
      margin-right:8px;
  }
}

@media screen and (min-width: 1700px) {

    .contact-link .navbar-item  {
       margin-left: 8px;
      margin-right:8px;
    }
    .navbar-item {
        margin-left: 28px;
      margin-right:28px;
    }
  .navbar3.extends-v4 #navbar .multilang{
    margin-left: 8px;
      margin-right:8px;
  }
  .navbar3.extends-v4 .cta-wrap .cta-button{
    transform: translateY(15px);
  }
}
.footer-3.style-v4 .container{
      background: transparent;
    box-shadow: none;
  backdrop-filter:none;
          padding-left: clamp(60px, calc((100% - 1400px) / 2), 240px);
        padding-right: clamp(60px, calc((100% - 1400px) / 2), 240px);
}

.footer-3.style-v4 .footer-wrap{
  justify-content:space-between;
  gap:40px;
  padding-top:64px;
  padding-bottom:64px;
}

.footer-3.style-v4 .footer-col-left,
.footer-3.style-v4 .footer-col-right{
  padding:0;
  width:auto;
  flex:1;
  border:none;
}

.footer-3.style-v4 .footer-col-left{
  border-right:none;
  display:flex;
  flex-direction: column;
    justify-content: space-between;
}

footer.style-v4 .footer-logo{
  background:transparent;
}

.style-v4 .social-wrap{
  display: flex;
    align-items: center;
    gap: 8px;
}

.style-v4 .social-item{
  font-size:21px;
  line-height:1;
  text-decoration:none;
  color:#434241;
      height: 18px;
    width: 18px;
}

.style-v4 .social-item .fab{
  width:18px;
  height:18px;
  transform:translateY(-1px);
}

.style-v4 .social-item .fab:before{
  width:18px;
  height:18px;
}

.footer-3.style-v4 .footer-nav-wrap:not(.get-in-touch) .footer-title{
  color:#5A5856;
  font-family: "GT Standard Mono Trial";
  font-size: 14px;
  font-weight: 300;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
  margin-bottom:32px;
}

.footer-3.style-v4 .menu-item,
.footer-3.style-v4 .menu-item a, .footer-3 .menu a{
  color: #000F10;
  font-family:"GT Standard Trial";
  font-size:  14px;
  font-weight: 300;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
  text-decoration:none;
}

.footer-3.style-v4 .footer-partners{
      justify-content: space-between;
    padding: 0;
    padding-top: 16px;
  border-top:1px solid #D6D6D1;
}

.footer-3.style-v4 .copyright{
  color: #5A5856;
  /* Body/body sm */
  font-family: "GT Standard Trial";
  font-size: 14px;
  font-weight: 300;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
}

.copyright-menu--wrap{
  display: flex;
    gap: 24px;
}

.copyright-menu--wrap a{
  color: #000F10;
  font-family: "GT Standard Trial";
  font-size: 14px;
  font-weight: 300;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
  text-decoration:none;
}

.footer-3.style-v4 .copyright-menu--wrap .footer-nav-wrap:not(.get-in-touch) .footer-title{
  text-transform:none;
  margin-bottom:0;
}

.footer-3.style-v4 .footer-logo{
  padding:0;
}

.footer-3.style-v4 .menu{
  gap:16px;
}

@media screen and (max-width:992px){
  .style-v4 .footer-col-left .social-wrap{
    display: none;
  }
  
  .footer-3.style-v4 .container{
          padding-left: 0;
        padding-right: 0;
}
  
  .footer-3.style-v4{
    padding-left:16px;
    padding-right:16px;
  }
  
  .footer-3.style-v4 .footer-col-right .footer-nav-wrap:not(.get-in-touch){
    width: calc(50% - 30px);
  }
  
  .footer-3.style-v4 .footer-partners{
    padding-top:25px;
  }
  
  .footer-3.style-v4 .footer-nav-wrap:not(.get-in-touch) .footer-title{

    margin-bottom:16px;
  }

  
  .footer-3.style-v4 .footer-logo{
    padding-bottom:24px;
  }

  
  .footer-3.style-v4 .container{
    padding-top:48px;
    padding-bottom:22px;
  }
  
  .footer-3.style-v4 .footer-nav-wrap{
    padding:0;
  }
  
  .footer-3.style-v4 .footer-col-right{
    justify-content:space-between;
    row-gap:48px;
    column-gap:54px;
  }
  
  .footer-3.style-v4 .footer-wrap{
    padding-bottom:24px;
    padding-top:0px;
  }
/*   
  .footer-3.style-v4 .footer-col-right .footer-nav-wrap:not(.get-in-touch){
    width:auto;
  } */
  
  .footer-col-mobile-only .footer-logo{
    display:none;
  }
  
  .style-v4 .social-wrap .social-item{
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border:  0.507px solid #D6D6D1;
        border-radius: 50%;
        margin-top: 24px;
  }
  
  footer.style-v4 .footer-logo{
    padding-top:0;
    padding-bottom:24px;
  }
}
.faq-accordion.v4-style{
    background: var(--Color-Neutrals-1000, #000F10);
}
.faq-accordion.v4-style .subtitle {
    color: #FFF;
    font-family: "GT Standard Mono";
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom:8px;
    display:block;
}

.faq-accordion.v4-style .wrap-title{
    color:#FFF;
    font-family: "GT Standard Trial";
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
}

.faq-accordion.v4-style .grid-wrap{
    display:grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap:32px;
  margin-top:64px;
}

.faq-accordion.v4-style .accordion{
    grid-column: span 12 / span 12;
}

.faq-accordion.v4-style .accordion .accordion-item:first-child {
    padding-top:0;
}

.faq-accordion.v4-style .image-content-wrap{
    grid-column: span 7 / span 7;
   width:100%;
    display:grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.faq-accordion.v4-style .image-content-wrap{
  display:none;  
}

.faq-accordion.v4-style .image-content-wrap.active {
  display: grid;
}

.faq-accordion.v4-style .accordion .accordion-item{
    border:none;
    border-radius:0;
    border-bottom:2px solid #114A55;
    padding:32px 0;
    margin-bottom:0;
    position:relative;
}
.faq-accordion.v4-style .accordion .accordion-item.active:before{
    content:'';
    position: absolute;
    height: 2px;
    width: 240px;
    background: var(--color-brand-500, #43E0FF);
    bottom:0px;
}

.faq-accordion.v4-style .accordion .accordion-header{
    color: #FFF;
    font-family: "GT Standard Trial";
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33em;
    letter-spacing: 0.12px;
}

.faq-accordion.v4-style .accordion .accordion-content,
.faq-accordion.v4-style .accordion .accordion-content p{
    color: #D6D6D1;
    font-family: "GT Standard Trial";
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5em;
    letter-spacing: -0.48px;
    width:100%;
}

.faq-accordion.v4-style .accordion .accordion-content .item-link{
    display:flex;
    align-items:center;
    gap:8px;
    color: #FFF;
    font-family: "GT Standard Trial";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 32px;
    margin-bottom: 32px;
    text-decoration: none;
}

.faq-accordion.v4-style .image-content-wrap .content-image{
    border-radius:8px;
    overflow:hidden;
  position:relative;
}



.faq-accordion.v4-style .image-content-wrap .content-image img{
     width:100%;
    height:100%;
    object-fit:cover;
}

.faq-accordion.v4-style .image-content-wrap .content-image:nth-child(odd){
    grid-column: span 4 / span 4;
    z-index:1;
    margin-bottom:-211px;
/*     margin-right:-36px; */
}
.faq-accordion.v4-style .image-content-wrap .content-image:nth-child(odd) .image-container{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 91px;
    height: 211px;
}

.faq-accordion.v4-style .image-content-wrap .content-image:nth-child(even){
    grid-column: span 4 / span 4;
    grid-column-start: 4;
}

.faq-accordion.v4-style .short-description-wrap{
  display:flex;
      justify-content: space-between;
    align-items: flex-end;
}

.faq-accordion.v4-style .short-description{
  max-width:458px;
}

.faq-accordion.v4-style .short-description,
.faq-accordion.v4-style .short-description p,
.faq-accordion.v4-style .short-description span{
  color: #2C2F30;
  font-family: "GT Standard Trial";
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.8px;
}

 /* accordion type B */
.faq-accordion.v4-style.type-b{
    background: #fff;
}

.faq-accordion.v4-style.type-b .subtitle,
.faq-accordion.v4-style.type-b .wrap-title{
    color: #000F10;
}

.faq-accordion.v4-style.type-b .short-description-wrap .item-link{
  display:flex;
    align-items: center;
  color: #FE2C02;
  /* Button/button md */
  font-family: "GT Standard Trial";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration:none;
  gap:8px;
}

.faq-accordion.v4-style.type-b .wrap-title{
  margin-bottom:20px;
}

.faq-accordion.v4-style.type-b  .accordion .accordion-item {
  padding:32px;
  border-radius: 8px;
  background: #fff;
  margin-bottom:8px;
  border-bottom:none;
}

.faq-accordion.v4-style.type-b  .accordion .accordion-item.active {
  background: #EFEFEA; 
}

.faq-accordion.v4-style.type-b .accordion .accordion-item.active:before{
    display:none;
}

.faq-accordion.v4-style.type-b .accordion .accordion-header{
  display:flex;
  justify-content:stretch;
  gap:16px;
  align-items:flex-start;
  color:#000F10;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing:0;
  padding-bottom:20px;
}

.faq-accordion.v4-style.type-b .accordion .accordion-header .icon-title{
  width:32px;
  height:32px;
  margin-top:4px;
}

.faq-accordion.v4-style.type-b .accordion .accordion-content{
  color:#2C2F30;
}

.faq-accordion.v4-style.type-b .accordion .accordion-content .item-link{
    color: #000F10;
    font-family: "GT Standard Trial";
    margin-bottom: 0;
}

.faq-accordion.v4-style.type-b .image-content-wrap .content-image{
    border-radius:8px;
    overflow:hidden;
  position:relative;
}


.faq-accordion.v4-style.type-b .image-content-wrap{
  display:none;
}

.faq-accordion.v4-style.type-b .image-content-wrap.active {
  display: block;
}

.faq-accordion.v4-style.type-b .image-content-wrap .content-image:nth-child(odd){
    margin-bottom:0;
    margin-right:0;
}

@media screen and (max-width:992px){
  .faq-accordion.v4-style .subtitle {
      margin-bottom:16px;
  }
  
  .faq-accordion.v4-style.type-b .accordion .accordion-content .item-link,
  .faq-accordion.v4-style.type-b .image-content-wrap{
    margin-top:24px;
  }
  
  .faq-accordion.v4-style.type-b .image-content-wrap .desktop-only{
    display:none !important;
  }
  
  .faq-accordion.v4-style .wrap-title{
    font-size: 32px;
    line-height: 1.25em;
  }
  
  .faq-accordion.v4-style .grid-wrap{
    margin-top:24px;
    gap:0;
  }
  
  .faq-accordion.v4-style .accordion .accordion-item{
    padding:24px 0;
}
  
  .faq-accordion.v4-style .accordion .accordion-header{
    font-size:20px;
    line-height:1.4;
    letter-spacing:0.2px;
  }
  
  .faq-accordion.v4-style .accordion .accordion-content .item-link{
    margin-bottom: 0px;
  }
  
  .faq-accordion.v4-style .image-content-wrap.desktop-only,
  .faq-accordion.v4-style .image-content-wrap.desktop-only.active{
    display: none;
  }
  
  .faq-accordion.v4-style:not(.type-b) .accordion-item .image-content-wrap{
    display:grid;
  }
  
  .faq-accordion.v4-style .image-content-wrap {
    margin-top:32px;
  }
  
  .faq-accordion.v4-style .image-content-wrap .content-image:nth-child(odd){
    margin-bottom:-91px;
  }
  
  .faq-accordion.v4-style .image-content-wrap .content-image:nth-child(odd) .image-container{
      max-width: 50px;
      height: 91px;
  }
  
  .faq-accordion.v4-style.type-b .wrap-title{
    margin-bottom:24px;
    font-size:28px;
    line-height:36px;
  }
  
  .faq-accordion.v4-style .short-description-wrap{
    flex-direction: column;
    align-items: flex-start;
    gap:24px;
  }
  
  .faq-accordion.v4-style.type-b .grid-wrap{
    margin-top:48px;
    margin-bottom:24px;
  }
  
  .faq-accordion.v4-style.type-b .accordion .accordion-item{
    padding:24px 16px;
    margin-bottom:0;
  }
  
  .faq-accordion.v4-style.type-b .accordion .accordion-header{
    font-size:20px;
    letter-spacing:-0.5px;
  }
  
  .faq-accordion.v4-style.type-b .image-content-wrap{
        grid-column: span 12 / span 12;
  }
  
  .faq-accordion.v4-style.type-b .image-content-wrap .content-image:nth-child(odd){
    min-height:240px;
  }
  
  .faq-accordion.v4-style.type-b .image-content-wrap .content-image img{
    object-position:top;
  }
  
  .faq-accordion.v4-style.type-b .accordion .accordion-header .icon-title{
    margin-top:-3px;
  }
  
  .faq-accordion.v4-style .short-description, 
  .faq-accordion.v4-style .short-description p, 
  .faq-accordion.v4-style .short-description span{
    font-size:16px;  
  }
}

@media screen and (min-width:993px){
  .faq-accordion.v4-style.type-b .image-content-wrap {
    display: none;
  }
  
  .faq-accordion.v4-style .accordion{
      grid-column: span 5 / span 5;
      padding-right:32px;
  }
  
  .faq-accordion.v4-style.type-b .accordion{
      grid-column: span 6 / span 6;
      padding-right:32px;
  }
  
  .faq-accordion.v4-style.type-b .image-content-wrap.desktop-only{
    grid-column: span 6 / span 6;
  }
}

@media screen and (min-width:1700px){
  .faq-accordion.v4-style .image-content-wrap .content-image:nth-child(odd){

      margin-right:0;
  }
  
  .faq-accordion.v4-style .image-content-wrap .content-image{
    max-width:459px;
    max-height:486px;
    margin-left:0;
  }
  
  .faq-accordion.v4-style .image-content-wrap .content-image:nth-child(even){

      margin-left:auto;
  }
  
  .faq-accordion.v4-style.type-b .image-content-wrap .content-image{
    max-width:100%;
    max-height:100%;
    margin-left:0;
  }
}
/* Section */
.usp.v4-style {
  background-color: #000f10;
  padding-bottom: 0 !important;
}

.usp.v4-style .usp__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px clamp(60px, calc((100% - 1400px) / 2), 240px);
}


/* Tagline */
.usp.v4-style .usp-tagline {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.usp.v4-style .usp-tagline-mobile {
  display: none;
}

.usp.v4-style .usp-tagline__text {
  font-family: "GT Standard Trial", sans-serif;
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin: 0;
  margin-left: 31px;
}

/* Stats row */
.usp.v4-style .usp-stats {
  display: flex;
  gap: 32px;
  height: 68px;
  align-items: center;
  flex-shrink: 0;
  margin-right: 104px;
}

.usp.v4-style .usp-stat {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  height: 100%;
  padding-left: 16px;
  border-left: 1px solid;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
}

.usp.v4-style .usp-stat--primary {
  border-color: #114a55;
}

.usp.v4-style .usp-stat--secondary {
  border-color: rgba(67, 224, 255, 0.2);
}

.usp.v4-style .usp-stat__number {
  font-family: "GT Standard Trial", sans-serif;
  color: #43e0ff;
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  white-space: nowrap;
  margin: 0;
}

.usp.v4-style .usp-stat__label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.usp.v4-style .usp-stat__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

.usp.v4-style .usp-stat__label {
  font-family: "GT Standard Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #d6d6d1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .usp.v4-style .usp-stats {
    gap: 42px;
  }
}

@media (min-width: 1024px) {
  .usp.v4-style .usp-stats {
    gap: 142px;
  }
}

@media (max-width: 1700px) {
  .usp.v4-style .usp-tagline__text {
    margin: 0; 
  }
  
  .usp.v4-style .usp-stats {
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .usp.v4-style .usp__inner {
    padding: 48px 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .usp.v4-style .usp__inner{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .usp.v4-style .usp-tagline {
    display: none;
  }

  .usp.v4-style .usp-tagline-mobile {
    display: block;
  }
  
  .usp.v4-style .usp-tagline__text {
    margin: 0; 
  }

  .usp.v4-style .usp-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
    row-gap: 24px;
    height: auto;
    width: 100%;
    margin: 0;
  }

  .usp.v4-style .usp-stats > div:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .usp.v4-style .usp-stat {
    height: 68px;
    width: 175px;
  }
}
/* Section */
.logo-section.v4-style {
  background-color: #000f10;
  width: 100%;
  padding-bottom: 0 !important;
}

.logo-section.v4-style .logo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 128px clamp(60px, calc((100% - 1400px) / 2), 240px);
}

/* Title */
.logo-section.v4-style .logos-title {
  font-family: "GT Standard Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0;
  margin: 0;
}

.logo-section.v4-style .logos-title__bracket {
  color: #43e0ff;
}

/* Slider wrapper — full width on all breakpoints */
.logo-section.v4-style .logos-slider-wrap {
  width: 100%;
}

/* Logos grid — desktop: 1 row, 6 columns (≥1025px) */
.logo-section.v4-style .logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 64px;
  width: 100%;
  padding-inline: 7px;
}

.logo-section.v4-style .logos-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.logo-section.v4-style .logos-item img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .logo-section.v4-style .logo__inner {
    padding: 48px 16px;
  }
}

@media (max-width: 1024px) {
  .logo-section.v4-style .logos-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 64px;
    width: 100%;
    padding-inline: 0px;
  }
}

/* Tablet: 2 rows, 3 columns (768px–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .logo-section.v4-style .logo__inner {
    padding: 64px 0;
  }

  .logo-section.v4-style .logos-row {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 64px 64px;
    row-gap: 24px;
  }
}

/* Mobile: horizontal touch-scroll slider (≤767px) */
@media (max-width: 767px) {
  .logo-section.v4-style .logo__inner {
    padding: 48px 0;
    align-items: center;
    gap: 24px;
  }

  /* Title stays within a padded inline area */
  .logo-section.v4-style .logos-title {
    font-family: "GT Standard Mono", monospace;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    white-space: nowrap;
    text-align: center;
    padding-inline: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Slider outer: full-bleed, clips gradient pseudo-elements */
  .logo-section.v4-style .logos-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* Left and right gradient fades (mirrors Figma overlay) */
  .logo-section.v4-style .logos-slider-wrap::before,
  .logo-section.v4-style .logos-slider-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%; /* matches Figma's 25% fade stops */
    z-index: 2;
    pointer-events: none;
  }

  .logo-section.v4-style .logos-slider-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #000f10 0%, transparent 100%);
  }

  .logo-section.v4-style .logos-slider-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #000f10 0%, transparent 100%);
  }

  /* Touch-scroll track. Fluid sizing: max(basePx, calc(100vw * base / 444))
     keeps Figma mobile sizes at <=444px and scales up to fill the viewport
     above that (5*76 + 4*16 = 444 is the base set width). */
  .logo-section.v4-style .logos-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: max(60px, calc(100vw * 60 / 444));
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: max(16px, calc(100vw * 16 / 444));
    /* Reset grid properties */
    grid-template-columns: unset;
    grid-template-rows: unset;
    row-gap: unset;
  }

  .logo-section.v4-style .logos-row::-webkit-scrollbar {
    display: none;
  }

  /* Logo items: no shrink, fluid slot width matching Figma spacing */
  .logo-section.v4-style .logos-item {
    flex-shrink: 0;
    width: max(76px, calc(100vw * 76 / 444));
    height: max(60px, calc(100vw * 60 / 444));
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Per-logo exact sizes from Figma node 8063:1839, scaled fluidly.
     Class-based so sizing survives cloning for the infinite scroll loop. */
  .logo-section.v4-style .logos-item.logo-pos-1 img {
    width: max(76px, calc(100vw * 76 / 444));
    height: max(12px, calc(100vw * 12 / 444));
  }
  .logo-section.v4-style .logos-item.logo-pos-2 img {
    width: max(77px, calc(100vw * 77 / 444));
    height: max(17px, calc(100vw * 17 / 444));
  }
  .logo-section.v4-style .logos-item.logo-pos-3 img {
    width: max(77px, calc(100vw * 77 / 444));
    height: max(17px, calc(100vw * 17 / 444));
  }
  .logo-section.v4-style .logos-item.logo-pos-4 img {
    width: max(75px, calc(100vw * 75 / 444));
    height: max(20px, calc(100vw * 20 / 444));
  }
  .logo-section.v4-style .logos-item.logo-pos-5 img {
    width: max(81px, calc(100vw * 81 / 444));
    height: max(21px, calc(100vw * 21 / 444));
  }
  .logo-section.v4-style .logos-item.logo-pos-6 {
    display: none;
  }

  .logo-section.v4-style .logos-item img {
    display: block;
    object-fit: contain;
  }

}
/* Section */
.cta-banner-v4 {
  background-color: #ffffff;
  padding-bottom: 0 !important;
}

.cta-banner-v4 .cta-banner__inner {
  padding: 128px clamp(60px, calc((100% - 1400px) / 2), 240px);
}

/* Card */
.cta-banner-v4 .cta-card-v4 {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  padding: 64px;
  width: 100%;
}

/* Inner content row */
.cta-banner-v4 .cta-content-v4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  width: 100%;
}

/* Text block */
.cta-banner-v4 .cta-text-v4 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 0 0;
  min-width: 0;
}

/* Heading */
.cta-banner-v4 .cta-heading-v4 {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
  color: #000f10;
  margin: 0;
}

/* Body text */
.cta-banner-v4 .cta-body-v4 {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.8px;
  color: #000f10;
  margin: 0;
}

/* Button */
.cta-banner-v4 .cta-button-v4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #ffffff;
  border-radius: 9999px;
  height: 48px;
  padding: 4px 24px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-banner-v4 .cta-button__label-v4 {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000f10;
}

.cta-banner-v4 .cta-button__icon-v4 {
  width: 4px;
  height: 8px;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .cta-banner-v4 .cta-banner__inner {
    padding: 48px 16px;
  }
}

/* Mobile: ≤767px */
@media (max-width: 767px) {
  .cta-banner-v4 {
    background-color: #43e0ff !important;
  }
  
  .cta-banner-v4 .cta-banner__inner{
    padding: 0;
  }

  .cta-banner-v4 .cta-card-v4 {
    border-radius: 0;
    padding: 48px 16px;
    width: 100%;
  }

  .cta-banner-v4 .cta-content-v4 {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .cta-banner-v4 .cta-heading-v4 {
    font-size: 28px;
    line-height: 36px;
  }

  .cta-banner-v4 .cta-body-v4 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
  }

  .cta-banner-v4 .cta-button-v4 {
    width: 100%;
  }
}
/* ================================================
   Emixa Header V4
   Header A: Figma node 7574:864 (photo bg + teal overlay)
   Header B: Figma node 7574:946 (black bg + illustration)
   Design System Tokens
   ================================================ */

/* ------------------------------------------------
   V4 Design Tokens (CSS Variables)
   ------------------------------------------------ */
:root {
    /* Brand Colors */
    --v4-brand-500: #43e0ff;
    --v4-brand-900: #114a55;

    /* Accent */
    --v4-accent-500: #fe2c02;

    /* Neutrals */
    --v4-neutrals-1000: #114A55;
    --v4-neutrals-800: #202a2b;
    --v4-neutrals-600: #706e6c;
    --v4-neutrals-400: #b2a7a2;
    --v4-neutrals-200: #efebea;
    --v4-neutrals-0: #ffffff;

    /* Typography */
    --v4-font-heading: 'GT Standard Trial', 'Helvetica Neue', Arial, sans-serif;
    --v4-font-body: 'GT Standard Trial', 'Helvetica Neue', Arial, sans-serif;
    --v4-font-mono: 'GT Standard Mono Trial', 'Courier New', monospace;
}

/* ------------------------------------------------
   Hero Section V4
   ------------------------------------------------ */
.hero-v4 {
    position: relative;
    width: 100%;
    background-color: var(--v4-brand-900);
    overflow: hidden;
}

/* Background layer: photo + color blend overlay */
.hero-v4__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-v4__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Background video (autoplay loop) */
.hero-v4__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero-v4__bg-video.mobile { display: none; }

/* Video poster shown when autoplay is off */
.hero-v4__bg .video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.hero-v4__bg .video-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Play/pause control button */
.hero-v4__bg .srVideo-controls {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.hero-v4__bg-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--v4-brand-900);
    mix-blend-mode: color;
}

/* Content wrapper - centers vertically */
.hero-v4__content-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 792px;
    padding-top: 208px;
    padding-bottom: 208px;
    box-sizing: border-box;
}

/* Inner content column: 705px centered */
.hero-v4__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: 705px;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* Text block */
.hero-v4__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    color: var(--v4-neutrals-0);
}

/* H1 Heading */
.hero-v4__heading {
    font-family: var(--v4-font-heading);
    font-size: 80px;
    font-weight: 400;
    line-height: 88px;
    letter-spacing: 0;
    color: var(--v4-neutrals-0);
    margin: 0;
}

/* Body lg subtitle */
.hero-v4__subheading {
    font-family: var(--v4-font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.8px;
    color: var(--v4-neutrals-0);
    max-width: 458px;
    margin: 0;
}

/* WYSIWYG outputs <p> tags — reset margins and inherit typography */
.hero-v4__subheading p {
    font-family: inherit;
    font-size: 20px !important;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
}

.hero-v4__subheading p span{
    font-size: 20px !important;

}

.hero-v4__subheading p + p {
    margin-top: 0.75em;
}

/* CTA buttons group */
.hero-v4__cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Base button styles */
.hero-v4__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 8px 24px;
    border-radius: 9999px;
    font-family: var(--v4-font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
}

.hero-v4__btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Primary CTA: Accent red */
.hero-v4__btn--primary {
    background-color: var(--v4-accent-500);
    color: var(--v4-neutrals-0);
}

/* Secondary CTA: glass/blur */
.hero-v4__btn--secondary {
    background-color: rgba(255, 255, 255, 0.10);
    color: var(--v4-neutrals-0);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Divider illustration below hero */
.hero-v4__divider {
    position: relative;
    z-index: 1;
    width: 100%;
    flex-shrink: 0;
    line-height: 0; /* removes inline-block gap under img */
    background-color: var(--v4-brand-500, #43e0ff); /* fallback if SVG letterboxes */
}

.hero-v4__divider-img {
    display: block;
    width: 100%;
    height: 32px; /* desktop/tablet: slightly taller than Figma mobile spec */
    object-fit: cover; /* override SVG's default preserveAspectRatio:xMidYMid meet */
}

@media (min-width:992px){
    .header.hero-v4 .content-text{
        line-height: 28px;
    }
}

/* ------------------------------------------------
   Large screen (1700px)
   ------------------------------------------------ */
@media (min-width:1700px){
    .hero-v4__subheading{
        max-width: 458px !important;
    }
    
}


/* ------------------------------------------------
   Responsive — Tablet (768px – 1199px)
   ------------------------------------------------ */
@media (max-width: 1199px) {
    .hero-v4__content-wrap {
        min-height: 560px;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .hero-v4__heading {
        font-size: 56px;
        line-height: 64px;
    }

    .hero-v4__subheading {
        font-size: 18px;
        line-height: 26px;
        max-width: 100%;
    }

    .hero-v4__content {
        gap: 48px;
    }
}

/* ------------------------------------------------
   Responsive — Mobile (< 768px)
   ------------------------------------------------ */
@media (max-width: 767px) {
    .hero-v4__content-wrap {
        min-height: 660px;
        padding-top: 99px; /* 51px nav + 48px Figma padding */
        padding-bottom: 48px;
        padding-left: 16px;
        padding-right: 16px;
        justify-content: flex-start;
    }

    .hero-v4__content {
        gap: 32px;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-v4__subheading p {
        font-size: 16px !important;
    }

    .hero-v4__subheading p span{
        font-size: 16px !important;
    }

    .hero-v4__text {
        gap: 24px;
    }

    .hero-v4__heading {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-v4__subheading {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.48px;
        max-width: 100%;
    }

    .hero-v4__cta-group {
        flex-direction: column;
        width: 100%;
        gap: 16px !important;
    }

    .hero-v4__btn {
        width: 100%;
        justify-content: center;
    }

    /* Divider: Figma mobile spec = 24px */
    .hero-v4__divider-img {
        height: 24px;
    }

    /* Bleed divider past any side padding on .hero-v4 (module inline styles + DnD column).
       overflow:hidden on .hero-v4 clips the excess to the border edge. */
    .hero-v4__divider {
        width: calc(100% + 200px);
        margin-left: -100px;
        margin-right: -100px;
    }

    /* Mobile bg: solid teal fades into photo at the bottom */
    .hero-v4__bg-overlay {
        background: linear-gradient(to bottom, var(--v4-brand-900) 50%, rgba(17, 74, 85, 0) 80%);
        mix-blend-mode: normal;
    }

    /* Swap desktop/mobile video sources */
    .hero-v4__bg-video.desktop { display: none; }
    .hero-v4__bg-video.mobile  { display: block; }
}

/* ================================================
   Header B V4
   Figma: Emixa V4 — Desktop / Header B (node 7574:946)
   Black bg, wide H1, illustration below text
   ================================================ */

.hero-b-v4 {
    position: relative;
    width: 100%;
    background-color: #132223 !important;
    overflow: hidden;
}

/* Breadcrumb navigation — aligns to left edge of the flex column */
.hero-b-v4__breadcrumb-nav {
    align-self: flex-start;
    width: 100%;
}

/* Outer padded wrapper — same clamp formula as case-slider-v4 */
.hero-b-v4__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
    padding-top: 208px;
    padding-left: clamp(60px, calc((100% - 1400px) / 2), 240px);
    padding-right: clamp(60px, calc((100% - 1400px) / 2), 240px);
    box-sizing: border-box;
}

/* Text + CTA column — 704px centered */
.hero-b-v4__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: 704px;
}

/* Text block */
.hero-b-v4__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    color: var(--v4-neutrals-0);
}

/* H1 — intentionally wider than the content column (matches Figma 1194px) */
.hero-b-v4__heading {
    font-family: var(--v4-font-heading);
    font-size: 80px;
    font-weight: 400;
    line-height: 88px;
    letter-spacing: 0;
    color: var(--v4-neutrals-0);
    margin: 0;
    width: 1194px;
    max-width: 90vw;
    text-align: center;
}

/* Body lg subtitle — stays 704px wide */
.hero-b-v4__subheading {
    font-family: var(--v4-font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.8px;
    color: var(--v4-neutrals-0);
    max-width: 704px;
    margin: 0;
}

/* WYSIWYG outputs <p> tags — reset margins and inherit typography */
.hero-b-v4__subheading p {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
}

.hero-b-v4__subheading p + p {
    margin-top: 0.75em;
}

/* CTA buttons group — reuses hero-v4 button styles */
.hero-b-v4__cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Hero illustration */
.hero-b-v4__illustration {
    display: block;
    width: 100%;
    max-width: 1194px;
    height: auto;
    flex-shrink: 0;
}

/* ------------------------------------------------
   Header B — Responsive Tablet (≤1199px)
   ------------------------------------------------ */
@media (min-width:1700px){
    .hero-b-v4__heading {
        width:1440px;
    }
}
@media (max-width: 1199px) {
    .hero-b-v4__wrap {
        padding-top: 120px;
        gap: 64px;
    }

    .hero-b-v4__heading {
        font-size: 56px;
        line-height: 64px;
        width: 100%;
        max-width: 100%;
    }

    .hero-b-v4__subheading {
        font-size: 18px;
        line-height: 26px;
        max-width: 100%;
    }
}

/* ------------------------------------------------
   Header B — Responsive Mobile (≤767px)
   ------------------------------------------------ */
@media (max-width: 767px) {
    .hero-b-v4 {
        min-height: 843px;
    }

    /* Breadcrumb: full-width bleed so gradient reaches the section edge.
       align-self:flex-start is already set on the base rule, so the bleed works correctly. */
    .hero-b-v4__breadcrumb-nav {
        position: relative;
        overflow: hidden;
        width: calc(100% + 32px); /* bleed through 16px padding on each side */
        margin-left: -16px;
        margin-bottom: 48px;
    }

    .hero-b-v4__breadcrumb-nav::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 48px;
        background: linear-gradient(to right, rgba(19, 34, 35, 0), #132223);
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .hero-b-v4__breadcrumb-nav.has-overflow::after {
        opacity: 1;
    }

    .hero-b-v4 .hero-c-v4__breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-left: 16px;  /* restore content indent lost by bleed */
        padding-right: 48px; /* keep last crumb clear of fade */
    }

    .hero-b-v4 .hero-c-v4__breadcrumb::-webkit-scrollbar {
        display: none;
    }

    /* Breadcrumb stays in flow — wrap padding-top creates space above it */
    .hero-b-v4__wrap {
        padding-top: 72px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 48px;
        gap: 24px;
        align-items: center;
    }

    /* Illustration: after breadcrumb-nav (order 0), before content */
    .hero-b-v4__illustration {
        order: 1;
        width: 320px;
        height: 199px;
        max-width: 100%;
    }

    .hero-b-v4__content {
        order: 2;
        gap: 32px;
        max-width: 100%;
        width: 100%;
    }

    .hero-b-v4__text {
        gap: 24px;
    }

    .hero-b-v4__heading {
        font-size: 32px;
        line-height: 40px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-b-v4__subheading {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.48px;
        max-width: 100%;
        margin-bottom:8px;
    }

    .hero-b-v4__cta-group {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-b-v4__cta-group .hero-v4__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================
   Header C V4
   Figma: Emixa V4 — Desktop / Header C (node 7574:982)
   Photo bg + teal overlay, LEFT-aligned, breadcrumb, no illustration
   ================================================ */

.hero-c-v4 {
    position: relative;
    width: 100%;
    background-color: var(--v4-brand-900);
    overflow: hidden;
}

/* Background: same as Header A */
.hero-c-v4__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-c-v4__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero-c-v4__bg-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--v4-brand-900);
    mix-blend-mode: color;
}

/* Outer padded wrapper — same clamp formula as case-slider-v4 */
.hero-c-v4__wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 96px;
    padding-left: clamp(60px, calc((100% - 1400px) / 2), 240px);
    padding-right: clamp(60px, calc((100% - 1400px) / 2), 240px);
    box-sizing: border-box;
}

/* Content column: 827px, left-aligned, pb 128px */
.hero-c-v4__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
    max-width: 827px;
    padding-bottom: 128px;
    box-sizing: border-box;
}

/* Breadcrumb row */
.hero-c-v4__breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-c-v4__breadcrumb-icon {
    display: inline-flex;
    align-items: center;
    width: 16px;
    height: 16px;
    color: var(--v4-neutrals-0);
    flex-shrink: 0;
}

/* Lucide house icon — stroke-based, not fill */
.hero-c-v4__breadcrumb-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-c-v4__breadcrumb-chevron {
    display: inline-flex;
    align-items: center;
    width: 10px;
    height: 10px;
    color: var(--v4-neutrals-0);
    flex-shrink: 0;
}

.hero-c-v4__breadcrumb-chevron svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.hero-c-v4__breadcrumb-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--v4-font-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    white-space: nowrap;
    color: var(--v4-neutrals-0);
}

.hero-c-v4__breadcrumb-link:hover {
    text-decoration: underline;
}

/* Current/last breadcrumb item — muted */
.hero-c-v4__breadcrumb-current {
    font-family: var(--v4-font-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--v4-neutrals-400); /* #b2a7a2 */
    white-space: nowrap;
}

/* Text + CTAs block */
.hero-c-v4__body {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    width: 100%;
}

/* Text block */
.hero-c-v4__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    color: var(--v4-neutrals-0);
    width: 100%;
}

/* H1 — left-aligned, full column width */
.hero-c-v4__heading {
    font-family: var(--v4-font-heading);
    font-size: 80px;
    font-weight: 400;
    line-height: 88px;
    letter-spacing: 0;
    color: var(--v4-neutrals-0);
    margin: 0;
    width: 100%;
}

/* Body lg — left-aligned */
.hero-c-v4__subheading {
    font-family: var(--v4-font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.8px;
    color: var(--v4-neutrals-0);
    margin: 0;
    width: 100%;
}

/* WYSIWYG outputs <p> tags — reset margins and inherit typography */
.hero-c-v4__subheading p {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
}

.hero-c-v4__subheading p + p {
    margin-top: 0.75em;
}

/* CTA buttons — reuse hero-v4 button styles */
.hero-c-v4__cta-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ------------------------------------------------
   Header C — Responsive Tablet (≤1199px)
   ------------------------------------------------ */
@media (max-width: 1199px) {
    .hero-c-v4__wrap {
        padding-top: 80px;
    }

    .hero-c-v4__content {
        max-width: 100%;
    }

    .hero-c-v4__heading {
        font-size: 56px;
        line-height: 64px;
    }

    .hero-c-v4__subheading {
        font-size: 18px;
        line-height: 26px;
    }
}

/* ------------------------------------------------
   Header C — Responsive Mobile (≤767px)
   ------------------------------------------------ */
@media (max-width: 767px) {
    /* Breadcrumb: full-width bleed so gradient reaches the section edge.
       align-self:flex-start prevents align-items:center (set on the content column)
       from centering the oversized child, which would cancel the margin-left. */
    .hero-c-v4__breadcrumb-wrap {
        position: relative;
        overflow: hidden;
        width: calc(100% + 32px); /* bleed through the 16px padding on each side */
        margin-left: -16px;
        align-self: flex-start;
    }

    .hero-c-v4__breadcrumb-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 64px;
        background: linear-gradient(to right, rgba(17, 74, 85, 0), var(--v4-brand-900, #114a55));
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .hero-c-v4__breadcrumb-wrap.has-overflow::after {
        opacity: 1;
    }

    .hero-c-v4__breadcrumb-wrap .hero-c-v4__breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-left: 16px;  /* restore content indent */
        padding-right: 64px; /* keep last crumb clear of gradient */
        margin-bottom:24px;
    }

    .hero-c-v4__breadcrumb-wrap .hero-c-v4__breadcrumb::-webkit-scrollbar {
        display: none;
    }

    /* Breadcrumb stays in flow — wrap padding-top creates space above it */
    .hero-c-v4__wrap {
        padding-top: 72px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-c-v4__content {
        padding-bottom: 148px;
        gap: 24px;
        max-width: 100%;
        align-items: center;
    }

    .hero-c-v4__heading {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }

    .hero-c-v4__subheading {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.48px;
        text-align: center;
    }

    .hero-c-v4__text {
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .hero-c-v4__body {
        gap: 32px;
        align-items: center;
    }

    .hero-c-v4__cta-group {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-c-v4__cta-group .hero-v4__btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile bg: solid teal fades into photo at the bottom */
    .hero-c-v4__bg-overlay {
        background: linear-gradient(to bottom, var(--v4-brand-900) 50%, rgba(17, 74, 85, 0) 80%);
        mix-blend-mode: normal;
    }
}
/* Inner content row */
.cta-section-form-v4 .cta-sf__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 256px clamp(60px, calc((100% - 1400px) / 2), 240px);
}

/* Heading column */
.cta-section-form-v4 .cta-sf__heading-wrap {
  max-width: 548px;
  width: 100%;
}

.cta-section-form-v4 .cta-sf__heading {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
  color: #000f10;
  margin: 0;
  letter-spacing: -0.05em;
}

/* Form column */
.cta-section-form-v4 .cta-sf__form-wrap {
  max-width: 704px;
  width: 100%;
  margin-top: -22px;
}

/* ==========================================
   HubSpot Form Overrides
   ========================================== */

/* Form wrapper */
.cta-section-form-v4 .hs-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Fieldsets — 2-column rows */
.cta-section-form-v4 .hs-form fieldset,
.cta-section-form-v4 .hs-form .form-columns-2,
.cta-section-form-v4 .hs-form .form-columns-1 {
  display: flex;
  flex-direction: row;
  gap: 32px;
  max-width: 100% !important;
  width: 100%;
  float: none !important;
}

/* Individual field wrappers */
.cta-section-form-v4 .hs-form-field,
.cta-section-form-v4 .hs-form .field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 0 0;
  min-width: 0;
  float: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* Labels */
.cta-section-form-v4 .hs-form label,
.cta-section-form-v4 .hs-form .hs-field-label {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #000f10;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

/* Required asterisk */
.cta-section-form-v4 .hs-form .hs-form-required {
  color: #fe2c02;
}

/* Text inputs, email, tel, number */
.cta-section-form-v4 .hs-form input[type="text"],
.cta-section-form-v4 .hs-form input[type="email"],
.cta-section-form-v4 .hs-form input[type="tel"],
.cta-section-form-v4 .hs-form input[type="number"],
.cta-section-form-v4 .hs-form input[type="phone"] {
  background-color: #ffffff;
  border: 1px solid #d6d6d1;
  border-radius: 8px;
  padding: 12px;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #706e6c;
  width: 100% !important;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease;
}

/* Select dropdown */
.cta-section-form-v4 .hs-form select {
  background-color: #ffffff;
  border: 1px solid #d6d6d1;
  border-radius: 8px;
  padding: 12px 48px 12px 12px;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #706e6c;
  width: 100% !important;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23000F10' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px 24px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

/* Textarea */
.cta-section-form-v4 .hs-form textarea {
  background-color: #ffffff;
  border: 1px solid #d6d6d1;
  border-radius: 8px;
  padding: 12px;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #706e6c;
  width: 100% !important;
  box-sizing: border-box;
  min-height: 144px;
  resize: none;
  outline: none;
  transition: border-color 0.15s ease;
}

/* Focus states */
.cta-section-form-v4 .hs-form input[type="text"]:focus,
.cta-section-form-v4 .hs-form input[type="email"]:focus,
.cta-section-form-v4 .hs-form input[type="tel"]:focus,
.cta-section-form-v4 .hs-form input[type="number"]:focus,
.cta-section-form-v4 .hs-form select:focus,
.cta-section-form-v4 .hs-form textarea:focus {
  border-color: #000f10;
}

/* Checkbox — privacy policy / boolean */
.cta-section-form-v4 .hs-form .legal-consent-container,
.cta-section-form-v4
  .hs-form
  .hs-fieldtype-booleancheckbox
  .hs-form-field,
.cta-section-form-v4 .hs-form .inputs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-section-form-v4 .hs-form .inputs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -5px 0 16px !important;
}

.cta-section-form-v4 .hs-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid #d6d6d1;
  border-radius: 2px;
  background-color: #ffffff;
  cursor: pointer;
  padding: 0;
  margin: 0;
  position: relative;
  flex-shrink: 0;
}

.cta-section-form-v4 .hs-form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 4px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-45deg);
}

/* Checkbox label text */
.cta-section-form-v4
  .hs-form
  .legal-consent-container
  .hs-form-booleancheckbox-display,
.cta-section-form-v4 .hs-form .legal-consent-container p,
.cta-section-form-v4 .hs-form .inputs-list label {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #2c2f30;
  margin: 0;
  display: flex;
  gap: 12px;
}

/* Privacy policy link */
.cta-section-form-v4 .hs-form .legal-consent-container a,
.cta-section-form-v4 .hs-form .inputs-list label a {
  color: #2c2f30 !important;
  text-decoration: underline;
}

/* Submit button */
.cta-section-form-v4 .hs-form .hs-button,
.cta-section-form-v4 .hs-form input[type="submit"] {
  background-color: #000f10 !important;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  height: 48px;
  padding: 8px 24px;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  cursor: pointer;
  align-self: flex-start;
  white-space: nowrap;
  transition: background-color 0.15s ease;
  text-transform: none;
}

.cta-section-form-v4 .hs-form .hs-button:hover,
.cta-section-form-v4 .hs-form input[type="submit"]:hover {
  background-color: #1a3035 !important;
}

/* Actions row */
.cta-section-form-v4 .hs-form .hs-submit,
.cta-section-form-v4 .hs-form .actions {
  margin: 0;
}

/* Error messages */
.cta-section-form-v4 .hs-form .hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.cta-section-form-v4 .hs-form .hs-error-msgs li label {
  font-family: "GT Standard Trial", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #fe2c02;
  font-weight: 300;
}

/* Remove default HubSpot margins / resets */
.cta-section-form-v4 .hs-form p,
.cta-section-form-v4 .hs-form .hs-richtext {
  margin: 0;
}

.cta-section-form-v4 .submitted-message {
  color: #333333;
  background-color: #e0ffc7;
  padding: 20px;
}

@media (max-width: 1199px) {
  .cta-section-form-v4 .cta-sf__inner {
    padding: 48px 16px;
  }
}

/* ==========================================
   Tablet: 768px–1106px
   ========================================== */
@media (max-width: 1106px) and (min-width: 768px) {
  .cta-section-form-v4 .cta-sf__inner {
    flex-direction: column;
    gap: 64px;
  }

  .cta-section-form-v4 .cta-sf__heading {
    font-size: 44px;
    line-height: 52px;
  }

  .cta-section-form-v4 .cta-sf__form-wrap {
    max-width: 100%;
    margin-top: 0;
  }
}

/* ==========================================
   Mobile: ≤767px
   ========================================== */
@media (max-width: 767px) {
  .cta-section-form-v4 .cta-sf__inner {
    flex-direction: column;
    gap: 2px;
  }

  .cta-section-form-v4 .cta-sf__heading-wrap {
    max-width: 100%;
    width: 100%;
  }

  .cta-section-form-v4 .cta-sf__heading {
    font-size: 28px;
    line-height: 36px;
  }

  .cta-section-form-v4 .cta-sf__form-wrap {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }

  .cta-section-form-v4 .hs-form fieldset,
  .cta-section-form-v4 .hs-form .form-columns-2 {
    flex-direction: column;
    gap: 24px;
  }
  
  .cta-section-form-v4 .hs-form-field,
  .cta-section-form-v4 .hs-form .field {
    width: 100% !important;
  }
  
  .cta-section-form-v4 .hs-form .inputs-list li {
    margin-bottom: 8px !important;
  }
}
/* ================================================================
   Emixa Case Slider V4
   Figma Desktop : node 7579-1410  (frame: 1920 × 1068px)
   Figma Mobile  : node 8063-2079

   Exact Figma measurements (from metadata):
     Frame width          : 1920px
     Section padding L/R  : 240px  → inner content = 1440px
     Section padding T/B  : 128px
     Section gap          : 64px   (header ↔ card)
     Card width           : 1440px, height 592px, padding 32px
     Card inner           : 1376 × 528px
     Image                : 656 × 528px (left column)
     Gap image ↔ content  : 64px
     Content col          : 656 × 528px (right column)
     Logo                 : 57 × 48px
     Quote                : 656 × 192px  (H5 24px/32px, y=96 in content)
     Stats                : 656 × 68px   (y=336 in content)
       – each stat        : 312px wide, gap 32px
     Footer               : 656 × 48px   (y=480 in content)
       – Read case btn    : 147 × 48px
       – Counter          : 52 × 20px    (gap from btn: right-aligned at x=404)
       – Nav buttons      : 168 × 48px   (2 × 80px + 8px gap, gap-32 from counter)

   Design tokens (from header-v4.css :root):
     --v4-brand-500    : #43e0ff
     --v4-accent-500   : #fe2c02
     --v4-neutrals-1000: #000f10
     --v4-font-heading : 'GT Standard Trial', sans-serif
     --v4-font-mono    : 'GT Standard Mono Trial', monospace
================================================================ */

/* ================================================================
   SECTION
================================================================ */
.case-slider-v4 {
  background-color: #ffffff;
}

/*
  Padding strategy to match Figma at any viewport:
    ≥ 1920px  → 240px each side (inner = 1440px) — exact Figma match
    1440–1919 → padding scales down via clamp so inner ≤ 1440px
    1200–1439 → 60px each side keeps inner ≥ 1080px (image+body both usable)
    < 1200px  → mobile / stacked layout
*/
.case-slider-v4__inner {
  padding: 128px clamp(60px, calc((100% - 1400px) / 2), 240px);
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ================================================================
   SECTION HEADER
================================================================ */
.case-slider-v4__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  /* Max-width mirrors Figma header frame: 1440px */
  max-width: 1440px;
  width: 100%;
}

.case-slider-v4__title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Figma: title group = 867px wide */
  max-width: 100%;
}

/* Overline — ⊣ CLIENT SPOTLIGHT ⊢
   Figma: 14px, mono, 300 weight, uppercase, line-height 20px */
.case-slider-v4__overline {
  font-family: var(--v4-font-mono, 'GT Standard Mono Trial', monospace);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--v4-neutrals-1000, #000f10);
  margin: 0;
}

.case-slider-v4__bracket {
  color: var(--v4-brand-500, #43e0ff);
}

/* H2 — 56px / 64px line-height */
.case-slider-v4__heading {
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: 0;
  color: var(--v4-neutrals-1000, #000f10);
  margin: 0;
}

/* "All client cases" link */
.case-slider-v4__all-cases {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--v4-accent-500, #fe2c02);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.case-slider-v4__all-cases:hover {
  opacity: 0.75;
}

/* Mobile variant: hidden on desktop */
.case-slider-v4__all-cases--mobile {
  display: none;
}

/* ================================================================
   SWIPER CONTAINER
================================================================ */
.case-slider-v4__swiper {
  width: 100%;
  /* overflow:hidden is added by Swiper JS — do not duplicate here */
}

/* ================================================================
   CARD — grey container inside each slide
   Figma: bg #efefea, padding 32px, border-radius 8px
          total = 1440 × 592px, inner = 1376 × 528px
================================================================ */
.case-slider-v4__card {
  background-color: #efefea;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 64px;                /* Figma: 64px gap between image and content */
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;        /* mirrors Figma card frame width */
}

/* ── Image column ──
   Figma: 656 × 528px, border-radius 8px
   flex: 0 0 48%  →  at 1376px inner: 48% = 660px ≈ 656px ✓
   max-width: 656px caps it exactly at the design size
   height: 528px fixed (Figma exact)
*/
.case-slider-v4__card-img {
  flex: 0 0 48%;
  max-width: 656px;
  height: 528px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 1;           /* allow shrink when viewport < ~1560px */
}

.case-slider-v4__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Body column (right) ──
   Figma: flex:1, 656 × 528px, justify-between
*/
.case-slider-v4__card-body {
  flex: 1 1 0;
  min-width: 0;
  height: 528px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── Card Top section ──
   Figma: flex-col, gap 48px
   Contains: logo (y=0, h=48) + quote (y=96, h=192) + stats (y=336, h=68)
   The 48px gaps are between each child (logo→quote: 96-48=48px ✓)
*/
.case-slider-v4__card-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Company logo — Figma: 57.37 × 48px */
.case-slider-v4__logo {
  display: flex;
  align-items: center;
  height: 48px;
  overflow: hidden;
}

.case-slider-v4__logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
}

/* Quote text — H5: 24px / 32px, letter-spacing 0.12px
   Figma: 656 × 192px (fits ~6 lines of 32px) */
.case-slider-v4__quote {
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.12px;
  color: #2c2f30;           /* neutrals/800 per Figma */
  margin: 0;
}

@media (min-width:1700px) {
  .case-slider-v4__quote {
    margin:0 0 48px 0;
  }
}

.case-slider-v4__quote p{
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.12px;
  color: #2c2f30;           /* neutrals/800 per Figma */
  margin: 0;
}

.case-slider-v4__quote p span{
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.12px;
  color: #2c2f30;           /* neutrals/800 per Figma */
  margin: 0;
}

@media (max-width:767px){
  .case-slider-v4__quote p, .case-slider-v4__quote p span{
    font-size: 20px;
    line-height: 28px;
  }
}
/* Stats row — Figma: flex, gap 32px, total 656 × 68px
   Each stat: 312px wide (= (656-32)/2) */
.case-slider-v4__stats {
  display: flex;
  gap: 32px;
}

.case-slider-v4__stat {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Stat value — H4: 32px / 40px */
.case-slider-v4__stat-value {
  display: block;
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  color: var(--v4-neutrals-1000, #000f10);
}

/* Stat label — overline: 14px mono, uppercase */
.case-slider-v4__stat-label {
  display: block;
  font-family: var(--v4-font-mono, 'GT Standard Mono Trial', monospace);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  color: #5a5856;           /* neutrals/600 per Figma */
}

/* ── Card Footer (bottom row) ──
   Figma: 656 × 48px, flex items-center justify-between
   Left : Read case btn  (147px wide)
   Right: Counter + Nav  (252px wide, starts at x=404)
*/
.case-slider-v4__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* "Read case" button — Figma: h=48px, px=24px, outline pill */
.case-slider-v4__read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 8px 24px;
  border: 1px solid var(--v4-accent-500, #fe2c02);
  border-radius: 9999px;
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--v4-neutrals-1000, #000f10);
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.case-slider-v4__read-btn:hover {
  background-color: var(--v4-accent-500, #fe2c02);
  color: #ffffff;
}

/* ── Desktop Navigation (counter + prev/next) ──
   Figma: flex items-center gap-32px
   Container: 252 × 48px (starts at x=404 in footer = right side)
*/
.case-slider-v4__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex-shrink: 0;
}

/* Counter: "1 / 4"
   Figma: 52 × 20px, mono 14px, gap 8px between chars */
.case-slider-v4__counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--v4-font-mono, 'GT Standard Mono Trial', monospace);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  color: #5a5856;
}

.case-slider-v4__counter-curr,
.case-slider-v4__counter-sep,
.case-slider-v4__counter-total {
  display: inline-block;
  min-width: 12px;
  text-align: center;
}

/* Nav buttons group — Figma: flex gap-8px, 168 × 48px total */
.case-slider-v4__nav-btns {
  display: flex;
  gap: 8px;
}

/* Prev / Next pill buttons — Figma: 80 × 48px, border #d6d6d1 */
.case-slider-v4__btn-prev,
.case-slider-v4__btn-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 48px;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid #d6d6d1;
  border-radius: 9999px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
  flex-shrink: 0;
  color: var(--v4-neutrals-1000, #000f10);
}

.case-slider-v4__btn-prev:hover,
.case-slider-v4__btn-next:hover {
  border-color: var(--v4-neutrals-1000, #000f10);
  background-color: rgba(0, 15, 16, 0.05);
}

.case-slider-v4__btn-prev svg,
.case-slider-v4__btn-next svg {
  display: block;
  flex-shrink: 0;
}

/* Inline chevron icon */
.case-slider-v4__icon-chevron {
  display: inline-block;
  flex-shrink: 0;
}

/* ================================================================
   SWIPER PAGINATION (mobile dots)
   Hidden on desktop; shown on mobile inside the grey card area
================================================================ */
.case-slider-v4__pagination {
  display: none;
}

/* Mobile dots are rendered statically inside each slide's card-footer — hidden on desktop */
.case-slider-v4__mobile-dots {
  display: none;
}

/* ================================================================
   RESPONSIVE — Large desktop (1440–1919px)
   Padding auto-scales via clamp(). Only heading/gap adjustments.
================================================================ */
@media (max-width: 1600px) {
  .case-slider-v4__heading {
    font-size: 48px;
    line-height: 56px;
  }
}

/* ================================================================
   RESPONSIVE — Medium desktop (1200–1439px)
   Reduce card gap and image height slightly.
================================================================ */
@media (max-width: 1440px) {
  .case-slider-v4__heading {
    font-size: 44px;
    line-height: 52px;
  }

  .case-slider-v4__card {
    gap: 48px;
  }

  .case-slider-v4__card-img {
    height: 480px;
  }

  .case-slider-v4__card-body {
    height: 480px;
  }

  .case-slider-v4__quote {
    font-size: 22px;
    line-height: 30px;
  }
}

@media (max-width: 1300px) {
  /* Compact nav so footer row still fits in narrower body column */
  .case-slider-v4__btn-prev,
  .case-slider-v4__btn-next {
    width: 64px;
    padding: 8px 16px;
  }

  .case-slider-v4__nav {
    gap: 20px;
  }
}

/* ================================================================
   RESPONSIVE — Mobile (< 1200px): stacked layout
   Figma mobile: node 8063-2079
   padding 48px 16px, H2 28/36px, card flex-col padding 16px
================================================================ */
@media (max-width: 1199px) {
  .case-slider-v4__inner {
    padding: 48px 16px;
    gap: 48px;
  }

  /* Header stacks vertically */
  .case-slider-v4__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 100%;
  }

  .case-slider-v4__title-group {
    gap: 16px;
    max-width: 100%;
  }

  /* Overline stays same as desktop (Figma 8063:2082 = mono 14px uppercase) */

  /* H2 mobile: 28px / 36px (Figma 8063:2083) */
  .case-slider-v4__heading {
    font-size: 28px;
    line-height: 36px;
  }

  /* Desktop link hidden; mobile link visible */
  .case-slider-v4__all-cases--desktop {
    display: none;
  }

  .case-slider-v4__all-cases--mobile {
    display: inline-flex;
  }

  /* Card: stacked vertically — Figma gap-48px between image and content */
  .case-slider-v4__card {
    flex-direction: column;
    gap: 48px;
    padding: 16px;
    max-width: 100%;
  }

  /* Image: full width, 321px tall (Figma mobile 8063:2086) */
  .case-slider-v4__card-img {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 321px;
    border-radius: 8px;
  }

  /* Body: auto height, flex-col — gap-48px between card-top and card-footer (Figma) */
  .case-slider-v4__card-body {
    flex: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    justify-content: flex-start;
  }

  /* Card top gap tighter (Figma 8063:2088 gap-24) */
  .case-slider-v4__card-top {
    gap: 24px;
  }

  /* Quote — H4 mobile: 20px / 28px (Figma 8063:2101) */
  .case-slider-v4__quote {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
  }

  /* Footer: stacked, read-case full width */
  .case-slider-v4__card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .case-slider-v4__read-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hide desktop nav, show pagination dots */
  .case-slider-v4__nav {
    display: none;
  }

  /* Pagination dots — Figma spec: 70×13px container
     4 dots × 13px + 3 gaps × 6px = 70px  |  height = 13px = dot diameter */
  .case-slider-v4__mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .case-slider-v4__dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #d9d9d9;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
  }

  .case-slider-v4__dot--active {
    background-color: var(--v4-accent-500, #fe2c02);
  }
}

@media (max-width: 767px) {
  .case-slider-v4__inner {
    gap: 24px;
  }
}
.featured-blog.v4-style .subtitle{
    color: #000F10;
    font-family: "GT Standard Mono";
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-transform: uppercase;
}

.featured-blog.v4-style .section-title{
    color: #000F10;
    font-family:"GT Standard Trial";
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    margin-bottom:0;
}

.featured-blog.v4-style .title-wrap{
    display:flex;
    justify-content:space-between;
    margin-bottom:64px;
  align-items:flex-end;
}

.featured-blog.v4-style .grid-wrap {
    display:grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap:32px;
}

.featured-blog.v4-style .grid-wrap .card-blog{
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    gap:16px;
    padding:0;
    border:none;
    margin:0;
}

.featured-blog.v4-style .grid-wrap .featured-image{
    aspect-ratio: 5 / 4;
    border-radius:8px;
    overflow:hidden;
}

.featured-blog.v4-style .card-blog::before{
    display:none;
}

.featured-blog.v4-style .card-blog img{
     width:100%;
    border-radius:0px;
}

#main-content .featured-blog.v4-style .card-title{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0.2px;
    color:#000F10;
}

.featured-blog.v4-style .card-blog .tag-list{
    margin-bottom:0
}

.featured-blog.v4-style .card-body,
.featured-blog.v4-style .card-blog .tag-item .tag-link{
    display:flex;
    align-items:center;
    gap:16px;
    color:  #5A5856;
    font-family: "GT Standard Mono";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42em;
    margin-bottom:0;
}

.featured-blog.v4-style .card-blog .tag-item .tag-link{
    border:none;
    padding:0;
}

.featured-blog .card-blog .tag-list .tag-item{
  text-transform:capitalize;
}

@media screen and (max-width:992px){
  .featured-blog.v4-style .grid-wrap {
      grid-template-columns: minmax(0, 1fr);
    gap:24px;
    margin-bottom:24px;
  }
  
  #main-content .featured-blog.v4-style .card-title{
    font-size:16px;
    line-height:24px;
    margin-bottom:8px;
  }
  
  .featured-blog.v4-style .card-body, 
  .featured-blog.v4-style .card-blog .tag-item .tag-link{
    font-size:12px;
    gap:8px;
  }
  
  .featured-blog.v4-style .title-wrap{
    margin-bottom:16px;
  }
  
  .featured-blog.v4-style .section-title{
    font-size:28px;
  }

  .featured-blog.v4-style .container{
      padding-right:16px;
  }

  .featured-blog.v4-style .grid-wrap .card-blog{
      display:flex;
      flex-direction: row;
  }

  .featured-blog.v4-style .card-body{
      flex-direction:row;
      height:auto;
      margin-top:0;
  }

  .featured-blog.v4-style .grid-wrap .featured-image{
      aspect-ratio:1/1;
      width:72px;
      height:72px;
      min-width:72px;
  }
}
.usp-section.col-4-cards-section-v4 .subtitle{
    color: #000F10;
    font-family: "GT Standard Mono";
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom:8px;
  display:block;
}

.usp-section.col-4-cards-section-v4 .container{
  background:transparent;
  border-radius:0;
  backdrop-filter:unset;
  padding-left: clamp(60px, calc((100% - 1400px) / 2), 240px);
  padding-right: clamp(60px, calc((100% - 1400px) / 2), 240px);
}

.usp-section.col-4-cards-section-v4 .section-title{
    color: #000F10;
    font-family:"GT Standard Trial";
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    margin-bottom:0;
  flex:1;
}

.usp-section.col-4-cards-section-v4 .title-wrap{
    display:flex;
    justify-content:space-between;
    margin-bottom:64px;
  align-items:flex-end;
}

.usp-section.col-4-cards-section-v4 .item-link{
  color: #FE2C02;
  font-family: "GT Standard Trial";
}

.usp-section.col-4-cards-section-v4 .usp-grid {
    display:grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap:32px;
  margin-top:0;
}

.usp-section.col-4-cards-section-v4 .usp-grid .usp-item{
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    gap:32px;
    padding:32px;
    border:none;
    margin:0;
  background-color:#EFEFEA !important;
    border-radius:8px;
}

.usp-section.col-4-cards-section-v4 .usp-grid .usp-item:before{
  display:none;
}

.usp-section.col-4-cards-section-v4 .usp-grid .usp-item .read-more-wrap{
  display: flex;
    align-items: center;
    color: #000F10;
    font-family: "GT Standard Trial";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    gap: 8px;  
}

#main-content .usp-section.col-4-cards-section-v4 .usp-title{
    max-width:100%;
    line-height: 1.25em;
    color:#000F10;
  margin-bottom:32px;
  font-size:32px;
}

.usp-section.col-4-cards-section-v4 .usp-body,
.usp-section.col-4-cards-section-v4 .usp-body p{
  color: #202A2B;
  font-family:"GT Standard Trial";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: -0.48px;
}

.usp-section.col-4-cards-section-v4 .item-link{
    font-size:16px;
  }

@media screen and (max-width:992px){
  .usp-section.col-4-cards-section-v4 .subtitle{
    margin-bottom:16px;
  }
  
  .usp-section.col-4-cards-section-v4{
    padding-left:16px;
    padding-right:16px;
  }
  
  .usp-section.col-4-cards-section-v4 .container{
    padding-left:0;
    padding-right:0;
  }

  .usp-section.col-4-cards-section-v4 .section-title{

      font-size: 28px;
      line-height: 1.28;
  }
  
  #main-content .usp-section.col-4-cards-section-v4 .usp-title{
    font-size:24px;
    line-height:1.33;
  }
  .usp-section.col-4-cards-section-v4 .usp-grid {
      grid-template-columns: minmax(0, 1fr);
    gap:24px;
  }
  
  .usp-section.col-4-cards-section-v4 .usp-grid .usp-item{
    padding:24px 16px;
    gap:24px;
  }
  
  .usp-section.col-4-cards-section-v4 .usp-title{
  margin-bottom:0;
}
  
  .usp-section.col-4-cards-section-v4 .title-wrap{
    margin-bottom:24px;
  }
  
  .usp-section.col-4-cards-section-v4 .section-title{
    font-size:28px;
  }
  
  .usp-section.col-4-cards-section-v4 .item-link{
    font-size:16px;
  }
}

@media (min-width:992px){
  .usp-section.col-4-cards-section-v4{
    padding-left:0px;
    padding-right:0px;
  }
}

@media (min-width:992px) and (max-width:1500px){
  .usp-section.col-4-cards-section-v4 .usp-item .usp-title{
    width:100%;
  }
  
  #main-content .usp-section.col-4-cards-section-v4 .usp-title{
    font-size:32px;
        overflow-wrap: anywhere;
  }
  
/*   .usp-section.col-4-cards-section-v4 .usp-grid .usp-item{
    padding:16px;
  } */
  
  .usp-section.col-4-cards-section-v4 .usp-grid{
    gap:24px;
  }
}

@media (max-width: 1199px) {
    .usp-section.col-4-cards-section-v4 .container {
        padding: 0px 16px;
    }
}
/* ═══════════════════════════════════════════════════════════
   Text + Image + CTA  V4
   Figma Desktop : node 7579-1603  (1920 × 1080px frame)
   Figma Mobile  : node 7636-1614  (390 × 696px frame)

   Grid system (node 5592-2675):
     Content width  : 1440px
     Side margins   : 240px at 1920px viewport
     Columns        : 12 × 98px, gutter 24px
     Formula        : clamp(60px, calc((100% - 1400px) / 2), 240px)
       → 240px at ≥ 1920px  (inner = 1440px)
       → scales with viewport below 1920px (mirrors case-slider-v4)
       → 60px minimum on desktop (< ≈ 1520px)
       → overridden to 16px in mobile media query (< 1200px)

   Design tokens inherited from header-v4.css :root
   ──────────────────────────────────────────────────────────
   --v4-neutrals-1000 : #000f10
   --v4-neutrals-800  : #2c2f30
   --v4-neutrals-200  : #d6d6d1
   --v4-font-heading  : 'GT Standard Trial'
   ═══════════════════════════════════════════════════════════ */

/* ── Section ── */
.text-img-cta-v4 {
  background-color: #ffffff;
}

/* ── Inner wrapper — desktop two-column flex ── */
.text-img-cta-v4__inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  /*
    Padding strategy (mirrors case-slider-v4):
      ≥ 1920px  → 240px each side (inner = 1440px) — exact Figma match
      1440–1919 → scales down via clamp so inner ≤ 1440px
      1200–1439 → 60px each side keeps both columns usable
      < 1200px  → mobile override takes over (padding: 48px 16px)
  */
  padding: 128px clamp(60px, calc((100% - 1400px) / 2), 240px);
}

/* ── Left column (text + CTA) ── */
.text-img-cta-v4__content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* Figma: items-start — prevents children from stretching to column width */
  align-items: flex-start;
  /* Figma: text group starts at y=64 inside the column → padding-top nudge */
  padding-top: 64px;
}

/* ── Text group (heading + body) ── */
.text-img-cta-v4__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Heading — H2 ── */
.text-img-cta-v4__heading {
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
  color: var(--v4-neutrals-1000, #000f10);
  margin: 0;
}

/* ── Body ── */
.text-img-cta-v4__body {
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.8px;
  color: var(--v4-neutrals-800, #2c2f30);
  margin: 0;
}

/* ── CTA button — pill outline ── */
.text-img-cta-v4__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 8px 24px;
  border: 1px solid var(--v4-neutrals-200, #d6d6d1);
  border-radius: 9999px;
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--v4-neutrals-1000, #000f10);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
  /* width fits content on desktop (metadata: 152×48px) */
}

.text-img-cta-v4__cta:hover {
  border-color: var(--v4-neutrals-1000, #000f10);
}

/* Chevron shared class */
.text-img-cta-v4__icon-chevron {
  flex-shrink: 0;
}

/* ── Right column (image) ── */
.text-img-cta-v4__image {
  flex: 1 0 0;
  min-width: 0;
  /* Figma: 688 × 516px */
  height: 516px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.text-img-cta-v4__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE  ≤ 1199px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {

  /* Stack columns vertically; explicit 16px horizontal overrides the 60px clamp minimum */
  .text-img-cta-v4__inner {
    flex-direction: column;
    gap: 48px;
    padding: 48px 16px;
  }

  /* Content column: no top padding on mobile */
  .text-img-cta-v4__content {
    flex: none;
    width: 100%;
    padding-top: 0;
    gap: 24px;
  }

  /* Text group: tighter gap on mobile */
  .text-img-cta-v4__text {
    gap: 24px;
  }

  /* Mobile heading: 28px/36px */
  .text-img-cta-v4__heading {
    font-size: 28px;
    line-height: 36px;
  }

  /* Mobile body: 16px/24px */
  .text-img-cta-v4__body {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
  }

  /* CTA button: full-width on mobile */
  .text-img-cta-v4__cta {
    width: 100%;
  }

  /* Image: full-width, 240px height on mobile */
  .text-img-cta-v4__image {
    flex: none;
    width: 100%;
    height: 240px;
  }

  /* Flipped → no reversal on mobile (already stacked) */
  .text-img-cta-v4--flipped .text-img-cta-v4__inner {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT MODIFIER  — flipped (image left, text right)
   ═══════════════════════════════════════════════════════════ */

/* Desktop: reverse the two-column order */
.text-img-cta-v4--flipped .text-img-cta-v4__inner {
  flex-direction: row-reverse;
}

/* ═══════════════════════════════════════════════════════════
   WITH-HEADER MODIFIER  — overline + H2 above two columns
   Figma node 7579:1798 "Img + Title + CTA" (image-left variant)
   Desktop: inner → flex-col; header full-width; __row two columns
   Mobile:  stacks header → content → image
   ═══════════════════════════════════════════════════════════ */

/* Inner: column layout so header sits above the row */
.text-img-cta-v4--with-header .text-img-cta-v4__inner {
  flex-direction: column;
}

/* Row: two-column flex (re-uses same gap / align as base inner) */
.text-img-cta-v4__row {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  width: 100%;
}

/* Header block */
.text-img-cta-v4__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Overline */
.text-img-cta-v4__overline {
  font-family: 'GT Standard Mono Trial', monospace;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--v4-neutrals-1000, #000f10);
  margin: 0;
}

/* Cyan bracket decorators ⊣ ⊢ */
.text-img-cta-v4__bracket {
  color: #43e0ff;
}

/* Body H4 variant: 32/40 on desktop, drops to 20/28 on mobile */
.text-img-cta-v4__body--h4 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
  font-weight: 400;
}

/* ─── Mobile overrides for with-header ─── */
@media (max-width: 1199px) {

  /* Gap from H2 (bottom of header) to body (top of content) */
  .text-img-cta-v4--with-header .text-img-cta-v4__inner {
    gap: 24px;
  }

  /* Wider gap between overline and H2 on mobile */
  .text-img-cta-v4__header {
    gap: 16px;
  }

  /* Stack content above image; image gets 48px clearance */
  .text-img-cta-v4--with-header .text-img-cta-v4__row {
    flex-direction: column;
    gap: 48px;
  }

  /* Content column: rises above image on mobile, no top padding */
  .text-img-cta-v4--with-header .text-img-cta-v4__content {
    order: -1;
    padding-top: 0;
    gap: 24px;
  }

  /* H4 body scales to H6 on mobile */
  .text-img-cta-v4__body--h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.2px;
  }
}

/* ═══════════════════════════════════════════════════════════
   ICON LIST  (optional feature — add_icon_with_text)
   ═══════════════════════════════════════════════════════════ */

.text-img-cta-v4__icon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-img-cta-v4__icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-img-cta-v4__icon-item img {
  flex-shrink: 0;
}

.text-img-cta-v4__icon-item span {
  font-family: var(--v4-font-heading, 'GT Standard Trial', sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--v4-neutrals-800, #2c2f30);
}

/* ═══════════════════════════════════════════════════════════
   RICHTEXT BODY — normalise paragraph/list margins from WP/HS
   ═══════════════════════════════════════════════════════════ */

.text-img-cta-v4__body p,
.text-img-cta-v4__body ul,
.text-img-cta-v4__body ol {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.text-img-cta-v4__body ul,
.text-img-cta-v4__body ol {
  padding-left: 1.25em;
}

/* ═══════════════════════════════════════════════════════════
   FULL-BLEED BACKGROUND VIDEO  (add_container_bg_video)
   ═══════════════════════════════════════════════════════════ */

.text-img-cta-v4 {
  position: relative;
}

.text-img-cta-v4__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.text-img-cta-v4__inner {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   VIDEO COLUMN  (use_image_instead = false)
   ═══════════════════════════════════════════════════════════ */

.text-img-cta-v4__video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.text-img-cta-v4__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sound toggle */
.text-img-cta-v4__sound-wrap {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
}

.text-img-cta-v4__sound-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
}

.text-img-cta-v4__sound-icon .sound-on {
  display: none;
}

/* Poster overlay */
.text-img-cta-v4__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.text-img-cta-v4__video-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play/pause controls */
.text-img-cta-v4__video-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-img-cta-v4__playpause {
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   IMAGE SLIDER  (set_image_as_slider)
   ═══════════════════════════════════════════════════════════ */

.text-img-cta-v4__swiper {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.text-img-cta-v4__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   EMBED VIDEO  (source_type = oembed / embed)
   ═══════════════════════════════════════════════════════════ */

.text-img-cta-v4__oembed,
.text-img-cta-v4__embed {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.text-img-cta-v4__iframe-wrap {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.text-img-cta-v4__iframe-wrap > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Section */
.three-col-cards-v4 {
  background-color: #ffffff;
  padding-bottom: 0 !important;
}

/* Inner max-width container */
.three-col-cards-v4 .tcc__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 128px clamp(60px, calc((100% - 1400px) / 2), 240px);
}

/* ── Header ─────────────────────────────── */
.three-col-cards-v4 .tcc__header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.three-col-cards-v4 .tcc__header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 867px;
}

/* Overline */
.three-col-cards-v4 .tcc__overline {
  font-family: "GT Standard Mono Trial", monospace;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.three-col-cards-v4 .tcc__overline-bracket {
  color: #43e0ff;
}

/* Heading */
.three-col-cards-v4 .tcc__heading {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
  color: #000f10;
  margin: 0;
}

/* "See more" header link (desktop) */
.three-col-cards-v4 .tcc__see-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fe2c02;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.three-col-cards-v4 .tcc__see-more--mobile {
  display: none;
}

/* ── Cards grid ─────────────────────────── */
.three-col-cards-v4 .tcc__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 32px;
  row-gap: 32px;
  width: 100%;
}

/* Individual card — subgrid aligns title/body/link across all cards */
.three-col-cards-v4 .tcc__card {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 0;
  background-color: #efefea;
  border-radius: 8px;
  padding: 32px;
}

/* Card title (H4) */
.three-col-cards-v4 .tcc__card-title {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 32px !important;
  line-height: 40px !important;
  color: #000f10;
  margin: 0;
  letter-spacing: -0.05em;
  padding-bottom: 64px; /* gap to body text */
}

/* Card body text */
.three-col-cards-v4 .tcc__card-text {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #2c2f30;
  margin: 0;
  padding-bottom: 32px; /* gap to link */
}

/* Card "Learn more" link */
.three-col-cards-v4 .tcc__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000f10;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Shared chevron */
.three-col-cards-v4 .tcc__chevron {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media (max-width: 1199px) {
  .three-col-cards-v4 .tcc__inner {
    padding: 48px 16px;
  }
}

/* ── Tablet: 768px–1106px ───────────────── */
@media (min-width: 768px) and (max-width: 1106px) {
  .three-col-cards-v4 .tcc__card-title {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 992px) {
    /* Cards: single column — disable subgrid */
  .three-col-cards-v4 .tcc__cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 24px;
  }

  .three-col-cards-v4 .tcc__card {
    grid-row: auto;
    grid-template-rows: auto;
    padding: 24px 16px;
  }
  
   /* Card title (H3 mobile) */
  .three-col-cards-v4 .tcc__card-title {
    padding-bottom: 24px;
  }

  .three-col-cards-v4 .tcc__card-text {
    padding-bottom: 24px;
  }

}

/* ── Mobile: ≤767px ─────────────────────── */
@media (max-width: 767px) {

  .three-col-cards-v4 .tcc__inner {
    gap: 24px;
  }

  /* Header: hide desktop "See more" */
  .three-col-cards-v4 .tcc__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .three-col-cards-v4 .tcc__see-more:not(.tcc__see-more--mobile) {
    display: none;
  }

  /* Mobile "See more" below cards */
  .three-col-cards-v4 .tcc__see-more--mobile {
    display: inline-flex;
  }

  /* Heading */
  .three-col-cards-v4 .tcc__heading {
    font-size: 28px;
    line-height: 36px;
  }

  /* Header text gap */
  .three-col-cards-v4 .tcc__header-text {
    gap: 16px;
  }


  /* Card title (H3 mobile) */
  .three-col-cards-v4 .tcc__card-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}
.faq-section-v4 {
  background-color: #ffffff;
  padding-bottom: 0 !important;
}

.faq-section-v4 .faq__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 128px clamp(60px, calc((100% - 1440px) / 2), 240px);
  gap: 64px;
}

/* ── Left column ───────────────────────── */
.faq-section-v4 .faq__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 581px;
  flex-shrink: 0;
}

.faq-section-v4 .faq__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-section-v4 .faq__heading {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
  color: #000f10;
  margin: 0;
}

.faq-section-v4 .faq__subtext {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.05em;
  color: #2c2f30;
  margin: 0;
}

/* CTA button — bordered pill */
.faq-section-v4 .faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 8px 24px;
  border: 1px solid #d6d6d1;
  border-radius: 9999px;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000f10;
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-start;
  transition: border-color 0.15s ease;
}

.faq-section-v4 .faq__cta:hover {
  border-color: #000f10;
}

.faq-section-v4 .faq__chevron-right {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ── Right column: accordion ────────────── */
.faq-section-v4 .faq__accordion {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* FAQ item */
.faq-section-v4 .faq__item {
  border-bottom: 1px solid #d6d6d1;
}

.faq-section-v4 .faq__item:first-child {
  border-top: 1px solid #d6d6d1;
}

/* Question button */
.faq-section-v4 .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-section-v4 .faq__question span {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  color: #000f10;
  flex: 1 0 0;
  min-width: 0;
  transition: color 0.15s ease;
}

/* Open state — question turns accent red */
.faq-section-v4 .faq__item--open .faq__question span {
  color: #fe2c02;
}

/* Chevron icon — rotates when open */
.faq-section-v4 .faq__icon {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  /* Default: pointing right = closed (rotated 90deg CW) */
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-section-v4 .faq__item--open .faq__icon {
  /* Open: flip to point up */
  transform: rotate(-90deg) scaleY(-1);
}

/* Answer panel — animates via grid-rows trick */
.faq-section-v4 .faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.faq-section-v4 .faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}

/* Inner wrapper needed for grid-rows trick */
.faq-section-v4 .faq__answer-inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.3s ease;
}

.faq-section-v4 .faq__item--open .faq__answer-inner {
  padding-bottom: 18px;
}

.faq-section-v4 .faq__answer p {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.05em;
  color: #2c2f30;
  margin: 0;
}

@media (max-width: 1199px) {
  .faq-section-v4 .faq__inner {
    padding: 48px 16px;
  }
}

/* ── Tablet: 768px–1106px ───────────────── */
@media (min-width: 768px) and (max-width: 1106px) {
  .faq-section-v4 .faq__inner {
    flex-direction: column;
    gap: 48px;
  }

  .faq-section-v4 .faq__left {
    width: 100%;
  }

  .faq-section-v4 .faq__heading {
    font-size: 44px;
    line-height: 52px;
  }
}

/* ── Mobile: ≤767px ─────────────────────── */
@media (max-width: 767px) {
  .faq-section-v4 .faq__inner {
    flex-direction: column;
    gap: 16px;
  }

  .faq-section-v4 .faq__left {
    width: 100%;
    gap: 16px;
  }

  /* Hide bordered CTA on mobile (not shown in Figma mobile) */
  .faq-section-v4 .faq__cta {
    display: none;
  }

  .faq-section-v4 .faq__heading {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.05em;
  }

  .faq-section-v4 .faq__question span {
    font-size: 18px;
    line-height: 26px;
  }

  .faq-section-v4 .faq__question {
    padding: 16px 0;
  }

  .faq-section-v4 .faq__answer-inner {
    padding-bottom: 0;
  }

  .faq-section-v4 .faq__item--open .faq__answer-inner {
    padding-bottom: 16px;
  }
}
/* ============================================
   Download Overview V4 — HubSpot Module
   ============================================ */

/* ── Hero header ───────────────────────── */
.download-overview-v4 .dov4__hero {
  background-color: #000f10;
  width: 100%;
}

.download-overview-v4 .dov4__hero-inner {
  padding: 96px 0 64px clamp(60px, calc((100% - 1400px) / 2), 240px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
}

/* Breadcrumb */
.download-overview-v4 .dov4__breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
}

.download-overview-v4 .dov4__breadcrumb-home {
  display: flex;
  align-items: center;
  color: #b2a7a2;
  text-decoration: none;
  flex-shrink: 0;
}

.download-overview-v4 .dov4__breadcrumb-sep {
  flex-shrink: 0;
}

.download-overview-v4 .dov4__breadcrumb-current {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #b2a7a2;
  white-space: nowrap;
}

/* Hero text */
.download-overview-v4 .dov4__hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 827px;
}

.download-overview-v4 .dov4__hero-heading {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 88px;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}

.download-overview-v4 .dov4__hero-body {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0;
}

/* Cyan divider */
.download-overview-v4 .dov4__divider {
  height: 24px;
  width: 100%;
  background-image: url('');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ── Content area ───────────────────────── */
.download-overview-v4 .dov4__content {
  background-color: #ffffff;
  padding: 64px clamp(60px, calc((100% - 1400px) / 2), 240px) 128px ;
  display: flex;
  flex-direction: column;
  gap: 64px;
  box-sizing: border-box;
  width: 100%;
}

/* ── Filters bar ────────────────────────── */
.download-overview-v4 .dov4__filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  height: 48px;
  width: 100%;
}

/* Search */
.download-overview-v4 .dov4__search-wrap {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: #ffffff;
  border: 1px solid #d6d6d1;
  border-radius: 8px;
  padding: 12px 12px 12px 13px;
  height: 48px;
  box-sizing: border-box;
}

.download-overview-v4 .dov4__search-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.download-overview-v4 .dov4__search {
  flex: 1 0 0;
  min-width: 0;
  border: none;
  outline: none;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #000f10;
  background: transparent;
  padding-left: 0;
}

.download-overview-v4 .dov4__search::placeholder {
  color: rgba(112, 110, 108, 0.5);
}

/* Select dropdowns */
.download-overview-v4 .dov4__filter-wrap {
  flex: 1 0 0;
  min-width: 0;
  position: relative;
  height: 48px;
}

.download-overview-v4 .dov4__filter {
  width: 100%;
  height: 48px;
  background-color: #ffffff;
  border: 1px solid #d6d6d1;
  border-radius: 8px;
  padding: 12px 48px 12px 16px;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #706e6c;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
}

.download-overview-v4 .dov4__select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  flex-shrink: 0;
}

/* Filters button (mobile only, hidden on desktop) */
.download-overview-v4 .dov4__filters-btn {
  display: none;
}

/* ── Result count ───────────────────────── */
.download-overview-v4 .dov4__count {
  display: none;
  font-family: "GT Standard Mono Trial", monospace;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5a5856;
  margin: -48px 0 0; /* collapse gap above, keep space below naturally */
}

/* ── Card grid ──────────────────────────── */
.download-overview-v4 .dov4__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 64px;
  width: 100%;
}

.download-overview-v4 .dov4__empty {
  grid-column: 1 / -1;
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #706e6c;
}

/* Card */
.download-overview-v4 .dov4__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.download-overview-v4 .dov4__card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.download-overview-v4 .dov4__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-overview-v4 .dov4__card-title {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #000f10;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Arrow only visible on mobile */
.download-overview-v4 .dov4__card-arrow {
  display: none;
}

/* ── Pagination ─────────────────────────── */
.download-overview-v4 .dov4__pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.download-overview-v4 .dov4__page-btn,
.download-overview-v4 .dov4__page-num {
  font-family: "GT Standard Trial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000f10;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #d6d6d1;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.download-overview-v4 .dov4__page-num--active {
  background-color: #000f10;
  color: #ffffff;
  border-color: #000f10;
}

.download-overview-v4 .dov4__page-btn--disabled {
  color: #b2a7a2;
  border-color: #efefea;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .download-overview-v4 .dov4__hero-inner,  .download-overview-v4 .dov4__content{
    padding: 48px 16px;
  }
}

@media (max-width: 1106px) {
   .download-overview-v4 .dov4__filters {
     display: flex;
  }
}

/* ── Tablet: 768px–1106px ───────────────── */
@media (min-width: 768px) and (max-width: 1106px) {
  .download-overview-v4 .dov4__hero-heading {
    font-size: 56px;
    line-height: 64px;
  }

  .download-overview-v4 .dov4__content {
    gap: 48px;
  }

  .download-overview-v4 .dov4__filters {
    flex-wrap: wrap;
    height: auto;
  }

  .download-overview-v4 .dov4__search-wrap {
    flex: 1 0 100%;
  }

  .download-overview-v4 .dov4__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile: ≤767px ─────────────────────── */
@media (max-width: 767px) {
  .download-overview-v4 .dov4__hero-inner {
    gap: 48px;
  }

  .download-overview-v4 .dov4__hero-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .download-overview-v4 .dov4__hero-body {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.03em;
  }

  .download-overview-v4 .dov4__hero-text {
    gap: 24px;
  }

  .download-overview-v4 .dov4__content {
    padding: 24px 0 0;
    gap: 16px;
  }

  /* Filters: search + filter button */
  .download-overview-v4 .dov4__filters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    height: auto;
    padding-inline: 16px;
  }

  .download-overview-v4 .dov4__search-wrap {
    flex: 1 0 0;
    min-width: 0;
    border-radius: 10px;
    border-color: #b2a7a2;
  }

  .download-overview-v4 .dov4__search {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
  }

  .download-overview-v4 .dov4__breadcrumb-current {
    color: #ffffff;
  }

  /* Dropdowns hidden on mobile — replaced by the bottom-sheet modal */
  .download-overview-v4 .dov4__filter-wrap {
    display: none;
  }

  /* Filters button */
  .download-overview-v4 .dov4__filters-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    height: 48px;
    padding: 11px 16px;
    border: 1px solid #b2a7a2;
    border-radius: 10px;
    background-color: #ffffff;
    font-family: "GT Standard Trial", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #2c2f30;
    cursor: pointer;
    white-space: nowrap;
  }

  /* Grid → vertical list on mobile */
  .download-overview-v4 .dov4__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Each card becomes a list row */
  .download-overview-v4 .dov4__card {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 16px;
    border-top: 1px solid #d6d6d1;
    min-height: 56px;
  }

  /* Hide image on mobile list */
  .download-overview-v4 .dov4__card-img-wrap {
    display: none;
  }

  /* Title takes full flex */
  .download-overview-v4 .dov4__card-title {
    flex: 1 0 0;
    min-width: 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Show arrow on mobile */
  .download-overview-v4 .dov4__card-arrow {
    display: block;
    flex-shrink: 0;
  }

  .download-overview-v4 .dov4__count {
    display: block;
    margin: 0;
    padding-inline: 16px;
  }

  .download-overview-v4 .dov4__empty {
    padding-inline: 16px;
  }
}

/* ============================================================
   Mobile filter modal (bottom sheet)
   Shown via JS on mobile only; trigger button is hidden ≥768px,
   so the modal never opens on desktop.
   ============================================================ */
.download-overview-v4 .dov4__modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.download-overview-v4 .dov4__modal[hidden] {
  display: none;
}

.download-overview-v4 .dov4__modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 15, 16, 0.5);
  cursor: pointer;
}

.download-overview-v4 .dov4__modal-sheet {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: dov4-slide-up 0.3s ease-out;
}

@keyframes dov4-slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.download-overview-v4 .dov4__modal-handle {
  width: 40px;
  height: 4px;
  background-color: #d6d6d1;
  border-radius: 999px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.download-overview-v4 .dov4__modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 0.5px solid #d6d6d1;
  flex-shrink: 0;
  box-sizing: border-box;
}

.download-overview-v4 .dov4__modal-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-overview-v4 .dov4__modal-title {
  font-family: "GT Standard Trial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000f10;
  margin: 0;
}

.download-overview-v4 .dov4__modal-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background-color: #43e0ff;
  border-radius: 10px;
  font-family: "GT Standard Trial", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #000f10;
  box-sizing: border-box;
  flex-shrink: 0;
}

.download-overview-v4 .dov4__modal-clear {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "GT Standard Trial", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #e0413c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.download-overview-v4 .dov4__modal-clear:focus-visible,
.download-overview-v4 .dov4__modal-apply:focus-visible,
.download-overview-v4 .dov4__pill:focus-visible {
  outline: 2px solid #43e0ff;
  outline-offset: 2px;
}

.download-overview-v4 .dov4__modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.download-overview-v4 .dov4__filter-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-overview-v4 .dov4__filter-section-label {
  font-family: "GT Standard Mono Trial", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: #5a5856;
  margin: 0;
}

.download-overview-v4 .dov4__pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.download-overview-v4 .dov4__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5px 14.5px;
  background-color: #ffffff;
  border: 0.5px solid #d6d6d1;
  border-radius: 999px;
  font-family: "GT Standard Trial", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #2c2f30;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.download-overview-v4 .dov4__pill--on {
  background-color: #000f10;
  color: #ffffff;
  border-color: #000f10;
}

.download-overview-v4 .dov4__modal-footer {
  padding: 16px;
  border-top: 0.5px solid #d6d6d1;
  flex-shrink: 0;
}

.download-overview-v4 .dov4__modal-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background-color: #000f10;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: "GT Standard Trial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  box-sizing: border-box;
}
.cta-section-form-v4.quickscan{
  background: #000F10;
}

.cta-section-form-v4.quickscan .cta-sf__heading-wrap{
  max-width:581px;
}

.cta-section-form-v4.quickscan .cta-sf__heading{
  color:#fff;
  margin-bottom:20px;
}

.cta-section-form-v4.quickscan .hs-form .hs-form-required{
  margin-left:2px;
}

.cta-section-form-v4.quickscan .description{
  color: #D6D6D1;
  font-family: "GT Standard Trial";
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4em;
  letter-spacing: -0.8px;
}

.cta-section-form-v4.quickscan .cta-sf__inner{
  padding:0;
}

.cta-section-form-v4.quickscan .hs-form label, 
.cta-section-form-v4.quickscan .hs-form .hs-field-label{
  color:#fff;
}

.cta-section-form-v4.quickscan .hs-form .legal-consent-container .hs-form-booleancheckbox-display, 
.cta-section-form-v4.quickscan .hs-form .legal-consent-container p, 
.cta-section-form-v4.quickscan .hs-form .inputs-list label,
.cta-section-form-v4.quickscan .hs-form .legal-consent-container a, 
.cta-section-form-v4.quickscan .hs-form .inputs-list label a{
  color:#D6D6D1 !important;
}

.cta-section-form-v4.quickscan .hs-form .hs-button, 
.cta-section-form-v4.quickscan .hs-form input[type="submit"]{
  background: #FE2C02 !important;
}

.cta-section-form-v4 .hs_cos_wrapper fieldset.form-columns-2 .input,
.cta-section-form-v4 .hs_cos_wrapper fieldset.form-columns-1 .input{
    margin-right:0px;
}

@media screen and (max-width:992px){
  .cta-section-form-v4.quickscan .description{
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: -0.48px;
  }
  
  .cta-section-form-v4.quickscan .cta-sf__heading-wrap{
    max-width:100%;
    margin-bottom:26px;
  }
  
  fieldset.form-columns-1 .input, fieldset.form-columns-2 .input {
        margin-right: 0px !important;
    }
}
/* ═══════════════════════════════════════════════════════════════════
   Timeline V4
   Figma Desktop : node 8140:2254  (1920px frame)
   Figma Mobile  : node 8173:3293  (390px frame)

   Desktop: header + nav | 3-col grid (prev / active / next) | scrubber
   Mobile:  header | vertical timeline bar + slide list (tap to expand)
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   Section
───────────────────────────────────────────── */
.timeline-v4 {
  background: #ffffff;
}

/* ─────────────────────────────────────────────
   Inner — shared grid padding formula
───────────────────────────────────────────── */
.timeline-v4__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 128px clamp(60px, calc((100% - 1400px) / 2), 240px);
}

/* ─────────────────────────────────────────────
   Top bar: header text + nav buttons
   Figma: flex row, align-end, space-between
───────────────────────────────────────────── */
.timeline-v4__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

/* ─────────────────────────────────────────────
   Header: overline + H2
───────────────────────────────────────────── */
.timeline-v4__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 0 0;
  min-width: 0;
}

.timeline-v4__overline {
  font-family: 'GT Standard Mono Trial', 'Courier New', monospace;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--v4-neutrals-1000, #000f10);
  margin: 0;
}

.timeline-v4__bracket {
  color: #43e0ff;
}

.timeline-v4__heading {
  font-family: 'GT Standard Trial', sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  color:#000f10;
  margin: 0;
}

/* ─────────────────────────────────────────────
   Navigation buttons: prev / next
   Figma: 80×48px pill, border neutrals/200
───────────────────────────────────────────── */
.timeline-v4__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.timeline-v4__btn-prev,
.timeline-v4__btn-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 48px;
  border: 1px solid #d6d6d1; /* neutrals/200 — hardcoded: --v4-neutrals-200 resolves to #efebea (wrong) */
  border-radius: 9999px;
  background: none;
  cursor: pointer;
  color:#000f10;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.timeline-v4__btn-prev:hover,
.timeline-v4__btn-next:hover {
  border-color: var(--v4-neutrals-1000, #000f10);
}

/* Disabled state — Figma: opacity 0.5 only.
   Scoped with .timeline-v4 to beat any global button:disabled overrides. */
.timeline-v4 .timeline-v4__btn--disabled,
.timeline-v4 .timeline-v4__btn-prev:disabled,
.timeline-v4 .timeline-v4__btn-next:disabled {
  opacity: 0.5;
  pointer-events: none;
  background: none;
  color: #000F10;
}

/* ─────────────────────────────────────────────
   Slides track
   Desktop: 3-col CSS grid — prev | active | next
   Items without a state class are display:none
───────────────────────────────────────────── */
.timeline-v4__track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Suppress all transitions during JS initialisation (class removed on first rAF) */
.timeline-v4--no-transition * {
  transition: none !important;
}

/* ─────────────────────────────────────────────
   Individual slide — hidden by default
───────────────────────────────────────────── */
.timeline-v4__slide {
  display: none;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.4s ease;
  will-change: opacity; /* GPU-composite the fade */
}

/* Previous: always left column, fully transparent */
.timeline-v4__slide--prev {
  display: flex;
  opacity: 0;
  grid-column: 1; /* always left — keeps active centred when there is no prev */
}

/* Active: always centre column */
.timeline-v4__slide--active {
  display: flex;
  opacity: 1;
  grid-column: 2;
}

/* Next: always right column */
.timeline-v4__slide--next {
  display: flex;
  opacity: 0.5;
  grid-column: 3; /* always right — keeps active centred when there is no next */
}

/* ─────────────────────────────────────────────
   Year heading  — H3 scale (40/48)
───────────────────────────────────────────── */
#main-content .timeline-v4__year {
  font-family: 'GT Standard Trial', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: var(--v4-neutrals-1000, #000f10);
  margin: 0;
  transition: color 0.4s ease;
}

#main-content .timeline-v4__slide--active .timeline-v4__year {
  color: #fe2c02; /* accent/500* */
}

/* ─────────────────────────────────────────────
   Body text
───────────────────────────────────────────── */
.timeline-v4__body {
  font-family: 'GT Standard Trial', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.03em; /* −3 in Figma = −0.48px at 16px */
  color: #202a2b;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SCRUBBER — horizontal dotted timeline (desktop only)
   Figma: 1px grey line, 32×32 circles with labels below
   ═══════════════════════════════════════════════════════════════════ */

.timeline-v4__scrubber {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Extra bottom space so dot labels (below the dots) are not clipped */
  padding-bottom: 40px;
}

/* Horizontal baseline */
.timeline-v4__scrubber::before {
  content: '';
  position: absolute;
  top: 16px; /* vertically centred within the 32px dot */
  left: 0;
  right: 0;
  height: 1px;
  background: var(--v4-neutrals-300, #b2a7a2);
  pointer-events: none;
}

/* Dot button — 32×32 circle */
.timeline-v4__dot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--v4-neutrals-300, #b2a7a2);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease;
}

.timeline-v4__dot:hover {
  border-color: var(--v4-neutrals-1000, #000f10);
}

/* Active dot: red border + filled 16×16 inner circle */
.timeline-v4__dot--active {
  border-color: #fe2c02;
}

.timeline-v4__dot--active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fe2c02;
}

/* Dot label — sits below the dot */
.timeline-v4__dot-label {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'GT Standard Trial', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--v4-neutrals-600, #5a5856);
  pointer-events: none;
  transition: color 0.4s ease;
}

.timeline-v4__dot--active .timeline-v4__dot-label {
  color: var(--v4-neutrals-1000, #000f10);
}

@media (max-width:992px){
  #main-content h3.timeline-v4__year{
    font-size:24px;
    line-height: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE  ≤ 1199px
   Figma: vertical timeline bar (left) + year list (right)
          active item: year red + body text
          inactive items: year grey, body hidden
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {

  .timeline-v4__inner {
    padding: 48px 16px;
    gap: 48px;
  }

  /* Stack top bar — hide nav buttons on mobile (tap-to-select) */
  .timeline-v4__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .timeline-v4__nav {
    display: none;
  }

  /* Mobile heading scale: 28/36 */
  .timeline-v4__heading {
    font-size: 28px;
    line-height: 36px;
  }

  /* Hide horizontal scrubber */
  .timeline-v4__scrubber {
    display: none;
  }

  /* ── Vertical track ──
     Left 40px padding = space for the vertical line + dots column
  ── */
  .timeline-v4__track {
    display: flex;
    flex-direction: column;
    grid-template-columns: none; /* reset grid */
    gap: 0;
    position: relative;
    padding-left: 41px; /* 25px dot column + 16px gap = Figma exact */
  }

  /* Vertical baseline — centred in the 25px dot column */
  .timeline-v4__track::before {
    content: '';
    position: absolute;
    left: 12.5px; /* centre of 25px column */
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: var(--v4-neutrals-300, #b2a7a2);
  }

  /* ── All slides always visible on mobile ── */
  .timeline-v4__slide {
    display: flex !important; /* override desktop display:none */
    opacity: 1 !important;   /* override desktop opacity states */
    flex: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    cursor: pointer;
    position: relative;
  }

  .timeline-v4__slide:last-child {
    padding-bottom: 0;
  }

  /* Dot marker on vertical line
     Figma: 25×25 outer ring (border-only circle) + 13×13 inner fill for active.
     Track padding-left: 41px → dot flush with track left: left = -41px
     top: 3.5px → centre of 25px dot (3.5 + 12.5 = 16px) aligns with
     centre of year text first line (line-height 32px / 2 = 16px)
  */
  .timeline-v4__slide::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 3.5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--v4-neutrals-300, #b2a7a2);
    background: #ffffff;
    z-index: 1;
    transition: border-color 0.2s ease;
  }

  /* Active outer ring: red border */
  .timeline-v4__slide--active::before {
    border-color: #fe2c02;
  }

  /* Active inner fill: 13×13 red circle centred inside the 25×25 ring
     left = -41 + (25-13)/2 = -35px
     top  = 3.5 + (25-13)/2 = 9.5px
  */
  .timeline-v4__slide--active::after {
    content: '';
    position: absolute;
    left: -35px;
    top: 9.5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fe2c02;
    z-index: 2;
    pointer-events: none;
  }

  /* Year: grey on inactive, red on active */
  .timeline-v4__year {
    font-size: 24px;
    line-height: 32px;
    color: var(--v4-neutrals-300, #b2a7a2);
  }

  .timeline-v4__slide--active .timeline-v4__year {
    color: #fe2c02;
  }

  /* Body: hidden on inactive, block on active */
  .timeline-v4__body {
    display: none;
  }

  .timeline-v4__slide--active .timeline-v4__body {
    display: block;
    margin-top:8px;
  }

}

/* ─────────────────────────────────────────────
   Tablet (993px – 1199px): vertical layout is active (from max-width:1199px
   above) but year stays at 40px/48px — the high-specificity base rule
   #main-content .timeline-v4__year wins over the plain .timeline-v4__year
   inside the 1199px block.
   Re-centre the dot marker for 48px line-height:
     dot centre = top + 12.5 = 48/2 = 24  →  top = 11.5px
     inner fill top = 11.5 + (25−13)/2   = 17.5px
   This block must appear AFTER max-width:1199px to win the cascade.
───────────────────────────────────────────── */
@media (min-width: 993px) and (max-width: 1199px) {
  .timeline-v4__slide::before {
    top: 11.5px;
  }
  .timeline-v4__slide--active::after {
    top: 17.5px;
  }
}
/* ── Design tokens ────────────────────────────────────────── */
.ev4-events {
  --ev4-black:         #000f10;
  --ev4-white:         #ffffff;
  --ev4-cyan:          #43e0ff;
  --ev4-red:           #fe2c02;
  --ev4-n200:          #d6d6d1;
  --ev4-n300:          #b2a7a2;
  --ev4-n500:          #706e6c;
  --ev4-n600:          #5a5856;
  --ev4-n800:          #2c2f30;
  --ev4-border-subtle: #f0f0ee;
  --ev4-font:          'gt_standard_trial', 'GT Standard Trial', sans-serif;
  --ev4-mono:          'gt_standard_mono_trial', 'GT Standard Mono Trial', monospace;
  --ev4-radius-sm:     8px;
  --ev4-radius-md:     10px;
  --ev4-radius-pill:   9999px;
}

/* ── Utility: screen-reader only ─────────────────────────── */
.ev4-events .ev4-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Container ────────────────────────────────────────────── */
.ev4-events .ev4-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* ── Icon base ────────────────────────────────────────────── */
.ev4-events .ev4-icon {
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ev4-events .ev4-hero {
  background-color: var(--ev4-black);
  padding-top: 96px;
  padding-bottom: 64px;
}

/* Breadcrumb */
.ev4-events .ev4-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ev4-n300);
  margin-bottom: 32px;
}

.ev4-events .ev4-breadcrumb__home {
  display: flex;
  align-items: center;
  color: inherit;
  line-height: 1;
  text-decoration: none;
}

.ev4-events .ev4-breadcrumb__home:hover {
  color: var(--ev4-white);
}

.ev4-events .ev4-breadcrumb__sep {
  display: flex;
  align-items: center;
  color: inherit;
}

.ev4-events .ev4-breadcrumb__label {
  font-family: var(--ev4-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: inherit;
}

/* Hero content */
.ev4-events .ev4-hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 827px;
  max-width: 100%;
}

.ev4-events .ev4-hero__title {
  font-family: var(--ev4-font);
  font-size: 80px;
  font-weight: 400;
  line-height: 88px;
  letter-spacing: 0;
  color: var(--ev4-white);
  margin: 0;
}

.ev4-events .ev4-hero__desc {
  font-family: var(--ev4-font);
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.8px;
  color: var(--ev4-white);
  margin: 0;
}

/* ============================================================
   CYAN DIVIDER
   ============================================================ */
.ev4-events .ev4-divider {
  height: 24px;
  background-color: var(--ev4-cyan);
  width: 100%;
}

/* ============================================================
   MAIN SECTION
   ============================================================ */
.ev4-events .ev4-main {
  background-color: var(--ev4-white);
  padding-top: 64px;
  padding-bottom: 128px;
}

/* ============================================================
   DESKTOP FILTER BAR
   ============================================================ */
.ev4-events .ev4-filter-bar--desktop {
  display: block;
  margin-bottom: 64px;
}

.ev4-events .ev4-filter-bar--mobile {
  display: none;
}

/* 6-column filter grid */
.ev4-events .ev4-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
  height: 48px;
  align-items: start;
}

/* Search (spans 2 of 6 columns) */
.ev4-events .ev4-filter-search {
  grid-column: 1 / span 2;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--ev4-white);
  border: 1px solid var(--ev4-n200);
  border-radius: var(--ev4-radius-sm);
  padding: 12px;
  gap: 16px;
  height: 48px;
  box-sizing: border-box;
}

.ev4-events .ev4-filter-search__icon {
  flex-shrink: 0;
  color: var(--ev4-n500);
  width: 16px;
  height: 16px;
}

.ev4-events .ev4-filter-search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ev4-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.48px;
  color: var(--ev4-n500);
  min-width: 0;
  padding: 0;
}

.ev4-events .ev4-filter-search__input::placeholder {
  color: var(--ev4-n500);
  opacity: 0.5;
}

/* Select wrapper (each takes 1 column) */
.ev4-events .ev4-filter-select-wrap {
  position: relative;
  display: block;
  height: 48px;
  box-sizing: border-box;
}

/* Custom chevron-down arrow via background SVG */
.ev4-events .ev4-filter-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  background-color: var(--ev4-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000f10' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border: 1px solid var(--ev4-n200);
  border-radius: var(--ev4-radius-sm);
  padding: 12px 40px 12px 16px;
  font-family: var(--ev4-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.48px;
  color: var(--ev4-n500);
  cursor: pointer;
  box-sizing: border-box;
}

.ev4-events .ev4-filter-select:focus {
  outline: 2px solid var(--ev4-cyan);
  outline-offset: 2px;
}

/* ============================================================
   EVENTS LIST
   ============================================================ */
.ev4-events .ev4-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.ev4-events .ev4-empty {
  font-family: var(--ev4-font);
  font-size: 16px;
  color: var(--ev4-n600);
  padding: 32px 0;
}

/* ── Event card (desktop: horizontal) ─────────────────────── */
.ev4-events .ev4-event__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 33px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

/* Image */
.ev4-events .ev4-event__image-wrap {
  flex-shrink: 0;
  width: 336px;
  height: 224px;
  border-radius: 8px;
  overflow: hidden;
}

.ev4-events .ev4-event__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Body */
.ev4-events .ev4-event__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.ev4-events .ev4-event__title {
  font-family: var(--ev4-font);
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0;
  color: var(--ev4-black);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Meta row */
.ev4-events .ev4-event__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.ev4-events .ev4-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
}

.ev4-events .ev4-meta-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--ev4-n600);
}

.ev4-events .ev4-meta-icon svg {
  display: block;
}

.ev4-events .ev4-meta-text {
  font-family: var(--ev4-mono);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--ev4-n600);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Tags item can wrap */
.ev4-events .ev4-meta-tags .ev4-meta-text {
  white-space: normal;
  overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* Description */
.ev4-events .ev4-event__desc {
  font-family: var(--ev4-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.48px;
  color: var(--ev4-n800);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Chevron (mobile only – hidden on desktop) */
.ev4-events .ev4-event__chevron {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--ev4-black);
}

/* ============================================================
   MOBILE FILTER BAR
   ============================================================ */
.ev4-events .ev4-filter-bar--mobile .ev4-filter-search {
  grid-column: unset;
  flex: 1;
  border-color: var(--ev4-n300);
  border-radius: var(--ev4-radius-md);
  height: 48px;
}

.ev4-events .ev4-filter-mobile-row {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.ev4-events .ev4-filter-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 48px;
  padding: 11px 16px;
  background-color: var(--ev4-white);
  border: 1px solid var(--ev4-n300);
  border-radius: var(--ev4-radius-md);
  font-family: var(--ev4-font);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.28px;
  color: var(--ev4-n800);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
}

.ev4-events .ev4-filter-toggle:focus-visible {
  outline: 2px solid var(--ev4-cyan);
  outline-offset: 2px;
}

.ev4-events .ev4-results-count {
  font-family: var(--ev4-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ev4-n600);
  margin: 0;
}

/* ============================================================
   FILTER MODAL (BOTTOM SHEET)
   ============================================================ */
.ev4-events .ev4-modal {
  /* Shown/hidden via [hidden] + JS toggling display */
  position: fixed;
  inset: 0;
  z-index: 1000;
  /* Flex to center backdrop, sheet is pinned bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ev4-events .ev4-modal[hidden] {
  display: none;
}

/* Backdrop */
.ev4-events .ev4-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 15, 16, 0.5);
  cursor: pointer;
}

/* Sheet */
.ev4-events .ev4-modal__sheet {
  position: relative;
  background-color: var(--ev4-white);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Slide-up animation */
  animation: ev4-slide-up 0.3s ease-out;
}

@keyframes ev4-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* Handle bar */
.ev4-events .ev4-modal__handle {
  width: 40px;
  height: 4px;
  background-color: var(--ev4-n200);
  border-radius: var(--ev4-radius-pill);
  margin: 12px auto 0;
  flex-shrink: 0;
}

/* Header */
.ev4-events .ev4-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16.5px;
  border-bottom: 0.507px solid var(--ev4-border-subtle);
  flex-shrink: 0;
  height: 59px;
  box-sizing: border-box;
}

.ev4-events .ev4-modal__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev4-events .ev4-modal__title {
  font-family: var(--ev4-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--ev4-black);
  margin: 0;
}

/* Active-filter count badge */
.ev4-events .ev4-modal__count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--ev4-cyan);
  border-radius: 10px;
  font-family: var(--ev4-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--ev4-black);
  text-align: center;
  padding-bottom: 1px;
  flex-shrink: 0;
}

/* "clear all" link */
.ev4-events .ev4-modal__clear {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--ev4-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--ev4-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ev4-events .ev4-modal__clear:focus-visible {
  outline: 2px solid var(--ev4-cyan);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Body (scrollable) */
.ev4-events .ev4-modal__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Filter section inside modal */
.ev4-events .ev4-filter-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ev4-events .ev4-filter-section__label {
  font-family: var(--ev4-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--ev4-n600);
  margin: 0;
}

/* Date range row */
.ev4-events .ev4-date-range {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--ev4-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.ev4-events .ev4-date-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 4px;
  padding: 8.5px 14.5px;
  background-color: var(--ev4-white);
  border: 0.507px solid var(--ev4-n200);
  border-radius: var(--ev4-radius-pill);
  cursor: pointer;
  min-width: 0;
  box-sizing: border-box;
}

.ev4-events .ev4-date-pill:focus-visible {
  outline: 2px solid var(--ev4-cyan);
  outline-offset: 2px;
}

.ev4-events .ev4-date-pill__key {
  font-family: var(--ev4-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--ev4-n800);
  white-space: nowrap;
}

.ev4-events .ev4-date-pill__val {
  font-family: var(--ev4-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--ev4-n500);
  white-space: nowrap;
}

/* Pill toggle group */
.ev4-events .ev4-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ev4-events .ev4-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5px 14.5px;
  background-color: var(--ev4-white);
  border: 0.507px solid var(--ev4-n200);
  border-radius: var(--ev4-radius-pill);
  font-family: var(--ev4-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--ev4-n800);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.ev4-events .ev4-pill:focus-visible {
  outline: 2px solid var(--ev4-cyan);
  outline-offset: 2px;
}

/* Active pill state */
.ev4-events .ev4-pill--on {
  background-color: var(--ev4-black);
  color: var(--ev4-white);
  border-color: var(--ev4-n200);
}

/* Modal footer */
.ev4-events .ev4-modal__footer {
  padding: 16px;
  border-top: 0.507px solid var(--ev4-border-subtle);
  flex-shrink: 0;
}

/* "Show X events" apply button */
.ev4-events .ev4-modal__apply {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background-color: var(--ev4-black);
  color: var(--ev4-white);
  border: none;
  border-radius: var(--ev4-radius-pill);
  font-family: var(--ev4-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  box-sizing: border-box;
}

.ev4-events .ev4-modal__apply:focus-visible {
  outline: 2px solid var(--ev4-cyan);
  outline-offset: 2px;
}

/* ============================================================
   MOBILE OVERRIDES  (≤ 767px)
   ============================================================ */
@media (max-width: 992px) {

  /* Container */
  .ev4-events .ev4-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero */
  .ev4-events .ev4-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  
  .ev4-events .hero-v4__divider-img{
    object-fit: cover;
    object-position: right;
  }

  .ev4-events .ev4-hero__title {
    font-size: 32px;
    line-height: 40px;
  }

  .ev4-events .ev4-hero__desc {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
  }

  .ev4-events .ev4-hero__content {
    width: 100%;
    gap: 24px;
  }

  /* Breadcrumb: white on mobile */
  .ev4-events .ev4-breadcrumb {
    color: var(--ev4-white);
    margin-bottom:48px;
  }

  /* Main section */
  .ev4-events .ev4-main {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  /* Filter bars */
  .ev4-events .ev4-filter-bar--desktop {
    display: none;
  }

  .ev4-events .ev4-filter-bar--mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }

  /* Events list */
  .ev4-events .ev4-list {
    gap: 0;
    margin-top: 24px;
  }

  /* Event item — list row style */
  .ev4-events .ev4-event {
    border-top: 1px solid var(--ev4-n200);
  }

  .ev4-events .ev4-event:last-child {
    border-bottom: 1px solid var(--ev4-n200);
  }

  .ev4-events .ev4-event__link {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 16px 0;
  }

  /* Hide image on mobile */
  .ev4-events .ev4-event__image-wrap {
    display: none;
  }

  /* Title: H6 mobile style */
  .ev4-events .ev4-event__title {
    font-size: 16px;
    line-height: 24px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  /* Hide description on mobile */
  .ev4-events .ev4-event__desc {
    display: none;
  }

  /* Meta: date+location on same row, tag full-width below */
  .ev4-events .ev4-event__meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 16px;
    row-gap: 8px;
  }

  .ev4-events .ev4-meta-date,
  .ev4-events .ev4-meta-location {
    flex: none;
  }

  .ev4-events .ev4-meta-tags {
    flex: 0 0 100%;
  }

  /* Event body layout */
  .ev4-events .ev4-event__body {
    gap: 8px;
  }

  /* Show chevron on mobile */
  .ev4-events .ev4-event__chevron {
    display: flex;
    flex-shrink: 0;
    color: var(--ev4-black);
  }

}

.air-datepicker-global-container{
  z-index:1500;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Light-Trial.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Light-Oblique-Trial.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Regular-Trial.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Regular-Oblique-Trial.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Medium-Trial.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Medium-Oblique-Trial.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Semibold-Trial.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Semibold-Oblique-Trial.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Bold-Trial.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Bold-Oblique-Trial.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Heavy-Trial.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Heavy-Oblique-Trial.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Black-Trial.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Trial';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-trial/m/GT-Standard-M-Standard-Black-Oblique-Trial.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Light-Trial.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Light-Oblique-Trial.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Regular-Trial.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Regular-Oblique-Trial.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Medium-Trial.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Medium-Oblique-Trial.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Semibold-Trial.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Semibold-Oblique-Trial.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Bold-Trial.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Bold-Oblique-Trial.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Heavy-Trial.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Heavy-Oblique-Trial.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Black-Trial.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Standard Mono';
  src: url('https://5708247.fs1.hubspotusercontent-na1.net/hubfs/5708247/raw_assets/public/ud_emixa/fonts/gt-standard-mono/GT-Standard-Mono-Standard-Black-Oblique-Trial.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

body{
      --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
  background:white;
  font-family: 'GT Standard Trial';
}

.body-wrapper{
  background-color:transparent;
}

div:not(.hs-blog-listing) #main-content{
  overflow:hidden;
}

h1,h2{
  font-weight:500;
}

h1{
  font-size:24px;
  line-height:30px;
}

h2,
  .usp-section h2.section-title,
  .grid-3-cols.sub-solutions-v3 h2.wrap-title,
  .singular-case .content h2.title,
  .statistics h2.section-title,
  .featured-blog h2.section-title,
  .highlighted-blog h2.title,
  .advantage h2,
  .download-detail h2,
  .people-logo .title,
  .grid-3-cols .wrap-title,
  .form-contact .wrap-title,
  .case-slider .floating-banner .small-title, 
  .floating-banner .small-title,
  .licensing-options h2,
  .cols-2-with-image .wrap-title,
  .case-slider .small-title,
  .wrap-title,
  .col-with-video .title,
  .two-col-with-image .wrap-title, 
  .twocols-img .title,
  .video-single h2,
  .our-dna .inline-title .title,
  .related-post h2,
  .qoutegrid .wrap-title,
  #main-content .grid2cols-overlapcta .content h4,
  #main-content .banner-cta .title,
  .header.v3-style h2.title,
  .product-download-grid h2{
    font-size:24px;
    line-height:30px;
  }

h1, h2, h3, h4, h5, h6{
  font-family: "GT Standard Trial" !important;
}

.item-link{
  display:flex;
    align-items: center;
  color: #FE2C02;
  /* Button/button md */
  font-family: "GT Standard Trial";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration:none;
  gap:8px;
}

p,
div{
  font-size:14px;
  font-weight:400;
}

.with-symbol:before,
.with-symbol:after{
    content:'⊣ ';
    position:relative;
    color:#43E0FF;
    
}
.with-symbol:after{
    content:' ⊢';
}

.grid-3-cols.sub-solutions-v3 .card .excerpt,
.singular-case .content p,
.statistics p, 
.statistics .description,
.timeline-v3 .timeline-card p{
  font-weight:400;
}

.cta-button{
  border-radius: 9999px;
  background: #FE2C02;
  padding:12px 24px;
  font-size:14px;
  text-transform:none;
}

#main-content h3,
  #main-content h4,
  .advantage .card-advantage .card-title a{
    font-size:16px;
    line-height:22px;
  }

.list-view-v3 .wrapper::-webkit-scrollbar-track {
    background: rgba(74, 72, 97, 0.2);
    border-radius: 16px;
    -webkit-box-shadow: inset 0 0 16px rgba(74, 72, 97, 0.2);
}

.list-view-v3 .wrapper::-webkit-scrollbar {
    width: 12px;
    background-color: rgba(74, 72, 97, 0.2);
}

.list-view-v3 .wrapper::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 16px;
    border: 3px solid rgba(74, 72, 97, 0.2);
}

.list-view-v3 .wrapper {
    -webkit-overflow-scrolling: touch; /* Ensure smooth scrolling */
}

.header.v3-style .breadcrumbs-wrapper .hs-breadcrumb-menu-divider:before{
    font-size: 20px;
    line-height: 14px;
}

.header.v3-style .breadcrumbs-wrapper .container{
  border-radius:0;
}

#main-content .cta-button{
    border-radius:8px;
    padding:14px 31px;
  display:block;
  text-align:center;
 }

.cross-sell .buttons-wrap{
  width:100%;
}

#main-content .read-more-arrow:hover,
.grid-3-cols.sub-solutions-v3 .card-blur:hover .read-more-arrow{  
  background-color:rgba(74, 72, 97, 0.75) !important;
}

.cta-button:hover{
  background:#007A79;
}

.cta-button,
form .hs-button, form input[type=submit]{
  width:100%;
}

.cta-button, 
.form-contact .form-wrap form input[type=submit], 
.download-detail .form-wrap form input[type=submit]{
  font-family: 'GT Standard Trial';
  line-height:1.5;
}

@media (min-width:992px){
  #main-content .cta-button{
    font-size:16px;
    text-transform:none;
    display:inline-flex;
  }
  
  .cta-button,
  form .hs-button, form input[type=submit],
  .cross-sell .buttons-wrap{
    width:auto;
  }
  
  /*  Setup heading font size  */
  p,
  div{
    font-size:16px;
  }
  h1,
  .header.header-bg-video.second-style h1.title{
    font-size:32px;
    line-height:40px;
  }
  
  h2,
  .usp-section h2.section-title,
  .grid-3-cols.sub-solutions-v3 h2.wrap-title,
  .singular-case .content h2.title,
  .statistics h2.section-title,
  .featured-blog h2.section-title,
  .highlighted-blog h2.title,
  .advantage h2,
  .download-detail h2,
  .people-logo .title,
  .grid-3-cols .wrap-title,
  .form-contact .wrap-title,
  .case-slider .floating-banner .small-title, 
  .floating-banner .small-title,
  .licensing-options h2,
  .cols-2-with-image .wrap-title,
  .case-slider .small-title,
  .wrap-title,
  .col-with-video .title,
  .two-col-with-image .wrap-title, 
  .twocols-img .title,
  .video-single h2,
  .our-dna .inline-title .title,
  .related-post h2,
  .qoutegrid .wrap-title,
  #main-content .grid2cols-overlapcta .content h4,
  #main-content .banner-cta .title,
  .header.v3-style h2.title,
  .product-download-grid h2{
    font-size:24px;
    line-height:30px;
  }
  
  #main-content h3,
  #main-content h4,
  .advantage .card-advantage .card-title a{
    font-size:18px;
    line-height:24px;
  }
}

@media (min-width:1700px){
  /*  Setup heading font size  */
   p,
  div{
    font-size:16px;
  }
  h1,
  .header.header-bg-video.second-style h1.title{
    font-size:38px;
    line-height:46px;
  }
  h2,
  .usp-section h2.section-title,
  .grid-3-cols.sub-solutions-v3 h2.wrap-title,
  .singular-case .content h2.title,
  .statistics h2.section-title,
  .featured-blog h2.section-title,
  .highlighted-blog h2.title,
  .advantage h2,
  .download-detail h2,
  .people-logo .title,
  .grid-3-cols .wrap-title,
  .form-contact .wrap-title,
  .case-slider .floating-banner .small-title, 
  .floating-banner .small-title,
  .licensing-options h2,
  .cols-2-with-image .wrap-title,
  .case-slider .small-title,
  .wrap-title,
  .col-with-video .title,
  .two-col-with-image .wrap-title, 
  .twocols-img .title,
  .video-single h2,
  .our-dna .inline-title .title,
  .related-post h2,
  .qoutegrid .wrap-title,
  #main-content .grid2cols-overlapcta .content h4,
  #main-content .banner-cta .title,
  .header.v3-style h2.title,
  .product-download-grid h2{
    font-size:32px;
    line-height:40px;
  }
  
  #main-content h3,
  #main-content h4,
  .advantage .card-advantage .card-title a{
    font-size:24px;
    line-height:30px;
  }
}


@media (min-width: 1920px) {
    .header.header-bg-video.second-style h1.title {
        font-size: 48px;
    }
  
  h1{
    font-size:48px;
    line-height:56px;
  }
  
  h2,
  .usp-section h2.section-title,
  .grid-3-cols.sub-solutions-v3 h2.wrap-title,
  .singular-case .content h2.title,
  .statistics h2.section-title,
  .featured-blog h2.section-title,
  .highlighted-blog h2.title,
  .advantage h2,
  .download-detail h2,
  .people-logo .title,
  .grid-3-cols .wrap-title,
  .form-contact .wrap-title,
  .case-slider .floating-banner .small-title, 
  .floating-banner .small-title,
  .licensing-options h2,
  .cols-2-with-image .wrap-title,
  .case-slider .small-title,
  .wrap-title,
  .col-with-video .title,
  .two-col-with-image .wrap-title, 
  .twocols-img .title,
  .video-single h2,
  .our-dna .inline-title .title,
  .related-post h2,
  .qoutegrid .wrap-title,
  #main-content .grid2cols-overlapcta .content h4,
  #main-content .banner-cta .title,
  .header.v3-style h2.title,
  .product-download-grid h2{
    font-size:40px;
    line-height:48px;
  }
  
  #main-content h3,
  #main-content h4,
  .advantage .card-advantage .card-title a{
    font-size:32px;
    line-height:40px;
  }
}
.container {
    padding-left: 16px;
    padding-right: 16px;
}

.dnd-section:last-of-type section, #hs_cos_wrapper_cta_form .form-contact, #hs_cos_wrapper_cta_with_form .form-contact, .training-list-accordion {
        padding-bottom: 0px;
    }

@media (min-width: 1920px) {
    .container {
        max-width: 1440px;
    }
}

@media screen and (max-width: 414px) {
    .body-container-wrapper {
        padding-top: 0;
    }
}

@media screen and (max-width: 991px) {
    .body-container-wrapper {
        padding-top: 0;
    }
}

@media screen and (min-width: 993px) {
    .dnd-section:last-of-type section, #hs_cos_wrapper_cta_form .form-contact, #hs_cos_wrapper_cta_with_form .form-contact, .training-list-accordion {
        padding-bottom: 0px;
    }
  
    .body-container-wrapper {
        padding-top: 0;
    }
  
    .container {
              max-width: none;
        width: 100%;
        padding-left: clamp(60px, calc((100% - 1400px) / 2), 240px);
        padding-right: clamp(60px, calc((100% - 1400px) / 2), 240px);
  }
}

@media (max-width: 1199px) {
    .container {
        padding: 0px 16px;
    }
}

@media screen and (min-width: 1500px) {
    .body-container-wrapper {
        padding-top: 0;
    }
}

@media screen and (min-width: 1600px) {
    .body-container-wrapper {
        padding-top: 0;
    }
}