*, *: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;
}


/* 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;
  }
}
/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */
/*
p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
} */

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

/*h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
} */

/* Lists */
/*
ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}*/

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {  
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  /*  font-size: 0.875rem;*/
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

:root {
    --midnight: #000C36;
    --rose: #ff0062;
    --aqua-haze: #f0f5f7;
    --pickled-bluewood: #333d5e;
    --pastel-pink: #ffccdf;
    --midnight-glass: #000C3633
  }

.hrpn-hdrtext {
    margin-top: 35px;
}
.hero-product {
    position: relative;
}
.hero-product:before {
    content: '';
    background-repeat: no-repeat;
    height: 100%;
    position: absolute;
    top: 0;
    background-position: 100% 0;
    opacity: 30%;
    right: 0;
    width: 100%;
}
.heroparRight.hero-product-Right {
    padding-left: 0px;
    width: 55%;
}
.heroparLeft.hero-product-Left {
    width: 45%;
    padding-right: 30px;
}
.heroparsubtitle h2 {
    font-size: 44px;
    line-height: 1.22;
    letter-spacing: -0.88px;
}
.heroproductText {
    margin-bottom: 0;
}
.lff-bigs-true .heroparLeft.hero-product-Left {
    width: 55%;
}
.lff-bigs-true .heroparRight.hero-product-Right {
    width: 45%;
}
.strategyinner {
    max-width: 1087px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.strategytitle h2 {
    letter-spacing: -1.62px;
}
.strategyheader {
    margin-bottom: 60px;
}
.strategyrow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 60px;
}
.strategycols {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.strategyicon {
    width: 79px;
    margin-right: 34px;
    margin-top: 7px;
}
.strategyright {
    width: calc(100% - 113px);
}
.strategycoltitle h3 {
    margin-bottom: 20px;
}
.strategycoltxt a {
    vertical-align: baseline;
    display: inline;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.strategycoltxt * {
    vertical-align: middle;
}
.techstack-sec {
    position: relative;
    z-index: 2;
}
.techstack-row {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 100px;
}
.techstack-cols {
    width: 100%;
}
.techstack-colstitle h2 {
    margin-bottom: 30px;
    font-size: 44px;
    line-height: 1.22;
    letter-spacing: -0.88px;
}
.techstack-colstxt p:not(:last-child) {
    margin-bottom: 20px;
}
.techstack-inner {
    border-bottom: 1px solid;
}
.psp-sec {
    position: relative;
    z-index: 1;
}
.psp-shape:before {
    background: linear-gradient(-30.2deg, var(--aqua-haze) 30.93%, var(--aqua-haze) 131.62%);
    bottom: 0;
    content: '';
    height: 150vw;
    left: 0;
    margin-left: 0;
    position: absolute;
    transform: skewX(-50deg);
    transform-origin: left bottom;
    width: 150vw;
}
.psp-row {
    width: 100%;
}
.psp-header {
    max-width: 864px;
    margin-bottom: 60px;
}
.psp-title h2 {
    letter-spacing: -1.62px;
    margin-bottom: 30px;
}
.psp-cols {
    width: 100%;
}
.psp-colsleft {
    width: 66%;
    margin-right: 8%;
}
.psp-colsright {
    width: 26%;
}
.add-psp-border .psp-colsleft img {
    border-top: 5px solid;
}
.psp-coicon {
    margin-bottom: 30px;
}
.psp-cotxt {
    margin-bottom: 40px;
}
.psp-colsubtitle {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}
.psp-coltitle h2 {
    letter-spacing: -1.62px;
    margin-bottom: 36px;
}
.hero-partner-content-sec {
    position: relative;
}
.hero-productbImages {
    transition: transform, 1s ease-in-out;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 160px 0 0;
    min-height: 600px;
}
.hp-shapesec:after {
    z-index: -1;
    content: '';
    width: 4700px;
    height: 2860px;
    left: 50%;
    margin-left: -120px;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center;
}
.partnership-sec {
    position: relative;
    z-index: 11;
}
.rps-sec {
    position: relative;
    z-index: 2;
}
.journey-sec {
    position: relative;
    z-index: 2;
}
.journey-header {
    margin-bottom: 60px;
}
.journey-row {
    width: 100%;
}
.journey-left {
    position: relative;
    width: 40%;
    float: left;
}
.journey-right {
    position: relative;
    width: 55%;
    float: left;
    margin-left: 5%;
}
.journey-cols {
    transition: all ease-in-out 500ms;
    position: relative;
    padding-left: 80px;
    padding-bottom: 300px;
}
.journey-cols.active ~ .journey-cols {
    opacity: 0.2;
}
.journey-cols:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 7px;
    width: 2px;
    height: 100%;
    background-color: var(--pastel-pink);
}
.journey-cols:after {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--rose);
}
.active-border {
    transition: all ease-in-out 500ms;
    content: '';
    position: absolute;
    top: 30px;
    left: 7px;
    width: 2px;
    height: 0%;
    background-color: var(--rose);
}
.journey-cols:nth-last-child(1) .active-border,
.journey-cols:nth-last-child(1):before {
    display: none;
}
.journey-cltxt p:last-child {
    margin-bottom: 0;
}
.journey-year {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42;
    margin-bottom: 3px;
}
.journey-cltitle h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}
.journey-cols.active {
    opacity: 1;
}
.journey-cols.active
    .active-border:not(.journey-cols.active ~ .journey-cols .active-border) {
    height: 100%;
}
.journeytitle h2 {
    margin-bottom: 36px;
}
.journeyScroll {
    background-color: var(--rose);
    left: 6px;
    position: absolute;
    top: 30px;
    width: 3px;
    z-index: 11;
    transition: min-height 500ms;
}
.teamheader {
    margin-bottom: 60px;
}
.teamrow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 81px;
}
.teamcols {
    width: 18.1%;
    margin-right: 2.3%;
}
.teamcols:nth-child(5n) {
    margin-right: 0;
}
.teamcols:nth-child(2n) {
    margin-top: 62px;
}
.teamcolimg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    width: 100%;
    padding-top: 294px;
    border-top: 2px solid var(--midnight);
}
.teamcolcontent {
    width: 87.31%;
    float: right;
    background: #fff;
    padding: 20px;
    margin-top: -40px;
}
.teamcolsubtitle {
    margin-bottom: 4px;
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}
.teamcoltitle h5 {
    margin-bottom: 6px;
}
.teamcoltxt {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.81;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000000;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.popupoverlay {
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 50%;
}
.popupinner {
    width: 100%;
    position: relative;
    margin: 50px 30px;
    padding-top: 600px;
    max-width: 1200px;
}
.popupinner iframe {
    border: 0;
    outline: 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.popup.showpopup {
    display: flex;
}
body.opnpup {
    overflow: hidden;
}
.close {
    cursor: pointer;
    position: absolute;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: #fff;
}
.close:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 4px;
    height: 30px;
    border-radius: 4px;
    background: var(--rose);
}
.close:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: var(--rose);
}
.op-video {
    position: relative;
}
.op-video a:before {
    transition: inherit;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    background-image: url("https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Frame%20570.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.bpvideo-popup-video a:hover:before {
    transform: translate(-50%, -50%) scale(1.2);
}
.op-climg {
    transition: transform 1s ease-in-out;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 87%;
    width: 100%;
}
.op-video .op-climg {
    padding-top: 62.687%;
}
.contentsmall .lwr-content {
    padding-right: 0;
}
.bglinkslide {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.journey-innerright.journeyunstick {
    position: absolute !important;
    bottom: 0;
    top: auto !important;
}
.journey-leftimg {
    display: none;
}
.journey-sticky {
    position: absolute;
    transition: all 500ms ease-in-out;
    opacity: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding-top: 56.66%;
    margin: 30px 0 0;
}
.journey-innerright {
    width: 720px;
}
.journey-sticky.active {
    display: block;
    opacity: 1;
}
.journey-innerright.journeyunstick .journey-sticky {
    bottom: 0;
}
.journey-mob-slide-line {
    display: none;
}
.journey-cols.slick-slide .journey-mob-slide-line {
    transition: background-color 500ms;
    display: block;
    background-color: var(--pastel-pink);
    width: calc(100% + 8px);
    height: 2px;
    position: absolute;
    top: 30px;
    left: 0;
}
.journey-cols.slick-slide .journey-mob-slide-line:before {
    transition: background-color 500ms;
    content: '';
    background-color: var(--pastel-pink);
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
}
.journey-cols.slick-active .journey-mob-slide-line {
    background-color: var(--rose);
}
.journey-cols.slick-active .journey-mob-slide-line:before {
    background-color: var(--rose);
}
.body-container--about .git-sec:before {
    margin-left: -800px;
}
.body-container--about .git-sec {
    overflow: initial;
}
.hero-listingsec {
    position: relative;
    z-index: 1;
}
.hero-listingsec:after {
    content: '';
    height: 2860px;
    left: 50%;
    margin-left: -160px;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center;
    width: 4700px;
    z-index: -1;
}
.hero-listingsec:before {
    opacity: 30%;
    background-size: contain;
    background-position: 100% 0;
    background-repeat: no-repeat;
    content: '';
    height: 1768.93px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.hlinner {
    width: 100%;
}
.hlinner {
    border-bottom: 1px solid;
}
.hlleft {
    width: 35%;
    float: left;
}
.hlright {
    width: 57.41%;
    float: left;
    margin-left: 7.59%;
}
.hlsubtitle h6 {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hltitle h1 {
    letter-spacing: -1.62px;
    margin-bottom: 30px;
}
.hl-text {
    margin-bottom: 30px;
}
.rw-bloglst {
    position: relative;
    z-index: 2;
}
ul.rw-bltags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.rw-bltags li a {
    text-align: center;
    font-weight: 700;
    font-family: Helvetica;
    border: 2px solid #fff;
    padding: 10px 32px;
    background-color: #fff;
    color: var(--midnight);
    font-size: 16px;
    line-height: 20px;
}
.rw-bltags li a:hover,
.rw-bltags li a.is-checked {
    border-color: var(--rose);
    background-color: var(--rose);
    color: #fff;
}
.rw-bltags li.activetab a {
    border-color: var(--rose);
}
.bp-back {
    margin-bottom: 60px;
    padding: 0 48px;
}
.bp-backbtn {
    line-height: 20px;
}
.bp-backbtn a {
    font-family: Helvetica;
    position: relative;
    color: var(--midnight);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding-left: 26px;
}
.bp-backbtn a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--midnight);
    border-right: 2px solid var(--midnight);
    transform: translateY(-50%) rotate(-135deg);
    margin-left: 2px;
}
.bp-backbtn a:after {
    border-radius: 2px;
    border-top: 2px solid var(--midnight);
    content: '';
    height: 2px;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in;
    width: 0;
}
.bp-backbtn a:hover {
    padding-left: 32px;
}
.bp-backbtn a:hover:after {
    width: 18px;
}
.bpi-tags a {
    margin-right: 10px;
    font-family: Helvetica;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
.bpi-top {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bpi-time {
    position: relative;
    margin-left: 14px;
    font-family: Helvetica;
    font-size: 10px;
    line-height: 16px;
    color: var(--pickled-bluewood);
}
.bpi-time:before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--pickled-bluewood);
}
.bpi-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bpi-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.bpi-left {
    width: 55%;
    float: left;
}
.bpi-right {
    width: 22%;
    margin-left: 11%;
    float: left;
}
.bpi-author {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.bpi-left h1 {
    letter-spacing: -3.92px;
}
.bpi-aimg a {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 123.12%;
    border-top: 2px solid var(--midnight);
}
.bpi-aimg {
    width: 39%;
    float: left;
}
.bpi-acontent {
    width: 55%;
    float: left;
    margin-left: 5%;
}
.bpi-acontent a {
    font-family: Helvetica;
    font-size: 20px;
    color: var(--midnight);
    text-decoration: underline !important;
    font-weight: 700;
}
.bpi-acontent a:hover {
    color: var(--rose);
}
.bpi-fimg {
    margin-top: 140px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 46%;
    float: left;
}
.bpi-modalpup {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bpi-modalpup.is-visible {
    display: flex;
}
.bpi-modalpupoverlay {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--midnight)cc;
    opacity: 80%;
}
.bpi-modlauthor {
    overflow: auto;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
    max-width: 1088px;
    position: relative;
    z-index: 9;
    padding: 60px;
}
.bpi-mdlcontent {
    width: 60%;
    float: left;
}
.bpi-mdlimg {
    width: 36.5%;
    float: left;
    margin-left: 3.5%;
}
.bpi-mdlimg a {
    border-top: 3px solid var(--midnight);
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 124%;
}
.bpi-modalclose {
    width: 34px;
    height: 34px;
    position: absolute;
    z-index: 1;
    top: 16px;
    right: 16px;
}
.bpi-modalclose:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--rose);
}
.bpi-modalclose:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 20px;
    width: 2px;
    border-radius: 2px;
    background-color: var(--rose);
}
.bpi-insigtcontent {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.bpi-icontent {
    color: var(--pickled-bluewood);
}
.bpi-icontent p span {
    font-size: 24px;
    line-height: 1.58;
}
.bpi-icontent p {
    margin-bottom: 15px;
}
.bpi-icontent p:last-child {
    margin-bottom: 0;
}
.bpi-icontent p a {
    display: inline;
    vertical-align: baseline;
}
.bpi-icontent a {
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
    vertical-align: top;
    text-decoration: underline !important;
}
.bpi-icontent h2 {
    font-size: 44px;
    line-height: 1.22;
    letter-spacing: -0.88px;
    margin-top: 120px;
    margin-bottom: 35px;
}
.bpi-akey {
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 7px;
}
.bpi-icontent h2:first-child {
    margin-top: 0;
}
.bpi-shareblog {
    margin-top: 120px;
}
.bpi-shareinner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bpi-sharetitle {
    line-height: 1.85;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
    width: 100%;
}
.bpi-sharelist {
    width: 100%;
}
.bpi-sharelist ul {
    row-gap: 8px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bpi-sharelist ul li {
    margin-left: 4px;
    margin-right: 4px;
}
.bpi-sharelist ul li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--pickled-bluewood);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.bpi-sharelist ul li a svg {
    width: 16px;
}
.bpi-sharelist ul li a.clipboard {
    position: relative;
}
.bpi-sharelist ul li a.clipboard p.hovertxt {
    box-shadow: 0 0 10px 0 rgb(0 12 5 / 30%);
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    background-color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--rose);
    margin: 0;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 18px;
}
.bpi-sharelist ul li a.clipboard p.hovertxt.show {
    display: flex;
}
.bpi-postbody,
.bpi-shareblog {
    position: relative;
    z-index: 2;
}
.rbp-sec {
    position: relative;
    z-index: 1;
}
.rbp-row {
    margin-top: 50px;
    gap: 2.5%;
    row-gap: 48px;
}
.rbp-cols {
    width: 31.66333%;
    position: relative;
}
.rbp-fi {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 87%;
    width: 100%;
}
.rbp-content {
    margin-top: 30px;
    padding-right: 40px;
}
.rbp-tags,
.rbp-tags a {
    color: var(--rose);
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.rbp-tags a {
    margin-right: 5px;
}
.rbp-colstitle h3 {
    margin-bottom: 18px;
}
.rbp-colstitle h3 a {
    color: var(--midnight);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: -0.3px;
}
.rbp-clstext * {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
    font-size: 14px;
    line-height: 1.85;
    color: var(--pickled-bluewood);
    font-weight: 400;
}
.rbp-colstitle h3 a:hover {
    color: var(--rose);
}
.authorbp-sec {
    position: relative;
}
.authorbp-rowouter > h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.88px;
}
.authorbp-row {
    margin-top: 50px;
    gap: 2.5%;
    row-gap: 48px;
}
.authorbp-cols {
    width: 31.66333%;
    position: relative;
}
.authorbp-fi {
    transition: all 0.6s ease;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 87%;
    width: 100%;
}
.authorbp-content {
    margin-top: 30px;
    padding-right: 40px;
}
.authorbp-tags,
.authorbp-tags a {
    color: var(--rose);
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.authorbp-tags a {
    margin-right: 5px;
}
.authorbp-colstitle h3 {
    margin-bottom: 18px;
}
.authorbp-colstitle h3 a {
    color: var(--midnight);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: -0.3px;
}
.authorbp-clstext * {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
    font-size: 14px;
    line-height: 1.85;
    color: var(--pickled-bluewood);
}
.authorbp-colstitle h3 a:hover {
    color: var(--rose);
}
.authorbp-sec:before {
    bottom: 0;
    content: '';
    height: 110vw;
    left: 0%;
    margin-left: 0;
    position: absolute;
    transform: skewX(-45deg);
    transform-origin: left bottom;
    width: 110vw;
}
.bpi-mdlkey {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: var(--rose);
    margin-bottom: 10px;
}
.bpi-mdltitle {
    margin-bottom: 12px;
}
.bpi-mdltitle a {
    color: var(--midnight);
    font-size: 40px;
    letter-spacing: -0.8px;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.35;
}
.bpi-mdlposition {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--midnight);
    margin-bottom: 28px;
}
.bpi-mdlbio {
    max-width: 500px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--pickled-bluewood);
}
.openmdlhtmpup {
    overflow: hidden;
}
.bpv-title h1 {
    margin-top: 20px;
    letter-spacing: -3.92px;
}
.bpvInsightinner {
    max-width: 1088px;
}
.bpvideo-popup-video a {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 56.25%;
}
.bpvideo-popup-video.op-video a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bpvideo-popup-video.op-video a:before {
    display: none;
    height: 98px;
    width: 98px;
}
.bpvideo-popup-video.op-video a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 3px;
}
.bpvideo-popup-video {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.blogpost-Video .rbp-sec:before {
    background-color: var(--aqua-haze);
    bottom: 0;
    content: '';
    height: 130vh;
    left: 50%;
    margin-left: 0;
    position: absolute;
    transform: skewX(-45deg);
    transform-origin: left bottom;
    width: 130vw;
}
.rbpvdo-fi {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 31.345%;
    display: block;
}
.blogpost-Report {
    width: 100%;
    float: left;
    background: var(--midnight);
    color: #fff;
}
.bpr-backbtn.bp-backbtn a {
    color: #fff;
}
.bpr-backbtn.bp-backbtn a:before {
    border-color: #fff;
}
.bpr-backbtn.bp-backbtn a:after {
    border-radius: 2px;
    border-top: 2px solid #fff;
    content: '';
    height: 2px;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in;
    width: 0;
}
.bpr-backbtn.bp-backbtn a:hover {
    padding-left: 32px;
}
.bpr-backbtn.bp-backbtn a:hover:after {
    width: 18px;
}
.bpr-tags,
.bpr-tags a {
    color: var(--rose);
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.bpr-tags a {
    margin-right: 5px;
}
.bpr-tags a:hover {
    color: #fff;
}
.bpr-indightouter {
    position: relative;
    z-index: 1;
}
.bpr-indightouter .wrapper {
    position: static;
}
.bpReportLeft {
    width: 70%;
    float: left;
    margin-right: 20%;
}
.bpReportRight {
    z-index: -1;
    width: 56%;
    position: absolute;
    top: 0;
    right: 0;
    float: left;
}
.bpReportRight:before {
    transform: rotate(-180deg);
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 159px;
    background: linear-gradient(180deg, var(--midnight) 0%, rgba(0, 12, 54, 0) 100%);
}
.bpReportRight:after {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 159px;
    background: linear-gradient(180deg, var(--midnight) 0%, rgba(0, 12, 54, 0) 100%);
}
.bpr-title h1 {
    letter-spacing: -3.92px;
    color: #fff;
    margin-bottom: 50px;
}
.bpi-author.bpr-author {
    justify-content: flex-start;
}
.bpr-author .bpi-aimg {
    width: 112px;
}
.bpr-author .bpi-acontent a {
    color: #fff;
}
.bpr-author .bpi-aposition {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    margin-top: 6px;
}
.bpr-author .bpi-acontent {
    margin-left: 3.28%;
}
.bpr-author .bpi-acontent a:hover {
    color: var(--rose);
}
.bpr-reportpostbody *:not(a) {
    color: #fff;
}
.twocolbp-cols.bpr-twocls .twocolbp-left {
    width: 60%;
    float: left;
}
.twocolbp-cols.bpr-twocls .twocolbp-right {
    margin-left: 10%;
    width: 30%;
    float: left;
}
.twocolbp-ltitle h2 {
    color: #fff;
    letter-spacing: -0.88px;
    font-size: 44px;
    line-height: 1.22;
    margin-bottom: 34px;
}
.twocolbp-ltxt {
    color: #fff;
    opacity: 80%;
}
.twocolbp-ltxt ul {
    margin-top: 25px;
}
.twocolbp-ltxt ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}
.twocolbp-ltxt ul li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--rose);
}
.twocolbp-cols {
    margin-bottom: 140px;
}
.twocolbp-cols:last-child {
    margin-bottom: 0;
}
.bpr-twocls .bpreport-reversecls .twocolbp-right {
    order: 0;
    margin-left: 0;
    margin-right: 10%;
}
.bpr-twocls .bpreport-reversecls .twocolbp-left {
    order: 1;
}
.twocolbp-cols.bpr-singlecls {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.twocolbp-ltxt p {
    margin-bottom: 20px;
}
.twocolbp-ltxt p:last-child {
    margin-bottom: 0;
}
.ctabannerbp-sec {
    position: relative;
    z-index: 1;
}
.cb-bgsec {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 144px);
    height: 100%;
    z-index: -1;
}
.ctabannerbptitle h2 {
    color: #fff;
}
.ctabannerbp-inner {
    max-width: 975px;
}
.ctabannerbptitle h2 {
    letter-spacing: -1.62px;
    margin-bottom: 40px;
}
.ctabannerbpsubtitle h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.46;
    margin-bottom: 40px;
}
.ctabannerbp-text {
    margin-bottom: 40px;
}
.ctabannerbp-text * {
    color: #fff;
}
.ctabannerbp-btn.btn a {
    background-image: none;
    padding-right: 24px;
}
.ctabannerbp-btn.btn a:after {
    display: none;
}
.ctabannerbp-btn.btn a span {
    padding-right: 29px;
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Union.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 18px auto;
}
.ctabannerbp-btn.btn a:after {
    display: none;
}
.ctabannerbp-btn.btn a:hover {
    padding-right: 24px;
}
.bpi-sharelist.bpr-reportsharelist ul li a {
    background-color: #fff;
}
.bpi-sharelist.bpr-reportsharelist ul li a svg path {
    fill: var(--midnight);
}
.rbp-fi.rbreport-fi {
    border: 1px solid #fff33;
}
.rbp-colstitle.rbreport-colstitle h3 a {
    color: #fff;
}
.rbp-clstext.rbreport-clstext * {
    color: #fffcc;
}
.rbp-clsbtn a {
    margin-top: 25px;
    align-items: center;
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Right_arrow.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 8px auto;
    display: flex;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding-right: 17px;
    position: relative;
    transition: all 0.4s ease;
    color: var(--rose);
}
.rbp-clsbtn a:after {
    margin-top: -0.5px;
    border-radius: 2px;
    border-top: 2px solid var(--rose);
    content: '';
    height: 2px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.rbp-clsbtn a:hover:after {
    width: 18px;
}
.rbp-clsbtn {
    display: inline-block;
}
.rbp-clsbtn a:hover {
    color: var(--rose);
    padding-right: 32px;
}
.rbp-tags.rbreport-tags a:hover {
    color: #fff;
}
.rbp-colstitle.rbreport-colstitle h3 a:hover {
    color: var(--rose);
}
.rbp-rowouter.rbreport-rowouter > h2 {
    color: #fff;
}
.hero-eventfimg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 36%;
    width: 100%;
}
.bpeventinner {
    display: flex;
    flex-wrap: wrap;
}
.bpeventleft {
    width: 66%;
    float: left;
}
.bpeventright {
    padding-left: 32px;
    width: 34%;
    float: left;
}
.signup-eventsec {
    max-width: 416px;
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
    padding: 70px 60px 40px;
    direction: rtl;
    height: auto !important;
    max-height: 510px;
    overflow-y: auto;
    position: relative;
    width: 100%;
}
.bpeventright > .hs_cos_wrapper {
    height: 100%;
}
.bpevnt-icontent {
    max-width: 784px;
    margin-top: 140px;
}
.sues-title h4 {
    letter-spacing: -0.3px;
    font-size: 30px;
    line-height: 1.26;
    margin-bottom: 25px;
}
.sues-text {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 25px;
}
.sues-btn.btn a {
    display: block;
}
.sues-content {
    border-bottom: 1px solid var(--midnight-glass);
    padding-bottom: 40px;
}
.sues-shareicon {
    padding-top: 34px;
}
.sues-sharetitle {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 10px;
}
.sues-shareicon ul {
    direction: ltr;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
    width: 100%;
}
.sues-shareicon ul li {
    line-height: 0;
    margin-left: 15px;
    margin-right: 15px;
}
.sues-shareicon ul li a svg {
    width: 30px;
}
ul li a.clipboard {
    position: relative;
}
ul li a.clipboard p.hovertxt {
    align-items: center;
    background-color: #fff;
    color: var(--rose);
    display: none;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    left: 0;
    line-height: 18px;
    margin: 0;
    padding: 5px 10px;
    position: absolute;
    text-align: center;
    top: 100%;
    width: max-content;
    box-shadow: 0 0 10px 0 rgb(0 12 5 / 30%);
}
ul li a.clipboard p.hovertxt.show {
    display: flex;
}
.signup-eventsec.signup-stickysec.bpunsticky {
    position: static !important;
}
.bpevnt-header {
    max-width: 752px;
}
.bpevnt-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.bpevnt-tags a {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-right: 10px;
    text-transform: uppercase;
}
.bpevnt-title h1 {
    letter-spacing: -3.92px;
    margin-bottom: 44px;
}
.bpevnt-date {
    font-family: Helvetica;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.46;
    margin-bottom: 40px;
}
.bpevnt-timelocation ul {
    display: flex;
    flex-wrap: wrap;
}
.bpevnt-timelocation ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    width: 100%;
    margin-bottom: 16px;
}
.bpevnt-timelocation ul li:last-child {
    margin-bottom: 0;
}
.bpevnt-timelocation ul li img {
    margin-right: 12px;
}
.bpevnt-icontent img {
    margin-top: 120px;
}
.bpevnt-icontent:first-child {
    margin-top: 0;
}
.bpi-icontent ul {
    margin-top: 25px;
}
.bpi-icontent ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}
.bpi-icontent ul li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--rose);
}
.testimonial-event {
    margin-top: 120px;
}
.tms-eventcols {
    max-width: 786px;
}
.tms-eventcls-text {
    margin-bottom: 40px;
    font-family: Helvetica;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.46;
    color: var(--midnight);
}
.tms-eventcls-text span {
    float: left;
    margin-right: 15px;
    vertical-align: top;
}
.tms-event-name {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}
.tms-event-description {
    font-size: 14px;
    line-height: 1.85;
}
.ks-eventrow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 60px;
    column-gap: 32px;
}
.ks-event-author {
    width: calc(50% - 16px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.ks-event-aimg {
    width: 112px;
    margin-right: 30px;
}
.ks-event-aimg a:not(.ks-event-innerauthor) {
    padding-top: 123.12%;
    width: 100%;
    border-top: 2px solid var(--midnight);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
.ks-event-akey {
    color: var(--rose);
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.ks-event-acontent a {
    color: var(--midnight);
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    text-decoration: underline !important;
}
.bpi-aposition,
.ks-event-aposition {
    margin-top: 5px;
    font-size: 12px;
    color: var(--midnight);
    line-height: 1.81;
}
.ks-eventtitle h2 {
    font-size: 44px;
    letter-spacing: -0.88px;
    line-height: 1.22;
    margin-bottom: 45px;
}
.ks-eventsec {
    margin-top: 120px;
}
.ks-event-modalpup {
    align-items: center;
    display: none;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
.ks-event-modalpup.popup_body_show {
    display: flex;
}
.ks-event-modalpupoverlay {
    background-color: var(--midnight)cc;
    height: 100%;
    left: 0;
    opacity: 80%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}
.ks-eventmodalclose {
    height: 34px;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 34px;
    z-index: 1;
}
.ks-eventmodalclose:after {
    background-color: var(--rose);
    border-radius: 2px;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 20px;
    width: 2px;
}
.ks-eventmodalclose:before {
    background-color: var(--rose);
    border-radius: 2px;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 2px;
    width: 20px;
}
.ks-event-innerauthor {
    width: 100%;
    display: flex;
    align-items: center;
}
.sues-popupform {
    align-items: center;
    display: none;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
.sues-popupform.popup_sues_show {
    display: flex;
}
.sues-popupformoverlay {
    cursor: pointer;
    background-color: var(--midnight)cc;
    height: 100%;
    left: 0;
    opacity: 80%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}
.sues-pfinner {
    direction: ltr;
    text-align: left;
    overflow: auto;
    margin: 30px;
    position: relative;
    z-index: 9;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
    padding: 70px 60px;
    max-width: 640px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sues-pfinner > div {
    width: 100%;
}
.sues-pfclose {
    cursor: pointer;
    height: 34px;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 34px;
    z-index: 1;
}
.sues-pfinner .sues-pfclose {
    width: 34px;
}
.sues-pfclose:after {
    background-color: var(--rose);
    border-radius: 2px;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 20px;
    width: 2px;
}
.sues-pfclose:before {
    background-color: var(--rose);
    border-radius: 2px;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 2px;
    width: 20px;
}
.sues-pftitle h2 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.35;
    letter-spacing: -0.8px;
}
.sues-pftext {
    font-size: 14px;
    line-height: 1.85;
}
.sues-pform textarea,
.sues-pform input[type="text"],
.sues-pform input[type="number"],
.sues-pform input[type="email"],
.sues-pform input[type="tel"],
.sues-pform select,
.sues-pform input[type="date"] {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--midnight-glass);
    outline: none;
    background: #fff;
    font-size: 20px;
    line-height: 30px;
    font-family: Helvetica;
    font-weight: 400;
    color: var(--midnight);
    min-height: 57px;
    margin: 0;
    padding: 10px 0px;
    -webkit-appearance: none;
}
.sues-pform input[type="date"] {
    width: 100%;
}
.sues-pform input[type="submit"] {
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/right-arrow.svg);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 8px auto;
    border-radius: 0;
    padding: 8px 44px 8px 24px;
    text-align: center;
    background-color: var(--rose);
    outline: none;
    font-size: 16px;
    line-height: 24px;
    font-family: Helvetica;
    font-weight: 700;
    color: #fff;
    min-height: 48px;
    margin: 0;
    transition: all 0.4s ease;
    -webkit-appearance: none;
}
.sues-pform .hs-form-required {
    color: var(--rose);
}
.sues-pform .hs-error-msgs {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    font-size: 12px;
}
.sues-pform fieldset {
    max-width: 100% !important;
}
.sues-pform .input {
    margin-right: 0 !important;
}
.sues-pform .form-columns-2 .hs-form-field {
    width: 49% !important;
    float: left;
    margin-right: 2%;
}
.sues-pform .form-columns-2 div.hs-form-field + div.hs-form-field {
    margin-right: 0;
}
.sues-pform label {
    font-family: Roboto Slab, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: var(--midnight);
    position: relative;
    z-index: 1;
}
.sues-pform .hs-form-field > label {
    margin-bottom: -14px;
}
.sues-pform .hs-dateinput:before {
    right: 0;
}
.sues-pform form {
    font-family: Roboto Slab, serif;
}
.sues-pform form ul.inputs-list li label.hs-form-booleancheckbox-display {
    min-height: 24px;
    position: relative;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"] {
    opacity: 0;
    height: 24px;
    width: 24px;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span
    p {
    margin-left: 0 !important;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span {
    transition: all 0.3s ease;
    margin-left: 0 !important;
    padding-left: 34px;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span:before {
    transition: all 0.3s ease;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--rose);
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span:after {
    transition: all 0.3s ease;
    opacity: 0;
    content: '';
    position: absolute;
    top: 6px;
    left: 5px;
    width: 15px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"]:checked
    + span:after {
    opacity: 1;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"]:checked
    + span:before {
    background: var(--rose);
}
.sues-pform form li.hs-form-booleancheckbox {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}
.sues-pform form .grecaptcha-badge {
    margin-left: 0;
}
.sues-pform .legal-consent-container ~ .hs_recaptcha {
    float: left;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
}
.sues-pform form .actions {
    transition: all 0.4s ease;
    margin-top: 40px;
    display: inline-block;
    position: relative;
}
.sues-pform form .actions:after {
    border-radius: 2px;
    border-top: 2px solid #fff;
    content: '';
    height: 2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.sues-pform form .actions:hover:after {
    width: 18px;
}
.sues-pform .actions:hover input[type="submit"] {
    background-color: var(--rose);
    color: #fff;
    padding-right: 65px;
}
.sues-pform form .hs-input::-webkit-input-placeholder {
    color: var(--midnight-glass);
}
.sues-pform form .hs-input::-moz-placeholder {
    color: var(--midnight-glass);
}
.sues-pform form .hs-input:-ms-input-placeholder {
    color: var(--midnight-glass);
}
.sues-pform form .hs-input::placeholder {
    color: var(--midnight-glass);
}
.sues-pform form label.hs-error-msg.hs-main-font-element {
    font-size: 12px;
    line-height: 1.1;
    color: #ef6b51;
}
.sues-pform form ul.no-list.hs-error-msgs.inputs-list li {
    margin-top: 0;
}
.signup-eventsec::-webkit-scrollbar {
    width: 3px;
}
.signup-eventsec::-webkit-scrollbar-track {
    background: #fff;
}
.signup-eventsec::-webkit-scrollbar-thumb {
    background: var(--rose);
}
.sues-pfinner::-webkit-scrollbar {
    width: 3px;
}
.sues-pfinner::-webkit-scrollbar-track {
    background: #fff;
}
.sues-pfinner::-webkit-scrollbar-thumb {
    background: var(--rose);
}
.rbp-cols.Event .rbp-fi {
    padding-top: 50%;
}
.rw-bl-crow {
    width: 100%;
    margin-top: 80px;
    column-gap: 32px;
    row-gap: 80px;
}
.rw-bl-col {
    /* width: calc(33.33% - 32px); */
    width: calc(33.33% - 21.9px);
    float: left;
}
.rbp-colsbtns {
    display: none;
}
.rbp-colsbtns a {
    color: var(--rose);
    align-items: center;
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Right_arrow.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 8px auto;
    display: flex;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding-right: 17px;
    position: relative;
    transition: all 0.4s ease;
}
.rbp-colsbtns a:after {
    border-radius: 2px;
    border-top: 2px solid var(--rose);
    content: '';
    height: 2px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.rbp-colsbtns a:hover {
    color: var(--rose);
    padding-right: 32px;
}
.rbp-colsbtns a:hover:after {
    width: 18px;
}
.rbp-colsdatetime ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.rbp-colsdatetime ul li {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: Helvetica;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}
.rbp-colsdatetime ul li:last-child {
    margin-bottom: 0;
}
.rbp-colsdatetime ul li img {
    max-width: 24px;
}
.rbp-colsdatetime ul li span {
    margin-left: 8px;
}
.rw-bl-col.Event .rbp-fi {
    padding-top: 50%;
}
.rw-bl-col.Video a.rw-bl-colink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rw-bl-col.Video .rbp-fi {
    position: relative;
    z-index: 1;
}
.rw-bl-col.Video .rbp-fi:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(
        25deg,
        rgba(0, 12, 54, 0.5) 13.47%,
        rgba(0, 12, 54, 0) 83.8%
    );
}
.rw-bl-col.Video a.rw-bl-colink span {
    background-color: var(--rose);
    border-radius: 100px;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.15s;
}
.rw-bl-col.Video a.rw-bl-colink:hover span,
.bpvideo-popup-video.op-video a:hover span {
    transform: scale(1.2);
}
.rw-bl-col.Video a.rw-bl-colink svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.rw-bl-col.Video a.rw-bl-colink span svg,
.bpvideo-popup-video.op-video a span svg {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}
.bpvideo-popup-video.op-video a span {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    background-color: var(--rose);
    border-radius: 100px;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.1.5s;
}
.bpvideo-popup-video.op-video a:hover span {
    transform: translate(-50%, -50%) scale(1.2);
}
.rw-bl-col.activeclss {
    display: block;
}
.rw-bl-col {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.rw-bl-col:nth-child(14n + 2),
.rw-bl-col:nth-child(14n + 10) {
    width: calc(66.66% - 10px);
    min-height: 473px;
}
.rw-bl-col:nth-child(14n + 2) .rbp-content,
.rw-bl-col:nth-child(14n + 10) .rbp-content {
    margin-top: 0;
    padding: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    z-index: 3;
}
.rw-bl-col:nth-child(14n + 2):before,
.rw-bl-col:nth-child(14n + 10):before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(
        25deg,
        rgba(0, 12, 54, 0.5) 13.47%,
        rgba(0, 12, 54, 0) 83.8%
    );
}
.rw-bl-col:nth-child(14n + 2) .rbp-colstitle h3 a,
.rw-bl-col:nth-child(14n + 10) .rbp-colstitle h3 a {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 2) .rbp-colsdatetime ul li,
.rw-bl-col:nth-child(14n + 10) .rbp-colsdatetime ul li {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 2) .rbp-colsdatetime ul li path.s1,
.rw-bl-col:nth-child(14n + 10) .rbp-colsdatetime ul li path.s1 {
    stroke: #fff;
}
.rw-bl-col:nth-child(14n + 2) .rbp-fi,
.rw-bl-col:nth-child(14n + 10) .rbp-fi {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 0;
    height: 100%;
}
.rw-bl-col:nth-child(14n + 2) .rbp-tags a:hover,
.rw-bl-col:nth-child(14n + 10) .rbp-tags a:hover {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 2) .rbp-colstitle h3 a:hover,
.rw-bl-col:nth-child(14n + 10) .rbp-colstitle h3 a:hover {
    color: var(--rose);
}
.rw-bl-col:nth-child(14n + 2) .rbp-clstext,
.rw-bl-col:nth-child(14n + 10) .rbp-clstext {
    display: none;
}
.rw-bl-col:nth-child(14n + 2) .rbp-colstitle h3,
.rw-bl-col:nth-child(14n + 10) .rbp-colstitle h3 {
    margin-bottom: 0;
}
.rw-bl-col:nth-child(14n + 6) {
    width: 100%;
    background-color: var(--midnight);
    flex-wrap: wrap;
    align-items: center;
    padding-right: 30px;
}
.rw-bl-col.activeclss:nth-child(14n + 6) {
    display: flex !important;
}
.rw-bl-col:nth-child(14n + 6) .rbp-over {
    width: 50%;
    float: left;
    height: 100%;
    padding-top: 0;
}
.rw-bl-col:nth-child(14n + 6) .rbp-over .rbp-fi {
    height: 100%;
}
.rw-bl-col:nth-child(14n + 6) .rbp-content {
    width: 50%;
    margin-top: 0;
    padding-top: 104px;
    padding-bottom: 96px;
    padding-left: 40px;
    max-width: 609px;
    padding-right: 0;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 a {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 {
    font-size: 44px;
    letter-spacing: -0.88px;
    line-height: 1.22;
    margin-bottom: 25px;
}
.rw-bl-col:nth-child(14n + 6) .rbp-clstext {
    max-width: 415px;
}
.rw-bl-col:nth-child(14n + 6) .rbp-clstext * {
    color: #fffcc;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colsbtns {
    margin-top: 32px;
    display: inline-block;
}
.rw-bl-col:nth-child(14n + 6) .rbp-content {
    color: #fffcc;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colsdatetime ul li path.s1 {
    stroke: #fff;
}
.rw-bl-col:nth-child(14n + 6) .rbp-tags a:hover {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 a:hover {
    color: var(--rose);
}
.rbp-over {
    overflow: hidden;
}
.rbpLinks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
}
.rbp-fi {
    transition: all 0.6s ease;
}
.rw-bl-col-othe:hover .rbp-fi {
    transform: scale(1.05115);
}
.rw-bl-col-othe:hover .rbp-colstitle h3 a {
    text-decoration: underline !important;
}
.newsletter-sec {
    position: relative;
    z-index: 2;
}
.newsletter-inner {
    padding: 100px 40px;
}
.newsletter-row {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.newsletter-left {
    width: 45%;
    float: left;
}
.newsletter-right {
    width: 45%;
    float: left;
    margin-left: 10%;
}
.newsletter-title h2 {
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    font-size: 40px;
    line-height: 1.35;
}
.newsletter-form .form-title {
    padding: 0;
}
.newsletter-form textarea,
.newsletter-form input[type="text"],
.newsletter-form input[type="number"],
.newsletter-form input[type="email"],
.newsletter-form input[type="tel"],
.newsletter-form select {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    font-size: 16px;
    line-height: 24px;
    font-family: Roboto Slab, sans-serif;
    font-weight: 400;
    color: #fff;
    min-height: auto;
    margin: 0;
    padding: 10px 40px 10px 0;
    -webkit-appearance: none;
}
.newsletter-form input[type="submit"] {
    border-radius: 0;
    padding: 0;
    text-align: center;
    background-color: transparent;
    outline: none;
    font-size: 0;
    line-height: 1;
    font-family: Roboto Slab, sans-serif;
    font-weight: 400;
    color: #fff;
    border: 0;
    min-height: auto;
    margin: 0;
    transition: all ease 0.3s;
    -webkit-appearance: none;
}
.newsletter-form input[type="submit"]:hover {
    background-color: transparent;
}
.newsletter-form .hs-form-required {
    display: none;
}
.newsletter-form .hs-error-msgs {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    font-size: 12px;
}
.newsletter-form fieldset {
    max-width: 100% !important;
}
.newsletter-form .input {
    margin-right: 0 !important;
}
.newsletter-form {
    color: #fff;
}
.newsletter-form .hs-input::-webkit-input-placeholder {
    color: #fff33;
}
.newsletter-form .hs-input::-moz-placeholder {
    color: #fff33;
}
.newsletter-form .hs-input:-ms-input-placeholder {
    color: #fff33;
}
.newsletter-form .hs-input::placeholder {
    color: #fff33;
}
.newsletter-form form {
    font-family: Roboto Slab, serif;
    position: relative;
    z-index: 1;
}
.newsletter-form form input[type="submit"] {
    position: absolute;
    z-index: 2;
    top: 9px;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/icon.svg");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: right center;
}
.newsletter-form form .hs-richtext,
.newsletter-form form .hs-richtext p {
    margin-bottom: 0;
}
.newsletter-form form .hs-richtext {
    max-width: 307px;
    color: #fffcc;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.81;
}
.newsletter-rightitle {
    margin-bottom: 20px;
}
.newsletter-form .hs_error_rollup {
    display: none;
}
.totlebpcount {
    margin-bottom: 21px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42;
    font-family: "Poppins", sans-serif;
}
.loadmorebtn {
    margin-top: 50px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.nlbtn a {
    margin-top: 21px;
    text-align: center;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    background-color: var(--rose);
    padding: 12px 24.58px;
}
.nlbtn a:hover {
    background-color: var(--midnight);
    color: #fff;
}
.blogpost-Event .rbp-sec:before {
    background-color: var(--aqua-haze);
    bottom: 0;
    content: '';
    height: 110vw;
    left: 0;
    margin-left: 0;
    position: absolute;
    transform: skewX(-45deg);
    transform-origin: left bottom;
    width: 110vw;
}
.bpeventsec {
    position: relative;
    z-index: 2;
}
.bpi-videopostbody {
    margin-top: 140px;
}
.lmprogressbar {
    position: relative;
    z-index: 1;
    max-width: 192px;
    background-color: rgba(0, 12, 54, 0.1);
    height: 2px;
    margin-left: auto;
    margin-right: auto;
}
.lmprogressbractive {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    content: '';
    background-color: var(--rose);
    border-radius: 6px;
}
.nlbtn a.loadMore.lowopacity {
    cursor: not-allowed;
    opacity: 50%;
}
.nlbtn a.loadMore.lowopacity:hover {
    background-color: var(--rose);
    color: #fff;
}
.hrpn-btn {
    margin-top: 40px;
}
.zigzag-colsleft img {
    transition: transform 1s ease-out;
}
.zigzag-colsleft {
    width: 57.41%;
    float: left;
    overflow: hidden;
}
.zigzag-colsright {
    width: 34.2%;
    float: left;
}
.zigzag-cols {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.zigzag-coltitle h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.88px;
    margin-bottom: 36px;
}
.zigzag-cols.reverse-zigzagcol {
    flex-direction: row-reverse;
}
.zigzag-colsleft .zigzag-colsvideo {
    position: relative;
    z-index: 1;
    padding-top: 74.5%;
}
.zigzag-colsleft .zigzag-colsvideo > a {
    transition: transform 1s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.zigzag-colsleft .zigzag-colsvideo > a:before {
    z-index: 1;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98px;
    height: 98px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Frame%20570.svg");
}
.zigzag-coicon {
    margin-top: 40px;
}
.zigzag-shape {
    position: relative;
}
.zigzag-shape:before {
    z-index: -1;
    position: absolute;
    bottom: -1px;
    left: 0;
    margin-left: -250px;
    width: 120vw;
    height: 120vw;
    content: '';
    transform: skewX(-45deg);
    transform-origin: left bottom;
}
.zigzag-btn a {
    margin-top: 30px;
}
.cops-left {
    width: 40.3%;
    float: left;
    position: relative;
}
.cops-leinn {
    width: 100%;
    max-width: 500px;
}
.cops-right {
    width: 51%;
    float: left;
    margin-left: 8.7%;
}
.copstitle h2.h1 {
    letter-spacing: -3.92px;
    margin-bottom: 36px;
}
.cops-text h4 {
    font-size: 26px;
    line-height: 1.46;
}
.cops-btn {
    margin-top: 40px;
}
.cops-rightcols {
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
    position: relative;
    transition: all 0.4s ease;
    padding: 40px;
    margin-bottom: 32px;
}
.cops-rightcols:last-child {
    margin-bottom: 0;
}
.cops-cltitle h4 {
    font-size: 26px;
    line-height: 1.46;
    margin-bottom: 20px;
}
.cops-cltxt {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 20px;
}
.cops-clbtn a {
    align-items: center;
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Right_arrow.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 8px auto;
    display: flex;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding-right: 17px;
    position: relative;
    transition: all 0.4s ease;
}
.cops-clbtn a:after {
    border-radius: 2px;
    border-top: 2px solid var(--rose);
    content: '';
    height: 2px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.cops-clbtn {
    display: inline-block;
}
.cops-clbtn a:hover {
    padding-right: 32px;
}
.cops-clbtn a:hover:after {
    width: 18px;
}
.cops-rightcols:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.2);
}
.cops-rightcolLink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.cops-rightcols:hover .cops-clbtn a {
    padding-right: 32px;
}
.cops-rightcols:hover .cops-clbtn a:after {
    width: 18px;
}
.cops-leinn.stickthis.copsStick {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
}
.ourbs-row {
    column-gap: 32px;
    row-gap: 60px;
    margin-top: 80px;
}
.ourbs-cols {
    width: calc(33.33% - 21.4px);
    text-align: center;
}
.ourbs-icon img {
    max-width: 88px !important;
}
.ourbs-title h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.88px;
    margin-bottom: 22px;
}
.ourbs-icon {
    margin-bottom: 30px;
}
.ourbs-content h4 {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 26px;
    line-height: 1.46;
    margin-bottom: 22px;
}
.ourbs-ctxt {
    font-size: 14px;
    line-height: 1.85;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 350px;
    margin: 0 auto;
}
.ourbs-btn {
    margin-top: 60px;
}
.ourvlus-row {
    column-gap: 32px;
    row-gap: 60px;
    margin-top: 80px;
}
.ourvlus-title h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.88px;
    margin-bottom: 22px;
}
.ourvlus-cols {
    width: calc(33.33% - 21.3px);
    text-align: center;
}
.ourvlus-icon {
    margin-bottom: 30px;
}
.ourvlus-icon img {
    max-width: 88px !important;
}
.ourvlus-content h3 {
    padding-left: 37.5px;
    padding-right: 37.5px;
    margin-bottom: 22px;
}
.ourvlus-ctxt {
    padding-left: 30.5px;
    padding-right: 30.5px;
}
.ourvlus-btn {
    margin-top: 60px;
}
/* .gallery-row { column-count: 4; column-gap: 32px; } */
.gallery-row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}
.gallery-cols {
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    width: 25%;
    padding: 0 15px;
}
.gallery-colimg {
    overflow: hidden;
    line-height: 0;
    grid-column: 1;
    grid-row: 1/-1;
    width: 100%;
}
a.gallery-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    padding: 10px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
a.gallery-icon:before {
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    transform: skewX(-45deg);
    transform-origin: left bottom;
    background-color: var(--midnight);
}
a.gallery-icon img {
    margin-bottom: -35px;
    margin-left: 30px;
}
.gallery-cols.galleryvideo {
    height: 538px;
}
/* .gallery-cols:first-child .gallery-cinn { padding-top: 101px; }
.gallery-cols:nth-child(2) .gallery-cinn { padding-top: 38px; } */

.gallery-colimg video {
    height: 100%;
    object-fit: fill;
    width: 100%;
}
.gallery-cinn {
    transition: transform 1s ease-out;
    height: 100%;
    break-inside: avoid;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}
.ctabannerbpsubtitle a {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-decoration: underline !important;
}
.gallery-colimg img {
    width: 100%;
    max-height: 304px;
    object-fit: cover;
}
.lwr-shapesec {
    position: relative;
}
.lwr-shapesec:before {
    z-index: -1;
    position: absolute;
    bottom: -1px;
    left: 0;
    margin-left: 0;
    width: 100vw;
    height: 100vw;
    content: '';
    transform: skewX(-45deg);
    transform-origin: left bottom;
}
.teamtitle h2 {
    margin-bottom: 36px;
}
.bpr-reportpostbody .bpi-icontent {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.bpr-reportpostbody .bpi-icontent p {
    opacity: 80%;
}
.bpi-postbody .bpi-icontent {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.main-sec.hero-contact-sec {
    position: relative;
}
.hero-contact-fullwidth .hero-contact-title {
    max-width: 640px;
}
.hero-contact-sec .contact_form-left {
    width: 50%;
    float: left;
}
.hero-contact-sec .contact_form-right {
    position: relative;
    width: 50%;
    padding: 70px 60px;
    float: left;
    margin-top: 100px;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
}
.hero-contact-sec .contact-form form input[type="text"],
.hero-contact-sec .contact-form form input[type="email"],
.hero-contact-sec .contact-form input[type="tel"] {
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--midnight-glass);
    border-radius: 0;
    color: var(--midnight);
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    min-height: 57px;
    outline: none;
    padding: 10px 0;
}
.hero-contact-sec .contact-form form {
    font-family: Roboto Slab;
    line-height: 26px;
}
.hero-contact-sec .contact-form form input:focus-visible {
    outline: none;
}
.hero-contact-sec .contact-form .hs-form-field {
    margin-bottom: 2rem;
}
.hero-contact-sec .contact-form form label {
    margin-bottom: 0;
}
.hero-contact-sec .contact-form .hs-form-required {
    color: var(--rose);
}
.hero-contact-sec .contact-form form li.hs-form-booleancheckbox {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display {
    min-height: 24px;
    position: relative;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"] {
    height: 24px;
    opacity: 0;
    width: 24px;
    margin-right: 10px;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span {
    margin-left: 0 !important;
    padding-left: 34px;
    transition: all 0.3s ease;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span:before {
    border: 1px solid var(--rose);
    content: '';
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
    width: 24px;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span:after {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    content: '';
    height: 8px;
    left: 5px;
    opacity: 0;
    position: absolute;
    top: 6px;
    transform: rotate(135deg);
    transition: all 0.3s ease;
    width: 15px;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"]:checked
    + span:before {
    background: var(--rose);
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"]:checked
    + span:after {
    opacity: 1;
}
.hero-contact-sec .contact-form form .grecaptcha-badge {
    margin-left: 0;
}
.hero-contact-sec
    .contact-form
    .legal-consent-container
    .hs-form-booleancheckbox-display
    > span
    p {
    margin-left: 0 !important;
}
.hero-contact-sec .contact-form form .actions {
    display: inline-block;
    position: relative;
    transition: all 0.4s ease;
    margin-top: 32px;
}
.hero-contact-sec .contact-form input[type="submit"] {
    -webkit-appearance: none;
    background-color: var(--rose);
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/right-arrow.svg);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 8px auto;
    border-radius: 0;
    color: #fff;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    min-height: 48px;
    outline: none;
    padding: 8px 44px 8px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.hero-contact-sec .contact-form form .actions:after {
    border-radius: 2px;
    border-top: 2px solid #fff;
    content: '';
    height: 2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.hero-contact-sec .contact-form .actions:hover input[type="submit"] {
    background-color: var(--rose);
    color: #fff;
    padding-right: 65px;
}
.hero-contact-sec .contact-form form .actions:hover:after {
    width: 18px;
}
.hero-contact-sec .contact-form .legal-consent-container ~ .hs_recaptcha {
    float: left;
    margin-bottom: 0;
    margin-top: 32px;
    width: 100%;
}
.hero-contact-sec .contact-form .hs-form-field > label {
    margin-bottom: -14px;
}
.hero-contact-sec .contact-form label {
    color: var(--midnight);
    font-family: Roboto Slab, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    position: relative;
    z-index: 1;
}
.hero-contact-sec .contact-form form label.hs-error-msg.hs-main-font-element {
    color: #ef6b51;
    font-size: 12px;
    line-height: 1.1;
}
.hero-contact-sec .contact-img {
    padding-top: 100%;
    margin-right: -30%;
    width: calc(100% + 30%);
}
.hero-contact-sec .contact_form {
    margin-top: 140px;
    position: relative;
}
.hero-contact-sec .hsi-text {
    max-width: 100%;
    margin-bottom: 60px;
    font-size: 22px;
    line-height: 36px;
}
.hero-contact-sec .find-us-main {
    max-width: 100%;
    margin-top: 80px;
    padding-right: 50px;
}
.hero-contact-sec .find-us-text {
    max-width: 170px;
}
.hero-contact-sec .find-us-text h5 a {
    color: var(--midnight);
    font-weight: 700;
}
.hero-contact-sec .find-us-text h5 a:hover {
    color: var(--rose);
}
.hero-contact-sec .find-us {
    border-top: 1px solid rgba(1, 22, 42, 0.2);
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.find-us-map-frame {
    width: 100%;
    margin: 30px 0 0;
    box-shadow: 0 0 30px 0 rgba(0, 12, 54, 0.1);
}
.hero-contact-sec .hsi-text p {
    margin: 0;
}
.hero-contact-sec .contact-form form .hs-button,
.hero-contact-sec .contact-form form input[type="submit"] {
    font-size: 16px;
    border-radius: 0;
}
.hero-contact-sec:before {
    background-position: 100% 0 !important;
    background-repeat: no-repeat !important;
    content: '';
    height: 1768px;
    opacity: 30%;
    position: absolute;
    right: 0;
    top: 0;
    width: 92.5%;
}
.hero-contact-sec.hp-shapesec:after {
    height: 2460px;
    margin-left: -290px;
}
.hero-contact-sec .contact_form-right h3.form-title {
    padding: 0;
    margin: 0;
}
.hero-contact-half.hero-contact-header {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 60px;
    align-items: center;
}
.hero-contact-half .hero-contactleft {
    padding-right: 30px;
    width: 50%;
    float: left;
}
.hero-contact-half .hero-contactright {
    width: 42%;
    float: left;
}
.hero-contact-half .hero-contact-title h1 {
    letter-spacing: -3.92px;
}
.hero-crightsubtitle h2 {
    letter-spacing: -0.88px;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 36px;
}
.hero-contact-inner.o2 {
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.hero-contact-inner.o2 .hero-contactleft {
    float: left;
    width: 46%;
}
.hero-contact-inner.o2 .contact_form-right {
    margin: 0;
    width: 46%;
}
.systemSection {
    padding: 160px 0;
    text-align: center;
}
.systemSection h1 {
    text-align: center;
    margin: 0 0 40px;
    font-size: 80px;
    line-height: normal;
}
.systemSection .btn.sysBtn {
    text-align: center;
}
.systemSection .btn.sysBtn a.button {
    border: 0;
    background-color: var(--rose);
    border-radius: 0;
    font-family: Helvetica;
    font-weight: 700;
}
.systemSection form input[type="password"] {
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--midnight-glass);
    border-radius: 0;
    color: var(--midnight);
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    min-height: 57px;
    outline: none;
    padding: 10px 0;
}
.systemSection form input[type="submit"] {
    -webkit-appearance: none;
    background-color: var(--rose);
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/right-arrow.svg);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 8px auto;
    border-radius: 0;
    color: #fff;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 30px 0 0;
    min-height: 48px;
    outline: none;
    padding: 8px 44px 8px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.systemSection form {
    max-width: 600px;
    margin: 60px auto 0;
}
@media (min-width: 2200px) {
    .zigzag-shape:before {
        height: 1860px;
        left: 50%;
        width: 4700px;
    }
    .lwr-shapesec:before {
        height: 1860px;
        left: 50%;
        width: 4700px;
    }
    .blogpost-Event .rbp-sec:before,
    .authorbp-sec:before {
        height: 1860px;
        left: 50%;
        width: 4700px;
    }
    .blogpost-Video .rbp-sec:before {
        height: 1860px;
        left: 50%;
        width: 4700px;
    }
}
@media (min-width: 1620px) {
    .hp-shapesec:after {
        margin-left: -290px;
    }
    .body-container--about .git-sec:before {
        margin-left: -950px;
    }
    .hero-listingsec:after {
        margin-left: -320px;
    }
}
@media (max-width: 1540px) {
    .popupinner {
        max-width: 1060px;
    }
}
@media (max-width: 1366px) {
    .hero-product:before {
        width: 100%;
    }
    .psp-coltitle h2 {
        font-size: 38px;
        line-height: 1.3;
    }
    .hero-productbImages {
        min-height: 410px;
    }
    .op-video a:before {
        width: 50px;
        height: 50px;
    }
    .popupinner {
        padding-top: 500px;
        max-width: 888px;
    }
    .teamcols {
        width: 23.27%;
    }
    .teamcols:nth-child(5n) {
        margin-right: 2.3%;
    }
    .teamcols:nth-child(4n) {
        margin-right: 0;
    }
    .teamcolimg {
        padding-top: 260px;
    }
    .teamrow {
        row-gap: 60px;
    }
    .teamcols:nth-child(2n) {
        margin-top: 44px;
    }
    .journey-cols {
        padding-left: 60px;
    }
    .bpi-left {
        width: 58%;
    }
    .bpi-right {
        width: 30%;
    }
    .bpi-modlauthor {
        max-height: 768px;
    }
    .cb-bgsec {
        width: calc(100% - 100px);
    }
    .ctabannerbp-inner {
        max-width: 820px;
    }
    .twocolbp-cols.bpr-twocls .twocolbp-right {
        margin-left: 5%;
        width: 35%;
    }
    .bpr-twocls .bpreport-reversecls .twocolbp-right {
        margin-left: 0;
        margin-right: 5%;
    }
    .twocolbp-ltitle h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 28px;
    }
    .twocolbp-cols {
        margin-bottom: 100px;
    }
    .signup-eventsec {
        max-width: 306px;
        padding: 50px 30px 30px;
    }
    .bpeventright {
        padding-left: 0;
    }
    .sues-btn.btn a {
        padding: 12px 43px 12px 15px;
    }
    .sues-btn.btn a:hover {
        padding-right: 48px;
    }
    .sues-title h4 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .bpeventleft {
        padding-right: 32px;
    }
    .ks-event-acontent {
        max-width: 320px;
    }
    .ks-eventsec {
        margin-top: 100px;
    }
    .bpevnt-icontent,
    .bpevnt-icontent img,
    .testimonial-event {
        margin-top: 100px;
    }
    .tms-eventcls-text {
        margin-bottom: 26px;
        font-size: 22px;
    }
    .tms-eventcls-text span svg {
        width: 38px;
        height: 50px;
    }
    .sues-pfinner {
        max-height: 768px;
        padding: 50px 50px;
    }
    .rbp-content {
        padding-right: 20px;
        margin-top: 24px;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 {
        font-size: 36px;
        letter-spacing: -0.66px;
        margin-bottom: 20px;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-colsbtns {
        margin-top: 24px;
    }
    .rw-bl-crow {
        row-gap: 60px;
    }
    .rw-bl-col.Video a.rw-bl-colink span,
    .bpvideo-popup-video.op-video a span {
        height: 68px;
        width: 68px;
    }
    .newsletter-left {
        width: 48%;
    }
    .newsletter-right {
        width: 48%;
        margin-left: 4%;
    }
    .newsletter-title h2 {
        font-size: 34px;
        letter-spacing: -0.66px;
        margin-bottom: 16px;
    }
    .newsletter-inner {
        padding: 80px 40px;
    }
    .loadmorebtn {
        margin-bottom: 60px;
    }
    .hlright {
        margin-left: 5%;
        width: 55%;
    }
    .hlleft {
        width: 40%;
    }
    .bpi-videopostbody {
        margin-top: 100px;
    }
    .cops-text h4 {
        font-size: 22px;
    }
    .zigzag-coltitle h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 28px;
    }
    .zigzag-colsright {
        width: 35%;
    }
    .ourvlus-ctxt {
        padding-left: 0;
        padding-right: 0;
    }
    .ourvlus-content h3 {
        padding-left: 0;
        padding-right: 0;
    }
    .ourbs-content h4 {
        font-size: 22px;
        margin-bottom: 16px;
        padding-left: 0;
        padding-right: 0;
    }
    .ourbs-ctxt {
        padding-left: 0;
        padding-right: 0;
    }
    .ourbs-row {
        row-gap: 40px;
        margin-top: 60px;
    }
    .gallery-row {
        column-gap: 24px;
    }
    .gallery-cols {
        margin-bottom: 24px;
    }
    .ourbs-icon img {
        max-width: 70px !important;
    }
    .teamtitle h2 {
        margin-bottom: 26px;
    }
    .journeytitle h2 {
        margin-bottom: 26px;
    }
    .journey-innerright {
        width: 495px;
    }
    .gallery-cols.galleryvideo {
        height: 440px;
    }
    .cops-leinn {
        max-width: 360px;
    }
    .hero-contact-sec:before {
        height: 1020px;
        width: 100%;
    }
    .hero-contact-sec.hp-shapesec:after {
        margin-left: -160px;
    }
    .hero-contact-half .hero-contactright {
        width: 47%;
    }
    .hero-crightsubtitle h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 26px;
    }
    .hero-contact-half.hero-contact-header {
        margin-bottom: 0;
    }
    .hero-contact-half .hero-contact-title h1 {
        letter-spacing: -2.92px;
    }
}

@media (max-width: 991px) {
    .heroparsubtitle h2,
    .techstack-colstitle h2 {
        font-size: 36px;
    }
    .techstack-row {
        row-gap: 60px;
    }
    .psp-header {
        margin-bottom: 40px;
    }
    .psp-colsleft {
        margin-right: 0;
        width: 100%;
    }
    .psp-colsright {
        width: 100%;
        margin-top: 40px;
    }
    .psp-title h2 {
        margin-bottom: 20px;
    }
    .psp-cotxt {
        margin-bottom: 30px;
    }
    .psp-coltitle h2 {
        margin-bottom: 20px;
    }
    .techstack-colstitle h2 {
        margin-bottom: 20px;
    }
    .psp-coltitle h2 {
        font-size: 34px;
    }
    .op-video .op-climg {
        padding-top: 87%;
    }
    .popupinner {
        padding-top: 340px;
        max-width: 600px;
    }
    .contentsmall .lwr-content {
        max-width: 100%;
        padding-right: 40px;
    }
    .hero-productbImages {
        margin: 44px 0 0;
        min-height: 310px;
    }
    .heroparLeft.hero-product-Left {
        padding-right: 0;
        width: 100%;
    }
    .heroparRight.hero-product-Right {
        padding-left: 0;
        width: 100%;
    }
    .lff-bigs-true .heroparLeft.hero-product-Left,
    .lff-bigs-true .heroparRight.hero-product-Right {
        width: 100%;
    }
    .hp-shapesec:after {
        height: 1700px;
        width: 2850px;
    }
    .teamcols {
        width: 31.8%;
    }
    .teamcols:nth-child(4n) {
        margin-right: 2.3%;
    }
    .teamcols:nth-child(3n) {
        margin-right: 0;
    }
    .teamcolimg {
        padding-top: 260px;
    }
    .teamrow {
        row-gap: 50px;
    }
    .teamcols:nth-child(2n) {
        margin-top: 0;
    }
    .teamcols:nth-child(3n + 2) {
        margin-top: 44px;
    }
    .journey-cols {
        padding-left: 40px;
    }
    .journey-cltitle h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .journey-cltxt {
        font-size: 16px;
        line-height: 1.6;
    }
    .body-container--about .git-sec:before {
        margin-left: -500px;
    }
    .bp-back {
        padding: 0 30px;
    }
    .bpi-left {
        width: 100%;
    }
    .bpi-right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .bpi-author {
        max-width: 350px;
        justify-content: flex-start;
    }
    .bpi-fimg {
        margin-top: 100px;
    }
    .bpi-icontent p span {
        font-size: 20px;
    }
    .bpi-icontent h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 26px;
        margin-top: 80px;
    }
    .bpi-shareblog {
        margin-top: 60px;
    }
    .rbp-row {
        width: calc(100% + 36px);
        margin-left: -18px;
        margin-right: -18px;
        gap: 0;
        row-gap: 30px;
        margin-top: 20px;
    }
    .rbp-cols.slick-slide {
        margin: 18px;
        width: 100%;
    }
    .rbp-row .slick-dots,
    .authorbp-row .slick-dots {
        margin: 0 18px;
        width: 100%;
        display: flex;
    }
    .rbp-row .slick-dots li,
    .authorbp-row .slick-dots li {
        border-top: 2px solid var(--midnight)1a;
        width: 100%;
        line-height: 0;
    }
    .rbp-row .slick-dots li button,
    .authorbp-row .slick-dots li button {
        display: block;
        width: 100%;
        height: 8px;
        background-color: transparent;
        border-radius: 6px;
        font-size: 0;
        padding: 0;
        border: 0;
        margin: 0;
        margin-top: -5px;
    }
    .rbp-row .slick-dots li.slick-active button,
    .authorbp-row .slick-dots li.slick-active button {
        background-color: var(--rose);
    }
    .rbp-row .slick-dots > li:only-child,
    .authorbp-row .slick-dots > li:only-child {
        display: none;
    }
    .authorbp-cols.slick-slide {
        width: 100%;
        margin: 18px;
    }
    .authorbp-row {
        width: 100%;
        width: calc(100% + 36px);
        margin-left: -18px;
        margin-right: -18px;
        gap: 0;
        row-gap: 20px;
        margin-top: 30px;
    }
    .bpi-modlauthor {
        padding: 40px;
    }
    .bpi-mdltitle a {
        font-size: 32px;
        letter-spacing: -0.6px;
    }
    .bpi-mdlposition {
        margin-bottom: 16px;
    }
    .bpi-modalclose {
        right: 5px;
        top: 5px;
    }
    .bpv-title h1 {
        letter-spacing: -2px;
    }
    .bpReportLeft {
        margin-right: 0;
        width: 100%;
    }
    .bpReportRight {
        text-align: center;
        position: relative;
        width: 100%;
        margin-top: 40px;
    }
    .twocolbp-cols.bpr-twocls .twocolbp-left {
        width: 100%;
    }
    .twocolbp-cols.bpr-twocls .twocolbp-right {
        margin-left: 0;
        width: 100%;
        margin-top: 40px;
    }
    .bpr-twocls .bpreport-reversecls .twocolbp-right {
        margin-right: 0;
        order: 1;
    }
    .bpr-twocls .bpreport-reversecls .twocolbp-left {
        order: 0;
    }
    .twocolbp-cols {
        margin-bottom: 70px;
    }
    .cb-bgsec {
        width: calc(100% - 80px);
    }
    .ctabannerbptitle h2 {
        margin-bottom: 24px;
    }
    .ctabannerbpsubtitle h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .ctabannerbp-inner {
        max-width: 610px;
    }
    .bpr-title h1 {
        letter-spacing: -2px;
    }
    .bpeventleft {
        padding-right: 0;
        width: 100%;
    }
    .bpeventright {
        width: 100%;
    }
    .signup-eventsec {
        direction: ltr;
        padding: 0;
        max-width: 100%;
        position: static !important;
    }
    .signup-eventinner,
    .sues-title,
    .sues-text,
    .sues-shareicon {
        display: none;
    }
    .sues-content {
        height: 48px;
        transition: height 0.25s ease-in-out;
        border: 0;
        padding: 0;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9;
        left: 0;
    }
    .sues-content.popup_mobilesues_show {
        height: 100%;
    }
    .sues-popupform {
        max-height: 767px;
        overflow: auto;
        bottom: 0;
        display: flex;
        top: auto;
        position: relative;
    }
    .sues-popupformoverlay {
        display: none;
    }
    .sues-pfinner {
        margin: 0;
        max-width: 100%;
        max-height: 100%;
        padding: 64px 30px;
    }
    .sues-content.popup_mobilesues_show .sues-btn.btn {
        display: none;
    }
    .sues-btn.btn a:after {
        display: none;
    }
    .sues-btn.btn a {
        background-image: url("https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Union%20%281%29.svg");
        background-size: 14px auto;
        text-align: left;
        padding-left: 24px;
        padding-right: 24px;
    }
    .sues-pftitle h2 {
        font-size: 36px;
        letter-spacing: -0.6px;
        margin-bottom: 12px;
    }
    .hero-eventfimg {
        padding-top: 50%;
    }
    .ks-eventsec,
    .bpevnt-icontent,
    .bpevnt-icontent img,
    .testimonial-event {
        margin-top: 80px;
    }
    .ks-eventtitle h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 26px;
    }
    .bpevnt-title h1 {
        letter-spacing: -2px;
        margin-bottom: 30px;
    }
    .bpevnt-date {
        font-size: 22px;
        margin-bottom: 26px;
    }
    .bpevnt-timelocation ul li {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .bpevnt-timelocation ul li img {
        margin-right: 8px;
        max-width: 30px !important;
    }
    .ks-event-author {
        float: left;
        width: calc(50% - 36px);
        margin: 18px;
    }
    .ks-eventrow {
        column-gap: 0;
        row-gap: 0;
    }
    .ks-eventrow .slick-list {
        margin: 0 -18px;
    }
    .ks-eventrow .slick-dots {
        margin: 32px 0 18px;
        width: 100%;
        display: flex;
    }
    .ks-eventrow .slick-dots li {
        border-top: 2px solid var(--midnight)1a;
        width: 100%;
        line-height: 0;
    }
    .ks-eventrow .slick-dots li button {
        display: block;
        width: 100%;
        height: 8px;
        background-color: transparent;
        border-radius: 6px;
        font-size: 0;
        padding: 0;
        border: 0;
        margin: 0;
        margin-top: -5px;
    }
    .ks-eventrow .slick-dots li.slick-active button {
        background-color: var(--rose);
    }
    .ks-eventrow .slick-dots > li:only-child {
        display: none;
    }
    .rw-bl-crow {
        row-gap: 50px;
        margin-top: 60px;
    }
    .rw-bl-col {
        width: 100%;
    }
    .rbp-colstitle h3 {
        margin-bottom: 12px;
    }
    .rbp-content {
        margin-top: 20px;
        padding-right: 0;
    }
    .rbp-fi {
        padding-top: 56.25%;
    }
    .rw-bl-col:nth-child(14n + 10),
    .rw-bl-col:nth-child(14n + 2) {
        width: 100%;
    }
    .rw-bl-col:nth-child(14n + 10) .rbp-content,
    .rw-bl-col:nth-child(14n + 2) .rbp-content {
        padding: 30px;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-content {
        padding: 60px 0 60px 30px;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 {
        font-size: 30px;
    }
    .newsletter-text {
        font-size: 16px;
        line-height: 1.8;
    }
    .newsletter-inner {
        padding: 60px 30px;
    }
    .hlleft {
        width: 100%;
    }
    .hlright {
        margin-left: 0;
        width: 100%;
        margin-top: 40px;
    }
    .hl-text,
    .hltitle h1 {
        margin-bottom: 24px;
    }
    .ks-eventmodalclose {
        height: 24px;
        right: 10px;
        top: 10px;
        width: 24px;
    }
    .blogpost-Event .rbp-sec:before {
        height: 130vh;
        left: 50%;
        width: 130vw;
    }
    .bpi-videopostbody {
        margin-top: 80px;
    }
    .hrpn-btn {
        margin-top: 30px;
    }
    .zigzag-colsleft {
        width: 100%;
    }
    .zigzag-colsright {
        width: 100%;
        margin-top: 40px;
    }
    .zigzag-coltitle h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }
    .zigzag-coicon {
        margin-top: 30px;
    }
    .zigzag-cols.reverse-zigzagcol {
        flex-direction: column;
    }
    .zigzag-shape:before {
        margin-left: 0;
    }
    .ourvlus-cols {
        width: calc(50% - 16px);
    }
    .ourvlus-row {
        margin-top: 60px;
        row-gap: 40px;
    }
    .ourbs-cols {
        width: calc(50% - 16px);
    }
    .ourbs-icon {
        margin-bottom: 24px;
    }
    .gallery-row {
        column-count: 3;
        column-gap: 16px;
    }
    .gallery-cols {
        margin-bottom: 16px;
        width: 33.33%;
    }
    .cops-left {
        width: 100%;
    }
    .cops-leinn,
    .cops-leinn.stickthis.copsStick {
        position: static !important;
        max-width: 100%;
    }
    .cops-right {
        margin-left: 0;
        width: 100%;
        margin-top: 40px;
    }
    .ourvlus-title h2 {
        font-size: 38px;
    }
    .copstitle h2.h1 {
        letter-spacing: -2.92px;
    }
    .cops-btn {
        margin-top: 30px;
    }
    .cops-cltitle h4 {
        font-size: 24px;
    }
    .ourbs-title h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }
    .cops-rightcols {
        margin: 18px;
        box-sizing: content-box !important;
    }
    .cops-rightrow .slick-list {
        margin: 0 -18px;
    }
    .cops-rightrow .slick-track {
        display: flex;
        flex-wrap: wrap;
    }
    .cops-rightcols.slick-slide {
        height: inherit;
    }
    .journey-innerright {
        width: 374px;
    }
    .op-climg,
    .lwr-content,
    .op-video {
        animation: none;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-contact-sec:before {
        height: 960px;
    }
    .hero-contact-fullwidth .hero-contact-title {
        max-width: 550px;
    }
    .hero-contact-sec.hp-shapesec:after {
        height: 2140px;
        width: 4700px;
        margin-left: -120px;
    }
    .hero-contact-sec .contact_form {
        margin-top: 80px;
    }
    .hero-contact-sec .hsi-text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 40px;
        max-width: 100%;
    }
    .hero-contact-sec .find-us-main {
        margin-top: 50px;
        padding-right: 30px;
    }
    .hero-contact-sec .find-us {
        padding-top: 40px;
    }
    .find-us-map-frame {
        width: 100%;
        margin: 30px 0 0;
    }
    .hero-contact-sec .contact_form-right {
        padding: 40px 30px;
    }
    .hero-contact-sec .contact-form form input[type="email"],
    .hero-contact-sec .contact-form form input[type="text"],
    .hero-contact-sec .contact-form input[type="tel"] {
        padding: 5px 0 10px;
        font-size: 16px;
    }
    .hero-contact-half .hero-contactleft {
        padding-right: 0;
        width: 100%;
    }
    .hero-contact-half .hero-contactright {
        width: 100%;
        margin-top: 40px;
    }
    .hero-crightsubtitle h2 {
        margin-bottom: 20px;
    }
    .hero-contact-inner.o2 .hero-contactleft {
        float: left;
        width: 100%;
        margin: 0 0 50px;
    }
    .hero-contact-inner.o2 .contact_form-right {
        width: 100%;
    }
    .systemSection h1 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hrpn-hdrtext {
        max-width: 100%;
    }
    .heroparInner.hero-productInner {
        margin-top: 0;
    }
    .hero-product:before {
        width: 100%;
        height: 100%;
    }
    .heroparsubtitle h2,
    .techstack-colstitle h2 {
        font-size: 32px;
        letter-spacing: -0.66px;
    }
    .heroproductText {
        margin-top: 20px;
    }
    .strategyheader {
        margin-bottom: 40px;
    }
    .strategyrow {
        row-gap: 40px;
    }
    .strategyright {
        width: calc(100% - 95px);
    }
    .strategyicon {
        margin-right: 25px;
        width: 70px;
    }
    .strategycoltitle h3 {
        margin-bottom: 15px;
    }
    .techstack-row {
        row-gap: 40px;
    }
    .techstack-colstitle h2 {
        margin-bottom: 15px;
    }
    .psp-coltitle h2 {
        font-size: 32px;
    }
    .contentsmall .lwr-content {
        padding-right: 34px;
    }
    .popupinner {
        padding-top: 56.25%;
        margin: 40px 20px;
        max-width: 80%;
    }
    .close {
        top: -15px;
        right: -15px;
        width: 30px;
        height: 30px;
    }
    .close:after {
        width: 2px;
        height: 15px;
    }
    .close:before {
        width: 15px;
        height: 2px;
    }
    .hp-shapesec:after {
        height: 1180px;
        width: 1950px;
    }
    .teamcols {
        width: 48.8%;
    }
    .teamcols:nth-child(3n) {
        margin-right: 2.3%;
    }
    .teamcols:nth-child(2n) {
        margin-right: 0;
    }
    .teamcolimg {
        padding-top: 100%;
    }
    .teamrow {
        row-gap: 40px;
    }
    .teamcols:nth-child(3n + 2) {
        margin-top: 0;
    }
    .journey-left {
        width: 100%;
    }
    .journey-right {
        margin-left: 0;
        width: 100%;
        margin-top: 50px;
    }
    .journey-header {
        margin-bottom: 40px;
    }
    .body-container--about .git-sec:before {
        margin-left: -85%;
    }
    .bp-back {
        padding: 0 24px;
        margin-bottom: 30px;
    }
    .bpi-top {
        margin-bottom: 20px;
    }
    .bpi-fimg {
        margin-top: 60px;
    }
    .bpi-icontent p span {
        font-size: 16px;
    }
    .bpi-icontent h2 {
        font-size: 30px;
        letter-spacing: 0;
        margin-bottom: 16px;
        margin-top: 40px;
    }
    .bpi-left h1 {
        letter-spacing: -2px;
        font-size: 42px;
        line-height: 44px;
    }
    .bpi-shareblog {
        margin-top: 30px;
    }
    .bp-row .slick-list {
        margin: 0 -18px;
        padding-left: 0 !important;
    }
    .rbp-row {
        margin-top: 30px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        row-gap: 20px;
    }
    .rbp-cols.slick-slide {
        margin: 0 0 20px 20px;
    }
    .rbp-content {
        margin-top: 20px;
        padding-right: 0;
    }
    .authorbp-rowouter > h2 {
        font-size: 34px;
        letter-spacing: 0;
    }
    .authorbp-row {
        margin-top: 30px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        row-gap: 20px;
    }
    .authorbp-row .slick-list {
        margin: 0 -18px;
        padding-left: 0 !important;
    }
    .authorbp-cols.slick-slide {
        margin: 0 0 20px 20px;
    }
    .authorbp-row .slick-dots,
    .rbp-row .slick-dots {
        margin: 0;
    }
    .authorbp-content {
        margin-top: 20px;
        padding-right: 0;
    }
    .bpi-mdlcontent {
        width: 100%;
        margin-top: 30px;
        order: 1;
    }
    .bpi-mdlimg {
        margin-left: 0;
        width: 100%;
    }
    .bpi-mdlimg a {
        padding-top: 85%;
        max-width: 440px !important;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .bpi-mdlbio {
        max-width: 100%;
    }
    .bpi-modlauthor {
        margin: 30px 20px;
        padding: 40px 20px;
    }
    .cb-bgsec {
        width: 100%;
    }
    .ctabannerbp-inner {
        max-width: 100%;
    }
    .ctabannerbpsubtitle h4 {
        font-size: 18px;
    }
    .ctabannerbp-text {
        margin-bottom: 30px;
    }
    .twocolbp-ltitle h2 {
        font-size: 30px;
        letter-spacing: 0;
        margin-bottom: 16px;
    }
    .twocolbp-cols {
        margin-bottom: 40px;
    }
    .bpi-shareblog.bpr-reportshareblog {
        margin-top: 50px;
    }
    .bpevnt-date {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .bpevnt-timelocation ul li img {
        max-width: 24px !important;
    }
    .bpevnt-timelocation ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .testimonial-event {
        margin-top: 64px;
    }
    .bpevnt-icontent,
    .bpevnt-icontent img,
    .ks-eventsec {
        margin-top: 64px;
    }
    .ks-eventtitle h2 {
        font-size: 30px;
        letter-spacing: 0;
        margin-bottom: 16px;
    }
    .bpevnt-title h1 {
        letter-spacing: -1.92px;
        margin-bottom: 24px;
    }
    .tms-eventcls-text {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .tms-event-name {
        font-size: 16px;
    }
    .ks-eventrow .slick-list {
        padding-left: 0 !important;
    }
    ul li a.clipboard p.hovertxt {
        left: auto;
        right: 0;
    }
    .rw-bl-col:nth-child(14n + 6) {
        padding-right: 0;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-over {
        height: auto;
        width: 100%;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-over .rbp-fi {
        padding-top: 56.25%;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-content {
        padding: 40px 24px;
        width: 100%;
        max-width: 100%;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 {
        font-size: 24px;
        letter-spacing: 0;
        margin-bottom: 16px;
    }
    .rw-bl-col:nth-child(14n + 10),
    .rw-bl-col:nth-child(14n + 2) {
        min-height: 400px;
    }
    .rw-bl-col:nth-child(14n + 10) .rbp-content,
    .rw-bl-col:nth-child(14n + 2) .rbp-content {
        padding: 24px;
    }
    .rw-bl-col.Video a.rw-bl-colink span,
    .bpvideo-popup-video.op-video a span {
        height: 60px;
        width: 60px;
    }
    .rw-bl-col.Video a.rw-bl-colink svg,
    .bpvideo-popup-video.op-video a svg {
        width: 18px;
        height: 18px;
    }
    .newsletter-left {
        width: 100%;
    }
    .newsletter-right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .newsletter-inner {
        padding: 50px 24px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .newsletter-inner.fullwidth {
        width: calc(100% + 40px);
    }
    .loadmorebtn {
        margin-bottom: 50px;
        margin-bottom: 50px;
    }
    .rw-bltags li a {
        font-size: 14px;
        padding: 6px 20px;
    }
    ul.rw-bltags {
        gap: 10px;
    }
    .rw-bl-crow {
        margin-top: 40px;
        row-gap: 40px;
    }
    .bpi-modlauthor {
        max-height: 520px;
    }
    .bpi-videopostbody {
        margin-top: 40px;
    }
    .zigzag-coltitle h2 {
        margin-bottom: 16px;
        font-size: 32px;
        letter-spacing: 0;
    }
    .zigzag-colsleft .zigzag-colsvideo > a:before {
        width: 50px;
        height: 50px;
    }
    .zigzag-colsright {
        margin-top: 30px;
    }
    .zigzag-btn a {
        margin-top: 20px;
    }
    .ourvlus-title h2 {
        font-size: 36px;
    }
    .ourvlus-cols {
        width: 100%;
    }
    .ourvlus-row {
        margin-top: 40px;
        row-gap: 30px;
    }
    .ourvlus-content h3 {
        margin-bottom: 14px;
    }
    .ourbs-inner {
        margin-left: -20px;
        margin-right: -20px;
    }
    .ourbs-inner.fullwidth {
        width: 100%;
        margin: 0;
    }
    .ourbs-cols {
        width: 100%;
    }
    .ourbs-row {
        row-gap: 30px;
        margin-top: 40px;
    }
    .ourbs-btn {
        margin-top: 40px;
    }
    .copstitle h2.h1 {
        letter-spacing: 0;
        margin-bottom: 24px;
    }
    .cops-text h4 {
        font-size: 20px;
    }
    .cops-rightcols {
        padding: 30px;
    }
    .cops-cltitle h4 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .cops-cltxt {
        margin-bottom: 16px;
    }
    .ourbs-title h2 {
        font-size: 36px;
        margin-bottom: 18px;
    }
    .cops-rightcols {
        margin: 0 0 20px 20px;
    }
    .cops-rightrow .slick-list {
        padding-left: 0 !important;
        margin: 0 -18px;
    }
    .journeytitle h2,
    .teamtitle h2 {
        margin-bottom: 20px;
    }
    .journey-sticky {
        display: none;
    }
    .journey-right {
        order: 0;
        display: none;
    }
    .gallery-row {
        margin: 0 -10px;
    }
    .gallery-cols {
        width: 50%;
        padding: 0 10px;
    }
    .gallery-cols.galleryvideo {
        height: 280px;
    }
    .journey-cols {
        padding: 0;
        margin: 0 4px;
        opacity: 30%;
        transition: opacity 500ms;
    }
    .journey-cols.slick-active {
        opacity: 1;
    }
    .hero-contact-sec:before {
        height: 100%;
        width: 100%;
    }
    .hero-contact-fullwidth .hero-contact-title h1 {
        font-size: 48px;
        line-height: 50px;
    }
    .hero-contact-fullwidth .hero-contact-title {
        max-width: 280px;
    }
    .hero-contact-sec .contact_form-left {
        width: 100%;
    }
    .hero-contact-sec .contact_form-right {
        padding: 30px 25px;
        width: 100%;
        margin-top: 60px;
    }
    .hero-contact-sec .contact_form {
        margin-top: 60px;
    }
    .hero-contact-sec.hp-shapesec:after {
        height: 1180px;
        width: 1950px;
    }
    .hero-contact-sec .find-us-main {
        margin-top: 30px;
        max-width: 100%;
        padding-right: 0;
    }
    .hero-contact-sec .hsi-text {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 25px;
    }
    .hero-contact-sec .find-us {
        padding-top: 25px;
    }
    .hero-contact-sec .contact-img {
        margin-right: 0;
        width: 100%;
    }
    .hero-crightsubtitle h2 {
        letter-spacing: 0;
        font-size: 36px;
        margin-bottom: 16px;
    }
    .hero-contact-half .hero-contactright {
        margin-top: 30px;
    }
    .hero-contact-half .hero-contact-title h1 {
        letter-spacing: 0;
    }
    .strategycoltxt a {
        font-size: 14px;
        line-height: 26px;
    }
    .journey-cols:before,
    .journey-cols:after,
    .active-border,
    .bglinkslide {
        display: none;
    }
    .journey-row .slick-list {
        padding: 0 60px 0 0;
    }
    .journey-row .slick-list.last-slide-active {
        padding: 0;
    }
    .journey-cols-inn {
        display: flex;
        flex-flow: column-reverse;
    }
    .journey-cols-tops {
        padding: 80px 10px 10px;
        position: relative;
    }
    .journey-leftimg {
        display: block;
    }
    .journey-leftimg img {
        max-height: 192px;
        min-height: 192px;
        object-fit: cover;
    }
    .journeyScroll {
        display: none;
    }
    .systemSection h1 {
        font-size: 36px;
    }
    .systemSection {
        padding: 120px 0 60px;
    }
}
@media (max-width: 480px) {
    .strategyright {
        width: 100%;
        margin-top: 20px;
    }
    .strategyicon {
        margin-right: 0;
        width: 100%;
        margin-top: 0;
    }
    .hero-productbImages {
        min-height: 180px;
    }
    .teamcols {
        width: 100%;
        margin-right: 0 !important;
    }
    .bpi-mdlimg a {
        padding-top: 110%;
    }
    .bpi-fimg {
        padding-top: 56.25%;
    }
    .rw-bl-col:nth-child(14n + 10),
    .rw-bl-col:nth-child(14n + 2) {
        min-height: 320px;
    }
    .ks-event-acontent {
        max-width: 150px;
    }
    .ks-event-aimg {
        margin-right: 13px;
        width: 100px;
    }
    /*   .gallery-row { column-count: 2; column-gap: 8px; } */
    a.gallery-icon {
        height: 60px;
        width: 60px;
    }
    a.gallery-icon img {
        margin-bottom: -24px;
        margin-left: 24px;
        max-width: 15px !important;
    }
    .gallery-cols.galleryvideo {
        height: 200px;
    }
}
#particles-js {
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
}
.hs_cos_wrapper_button a {
    background-color: blue;
}
.hrpn-hdrtext {
    margin-top: 35px;
}
.hero-product {
    position: relative;
}
.hero-product:before {
    content: '';
    background-repeat: no-repeat;
    height: 100%;
    position: absolute;
    top: 0;
    background-position: 100% 0;
    opacity: 30%;
    right: 0;
    width: 100%;
}
.heroparRight.hero-product-Right {
    padding-left: 0px;
    width: 55%;
}
.heroparLeft.hero-product-Left {
    width: 45%;
    padding-right: 30px;
}
.heroparsubtitle h2 {
    font-size: 44px;
    line-height: 1.22;
    letter-spacing: -0.88px;
}
.heroproductText {
    margin-bottom: 0;
}
.lff-bigs-true .heroparLeft.hero-product-Left {
    width: 55%;
}
.lff-bigs-true .heroparRight.hero-product-Right {
    width: 45%;
}
.strategyinner {
    max-width: 1087px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.strategytitle h2 {
    letter-spacing: -1.62px;
}
.strategyheader {
    margin-bottom: 60px;
}
.strategyrow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 60px;
}
.strategycols {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.strategyicon {
    width: 79px;
    margin-right: 34px;
    margin-top: 7px;
}
.strategyright {
    width: calc(100% - 113px);
}
.strategycoltitle h3 {
    margin-bottom: 20px;
}
.strategycoltxt a {
    vertical-align: baseline;
    display: inline;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.strategycoltxt * {
    vertical-align: middle;
}
.techstack-sec {
    position: relative;
    z-index: 2;
}
.techstack-row {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 100px;
}
.techstack-cols {
    width: 100%;
}
.techstack-colstitle h2 {
    margin-bottom: 30px;
    font-size: 44px;
    line-height: 1.22;
    letter-spacing: -0.88px;
}
.techstack-colstxt p:not(:last-child) {
    margin-bottom: 20px;
}
.techstack-inner {
    border-bottom: 1px solid;
}
.psp-sec {
    position: relative;
    z-index: 1;
}
.psp-shape:before {
    background: linear-gradient(-30.2deg, var(--aqua-haze) 30.93%, var(--aqua-haze) 131.62%);
    bottom: 0;
    content: '';
    height: 150vw;
    left: 0;
    margin-left: 0;
    position: absolute;
    transform: skewX(-50deg);
    transform-origin: left bottom;
    width: 150vw;
}
.psp-row {
    width: 100%;
}
.psp-header {
    max-width: 864px;
    margin-bottom: 60px;
}
.psp-title h2 {
    letter-spacing: -1.62px;
    margin-bottom: 30px;
}
.psp-cols {
    width: 100%;
}
.psp-colsleft {
    width: 66%;
    margin-right: 8%;
}
.psp-colsright {
    width: 26%;
}
.add-psp-border .psp-colsleft img {
    border-top: 5px solid;
}
.psp-coicon {
    margin-bottom: 30px;
}
.psp-cotxt {
    margin-bottom: 40px;
}
.psp-colsubtitle {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}
.psp-coltitle h2 {
    letter-spacing: -1.62px;
    margin-bottom: 36px;
}
.hero-partner-content-sec {
    position: relative;
}
.hero-productbImages {
    transition: transform, 1s ease-in-out;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 160px 0 0;
    min-height: 600px;
}
.hp-shapesec:after {
    z-index: -1;
    content: '';
    width: 4700px;
    height: 2860px;
    left: 50%;
    margin-left: -120px;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center;
}
.partnership-sec {
    position: relative;
    z-index: 11;
}
.rps-sec {
    position: relative;
    z-index: 2;
}
.journey-sec {
    position: relative;
    z-index: 2;
}
.journey-header {
    margin-bottom: 60px;
}
.journey-row {
    width: 100%;
}
.journey-left {
    position: relative;
    width: 40%;
    float: left;
}
.journey-right {
    position: relative;
    width: 55%;
    float: left;
    margin-left: 5%;
}
.journey-cols {
    transition: all ease-in-out 500ms;
    position: relative;
    padding-left: 80px;
    padding-bottom: 300px;
}
.journey-cols.active ~ .journey-cols {
    opacity: 0.2;
}
.journey-cols:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 7px;
    width: 2px;
    height: 100%;
    background-color: var(--pastel-pink);
}
.journey-cols:after {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--rose);
}
.active-border {
    transition: all ease-in-out 500ms;
    content: '';
    position: absolute;
    top: 30px;
    left: 7px;
    width: 2px;
    height: 0%;
    background-color: var(--rose);
}
.journey-cols:nth-last-child(1) .active-border,
.journey-cols:nth-last-child(1):before {
    display: none;
}
.journey-cltxt p:last-child {
    margin-bottom: 0;
}
.journey-year {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42;
    margin-bottom: 3px;
}
.journey-cltitle h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}
.journey-cols.active {
    opacity: 1;
}
.journey-cols.active
    .active-border:not(.journey-cols.active ~ .journey-cols .active-border) {
    height: 100%;
}
.journeytitle h2 {
    margin-bottom: 36px;
}
.journeyScroll {
    background-color: var(--rose);
    left: 6px;
    position: absolute;
    top: 30px;
    width: 3px;
    z-index: 11;
    transition: min-height 500ms;
}
.teamheader {
    margin-bottom: 60px;
}
.teamrow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 81px;
}
.teamcols {
    width: 18.1%;
    margin-right: 2.3%;
}
.teamcols:nth-child(5n) {
    margin-right: 0;
}
.teamcols:nth-child(2n) {
    margin-top: 62px;
}
.teamcolimg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    width: 100%;
    padding-top: 294px;
    border-top: 2px solid var(--midnight);
}
.teamcolcontent {
    width: 87.31%;
    float: right;
    background: #fff;
    padding: 20px;
    margin-top: -40px;
}
.teamcolsubtitle {
    margin-bottom: 4px;
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}
.teamcoltitle h5 {
    margin-bottom: 6px;
}
.teamcoltxt {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.81;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000000;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.popupoverlay {
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 50%;
}
.popupinner {
    width: 100%;
    position: relative;
    margin: 50px 30px;
    padding-top: 600px;
    max-width: 1200px;
}
.popupinner iframe {
    border: 0;
    outline: 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.popup.showpopup {
    display: flex;
}
body.opnpup {
    overflow: hidden;
}
.close {
    cursor: pointer;
    position: absolute;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: #fff;
}
.close:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 4px;
    height: 30px;
    border-radius: 4px;
    background: var(--rose);
}
.close:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: var(--rose);
}
.op-video {
    position: relative;
}
.op-video a:before {
    transition: inherit;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    background-image: url("https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Frame%20570.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.bpvideo-popup-video a:hover:before {
    transform: translate(-50%, -50%) scale(1.2);
}
.op-climg {
    transition: transform 1s ease-in-out;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 87%;
    width: 100%;
}
.op-video .op-climg {
    padding-top: 62.687%;
}
.contentsmall .lwr-content {
    padding-right: 0;
}
.bglinkslide {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.journey-innerright.journeyunstick {
    position: absolute !important;
    bottom: 0;
    top: auto !important;
}
.journey-leftimg {
    display: none;
}
.journey-sticky {
    position: absolute;
    transition: all 500ms ease-in-out;
    opacity: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding-top: 56.66%;
    margin: 30px 0 0;
}
.journey-innerright {
    width: 720px;
}
.journey-sticky.active {
    display: block;
    opacity: 1;
}
.journey-innerright.journeyunstick .journey-sticky {
    bottom: 0;
}
.journey-mob-slide-line {
    display: none;
}
.journey-cols.slick-slide .journey-mob-slide-line {
    transition: background-color 500ms;
    display: block;
    background-color: var(--pastel-pink);
    width: calc(100% + 8px);
    height: 2px;
    position: absolute;
    top: 30px;
    left: 0;
}
.journey-cols.slick-slide .journey-mob-slide-line:before {
    transition: background-color 500ms;
    content: '';
    background-color: var(--pastel-pink);
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
}
.journey-cols.slick-active .journey-mob-slide-line {
    background-color: var(--rose);
}
.journey-cols.slick-active .journey-mob-slide-line:before {
    background-color: var(--rose);
}
.body-container--about .git-sec:before {
    margin-left: -800px;
}
.body-container--about .git-sec {
    overflow: initial;
}
.hero-listingsec {
    position: relative;
    z-index: 1;
}
.hero-listingsec:after {
    content: '';
    height: 2860px;
    left: 50%;
    margin-left: -160px;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center;
    width: 4700px;
    z-index: -1;
}
.hero-listingsec:before {
    opacity: 30%;
    background-size: contain;
    background-position: 100% 0;
    background-repeat: no-repeat;
    content: '';
    height: 1768.93px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.hlinner {
    width: 100%;
}
.hlinner {
    border-bottom: 1px solid;
}
.hlleft {
    width: 35%;
    float: left;
}
.hlright {
    width: 57.41%;
    float: left;
    margin-left: 7.59%;
}
.hlsubtitle h6 {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hltitle h1 {
    letter-spacing: -1.62px;
    margin-bottom: 30px;
}
.hl-text {
    margin-bottom: 30px;
}
.rw-bloglst {
    position: relative;
    z-index: 2;
}
ul.rw-bltags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.rw-bltags li a {
    text-align: center;
    font-weight: 700;
    font-family: Helvetica;
    border: 2px solid #fff;
    padding: 10px 32px;
    background-color: #fff;
    color: var(--midnight);
    font-size: 16px;
    line-height: 20px;
}
.rw-bltags li a:hover,
.rw-bltags li a.is-checked {
    border-color: var(--rose);
    background-color: var(--rose);
    color: #fff;
}
.rw-bltags li.activetab a {
    border-color: var(--rose);
}
.bp-back {
    margin-bottom: 60px;
    padding: 0 48px;
}
.bp-backbtn {
    line-height: 20px;
}
.bp-backbtn a {
    font-family: Helvetica;
    position: relative;
    color: var(--midnight);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding-left: 26px;
}
.bp-backbtn a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--midnight);
    border-right: 2px solid var(--midnight);
    transform: translateY(-50%) rotate(-135deg);
    margin-left: 2px;
}
.bp-backbtn a:after {
    border-radius: 2px;
    border-top: 2px solid var(--midnight);
    content: '';
    height: 2px;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in;
    width: 0;
}
.bp-backbtn a:hover {
    padding-left: 32px;
}
.bp-backbtn a:hover:after {
    width: 18px;
}
.bpi-tags a {
    margin-right: 10px;
    font-family: Helvetica;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
.bpi-top {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bpi-time {
    position: relative;
    margin-left: 14px;
    font-family: Helvetica;
    font-size: 10px;
    line-height: 16px;
    color: var(--pickled-bluewood);
}
.bpi-time:before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--pickled-bluewood);
}
.bpi-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bpi-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.bpi-left {
    width: 55%;
    float: left;
}
.bpi-right {
    width: 22%;
    margin-left: 11%;
    float: left;
}
.bpi-author {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.bpi-left h1 {
    letter-spacing: -3.92px;
}
.bpi-aimg a {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 123.12%;
    border-top: 2px solid var(--midnight);
}
.bpi-aimg {
    width: 39%;
    float: left;
}
.bpi-acontent {
    width: 55%;
    float: left;
    margin-left: 5%;
}
.bpi-acontent a {
    font-family: Helvetica;
    font-size: 20px;
    color: var(--midnight);
    text-decoration: underline !important;
    font-weight: 700;
}
.bpi-acontent a:hover {
    color: var(--rose);
}
.bpi-fimg {
    margin-top: 140px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 46%;
    float: left;
}
.bpi-modalpup {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bpi-modalpup.is-visible {
    display: flex;
}
.bpi-modalpupoverlay {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--midnight)cc;
    opacity: 80%;
}
.bpi-modlauthor {
    overflow: auto;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
    max-width: 1088px;
    position: relative;
    z-index: 9;
    padding: 60px;
}
.bpi-mdlcontent {
    width: 60%;
    float: left;
}
.bpi-mdlimg {
    width: 36.5%;
    float: left;
    margin-left: 3.5%;
}
.bpi-mdlimg a {
    border-top: 3px solid var(--midnight);
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 124%;
}
.bpi-modalclose {
    width: 34px;
    height: 34px;
    position: absolute;
    z-index: 1;
    top: 16px;
    right: 16px;
}
.bpi-modalclose:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--rose);
}
.bpi-modalclose:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 20px;
    width: 2px;
    border-radius: 2px;
    background-color: var(--rose);
}
.bpi-insigtcontent {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.bpi-icontent {
    color: var(--pickled-bluewood);
}
.bpi-icontent p span {
    font-size: 24px;
    line-height: 1.58;
}
.bpi-icontent p {
    margin-bottom: 15px;
}
.bpi-icontent p:last-child {
    margin-bottom: 0;
}
.bpi-icontent p a {
    display: inline;
    vertical-align: baseline;
}
.bpi-icontent a {
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
    vertical-align: top;
    text-decoration: underline !important;
}
.bpi-icontent h2 {
    font-size: 44px;
    line-height: 1.22;
    letter-spacing: -0.88px;
    margin-top: 120px;
    margin-bottom: 35px;
}
.bpi-akey {
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 7px;
}
.bpi-icontent h2:first-child {
    margin-top: 0;
}
.bpi-shareblog {
    margin-top: 120px;
}
.bpi-shareinner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bpi-sharetitle {
    line-height: 1.85;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
    width: 100%;
}
.bpi-sharelist {
    width: 100%;
}
.bpi-sharelist ul {
    row-gap: 8px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bpi-sharelist ul li {
    margin-left: 4px;
    margin-right: 4px;
}
.bpi-sharelist ul li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--pickled-bluewood);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.bpi-sharelist ul li a svg {
    width: 16px;
}
.bpi-sharelist ul li a.clipboard {
    position: relative;
}
.bpi-sharelist ul li a.clipboard p.hovertxt {
    box-shadow: 0 0 10px 0 rgb(0 12 5 / 30%);
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    background-color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--rose);
    margin: 0;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 18px;
}
.bpi-sharelist ul li a.clipboard p.hovertxt.show {
    display: flex;
}
.bpi-postbody,
.bpi-shareblog {
    position: relative;
    z-index: 2;
}
.rbp-sec {
    position: relative;
    z-index: 1;
}
.rbp-row {
    margin-top: 50px;
    gap: 2.5%;
    row-gap: 48px;
}
.rbp-cols {
    width: 31.66333%;
    position: relative;
}
.rbp-fi {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 87%;
    width: 100%;
}
.rbp-content {
    margin-top: 30px;
    padding-right: 40px;
}
.rbp-tags,
.rbp-tags a {
    color: var(--rose);
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.rbp-tags a {
    margin-right: 5px;
}
.rbp-colstitle h3 {
    margin-bottom: 18px;
}
.rbp-colstitle h3 a {
    color: var(--midnight);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: -0.3px;
}
.rbp-clstext * {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
    font-size: 14px;
    line-height: 1.85;
    color: var(--pickled-bluewood);
    font-weight: 400;
}
.rbp-colstitle h3 a:hover {
    color: var(--rose);
}
.authorbp-sec {
    position: relative;
}
.authorbp-rowouter > h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.88px;
}
.authorbp-row {
    margin-top: 50px;
    gap: 2.5%;
    row-gap: 48px;
}
.authorbp-cols {
    width: 31.66333%;
    position: relative;
}
.authorbp-fi {
    transition: all 0.6s ease;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 87%;
    width: 100%;
}
.authorbp-content {
    margin-top: 30px;
    padding-right: 40px;
}
.authorbp-tags,
.authorbp-tags a {
    color: var(--rose);
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.authorbp-tags a {
    margin-right: 5px;
}
.authorbp-colstitle h3 {
    margin-bottom: 18px;
}
.authorbp-colstitle h3 a {
    color: var(--midnight);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: -0.3px;
}
.authorbp-clstext * {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
    font-size: 14px;
    line-height: 1.85;
    color: var(--pickled-bluewood);
}
.authorbp-colstitle h3 a:hover {
    color: var(--rose);
}
.authorbp-sec:before {
    bottom: 0;
    content: '';
    height: 110vw;
    left: 0%;
    margin-left: 0;
    position: absolute;
    transform: skewX(-45deg);
    transform-origin: left bottom;
    width: 110vw;
}
.bpi-mdlkey {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: var(--rose);
    margin-bottom: 10px;
}
.bpi-mdltitle {
    margin-bottom: 12px;
}
.bpi-mdltitle a {
    color: var(--midnight);
    font-size: 40px;
    letter-spacing: -0.8px;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.35;
}
.bpi-mdlposition {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--midnight);
    margin-bottom: 28px;
}
.bpi-mdlbio {
    max-width: 500px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--pickled-bluewood);
}
.openmdlhtmpup {
    overflow: hidden;
}
.bpv-title h1 {
    margin-top: 20px;
    letter-spacing: -3.92px;
}
.bpvInsightinner {
    max-width: 1088px;
}
.bpvideo-popup-video a {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 56.25%;
}
.bpvideo-popup-video.op-video a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bpvideo-popup-video.op-video a:before {
    display: none;
    height: 98px;
    width: 98px;
}
.bpvideo-popup-video.op-video a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 3px;
}
.bpvideo-popup-video {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.blogpost-Video .rbp-sec:before {
    background-color: var(--aqua-haze);
    bottom: 0;
    content: '';
    height: 130vh;
    left: 50%;
    margin-left: 0;
    position: absolute;
    transform: skewX(-45deg);
    transform-origin: left bottom;
    width: 130vw;
}
.rbpvdo-fi {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 31.345%;
    display: block;
}
.blogpost-Report {
    width: 100%;
    float: left;
    background: var(--midnight);
    color: #fff;
}
.bpr-backbtn.bp-backbtn a {
    color: #fff;
}
.bpr-backbtn.bp-backbtn a:before {
    border-color: #fff;
}
.bpr-backbtn.bp-backbtn a:after {
    border-radius: 2px;
    border-top: 2px solid #fff;
    content: '';
    height: 2px;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in;
    width: 0;
}
.bpr-backbtn.bp-backbtn a:hover {
    padding-left: 32px;
}
.bpr-backbtn.bp-backbtn a:hover:after {
    width: 18px;
}
.bpr-tags,
.bpr-tags a {
    color: var(--rose);
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.bpr-tags a {
    margin-right: 5px;
}
.bpr-tags a:hover {
    color: #fff;
}
.bpr-indightouter {
    position: relative;
    z-index: 1;
}
.bpr-indightouter .wrapper {
    position: static;
}
.bpReportLeft {
    width: 70%;
    float: left;
    margin-right: 20%;
}
.bpReportRight {
    z-index: -1;
    width: 56%;
    position: absolute;
    top: 0;
    right: 0;
    float: left;
}
.bpReportRight:before {
    transform: rotate(-180deg);
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 159px;
    background: linear-gradient(180deg, var(--midnight) 0%, rgba(0, 12, 54, 0) 100%);
}
.bpReportRight:after {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 159px;
    background: linear-gradient(180deg, var(--midnight) 0%, rgba(0, 12, 54, 0) 100%);
}
.bpr-title h1 {
    letter-spacing: -3.92px;
    color: #fff;
    margin-bottom: 50px;
}
.bpi-author.bpr-author {
    justify-content: flex-start;
}
.bpr-author .bpi-aimg {
    width: 112px;
}
.bpr-author .bpi-acontent a {
    color: #fff;
}
.bpr-author .bpi-aposition {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    margin-top: 6px;
}
.bpr-author .bpi-acontent {
    margin-left: 3.28%;
}
.bpr-author .bpi-acontent a:hover {
    color: var(--rose);
}
.bpr-reportpostbody *:not(a) {
    color: #fff;
}
.twocolbp-cols.bpr-twocls .twocolbp-left {
    width: 60%;
    float: left;
}
.twocolbp-cols.bpr-twocls .twocolbp-right {
    margin-left: 10%;
    width: 30%;
    float: left;
}
.twocolbp-ltitle h2 {
    color: #fff;
    letter-spacing: -0.88px;
    font-size: 44px;
    line-height: 1.22;
    margin-bottom: 34px;
}
.twocolbp-ltxt {
    color: #fff;
    opacity: 80%;
}
.twocolbp-ltxt ul {
    margin-top: 25px;
}
.twocolbp-ltxt ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}
.twocolbp-ltxt ul li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--rose);
}
.twocolbp-cols {
    margin-bottom: 140px;
}
.twocolbp-cols:last-child {
    margin-bottom: 0;
}
.bpr-twocls .bpreport-reversecls .twocolbp-right {
    order: 0;
    margin-left: 0;
    margin-right: 10%;
}
.bpr-twocls .bpreport-reversecls .twocolbp-left {
    order: 1;
}
.twocolbp-cols.bpr-singlecls {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.twocolbp-ltxt p {
    margin-bottom: 20px;
}
.twocolbp-ltxt p:last-child {
    margin-bottom: 0;
}
.ctabannerbp-sec {
    position: relative;
    z-index: 1;
}
.cb-bgsec {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 144px);
    height: 100%;
    z-index: -1;
}
.ctabannerbptitle h2 {
    color: #fff;
}
.ctabannerbp-inner {
    max-width: 975px;
}
.ctabannerbptitle h2 {
    letter-spacing: -1.62px;
    margin-bottom: 40px;
}
.ctabannerbpsubtitle h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.46;
    margin-bottom: 40px;
}
.ctabannerbp-text {
    margin-bottom: 40px;
}
.ctabannerbp-text * {
    color: #fff;
}
.ctabannerbp-btn.btn a {
    background-image: none;
    padding-right: 24px;
}
.ctabannerbp-btn.btn a:after {
    display: none;
}
.ctabannerbp-btn.btn a span {
    padding-right: 29px;
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Union.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 18px auto;
}
.ctabannerbp-btn.btn a:after {
    display: none;
}
.ctabannerbp-btn.btn a:hover {
    padding-right: 24px;
}
.bpi-sharelist.bpr-reportsharelist ul li a {
    background-color: #fff;
}
.bpi-sharelist.bpr-reportsharelist ul li a svg path {
    fill: var(--midnight);
}
.rbp-fi.rbreport-fi {
    border: 1px solid #fff33;
}
.rbp-colstitle.rbreport-colstitle h3 a {
    color: #fff;
}
.rbp-clstext.rbreport-clstext * {
    color: #fffcc;
}
.rbp-clsbtn a {
    margin-top: 25px;
    align-items: center;
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Right_arrow.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 8px auto;
    display: flex;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding-right: 17px;
    position: relative;
    transition: all 0.4s ease;
    color: var(--rose);
}
.rbp-clsbtn a:after {
    margin-top: -0.5px;
    border-radius: 2px;
    border-top: 2px solid var(--rose);
    content: '';
    height: 2px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.rbp-clsbtn a:hover:after {
    width: 18px;
}
.rbp-clsbtn {
    display: inline-block;
}
.rbp-clsbtn a:hover {
    color: var(--rose);
    padding-right: 32px;
}
.rbp-tags.rbreport-tags a:hover {
    color: #fff;
}
.rbp-colstitle.rbreport-colstitle h3 a:hover {
    color: var(--rose);
}
.rbp-rowouter.rbreport-rowouter > h2 {
    color: #fff;
}
.hero-eventfimg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 36%;
    width: 100%;
}
.bpeventinner {
    display: flex;
    flex-wrap: wrap;
}
.bpeventleft {
    width: 66%;
    float: left;
}
.bpeventright {
    padding-left: 32px;
    width: 34%;
    float: left;
}
.signup-eventsec {
    max-width: 416px;
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
    padding: 70px 60px 40px;
    direction: rtl;
    height: auto !important;
    max-height: 510px;
    overflow-y: auto;
    position: relative;
    width: 100%;
}
.bpeventright > .hs_cos_wrapper {
    height: 100%;
}
.bpevnt-icontent {
    max-width: 784px;
    margin-top: 140px;
}
.sues-title h4 {
    letter-spacing: -0.3px;
    font-size: 30px;
    line-height: 1.26;
    margin-bottom: 25px;
}
.sues-text {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 25px;
}
.sues-btn.btn a {
    display: block;
}
.sues-content {
    border-bottom: 1px solid var(--midnight-glass);
    padding-bottom: 40px;
}
.sues-shareicon {
    padding-top: 34px;
}
.sues-sharetitle {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 10px;
}
.sues-shareicon ul {
    direction: ltr;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
    width: 100%;
}
.sues-shareicon ul li {
    line-height: 0;
    margin-left: 15px;
    margin-right: 15px;
}
.sues-shareicon ul li a svg {
    width: 30px;
}
ul li a.clipboard {
    position: relative;
}
ul li a.clipboard p.hovertxt {
    align-items: center;
    background-color: #fff;
    color: var(--rose);
    display: none;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    left: 0;
    line-height: 18px;
    margin: 0;
    padding: 5px 10px;
    position: absolute;
    text-align: center;
    top: 100%;
    width: max-content;
    box-shadow: 0 0 10px 0 rgb(0 12 5 / 30%);
}
ul li a.clipboard p.hovertxt.show {
    display: flex;
}
.signup-eventsec.signup-stickysec.bpunsticky {
    position: static !important;
}
.bpevnt-header {
    max-width: 752px;
}
.bpevnt-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.bpevnt-tags a {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-right: 10px;
    text-transform: uppercase;
}
.bpevnt-title h1 {
    letter-spacing: -3.92px;
    margin-bottom: 44px;
}
.bpevnt-date {
    font-family: Helvetica;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.46;
    margin-bottom: 40px;
}
.bpevnt-timelocation ul {
    display: flex;
    flex-wrap: wrap;
}
.bpevnt-timelocation ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    width: 100%;
    margin-bottom: 16px;
}
.bpevnt-timelocation ul li:last-child {
    margin-bottom: 0;
}
.bpevnt-timelocation ul li img {
    margin-right: 12px;
}
.bpevnt-icontent img {
    margin-top: 120px;
}
.bpevnt-icontent:first-child {
    margin-top: 0;
}
.bpi-icontent ul {
    margin-top: 25px;
}
.bpi-icontent ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}
.bpi-icontent ul li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--rose);
}
.testimonial-event {
    margin-top: 120px;
}
.tms-eventcols {
    max-width: 786px;
}
.tms-eventcls-text {
    margin-bottom: 40px;
    font-family: Helvetica;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.46;
    color: var(--midnight);
}
.tms-eventcls-text span {
    float: left;
    margin-right: 15px;
    vertical-align: top;
}
.tms-event-name {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}
.tms-event-description {
    font-size: 14px;
    line-height: 1.85;
}
.ks-eventrow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 60px;
    column-gap: 32px;
}
.ks-event-author {
    width: calc(50% - 16px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.ks-event-aimg {
    width: 112px;
    margin-right: 30px;
}
.ks-event-aimg a:not(.ks-event-innerauthor) {
    padding-top: 123.12%;
    width: 100%;
    border-top: 2px solid var(--midnight);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
.ks-event-akey {
    color: var(--rose);
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.ks-event-acontent a {
    color: var(--midnight);
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    text-decoration: underline !important;
}
.bpi-aposition,
.ks-event-aposition {
    margin-top: 5px;
    font-size: 12px;
    color: var(--midnight);
    line-height: 1.81;
}
.ks-eventtitle h2 {
    font-size: 44px;
    letter-spacing: -0.88px;
    line-height: 1.22;
    margin-bottom: 45px;
}
.ks-eventsec {
    margin-top: 120px;
}
.ks-event-modalpup {
    align-items: center;
    display: none;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
.ks-event-modalpup.popup_body_show {
    display: flex;
}
.ks-event-modalpupoverlay {
    background-color: var(--midnight)cc;
    height: 100%;
    left: 0;
    opacity: 80%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}
.ks-eventmodalclose {
    height: 34px;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 34px;
    z-index: 1;
}
.ks-eventmodalclose:after {
    background-color: var(--rose);
    border-radius: 2px;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 20px;
    width: 2px;
}
.ks-eventmodalclose:before {
    background-color: var(--rose);
    border-radius: 2px;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 2px;
    width: 20px;
}
.ks-event-innerauthor {
    width: 100%;
    display: flex;
    align-items: center;
}
.sues-popupform {
    align-items: center;
    display: none;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
.sues-popupform.popup_sues_show {
    display: flex;
}
.sues-popupformoverlay {
    cursor: pointer;
    background-color: var(--midnight)cc;
    height: 100%;
    left: 0;
    opacity: 80%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}
.sues-pfinner {
    direction: ltr;
    text-align: left;
    overflow: auto;
    margin: 30px;
    position: relative;
    z-index: 9;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
    padding: 70px 60px;
    max-width: 640px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sues-pfinner > div {
    width: 100%;
}
.sues-pfclose {
    cursor: pointer;
    height: 34px;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 34px;
    z-index: 1;
}
.sues-pfinner .sues-pfclose {
    width: 34px;
}
.sues-pfclose:after {
    background-color: var(--rose);
    border-radius: 2px;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 20px;
    width: 2px;
}
.sues-pfclose:before {
    background-color: var(--rose);
    border-radius: 2px;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 2px;
    width: 20px;
}
.sues-pftitle h2 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.35;
    letter-spacing: -0.8px;
}
.sues-pftext {
    font-size: 14px;
    line-height: 1.85;
}
.sues-pform textarea,
.sues-pform input[type="text"],
.sues-pform input[type="number"],
.sues-pform input[type="email"],
.sues-pform input[type="tel"],
.sues-pform select,
.sues-pform input[type="date"] {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--midnight-glass);
    outline: none;
    background: #fff;
    font-size: 20px;
    line-height: 30px;
    font-family: Helvetica;
    font-weight: 400;
    color: var(--midnight);
    min-height: 57px;
    margin: 0;
    padding: 10px 0px;
    -webkit-appearance: none;
}
.sues-pform input[type="date"] {
    width: 100%;
}
.sues-pform input[type="submit"] {
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/right-arrow.svg);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 8px auto;
    border-radius: 0;
    padding: 8px 44px 8px 24px;
    text-align: center;
    background-color: var(--rose);
    outline: none;
    font-size: 16px;
    line-height: 24px;
    font-family: Helvetica;
    font-weight: 700;
    color: #fff;
    min-height: 48px;
    margin: 0;
    transition: all 0.4s ease;
    -webkit-appearance: none;
}
.sues-pform .hs-form-required {
    color: var(--rose);
}
.sues-pform .hs-error-msgs {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    font-size: 12px;
}
.sues-pform fieldset {
    max-width: 100% !important;
}
.sues-pform .input {
    margin-right: 0 !important;
}
.sues-pform .form-columns-2 .hs-form-field {
    width: 49% !important;
    float: left;
    margin-right: 2%;
}
.sues-pform .form-columns-2 div.hs-form-field + div.hs-form-field {
    margin-right: 0;
}
.sues-pform label {
    font-family: Roboto Slab, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: var(--midnight);
    position: relative;
    z-index: 1;
}
.sues-pform .hs-form-field > label {
    margin-bottom: -14px;
}
.sues-pform .hs-dateinput:before {
    right: 0;
}
.sues-pform form {
    font-family: Roboto Slab, serif;
}
.sues-pform form ul.inputs-list li label.hs-form-booleancheckbox-display {
    min-height: 24px;
    position: relative;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"] {
    opacity: 0;
    height: 24px;
    width: 24px;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span
    p {
    margin-left: 0 !important;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span {
    transition: all 0.3s ease;
    margin-left: 0 !important;
    padding-left: 34px;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span:before {
    transition: all 0.3s ease;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--rose);
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span:after {
    transition: all 0.3s ease;
    opacity: 0;
    content: '';
    position: absolute;
    top: 6px;
    left: 5px;
    width: 15px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"]:checked
    + span:after {
    opacity: 1;
}
.sues-pform
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"]:checked
    + span:before {
    background: var(--rose);
}
.sues-pform form li.hs-form-booleancheckbox {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}
.sues-pform form .grecaptcha-badge {
    margin-left: 0;
}
.sues-pform .legal-consent-container ~ .hs_recaptcha {
    float: left;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
}
.sues-pform form .actions {
    transition: all 0.4s ease;
    margin-top: 40px;
    display: inline-block;
    position: relative;
}
.sues-pform form .actions:after {
    border-radius: 2px;
    border-top: 2px solid #fff;
    content: '';
    height: 2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.sues-pform form .actions:hover:after {
    width: 18px;
}
.sues-pform .actions:hover input[type="submit"] {
    background-color: var(--rose);
    color: #fff;
    padding-right: 65px;
}
.sues-pform form .hs-input::-webkit-input-placeholder {
    color: var(--midnight-glass);
}
.sues-pform form .hs-input::-moz-placeholder {
    color: var(--midnight-glass);
}
.sues-pform form .hs-input:-ms-input-placeholder {
    color: var(--midnight-glass);
}
.sues-pform form .hs-input::placeholder {
    color: var(--midnight-glass);
}
.sues-pform form label.hs-error-msg.hs-main-font-element {
    font-size: 12px;
    line-height: 1.1;
    color: #ef6b51;
}
.sues-pform form ul.no-list.hs-error-msgs.inputs-list li {
    margin-top: 0;
}
.signup-eventsec::-webkit-scrollbar {
    width: 3px;
}
.signup-eventsec::-webkit-scrollbar-track {
    background: #fff;
}
.signup-eventsec::-webkit-scrollbar-thumb {
    background: var(--rose);
}
.sues-pfinner::-webkit-scrollbar {
    width: 3px;
}
.sues-pfinner::-webkit-scrollbar-track {
    background: #fff;
}
.sues-pfinner::-webkit-scrollbar-thumb {
    background: var(--rose);
}
.rbp-cols.Event .rbp-fi {
    padding-top: 50%;
}
.rw-bl-crow {
    width: 100%;
    margin-top: 80px;
    column-gap: 32px;
    row-gap: 80px;
}
.rw-bl-col {
    /* width: calc(33.33% - 32px); */
    width: calc(33.33% - 21.9px);
    float: left;
}
.rbp-colsbtns {
    display: none;
}
.rbp-colsbtns a {
    color: var(--rose);
    align-items: center;
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Right_arrow.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 8px auto;
    display: flex;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding-right: 17px;
    position: relative;
    transition: all 0.4s ease;
}
.rbp-colsbtns a:after {
    border-radius: 2px;
    border-top: 2px solid var(--rose);
    content: '';
    height: 2px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.rbp-colsbtns a:hover {
    color: var(--rose);
    padding-right: 32px;
}
.rbp-colsbtns a:hover:after {
    width: 18px;
}
.rbp-colsdatetime ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.rbp-colsdatetime ul li {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: Helvetica;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}
.rbp-colsdatetime ul li:last-child {
    margin-bottom: 0;
}
.rbp-colsdatetime ul li img {
    max-width: 24px;
}
.rbp-colsdatetime ul li span {
    margin-left: 8px;
}
.rw-bl-col.Event .rbp-fi {
    padding-top: 50%;
}
.rw-bl-col.Video a.rw-bl-colink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rw-bl-col.Video .rbp-fi {
    position: relative;
    z-index: 1;
}
.rw-bl-col.Video .rbp-fi:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(
        25deg,
        rgba(0, 12, 54, 0.5) 13.47%,
        rgba(0, 12, 54, 0) 83.8%
    );
}
.rw-bl-col.Video a.rw-bl-colink span {
    background-color: var(--rose);
    border-radius: 100px;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.15s;
}
.rw-bl-col.Video a.rw-bl-colink:hover span,
.bpvideo-popup-video.op-video a:hover span {
    transform: scale(1.2);
}
.rw-bl-col.Video a.rw-bl-colink svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.rw-bl-col.Video a.rw-bl-colink span svg,
.bpvideo-popup-video.op-video a span svg {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}
.bpvideo-popup-video.op-video a span {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    background-color: var(--rose);
    border-radius: 100px;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.1.5s;
}
.bpvideo-popup-video.op-video a:hover span {
    transform: translate(-50%, -50%) scale(1.2);
}

.rw-bl-col {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.rw-bl-col:nth-child(14n + 2),
.rw-bl-col:nth-child(14n + 10) {
    width: calc(66.66% - 10px);
    min-height: 473px;
}
.rw-bl-col:nth-child(14n + 2) .rbp-content,
.rw-bl-col:nth-child(14n + 10) .rbp-content {
    margin-top: 0;
    padding: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    z-index: 3;
}
.rw-bl-col:nth-child(14n + 2):before,
.rw-bl-col:nth-child(14n + 10):before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(
        25deg,
        rgba(0, 12, 54, 0.5) 13.47%,
        rgba(0, 12, 54, 0) 83.8%
    );
}
.rw-bl-col:nth-child(14n + 2) .rbp-colstitle h3 a,
.rw-bl-col:nth-child(14n + 10) .rbp-colstitle h3 a {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 2) .rbp-colsdatetime ul li,
.rw-bl-col:nth-child(14n + 10) .rbp-colsdatetime ul li {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 2) .rbp-colsdatetime ul li path.s1,
.rw-bl-col:nth-child(14n + 10) .rbp-colsdatetime ul li path.s1 {
    stroke: #fff;
}
.rw-bl-col:nth-child(14n + 2) .rbp-fi,
.rw-bl-col:nth-child(14n + 10) .rbp-fi {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 0;
    height: 100%;
}
.rw-bl-col:nth-child(14n + 2) .rbp-tags a:hover,
.rw-bl-col:nth-child(14n + 10) .rbp-tags a:hover {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 2) .rbp-colstitle h3 a:hover,
.rw-bl-col:nth-child(14n + 10) .rbp-colstitle h3 a:hover {
    color: var(--rose);
}
.rw-bl-col:nth-child(14n + 2) .rbp-clstext,
.rw-bl-col:nth-child(14n + 10) .rbp-clstext {
    display: none;
}
.rw-bl-col:nth-child(14n + 2) .rbp-colstitle h3,
.rw-bl-col:nth-child(14n + 10) .rbp-colstitle h3 {
    margin-bottom: 0;
}
.rw-bl-col:nth-child(14n + 6) {
    width: 100%;
    background-color: var(--midnight);
    flex-wrap: wrap;
    align-items: center;
    padding-right: 30px;
}
.rw-bl-col.activeclss:nth-child(14n + 6) {
    display: flex !important;
}
.rw-bl-col:nth-child(14n + 6) .rbp-over {
    width: 50%;
    float: left;
    height: 100%;
    padding-top: 0;
}
.rw-bl-col:nth-child(14n + 6) .rbp-over .rbp-fi {
    height: 100%;
}
.rw-bl-col:nth-child(14n + 6) .rbp-content {
    width: 50%;
    margin-top: 0;
    padding-top: 104px;
    padding-bottom: 96px;
    padding-left: 40px;
    max-width: 609px;
    padding-right: 0;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 a {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 {
    font-size: 44px;
    letter-spacing: -0.88px;
    line-height: 1.22;
    margin-bottom: 25px;
}
.rw-bl-col:nth-child(14n + 6) .rbp-clstext {
    max-width: 415px;
}
.rw-bl-col:nth-child(14n + 6) .rbp-clstext * {
    color: #fffcc;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colsbtns {
    margin-top: 32px;
    display: inline-block;
}
.rw-bl-col:nth-child(14n + 6) .rbp-content {
    color: #fffcc;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colsdatetime ul li path.s1 {
    stroke: #fff;
}
.rw-bl-col:nth-child(14n + 6) .rbp-tags a:hover {
    color: #fff;
}
.rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 a:hover {
    color: var(--rose);
}
.rbp-over {
    overflow: hidden;
}
.rbpLinks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
}
.rbp-fi {
    transition: all 0.6s ease;
}
.rw-bl-col-othe:hover .rbp-fi {
    transform: scale(1.05115);
}
.rw-bl-col-othe:hover .rbp-colstitle h3 a {
    text-decoration: underline !important;
}
.newsletter-sec {
    position: relative;
    z-index: 2;
}
.newsletter-inner {
    padding: 100px 40px;
}
.newsletter-row {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.newsletter-left {
    width: 45%;
    float: left;
}
.newsletter-right {
    width: 45%;
    float: left;
    margin-left: 10%;
}
.newsletter-title h2 {
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    font-size: 40px;
    line-height: 1.35;
}
.newsletter-form .form-title {
    padding: 0;
}
.newsletter-form textarea,
.newsletter-form input[type="text"],
.newsletter-form input[type="number"],
.newsletter-form input[type="email"],
.newsletter-form input[type="tel"],
.newsletter-form select {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    font-size: 16px;
    line-height: 24px;
    font-family: Roboto Slab, sans-serif;
    font-weight: 400;
    color: #fff;
    min-height: auto;
    margin: 0;
    padding: 10px 40px 10px 0;
    -webkit-appearance: none;
}
.newsletter-form input[type="submit"] {
    border-radius: 0;
    padding: 0;
    text-align: center;
    background-color: transparent;
    outline: none;
    font-size: 0;
    line-height: 1;
    font-family: Roboto Slab, sans-serif;
    font-weight: 400;
    color: #fff;
    border: 0;
    min-height: auto;
    margin: 0;
    transition: all ease 0.3s;
    -webkit-appearance: none;
}
.newsletter-form input[type="submit"]:hover {
    background-color: transparent;
}
.newsletter-form .hs-form-required {
    display: none;
}
.newsletter-form .hs-error-msgs {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    font-size: 12px;
}
.newsletter-form fieldset {
    max-width: 100% !important;
}
.newsletter-form .input {
    margin-right: 0 !important;
}
.newsletter-form {
    color: #fff;
}
.newsletter-form .hs-input::-webkit-input-placeholder {
    color: #fff33;
}
.newsletter-form .hs-input::-moz-placeholder {
    color: #fff33;
}
.newsletter-form .hs-input:-ms-input-placeholder {
    color: #fff33;
}
.newsletter-form .hs-input::placeholder {
    color: #fff33;
}
.newsletter-form form {
    font-family: Roboto Slab, serif;
    position: relative;
    z-index: 1;
}
.newsletter-form form input[type="submit"] {
    position: absolute;
    z-index: 2;
    top: 9px;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/icon.svg");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: right center;
}
.newsletter-form form .hs-richtext,
.newsletter-form form .hs-richtext p {
    margin-bottom: 0;
}
.newsletter-form form .hs-richtext {
    max-width: 307px;
    color: #fffcc;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.81;
}
.newsletter-rightitle {
    margin-bottom: 20px;
}
.newsletter-form .hs_error_rollup {
    display: none;
}
.totlebpcount {
    margin-bottom: 21px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42;
    font-family: "Poppins", sans-serif;
}
.loadmorebtn {
    position: relative;
    z-index: 2;
    text-align: center;
}
.nlbtn a {
    margin-top: 21px;
    text-align: center;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    background-color: var(--rose);
    padding: 12px 24.58px;
}
.nlbtn a:hover {
    background-color: var(--midnight);
    color: #fff;
}
.blogpost-Event .rbp-sec:before {
    background-color: var(--aqua-haze);
    bottom: 0;
    content: '';
    height: 110vw;
    left: 0;
    margin-left: 0;
    position: absolute;
    transform: skewX(-45deg);
    transform-origin: left bottom;
    width: 110vw;
}
.bpeventsec {
    position: relative;
    z-index: 2;
}
.bpi-videopostbody {
    margin-top: 140px;
}
.lmprogressbar {
    position: relative;
    z-index: 1;
    max-width: 192px;
    background-color: rgba(0, 12, 54, 0.1);
    height: 2px;
    margin-left: auto;
    margin-right: auto;
}
.lmprogressbractive {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    content: '';
    background-color: var(--rose);
    border-radius: 6px;
}
.nlbtn a.loadMore.lowopacity {
    cursor: not-allowed;
    opacity: 50%;
}
.nlbtn a.loadMore.lowopacity:hover {
    background-color: var(--rose);
    color: #fff;
}
.hrpn-btn {
    margin-top: 40px;
}
.zigzag-colsleft img {
    transition: transform 1s ease-out;
}
.zigzag-colsleft {
    width: 57.41%;
    float: left;
    overflow: hidden;
}
.zigzag-colsright {
    width: 34.2%;
    float: left;
}
.zigzag-cols {
    justify-content: space-between;
}
.zigzag-coltitle h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.88px;
    margin-bottom: 36px;
}
.zigzag-cols.reverse-zigzagcol {
    flex-direction: row-reverse;
}
.zigzag-colsleft .zigzag-colsvideo {
    position: relative;
    z-index: 1;
    padding-top: 74.5%;
}
.zigzag-colsleft .zigzag-colsvideo > a {
    transition: transform 1s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.zigzag-colsleft .zigzag-colsvideo > a:before {
    z-index: 1;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98px;
    height: 98px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Frame%20570.svg");
}
.zigzag-coicon {
    margin-top: 40px;
}
.zigzag-shape {
    position: relative;
}
.zigzag-shape:before {
    z-index: -1;
    position: absolute;
    bottom: -1px;
    left: 0;
    margin-left: -250px;
    width: 120vw;
    height: 120vw;
    content: '';
    transform: skewX(-45deg);
    transform-origin: left bottom;
}
.zigzag-btn a {
    margin-top: 30px;
}
.cops-left {
    width: 40.3%;
    float: left;
    position: relative;
}
.cops-leinn {
    width: 100%;
    max-width: 500px;
}
.cops-right {
    width: 51%;
    float: left;
    margin-left: 8.7%;
}
.copstitle h2.h1 {
    letter-spacing: -3.92px;
    margin-bottom: 36px;
}
.cops-text h4 {
    font-size: 26px;
    line-height: 1.46;
}
.cops-btn {
    margin-top: 40px;
}
.cops-rightcols {
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
    position: relative;
    transition: all 0.4s ease;
    padding: 40px;
    margin-bottom: 32px;
}
.cops-rightcols:last-child {
    margin-bottom: 0;
}
.cops-cltitle h4 {
    font-size: 26px;
    line-height: 1.46;
    margin-bottom: 20px;
}
.cops-cltxt {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 20px;
}
.cops-clbtn a {
    align-items: center;
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Right_arrow.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 8px auto;
    display: flex;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding-right: 17px;
    position: relative;
    transition: all 0.4s ease;
}
.cops-clbtn a:after {
    border-radius: 2px;
    border-top: 2px solid var(--rose);
    content: '';
    height: 2px;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.cops-clbtn {
    display: inline-block;
}
.cops-clbtn a:hover {
    padding-right: 32px;
}
.cops-clbtn a:hover:after {
    width: 18px;
}
.cops-rightcols:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.2);
}
.cops-rightcolLink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.cops-rightcols:hover .cops-clbtn a {
    padding-right: 32px;
}
.cops-rightcols:hover .cops-clbtn a:after {
    width: 18px;
}
.cops-leinn.stickthis.copsStick {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
}
.ourbs-row {
    column-gap: 32px;
    row-gap: 60px;
    margin-top: 80px;
}
.ourbs-cols {
    width: calc(33.33% - 21.4px);
    text-align: center;
}
.ourbs-icon img {
    max-width: 88px !important;
}
.ourbs-title h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.88px;
    margin-bottom: 22px;
}
.ourbs-icon {
    margin-bottom: 30px;
}
.ourbs-content h4 {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 26px;
    line-height: 1.46;
    margin-bottom: 22px;
}
.ourbs-ctxt {
    font-size: 14px;
    line-height: 1.85;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 350px;
    margin: 0 auto;
}
.ourbs-btn {
    margin-top: 60px;
}
.ourvlus-row {
    column-gap: 32px;
    row-gap: 60px;
    margin-top: 80px;
}
.ourvlus-title h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.88px;
    margin-bottom: 22px;
}
.ourvlus-cols {
    width: calc(33.33% - 21.3px);
    text-align: center;
}
.ourvlus-icon {
    margin-bottom: 30px;
}
.ourvlus-icon img {
    max-width: 88px !important;
}
.ourvlus-content h3 {
    padding-left: 37.5px;
    padding-right: 37.5px;
    margin-bottom: 22px;
}
.ourvlus-ctxt {
    padding-left: 30.5px;
    padding-right: 30.5px;
}
.ourvlus-btn {
    margin-top: 60px;
}
/* .gallery-row { column-count: 4; column-gap: 32px; } */
.gallery-row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}
.gallery-cols {
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    width: 25%;
    padding: 0 15px;
}
.gallery-colimg {
    overflow: hidden;
    line-height: 0;
    grid-column: 1;
    grid-row: 1/-1;
    width: 100%;
}
a.gallery-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    padding: 10px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
a.gallery-icon:before {
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    transform: skewX(-45deg);
    transform-origin: left bottom;
    background-color: var(--midnight);
}
a.gallery-icon img {
    margin-bottom: -35px;
    margin-left: 30px;
}
.gallery-cols.galleryvideo {
    height: 538px;
}
/* .gallery-cols:first-child .gallery-cinn { padding-top: 101px; }
.gallery-cols:nth-child(2) .gallery-cinn { padding-top: 38px; } */

.gallery-colimg video {
    height: 100%;
    object-fit: fill;
    width: 100%;
}
.gallery-cinn {
    transition: transform 1s ease-out;
    height: 100%;
    break-inside: avoid;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}
.ctabannerbpsubtitle a {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-decoration: underline !important;
}
.gallery-colimg img {
    width: 100%;
    max-height: 304px;
    object-fit: cover;
}
.lwr-shapesec {
    position: relative;
}
.lwr-shapesec:before {
    z-index: -1;
    position: absolute;
    bottom: -1px;
    left: 0;
    margin-left: 0;
    width: 100vw;
    height: 100vw;
    content: '';
    transform: skewX(-45deg);
    transform-origin: left bottom;
}
.teamtitle h2 {
    margin-bottom: 36px;
}
.bpr-reportpostbody .bpi-icontent {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.bpr-reportpostbody .bpi-icontent p {
    opacity: 80%;
}
.bpi-postbody .bpi-icontent {
    max-width: 1088px;
    margin-left: auto;
    margin-right: auto;
}
.main-sec.hero-contact-sec {
    position: relative;
}
.hero-contact-fullwidth .hero-contact-title {
    max-width: 640px;
}
.hero-contact-sec .contact_form-left {
    width: 50%;
    float: left;
}
.hero-contact-sec .contact_form-right {
    position: relative;
    width: 50%;
    padding: 70px 60px;
    float: left;
    margin-top: 100px;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.1);
}
.hero-contact-sec .contact-form form input[type="text"],
.hero-contact-sec .contact-form form input[type="email"],
.hero-contact-sec .contact-form input[type="tel"] {
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--midnight-glass);
    border-radius: 0;
    color: var(--midnight);
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    min-height: 57px;
    outline: none;
    padding: 10px 0;
}
.hero-contact-sec .contact-form form {
    font-family: Roboto Slab;
    line-height: 26px;
}
.hero-contact-sec .contact-form form input:focus-visible {
    outline: none;
}
.hero-contact-sec .contact-form .hs-form-field {
    margin-bottom: 2rem;
}
.hero-contact-sec .contact-form form label {
    margin-bottom: 0;
}
.hero-contact-sec .contact-form .hs-form-required {
    color: var(--rose);
}
.hero-contact-sec .contact-form form li.hs-form-booleancheckbox {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display {
    min-height: 24px;
    position: relative;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"] {
    height: 24px;
    opacity: 0;
    width: 24px;
    margin-right: 10px;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span {
    margin-left: 0 !important;
    padding-left: 34px;
    transition: all 0.3s ease;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span:before {
    border: 1px solid var(--rose);
    content: '';
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
    width: 24px;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input
    + span:after {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    content: '';
    height: 8px;
    left: 5px;
    opacity: 0;
    position: absolute;
    top: 6px;
    transform: rotate(135deg);
    transition: all 0.3s ease;
    width: 15px;
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"]:checked
    + span:before {
    background: var(--rose);
}
.hero-contact-sec
    .contact-form
    form
    ul.inputs-list
    li
    label.hs-form-booleancheckbox-display
    input[type="checkbox"]:checked
    + span:after {
    opacity: 1;
}
.hero-contact-sec .contact-form form .grecaptcha-badge {
    margin-left: 0;
}
.hero-contact-sec
    .contact-form
    .legal-consent-container
    .hs-form-booleancheckbox-display
    > span
    p {
    margin-left: 0 !important;
}
.hero-contact-sec .contact-form form .actions {
    display: inline-block;
    position: relative;
    transition: all 0.4s ease;
    margin-top: 32px;
}
.hero-contact-sec .contact-form input[type="submit"] {
    -webkit-appearance: none;
    background-color: var(--rose);
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/right-arrow.svg);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 8px auto;
    border-radius: 0;
    color: #fff;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    min-height: 48px;
    outline: none;
    padding: 8px 44px 8px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.hero-contact-sec .contact-form form .actions:after {
    border-radius: 2px;
    border-top: 2px solid #fff;
    content: '';
    height: 2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    width: 0;
}
.hero-contact-sec .contact-form .actions:hover input[type="submit"] {
    background-color: var(--rose);
    color: #fff;
    padding-right: 65px;
}
.hero-contact-sec .contact-form form .actions:hover:after {
    width: 18px;
}
.hero-contact-sec .contact-form .legal-consent-container ~ .hs_recaptcha {
    float: left;
    margin-bottom: 0;
    margin-top: 32px;
    width: 100%;
}
.hero-contact-sec .contact-form .hs-form-field > label {
    margin-bottom: -14px;
}
.hero-contact-sec .contact-form label {
    color: var(--midnight);
    font-family: Roboto Slab, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    position: relative;
    z-index: 1;
}
.hero-contact-sec .contact-form form label.hs-error-msg.hs-main-font-element {
    color: #ef6b51;
    font-size: 12px;
    line-height: 1.1;
}
.hero-contact-sec .contact-img {
    padding-top: 100%;
    margin-right: -30%;
    width: calc(100% + 30%);
}
.hero-contact-sec .contact_form {
    margin-top: 140px;
    position: relative;
}
.hero-contact-sec .hsi-text {
    max-width: 100%;
    margin-bottom: 60px;
    font-size: 22px;
    line-height: 36px;
}
.hero-contact-sec .find-us-main {
    max-width: 100%;
    margin-top: 80px;
    padding-right: 50px;
}
.hero-contact-sec .find-us-text {
    max-width: 170px;
}
.hero-contact-sec .find-us-text h5 a {
    color: var(--midnight);
    font-weight: 700;
}
.hero-contact-sec .find-us-text h5 a:hover {
    color: var(--rose);
}
.hero-contact-sec .find-us {
    border-top: 1px solid rgba(1, 22, 42, 0.2);
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.find-us-map-frame {
    width: 100%;
    margin: 30px 0 0;
    box-shadow: 0 0 30px 0 rgba(0, 12, 54, 0.1);
}
.hero-contact-sec .hsi-text p {
    margin: 0;
}
.hero-contact-sec .contact-form form .hs-button,
.hero-contact-sec .contact-form form input[type="submit"] {
    font-size: 16px;
    border-radius: 0;
}
.hero-contact-sec:before {
    background-position: 100% 0 !important;
    background-repeat: no-repeat !important;
    content: '';
    height: 1768px;
    opacity: 30%;
    position: absolute;
    right: 0;
    top: 0;
    width: 92.5%;
}
.hero-contact-sec.hp-shapesec:after {
    height: 2460px;
    margin-left: -290px;
}
.hero-contact-sec .contact_form-right h3.form-title {
    padding: 0;
    margin: 0;
}
.hero-contact-half.hero-contact-header {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 60px;
    align-items: center;
}
.hero-contact-half .hero-contactleft {
    padding-right: 30px;
    width: 50%;
    float: left;
}
.hero-contact-half .hero-contactright {
    width: 42%;
    float: left;
}
.hero-contact-half .hero-contact-title h1 {
    letter-spacing: -3.92px;
}
.hero-crightsubtitle h2 {
    letter-spacing: -0.88px;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 36px;
}
.hero-contact-inner.o2 {
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.hero-contact-inner.o2 .hero-contactleft {
    float: left;
    width: 46%;
}
.hero-contact-inner.o2 .contact_form-right {
    margin: 0;
    width: 46%;
}
.systemSection {
    padding: 160px 0;
    text-align: center;
}
.systemSection h1 {
    text-align: center;
    margin: 0 0 40px;
    font-size: 80px;
    line-height: normal;
}
.systemSection .btn.sysBtn {
    text-align: center;
}
.systemSection .btn.sysBtn a.button {
    border: 0;
    background-color: var(--rose);
    border-radius: 0;
    font-family: Helvetica;
    font-weight: 700;
}
.systemSection form input[type="password"] {
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--midnight-glass);
    border-radius: 0;
    color: var(--midnight);
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    min-height: 57px;
    outline: none;
    padding: 10px 0;
}
.systemSection form input[type="submit"] {
    -webkit-appearance: none;
    background-color: var(--rose);
    background-image: url(https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/right-arrow.svg);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 8px auto;
    border-radius: 0;
    color: #fff;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 30px 0 0;
    min-height: 48px;
    outline: none;
    padding: 8px 44px 8px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.systemSection form {
    max-width: 600px;
    margin: 60px auto 0;
}
@media (min-width: 2200px) {
    .zigzag-shape:before {
        height: 1860px;
        left: 50%;
        width: 4700px;
    }
    .lwr-shapesec:before {
        height: 1860px;
        left: 50%;
        width: 4700px;
    }
    .blogpost-Event .rbp-sec:before,
    .authorbp-sec:before {
        height: 1860px;
        left: 50%;
        width: 4700px;
    }
    .blogpost-Video .rbp-sec:before {
        height: 1860px;
        left: 50%;
        width: 4700px;
    }
}
@media (min-width: 1620px) {
    .hp-shapesec:after {
        margin-left: -290px;
    }
    .body-container--about .git-sec:before {
        margin-left: -950px;
    }
    .hero-listingsec:after {
        margin-left: -320px;
    }
}
@media (max-width: 1540px) {
    .popupinner {
        max-width: 1060px;
    }
}
@media (max-width: 1366px) {
    .hero-product:before {
        width: 100%;
    }
    .psp-coltitle h2 {
        font-size: 38px;
        line-height: 1.3;
    }
    .hero-productbImages {
        min-height: 410px;
    }
    .op-video a:before {
        width: 50px;
        height: 50px;
    }
    .popupinner {
        padding-top: 500px;
        max-width: 888px;
    }
    .teamcols {
        width: 23.27%;
    }
    .teamcols:nth-child(5n) {
        margin-right: 2.3%;
    }
    .teamcols:nth-child(4n) {
        margin-right: 0;
    }
    .teamcolimg {
        padding-top: 260px;
    }
    .teamrow {
        row-gap: 60px;
    }
    .teamcols:nth-child(2n) {
        margin-top: 44px;
    }
    .journey-cols {
        padding-left: 60px;
    }
    .bpi-left {
        width: 58%;
    }
    .bpi-right {
        width: 30%;
    }
    .bpi-modlauthor {
        max-height: 768px;
    }
    .cb-bgsec {
        width: calc(100% - 100px);
    }
    .ctabannerbp-inner {
        max-width: 820px;
    }
    .twocolbp-cols.bpr-twocls .twocolbp-right {
        margin-left: 5%;
        width: 35%;
    }
    .bpr-twocls .bpreport-reversecls .twocolbp-right {
        margin-left: 0;
        margin-right: 5%;
    }
    .twocolbp-ltitle h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 28px;
    }
    .twocolbp-cols {
        margin-bottom: 100px;
    }
    .signup-eventsec {
        max-width: 306px;
        padding: 50px 30px 30px;
    }
    .bpeventright {
        padding-left: 0;
    }
    .sues-btn.btn a {
        padding: 12px 43px 12px 15px;
    }
    .sues-btn.btn a:hover {
        padding-right: 48px;
    }
    .sues-title h4 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .bpeventleft {
        padding-right: 32px;
    }
    .ks-event-acontent {
        max-width: 320px;
    }
    .ks-eventsec {
        margin-top: 100px;
    }
    .bpevnt-icontent,
    .bpevnt-icontent img,
    .testimonial-event {
        margin-top: 100px;
    }
    .tms-eventcls-text {
        margin-bottom: 26px;
        font-size: 22px;
    }
    .tms-eventcls-text span svg {
        width: 38px;
        height: 50px;
    }
    .sues-pfinner {
        max-height: 768px;
        padding: 50px 50px;
    }
    .rbp-content {
        padding-right: 20px;
        margin-top: 24px;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 {
        font-size: 36px;
        letter-spacing: -0.66px;
        margin-bottom: 20px;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-colsbtns {
        margin-top: 24px;
    }
    .rw-bl-crow {
        row-gap: 60px;
    }
    .rw-bl-col.Video a.rw-bl-colink span,
    .bpvideo-popup-video.op-video a span {
        height: 68px;
        width: 68px;
    }
    .newsletter-left {
        width: 48%;
    }
    .newsletter-right {
        width: 48%;
        margin-left: 4%;
    }
    .newsletter-title h2 {
        font-size: 34px;
        letter-spacing: -0.66px;
        margin-bottom: 16px;
    }
    .newsletter-inner {
        padding: 80px 40px;
    }
    .loadmorebtn {
        margin-bottom: 60px;
    }
    .hlright {
        margin-left: 5%;
        width: 55%;
    }
    .hlleft {
        width: 40%;
    }
    .bpi-videopostbody {
        margin-top: 100px;
    }
    .cops-text h4 {
        font-size: 22px;
    }
    .zigzag-coltitle h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 28px;
    }
    .zigzag-colsright {
        width: 35%;
    }
    .ourvlus-ctxt {
        padding-left: 0;
        padding-right: 0;
    }
    .ourvlus-content h3 {
        padding-left: 0;
        padding-right: 0;
    }
    .ourbs-content h4 {
        font-size: 22px;
        margin-bottom: 16px;
        padding-left: 0;
        padding-right: 0;
    }
    .ourbs-ctxt {
        padding-left: 0;
        padding-right: 0;
    }
    .ourbs-row {
        row-gap: 40px;
        margin-top: 60px;
    }
    .gallery-row {
        column-gap: 24px;
    }
    .gallery-cols {
        margin-bottom: 24px;
    }
    .ourbs-icon img {
        max-width: 70px !important;
    }
    .teamtitle h2 {
        margin-bottom: 26px;
    }
    .journeytitle h2 {
        margin-bottom: 26px;
    }
    .journey-innerright {
        width: 495px;
    }
    .gallery-cols.galleryvideo {
        height: 440px;
    }
    .cops-leinn {
        max-width: 360px;
    }
    .hero-contact-sec:before {
        height: 1020px;
        width: 100%;
    }
    .hero-contact-sec.hp-shapesec:after {
        margin-left: -160px;
    }
    .hero-contact-half .hero-contactright {
        width: 47%;
    }
    .hero-crightsubtitle h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 26px;
    }
    .hero-contact-half.hero-contact-header {
        margin-bottom: 0;
    }
    .hero-contact-half .hero-contact-title h1 {
        letter-spacing: -2.92px;
    }
}

@media (max-width: 991px) {
    .heroparsubtitle h2,
    .techstack-colstitle h2 {
        font-size: 36px;
    }
    .techstack-row {
        row-gap: 60px;
    }
    .psp-header {
        margin-bottom: 40px;
    }
    .psp-colsleft {
        margin-right: 0;
        width: 100%;
    }
    .psp-colsright {
        width: 100%;
        margin-top: 40px;
    }
    .psp-title h2 {
        margin-bottom: 20px;
    }
    .psp-cotxt {
        margin-bottom: 30px;
    }
    .psp-coltitle h2 {
        margin-bottom: 20px;
    }
    .techstack-colstitle h2 {
        margin-bottom: 20px;
    }
    .psp-coltitle h2 {
        font-size: 34px;
    }
    .op-video .op-climg {
        padding-top: 87%;
    }
    .popupinner {
        padding-top: 340px;
        max-width: 600px;
    }
    .contentsmall .lwr-content {
        max-width: 100%;
        padding-right: 40px;
    }
    .hero-productbImages {
        margin: 44px 0 0;
        min-height: 310px;
    }
    .heroparLeft.hero-product-Left {
        padding-right: 0;
        width: 100%;
    }
    .heroparRight.hero-product-Right {
        padding-left: 0;
        width: 100%;
    }
    .lff-bigs-true .heroparLeft.hero-product-Left,
    .lff-bigs-true .heroparRight.hero-product-Right {
        width: 100%;
    }
    .hp-shapesec:after {
        height: 1700px;
        width: 2850px;
    }
    .teamcols {
        width: 31.8%;
    }
    .teamcols:nth-child(4n) {
        margin-right: 2.3%;
    }
    .teamcols:nth-child(3n) {
        margin-right: 0;
    }
    .teamcolimg {
        padding-top: 260px;
    }
    .teamrow {
        row-gap: 50px;
    }
    .teamcols:nth-child(2n) {
        margin-top: 0;
    }
    .teamcols:nth-child(3n + 2) {
        margin-top: 44px;
    }
    .journey-cols {
        padding-left: 40px;
    }
    .journey-cltitle h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .journey-cltxt {
        font-size: 16px;
        line-height: 1.6;
    }
    .body-container--about .git-sec:before {
        margin-left: -500px;
    }
    .bp-back {
        padding: 0 30px;
    }
    .bpi-left {
        width: 100%;
    }
    .bpi-right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .bpi-author {
        max-width: 350px;
        justify-content: flex-start;
    }
    .bpi-fimg {
        margin-top: 100px;
    }
    .bpi-icontent p span {
        font-size: 20px;
    }
    .bpi-icontent h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 26px;
        margin-top: 80px;
    }
    .bpi-shareblog {
        margin-top: 60px;
    }
    .rbp-row {
        width: calc(100% + 36px);
        margin-left: -18px;
        margin-right: -18px;
        gap: 0;
        row-gap: 30px;
        margin-top: 20px;
    }
    .rbp-cols.slick-slide {
        margin: 18px;
        width: 100%;
    }
    .rbp-row .slick-dots,
    .authorbp-row .slick-dots {
        margin: 0 18px;
        width: 100%;
        display: flex;
    }
    .rbp-row .slick-dots li,
    .authorbp-row .slick-dots li {
        border-top: 2px solid var(--midnight)1a;
        width: 100%;
        line-height: 0;
    }
    .rbp-row .slick-dots li button,
    .authorbp-row .slick-dots li button {
        display: block;
        width: 100%;
        height: 8px;
        background-color: transparent;
        border-radius: 6px;
        font-size: 0;
        padding: 0;
        border: 0;
        margin: 0;
        margin-top: -5px;
    }
    .rbp-row .slick-dots li.slick-active button,
    .authorbp-row .slick-dots li.slick-active button {
        background-color: var(--rose);
    }
    .rbp-row .slick-dots > li:only-child,
    .authorbp-row .slick-dots > li:only-child {
        display: none;
    }
    .authorbp-cols.slick-slide {
        width: 100%;
        margin: 18px;
    }
    .authorbp-row {
        width: 100%;
        width: calc(100% + 36px);
        margin-left: -18px;
        margin-right: -18px;
        gap: 0;
        row-gap: 20px;
        margin-top: 30px;
    }
    .bpi-modlauthor {
        padding: 40px;
    }
    .bpi-mdltitle a {
        font-size: 32px;
        letter-spacing: -0.6px;
    }
    .bpi-mdlposition {
        margin-bottom: 16px;
    }
    .bpi-modalclose {
        right: 5px;
        top: 5px;
    }
    .bpv-title h1 {
        letter-spacing: -2px;
    }
    .bpReportLeft {
        margin-right: 0;
        width: 100%;
    }
    .bpReportRight {
        text-align: center;
        position: relative;
        width: 100%;
        margin-top: 40px;
    }
    .twocolbp-cols.bpr-twocls .twocolbp-left {
        width: 100%;
    }
    .twocolbp-cols.bpr-twocls .twocolbp-right {
        margin-left: 0;
        width: 100%;
        margin-top: 40px;
    }
    .bpr-twocls .bpreport-reversecls .twocolbp-right {
        margin-right: 0;
        order: 1;
    }
    .bpr-twocls .bpreport-reversecls .twocolbp-left {
        order: 0;
    }
    .twocolbp-cols {
        margin-bottom: 70px;
    }
    .cb-bgsec {
        width: calc(100% - 80px);
    }
    .ctabannerbptitle h2 {
        margin-bottom: 24px;
    }
    .ctabannerbpsubtitle h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .ctabannerbp-inner {
        max-width: 610px;
    }
    .bpr-title h1 {
        letter-spacing: -2px;
    }
    .bpeventleft {
        padding-right: 0;
        width: 100%;
    }
    .bpeventright {
        width: 100%;
    }
    .signup-eventsec {
        direction: ltr;
        padding: 0;
        max-width: 100%;
        position: static !important;
    }
    .signup-eventinner,
    .sues-title,
    .sues-text,
    .sues-shareicon {
        display: none;
    }
    .sues-content {
        height: 48px;
        transition: height 0.25s ease-in-out;
        border: 0;
        padding: 0;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9;
        left: 0;
    }
    .sues-content.popup_mobilesues_show {
        height: 100%;
    }
    .sues-popupform {
        max-height: 767px;
        overflow: auto;
        bottom: 0;
        display: flex;
        top: auto;
        position: relative;
    }
    .sues-popupformoverlay {
        display: none;
    }
    .sues-pfinner {
        margin: 0;
        max-width: 100%;
        max-height: 100%;
        padding: 64px 30px;
    }
    .sues-content.popup_mobilesues_show .sues-btn.btn {
        display: none;
    }
    .sues-btn.btn a:after {
        display: none;
    }
    .sues-btn.btn a {
        background-image: url("https://2125543.fs1.hubspotusercontent-na1.net/hubfs/2125543/Theme%20-%202023/Image/Union%20%281%29.svg");
        background-size: 14px auto;
        text-align: left;
        padding-left: 24px;
        padding-right: 24px;
    }
    .sues-pftitle h2 {
        font-size: 36px;
        letter-spacing: -0.6px;
        margin-bottom: 12px;
    }
    .hero-eventfimg {
        padding-top: 50%;
    }
    .ks-eventsec,
    .bpevnt-icontent,
    .bpevnt-icontent img,
    .testimonial-event {
        margin-top: 80px;
    }
    .ks-eventtitle h2 {
        font-size: 38px;
        letter-spacing: -0.66px;
        margin-bottom: 26px;
    }
    .bpevnt-title h1 {
        letter-spacing: -2px;
        margin-bottom: 30px;
    }
    .bpevnt-date {
        font-size: 22px;
        margin-bottom: 26px;
    }
    .bpevnt-timelocation ul li {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .bpevnt-timelocation ul li img {
        margin-right: 8px;
        max-width: 30px !important;
    }
    .ks-event-author {
        float: left;
        width: calc(50% - 36px);
        margin: 18px;
    }
    .ks-eventrow {
        column-gap: 0;
        row-gap: 0;
    }
    .ks-eventrow .slick-list {
        margin: 0 -18px;
    }
    .ks-eventrow .slick-dots {
        margin: 32px 0 18px;
        width: 100%;
        display: flex;
    }
    .ks-eventrow .slick-dots li {
        border-top: 2px solid var(--midnight)1a;
        width: 100%;
        line-height: 0;
    }
    .ks-eventrow .slick-dots li button {
        display: block;
        width: 100%;
        height: 8px;
        background-color: transparent;
        border-radius: 6px;
        font-size: 0;
        padding: 0;
        border: 0;
        margin: 0;
        margin-top: -5px;
    }
    .ks-eventrow .slick-dots li.slick-active button {
        background-color: var(--rose);
    }
    .ks-eventrow .slick-dots > li:only-child {
        display: none;
    }
    .rw-bl-crow {
        row-gap: 50px;
        margin-top: 60px;
    }
    .rw-bl-col {
        width: 100%;
    }
    .rbp-colstitle h3 {
        margin-bottom: 12px;
    }
    .rbp-content {
        margin-top: 20px;
        padding-right: 0;
    }
    .rbp-fi {
        padding-top: 56.25%;
    }
    .rw-bl-col:nth-child(14n + 10),
    .rw-bl-col:nth-child(14n + 2) {
        width: 100%;
    }
    .rw-bl-col:nth-child(14n + 10) .rbp-content,
    .rw-bl-col:nth-child(14n + 2) .rbp-content {
        padding: 30px;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-content {
        padding: 60px 0 60px 30px;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 {
        font-size: 30px;
    }
    .newsletter-text {
        font-size: 16px;
        line-height: 1.8;
    }
    .newsletter-inner {
        padding: 60px 30px;
    }
    .hlleft {
        width: 100%;
    }
    .hlright {
        margin-left: 0;
        width: 100%;
        margin-top: 40px;
    }
    .hl-text,
    .hltitle h1 {
        margin-bottom: 24px;
    }
    .ks-eventmodalclose {
        height: 24px;
        right: 10px;
        top: 10px;
        width: 24px;
    }
    .blogpost-Event .rbp-sec:before {
        height: 130vh;
        left: 50%;
        width: 130vw;
    }
    .bpi-videopostbody {
        margin-top: 80px;
    }
    .hrpn-btn {
        margin-top: 30px;
    }
    .zigzag-colsleft {
        width: 100%;
    }
    .zigzag-colsright {
        width: 100%;
        margin-top: 40px;
    }
    .zigzag-coltitle h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }
    .zigzag-coicon {
        margin-top: 30px;
    }
    .zigzag-cols.reverse-zigzagcol {
        flex-direction: column;
    }
    .zigzag-shape:before {
        margin-left: 0;
    }
    .ourvlus-cols {
        width: calc(50% - 16px);
    }
    .ourvlus-row {
        margin-top: 60px;
        row-gap: 40px;
    }
    .ourbs-cols {
        width: calc(50% - 16px);
    }
    .ourbs-icon {
        margin-bottom: 24px;
    }
    .gallery-row {
        column-count: 3;
        column-gap: 16px;
    }
    .gallery-cols {
        margin-bottom: 16px;
        width: 33.33%;
    }
    .cops-left {
        width: 100%;
    }
    .cops-leinn,
    .cops-leinn.stickthis.copsStick {
        position: static !important;
        max-width: 100%;
    }
    .cops-right {
        margin-left: 0;
        width: 100%;
        margin-top: 40px;
    }
    .ourvlus-title h2 {
        font-size: 38px;
    }
    .copstitle h2.h1 {
        letter-spacing: -2.92px;
    }
    .cops-btn {
        margin-top: 30px;
    }
    .cops-cltitle h4 {
        font-size: 24px;
    }
    .ourbs-title h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }
    .cops-rightcols {
        margin: 18px;
        box-sizing: content-box !important;
    }
    .cops-rightrow .slick-list {
        margin: 0 -18px;
    }
    .cops-rightrow .slick-track {
        display: flex;
        flex-wrap: wrap;
    }
    .cops-rightcols.slick-slide {
        height: inherit;
    }
    .journey-innerright {
        width: 374px;
    }
    .op-climg,
    .lwr-content,
    .op-video {
        animation: none;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-contact-sec:before {
        height: 960px;
    }
    .hero-contact-fullwidth .hero-contact-title {
        max-width: 550px;
    }
    .hero-contact-sec.hp-shapesec:after {
        height: 2140px;
        width: 4700px;
        margin-left: -120px;
    }
    .hero-contact-sec .contact_form {
        margin-top: 80px;
    }
    .hero-contact-sec .hsi-text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 40px;
        max-width: 100%;
    }
    .hero-contact-sec .find-us-main {
        margin-top: 50px;
        padding-right: 30px;
    }
    .hero-contact-sec .find-us {
        padding-top: 40px;
    }
    .find-us-map-frame {
        width: 100%;
        margin: 30px 0 0;
    }
    .hero-contact-sec .contact_form-right {
        padding: 40px 30px;
    }
    .hero-contact-sec .contact-form form input[type="email"],
    .hero-contact-sec .contact-form form input[type="text"],
    .hero-contact-sec .contact-form input[type="tel"] {
        padding: 5px 0 10px;
        font-size: 16px;
    }
    .hero-contact-half .hero-contactleft {
        padding-right: 0;
        width: 100%;
    }
    .hero-contact-half .hero-contactright {
        width: 100%;
        margin-top: 40px;
    }
    .hero-crightsubtitle h2 {
        margin-bottom: 20px;
    }
    .hero-contact-inner.o2 .hero-contactleft {
        float: left;
        width: 100%;
        margin: 0 0 50px;
    }
    .hero-contact-inner.o2 .contact_form-right {
        width: 100%;
    }
    .systemSection h1 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hrpn-hdrtext {
        max-width: 100%;
    }
    .heroparInner.hero-productInner {
        margin-top: 0;
    }
    .hero-product:before {
        width: 100%;
        height: 100%;
    }
    .heroparsubtitle h2,
    .techstack-colstitle h2 {
        font-size: 32px;
        letter-spacing: -0.66px;
    }
    .heroproductText {
        margin-top: 20px;
    }
    .strategyheader {
        margin-bottom: 40px;
    }
    .strategyrow {
        row-gap: 40px;
    }
    .strategyright {
        width: calc(100% - 95px);
    }
    .strategyicon {
        margin-right: 25px;
        width: 70px;
    }
    .strategycoltitle h3 {
        margin-bottom: 15px;
    }
    .techstack-row {
        row-gap: 40px;
    }
    .techstack-colstitle h2 {
        margin-bottom: 15px;
    }
    .psp-coltitle h2 {
        font-size: 32px;
    }
    .contentsmall .lwr-content {
        padding-right: 34px;
    }
    .popupinner {
        padding-top: 56.25%;
        margin: 40px 20px;
        max-width: 80%;
    }
    .close {
        top: -15px;
        right: -15px;
        width: 30px;
        height: 30px;
    }
    .close:after {
        width: 2px;
        height: 15px;
    }
    .close:before {
        width: 15px;
        height: 2px;
    }
    .hp-shapesec:after {
        height: 1180px;
        width: 1950px;
    }
    .teamcols {
        width: 48.8%;
    }
    .teamcols:nth-child(3n) {
        margin-right: 2.3%;
    }
    .teamcols:nth-child(2n) {
        margin-right: 0;
    }
    .teamcolimg {
        padding-top: 100%;
    }
    .teamrow {
        row-gap: 40px;
    }
    .teamcols:nth-child(3n + 2) {
        margin-top: 0;
    }
    .journey-left {
        width: 100%;
    }
    .journey-right {
        margin-left: 0;
        width: 100%;
        margin-top: 50px;
    }
    .journey-header {
        margin-bottom: 40px;
    }
    .body-container--about .git-sec:before {
        margin-left: -85%;
    }
    .bp-back {
        padding: 0 24px;
        margin-bottom: 30px;
    }
    .bpi-top {
        margin-bottom: 20px;
    }
    .bpi-fimg {
        margin-top: 60px;
    }
    .bpi-icontent p span {
        font-size: 16px;
    }
    .bpi-icontent h2 {
        font-size: 30px;
        letter-spacing: 0;
        margin-bottom: 16px;
        margin-top: 40px;
    }
    .bpi-left h1 {
        letter-spacing: -2px;
        font-size: 42px;
        line-height: 44px;
    }
    .bpi-shareblog {
        margin-top: 30px;
    }
    .bp-row .slick-list {
        margin: 0 -18px;
        padding-left: 0 !important;
    }
    .rbp-row {
        margin-top: 30px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        row-gap: 20px;
    }
    .rbp-cols.slick-slide {
        margin: 0 0 20px 20px;
    }
    .rbp-content {
        margin-top: 20px;
        padding-right: 0;
    }
    .authorbp-rowouter > h2 {
        font-size: 34px;
        letter-spacing: 0;
    }
    .authorbp-row {
        margin-top: 30px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        row-gap: 20px;
    }
    .authorbp-row .slick-list {
        margin: 0 -18px;
        padding-left: 0 !important;
    }
    .authorbp-cols.slick-slide {
        margin: 0 0 20px 20px;
    }
    .authorbp-row .slick-dots,
    .rbp-row .slick-dots {
        margin: 0;
    }
    .authorbp-content {
        margin-top: 20px;
        padding-right: 0;
    }
    .bpi-mdlcontent {
        width: 100%;
        margin-top: 30px;
        order: 1;
    }
    .bpi-mdlimg {
        margin-left: 0;
        width: 100%;
    }
    .bpi-mdlimg a {
        padding-top: 85%;
        max-width: 440px !important;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .bpi-mdlbio {
        max-width: 100%;
    }
    .bpi-modlauthor {
        margin: 30px 20px;
        padding: 40px 20px;
    }
    .cb-bgsec {
        width: 100%;
    }
    .ctabannerbp-inner {
        max-width: 100%;
    }
    .ctabannerbpsubtitle h4 {
        font-size: 18px;
    }
    .ctabannerbp-text {
        margin-bottom: 30px;
    }
    .twocolbp-ltitle h2 {
        font-size: 30px;
        letter-spacing: 0;
        margin-bottom: 16px;
    }
    .twocolbp-cols {
        margin-bottom: 40px;
    }
    .bpi-shareblog.bpr-reportshareblog {
        margin-top: 50px;
    }
    .bpevnt-date {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .bpevnt-timelocation ul li img {
        max-width: 24px !important;
    }
    .bpevnt-timelocation ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .testimonial-event {
        margin-top: 64px;
    }
    .bpevnt-icontent,
    .bpevnt-icontent img,
    .ks-eventsec {
        margin-top: 64px;
    }
    .ks-eventtitle h2 {
        font-size: 30px;
        letter-spacing: 0;
        margin-bottom: 16px;
    }
    .bpevnt-title h1 {
        letter-spacing: -1.92px;
        margin-bottom: 24px;
    }
    .tms-eventcls-text {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .tms-event-name {
        font-size: 16px;
    }
    .ks-eventrow .slick-list {
        padding-left: 0 !important;
    }
    ul li a.clipboard p.hovertxt {
        left: auto;
        right: 0;
    }
    .rw-bl-col:nth-child(14n + 6) {
        padding-right: 0;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-over {
        height: auto;
        width: 100%;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-over .rbp-fi {
        padding-top: 56.25%;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-content {
        padding: 40px 24px;
        width: 100%;
        max-width: 100%;
    }
    .rw-bl-col:nth-child(14n + 6) .rbp-colstitle h3 {
        font-size: 24px;
        letter-spacing: 0;
        margin-bottom: 16px;
    }
    .rw-bl-col:nth-child(14n + 10),
    .rw-bl-col:nth-child(14n + 2) {
        min-height: 400px;
    }
    .rw-bl-col:nth-child(14n + 10) .rbp-content,
    .rw-bl-col:nth-child(14n + 2) .rbp-content {
        padding: 24px;
    }
    .rw-bl-col.Video a.rw-bl-colink span,
    .bpvideo-popup-video.op-video a span {
        height: 60px;
        width: 60px;
    }
    .rw-bl-col.Video a.rw-bl-colink svg,
    .bpvideo-popup-video.op-video a svg {
        width: 18px;
        height: 18px;
    }
    .newsletter-left {
        width: 100%;
    }
    .newsletter-right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .newsletter-inner {
        padding: 50px 24px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .newsletter-inner.fullwidth {
        width: calc(100% + 40px);
    }
    .loadmorebtn {
        margin-bottom: 50px;
        margin-bottom: 50px;
    }
    .rw-bltags li a {
        font-size: 14px;
        padding: 6px 20px;
    }
    ul.rw-bltags {
        gap: 10px;
    }
    .rw-bl-crow {
        margin-top: 40px;
        row-gap: 40px;
    }
    .bpi-modlauthor {
        max-height: 520px;
    }
    .bpi-videopostbody {
        margin-top: 40px;
    }
    .zigzag-coltitle h2 {
        margin-bottom: 16px;
        font-size: 32px;
        letter-spacing: 0;
    }
    .zigzag-colsleft .zigzag-colsvideo > a:before {
        width: 50px;
        height: 50px;
    }
    .zigzag-colsright {
        margin-top: 30px;
    }
    .zigzag-btn a {
        margin-top: 20px;
    }
    .ourvlus-title h2 {
        font-size: 36px;
    }
    .ourvlus-cols {
        width: 100%;
    }
    .ourvlus-row {
        margin-top: 40px;
        row-gap: 30px;
    }
    .ourvlus-content h3 {
        margin-bottom: 14px;
    }
    .ourbs-inner {
        margin-left: -20px;
        margin-right: -20px;
    }
    .ourbs-inner.fullwidth {
        width: 100%;
        margin: 0;
    }
    .ourbs-cols {
        width: 100%;
    }
    .ourbs-row {
        row-gap: 30px;
        margin-top: 40px;
    }
    .ourbs-btn {
        margin-top: 40px;
    }
    .copstitle h2.h1 {
        letter-spacing: 0;
        margin-bottom: 24px;
    }
    .cops-text h4 {
        font-size: 20px;
    }
    .cops-rightcols {
        padding: 30px;
    }
    .cops-cltitle h4 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .cops-cltxt {
        margin-bottom: 16px;
    }
    .ourbs-title h2 {
        font-size: 36px;
        margin-bottom: 18px;
    }
    .cops-rightcols {
        margin: 0 0 20px 20px;
    }
    .cops-rightrow .slick-list {
        padding-left: 0 !important;
        margin: 0 -18px;
    }
    .journeytitle h2,
    .teamtitle h2 {
        margin-bottom: 20px;
    }
    .journey-sticky {
        display: none;
    }
    .journey-right {
        order: 0;
        display: none;
    }
    .gallery-row {
        margin: 0 -10px;
    }
    .gallery-cols {
        width: 50%;
        padding: 0 10px;
    }
    .gallery-cols.galleryvideo {
        height: 280px;
    }
    .journey-cols {
        padding: 0;
        margin: 0 4px;
        opacity: 30%;
        transition: opacity 500ms;
    }
    .journey-cols.slick-active {
        opacity: 1;
    }
    .hero-contact-sec:before {
        height: 100%;
        width: 100%;
    }
    .hero-contact-fullwidth .hero-contact-title h1 {
        font-size: 48px;
        line-height: 50px;
    }
    .hero-contact-fullwidth .hero-contact-title {
        max-width: 280px;
    }
    .hero-contact-sec .contact_form-left {
        width: 100%;
    }
    .hero-contact-sec .contact_form-right {
        padding: 30px 25px;
        width: 100%;
        margin-top: 60px;
    }
    .hero-contact-sec .contact_form {
        margin-top: 60px;
    }
    .hero-contact-sec.hp-shapesec:after {
        height: 1180px;
        width: 1950px;
    }
    .hero-contact-sec .find-us-main {
        margin-top: 30px;
        max-width: 100%;
        padding-right: 0;
    }
    .hero-contact-sec .hsi-text {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 25px;
    }
    .hero-contact-sec .find-us {
        padding-top: 25px;
    }
    .hero-contact-sec .contact-img {
        margin-right: 0;
        width: 100%;
    }
    .hero-crightsubtitle h2 {
        letter-spacing: 0;
        font-size: 36px;
        margin-bottom: 16px;
    }
    .hero-contact-half .hero-contactright {
        margin-top: 30px;
    }
    .hero-contact-half .hero-contact-title h1 {
        letter-spacing: 0;
    }
    .strategycoltxt a {
        font-size: 14px;
        line-height: 26px;
    }
    .journey-cols:before,
    .journey-cols:after,
    .active-border,
    .bglinkslide {
        display: none;
    }
    .journey-row .slick-list {
        padding: 0 60px 0 0;
    }
    .journey-row .slick-list.last-slide-active {
        padding: 0;
    }
    .journey-cols-inn {
        display: flex;
        flex-flow: column-reverse;
    }
    .journey-cols-tops {
        padding: 80px 10px 10px;
        position: relative;
    }
    .journey-leftimg {
        display: block;
    }
    .journey-leftimg img {
        max-height: 192px;
        min-height: 192px;
        object-fit: cover;
    }
    .journeyScroll {
        display: none;
    }
    .systemSection h1 {
        font-size: 36px;
    }
    .systemSection {
        padding: 120px 0 60px;
    }
}
@media (max-width: 480px) {
    .strategyright {
        width: 100%;
        margin-top: 20px;
    }
    .strategyicon {
        margin-right: 0;
        width: 100%;
        margin-top: 0;
    }
    .hero-productbImages {
        min-height: 180px;
    }
    .teamcols {
        width: 100%;
        margin-right: 0 !important;
    }
    .bpi-mdlimg a {
        padding-top: 110%;
    }
    .bpi-fimg {
        padding-top: 56.25%;
    }
    .rw-bl-col:nth-child(14n + 10),
    .rw-bl-col:nth-child(14n + 2) {
        min-height: 320px;
    }
    .ks-event-acontent {
        max-width: 150px;
    }
    .ks-event-aimg {
        margin-right: 13px;
        width: 100px;
    }
    a.gallery-icon {
        height: 60px;
        width: 60px;
    }
    a.gallery-icon img {
        margin-bottom: -24px;
        margin-left: 24px;
        max-width: 15px !important;
    }
    .gallery-cols.galleryvideo {
        height: 200px;
    }
}
#particles-js {
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
}
.hs_cos_wrapper_button a {
    background-color: blue;
}