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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

/* Elements
Base 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,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  /* font-size: 0.875rem;
  padding: 0.7rem; */
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext {
  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;
} */


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

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



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


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


@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translate(-100%); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}

.row-fluid textarea, 
.row-fluid input[type="text"], 
.row-fluid input[type="number"], 
.row-fluid input[type="email"], 
.row-fluid input[type="tel"], 
.row-fluid select { font-family: Euclid Square; width: 100% !important; border: 1px solid #E2E0DD; outline: none; border-radius: 26px; background: #F9F8F6; font-size: 17px; line-height: 1.4; font-weight: 400; color: #141414; min-height: 56px !important; margin: 8px 0; padding: 14px 20px !important; -webkit-appearance: none; }
.row-fluid input[type="submit"] { border: 0; font-family: Euclid Square; padding: 17px 30px; text-align: center;   border-radius: 50px; background: linear-gradient(270deg, #F43E3E -196.15%, #F46338 206.41%); outline: none; font-size: 16px; line-height: 1; font-weight: 400; color: #fff; min-height: 51px; margin: 5px 0; -webkit-transition:all ease 0.4s; -moz-transition:all ease 0.4s; transition:all ease 0.4s; -webkit-appearance: none; }
.row-fluid input[type="submit"]:hover { background: linear-gradient(270deg, #d03535 -196.15%, #d03535 206.41%); color: #ffffff; }

.row-fluid .hs-error-msgs { list-style: none; margin: 0 0 10px; padding: 0; font-size: 14px; }
.row-fluid fieldset { max-width: 100% !important; }
.row-fluid .input { margin-right: 0 !important; }
.row-fluid .form-columns-2 .hs-form-field { width: 49% !important; float: left; margin-right: 2%; }
.row-fluid .form-columns-2  div.hs-form-field + div.hs-form-field { margin-right: 0; }
.row-fluid form label { font-family: Euclid Square; font-size: 14px; font-weight: 400; line-height: 1.2; }
.row-fluid textarea { height: 182px; resize: none; border-radius: 16px; }
.row-fluid form fieldset .hs-form-field { margin-bottom: 30px; }
.row-fluid form .hs-form-field > label { text-transform: uppercase; color: #868583; }
.row-fluid form .hs-form-booleancheckbox .hs-form-booleancheckbox-display span a { color: #F46338; text-decoration: underline; }
.row-fluid form .legal-consent-container .hs-form-booleancheckbox-display > span p { margin-left: 10px !important; }
.row-fluid form .hs-form-booleancheckbox .hs-form-booleancheckbox-display input[type="checkbox"] { width: 16px; height: 16px; border-radius: 5px; border: 1px solid #222222; }
.row-fluid form .hs_recaptcha.hs-recaptcha { margin-top: 50px; margin-bottom: 20px; }
.row-fluid textarea:focus, 
.row-fluid input[type="text"]:focus, 
.row-fluid input[type="number"]:focus, 
.row-fluid input[type="email"]:focus, 
.row-fluid input[type="tel"]:focus, 
.row-fluid select:focus { border-color: #222222; }
.row-fluid .hs-error-msgs  { margin-bottom: 0; }
.row-fluid .hs-error-msgs li { margin: 0; }
.row-fluid form .inputs-list > li.hs-form-booleancheckbox:first-child { margin-top: 0; }
.row-fluid form .inputs-list > li.hs-form-booleancheckbox:last-child { margin-bottom: 0; }
.text-center, .text-center a, .text-center h1, .text-center h2, .text-center h3, .text-center h4, .text-center h5, .text-center h6 { text-align: center;}
.font-18, .font-18 p{ font-size: 18px; line-height: 1.5; }
.font-16, .font-16 p{ font-size: 16px; line-height: 1.5; }
.topborder { margin-bottom: 60px; }
.hidesktop { display: none; }
.hidemobile { display: block; }

.ose-top.ose-top-fullwidth { max-width: 100%; margin-bottom: 5px; }
.sec-sub.ose-subtitle { display: inline-block; }
.ose-top.ose-top-fullwidth h2 { font-size: 70px; letter-spacing: -2.1px; }

/* Marquee Section */

.marquee-section { white-space: nowrap; width: 100%; display: flex; display: -webkit-box; display: -webkit-flex; align-items: center; -webkit-align-items: center; overflow: hidden; }
/* .marquee-inner { min-height: 112px; position: relative; }
.marquee-inner .marquee-row { animation: marquee1r 25s linear infinite; position: absolute; white-space: nowrap;  } */
/* .marquee-row:hover { animation-play-state: paused; } */
.marquee-row .marquee-cols:first-child {  margin-left:10px; }
.marquee-row .marquee-cols:last-child {  margin-right:10px; }
.marquee-cols { margin: 0 15px; display: inline-flex; align-items: center; justify-content: center; }
.marqueetext { text-transform: uppercase; font-family: sangbleu_kingdom_boldregular; font-size: 110px;  line-height: 112px; }
.marqueeicon { margin-right: 30px; display: inline-block; }
.marqueeicon img { animation: rotate 4s linear infinite; max-width: 85px !important; }
/* .marquee-inner { min-height: 112px; position: relative; } */
/* .marquee-row { animation: marquee2 30s linear infinite; display: block; transform: translateX(0); position: absolute; white-space: nowrap; will-change: transform; } */
/* .marquee-row:hover { animation-play-state: paused; } */



@keyframes marquee2 {
  0% { left: 0; }
  100% { left: -100%; }
}



/**/

.dp-top { border-radius: 32px; padding-top: 36%; -webkit-mask-image: url('https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/Hreo-mask-Service.png'); mask-image: url('https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/Hreo-mask-Service.png'); -webkit-mask-position: bottom left; mask-position: bottom left; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100%; mask-size: 100%; }
.dap-left { position: relative; z-index: 1; width: 60%; float: left; margin-top: -60px; }
.dap-right { width: 30%; margin-top: 30px; }
.dapl-text { margin-top: 60px; }
.dap-jumprow { display: flex; display: -webkit-box; display: -webkit-flex; flex-wrap: wrap; -webkit-flex-wrap: wrap; }
.dap-cols.btn > a { margin-top: 10px; }
.dap-cols.btn > a.noCursor { cursor: default; }
/**/

.twc-top { margin-bottom: 65px; }
.twc-left { width: 47%; float: left; }
.twc-right { width: 46.5%; float: left; }
.twc-left img { border-radius: 32px; height: 100% !important; object-fit: cover; }
.twc-left-image { height: 100%; width: 100%; border-radius: 32px; background-size: cover; background-repeat: no-repeat; background-position: center top; }
.twc-btns { margin-top: 65px; }
.twc-cols { margin-top: 25px; }
.smallpadding.twc-btns { margin-top: 25px; display: flex; justify-content: space-between;  align-items: center;}
@media (max-width: 767px) {
  .smallpadding.twc-btns{
    flex-direction: column; /* stack items vertically */
    align-items: flex-start; /* align items to the start */
    gap: 1rem; /* add space between items */
  }
}
.twc-cols .sec-sub { margin-bottom: 15px; background-position:left top 2px; line-height:15px; }
.twc-rightspce { padding-right: 40px; }
.twc-right .twc-text h3 { margin: 0 0 20px; letter-spacing: -1px; }



.twc-hidedesktop { display: none; }
/**/

.vlpn-top { margin-bottom: 65px; }
.vlpn-left { width: 41%; float: left; }
.vlpn-right { width: 52.308%; float: left; }
.vlpn-cols { margin-top: 25px; }
.vlpn-cols .sec-sub { margin: 0 0 15px; }
.vlpn-rightimg { border-radius: 32px; }
.vlpn-rightimg:first-child { display: flex; display: -webkit-flex; flex-wrap: wrap; -webkit-flex-wrap: wrap; align-self: flex-start; -webkit-align-self: flex-start; width: 58.825%; float: left;  }
.vlpn-rightimg:nth-child(2) { display: flex; display: -webkit-flex; flex-wrap: wrap; -webkit-flex-wrap: wrap; align-self: flex-end; -webkit-align-self: flex-end; width: 38.236%; float: left;  }
.vlpn-right.top-large-bottomsmall { padding-bottom: 134px; }
.vlpn-right.top-large-bottomsmall .vlpn-rightimg:nth-child(2) { margin-bottom: -134px; padding-top: 0 !important; }
.vlpn-right.top-large-bottomsmall .vlpn-rightimg:nth-child(2) img { min-height: 300px; max-height: 300px; object-fit: cover; width: 100%; }
.vlpn-right.top-large-bottomsmall .vlpn-rightimg:first-child img { min-height: 460px; max-height: 460px; object-fit: cover; width: 100%; }
.vlpn-right.topsmall-bottom-large { width: 49.231%; flex-wrap: wrap; row-gap: 21px; -webkit-row-gap: 21px; }
.vlpn-right.topsmall-bottom-large .vlpn-rightimg { border-radius: 18px; }
.vlpn-right.topsmall-bottom-large .vlpn-rightimg:first-child { width: 69%; }
.vlpn-right.topsmall-bottom-large .vlpn-rightimg:nth-child(2) { margin-left: auto; width: 85%;  }
.vlpn-right.topsmall-bottom-large .vlpn-rightimg:nth-child(2) img { width: 100%; max-height: 388px; min-height: 388px; object-fit: cover; }
.vlpn-lefttitle { margin-bottom: 35px; }
.fl.vlpn-hidedesktop { display: none; }
.vlpn-right img { border-radius: 32px; }
.spaceleft { padding-left: 20px; }
.vlpn-left .vlpn-btns.btn a { margin: 30px 10px 0 0; }
.vlpn-text p:last-child { margin: 0; }
/**/

.counter-top { margin-bottom: 65px; }
.counter-cols { border-radius: 32px; width: 31.3%; padding: 40px 30px 50px; margin-bottom: 40px;  }
.counter-colstitle { margin-left: auto; margin-right: auto; display: flex; display: -webkit-box; display: -webkit-flex; flex-wrap: wrap; -webkit-flex-wrap: wrap; justify-content: center; -webkit-justify-content: center; font-size: 120px; font-weight: 300; line-height: 110%; letter-spacing: -6px; }
.counter-colstext { margin-top: 15px; }
.counter-colstext p:last-child { margin-bottom: 0; }

/**/

.ocnt-top { margin-bottom: 65px; }
.ocnt-row { width: 49%; float: left; margin-bottom: 38px; }
.ocnt-image { display: block; position: relative; transition: all .4s ease; -webkit-transition: all .4s ease; border-radius: 32px; -webkit-mask-image: url('https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/client-maskimg.png'); mask-image: url('https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/client-maskimg.png'); mask-position: bottom left; -webkit-mask-position: bottom left; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100%; mask-size: 100%; padding: 62.8% 0 0; position: relative; }
.ocnt-bottom h6 { color: #4d5153; font-family: Assistant; font-size: 15px; letter-spacing: 1.5px; line-height: 17.5px; margin: -17px 0 25px; text-transform: uppercase; }
.ocnt-bottom h4 a { color: currentColor; }
.ocnt-bottom { width: 76%; }
.ocnt-tag.tag-style a:before { background: #fff; }
.ocnt-headertitle h2 {  font-size: 70px;  line-height: 1.1; letter-spacing: -2.1px; }
.ocnt-row .ocnt-image a { height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.ocnt-row:hover .ocnt-image { transform: scale(0.95); -webkit-transform: scale(0.95); }
.ocnt-row:hover .ocnt-bottom h4 a { background: linear-gradient(270deg, #F43E3E -196.15%, #F46338 206.41%); -webkit-background: linear-gradient(270deg, #F43E3E -196.15%, #F46338 206.41%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/**/

.abus-bottom { margin-top: 80px; padding-top: 35.385%; border-radius: 32px; }

/**/

.zigzag-left { width: 45%; float: left; }
.zigzag-left img{ border-radius: 32px; height: 100% !important; object-fit: cover; width: 100%; }
.zigzag-right { width: 50%; display: flex; flex-flow: column; display: -webkit-flex; -webkit-flex-flow: column; }
.zigzag-text { margin-top: 50px; }
.body-container--about .zigzag-text , .body-container--about .vlpn-text , .body-container--about .careerstext { line-height: 1.6; }
.zigzag-btns { margin-top: 60px; }
.zigzag-reverse .zigzag-left { order: 1; text-align: right; }
.zigzag-reverse .zigzag-right { order: 0; }
.zigzag-hidedesktop { display: none; }
.zigzag-headertitle h2 { letter-spacing: -0.9px; }

/**/

.careersLeft { width: 25%; float: left; }
.careersRight { width: 67%; float: left; }
.careerstext { margin-top: 50px; }
.careers-btns { margin-top: 35px; }

/**/

.cus-header h1 > span { -webkit-text-fill-color: transparent; background: -webkit-linear-gradient(269.08deg,#f43e3e 54.92%,#f46338 102.69%); -webkit-background-clip: text; }
.cus-header { margin-bottom: 150px; }
.cus-Left { /* width: 53.847%; */ width: 63.637%; }
.cus-right { width: 23.1%; }
.cus-cols:not(:last-child) { margin-bottom: 60px; }
.cus-cols h4 { margin-bottom: 20px; }
.cus-colstext p:not(:last-child) { margin-bottom: 10px; }
.cus-colstext p:last-child { margin-bottom: 0; }
.cus-colstext a { color: currentcolor; }
.cus-colstext { font-size: 17px; line-height: 1.4; font-weight: 400; }
.cus-smicon { list-style: none; padding: 0; margin: 0; }
.cus-smicon li{ display: inline-block; margin-right: 20px; }
.cus-smicon li a svg { height: 25px; fill: #F43E3E; }

/**/

.cspost-tags a span { display: inline-block; }
.cspost-title h1 { font-size: 70px; letter-spacing: -2.1px; line-height: 1.1; } /* font-weight: 700;  */
.cspost-featureimg { border-radius: 32px; padding: 17.7%; margin-top: 90px; }
.ocnt-tag.ocnt-rptag.tag-style a:hover:before { background-color: #e2e0dd; }
.ocnt-tag.ocnt-rptag.tag-style a:before { background-color: #F8F6F4; }
/*.twc-blogheadertitle h2 { font-size: 110px; line-height: 1.1; letter-spacing: -3.3px; font-weight: 700; }*/
.twc-cstext p:last-child { margin-bottom: 0; }

.featureslider-section{ overflow: hidden; }
.fsl-row { display: flex; display: -webkit-flex; flex-wrap: wrap; -webkit-flex-wrap: wrap; width: calc(100% + 50px); margin-left: -25px; margin-right: -25px; }
.fsl-cols { border-radius: 18px; padding: 40px; width: calc(33.33% - 50px);  margin-left: 25px; margin-right: 25px; float: left; }
.fsl-colstext p:last-child { margin-bottom: 0; }
.fsl-colstext { margin-top: 30px; }
.fsl-row .slick-track { display: flex; display: -webkit-flex; flex-wrap: wrap; -webkit-flex-wrap: wrap; }
.fsl-row.slick-initialized .fsl-cols { -webkit-box-sizing: content-box !important; box-sizing: content-box !important; }
.fsl-colsimg img { margin-left: auto; margin-right: auto; max-height: 350px; object-fit: contain; }
.fsl-row.slick-initialized .slick-list { overflow: visible; }
.fsl-row.slick-initialized:before { position:absolute; top: 0; right: 100%; height: 100%; width: 3000px; content: ''; z-index: 1; }
.fsl-row.slick-slider .slick-track { display: flex; display: -webkit-flex; }
.fsl-row.slick-slider .slick-track .fsl-cols.slick-slide { height: auto; }


/**/

.serviceLeft { width: 30%; float: left; }
.serviceRight { width: 65%; float: left; }
.servicelist { border-radius: 18px; padding: 40px; }
.servicelist h5 { font-size: 22px;  line-height: 1.2; letter-spacing: -0.55px; margin-bottom: 20px; }
.servicelist ul { list-style: none; margin: 0; padding: 0; }
.servicelist ul li.sec-sub.servicelistsub { font-size: 14px ;font-family: Euclid Square; margin-bottom: 17px; letter-spacing: 0; text-transform: initial;  }
.servicelist ul li.sec-sub.servicelistsub:last-child { padding-bottom: 0; margin-bottom: 0; }
.servicetext { margin-top: 40px; }

/**/

.showcase-row { float: left; margin: 100px 0 200px; width: 48.5%; }
.showcase-row:nth-child(3n + 1) { display: flex; flex-flow: row-reverse; justify-content: space-between; margin: 0 0 60px; width: 100%; }
.showcase-row:nth-child(3n){ margin-top: 290px; }
.showcase-row .showcase-image { position: relative; transition: all .4s ease; -webkit-transition: all .4s ease; border-radius: 32px; -webkit-mask-image: url(https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/case-study-mask-.png); mask-image: url(https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/case-study-mask-.png); mask-position: left bottom; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100%; padding: 63.5% 0 0; }
.showcase-row .showcase-image a { height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.showcase-row:nth-child(3n + 1) .showcase-bottom { max-width: 100%; width: 32%; }
.showcase-row:nth-child(3n + 1) .showcase-image { -webkit-mask-image: none; mask-image: none; padding: 43% 0 0; width: 64.231%; }
.showcase-bottom h4 a { color: currentcolor; }
.showcase-bottom h4 { line-height: 33px; letter-spacing: -0.75px;  }
.showcase-bottom { max-width: 470px; }
.showcase-bottom h6 { color: #4d5153; font-family: Assistant; font-size: 14px; letter-spacing: 1.5px; line-height: 17.5px; margin: -20px 0 25px; text-transform: uppercase; }
.showcase-row:hover .showcase-image { transform: scale(.96); -webkit-transform: scale(.96); }
.showcase-row:hover .showcase-bottom h4 a { background: linear-gradient(270.99deg, #F43E3E 20.29%, #F46338 81.16%); background-clip: border-box; -webkit-text-fill-color: transparent; background-clip: border-box; -webkit-background-clip: text; } 
.showcase-row:nth-child(3n + 1) .showcase-bottom h6 { margin-top: 0; }
.showcase-row:nth-child(3n + 1) .showcase-bottom h4 { letter-spacing: -1px; font-size: 40px; line-height: 44px; }
.showcase-tag.tag-style ul { margin-bottom: 0; }
/*.headerSection.headerdarkbg { background-color: #222222; } */

/**/

.showcaseslider-Sec { overflow: hidden; }
.showcaseslider-inner .slick-list { overflow: visible; }
.showcaseslider-row { box-sizing: content-box !important; -webkit-box-sizing: content-box !important;width: calc(33.33% - 50px); margin-left: 25px; margin-right: 25px; }
.showcaseslider-inner .slick-track { display: flex; display: -webkit-flex; flex-wrap: wrap; -webkit-flex-wrap: wrap;  }
.showcaseslider-bottom h6 { margin-top: -20px; margin-bottom: 25px; font-family: Assistant; font-size: 14px; font-weight: 400; line-height: 1.25; letter-spacing: 0.84px; text-transform: uppercase; background: linear-gradient(271deg, rgba(244, 62, 62,100%) 20.29%, rgba(244, 99, 56,100%) 81.16%); background: -webkit-linear-gradient(271deg, rgba(244, 62, 62,100%) 20.29%, rgba(244, 99, 56,100%) 81.16%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.showcaseslider-bottom h4 { color: #fff; }
.showcaseslider-bottom h4 a { line-height: 33px; letter-spacing: -0.75px; color: currentcolor; }
.showcaseslider-bottom h4 a:hover {  color: #ff5119;  }
.showcaseslider-tag.tag-style a:before { background: rgba(248, 246, 244, 0.05); }
.showcaseslider-tag.tag-style a { color: #BAB8B6; }
.showcaseslider-tag.tag-style a:hover:before { background: #E2E0DD; }
.showcaseslider-tag.tag-style a:hover { color: #4D5153; }
.showcaseslider-tag.tag-style li:last-child a { margin-right: 0; }


.showcaseslider-image { border-radius: 32px; -webkit-mask-image: url(https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/showcase-2-maskimg.png); mask-image: url(https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/showcase-2-maskimg.png); mask-position: left bottom; -webkit-mask-position: left bottom; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100%; padding: 380px 0 0; position: relative; transition: all .4s ease; -webkit-transition: all .4s ease; }
.showcaseslider-bottom h4, .showcaseslider-bottom h4 a {font-size: 24px;}



.showcaseslider-image a { height: 100%; left: 0; position: absolute; top: 0; width: 100%; cursor: grab; }

.showcaseslider-tag.tag-style { margin-top: 20px; }


/**/

.vlpn-left.wwcome-left { width: 53%; }
.vlpn-right.wwcome-right { width: 41%; }
.vlpn-right.wwcome-right .vlpn-rightimg:first-child { width: 54.41%; }
.vlpn-right.wwcome-right .vlpn-rightimg:nth-child(2) { width: 41.278%; padding-top: 56%; }

.twc-left-two-imgs.option_top_bottom { flex-wrap: wrap; row-gap: 21px; display: flex; }
.twc-left-two-imgs.option_top_bottom .twc-left-two-im-it { width: 69%; }
.twc-left-two-imgs.option_top_bottom .twc-left-two-im-it:nth-child(2) { margin-left: auto; width: 85%; }
.twc-left-two-imgs.option_top_bottom .twc-left-two-im-it:nth-child(2) img { max-height: 388px; min-height: 388px; object-fit: cover; width: 100%; }
.twc-left-two-imgs.option_left_right { padding-bottom: 134px; display: flex; flex-wrap: wrap; display: -webkit-flex; -webkit-flex-wrap: wrap; justify-content: space-between; -webkit-justify-content: space-between; }
.twc-left-two-imgs.option_left_right .twc-left-two-im-it:first-child { width: 58.825%; }
.twc-left-two-imgs.option_left_right .twc-left-two-im-it:first-child img { max-height: 400px; min-height: 400px; object-fit: cover; width: 100%; }
.twc-left-two-imgs.option_left_right .twc-left-two-im-it:last-child { margin-bottom: -134px; width: 38.236%; display: flex; display: -webkit-flex; align-self: flex-end; -webkit-align-self: flex-end; }
.twc-left-two-imgs.option_left_right .twc-left-two-im-it:last-child img { max-height: 300px; min-height: 300px; object-fit: cover; width: 100%; }
.twc-left .videswisti { position: relative; padding: 0 0 56.25%; border-radius: 32px; overflow: hidden; }
.twc-left .videswisti iframe { position: absolute; width: 100%; height: 100%; }


/* add in themeoverride */
.removeformsec .footer-top { display: none; }

/*  */

.vlpn-row.fl { align-items: flex-start; -webkit-align-items: flex-start; }
.vlpn-row.fl.nofl-top { align-items: normal; -webkit-align-items: normal; }
.vlpn-single-images { background-position: top; background-repeat: no-repeat; background-size: cover; border-radius: 32px; height: 100%; width: 100%; }
.twocolzzSec .vlpn-single-images { min-height: 523px; }
.twocolzzSec .vlpn-mock-images { min-height: 523px; max-height: 523px; }
.twocolzzSec .vlpn-row.fl.nofl-top { align-items: center; -webkit-align-items: center; }
.twocolzzSec .vlpn-row.fl.flexflow { flex-flow: row-reverse; -webkit-flex-flow: row-reverse; }
.twocolzzSec .vlpn-row.ac { align-items: center; -webkit-align-items: center; }
.twocolzzSec .vlpn-left { width: 35%; }
.twocolzzSec .vlpn-right { width: 65%; padding-left: 115px; }
.twocolzzSec .vlpn-row.fl.flexflow .vlpn-right { padding: 0 115px 0 0; }


.twocolabSec .sec-sub { margin: 0 0 35px; }
.twocolabSec .twc-top { margin: 0 0 45px; }
.twocolabSec .twc-left { width: 40%; }
.twocolabSec .twc-right { width: 60%; padding-left: 68px; }
.twocolabSec .twc-right .twc-btns { margin-top: 45px; }
/*2025 CSS Start*/
.heroBtn {
  display: inline-flex;
}
.heroBtn a {
  font-weight:300;
  padding: 12px 16px 12px 35px !important;                   
  letter-spacing: -0.01em;                          
  text-align: center;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: fit-content;
  line-height: 19px;
  display: flex;
}
.heroBtn a:hover span.btnText {
  left: -5px;
}
.heroBtn a span.btnText {
  position: relative;
  left: 0;
  transition: left 300ms;
}
.heroBtn a span.btnShap {                              
  width:38px;
  height: 38px;
  display: flex;
  border: transparent;
  /*   border: 1px solid #fff; */
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all ease-in-out 300ms;
}
.heroBtn a:hover span.btnShap {
  transform: rotate(-45deg);
  border:1px solid #062214;
}
/*2025 CSS end*/
@supports (-webkit-touch-callout: none) {
  .sec-sub { background-size:left top 5px; }
}
/* Responsive */
@media (max-width:1650px){
  /*     .showcaseslider-image { padding: 290px 0 0; } */
  .showcaseslider-bottom h4, .showcaseslider-bottom h4 a {font-size: 22px;}
}
@media (max-width:1540px) and (min-width:1321px)  {  
  .cspost-title h1 { font-size: 65px; line-height: 72px; }
  .showcase-row:nth-child(3n+1) .showcase-image { width: 60%; }	
  .showcase-row:nth-child(3n+1) .showcase-bottom { width: 35%; }	
  .showcase-bottom { max-width: 380px; }	
  .twc-left-two-imgs.option_left_right .twc-left-two-im-it:first-child img { min-height: 360px; max-height: 360px; }	
  .twc-left-two-imgs.option_left_right .twc-left-two-im-it:last-child img { max-height: 260px; min-height: 260px; }	
  .twc-left-two-imgs.option_top_bottom .twc-left-two-im-it:nth-child(2) img { max-height: 300px; min-height: 300px; }	
  .twocolzzSec .vlpn-row.fl.flexflow .vlpn-right { padding: 0 80px 0 0; }	
  .twocolzzSec .vlpn-right { padding-left: 80px; }
  .showcaseslider-bottom h4, .showcaseslider-bottom h4 a {font-size: 20px;}
}

@media (max-width:1320px){
  .topborder { margin-bottom: 40px; }
  /*  .marquee-inner { min-height: 98px; } */
  .marqueetext { font-size: 90px; line-height: 98px; }
  .marqueeicon img { max-width: 80px !important; }
  .dap-left h1 br { display: none; }
  .dap-left { margin-top: -50px; }
  .dap-right { width: 37%; }
  .dapl-text { margin-top: 50px; }

  .twc-right { width: 50%; }
  .twc-btns { margin-top: 30px; }
  .twc-top { margin-bottom: 50px; }

  .vlpn-left { width: 45%; }
  .vlpn-top { margin-bottom: 50px; }

  .counter-colstitle { font-size: 90px; }
  .counter-cols { padding: 30px 20px 40px; }
  .counter-colstext { margin-top: 10px; }

  .ocnt-bottom { width: 85%; }
  .ocnt-top { margin-bottom: 50px; }
  .ocnt-headertitle h2 { font-size: 54px; }
  .ose-top.ose-top-fullwidth h2 { font-size: 54px; }

  .zigzag-btns { margin-top: 30px; }
  .zigzag-text { margin-top: 40px; }

  .abus-bottom { margin-top: 60px; }

  .cus-right { width: 30%; }
  .cus-header { margin-bottom: 100px; }

  .fsl-row { width: calc(100% + 30px); margin-left: -15px; margin-right: -15px; }
  .fsl-cols { padding: 40px 30px; width: calc(33.33% - 30px); margin-left: 15px; margin-right: 15px; }

  .cspost-title h1 { font-size: 54px }
  .cspost-featureimg { margin-top: 60px; }

  .showcase-row:nth-child(3n + 1) .showcase-bottom { width: 39%; }
  .showcase-row:nth-child(3n+1) .showcase-image { width:59%; }
  .showcaseslider-row { margin-left: 25px; margin-right: 25px; width: calc(50% - 50px); }
  /* .twc-blogheadertitle h2 { font-size: 80px; } */

  .careersRight { width: 75%; }

  .vlpn-left.wwcome-left { width: 50%; }
  .vlpn-right.wwcome-right { width: 45%; }
  .twc-left-two-imgs.option_top_bottom .twc-left-two-im-it:nth-child(2) img { max-height: 300px; min-height: 300px; }		
  .twc-headertitle h2 br { display: none; }
  .twocolzzSec .vlpn-row.fl.flexflow .vlpn-right { padding: 0 80px 0 0; }	
  .twocolzzSec .vlpn-right { padding-left: 80px; }

}

@media (max-width:991px){

  .topborder { margin-bottom: 30px; }

  .row-fluid form .hs_recaptcha.hs-recaptcha { margin-top: 32x; margin-bottom: 15px; }

  .hidesktop { display: block; }
  .hidemobile { display: none; }
  /* 	.marquee-inner { min-height: 75px; } */
  .marqueetext { font-size: 60px; line-height: 75px; }
  .marqueeicon img { max-width: 50px !important; }
  .marqueeicon { margin-right: 20px; }
  .marquee-cols { margin: 0 10px; }

  .dp-top { padding-top: 40%; -webkit-mask-image: url('https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/Hero-mask-Service.png'); mask-image: url('https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/Hero-mask-Service.png'); }
  .dap-left { width: 100%; margin-top: 40px; }
  .dap-right { width: 100%; margin-top: 28px; }
  .dapl-text { margin-top: 40px; }

  .twc-left { order: 1; width: 100%; margin-top: 50px; }
  .twc-right { order: 0; width: 100%; }
  .twc-row { flex-direction: column; }
  .twc-top { margin-bottom: 35px; }
  .twc-btns { margin-top: 25px; }
  .twc-rightspce { padding-right: 0; }
  .twc-hidedesktop { display: block; }
  .twc-hidemobile { display: none; }
  .twc-csleft { margin-top: 20px; }
  .twocolzzSec .vlpn-row.fl.flexflow { flex-flow: column; -webkit-flex-flow: column; }
  .vlpn-left { width: 100%; }
  .vlpn-right { width: 100%; margin-top: 30px; }
  .vlpn-row { flex-direction: column; }
  .vlpn-top { margin-bottom: 35px; }
  .vlpn-right.topsmall-bottom-large { width: 100%; }
  .vlpn-right.top-large-bottomsmall { padding-bottom: 60px; }
  .vlpn-right.top-large-bottomsmall .vlpn-rightimg:nth-child(2) { margin-bottom: -60px; }
  .fl.vlpn-hidemobile { display: none; }
  .fl.vlpn-hidedesktop { display: block; }
  .vlpn-right.vlpn-hidedesktop { margin-top: 40px; }

  .counter-cols { width: 49%; margin-bottom: 20px; }
  .counter-colstitle { font-size: 74px; letter-spacing: -3px; line-height: 100%; }

  .ocnt-top { margin-bottom: 30px; }
  .ocnt-row { width: 100%; }
  .ocnt-row:last-child { margin-bottom: 0; }
  .ocnt-bottom h6 { margin: -10px 0 20px; }
  .ocnt-bottom { width: 100%; }
  .ocnt-headertitle h2 { font-size: 40px; letter-spacing: -1.1px; }

  .ose-top.ose-top-fullwidth h2 { font-size: 40px; letter-spacing: -1.1px; }
  .ose-top.ose-top-fullwidth { margin-bottom: 0; }

  .zigzag-row { flex-direction: column; }
  .zigzag-left { width: 100%; order: 1; margin-top: 40px; }
  .zigzag-right { width: 100%; order: 0; }
  .zigzag-reverse .zigzag-left { text-align: left; }
  .zigzag-btns { margin-top: 15px; }
  .zigzag-text { margin-top: 30px; }
  .zigzag-hidemobile { display: none; }
  .zigzag-hidedesktop { display: block; }

  .careersLeft { width: 100%; }
  .careers-row { flex-direction: column; }
  .careersRight { width: 100%; }
  .careerstext { margin-top: 30px; }
  .careers-btns { margin-top: 25px; }

  .abus-bottom { margin-top: 40px; }

  .cus-header { margin-bottom: 60px; }
  .cus-Left { width: 100%; }
  .cus-row { flex-direction: column; }
  .cus-right { width: 100%; margin-top: 72px; }
  .cus-cols:not(:last-child) { margin-bottom: 50px; }

  .serviceLeft { width: 100%; margin-top: 50px; }
  .serviceRight { width: 100%; }
  .service-row { flex-direction: column-reverse; }
  .servicetext { margin-top: 40px; }

  .cspost-title h1 { font-size: 40px; letter-spacing: -1.1px; }
  .cspost-featureimg {  margin-top: 40px; }

  .showcase-row:nth-child(3n + 1) { flex-flow: column; }
  .showcase-row:nth-child(3n + 1) .showcase-image { -webkit-mask-image: url(https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/case-study-mask-.png); mask-image: url(https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/case-study-mask-.png); padding: 63.5% 0 0; width: 100%; }
  .showcase-row:nth-child(3n + 1) .showcase-bottom, .showcase-row .showcase-bottom { max-width: 470px; width: 100%; max-width:100%; }
  .showcase-row:nth-child(3n + 1) .showcase-bottom h4 { letter-spacing: -.75px; font-size: 30px; line-height: 33px; }
  .showcase-row:nth-child(3n + 1) .showcase-bottom h6 { margin-top: -20px; }
  .showcase-row { width: 100%; margin: 0 0 60px; }
  .showcase-row:nth-child(3n) { margin-top: 0; }

  .showcaseslider-row { margin-left: 15px; margin-right: 15px; width: calc(50% - 30px); }
  .showcaseslider-image { border-radius: 18px; padding: 390px 0 0; }
  /*.twc-blogheadertitle h2 { font-size: 60px; letter-spacing: -2.2px; } */

  .vlpn-left.wwcome-left, .twocolabSec .twc-left,
  .vlpn-right.wwcome-right, .twocolzzSec .vlpn-left { width: 100%; }
  .vlpn-left.wwcome-left .vlpn-lefttitle { margin-bottom: 30px; }


  /*  */
  .bltc-content h4 { min-height:auto; height:auto !important; }
  .twc-left-two-imgs.option_top_bottom .twc-left-two-im-it:nth-child(2) img { max-height: 350px; min-height: 350px; }
  .twocolabSec .twc-left .twc-left-image { padding: 0 0 56.25%; }
  .twocolabSec .twc-right { padding-left: 0; width: 100%; }
  .twocolabSec .twc-left { margin: 30px 0 0; }
  .twocolzzSec .vlpn-row.fl.flexflow .vlpn-right, .twocolzzSec .vlpn-right { padding: 0; width: 100%; }



}

@media (max-width:767px){

  .font-18, .font-18 p{ font-size: 16px;}

  .row-fluid .form-columns-2 .hs-form-field { width: 100% !important; margin-right: 0; }
  .row-fluid form label { font-size: 12px; }
  .row-fluid textarea, 
  .row-fluid input[type="text"],
  .row-fluid input[type="number"],
  .row-fluid input[type="email"],
  .row-fluid input[type="tel"], 
  .row-fluid select { min-height: 50px !important; font-size: 14px; }
  .row-fluid form fieldset .hs-form-field { margin-bottom: 16px; }
  .row-fluid input[type=submit] { min-height: 54px; padding: 19px 25px; }
  /* 	.marquee-inner { min-height: 56px; } */
  .marqueetext { font-size: 40px; line-height: 56px; }
  .marqueeicon img { max-width: 32px !important; }
  .marqueeicon { margin-right: 10px; }


  .dp-top { border-radius: 18px; padding-top: 50.575%; }
  .dap-left h1.h2 { font-family: Euclid Square; font-size: 30px; line-height: 36px; letter-spacing: -0.65px; }
  .demandprobability-section .dp-bottom .dap-left h1.h2 { font-family: sangbleu_kingdom_boldregular; }
  .dap-cols.btn > a { margin-right: 5px; width: auto; padding: 16px; font-size: 14px; line-height: 20px; text-align: left; }

  .vlpn-rightimg { border-radius: 18px; }
  .vlpn-right.top-large-bottomsmall { padding-bottom: 30px; }
  .vlpn-right.top-large-bottomsmall .vlpn-rightimg:nth-child(2) { margin-bottom: -30px; }
  .vlpn-right img { border-radius: 24px; }
  .vlpn-right.top-large-bottomsmall.vlpn-hidedesktop { padding-bottom: 0; }
  /* 	.vlpn-right.topsmall-bottom-large .vlpn-rightimg:first-child { width: 100%; }
  .vlpn-right.topsmall-bottom-large .vlpn-rightimg:nth-child(2) { width: 100%; } */
  .vlpn-top { margin-bottom: 30px; }
  .vlpn-top h2.h1 { margin: 0; }
  .vlpn-lefttitle h2 { letter-spacing: -0.9px; }
  .twocolzzSec .vlpn-single-images { min-height: 220px; padding: 0; }
  .smallpadding.twc-btns { margin-top: 30px; }
  .twc-mobileradius.twc-left img { border-radius: 18px; }
  .twc-headertitle h2 { letter-spacing: -0.9px;  }
  .vlpn-lefttitle { margin-bottom: 30px; }
  .counter-cols { border-radius: 8px; margin-bottom: 10px; width: 100%; padding: 15px 20px 20px; }
  .counter-cols:last-child { margin-bottom: 0; }
  .counter-colstitle { font-size: 60px; letter-spacing: -1.8px; }
  .counter-colstext { font-size: 14px; }

  .ocnt-bottom h6 { font-size: 12px; font-weight: 400; line-height: 1.2; letter-spacing: 0.72px; }
  .ocnt-image { border-radius: 18px; -webkit-mask-image: url('https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/mask-responsive.png'); mask-image: url('https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/mask-responsive.png'); }
  .ose-top.ose-top-fullwidth h2,
  .ocnt-headertitle h2 { font-size: 30px; line-height: 33px; letter-spacing: -0.03em; }
  .ocnt-bottom h4 { line-height: 25px; letter-spacing: -0.025em; }
  .ocnt-row { margin-bottom: 18px; }

  .zigzag-left.zigzag-hidedesktop img { border-radius: 24px; }
  .zigzag-left { margin-top: 30px; }

  .abus-bottom { padding-top: 57.145%; margin-top: 20px; border-radius: 24px; }
  .abus-left h1 { font-size: 40px; line-height: 44px; letter-spacing: -1.2px; }	

  .twc-cols .sec-sub , .vlpn-cols .sec-sub { padding-left: 20px; font-size: 14px; font-weight: 400; line-height: 17.5px; letter-spacing: 0.84px; }

  .serviceRight h4 { font-size: 22px; line-height: 28px; letter-spacing: -0.55px; }

  .cspost-title h1 { font-size: 30px; letter-spacing: -0.9px; }
  .cspost-featureimg {  margin-top: 30px; }
  .cspost-featureimg { border-radius: 24px; padding: 28.7%; }
  /* 	.servicelist ul li.sec-sub.servicelistsub { background-position: top 8px left; } */
  /*.twc-blogheadertitle h2 { font-size: 40px; letter-spacing: -1.2px; } */
  .twc-left.twc-csleft img { border-radius: 18px; }

  .showcase-row:nth-child(3n + 1) .showcase-image , .showcase-row .showcase-image { -webkit-mask-image: url(https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/showcase1-mobile-mask.png); mask-image: url(https://520637.fs1.hubspotusercontent-na1.net/hubfs/520637/Assets%20-%202023/images/showcase1-mobile-mask.png); } 
  .showcase-row .showcase-image { border-radius: 18px; }
  .showcase-row:nth-child(3n + 1) .showcase-bottom h6 { margin-top: -10px; }
  .showcase-bottom h6 { font-size: 12px; letter-spacing: 0.72px; line-height: 15px; margin: -10px 0 25px; }
  .showcase-row:nth-child(3n + 1) .showcase-bottom h4 { letter-spacing: -0.55px; font-size: 22px; line-height: 25px; }
  .showcase-bottom h4 { letter-spacing: -0.55px; }
  .showcase-row , .showcase-row:nth-child(3n + 1) { margin-bottom: 20px; }
  .showcaseslider-tag.tag-style { margin-top: 22.5px; }

  .showcaseslider-bottom h6 { margin-bottom: 18.5px; font-size: 10.5px; line-height: 13.125px; letter-spacing: 0.63px; margin-top: -10px; }
  .showcaseslider-bottom h4 { line-height: 24.75px; letter-spacing: -0.562px; }
  .body-container--about .zigzag-text , .body-container--about .vlpn-text , .body-container--about .careerstext { line-height: 1.4; }
  .vlpn-right.wwcome-right.vlpn-hidedesktop { margin-top: 10px; }

  .careersRight h2 { letter-spacing: -0.9px; }

  .cus-header h1 { font-size: 40px; letter-spacing: -1.2px; line-height: 44px; }

  .cus-cols h4 { font-size: 30px; line-height: 33px; letter-spacing: -0.75px; }

  /* add in themeoverride */
  .tr-bottom h4 span.trb-cap { font-size: 12px; letter-spacing: .72px; line-height: 1.25; margin-top: 5px; }
  .testi-row { padding: 0 10px; }
  .tag-style  { margin: 15px 0 0; }
  .vlpn-rightmobileimg img { width: 100%; min-height: auto; }
  .marquee-cols { margin: 0 5px; }
  .marquee-row .marquee-cols:first-child {  margin-left:0; }
  .marquee-row .marquee-cols:last-child {  margin-right:0; }
  .vlpn-right.top-large-bottomsmall .vlpn-rightimg:first-child img {  min-height: 236px; }
  .vlpn-right.top-large-bottomsmall .vlpn-rightimg:nth-child(2) img { min-height: 154px; }
  .vlpn-right.topsmall-bottom-large .vlpn-rightimg:nth-child(2) img { min-height: auto; }
  .twc-left-two-imgs.option_left_right .twc-left-two-im-it:first-child img { max-height: 236px; min-height: 236px; }
  .twc-left-two-imgs.option_left_right .twc-left-two-im-it:last-child img { min-height: 160px; max-height: 160px; }
  .twc-left-two-imgs.option_top_bottom .twc-left-two-im-it:nth-child(2) img { max-height: 220px; min-height: 220px; }
  .vlpn-single-images, .twc-left-image { padding: 0 0 100%; }

  .vlpn-lefttitle h2 { font-size: 24px; line-height: 30px; margin: 0 0 20px; }



} 

@media (max-width: 640px){

  .fsl-row { width: calc(100% + 10px); margin-left: -10px; margin-right: 0; }
  .fsl-cols { padding: 40px 25px; width: calc(100% - 20px); margin-left: 10px; margin-right: 10px; }

}

@media (max-width: 600px){

  .showcaseslider-row { width: calc(100% - 30px); }	

}

@media (max-width: 380px){

  .ocnt-headertitle h2, .ose-top.ose-top-fullwidth h2 { font-size: 28px; line-height: 36px; }

}





/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */.pswp{  z-index:9999999999 !important; display:none;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;-ms-touch-action:none;touch-action:none;z-index:1500;-webkit-text-size-adjust:100%;-webkit-backface-visibility:hidden;outline:0}.pswp *{-webkit-box-sizing:border-box;box-sizing:border-box}.pswp img{max-width:none}.pswp--animate_opacity{opacity:.001;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--open{display:block}.pswp--zoom-allowed .pswp__img{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.pswp--zoomed-in .pswp__img{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.pswp--dragging .pswp__img{cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.pswp__bg{position:absolute;left:0;top:0;width:100%;height:100%;background:#000;opacity:0;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;will-change:opacity}.pswp__scroll-wrap{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden}.pswp__container,.pswp__zoom-wrap{-ms-touch-action:none;touch-action:none;position:absolute;left:0;right:0;top:0;bottom:0}.pswp__container,.pswp__img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.pswp__zoom-wrap{position:absolute;width:100%;-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top;-webkit-transition:-webkit-transform 333ms cubic-bezier(.4,0,.22,1);transition:transform 333ms cubic-bezier(.4,0,.22,1)}.pswp__bg{will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--animated-in .pswp__bg,.pswp--animated-in .pswp__zoom-wrap{-webkit-transition:none;transition:none}.pswp__container,.pswp__zoom-wrap{-webkit-backface-visibility:hidden}.pswp__item{position:absolute;left:0;right:0;top:0;bottom:0;overflow:hidden}.pswp__img{position:absolute;width:auto;height:auto;top:0;left:0}.pswp__img--placeholder{-webkit-backface-visibility:hidden}.pswp__img--placeholder--blank{background:#222}.pswp--ie .pswp__img{width:100%!important;height:auto!important;left:0;top:0}.pswp__error-msg{position:absolute;left:0;top:50%;width:100%;text-align:center;font-size:14px;line-height:16px;margin-top:-8px;color:#ccc}.pswp__error-msg a{color:#ccc;text-decoration:underline}/*# sourceMappingURL=photoswipe.min.css.map */