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

    .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: calc(14px + (18 - 14) * ((100vw - 992px) / (1700 - 992)));
    }

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

@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: 25%;
    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:1700px) {
    .navbar3 #navbar .navbar-menu {
        min-height: 80px;
    }

    .navbar3 #navbar .dropdown-menu .card {
        height: 284px;
    }
    
    .navbar3 .navbar-logo img, .navbar3 .navbar-logo svg{
        height:24px;
        width:auto;
    }
    
    .navbar3 .navbar-link{
        font-size:18px;
    }
  
    .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%;
  }
}

@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;
  }
  
  .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 .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;
    }
}
.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://www.emixa.com/hubfs/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(//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;
  }
}
@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 .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: fill;
}

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

@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:cover;
    }

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

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

.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:contain;
    }

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

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

.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: 16px;
    }

    .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 50%, black 85%) no-repeat;
    }
}

@media(min-width:1280px){
  .featured-blog .swiper-slide-next{
        -webkit-mask: linear-gradient(270deg,transparent 50%, black 120%) no-repeat;
    }
}

@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 85%, 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;
  }
  
  .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{
    width:100%;
}

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: cover;
}

.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: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: cover;
        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;
  }
}
.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: 24px;
    padding-right: 24px;
}

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

@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: scroll;
    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: center;
  }
  
    .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 .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;
    }

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

.search-filter-v3 .content-wrap {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.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 form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.search-filter-v3 .cta-button {
    border-radius: 16px;
    min-width: 145px;
}

@media(min-width:992px) {
    .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: 40px;
    }

    .search-filter-v3 form {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .search-filter-v3 input[name="search"] {
        width: 30%;
        max-width: 260px;
    }

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

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

@media(min-width:1400px) {
    .search-filter-v3 select {
        min-width: 140px;
    }
}

@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: 60px;
    }

    .search-filter-v3 .content-wrap {
        padding-top: 60px;
        padding-bottom: 30px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .search-filter-v3 input[name="search"] {
        width: 40%;
        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;
    }
}
.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;
    }
}
.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;
}

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

@media (max-width: 480px) {
    .contact-form-v3 fieldset.form-columns-1 .input, 
    .contact-form-v3 fieldset.form-columns-2 .input {
        margin-right: 0 !important;
    }
}
.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: 43px;
    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(//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);
    }
}
/* 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{
      --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

.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;
  } */
  
/*  Setup heading font size  */
  .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{
      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;
  }
  
  .grid-3-cols.featured-list{
    margin-top:80px;
  }
  
  .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){
  /*
  #main-content h1{
    font-size:40px !important;
  }
  #main-content h2{
    font-size:32px !important;
  }
  #main-content h3,
  #main-content h4{
    font-size:24px !important;
  } */
  
  
/*  Setup heading font size  */
  .header.header-bg-video.second-style h1.title {
    font-size:38px;
  }
  
  .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{
    font-size:32px;
  }
  
  #main-content h3,
  .advantage .card-advantage .card-title a,
  #main-content h4{
    font-size:24px;
  }
  
  #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) {
    .floating-banner, .floating-cta.active .container {
        max-width: 1640px;
    }
}