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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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

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

/* No button */

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

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



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

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



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



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

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


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/


/* new css */

/* hero_tabbing_section */
.hero_tabbing_section {overflow: hidden;padding: 69px 0 69px; background-size: cover; background-repeat: no-repeat; }
.hero_tabbing_cover { text-align: center; }
.logo a img { height: 50px !important; width: 100% !important; max-width: 242px !important; object-fit: cover; }
.logo a { display: inline-block; }
a.secondary_btn { text-decoration: none; display: inline-block; border: 1px solid #fff; padding: 10px; border-radius: 4px; font-weight: 600; font-size: 13.27px; line-height: 14px; letter-spacing: 1px; color: #fff; text-transform: capitalize; }
.hero_tabbing_heading h1 { font-size: 72px; line-height: 75px; }
.hero_tabbing_content { font-weight: 400; font-size: 18px; color: #fff; line-height: 30px; padding-top: 25px; padding-bottom: 42px; }
.hero_tabbing_list ul { border-bottom: 1px solid grey; justify-content: space-between; margin: 0; padding: 0 ; display: flex;  position: relative; }
.hero_tabbing_list ul li {min-width: 242px; justify-content: center; text-align: center; padding-bottom:17px;    --width: 242px; cursor: pointer; list-style: none; display: flex; flex-wrap: wrap; align-content: center; position: relative; }
.hero_tabbing_list ul li img { opacity: 50%;display: block}
.hero_tabbing_list ul li.active img { opacity: 1;}

.hero_tabbing_list ul:before { border-bottom: 3px solid #53fdc3; border-radius: 5px; bottom: -2px; content: ""; left: 0; position: absolute;  --width: 242px; --index:0;  width: var(--width); left: calc(var(--width) * var(--index));  transition: all 0.3s ease;}
.hero_tabbing_list ul[data-tab="0"]:before{ --index:0; }
.hero_tabbing_list ul[data-tab="1"]:before{ --index:1; }
.hero_tabbing_list ul[data-tab="2"]:before{ --index:2; }
.hero_tabbing_list ul[data-tab="3"]:before{ --index:3; }
.hero_tabbing_list ul[data-tab="4"]:before{ --index:4; }
.hero_tabbing_list ul[data-tab="5"]:before{ --index:5; }
 

.hero_tabbing_cover .logo { padding-bottom: 38px; }
.secondary_button { padding-bottom: 28px; }
.hero_tabbing_video iframe { border-radius: 24px;}
.hero_tabbing_box {padding-top: 69px;}
.hero_tabbing_list { max-width: 881px;  margin: 0 auto;  width: auto; display: inline-flex;}



.h1{font-size: 72px!important; line-height: 75px!important;}
.access_section { padding: 72px 0; background-repeat: no-repeat; background-size: cover; }
.access_cover { text-align: center; }
.access_cover .logo { padding-bottom: 38px; }
.access_heading { padding-bottom: 25px; }
.access_content { padding-bottom: 44px; font-size: 18px; font-weight: 400; line-height: 30px; }
.access_form { padding-bottom: 70px;    max-width: 511px; margin: 0 auto;}
.access_form h3 { display: none; }
/* input::placeholder{color:#1C1B1F;} */
.access_form form {  background-color: transparent; position: relative; }
.access_form form .hs-form-field { margin-bottom: 14px; }
.access_form form label { margin-bottom: 0; text-align: start; padding-left: 19px;}
.access_form form input { width: 286px; background: none; border: none !important; outline: none; padding: 17px 16px; display: flex; justify-content: flex-start; align-items: center; font-size: 16px; line-height: 18px; font-weight: 400; color: #434159 !important; }
.access_form form .hs_email .input { background: #fff; width: 100%; border-radius: 8px; overflow: hidden; position: relative; }
.access_form form .legal-consent-container { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; }
.access_form form .hs_submit.hs-submit { position: absolute; top: 0px; right: 0; z-index: 2; }
.access_form form input.hs-button.primary.large {border-top-left-radius: 0px; border-bottom-left-radius: 0px; color: #1c1b1f !important; background: #53FDC3; font-weight: 600; font-size: 16px; line-height: 21.89px; text-transform: uppercase; letter-spacing: 1.71px; padding: 15px 18px; max-width: 225px; }
.access_form form label .hs-error-msg { color: red; }
.access_form form li label input { width: 16px; height: 16px;}
.access_form form .hs-form-booleancheckbox input[type="checkbox"] { display: none !important; }
.access_form form .hs-form-booleancheckbox-display { position: relative;cursor: pointer; font-size: 16px; display: inline-block; user-select: none; }
.access_form form .hs-form-booleancheckbox-display::before { content: ""; position: absolute; left: -11px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: transparent; border: 1.5px solid #fff; }
.access_form form .hs-form-booleancheckbox input[type="checkbox"]:checked + span::after { content: ""; position: absolute; left: -7px; top: 6px; width: 8px; height: 8px; background: #53FDC3; /* your desired color */ border-radius: 50%; }
.access_form form .legal-consent-container .hs-form-booleancheckbox-display > span { margin-left: 0 !important;font-size: 12px; line-height: 20px; font-weight: 400; color: #FFFFFF;}
.access_form form .inputs-list > li {margin: 0 0 !important; line-height: 0; display: inline-block !important;}
.access_form form .legal-consent-container .field.hs-form-field { margin-bottom: 0;}
.access_video iframe {  border-radius: 20.77px;}
.hs-error-msg {margin-top: 0 !important; text-align: center;}
.access_form form .inputs-list {margin: 10px 0 0;line-height: 0;}
.access_form form .hs_error_rollup { display: none;}
.access_form form .inputs-list > li a {color: #fff; text-decoration: underline;transition: all 0.4s ease; font-weight:inherit; }
.access_form form .inputs-list > li a:hover { color: #53FDC3;}

/*prompt_section  */
.prompt_section { background-position: 100%;background-repeat: no-repeat; background-size: cover; padding: 160px 0 155px; }
.prompt_section{  background-image: url('https://2051956.fs1.hubspotusercontent-na1.net/hubfs/2051956/Caroussel-banner.png') !important; }
.prompt_row { display: flex; flex-wrap: wrap; align-items: center; }
.prompt_left { width: 50%; padding-right: 30px; }
.prompt_right { width: 50%; padding-left: 13px; }
.prompt_title h2 { font-weight: 600; font-size: 64px!important; line-height: 75px!important; }


/* faq_v2_section */
.faq_v2_section { background-color: #FFFFFF; padding: 96px 0 92px; }
.faq_v2_heading h2 { color: #1C1B1F; }
.faq_v2_heading { text-align: center; }
.h3 { font-size: 36px; line-height: 45px; font-weight: 600; }
.faq_v2_box { padding-top: 30px;}
.faq_v2_questions h6 {padding-right: 10px;width: calc(100% - 40px); color: #1C1B1F; font-size: 18px; line-height: 20px; font-weight: 600; font-family: Montserrat, sans-serif; }
.faq_v2_questions { display: flex;  justify-content: space-between; align-items: center; }
span.faq_v2_icon { width: 40px; height: 40px; background: #E1E0FF; border-radius: 10px; position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
span.faq_v2_icon:before { transition: all .4s ease;position: absolute; content: ""; width: 14px; background: #3838E7; height: 2px; }
span.faq_v2_icon:after {transition: all 0.4s ease; position: absolute; content: ""; height: 14px; width: 2px; background-color: #3838E7; }
.faq_v2_box_cover {    transition: all 0.4s ease; border-bottom: 1px solid #E4E1EC;  padding: 37px 0;   }
.faq_v2_content { color: #46464F; font-size: 16px; font-weight: 500; line-height: 22px; max-width: 900px;  }
.faq_v2_box_cover:last-child {  border-bottom: none; padding: 37px 0 0;}
.faq_v2_box_cover.active ::after { transform: rotate(90deg); background-color:#fff;}
.faq_v2_box_cover.active span.faq_v2_icon { background: #3838E7;}
.faq_v2_box_cover.active .faq_v2_questions h6 {color: #3838E7;}
.faq_v2_box p{ font-size:16px; line-height:22px; font-weight:500; }
.faq_v2_box_cover.active:first-child { padding-top: 0;}
.faq_v2_box_cover:first-child { padding-top: 0;}
.faq_v2_content{ display:none; }
.faq_v2_box_cover:first-child .faq_v2_content{ display:block;  } 
.faq_v2_questions { cursor: pointer;  }
.faq_v2_content_iner{ padding-top:25px; }

/*  ready_section*/
.ready_section { padding: 72px 0 67px;  background-size: cover; background-repeat: no-repeat; }
.ready_row { display: flex; flex-wrap: wrap; }
.ready_left { width: 59%; }
.ready_right { width: 41%; }
.ready_title h2 { font-size: 48px; font-weight: 600; line-height: 55px; }
.ready_sub_tilte { font-weight: 400; font-size: 18px; line-height: 30px; }
.ready_title { padding-bottom: 28px; }
.ready_form { position: relative;     max-width: 511px;}
.ready_form h3 { display: none; }
.ready_form form { background-color: transparent; position: relative; }
.ready_form form label { margin: 0 0; }
.ready_form form .hs_email .input { background: #fff; width: 100%; border-radius: 8px; overflow: hidden; position: relative; }
.ready_form form .hs_email { margin-bottom: 14px; }
.ready_form form .hs_email .input input { width: 286px; background: none; border: none; outline: none; padding: 17px 16px; display: flex; justify-content: flex-start; align-items: center; font-size: 16px; line-height: 18px; font-weight: 400; color: #434159; }
.ready_form form .legal-consent-container { width: 100%; }
.ready_form form input.hs-button.primary.large {     display: inline-block;border-top-left-radius: 0px; border-bottom-left-radius: 0px; color: #1C1B1F; background: #53FDC3; font-weight: 600; font-size: 16px; line-height:21.89px; text-transform: uppercase; letter-spacing: 1.71px; padding: 15px 18px; width: 225px; }
.ready_form form .hs_submit.hs-submit { position: absolute; top: 0; right: 0; }
.ready_form form .inputs-list > li { margin: 0 0; }
.ready_form form .legal-consent-container .field.hs-form-field { margin-bottom: 0; }
.ready_form form  ul.inputs-list {  padding-left: 28px;line-height: 0;}
.ready_form form .hs-form-booleancheckbox input[type="checkbox"] { display: none !important; }
.ready_form form .hs-form-booleancheckbox-display { position: relative;cursor: pointer; font-size: 16px; display: inline-block; user-select: none; }
.ready_form form .hs-form-booleancheckbox-display::before { content: ""; position: absolute; left: -26px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: transparent; border: 1.5px solid #fff; }
.ready_form form .hs-form-booleancheckbox input[type="checkbox"]:checked + span::after { content: ""; position: absolute; left: -22px; top: 6px; width: 8px; height: 8px; background: #53FDC3; /* your desired color */ border-radius: 50%; }
.ready_form form .legal-consent-container .hs-form-booleancheckbox-display > span { margin-left: 0 !important;font-size: 12px; line-height: 20px; font-weight: 400; color: #FFFFFF;}
.ready_form form label { text-align: start;}
.ready_form form ul.no-list.hs-error-msgs.inputs-list {  padding-left: 0;  margin-top: 15px;}
.access_form form ul.no-list.hs-error-msgs.inputs-list {margin-top: 15px;}

.ready_form form label.hs-main-font-element { color: #EF6B51;}
.access_form form label.hs-main-font-element {color: #EF6B51;}
.ready_form form .hs_error_rollup { display: none;}
.access_form .submitted-message,
.ready_form .submitted-message{ color: #FFFFFF; background-color: transparent; border: none; font-size: 24px; font-family: Roboto, sans-serif;    display: inline-block; font-weight: 400; line-height: 30px; position: relative; padding-left: 30px; }
.access_form .submitted-message:before,
.ready_form .submitted-message:before{ position: absolute; content: ""; width: 24px; height: 24px; background: #53FDC3; border-radius: 50%; background-image: url('https://2051956.fs1.hubspotusercontent-na1.net/hubfs/2051956/Vector%20%2892%29.svg'); background-repeat: no-repeat; background-size: 12px; background-position: center; left: -10px; top: 3px; }
.access_form input::placeholder,
.ready_form input::placeholder{color:#ACAAB4;}
.ready_form form .inputs-list>li a:hover { color: #53FDC3;}
.ready_form form .inputs-list>li a {    font-weight: 400;color: #fff; text-decoration: underline;transition: all 0.4s ease;}
.ready_form .submitted-message { font-size: 17px; padding-top: 1px;}

/* footer */
.footer { background-color: #0A0A0A !important; padding: 17px 0; }
.footer_row { display: flex; align-items: center; justify-content: space-between; }
.footer_row .footer_left { display: flex; flex-wrap: wrap; align-items: center; max-width: 518px; gap: 80px; }
.footer_logo { max-width: 212px; }
.footer_logo a img { display: block; }
.footer_description { font-size: 12px; line-height: 16px; font-weight: 400; letter-spacing: 0.3px; text-align: right; }
.footer_social_link ul { display: flex; flex-wrap: wrap; align-items: center; justify-content: right; margin: 0; padding: 0; gap: 16px; }
.footer_social_link ul li { height: 20px; width: 20px; display: flex; align-items: center; justify-content: center; }
.footer_social_link ul li a img { display: block; }
.footer_description.mobile_content{display: none;}







/* responsive */



@media(max-width:1300px){
  .ready_left { width: 45%;}
  .ready_right {width: 55%;}
}

@media(max-width:1116px){
  .footer_row .footer_left{     gap: 24px;  }
}

@media(max-width:1130px){
  .hero_tabbing_heading h1 {font-size: 55px; line-height: 60px;}
  .h1 { font-size: 55px !important; line-height: 60px !important;} 
}


@media(max-width:991px){
  .hero_tabbing_cover .logo {padding-bottom: 20px;}
  .secondary_button { padding-bottom: 15px;}
  .hero_tabbing_content { padding-top: 10px; padding-bottom: 20px;}
  .hero_tabbing_box {padding-top: 60px;}
  .ready_form {  max-width: 100%;}

}

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

  .ready_left { width: 100%; }
  .ready_right { width: 100%; padding-top: 20px; }
  .ready_form form .hs_email .input input { width: 100%; } 
  .ready_form form .legal-consent-container {order: 2; padding-top: 20px;}
  .ready_form form .hs_submit.hs-submit { position: relative; width: 100%; }
  .ready_form form .hs_submit.hs-submit .actions { width: 100%; }
  .ready_form form input.hs-button.primary.large { max-width: 100%; width: 100%; border-radius: 8px; }
  .ready_form form { display: inline-grid; width: 100%; }
  .ready_section{background-image: url('https://2051956.fs1.hubspotusercontent-na1.net/hubfs/2051956/2025/Experimentation%20Unite/Customers-banner.png') !important;}
  .ready_form form .hs_error_rollup {   order: 2;}
  .submitted-message {font-size: 18px; padding-left: 35px;}
  .submitted-message:before { left: 0;}
  .ready_form form ul.no-list.hs-error-msgs.inputs-list {   padding-left: 10px;}
}

@media(max-width:767px){
  .hero_tabbing_list ul li { min-width: auto;   justify-content: normal; width: 100%;}
  .hero_tabbing_list ul { width: 100%; }
  .hero_tabbing_list {display: flex;}
  .hero_tabbing_list ul:before { display: none;}
  .hero_tabbing_list ul li{position: relative;}
  .hero_tabbing_list ul li.active:before { border-bottom: 3px solid #53fdc3;
    border-radius: 5px; bottom: -2px; content: ""; left: 0; position: absolute;  width: 100%; left: 0;  transition: all 0.3s ease;}
  .hero_tabbing_list ul li img{margin:0 auto;}


}


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

  /*  hero_tabbing_section  */
  .hero_tabbing_section { padding: 48px 0; }
  .logo a img { max-width: 160px !important; object-fit: contain; height: 33px !important; }
  .hero_tabbing_cover { text-align: left; }
  .hero_tabbing_cover .logo { padding-bottom: 30px; }
  a.secondary_btn { padding: 8px; font-size: 11px; letter-spacing: 0.83px; line-height: 11px; }
  .secondary_button { padding-bottom: 25px; }
  .hero_tabbing_heading h1 { font-size: 38px !important; line-height: 40px !important; }
  .hero_tabbing_content { padding-top: 20px; font-size: 16px; line-height: 24px;  }
  .hero_tabbing_list ul li { padding-bottom: 15px; }
  .hero_tabbing_box { padding-top: 35px; }
  .hero_tabbing_list ul { gap: 20px;}
  .hero_tabbing_section{   background-image: url('https://2051956.fs1.hubspotusercontent-na1.net/hubfs/2051956/2025/Experimentation%20Unite/Hero%20-%20Text%20media%20-%20Left%20-%20Gradient%20%284%29.png') !important;}

  /*  access_section  */
  .access_section { padding: 48px 0; }
  .access_cover { text-align: start; }
  .access_cover .logo { padding-bottom: 25px; }
  .h1 { font-size: 38px !important; line-height: 40px !important; }
  .access_content { font-size: 16px; padding-bottom: 30px; line-height: 25px; }
  .access_form form {  width: 100%; display: inline-grid; justify-content: normal;}
  .access_form form .hs_email .input { width: 100%; }
  .access_form form .hs_submit.hs-submit { position: relative; right: 0; width: 100%; }
  .access_form form input.hs-button.primary.large { max-width: 100%; border-radius: 8px; margin-top: 12px; }
  .access_form form input { width: 100%; }
  .access_form form .legal-consent-container {width: 100%; order: 2; justify-content: normal; padding-left: 15px;}
  .access_form { padding-bottom: 32px; }
  .access_section{   background-image: url('https://2051956.fs1.hubspotusercontent-na1.net/hubfs/2051956/2025/Experimentation%20Unite/Hero%20-%20Text%20media%20-%20Left%20-%20Gradient%20%285%29.png') !important; }
  .access_form form .hs_error_rollup { display: none;}
  .access_form { max-width: 100%; margin: 0 0; }


  /* prompt_section   */
  .prompt_section { padding: 52px 0; }
  .prompt_left { width: 100%; padding-right: 0; padding-bottom: 20px; }
  .prompt_right { width: 100%; padding-left: 0; }
  .prompt_title { text-align: center; }
  .prompt_title h2 { font-size: 32px !important; line-height: 40px !important; }

  /* faq_v2_section   */
  .faq_v2_section { padding: 48px 0; }
  .h3 { font-size: 26px !important; line-height: 30px !important; }
  .faq_v2_box { padding-top: 40px; }

  /* ready_section   */
  .ready_section { padding: 52px 0; }
  .ready_title { text-align: center; padding-bottom: 20px; }
  .ready_sub_tilte { font-size: 16px; line-height: 20px; }







  /* footer   */
  .footer_logo {max-width: 122px;}
  .footer { padding: 24px 0; }
  .footer_row .footer_left { gap: 0; max-width: 100%; }
  .footer_description { width: 100%; text-align: start; }
  .footer_description { display: none; }
  .footer_description.mobile_content {display: block; text-align: center; padding-top: 30px;}

}












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

.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }

.delay-0 { 
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms; }

.delay-250 { 
  -webkit-animation-delay: 150ms;
  -moz-animation-delay: 150ms;
  -o-animation-delay: 150ms;
  animation-delay: 150ms; }

.delay-500 { 
  -webkit-animation-delay: 300ms;
  -moz-animation-delay: 300ms;
  -o-animation-delay: 300ms;
  animation-delay: 300ms; }

.delay-750 { 
  -webkit-animation-delay: 450ms;
  -moz-animation-delay: 450ms;
  -o-animation-delay: 450ms;
  animation-delay: 450ms; }

.delay-1000 { 
  -webkit-animation-delay: 600ms;
  -moz-animation-delay: 600ms;
  -o-animation-delay: 600ms;
  animation-delay: 600ms; }

.delay-1250 { 
  -webkit-animation-delay: 750ms;
  -moz-animation-delay: 750ms;
  -o-animation-delay: 750ms;
  animation-delay: 750ms; }

.delay-1500 { 
  -webkit-animation-delay: 900ms;
  -moz-animation-delay: 900ms;
  -o-animation-delay: 900ms;
  animation-delay: 900ms; }

.delay-1750 { 
  -webkit-animation-delay: 1050ms;
  -moz-animation-delay: 1050ms;
  -o-animation-delay: 1050ms;
  animation-delay: 1050ms; }

.delay-2000 { 
  -webkit-animation-delay: 1200ms;
  -moz-animation-delay: 1200ms;
  -o-animation-delay: 1200ms;
  animation-delay: 1200ms; }

.delay-2250 { 
  -webkit-animation-delay: 1350ms;
  -moz-animation-delay: 1350ms;
  -o-animation-delay: 1350ms;
  animation-delay: 1350ms; }

.delay-2500 { 
  -webkit-animation-delay: 1500ms;
  -moz-animation-delay: 1500ms;
  -o-animation-delay: 1500ms;
  animation-delay: 1500ms; }

.delay-2750 { 
  -webkit-animation-delay: 1650ms;
  -moz-animation-delay: 1650ms;
  -o-animation-delay: 1650ms;
  animation-delay: 1650ms; }

.delay-3000 { 
  -webkit-animation-delay: 1800ms;
  -moz-animation-delay: 1800ms;
  -o-animation-delay: 1800ms;
  animation-delay: 1800ms; }




/*********************
* fadeInUpShort
*********************/
@-webkit-keyframes fadeInUpShort {
  0% { opacity: 0; -webkit-transform: translateY(20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInUpShort {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fadeInUpShort { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
.fadeInUpShort.go { -webkit-animation-name: fadeInUpShort; animation-name: fadeInUpShort; }

/*********************
* fadeInDownShort
*********************/
@-webkit-keyframes fadeInDownShort {
  0% { opacity: 0; -webkit-transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDownShort {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fadeInDownShort { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); }
.fadeInDownShort.go { -webkit-animation-name: fadeInDownShort; animation-name: fadeInDownShort; }

*{
  box-sizing:border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 { margin:0px; }
.h1, h1 { line-height: 67px; }
.h2, h2 { line-height: 57px;}
.h3, h3 { line-height: 43px; }
.h4, h4 { line-height:35px; }
.h5, h5 { line-height:28px; }
.h6, h6 { line-height: 21px;}

.section_gap { padding: 96px 0px;}
.container { max-width: 1278px; margin: 0 auto; padding: 0px 15px;}

.black { background: #0A0A0A !important; }
.dark_black { background: #1C1B1F !important; }
p{ margin:0px; }
a.button{ letter-spacing:1.7px; }
a.button:hover { font-weight: 600; transition:all 0.3s ease;}


/* carousel */
.carousel .image-thumb img { object-fit: cover }
@media(min-width:992px) {
  .newsletter_carousel, .arguments_caroussel { text-align: right; }
  .carousel { height: 400px; width: 400px; position: relative; line-height: 0; display: inline-block; }
  .carousel .image-thumb { position: absolute; top: 0; left: 0; }
  .carousel { --transform: -30px; }
  .carousel .image-thumb { --index: 1; border-radius: 15px; transform-origin: left center; transform: translateX(calc(var(--transform) * var(--index))) scale(calc(0.99 - (var(--index) * 0.05))); overflow: hidden; transition: all 0.5s ease; }
  .carousel .active img { opacity: 1; transition: all 0.5s ease; }
  .carousel .image-thumb:not(.active) img { opacity: 0; transition: all 0.5s ease; }
  .carousel .image-thumb:not(.active) { background-image: url(https://2051956.fs1.hubspotusercontent-na1.net/hubfs/2051956/2025/c-bg.png); background-position: center; background-size: cover; background-repeat: no-repeat; }
  .carousel .active { --index: 0; transform: translateX(0) scale(1); opacity: 1; z-index: 5; }
  .carousel .active-1 { --index: 1; z-index: 4; }
  .carousel .active-2 { --index: 2; z-index: 3; }
  .carousel .active-3 { --index: 3; z-index: 2; }
  .carousel .image-thumb.prev-active {
    transform: scale(1.05) translate(-10px,-10px);
    z-index: 7;
    opacity: 0;
  }

}
@media(max-width:991px) {
  .newsletter_content { width: 100% !important; padding: 0; }
  .newsletter_carousel { padding: 44px 0 0 !important; }
  .carousel { width: 100% !important; position: relative; height: 230px !important; width: 100vw !important; left: -24px; overflow: hidden; }
  .carousel .image-thumb { line-height: 0; position: absolute; height: 222px; width: 296px; border-radius: 15px; overflow: hidden; transition: all 0.5s ease; }
  .carousel .image-thumb img { height: 100% !important; width: 100% !important; }
  .newsletter_carousel { display: inline-block; }
  .carousel .image-thumb { left: calc((var(--index) * 320px) + 20px) }
  .carousel .image-thumb.active { --index: 0; }
  .carousel .image-thumb.active-1 { --index: 1; }
  .carousel .image-thumb.active-2 { --index: 2; }
  .carousel .image-thumb.active-3 { --index: 3; }
  .carousel .image-thumb.active-4 { --index: 4; }
  .arguments_caroussel, .arguments_content { width: 100% !important; padding-right:0px;}
  .arguments_content .title { text-align: center; }
  .arguments_row { flex-direction: column !important; }

  .carousel .image-thumb.prev-active {
    left: -310px;
  }

  .carousel .image-thumb.active-5 {
    --index: 5;
    opacity: 0;
  }
  .carousel .image-thumb.more-5 {
    opacity: 0;
  }
}



/* */
.header_section { padding: 13px 40px;}
.header_section .wrapper { max-width: 1360px; margin: 0 auto;}
.header_row { display: flex; flex-flow: wrap;  align-items: center;}
.header_logo {  width: 15%;}
.header_logo a img { max-width: 149px !important; height: 100% !important; display: block;width: 100%; object-fit: cover;}
.header_navigation { width: 65%;}
.header_button { width: 20%; text-align: end;}
.header_navigation ul { gap: 60px;}
.header_navigation ul li a { display:block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; line-height: 14px; transition:all 0.3s ease}
.primary_btn a { transition:all 0.3s ease; font-size: 12px; line-height: 14px; letter-spacing: 1.1px; text-transform: uppercase; padding: 15px 18px;background: linear-gradient(135deg,#4142ef,#1200ca); border-radius: 5px; color: #fff; display: inline-block; font-weight: 900;}
.primary_btn a:hover {
  background: linear-gradient(135deg,#0e00aa,#0e00aa);
  color:#fff !important;
}
.primary_btn a:focus,
.primary_btn a:active{
  color:#fff !important;
}



@media(min-width:768px) and (max-width:1200px){ 
  .header_logo {  width: 20%;}
  .header_navigation { width:60%; }
  .header_logo a img { max-width: 100% !important; }
  .header_navigation ul { gap:30px; justify-content: center; padding: 0 10px; align-items: center; }
}

@media(max-width:991px){ 
  .header_navigation ul {  gap: 25px; }
}

@media(min-width:768px){
  .header_navigation ul li a:hover { color:#3838E7; border-bottom: 1px solid #3838E7; }
}

@media(max-width:767px){

  /**toggle menu**/
  a.mobile-trigger{  background: transparent; cursor: pointer; height: 20px; width: 20px; position: absolute; top: 50%; text-transform: uppercase;transition: color 0.2s ease-in; z-index: 99999999999; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; }
  a.mobile-trigger i:before { margin-top: -8px; }
  a.mobile-trigger i, a.mobile-trigger i:after, a.mobile-trigger i:before { width: 20px; height: 3px; background: #1C1B1F; display: inline-block; transition: all 0.4s ease; }
  a.mobile-trigger i:after, a.mobile-trigger i:before { position: absolute; content: ""; }
  a.mobile-trigger i:after { margin-top: 8px; }
  .mobile-open a.mobile-trigger i { transition: all 0.4s ease; background-color: transparent; }
  .mobile-open a.mobile-trigger i:before { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);background:#1C1B1F; }
  .mobile-open a.mobile-trigger i:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg);background: #1C1B1F; }
  .mobile-open a.mobile-trigger i:after, .mobile-open a.mobile-trigger i:before { margin-top: 0; -webkit-transition-delay: 0, .2s; transition: all 0.4s ease; }    
  .header_menu .hs_cos_wrapper_type_simple_menu {position: absolute;top:100%;left: 0;background: #fff;right: 0;padding: 0;display: none;text-align: left; z-index:9; border-top: 1px solid #c7c5d0;}
  .header_menu .hs_cos_wrapper_type_simple_menu ul > li {display: block;width: 100%;border-bottom: 1px solid rgba(199, 197, 208, 1)}
  .header_menu .hs_cos_wrapper_type_simple_menu ul li a{padding:15px 24px !important; display:block;} 
  .header_menu .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {left: -9999px;opacity: 1;position: static;display: none;}
  .header_menu .hs_cos_wrapper_type_simple_menu ul>li:hover,
  .header_menu .hs_cos_wrapper_type_simple_menu ul>li.active{background: rgba(28, 27, 31, 1);}  
  .header_menu .hs_cos_wrapper_type_simple_menu ul>li:hover a,
  .header_menu .hs_cos_wrapper_type_simple_menu ul>li.active a{ color:#fff; }
  .header_menu .hs_cos_wrapper_type_simple_menu ul>li:last-child {border-bottom: 0;}
  .header_menu ul li {padding: 0;}
  .header_section a.mobile-trigger {left:auto;right: 24px;}
  .header_left {padding-left: 40px;}
  .header_navigation ul { gap:0px; }
  .header_menu ul li a {padding:0; border:none; }    
  .header_btn {display: none;}
  .header_left { width: 100%; }
  .header_right { width: 100%; }
  .header_logo { width: 100%; }
  .header_menu { padding-left: 0; }    
  .header_section { padding: 28px 24px; position:relative; }
  .header_button { width: 100%; text-align: left; padding: 15px 24px;}
  .header_button a { width: 100%; text-align: center; }

  a.mobile-trigger.hide {
    display: none;
  }

  .header_button.primary_btn.no-menu {
    width: auto;
    position: absolute;
    right: 0;
    top:0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }



}




/* */
.newsletter_section { background-image: url(https://2051956.fs1.hubspotusercontent-na1.net/hubfs/2051956/Hero%20-%20Text%20media.png); background-repeat: no-repeat; background-size: cover; background-position: center; }
.newsletter_row { display: flex; align-items: center; flex-flow: wrap; }
.newsletter_content { width: 47%; padding-right: 5px; }
.newsletter_carousel { width: 53%; padding-left: 10px; }

.tag_row:after { -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; z-index: 0; border-radius: 8px; bottom: 0; content: ""; left: 0; padding: 2px; position: absolute; right: 0; top: 0; background: linear-gradient(15.95deg, #3838E7 -63.94%, #3D5CE0 2.12%, #459AD5 70.33%, #53FDC3 158.05%); }
.tag_row span { font-size: 22px; font-weight: 600; letter-spacing: 2px; line-height: 30px; display: inline-block; text-transform: uppercase; }
.newsletter_logo { padding-top: 50px; }
.newsletter_logo img { width: 100%; display: block; object-fit: cover; }
.newsletter_content .content { padding: 50px 0px; }
.newsletter_cover .form-title { display: none; }
.newsletter_cover .hs-form-field label {  display: none;}
.form-title .hs-form-field { margin-bottom: 0px !important; }
.newsletter_cover .hs-form-field { margin: 0px !important; }
.newsletter_cover .input input { padding: 16px 200px 17px 16px !important; color: rgba(67, 65, 89, 1); font-size: 16px; line-height: 17px; outline: none !important; border-left: 1px solid rgba(199, 197, 208, 1); border-top: 1px solid rgba(199, 197, 208, 1); border-bottom: 1px solid rgba(199, 197, 208, 1); border-radius: 8px; }
.newsletter_cover form { position: relative; border-radius: 8px; background: transparent; max-width: 487px; }
.newsletter_cover .input input::placeholder { color: #434159; }
.newsletter_cover form .actions .hs-button { padding: 15px 24px;  font-size: 16px; line-height: 21px; letter-spacing: 1.7px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 0px; border-bottom-left-radius: 0px; background: #53FDC3; color: #1C1B1F; font-weight: 600; }
.newsletter_cover form .actions { position: absolute; top: 0; right: 0; }
.newsletter_cover label { margin: 0px; }
.newsletter_cover form .inputs-list>li { margin: 5px 0px; }
.newsletter_cover form .hs-error-msg { color: #fff !important; font-size: 16px; line-height: 21px; }
.newsletter_cover .hs-input.invalid.error { border-color: transparent; }
.newsletter_cover .submitted-message {  background: transparent !IMPORTANT; color: #53FDC3; font-weight: 500; font-size: 18px; line-height: 27px;}
.newsletter_cta .button {  padding: 13px 24px; line-height:26px;}

/* */
.subscription_section { background-repeat: no-repeat; background-size: cover; background-position: center; }
.subscription_section { position: relative; }
/* .subscription_section:before { position: absolute; content: ""; z-index: -1; left: 0; top: 0; height: 100%; width: 100%; background: linear-gradient(44.57deg, #3838E7 44.99%, #3D5CE0 61.74%, #459AD5 75.43%, #53FDC3 116.11%), linear-gradient(65.46deg, #000000 -35.27%, #010014 -14.27%, #05006D 15.95%, rgba(94, 91, 161, 0.643512) 55.4%, rgba(255, 255, 255, 0) 112.18%); } */
.subscription_row { display: flex; gap: 152px; align-items: center; flex-flow: wrap; }
.subscription_content { width: calc(55% - 76px); }
.subscription_form { width: calc(45% - 76px); }

.tag_row { padding: 11px 16px; display: inline-block; backdrop-filter: blur(28px); position: relative;    background: #6897d142; border-radius: 8px; }
.tag_row:after { -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; z-index: 0; border-radius: 8px; bottom: 0; content: ""; left: 0; padding: 2px; position: absolute; right: 0; top: 0; background: linear-gradient(15.95deg, #3838E7 -63.94%, #3D5CE0 2.12%, #459AD5 70.33%, #53FDC3 158.05%); }
.tag_row span { font-size: 22px; font-weight: 600; letter-spacing: 2px; line-height: 30px; display: inline-block; }
.tag_row span.pipe_sign { padding: 0 20px;  opacity: 0.5;}
.subscription_logo { padding-top: 50px; }
.subscription_logo img { width: 100%; display: block; object-fit: cover; }
.subscription_content .content { padding-top: 50px; }

.subscription_cover .form-title { display: none; }
.subscription_cover form .form-title .hs-form-field { margin-bottom: 0px !important; }
.subscription_cover .hs-form-field { margin: 0px !important; }
.subscription_cover .input input,
.subscription_cover .input select{ padding: 16px !important; color: rgba(67, 65, 89, 1); font-size: 16px; line-height: 17px; outline: none !important; border-left: 1px solid rgba(199, 197, 208, 1); border-top: 1px solid rgba(199, 197, 208, 1); border-bottom: 1px solid rgba(199, 197, 208, 1); border-radius: 8px; }
.subscription_cover form { position: relative; border-radius: 8px; background: transparent; max-width: 487px; }
.subscription_cover .input input::placeholder { color: #434159; }
.subscription_cover form .actions .hs-button { width: 100%; padding: 15px 24px; font-size: 16px; line-height: 21px; letter-spacing: 1.7px; border-radius: 8px; background: #53FDC3; color: #1C1B1F; font-weight: 600; }
.subscription_cover label { margin: 0px; }

.subscription_cover form .hs-error-msg { color: #000 !important; font-size: 14px; line-height: 20px; }
.subscription_cover .hs-input.invalid.error { border-color: #ef6b51; }
.subscription_cover { padding: 40px; background: #fff; border-radius: 24px; }
.subscription_cover form label span { font-size: 12px; line-height: 18px; color: #3838E7; }
.subscription_cover form fieldset.form-columns-1 .hs-input { width: 100% !important; }
.subscription_cover form .inputs-list label.hs-form-radio-display { padding:8px 0; display: flex; flex-flow: wrap; align-items: flex-start; gap: 12px; }
.subscription_cover form .inputs-list label.hs-form-radio-display input { width: 16px !IMPORTANT; height: 16px; display: flex; align-items: center; justify-content: center; margin: 0px; padding:0px !important; }
.subscription_cover form .inputs-list label.hs-form-radio-display span { font-size:10px; line-height:15px; color: #434159; width: calc(100% - 28px)!IMPORTANT;  }
.subscription_cover form fieldset.form-columns-2, fieldset.form-columns-1 {  padding-bottom: 16px !important;}
.subscription_cover form .inputs-list > li { margin: 0px;}

.subscription_cover form .actions .hs-button:hover, .newsletter_cover form .actions .hs-button:hover {  background-color: rgba(46, 229, 172, .94); border: 1px #1a334e; border-radius: 8px; color: #1c1b1f;}
.newsletter_cover form .actions .hs-button:hover { border-top-left-radius:0px; border-bottom-left-radius:0px; }

.subscription_cover .submitted-message {  background: transparent !IMPORTANT; color: #53FDC3; font-weight: 500; font-size: 18px; line-height: 27px;}


/* */
.banner_section {  padding: 40px 0px; user-select: none; overflow:hidden; pointer-events: none; pointer-events:none; }
.banner_row { display: inline-flex; align-items: center; justify-content: center; gap: 20px; }
.banner_cover { display: flex !important;  padding: 5px 0px; align-items: center; }
.banner_text_icon { width: 20px; height: 20px; margin:0 20px; }
.banner_text_icon .svg_icon { height: 20px; width: 20px; display: flex; align-items: center; justify-content: center; }
.banner_text { width: calc(100% - 40px); }
.banner_text h4 { letter-spacing:1px; white-space: nowrap; }
.banner_row .slick-arrow { display: none !important; }
.banner_row .slick-track { display: flex !important; align-items:center; gap: 20px; }
.banner_row.slick-initialized .slick-slide { width: auto !IMPORTANT; display: inline-block; }

/* */
.video_row { display: flex; flex-flow:wrap; align-items: center; gap: 32px;}
.video_cover { width: calc(50% - 16px);}
.video_content { width: calc(50% - 16px); padding: 0px 32px;}
.video_content .content { padding: 24px 0px 48px 0px;}
.video_inner { position:relative; border-radius: 16px; overflow: hidden;}
.video_cover .video_inner video { height: 100% !important; width: 100% !important; display:block;}
.play_button { position: absolute; top: 50%;transform: translateY(-50%) translateX(-50%); left: 50%;height: 108px; width: 108px; display: flex;align-items: center; justify-content: center; background: #FFFFFFB2; backdrop-filter: blur(25px); border-radius: 16px;}
.play_button svg { cursor: pointer;}
.video_button_mobile { display:none; }


/* */
.arguments_section { background-position: center; background-size: cover; background-repeat: no-repeat;}
.arguments_row { display: flex; flex-flow: wrap; align-items: center; gap: 32px;}
.arguments_content { width: calc(47% - 16px); padding-right:32px;}
.arguments_content .content_data { padding-top: 20px;}
.arguments_caroussel { width: calc(53% - 16px);padding-left:32px;}
.arguments_cover { padding-top: 48px;}
.arguments_inner { display: flex;flex-flow: wrap; align-items: center; gap: 24px; padding: 16px 24px; background: #FFFFFF1A; border-radius: 16px; margin-bottom: 32px;}
.svg__icon { height: 32px; width: 32px; display: flex; align-items: center; justify-content: center;}
.svg__icon img { height: 28px !important; width: 28px; display: block; object-fit: contain;}
.arguments_inner .content { width: calc(100% - 56px);}
.arguments_inner:last-child { margin-bottom: 0px;}

/* */

.key_section .title { text-align: center; padding-bottom: 100px; }
.key_row { display: flex; flex-flow: wrap; margin: 0 -16px; justify-content: center; }
.key_cover { border-radius: 24px; position: relative; display: inline-block; text-align: center; width: calc(100% / 3 - 32px); margin: 0 16px; padding: 30px; min-height: 328px; background: linear-gradient(128.66deg, rgba(28, 45, 79, 0.6) -26.73%, rgba(70, 70, 79, 0) 106.33%, rgba(28, 45, 79, 0) 106.33%); display: flex; align-items: center; justify-content: center; }
.key_cover:after { border-radius: 24px; bottom: 0; content: ""; left: 0; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; padding: 2px; position: absolute; right: 0; top: 0; z-index: 0; background: linear-gradient(280.01deg, #1C2D4F 0%, rgba(70, 70, 79, 0) 84.99%, rgba(28, 45, 79, 0) 84.99%), linear-gradient(0deg, #46464F, #46464F); }
.key_number { font-weight: 600; font-size: 85px; line-height: 75.62px; text-align: center; letter-spacing: 2px; font-family: Montserrat; }
.key_cover .content { padding-top: 32px; }
.key_cover:first-child .key_number { background: linear-gradient(248.39deg, #3838E7 -278.65%, #3D5CE0 -135.68%, #459AD5 11.94%, #53FDC3 201.77%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.key_cover:nth-child(2) .key_number { background: linear-gradient(65.82deg, #3838E7 -70.13%, #3D5CE0 4.95%, #459AD5 82.47%, #53FDC3 182.16%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.key_cover:last-child .key_number { background: linear-gradient(65.49deg, #3838E7 -58.06%, #3D5CE0 -11.06%, #459AD5 37.48%, #53FDC3 99.89%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.key_cover .key_number, .key_cover  .content { position: relative; z-index: 1; }
.key_cover > div { max-width: 300px; margin: 0 auto; }


/* */
.title_wrapper { text-align: center; display: grid; gap: 32px;}
.speaker_row { padding-top: 48px; display: flex; flex-flow: wrap; margin: 0 -16px;row-gap: 48px;}
.speaker_cover { width: calc(100% / 4 - 32px); margin: 0 16px; text-align: center;padding: 32px; background: #FFFFFF1A; border-radius: 16px;}
.speaker_thumb img { display: block; width: 100%; height: 224px !important; object-fit: cover; border-radius: 8px;}

.speaker_name { font-weight: 700; padding:32px 0px 16px;  }
.speaker_name, .speaker_role { line-height: 21px; text-align: center; }
.speaker_role {font-weight: 400; padding-bottom: 26px;}
.speaker_logo img { max-height: 36px !important; object-fit: contain; max-width: 100%; display: block;}
.speaker_logo { padding-top: 20px;}
.speaker_cover.speaker_inner { text-align: left; position:relative;}
.speaker_inner .sub_title { font-family: Montserrat; font-weight: 600; font-size: 13px; line-height: 15px; letter-spacing: 2px; color: #BCFFE0; padding-bottom:16px;}
.speaker_inner .title { font-family: Montserrat; font-weight: 600; font-size: 24px; line-height: 30px;}
.speaker_btn { position: absolute;left: 32px; bottom: 32px;}
.speaker_btn a.button { padding: 20px 24px; line-height:12px; letter-spacing:1.7px;}

.speaker_cover { position: relative; padding-bottom: 90px; }
.speaker_logo {  position: absolute; bottom: 32px; left: 50%; transform:translateX(-50%);  text-align: center;}
.speaker_thumb { position: relative; overflow:hidden; border-radius:8px;}
.linkedin_icon { position: absolute;top: auto; left: auto; bottom:20px; right: 20px; transition:all 0.3s ease; opacity:0; visibility:hidden;}
.linkedin_icon span { height: 46px; width: 46px; display: flex; align-items: center; justify-content: center; background: #FFFFFF; border-radius: 9px;}
.linkedin_icon span svg { height: 26px; width: 26px; fill: #2318d8;}
.speaker_cover { transition: all 0.3s ease;}
.speaker_cover:hover { background: #ffffff2e;}
.speaker_thumb img { transition:all 0.3s ease; }
.speaker_cover:hover .speaker_thumb img { transform: scale(1.1); overflow:hideen;}
.speaker_cover:hover .linkedin_icon { opacity: 1;visibility: visible;}
.speaker_cover { position: relative;}
.box_link a { position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.popup_title {font-family: Montserrat;font-weight: 600;font-size: 25px;line-height: 30px;color: rgba(28, 27, 31, 1);padding-bottom: 36px;}
.popup_box .fancybox-close-small { top: 20px; right: 20px;}
.popup_box.subscription_cover textarea.hs-input.hs-fieldtype-textarea { height: 51px !important; border-radius: 8px; border: 1px solid #c7c5d0 !important;}
.popup_box.subscription_cover form .inputs-list label.hs-form-radio-display { padding: 8px 0px;}
.popup_box.subscription_cover form .inputs-list>li { margin: 0px;}
.popup_form form { padding: 0px !important;}
.popup_form li.hs-form-booleancheckbox label { display: flex;}
.popup_form form fieldset.form-columns-1 li.hs-form-booleancheckbox label .hs-input { height: 15px !important; width: 15px !IMPORTANT; padding:0 !important; border-radius:0px !important; }
.popup_form li.hs-form-booleancheckbox label input span { width: calc(100% - 25px);}
.popup_form li.hs-form-booleancheckbox label span { width: calc(100% - 15px); margin: 0px !important;}
.popup_box.subscription_cover textarea.hs-input.hs-fieldtype-textarea { color: #000;}
.popup_box { min-height:  320px !important; min-width: 320px !IMPORTANT;}


/* */
.agenda_section.section_gap { padding:80px 0px; }
.agenda_title {  text-align: center;  padding-bottom: 80px; }
.agenda_row { display: flex; flex-flow: wrap; gap:32px; padding-bottom: 32px; }
.agenda_row:last-child { padding-bottom: 0px; }
.agenda_heading span.mobile { display: none;}
.agenda_description { display: none; }
.agenda_heading {font-weight:600;display: flex;align-items:flex-start;justify-content: space-between;overflow: visible;cursor: pointer;font-size: 18px;}
.agenda_content_column  { padding: 52px !important; }
.agenda_content_column h5.title { line-height: 130%; }
.agenda_content { padding-top: 32px;}
.agenda_row.empty-content { pointer-events: none;}
.down_arrow { border-radius: 8px; cursor: pointer; padding-left: 0; position: relative; right: 0; height: 40px; width: 40px; display: flex !important; align-items: center; justify-content: center; background: linear-gradient(45deg, #7F84FF -17%, #53FDC3 94%); }
.down_arrow span { position: relative; display: flex !important; justify-content: center; align-items: center; }
.agenda_row.active .down_arrow span:before { transform: rotateX(276deg); }
.down_arrow span:before { position: absolute; content: ""; height: 12px; width: 2px; background:#1C1B1F; }
.down_arrow span:after { position: relative; content: ""; height: 2px; width: 12px; background:#1C1B1F; }
.agenda_row.active .down_arrow {  background: linear-gradient(135deg, #4142ef, #1200ca);}
.agenda_row.active .down_arrow { display: none; }
.agenda_content > div {  max-width: 749px;}
.agenda_time_colum { width: 182px; display: flex; border-radius:16px;  align-items: center; justify-content: center;}
.agenda_content_column > div {  position: relative;  z-index: 1;}
.agenda_content_column{ width:calc(100% - 214px );  }
.agenda_heading .tag_logo_img .tag {border: none;}
.agenda_content_column{position: relative;z-index: 1;overflow: hidden;border-radius: 16px;}
.agenda_time_colum { position:relative; padding:2px; }
.agenda_time_colum:after, .agenda_content_column:after { background: linear-gradient(256.75deg, #3838e7 -46.13%, #3d5ce0 .87%, #459ad5 49.4%, #53fdc3 111.8%); border-radius: 16px; bottom: 0; content: ""; left: 0; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; padding: 2px; position: absolute; right: 0; top: 0; z-index: 0;}
.agenda_content_column, .agenda_time_colum { box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1); background:linear-gradient(110.98deg, rgba(28, 45, 79, 0.6) 20.98%, rgba(70, 70, 79, 0) 107.26%, rgba(28, 45, 79, 0) 107.26%), linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));position:relative;padding:2px;}
.agenda_content_column.empty-content .agenda_content { display: none;}
.agenda_row.empty-content .agenda_time_colum, .agenda_row.empty-content .agenda_content_column {background: linear-gradient(128.66deg, rgba(28, 45, 79, 0.6) -26.73%, rgba(70, 70, 79, 0) 106.33%, rgba(28, 45, 79, 0) 106.33%),linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));}
.agenda_row.empty-content .agenda_time_colum:after, .agenda_row.empty-content .agenda_content_column:after { background: linear-gradient(280.01deg, #1C2D4F 0%, rgba(70, 70, 79, 0) 84.99%, rgba(28, 45, 79, 0) 84.99%), linear-gradient(0deg, #46464F, #46464F);}
.agenda_description { position: relative; z-index: 999;}
.agenda_row span.icon_calendar { transition:all .3s ease; background: rgba(232, 255, 241, 0.6);height: 60px;width: 60px;display: flex;flex-flow: wrap;align-items: center;justify-content: center;border-radius: 100px;position: absolute;top: 0;right: 0;opacity: 0;}
.agenda_row.active span.icon_calendar { opacity: 1;}
.customer_data .role { font-weight: 600;}
.logo_cover {display: flex; flex-flow: wrap; align-items: center;}
.logo_inner { padding-left: 50px; position: relative;}
.logo_inner:after { position: absolute; content: ""; left: 25px; top: 50%;transform: translateY(-50%) rotate(45deg); height: 13px; width: 2px; background: rgba(255, 255, 255, 0.5);}
.logo_inner:before { position: absolute; content: ""; left: 25px; top: 50%; transform: translateY(-50%) rotate(135deg); height: 13px; width: 2px;  background: rgba(255, 255, 255, 0.5);}
.logo_inner:first-child {padding: 0;}
.logo_inner:first-child:before, .logo_inner:first-child:after { display: none;}
.agenda_row.active .down_arrow span:after { background: #fff !IMPORTANT;}
/*  */
.title_tag_row .tag { letter-spacing:1px; display: inline-block; position: relative; line-height:13px; letter-spacing:1.5px; padding: 16px;}
.title_tag_row .tag:after { background:  linear-gradient(256.75deg, #3838E7 -46.13%, #3D5CE0 0.87%, #459AD5 49.4%, #53FDC3 111.8%); border-radius: 8px; bottom: 0; content: ""; left: 0; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; padding: 2px;position: absolute; right: 0;top: 0; z-index: 0;}
.tag_logo_img { display: flex; align-items: center;gap: 32px; flex-flow: wrap; padding-bottom:32px;}
.logo_cover img { display: block;}
.customer_row { padding-top:32px; max-width: none !important; display: flex; flex-flow: wrap; align-items: flex-start; row-gap: 32px; margin: 0 -16px;}
.customer_cover { width: calc(100% / 3 - 32px); margin: 0 16px; display: flex; gap: 16px;align-items: flex-start;}
.customer_img { height: 52px; width: 52px;}
.customer_img img { width: 100%; display: block; object-fit: cover; height: 100% !important; border-radius: 8px;}
.customer_data { width: calc(100% - 68px);}

/* */
.sponsor_section .title { text-align: center; padding-bottom: 48px;}
.sponsor_cover { text-align: center; }
.sponsor_cover { position: relative; display: inline-block; overflow: hidden; border-radius: 12px;}
.sponsor_cover:after { background: linear-gradient(24deg, #46464f, rgba(70, 70, 79, 0) 84.99%, rgba(28, 45, 79, 0) 0), linear-gradient(275deg, #46464f, #46464f); border-radius: 12px; bottom: 0; content: ""; left: 0; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; padding: 2px; position: absolute; right: 0; top: 0; z-index: 0; overflow: hidden;}
.sponsor_logo { padding: 22px 10px; display: flex;align-items: center; justify-content: center; background: linear-gradient(104.15deg, #1C2D4F 1.38%, rgba(70, 70, 79, 0) 99.5%, rgba(28, 45, 79, 0) 99.5%);}
.sponsor_heading { background: #1C1B1F; position: relative;}
.sponsor_heading:after { background: linear-gradient(24deg, #46464f, rgba(70, 70, 79, 0) 84.99%, rgba(28, 45, 79, 0) 0), linear-gradient(275deg, #46464f, #46464f); bottom: 0; content: ""; left: 0; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; padding: 2px; position: absolute; right: 0; top: 0; z-index: 0; overflow: hidden;}
.sponsor_heading span { font-weight: 600; font-size: 14px; line-height: 16px; text-align: center; letter-spacing: 2px;}
.sponsor_heading { display: flex; align-items: center; justify-content: center; padding: 12px 0px; gap: 8px;}
.sponsor_heading span {text-transform: uppercase;}
.sponsor_heading span svg.gold path {fill: #A1A3FF;}
.sponsor_heading span svg.platinium path { fill: #53FDC3;}
.sponsor_heading span svg.silver path {fill: #FFFFFFB2;}
.sponsor_logo img { display: block; height: 31px !important; width: 131px; object-fit: contain }
.sponsor_row.disable_category { align-items: flex-start;}

/**/
.vanue_slider_section { padding: 0; }
.vanue_slider_wrapper { --padding: 100px; --border_radius: 25px; padding: var(--padding) 0; width: 100%; overflow: hidden; }
.vanue_row { gap:32px; display: flex; flex-flow:wrap; align-items: center; justify-content: space-between; }
.address_content { width: calc(50% - 16px); padding: 0px 32px; }
.vanue_box { width: calc(50% - 16px);}
.address_copy .text a { color:#fff; width: calc(100% - 40px); font-size: 18px; line-height: 27px; font-family: 'Roboto'; font-weight: 400; }
.address_copy { position:relative; gap:16px; display: flex; align-items: center;  }
.vanue_slider_section span.icon { transition:all 0.3s ease; cursor: pointer; padding: 10px; height: 40px; width: 40px; border-radius:8px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.1); }
.vanue_slider_section span.icon:hover { background: #FFFFFF33;}
.vanue_slider_section span.icon svg { height: 20px; width: 20px; }
.address { font-size: 22px; line-height: 30px; font-family: roboto; font-weight: 400;padding:24px 0px; color: #E4E1EC }
.address_map img { width: 320px; height: 225px !important; display: block; border-radius: 24px; }
.vanue_cover { display: block; border-radius: var(--border_radius); overflow: hidden; position: relative; width:100% !important;}
.vanue_cover img { width: 100%; object-fit: cover; transition: all 0.3s ease; border: 3px solid transparent; border-radius: var(--border_radius); }
.vanue_slider_wrapper .slick-track { position: absolute; }
.vanue_slider_wrapper .slick-list { overflow: visible; }
.vanue_slider_wrapper .slick-slide:not(.slick-active) .vanue_cover { background-image: none;}
.vanue_cover:before, .vanue_cover:after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 350px; background: linear-gradient(347.59deg, #1C2D4F 2.02%, rgba(70, 70, 79, 0) 40.61%, rgba(28, 45, 79, 0) 40.61%); z-index: 1; transition: all 0.3s ease; opacity: 0;}
.vanue_cover:after { top: auto; bottom: 0; }
.vanue_cover:before { background: linear-gradient(180.49deg, #1C2D4F -11.75%, rgba(70, 70, 79, 0) 30.3%, rgba(28, 45, 79, 0) 30.3%); }
.link_text {display: none;}
.vanue_slider_wrapper .slick-slide.slick-active .vanue_cover:before,
.vanue_slider_wrapper .slick-slide.slick-active .vanue_cover:after { opacity: 0; }
.vanue_slider_wrapper .slick-slide{ margin:20px 0; }
.vanue_slider_wrapper { pointer-events:none; }
#copyFeedback { width: 130px; background: #fff; color: black; padding: 10px; border-radius: 16px; font-family: Montserrat; font-weight: 600; position: absolute; font-size:16px; left: 0px; top: 50px;}
.vanue_cover img {height: 456px !important;}
.address_copy p { color: #fff;}


/* */
.faq_title { text-align: center; }
.faq_header .faq_arrow { border-radius: 8px; cursor: pointer; padding-left: 0; position: relative; right: 0; height: 40px; width: 40px; display: flex; align-items: center; justify-content: center; background: linear-gradient(45deg, #7F84FF -17%, #53FDC3 94%); }
.faq_arrow span { position: relative; display: flex; justify-content: center; align-items: center; }
.faq_column.active .faq_arrow span:before { transform: rotateX(276deg); }
.faq_arrow span:before { position: absolute; content: ""; height: 12px; width: 2px; background: #1C1B1F; }
.faq_arrow span:after { position: relative; content: ""; height: 2px; width: 12px; background: #1C1B1F; }
.faq_column { display: flex; width: 100%; flex-flow: wrap; align-items: center; border-bottom: 1px solid #46464F; padding: 40px 0; }
.faq_header { font-weight: 600; font-family: 'Montserrat'; line-height: 21px; width: 100%; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.faq_details { width: 100%; display: none; }
.faq_main { padding-top: 55px; padding-bottom: 94px; }
.faq_column:last-child { border-bottom: 0; padding-bottom: 0; }
.faq_header span svg { width: 28px; }
.faq_column.active path#minusicon { opacity: 0; }
.faq_title h2 { font-weight: 600; padding-bottom: 40px; }
.faq_column:first-child { padding-top: 0; }
.faq_details > div { margin-top: 40px; }
.faq_section .faq_row { padding-top:48px; max-width: 895px; margin: 0 auto; display: block; }
.faq_inner_title { display: flex; align-items: flex-start; max-width: calc(100% - 100px); }
.faq_inner_title span.desk { margin-right: 5px; }
.faq_column.active .faq_arrow { background:linear-gradient(135deg, #4142EF 0%, #1200CA 100%);}
.faq_header { pointer-events: none;  }
.faq_header .faq_arrow {  pointer-events: all; }
.faq_column.active .faq_arrow span:after { background: #fff !important;}


/* */
.experiment_section { overflow: hidden; }
.experiment_section .title { text-align: center;}
.experiment_row { padding-top: 52px;}
.experiment_thumb img { height: 169px !important; display: block; width: 100%; object-fit: cover;}
.experiment_cover { border-radius: 16px; overflow: hidden; background: #FFFFFF1A;}
.experiment_inner { padding: 32px;}
.experiment_tag  { font-weight:600; padding: 14px; display: inline-block; position: relative; background:linear-gradient(110.98deg, rgba(28, 45, 79, 0.6) 20.98%, rgba(70, 70, 79, 0) 107.26%, rgba(28, 45, 79, 0) 107.26%); border-radius:12px; letter-spacing: 2px; line-height:18px;}
.experiment_tag:after { background: linear-gradient(256.75deg, #3838E7 -46.13%, #3D5CE0 0.87%, #459AD5 49.4%, #53FDC3 111.8%); border-radius: 12px; bottom: 0;content: ""; left: 0; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; overflow: hidden; padding: 2px; position: absolute; right: 0; top: 0; z-index: 0;}
.experiment_btn a { width: 100%; line-height:130%; letter-spacing:1.7px;}
.experiment_title { padding: 24px 0px;}
.experiment_title h5 { line-height:32px; }
.experiment_row ul.slick-dots { position: absolute; bottom:2px; left:150px; padding: 0; margin: 0; display: flex !important; align-items: center; justify-content: center; list-style: none; gap: 7px;}
.experiment_row ul.slick-dots li {cursor:pointer;position: relative;padding: 0 4px;display: block;}
.experiment_row ul.slick-dots button { font-size: 0; padding: 0;}
.experiment_row ul.slick-dots li:before { position: absolute; height: 8px; width: 8px; content: ""; background: #FFFFFF33; left: 0;top: 0;  border-radius: 100%;}
.experiment_row ul.slick-dots li.slick-active:before { background: #3838E7;}
.date_location span.pipe_sign { padding:0px 16px; opacity:0.5; }
.slider_arrow_row { display: flex; align-items: center;justify-content: flex-start; gap: 16px;}
.slider_arrow { height: 53px; width: 53px; display: flex; align-items: center; justify-content: center; background: #FFFFFF26; border-radius: 10px; cursor: pointer;}
.slider_arrow.slider_arrow_next { transform: rotate(180deg);}
.slick-disabled { opacity: 0.5; pointer-events: none;}
.slider_cover { position: relative; }
.slider_cover .slick-slider{
  padding-bottom: 96px; 
}
.slider_arrow_row { position: absolute; left: 0; bottom: 0;}
.experiment_row .slick-slide { margin: 0 16px;}
.experiment_row .slick-track { margin: 0 -16px;}
.experiment_row .slick-list { overflow: visible;}
.experiment_row  .slick-slide.slick-active { opacity: 1 !important;}
.experiment_row .slick-slide.slick-active~div { opacity: 1;}
.experiment_row .slick-track { display: flex;}
.experiment_row .slick-slide {  height: auto;}
.experiment_row .slick-slide>div { height: 100%;}
.experiment_btn span.button { background: #777680; line-height:130%; pointer-events:none; width:100%; letter-spacing:1.7px; }
.experiment_btn { padding-top: 32px;}

.hero__section { background: linear-gradient(172.26deg, #7F84FF 2.33%, #3838E7 102.45%); padding: 96px 0px; text-align: center; }
.hero_cover { max-width: 721px; margin: 0 auto; padding-bottom: 72px; }
.hero__section .hero_thumb img { /*  width: 100%; height: 44px !important; */ object-fit: contain; display: block; }
.hero_thumb { padding-bottom: 72px; }
.hero_content { max-width: 595px; margin: 0 auto; line-height: 23px; }

.newsletter_v2 { padding-top: 96px; background-color: #F0EFFF; }
.newsletter_wrap { display: flex; flex-flow: wrap; align-items: center; gap: 48px; padding: 74px; background-color: #fff; border-radius: 24px; }
.newsletter_thumb { width: calc(45% - 24px); }
.newsletter_thumb img { border-radius: 16px; display: block; width: 100%; }
.newsletter__content { padding: 0px; width: calc(55% - 24px); }
.newsletter_tag { text-transform:uppercase; font-family: Roboto; font-weight: 600; font-size: 16px; line-height: 18px; letter-spacing: 1.7px; padding: 10px 11px; background: #5E62FF; display: inline-block; border-radius: 5px; }
.newsletter__content .title { padding: 24px 0px; }
.newsletter__content .title h2 { color: #1C1B1F; }
.newsletter__content .content { padding-bottom: 32px; color: #191B1B; }

.logo_section { padding: 48px 0px; background: #F0EFFF;}
.logo_row { padding-top: 48px; display: flex; flex-flow: wrap; align-items: center;  gap:21px; justify-content: center;
  /*     justify-content: space-between;  margin:0 -10px; */}
.logo_container { display: flex; align-items: center; justify-content: center;
  /*     width: calc(100% / 6 - 20px);margin: 0 10px; */}
.review_row { text-align: center;}
.review_row img {  height: 24px !important; object-fit: contain; width: 100%; display: block;}
.thumbnail img { width: 100%;  display: block; object-fit: cover;}

.discover_section { padding: 72px 0px; background: linear-gradient(172.26deg, #7F84FF 2.33%, #3838E7 102.45%); }
.discover_section .title { text-align: center; }
.discover_row { padding-top: 72px; display: flex; flex-flow: wrap; row-gap: 32px; margin: 0 -16px; }
.discover_cover { width: calc(100% / 3 - 32px); margin: 0 16px; background: #fff; border-radius: 16px; overflow: hidden; position: relative; }
.discover_thumb { overflow:hidden; }
.discover_thumb img { transition:all 0.4s ease; width: 100%; height: 153px !important; display: block; object-fit: cover; }
.discover_cover:hover .discover_thumb img{ transform:scale(1.1); }   
.discover_inner { padding: 32px 32px 100px; }
.discover_tag { padding: 10px 11px; background: rgba(94, 98, 255, 1); display: inline-block; border-radius: 5px; font-weight: 600; font-size: 16px; line-height: 18px; letter-spacing: 1.7px; }
.discover_inner .title { text-align: left; padding-top: 24px; }
.discover_inner .title h5 { color: rgba(10, 10, 10, 1); }
.discover_link { position: absolute; left: 32px; right: 32px; bottom: 32px; }
.discover_link a { display: flex; align-items: center; gap: 11px; flex-flow: wrap; }
.discover_link a span.link_text { font-family: Roboto; font-weight: 700; font-size: 15.75px; line-height: 18.46px; letter-spacing: 2px; color: rgba(56, 56, 231, 1); display: block; }
.discover_link a span.link_icon { height: 16px; width: 16px; display: flex; align-items: center; justify-content: center; }
.discover_link a span.link_icon svg { height: 16px; width: 16px; vertical-align: middle; }

.skill_section { background: rgba(255, 255, 255, 1); padding: 96px 0px; }
.skill_wrap { max-width: 1034px; margin: 0 auto;border-radius: 16px; padding: 48px 72px; position: relative; background: linear-gradient(0deg, #E1E0FF 14.01%, rgba(235, 235, 253, 0.724) 45.55%, rgb(235 235 253 / 47%) 76.44%);}
.skill_tag { background: linear-gradient(110.98deg, rgba(56, 56, 231, 0.3) 20.98%, rgba(56, 56, 231, 0) 107.26%); color: rgba(56, 56, 231, 1); font-weight: 600; font-size: 12px; line-height: 14px; letter-spacing: 1.7px; padding: 8px 11px; display: inline-block; border-radius: 5px; border: 1px solid rgba(56, 56, 231, 0.4); }
.skill_content .title { padding: 26px 0px; }
.skill_content { max-width: 480px; }
.skill_content .title h3 { font-size: 32px; line-height: 39px; color: #0A0A0A; }
.skill_content .content { font-weight: 500; color: #0A0A0A; }
.skill_btn { padding-top: 26px; }
.thumbnail { position: absolute; right: 0; bottom: 0; }
.thumbnail img { display: block; width: 442px; }
.skill_content .content p { font-family: inherit; font-weight: inherit;}

.company_section { padding: 52px 0px; background: #6363F6; }
.sub_text { text-align: center; font-weight: 600; font-size: 16px; line-height: 24px; letter-spacing: 1.7px; text-transform: uppercase; }
.company_section .logo_row { gap:0px; padding-top: 32px; display: flex; align-items: center; justify-content: center; flex-flow: wrap; margin: 0 -36px; }
.company_section .logo_cover img { display: block; object-fit: contain; width: 100%; max-height: 60px; }
.company_section .logo_cover { width: calc(100% / 6 - 72px); margin: 0 36px; text-align: center; }

.hero_section { position: relative; padding: 72px 0;background-position: top; background-size: cover; background-repeat: no-repeat; }
.hero_section:before { position: absolute; content: ""; height: 100%; width: 100%; top: 0; left: 0; bottom: 0; right: 0; background: linear-gradient(172.26deg, #7F84FF 2.33%, #3838E7 102.45%); mix-blend-mode: hard-light; z-index: -1; }
.hero_cover { max-width: 725px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.tag { font-family: Roboto; font-weight: 600; font-size: 12px; line-height: 12px; letter-spacing: 1.7px; padding:9px 11px; background: linear-gradient(110.98deg, rgba(255, 255, 255, 0.3) 20.98%, rgba(255, 255, 255, 0) 107.26%); display: inline-block; border: 1px solid #FFFFFF66; border-radius: 5px; }
.hero_thumb { padding: 32px 0px; display: flex; justify-content: center; }
.hero_thumb img { /* width: 615px; height: 118px !important; */ display: block; object-fit: cover; }
.tags { padding-top: 32px; }
.tags ul { padding: 0; margin: 0; list-style: none; display: inline-flex; flex-flow: wrap; justify-content: center; gap: 16px; }
.hero_cover .title { padding: 32px 0px; }
.newsletter_form.newsletter_cover { max-width: 527px; margin: 0 auto; padding-top: 32px; }
.hero_cover .content { line-height: 23px;}
.tags ul li { position: relative; z-index:9; display: flex; flex-flow:wrap; align-items:center; gap:8px; padding: 10px 16px 10px 10px; background: #FFFFFF36;  border-radius: 48px; overflow: hidden; backdrop-filter:blur(25px);}
.tags ul li:after { -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; z-index: -1; border-radius: 48px; bottom: 0; content: ""; left: 0; padding: 1px; position: absolute; right: 0; top: 0;background: linear-gradient(92.37deg, rgba(255, 255, 255, 0) -196.7%, rgba(255, 255, 255, 0.5) 453.26%);}
.tags ul li span.icon { height: 24px; width: 24px; display: flex; align-items: center; justify-content: center; background: #53FDC3; border-radius: 100px;}
.tags ul li span.text { width: calc(100% - 32px);}
.newsletter_form.newsletter_cover form { max-width: 100%;}

.lp_footer { background: #0A0A0A; padding: 24px 0px; }
.footer_left, .footer_right { width: calc(50% - 16px); }
.lp_footer_row { display: flex; flex-flow: wrap; align-items: center; justify-content: space-between; gap: 32px; }
.footer_left { display: flex; flex-flow: wrap; align-items: center; gap: 80px; max-width: 455px; }
.logo img { width: 149px !important; height: 31px !important; display: block; object-fit: contain; }
.copyright_text { width: calc(100% - 229px); font-size: 12px; line-height: 14.06px; letter-spacing: 0.3px; text-align: right; }
.copyright_text p { font-size: 12px; line-height: 14.06px; letter-spacing: 0.3px; }
.footer_right ul { padding: 0; margin: 0; list-style: none; display: flex; flex-flow: wrap; align-items: center; justify-content: end; gap: 16px; }
.footer_right ul li { height: 20px; width: 20px; display: flex; align-items: center; justify-content: center; }
.footer_right ul li a span svg { fill: #fff; height: 16px; width: 16px; transition: all 0.3s ease; }
.footer_right ul li:hover a span svg { fill: #ffffff6e; }


.recent_newsletter { padding: 64px 0px; background: linear-gradient(0deg, #E1E0FF -0.02%, #FFFFFF 99.98%); }
.recent_newsletter .title h2 { color: #000; font-size: 46px; line-height: 55.2px; }
.recent_newsletter .title { text-align: center; padding-bottom: 48px; }
.recent_newsletter_row { justify-content:center; display: flex; flex-flow: wrap; margin: 0 -16px; }
.newsletter__cover { width: calc(100% / 4 - 32px); margin: 0 16px; }
.newsletter_img_cover { border-radius: 16px; position: relative; overflow:hidden; }
.newsletter_date { position: absolute; left: 17px; bottom: 16px; padding: 8px 17px 8px 12px; font-family: Roboto; font-weight: 500; font-size: 14px; line-height: 14px; background: rgba(56, 56, 231, 1); border-radius: 6px; }
.newsletter_img img { border-top-left-radius:7px; border-top-right-radius:7px; transition:all 0.4s ease; display: block; width: 100%; object-fit: cover; }
.newsletter_title { transition:all 0.4s ease; padding-top: 16px; color: #191B1B; font-weight: 500; line-height: 21px; }
.newsletter__cover:hover img { transform: scale(1.1);}
.newsletter__cover:hover .newsletter_title { text-decoration:underline;}

.thankyou_banner { padding: 101px 0px 72px; background-size: cover; background-repeat: no-repeat; background-position: top; position: relative; }
.thankyou_banner:before { position: absolute; content: ""; height: 100%; width: 100%; left: 0; top: 0; right: 0; bottom: 0; background: linear-gradient(172.26deg, #7F84FF 2.33%, #3838E7 102.45%); z-index: -1; }
.thankyou_banner .title { text-align: center; }
.thankyou_banner .content { padding-top: 42px; max-width: 595px; margin: 0 auto; text-align: center; line-height: 23px; }

.newsletter__cover { position: relative;}
.newsletter__cover > a { position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1;}

.quote_section {  padding: 96px 0px; background: linear-gradient(44.57deg, #3838E7 44.99%, #3D5CE0 61.74%, #459AD5 75.43%, #53FDC3 116.11%),linear-gradient(65.46deg, #000000 -35.27%, #010014 -14.27%, #05006D 15.95%, rgba(94, 91, 161, 0.643512) 55.4%, rgba(255, 255, 255, 0) 112.18%);}
.quote_section .title { text-align: center; max-width: 842px; margin: 0 auto;}
.quote_row {  padding-top: 48px; display: flex; flex-flow: wrap; justify-content: center; margin: 0 -16px;}
.quote_boxes { width: calc(100% / 4 - 32px); margin: 0 16px; padding: 32px;background: #fff; border-radius: 16px; color: #000; position: relative;}
.quote_cover { display: flex; flex-flow: wrap; gap: 16px; position: absolute; left: 32px; right: 32px;  bottom: 32px; top: auto;}
.quote_img img { width: 100%;  object-fit: cover; display: block; height: 100% !IMPORTANT;}
.quote_img {  height: 52px; width: 52px;border-radius: 8px; overflow: hidden;}
.quote_section .designation {  width: calc(100% - 68px); color:#1C1B1F;}
.quote_section .designation .role {font-weight: 600; }
.quote_content { padding-bottom: 100px; color:#1C1B1F; }
.company_logos_row { padding-top:75px;pointer-events:none; }
.company_logos_row .splide__list { gap: 100px; }
.company_logos_row .splide__list li img { height: 48px !important; width: 100%; max-width:175px !important; object-fit: contain;}




@media(max-width:1440px) {
  .skill_wrap { padding: 48px; }
}

@media(min-width:992px) and (max-width:1200px){
  .quote_row { margin: 0 -12px; }
  .quote_boxes { width: calc(100% / 4 - 24px);  margin: 0 12px; padding: 20px;}
  .quote_cover { left: 20px; right: 20px; bottom: 20px; gap: 10px; }
  .quote_img { height: 40px; width: 40px; }
  .designation {  width: calc(100% - 50px); }
}

@media (min-width:768px) and (max-width:855px){
  .vanue_row { max-width: 100%;}
  .vanue_box { max-width: 330px; padding-left:0px;}
  .vanue_cover img {  height: 301px !important;}
}

@media(min-width:400px) and (max-width:767px) {
  .logo_thumbnail img{ margin:0px;}
}

@media (min-width:768px) and (max-width:1250px) {
  .agenda_heading .title { font-size: 17px;  }
  .agenda_frame_row { padding: 40px 30px; }
  .agenda_time_colum { width: 20%;  margin: 0;}
  .agenda_content > div {  max-width:435px;}
  .agenda_content_column { padding:25px !important; width: 75%;}
  .agenda_title { padding-bottom: 50px;}
  .customer_cover { width: calc(50% - 24px);  margin: 0 12px;}
  .customer_row {margin: 0 -12px; row-gap: 25px;}
  .customer_data { font-size:17px; }
}

@media(max-width:1350px){ 
  .subscription_row { gap: 46px; align-items: flex-start; }
  .subscription_content { width: calc(50% - 23px); }
  .subscription_form { width: calc(50% - 23px); }
  .subscription_cover { padding: 20px; }
}

@media(max-width:1250px){ 
  .container{ padding:0 24px; }
  .h2, h2 { font-size: 32px !important;  line-height: 40px; }
  .speaker_cover { width: calc(100% /3 - 32px); }
  .key_section .title { padding-bottom: 80px;}
  .key_cover { padding: 65px;}
  .key_cover .content { padding-top: 20px;}
}

@media(max-width:1024px){ 
  .title_wrapper { gap: 15px; }
  .speaker_row {row-gap: 32px; }
  .speaker_role { padding-bottom: 32px; }
  .speaker_thumb img { height: 160px !important; }
  .hero__section { padding: 70px 0px; }
  .hero_cover { padding-bottom: 32px; }
  .hero_thumb { padding-bottom: 32px; }
  .newsletter_wrap { padding: 32px; }
  .thumbnail { position: static; width: calc(50% - 16px); }
  .skill_wrap { padding: 32px; display: flex; flex-flow: wrap; align-items: center; gap: 32px; }
  .skill_content { max-width: 100%; width: calc(50% - 16px); }
  .skill_section { padding: 70px 0px; }
  .thumbnail img { width: 100%; object-fit: contain; }
  .logo_row { margin: 0 -16px; row-gap: 32px; }
  .company_section .logo_cover { margin: 0 16px; width: calc(100% / 3 - 32px); }
  .recent_newsletter .title { padding-bottom: 32px; }
  .newsletter__cover { width: calc(50% - 32px); }
  .recent_newsletter_row { row-gap: 32px; }
}

@media(max-width:991px){

  .section_gap { padding: 70px 0px; }
  .h2, h2 { font-size: 26px !important; line-height: 31px !important; }
  .h3,  h3 { font-size: 24px !important;  line-height: 32px !important; }
  .h1, h1 { font-size: 40px !important; line-height: 50px !important; }

  /* */
  .newsletter_logo img { height: 100% !important; }
  .newsletter_cover .input input { padding: 16px 17px !IMPORTANT;}
  .newsletter_cover form .actions { position: static;  padding-top: 15px; }
  .newsletter_cover form .actions .hs-button { border-radius: 8px !important; width: 100%; }
  .newsletter_cover form {max-width: 100%; }

  /* */
  .subscription_logo { padding-top: 32px; }
  .subscription_logo img { height: 100% !important; }
  .tag_row span { font-size:14px; line-height:28px; }
  .tag_row span.pipe_sign { padding:0px 12px; }

  .subscription_content .content { padding-top: 32px; }
  .subscription_cover .input input { padding: 16px 17px !IMPORTANT;}
  .subscription_cover form { max-width: 100%; background: #fff; padding: 24px !IMPORTANT; border-radius:24px; }
  .subscription_cover form .actions .hs-button { border-radius: 8px; width: 100%; }
  .subscription_row { gap: 20px; align-items: flex-start; }
  .subscription_content { width: calc(50% - 10px); }
  .subscription_form { width: calc(50% - 10px); }
  .subscription_cover { padding: 0px; }

  /* */
  .video_row { gap: 20px; align-items: flex-start;}
  .video_content, .video_cover { width: calc(50% - 10px);}
  .video_content { padding: 0px;}
  .video_content .content { padding: 20px 0px;}
  .play_button { height: 50px; width: 50px; border-radius:8px; }
  .play_button svg { height: 25px; width: 25px; }

  /* */
  .arguments_content, .arguments_caroussel { width: calc(50% - 16px); }
  .arguments_content {  padding-right:0px; }
  .arguments_caroussel { padding-left:0px; }
   .arguments_content .content_data { text-align:center;}

  /* */
  .key_section .title { padding-bottom: 40px;}
  .key_cover {padding: 25px;}
  .key_cover .content { padding-top: 20px;}
  .key_number { font-size: 50px; line-height: 50px; display: inline-block;}

  /* */
  #copyFeedback {  font-size: 12px;  left: 50px;  top: 6px; width: 110px; padding: 6px 10px; text-align: center; }
  .address_content { padding:0px; }

  /* */
  .sponsor_cover { width: calc(100% / 3 - 16px);margin: 0 8px; }
  .sponsor_row { margin: 0 -8px;row-gap: 32px; }
  .popup_box {  margin: 0 20px !important; }
  .slider_arrow_row { display:none; }
  .experiment_row ul.slick-dots { display: none !IMPORTANT; }
  .slider_cover .slick-slider { padding-bottom: 0px; }

  .newsletter_wrap { padding: 32px 20px; gap: 32px; align-items: flex-start; }
  .newsletter_v2 { padding-top: 70px; }
  .newsletter_thumb { width: calc(45% - 16px); }
  .newsletter__content { width: calc(55% - 16px); }

  .discover_row { padding-top: 48px; }
  .discover_cover { width: calc(50% - 32px); }
  .discover_inner { padding: 32px 32px 70px; }

  .footer_left { gap: 0; row-gap: 15px; }
  .copyright_text { width: 100%; text-align: left; }

  .thankyou_banner { padding: 70px 0px;}
  .thankyou_banner .content {padding-top: 32px;} 


}

@media(min-width:768px)  {
  .newsletter_form .input input { padding: 16px 200px 17px 16px !important; }
  .newsletter_form form .actions { position: absolute; top: 0; right: 0; padding: 0px; }
  .newsletter_form form .actions .hs-button { border-top-left-radius: 0px !important; border-bottom-left-radius: 0px !important; }   
}

@media(max-width:767px){ 
  a.button { padding:10px 17px; }

  /* */
  .newsletter_section.section_gap { padding: 30px 0 32px; background-size: 100% 100%;}
  .newsletter_content { padding: 0; width: 100%; }
  .newsletter_carousel { padding: 0px; width: 100%; }
  .newsletter_row { row-gap: 30px; }
  .newsletter_logo { padding-top: 30px; }
  .newsletter_content .content { padding: 32px 0px 46px; }

  /* */
  .subscription_section.section_gap { padding: 48px 0px; background-size: auto; background-position: left center;}
  .subscription_row { gap: 0px; }
  .subscription_content { padding: 0; width: 100%; }
  .subscription_form { padding: 0px; width: 100%; }
  .subscription_row { row-gap: 30px; }
  .subscription_cover { padding:0px; }

  /* */
  .video_section.section_gap { padding: 48px 0px;}    
  .video_cover { width: 100%; order:1; }
  .video_content { width: 100%; padding: 0px; }
  .video_row { gap: 30px 0px; }
  .video_content { text-align: center; }
  .video_content .content { padding: 24px 0px; }
  .video_button { display: none; }
  .poster_img img { height: 182px !important;}
  .video_button_mobile { display:block; text-align: center; padding-top: 30px; }

  /* */
  .arguments_section.section_gap { padding: 48px 0px; }
  .arguments_content { width: 100%;  }
  .arguments_caroussel { width: 100%; }
  .arguments_row { row-gap: 46px; }
  .arguments_cover { padding-top: 32px; }

  /* */
  .key_section .title { padding-bottom: 32px; }
  .key_row { margin: 0px;  row-gap: 32px; }
  .key_cover { width: 100%; margin: 0px; padding: 65px 85px; }

  /* */
  .speaker_section { padding: 48px 0px; }
  .title_wrapper { gap: 16px; }
  .speaker_row { margin: 0px; padding-top: 32px; row-gap: 32px;}
  .speaker_cover { margin: 0px; width: 100%; }
  .speaker_thumb img { height: 248px !important; }
  .speaker_role { padding-bottom: 20px; }
  .speaker_inner .title { font-size: 20px; line-height: 25px;}
  .speaker_btn { position: static; padding-top: 56px;}

  /* */
  .agenda_section { padding: 40px 0; }
  .agenda_title { padding-bottom: 40px; }
  .agenda_heading { line-height: 30px; font-size: 16px; padding: 0px; align-items: flex-start; }
  .agenda_heading .title { font-weight:600; font-size: 24px;}
  span.down_arrow { height: 8px; width: 16px; }
  span.down_arrow svg { vertical-align: middle; height: 8px; width: 16px; }
  .agenda_frame_row { padding: 40px;gap:20px 0; }
  .agenda_cover {display: flex; flex-flow: wrap; gap: 16px 0; }
  .agenda_heading span.mobile { position: absolute; top: -10px; background: linear-gradient(45deg, #7F84FF -17%, #53FDC3 94%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .agenda_row span.icon_calendar { width: 40px; height: 40px; right: 20px; top:-12px; }
  .agenda_row span.icon_calendar svg { width: 18px; }
  .agenda_row { border: none !important; position:relative; }
  .agenda_row.active .agenda_heading span.mobile { -webkit-text-fill-color: #fff; }
  .agenda_row { padding-bottom:0px; width: 100%;  }
  .agenda_content_column {  max-width:100% !important; }
  .agenda_time_colum, .agenda_content_column {  width: 100%;  }
  .agenda_row:before { display:none; }
  .agenda_row {row-gap: 16px; }
  .agenda_heading {  margin: 0px; padding: 0px; }
  .customer_cover { margin: 0; width: 100%;}
  .customer_row { margin: 0px;}
  .agenda_time_colum { padding: 24px;  border-radius: 16px;  }
  .agenda_content_column {   padding: 24px !important; }
  .logo_cover { width: 100%; }
  .title_tag_row { width: calc(100% - 40px); }

  /* */
  section.sponsor_section { display: none; }

  /* */
  .vanue_slider_wrapper .slick-track { position: static; margin:0 -20px; }
  .address_content { width: 100%; max-width:100%; padding: 0; }
  .vanue_box { order:1; width: 100%; padding: 0; margin:0 auto; }
  .vanue_slider_section .title {  font-size: 22px; line-height: 27px;}
  .address_copy .text a { font-size: 14px; line-height: 27px; }
  .address { font-size: 18px; line-height: 27px; }
  .address_map img { width:100%; height: 102px !important;  object-fit: cover; object-position: center; }
  .vanue_slider_wrapper { width: calc(100% - 30px); margin: 0 auto; }
  /*     .vanue_slider_wrapper .slick-track { position: relative; } */
  .vanue_slider_wrapper { overflow: visible; padding: 0px; }
  .vanue_slider_section { overflow: hidden; padding: 48px 0; }
  .vanue_slider_wrapper .slick-slide { margin: 0 10px; }
  .vanue_cover:after { background: linear-gradient(59.14deg, #1C2D4F -12.39%, rgba(70, 70, 79, 0) 103.54%, rgba(28, 45, 79, 0) 103.54%); top: 0; bottom: 0; }
  .vanue_cover:before, .vanue_cover:after { height: 100%; width: 100%; }
  .vanue_cover:before { left: 0; right: auto; background: linear-gradient(59.14deg, #1C2D4F -12.39%, rgba(70, 70, 79, 0) 103.54%, rgba(28, 45, 79, 0) 103.54%); }
  .vanue_cover:after { left: auto; right: 0; background: linear-gradient(59.14deg, #1C2D4F -12.39%, rgba(70, 70, 79, 0) 103.54%, rgba(28, 45, 79, 0) 103.54%); }
  .vanue_row { row-gap:48px; }
  .vanue_cover{width:100% !important;}
  .vanue_cover img {
    height: 222px !important;
    width: 296px !important;
  }

  /* */
  .faq_header { font-size: 18px; line-height: 21px; padding: 0px; }
  .faq_header .faq_arrow { height: 30px; width: 30px; }

  .faq_section { padding: 41px 0; }
  .faq_details {font-size: 14px;  padding: 24px 0px 0px; }
  .faq_details > div { margin: 0; }
  /*     .faq_column.active .faq_arrow {background: linear-gradient(45deg, #7F84FF -17%, #53FDC3 94%);} */
  .faq_column.active .faq_arrow span:after { background: rgb(28, 27, 31);}

  /* */
  .experiment_section { padding: 48px 0px; }
  .experiment_section .title { text-align: left;  }
  .experiment_row {  padding-top: 48px; }
  .slider_cover { padding-bottom: 0px;  }
  
  .speaker_cover.speaker_inner { padding-bottom: 32px;}
  .experiment_row .slick-slide { margin: 0 8px; }
  .experiment_btn a,.experiment_btn  span{ font-size: 13px; padding: 20px 15px; }
  .popup_form form { padding: 0px !important; }
  .subscription_cover .popup_form form { padding: 0px !important;}

  .subscription_cover fieldset.form-columns-2 .hs-form-field + .hs-form-field {
    padding-top: 16px;
  }
  .hero__section { padding: 48px 0px; }
  .hero_cover { padding-bottom: 32px; max-width: 100%; }
  .hero_thumb { padding-bottom: 32px; }

  .newsletter_v2 { padding-top: 48px; }
  .newsletter_wrap { padding: 32px; row-gap: 32px; border-radius: 16px; }
  .newsletter_thumb { width: 100%; }
  .newsletter__content { width: 100%; }

  .logo_row { padding-top: 32px; align-items: flex-start;}

  .discover_section { padding: 48px 0px; }
  .discover_row { padding-top: 32px; margin: 0px; }
  .discover_cover { margin: 0px; width: 100%; }
  .discover_inner { padding: 24px; }
  .discover_link { position: static; padding-top: 24px; }

  .skill_wrap { padding: 20px; row-gap: 32px; }
  .thumbnail img { object-position: left; height: 200px !important; }
  .skill_content .title { padding: 20px 0px; }
  .skill_section { padding: 48px 0px; }
  .skill_content { width: 100%; }
  .thumbnail { width: 100%; }
  .skill_btn { padding-top: 20px; }

  .company_section .logo_cover { width: calc(100% / 2 - 32px); }

  .hero_thumb img { width: 100%; height: 100% !IMPORTANT; }
  .hero_section { padding: 48px 0px; }

  .lp_footer_row { gap: 20px; align-items:baseline; }
  .footer_right ul { justify-content: end; }

  .recent_newsletter { padding: 48px 0px; }
  .recent_newsletter_row { margin: 0px; }
  .newsletter__cover { margin: 0; width: 100%; }

  .thankyou_banner { padding: 48px 0px;}
  .thankyou_banner .content { max-width: 100%; }

  /*    */


}

@media(max-width:600px){ 
  .logo_inner:before, .logo_inner:after { display: none; }
  .logo_cover { gap:20px; }
  .logo_inner { padding: 0px; }
}

@media(max-width:480px){ 
  .subscription_cover form fieldset.form-columns-2 .input { margin: 0px !important; }
  .subscription_cover form .form-columns-2 .hs-form-field .hs-input { width: 100% !important; }
  .subscription_cover form fieldset.form-columns-1 .input { margin: 0px !important; }

}