/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

@media (min-width: 992px) {
  .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: 991px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #0c2442;
  --light-blue: #4bfff7;
  --sky-blue: #24d6fe;
  --gray: #f1f1f1;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--gray);
  font-family: "Noto Sans", sans-serif;
  color: var(--black);
  font-size: 17px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

body.menu-active {
  overflow: hidden;
}

body.landing-page {
  padding-top: 96px;
}

@media(min-width: 1200px) {
  body.landing-page {
    padding-top: 110px;
  }
}



.body-wrapper {
  position: relative;
  overflow: hidden;
}

/* Paragraphs */
p {
  margin: 0 0 1rem;
}
p:last-child {
  margin: 0;
}

/* Anchors */
a {
  cursor: pointer;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 22px;
  display: block;
}
h1, .h1 {
  font-size: 40px;
}
h2, .h2 {
  font-size: 35px;
}
h3, .h3 {
  font-size: 28px;
}
h4, .h4 {
  font-size: 24px;
  line-height: 1.3;
}
h5, .h5 {
  font-size: 18px;
}
h6, .h6 {
  font-size: 14px;
}

/* @media(min-width: 768px) {
  h1, .h1 {
    font-size: 48px;
  }
  h2, .h2 {
    font-size: 40px;
  }
}
@media(min-width: 1200px) {
  h1, .h1 {
    font-size: 55px;
  }
  h2, .h2 {
    font-size: 44px;
  }
} */

/* 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 {
  max-width: 100%;
  height: auto;
}

/* container */
.container-xs, .container {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container-xs {
  max-width: 1230px;
}
.container {
  max-width: 100%;
}
.dnd-section > .row-fluid {
  max-width: 100%;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}

@media(min-width: 992px) {
  .container, [class*=full-width-section] > .row-fluid .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media(min-width: 1200px) {
  .container, [class*=full-width-section] > .row-fluid .container {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}


.button-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -15px !important;
}
.button-list li {
  padding: 0 15px 20px;
  width: 100%;
}
@media(min-width: 375px) {
  .button-list li {
    width: auto;
  }
}
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;
}

/* button */
.cta_button, .hs-button {
  background-color: #0a2240;
  border: 2px solid #0a2240;
  border-radius: 8px;
  color: #c1fffb;
  font-size: 18px;
  line-height: 1.2;
  display: block;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.cta_button:hover, .cta_button:focus {
  background-color: var(--white);
  color: var(--blue);
}
@media(min-width: 375px) {
  .cta_button {
    display: inline-block;
  }
}

.cta_button.secondary {
  color: #bff0ff;
  background-color: #0A2240;
  border: 2px solid #bff0ff;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  padding: 15px 20px;
  margin: auto;
  cursor: pointer;
  display: block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;;
}
.cta_button.secondary:hover {
  background-color: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}

.cta_button.simple-link {
  background-color: transparent;
  color: var(--black);
  border: none;
  padding: 0;
}
.cta_button.simple-link:hover {
  text-decoration: underline !important;
}
.cta_button.simple-link .icon {
  margin-left: 5px;
  display: inline-block;
  position: relative;
  top: 4px;
}
.cta_button.simple-link .icon svg {
  width: 20px;
  height: 20px;
}
/* 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;
  outline: none;
  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 {
  color: #bff0ff;
  background-color: #0A2240;
  border: 2px solid #bff0ff;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  padding: 15px 20px;
  margin: auto;
  cursor: pointer;
  display: block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
}

form input[type=submit]:hover,
form .hs-button:hover {
  background-color: var(--white);
  color: #0A2240; 
  border: 2px solid #0A2240;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
  padding: 30px 0;
}
.header.no-fixed {
  background-color: var(--blue);
}
.header.sticky {
  background: var(--blue);
}
.header .container {
  position: relative;
}
.header .header__holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding-right: 50px;
}

.header .logo {
  max-width: 200px;
  line-height: 1;
}
.header .header__menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
}
.header #main-nav ul {
  display: block;
  margin: 0;
  padding: 0;
}
.header #main-nav ul li {
  position: relative;
}
.header #main-nav ul li.active-branch a {
  color: var(--light-blue);
}
.header #main-nav ul li.open a {
  color: var(--light-blue);
}
.header #main-nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  display: block;
  padding: 12px 25px;
}
.header #main-nav ul li a:hover {
  color: var(--light-blue);
}

.header #main-nav ul li.hs-item-has-children .icon {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transition: all .4s ease-in-out;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 8px;
  width: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.6343 2.75767L9.61156 11.2321C9.53186 11.317 9.43677 11.3843 9.33184 11.4303C9.2269 11.4763 9.11424 11.5 9.00044 11.5C8.88663 11.5 8.77397 11.4763 8.66904 11.4303C8.56411 11.3843 8.46901 11.317 8.38932 11.2321L0.366572 2.75767C0.13164 2.50808 0 2.17215 0 1.82222C0 1.4723 0.13164 1.13637 0.366572 0.886777C0.482174 0.764276 0.619956 0.666995 0.771902 0.600595C0.923848 0.534195 1.08693 0.5 1.25165 0.5C1.41637 0.5 1.57944 0.534195 1.73139 0.600595C1.88334 0.666995 2.02112 0.764276 2.13672 0.886777L9.00044 8.1366L15.8624 0.886777C15.9781 0.764359 16.116 0.66716 16.268 0.600818C16.42 0.534476 16.5832 0.500313 16.7479 0.500313C16.9127 0.500313 17.0758 0.534476 17.2278 0.600818C17.3798 0.66716 17.5177 0.764359 17.6334 0.886777C17.8684 1.13637 18 1.4723 18 1.82222C18 2.17215 17.8692 2.50808 17.6343 2.75767Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}
.header #main-nav ul li.hs-item-has-children:hover .icon, 
.header #main-nav ul li.hs-item-has-children.open .icon {
  color: var(--light-blue);
}
.header #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
  opacity: 0;
  visibility: hidden;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
  background-color: transparent;
  position: static;
  max-height: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all .3s ease-out 0;
  padding: 0;
  z-index: 1;
  border-radius: 3px;
  display: block;
  z-index: 10;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper.open-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  max-height: inherit;
  padding: 10px 30px 10px;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
  white-space: inherit;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 12px 10px;
  color: #fff;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover a {
  background-color: #122946;
  color: #fff;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a:hover {
  color: #4bfff7 !important;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.active-branch a {
  color: var(--light-blue);
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a:hover {
  color: var(--light-blue);
}

.header #main-nav .button-list {
  display: block;
}

.header .button-list {
  display: none;
}
.header .button-list li a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  display: block;
}
.header .button-list li a:hover {
  color: var(--light-blue);
}
.header .button-list .cta_button {
  background-color: #bff0ff;
  border-color: #bff0ff;
  color: #122946;
  font-weight: 400;
  border-radius: 6px;
  padding: 5px 10px;
}
.header .button-list .cta_button:hover {
  background-color: transparent;
  color: #bff0ff;
}

.header .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  background-color: var(--blue);
}
.header .nav-bar #main-nav {
  padding: 80px 0 40px;
  background-color: var(--blue);
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.menu-active .header .nav-bar {
  height: 100%;
}
.menu-active .header .nav-bar #main-nav {
  transform: translateY(0);
}
.header .nav-bar .button-holder {
  padding: 20px 0 0 25px;
  display: block;
}


/* mobile menu toogle */
.navbar-toggle {
  width: 32px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: transparent;
  text-indent: -9999px;
  overflow: hidden;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  padding: 0;
}
.navbar-toggle:after,
.navbar-toggle:before,
.navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--light-blue);
  height: 2px;
  transition: all 0.3s ease;
  width: 32px;
}
.navbar-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggle:after,
.navbar-toggle:before {
  content: '';
}
.navbar-toggle:after {
  bottom: 23px
}
.navbar-toggle:before {
  top: 23px
}
.menu-active .navbar-toggle:before {
  transform: rotate(45deg) translate(-6px, -6px)
}
.menu-active .navbar-toggle:after {
  transform: rotate(-45deg) translate(-7px, 7px)
}
.menu-active .navbar-toggle span {
  opacity: 0;
  visibility: hidden;
}


@media (min-width: 768px) {
  .header .button-list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -10px;
  }
  .header .button-list li {
    padding: 0 10px;
  }
  .header #main-nav .button-list {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header .header__holder {
    padding: 0;
  }
  .navbar-toggle {
    display: none;
  }
  .header .nav-bar {
    position: static;
    overflow-y: unset;
    transition: none;
    height: auto;
    background-color: transparent;
    padding-left: 30px;
    z-index: 1;
  }
  .header .nav-bar #main-nav {
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    height: auto;
  }
  .header #main-nav ul {
    display: flex;
    flex-flow: row wrap;
  }
  .header #main-nav ul li {
    border: none;
    padding: 15px 50px 15px 0;
  }
  .header #main-nav ul li a {
    padding: 0;
  }
  .header #main-nav ul li.hs-item-has-children .icon {
    top: 22px;
    right: 30px;
  }
  .header #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
    background-color: #bff0ff;
    border-radius: 6px;
    position: absolute;
    top: 100%;
    left: 50%;
    max-height: inherit;
    padding: 10px 0;
    transform: translateX(-50%);
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li {
    padding: 0;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
    white-space: nowrap;
    padding: 10px 20px;
    color: #122946;
    border-bottom: 0;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a:hover {
    padding: 10px 20px;
    color: #122946;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li .hs-menu-children-wrapper {
    top: 0;
    left: 100%;
    display: none;
    transform: none;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover .hs-menu-children-wrapper {
    display: block;
  }
}
@media (min-width: 1366px) {
  .header #main-nav ul li {
    padding-right: 80px;
  }
  .header #main-nav ul li.hs-item-has-children .icon {
    right: 59px;
  }
}
.hero-banner {
  background-color: var(--blue);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-align: center;
  color: var(--white);
  padding: 160px 0 60px;
}

.hero-banner .text {
  font-weight: 300;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.hero-banner .short-text {
  font-weight: 300;
  max-width: 800px;
  margin: 15px auto 0;
  padding-bottom: 40px;
  font-size: 14px;
}
.hero-banner .short-text a {
  color: var(--white);
}
.hero-banner form {
  display: flex;
  flex-flow: row wrap;
  max-width: 700px;
  margin: 0 auto;
}
.hero-banner form .hs-form-field {
  margin: 0 0 15px;
  width: 100%;
}
.hero-banner form .hs-form-field label {
  margin: 0;
}
.hero-banner form input[type="email"] {  
  background-color: #253a55;
  border: 2px solid #253a55;
  border-radius: 8px;
  color: #bff0ff;
  font-size: 18px;
  line-height: 22px;
  padding: 14px 16px;
  text-align: center;
}
.hero-banner form .inputs-list {
  text-align: left;
}
.hero-banner form .inputs-list > li {
  margin: 10px 0 0;
}
.hero-banner form .inputs-list > li label {
  margin: 0;
}
.hero-banner form .hs_submit {
  width: 100%;
}
.hero-banner .form-holder .submitted-message {
  font-size: 26px;
  font-weight: 700;
}
.hero-banner .button-list {
  margin-top: 30px !important;
}


@media(min-width: 768px) {
  .hero-banner {
    padding: 160px 0 60px;
  }
  .hero-banner form .hs-form-field {
    margin: 0;
    width: 75%;
  }
  .hero-banner form .hs_submit {
    width: calc(25% - 15px);
    margin-left: 15px;
  }
}
.hero-banner-product {
  background-color: var(--blue);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: var(--white);
  text-align: center;
  padding: 160px 0 80px;
}
.hero-banner-product .container {
  max-width: 1580px;
  margin: 0 auto;
}
.hero-banner-product .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto;
}
.hero-banner-product .column {
  padding: 0 15px;
  margin-bottom: auto;
  width: 100%;
}
.hero-banner-product .column:last-child {
  margin: 0;
}
.hero-banner-product .text {
  font-weight: 300;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.hero-banner-product .short-text {
  font-weight: 300;
  max-width: 800px;
  margin: 15px auto 0;
  font-size: 14px;
  padding-bottom: 40px; 
}
.hero-banner-product .short-text a {
  color: var(--white);
}
.hero-banner-product form {
  display: flex;
  flex-flow: row wrap;
  max-width: 700px;
  margin: 0 auto;
}
.hero-banner-product form .hs-form-field {
  margin: 0 0 15px;
  width: 100%;
}
.hero-banner-product form .hs-form-field label {
  margin: 0;
}
.hero-banner-product form input[type="email"] {  
  background-color: #253a55;
  border: 2px solid #253a55;
  border-radius: 8px;
  color: #bff0ff;
  font-size: 18px;
  line-height: 22px;
  padding: 14px 16px;
  text-align: center;
}
.hero-banner-product form .inputs-list {
  text-align: left;
}
.hero-banner-product form .inputs-list > li {
  margin: 10px 0 0;
}
.hero-banner-product form .inputs-list > li label {
  margin: 0;
}
.hero-banner-product form .hs_submit {
  width: 100%;
}
.hero-banner-product .form-holder .submitted-message {
  font-size: 26px;
  font-weight: 700;
}
.hero-banner-product .image-holder {
  max-width: 650px;
  margin: 0 auto;
}
.hero-banner-product .cta_button.simple-link {
  color: var(--white);
}



@media(min-width: 768px) {
  .hero-banner-product {
    padding: 160px 0 120px;
  }
  .hero-banner-product form .hs-form-field {
    margin: 0;
    width: 75%;
  }
  .hero-banner-product form .hs_submit {
    width: calc(25% - 15px);
    margin-left: 15px;
  }
}
@media(min-width: 1200px) {
  .hero-banner-product {
    padding: 200px 0 150px;
    text-align: left;
  }
  .hero-banner-product .column {
    width: 50%;
  }
  .hero-banner-product form {
    margin: 0;
  }
  .hero-banner-product .short-text {
    margin: 15px 0 0;
  }
  .hero-banner-product .image-holder {
    margin: 0 0 0 auto;
  }
  .hero-banner-product .button-list {
    justify-content: flex-start;
  }
}
.guardrails {
  background-color: #f2fcff;
  text-align: center;
  padding: 80px 0;
}
.guardrails .short-text {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}
.guardrails h2 {
  margin: 0 auto 20px;
}
.guardrails .text {
  margin: 0 auto 40px;
}
.guardrails .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -30px;
}
.guardrails .column {
  padding: 0 30px;
  margin-bottom: 30px;
  width: 100%;
}
.guardrails .column:only-child {
  width: 100%;
}
.guardrails .column:last-child {
  margin-bottom: 0;
}
.guardrails .image-holder {
  max-width: 565px;
  margin: 0 auto 30px;
}
.guardrails h3 {
  margin-bottom: 15px;
}
.guardrails .content {
  max-width: 550px;
  margin: 0 auto;
}
.guardrails .button-holder {
  margin-top: 40px;
}

@media(min-width: 768px) {
  .guardrails {
    padding: 100px 0;
  }
  .guardrails .text {
    margin-bottom: 60px;
  }
}
@media(min-width: 992px) {
  .guardrails .column {
    width: 50%;
  }
  .guardrails .column:only-child {
    width: 100%;
  }
}
@media(min-width: 1200px) {
  .guardrails {
    padding: 120px 0;
  }
}
.automation {
  background-color: var(--blue);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 60px 0;
}
.automation .container {
  max-width: 1530px;
}
.automation .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.automation .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.automation .column:last-child {
  margin: 0;
}
.automation .content {
  position: relative;
  padding-left: 25px;
  max-width: 650px;
}
.automation .content .circle-one, 
.automation .content .circle-two {
  position: absolute;
  left: 0;
  border-radius: 100%;
  height: 10px;
  width: 10px;
}
.automation .content .circle-one {
  top: 10px;
  background-color: var(--light-blue);
}
.automation .content .circle-two {
  top: 28px;
  background-color: var(--sky-blue);
}
.automation .short-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  padding-left: 25px;
}
.automation h2 {
  color: var(--white);
}
.automation .text {
  max-width: 630px;
  margin: 0 0 20px;
}
.automation .text ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.automation .text ul li {
  position: relative;
  padding: 0 0 15px 40px;
}
.automation .text ul li::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  height: 25px;
  width: 25px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('https://6462328.fs1.hubspotusercontent-na2.net/hubfs/6462328/raw_assets/public/Summit/images/TICK.png');
}
.automation .button-list {
  justify-content: flex-start;
}
.automation .image-holder {
  text-align: center;
}
.automation .cta_button.simple-link {
  background-color: transparent;
  color: var(--white);
}
.automation .video-holder {
  margin-top: 40px;
}
.automation .iframe_wrapper {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 25px;
  position: relative;
}
.automation .embed_container {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}

.automation .embed_container iframe {
  left: 0;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media(min-width: 992px) {
  .automation {
    padding: 80px 0;
  }
  .automation .row.row-reverse {
    flex-direction: row-reverse;
  }
  .automation .column {
    width: 50%;
  }
  .automation .video-holder {
    margin-top: 60px;
  }
}
.content-with-image {
  background-color: #f3fcff;
  padding: 80px 0;
}
.content-with-image.active-border {
  padding: 80px 0 0;
}
.content-with-image.active-border .container {
  border-bottom: 3px solid #b7c7da;
  padding-bottom: 60px;
}
.content-with-image .container {
  max-width: 1530px;
}
.content-with-image .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.content-with-image .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.content-with-image .column:last-child {
  margin: 0;
}
.content-with-image .content {
  position: relative;
}
.content-with-image .icon {
  max-width: 70px;
}
.content-with-image .text {
  max-width: 610px;
  margin: 0 0 20px;
}
.content-with-image .button-list {
  justify-content: flex-start;
}
.content-with-image .image-holder {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

@media(min-width: 992px) {
  .content-with-image {
    padding: 100px 0;
  }
  .content-with-image.active-border {
    padding: 100px 0 0;
  }
  .content-with-image.active-border .container {
    padding-bottom: 80px;
  }
  .content-with-image .row.row-reverse {
    flex-direction: row-reverse;
  }
  .content-with-image .column {
    width: 50%;
  }
}
/*smart-tools*/
.smart-tools {
  background-color: var(--blue);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: var(--white);
  padding: 60px 0;
}
.smart-tools .container {
  max-width: 1530px;
}
.smart-tools h2 {
  text-align: center;
}
.smart-tools .content {
  position: relative;
}
.smart-tools .boxes-holder {
  margin: 60px auto 0;
}
.smart-tools .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.smart-tools .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.smart-tools .column:last-child {
  margin: 0;
}
.smart-tools .cost {
  padding: 33px 20px;
  height: 100%;
  text-align: center;
}
.smart-tools .cost .number {
  background: linear-gradient(to right, #00B0DC 0%, #43FAF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  line-height: 72px;
  font-weight: 700;
  display: block;
  text-align: center;
}
.smart-tools .number {
  text-align: center;
  font-size: 52px;
  line-height: 60px;
  margin: 0 0 10px;
}
.smart-tools .text {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

@media(min-width: 992px) {
  .smart-tools {
    padding: 100px 0;
  }
  .smart-tools .column {
    width: 33.33%;
    margin: 0;
  }
  .smart-tools .boxes-holder {
    padding: 0 12px 0 36px;
  }
  .smart-tools .cost .number {
    font-size: 80px;
    line-height: 88px;
  }
}
@media(min-width: 1200px) {
  .smart-tools .cost .number {
    font-size: 100px;
    line-height: 116px;
  }
}
.partners {
  background-color: #f4f4f4;
  padding: 40px 0;
}
.partners .container {
  max-width: 1210px;
}
.partners h2 {
  text-align: center;
  margin-bottom: 20px;
}
.partners .text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.partners .logoMarqueeSection {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  z-index: 1;
}
.partners .logoMarqueeSection .beforeColor,
.partners .logoMarqueeSection .afterColor {
  content: "";
  position: absolute;
  top: 0;
  width: 44px;
  height: 100%;
  z-index: 3;
}
.partners .logoMarqueeSection .beforeColor {
  left: 0;
  background: linear-gradient(90deg, #F3F4F5 0%, rgba(255, 255, 255, 0.0001) 100%);
}
.partners .logoMarqueeSection .afterColor {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.0001) 0%, #F3F4F5 100%);
}
.partners .marquee-wrapper {
  display: flex;
  flex-flow: row nowrap;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}
.partners .logos-list {
  display: flex;
  flex-flow: row nowrap;
}
.partners .logos-list li {
  white-space: nowrap;
  margin: 0 20px;
  margin-bottom: 30px;
  text-align: center;
  min-width: 120px;
  width: 20%;
}
.partners .logos-list li img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@media(min-width: 576px) {
  .partners .logos-list li {
    margin: 0 30px;
  }
}
@media(min-width: 768px) {
  .partners {
    padding: 60px 0;
  }
}
.testimonials {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.testimonials .text {
  margin-bottom: 60px;
}
.testimonials .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.testimonials .column {
  padding: 0 15px;
  margin-bottom: 60px;
  width: 100%;
}
.testimonials .logo-holder {
  margin-bottom: 20px;
}
.testimonials blockquote {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
.testimonials .image-holder {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 100%;
  border: 2px solid var(--light-blue);
  height: 78px;
  width: 78px;
  margin: 0 auto 20px;
}
.testimonials .name {
  font-weight: 700;
  display: block;
}
.testimonials .info {
  font-size: 16px;
  line-height: 20px;
  display: block;
}

@media(min-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
  .testimonials .text {
    margin-bottom: 80px;
  }
  .testimonials blockquote {
    font-size: 20px;
    line-height: 28px;
  }
}
@media(min-width: 992px) {
  .testimonials .column {
    width: 50%;
  }
}
@media(min-width: 1200px) {
  .testimonials {
    padding: 80px 0;
  }
  .testimonials .column {
    width: 33.33%;
  }
}
@media(min-width: 1440px) {
  .testimonials blockquote {
    padding: 0 30px;
  }
}
.solutions {
  background-color: #f3fcff;
  text-align: center;
  padding: 60px 0;
}
.solutions h2 {
  color: var(--blue);
}
.solutions .text {
  max-width: 950px;
  margin: 0 auto 30px;
}


@media(min-width: 768px) {
  .solutions {
    padding: 80px 0;
  }
}
.management {
  padding: 80px 0 0;
}
.management .container {
  max-width: 1630px;
}
.management h2 {
  color: #102241;
  max-width: 1350px;
}
.management .text {
  max-width: 1350px;
  margin-bottom: 62px;
}
.management .image-holder {
  line-height: 0;
  margin-top: 50px;
}
.management .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.management .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.management .key-features {
  background-color: #fff;
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.1);
  border-radius: 30px;
  padding: 40px 30px;
  height: 100%;
}
.management .key-features .text {
  margin: 0;
}
.management .key-features .icon-holder {
  margin-bottom: 30px;
}

.management .features-list {
  margin-bottom: 50px;
}
.management .features-list .icon-holder {
  max-width: 53px;
}
.management .features-list h3 {
  margin-bottom: 10px;
}
.management .features-list .text {
  margin: 0;
}

@media(min-width: 768px) {
  .management .column {
    width: 50%;
  }
  .management .features-list {
    display: flex;
    flex-flow: row wrap;
  }
  .management .features-list .content {
    width: calc(100% - 53px);
    padding-left: 25px;
  }
}
@media(min-width: 992px) {
  .management {
    padding-top: 100px;
  }
  .management .image-holder {
    margin-top: 80px;
  }
  .management .key-features {
    padding: 70px 40px;
    border-radius: 40px;
  }
}
@media(min-width: 1200px) {
  .management {
    padding-top: 140px;
  }
  .management .column {
    width: 33.33%;
    margin: 0;
  }
  .management .key-features {
    border-radius: 45px;
  }
}
.faq {
  padding: 80px 0;
}
.faq .container {
  max-width: 1530px;
}
.faq h2 {
  text-align: center;
}
.faq .text {
  text-align: center;
  margin-bottom: 60px;
}
.faq .accordion {
  position: relative;
  border-top: 1px solid #747274;
}
.faq .accordion:last-child {
  border-bottom: 1px solid #747274;
}
.faq .accordion .accordion__title {
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  padding: 35px 50px 30px 0;
  position: relative;
  margin: 0;
}
.faq .accordion .accordion__title .icon {
  position: absolute;
  right: 20px;
  top: 36px;
  width: 22px;
  line-height: 0;
}
.faq .accordion .accordion__title .icon .minus {
  display: none;
}
.faq .accordion .accordion__content {
  display: none;
  padding: 0 0 35px 0;
}

@media(min-width: 768px) {
  .faq {
    padding: 100px 0;
  }
  .faq .accordion .accordion__title {
    font-size: 24px;
    padding: 35px 60px 30px 20px;
  }
  .faq .accordion .accordion__content {
    padding: 0 60px 35px 20px;
  }
}
@media(min-width: 992px) {
  .faq .accordion .accordion__title {
    font-size: 26px;
    padding: 35px 90px 30px 35px;
  }
  .faq .accordion .accordion__content {
    padding: 0 90px 35px 35px;
  }
}
@media(min-width: 1200px) {
  .faq {
    padding: 120px 0;
  }
}
.call-to-action {
  text-align: center;
  padding: 60px 0;
}
.call-to-action h2 {
  color: var(--blue);
}
.call-to-action .text {
  max-width: 950px;
  margin: 0 auto 30px;
}


@media(min-width: 992px) {
  .call-to-action {
    padding: 80px 0;
  }
}
.footer {
  background-color: var(--blue);
  color: var(--white);
}
.footer .footer__holder {
  padding: 60px 0 30px;
}
.footer .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.footer .column {
  padding: 0 15px;
  margin-bottom: 40px;
  width: 100%;
}
.footer .column:last-child {
  margin: 0;
}
.footer .logo {
  max-width: 200px;
  margin-bottom: 10px;
}
.footer h6 {
  color: var(--white);
}
.footer .text {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
  max-width: 500px;
}
.footer .short-text {
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
  max-width: 500px;
}
.footer .footer-links li {
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 20px;
}
.footer .footer-links li:last-child {
  padding: 0;
}
.footer .footer-links li a {
  color: var(--white);
  text-decoration: none;
}
.footer .footer-links li a:hover {
  color: var(--light-blue);
}
.footer .footer__info {
  border-top: 1px solid var(--white);
  padding: 30px 0;
}
.footer .social-networks {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px 30px;
}
.footer .social-networks li {
  padding: 0 5px;
  line-height: 1;
}
.footer .links {
  margin: 0 0 30px;
}
.footer .links li {
  font-size: 14px;
  line-height: 20px;
  padding: 0 0 20px;
  line-height: 1;
}
.footer .links li:last-child {
  padding: 0;
}
.footer .links li a {
  color: var(--white);
  text-decoration: none;
}
.footer .links li a:hover {
  color: var(--light-blue);
}
.footer .copyright .text {
  font-size: 14px;
  line-height: 20px;
}
.footer form {
  display: flex;
  flex-flow: row wrap;
  max-width: 500px;
}
.footer form .hs-form-field {
  margin: 0 0 15px;
  width: 100%;
}
.footer form .hs-form-field label {
  margin: 0;
}
.footer form input[type="email"] {
  background-color: #253a55;
  border-color: #253a55;
  border-radius: 8px;
  color: #bff0ff;
  font-size: 18px;
  line-height: 22px;
  padding: 14px 16px;
}
.footer form .inputs-list {
  text-align: left;
}
.footer form .inputs-list > li {
  margin: 10px 0 0;
}
.footer form .inputs-list > li label {
  margin: 0;
}
.footer form .hs_submit {
  width: 100%;
}
.footer form .hs-button {
  background-color: #bff0ff;
  border-color: #bff0ff;
  color: #122946;
}
.footer form .hs-button:hover {
  background-color: transparent;
  color: #bff0ff;
}
.footer .form-holder .submitted-message {
  font-size: 26px;
  font-weight: 700;
}

@media(min-width: 768px) {
  .footer .column:nth-child(1) {
    width: 100%;
  }
  .footer .column:nth-child(2), .footer .column:nth-child(3), .footer .column:nth-child(4) {
    width: 33.33%;
  }
  .footer .column:nth-child(5) {
    width: 100%;
  }
  .footer .footer__info {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .footer .links {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px 20px;
  }
  .footer .links li {
    padding: 0 10px;
  }
  .footer form .hs-form-field {
    margin: 0;
    width: 70%;
  }
  .footer form .hs_submit {
    width: calc(30% - 15px);
    margin-left: 15px;
  }
}
@media(min-width: 992px) {
  .footer .links, .footer .social-networks {
    margin-bottom: 0;
  }
  .footer .copyright {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    align-items: center;
  }
  .footer .copyright .text {
    margin: 0 15px 0 0;
  }
}
@media(min-width: 1200px) {
  .footer .column:nth-child(1) {
    width: 15%;
  }
  .footer .column:nth-child(2), .footer .column:nth-child(3), .footer .column:nth-child(4) {
    width: 15%;
  }
  .footer .column:nth-child(5) {
    width: 40%;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
.body-container--about_us {
  background-image: url(https://6462328.fs1.hubspotusercontent-na2.net/hubfs/6462328/summit_pages/about_bg_long.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* common css */
.main_container {
  margin: 0 auto;
  max-width: 1400px;
}


/* about page */
.about_banner_bg {
  /*   background-image: url(https://6462328.fs1.hubspotusercontent-na2.net/hubfs/6462328/summit_pages/banner.png); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 300px 0 70px;
  /*   background-color: #09213f; */
  color: #fff;
  text-align: center;
  position: relative;
}
.about_page_container {
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
}

.about_banner_bg_cont {
  padding: 0 20px 0px;
}
.about_banner_cnt {
  position: relative;
}
.about_banner_cnt h1 {
  margin-bottom: 40px;
}
.about_banner_bg h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.about_banner_cnt h1:before {
  background-image: url(https://6462328.fs1.hubspotusercontent-na2.net/hubfs/6462328/summit_pages/curve_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: -160px;
  content: "";
  height: 354px;
  left: 50%;
  position: absolute;
  width: 909px;
  transform: translateX(-50%);
}
.about_banner_cnt p {
  position: relative;
}
.about_banner_cnt p:after {
  background-image: url(https://6462328.fs1.hubspotusercontent-na2.net/hubfs/6462328/summit_pages/straight_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -80px;
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  width: 473px;
  transform: translateX(-50%);
}
.line_hide h1:before, .line_hide p:after {
  background-image: none;
}
.about_banner_bg .about_page_container:last-child p {
  max-width: 100%;
  margin: 40px auto 70px;
}

.about_banner_bg.about_sec_second {
  padding: 300px 0 70px;
}
.about_banner_bg.about_sec_second h2 {

  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-linear-gradient(180deg, #07c9ff, #67fbf8 );
}
.about_banner_bg.about_sec_second p {
  margin: 0px auto 0px !important;
}
.about_banner_bg.about_sec_second .hs-video-widget {
  margin-top: 100px;
}

.about_banner_bg.about_sec_second {
  position: relative;
}
.about_banner_bg.about_sec_second:after {
  background-image: url(https://6462328.fs1.hubspotusercontent-na2.net/hubfs/6462328/summit_pages/glow_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -30px;
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 1000px;
}
.about_banner_bg.about_sec_second {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about_sec_second.video_line_hide:after {
  background-image: none;
}

.about_banner_bg.about_sec_second .about_page_container a {
  background-color: #8fd5dc;
  border-radius: 14px;
  color: #0a2240;
  font-size: 15px;
  font-weight: 500;
  margin-right: 12px;
  padding: 11px 44px;
  text-decoration: none;
  transition: all .4s ease-in-out;
  display: inline-block;
  margin-top: 20px;
}
.about_banner_bg.about_sec_second .about_page_container a:hover {
  background-color: #0a2240 !important;
  color: #8fd5dc !important;
}

.three_col_layout_bg {
  background-color: #dfe5e5;
  padding: 75px 0;
  text-align: center;
}
.three_col_layout_bg h2 {
  max-width: 625px;
  margin: 0 auto 25px;
  font-size: 40px;
  color: #0a2240;
}
.three_col_layout_bg p {
  max-width: 990px;
  margin: 0 auto;
}
.three_col_layout_bg figure {
  margin: 0;
  width: 30%;
}
.three_col_layout_bg img {
  border-radius: 57px;
}
.three_col_layout_bg .about_page_container>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 80px
}
.two_col_layout_bg {
  background-color: transparent;
  padding: 90px 0;
}
.two_col_layout_bg ul {
  padding-left: 0;
}
.two_col_layout_bg ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
}
.two_col_layout_bg ul li>* {
  width: 45%;
}
.two_col_layout_bg h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: #fff;
}
.gradient_title h2 {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-linear-gradient(180deg, #07c9ff, #67fbf8);
}
.three_col_layout_bg p, .two_col_layout_bg p {
  color: #fff
}
.body-container--about_us ul, .body-container--about_us ol {
  margin: 0 0 0;
  padding-left: 0;
}
/* ai page */

.body-container--ai_page {
  background-image: url(https://6462328.fs1.hubspotusercontent-na2.net/hubfs/6462328/summit_pages/ai_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} 





/* integration page */
.body-container--integration_page a {
  transition: all .4s ease-in-out;
}
.body-container--integration_page a:hover {
  opacity: 0.7;
}
.integration_banner {
  background-size: cover;
  background-position: bottom; 
}
.integration_banner .main_container {
  position: relative;
}
.integration_banner  h4 {
  font-weight: normal;
  color: #C8D0D8;
}
.integration_banner_cnt {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.integration_banner_cnt a {
  background: rgb(75, 255, 247);
  background: linear-gradient(58deg, rgba(75, 255, 247, 1) 0%, rgba(7, 201, 255, 1) 100%);
  color: #0A2240;
  font-size: 17px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  margin-top: 30px;
  display: inline-block;
  font-weight: 500;
}
.integration_banner img {
  transition: 0.4s ease;
}
.integration_banner img:hover {
  transform: scale(1.1);
}
.integration_banner {
  padding: 260px 0 90px;
  height: 913px;
}
.integration_banner_logo {
  position: relative;
}
.integration_banner figure {
  margin: 0;
  position: absolute;
}

/* integration two column img */
.integration_text_and_img .main_container {
  border-radius: 16px 16px 0 16px;
  color: #fff;
  padding-left: 40px;
  padding-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.integration_text_and_img .main_container>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.integration_text_and_img .main_container>div div {
  max-width: 451px;
}
.integration_text_and_img .main_container figure {
  margin: 0;
  position: relative;
  bottom: -7px;
}

/* integration three column */

.integration_three_col_with_img>.main_container {
  display: flex;
  color: #fff;
  justify-content: space-between;
  flex-wrap: wrap;
}
.integration_three_col_with_img>.main_container>div {
  width: 32%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 30px;
}
.integration_three_col_with_img>.main_container>div>div {
  padding: 40px;
}
.integration_three_col_with_img a {
  background: #4bfff7;
  background: linear-gradient(58deg, #4bfff7, #07c9ff);
  border-radius: 12px;
  color: #0a2240;
  display: inline-flex;
  font-size: 17px;
  margin-top: 60px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
}
.integration_three_col_with_img>.main_container>div>div p {
  color: #ffffff90;
}
.integration_three_col_with_img>.main_container+div {
  margin-bottom: 120px;
}

/* supported integrated partner */

.supported_integration_partner {
  text-align: center;
  color: #fff;
}
.supported_integration_partner .main_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.supported_integration_partner .main_container figure {
  margin: 0 0 32px;
  width: 23%;
}
.supported_integration_partner .main_container figure img {
  width: 100%;
  height: auto;
}

/* request demo */

.integration_request_demo {
  height: 440px;
  margin-top: 160px;
}
.integration_request_demo>.main_container {
  display: flex;
  align-items: center;
  color: #000A2D;
  padding: 95px 0 98px 65px;
  border-radius: 16px;
  border: 5px solid #55D8FF;
  position: relative;
}
.integration_request_demo>.main_container>div {
  max-width: 463px;
}
.integration_request_demo>.main_container figure {
  margin: 0;
  position: absolute;
  right: 0;
  bottom: -8px;
}
.integration_request_demo a {
  background: #55D8FF;
  border-radius: 12px;
  color: #0A2240;
  display: inline-flex;
  font-size: 17px;
  font-weight: 500;
  margin-top: 30px;
  padding: 10px 20px;
  text-decoration: none;
}
.integration_request_demo h2 {
  font-size: 40px;
}
.for_mob_inte {
  display: none;
}
/* use cases */
.two_col_layout_bg.use_case_two_col ul li>* {
  width: 48%;
}
@media screen and (max-width: 1600px) { 
  .about_banner_bg.about_sec_second {
    padding: 100px 0 70px;
  }
}
@media screen and (max-width: 1500px) {

  .main_container {
    max-width: 1200px;
  }
  .about_page_container {
    max-width: 1200px;
  }
  .about_banner_bg {
    padding: 200px 0 100px;
  }
  .about_banner_cnt h1:before {
    top: -120px;
  }
  /* integration banner */

  .integration_banner_logo figure:nth-child(2) {
    top: -140px !important;
  }
  .integration_banner_logo figure:nth-child(3) {
    top: -55px !important;
  }
  .integration_banner_logo figure:nth-child(4) {
    left: 296px !important;
    top: 82px !important;
  }
  .integration_banner_logo figure:nth-child(6) {
    right: 350px !important;
  }
  .integration_banner_logo figure:nth-child(7) {
    right: 130px !important;
  }
  .integration_banner_logo figure:nth-child(8) {
    right: 57px !important;
  }
  .integration_banner_logo figure:nth-child(9) {
    right: -16px !important;
    top: -238px !important;
  }
}
@media screen and (max-width: 1260px) { 
  .main_container {
    max-width: 1100px;
  }
  .about_page_container {
    max-width: 1100px;
  }
  .about_banner_bg {
    padding: 193px 0 0;
  }
  .about_banner_bg.about_sec_second {
    padding: 130px 0 70px;
  }
  .about_banner_cnt p:after {
    bottom: -50px;
  }
  /* integration banner */

  .integration_banner_logo figure:nth-child(2) {
    top: -156px !important;
  }
  .integration_banner_logo figure:nth-child(3) {
    top: -73px !important;
  }
  .integration_banner_logo figure:nth-child(4) {
    left: 256px !important;
  }
  .integration_banner_logo figure:nth-child(6) {
    right: 299px !important;
  }
  .integration_banner_logo figure:nth-child(7) {
    right: 100px !important;
  }
  .integration_banner_logo figure:nth-child(8) {
    right: 35px !important;
  }
  .integration_banner_logo figure:nth-child(9) {
    right: -45px !important;
  }
}
@media screen and (max-width: 1100px) {  
  .main_container {
    max-width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .integration_banner_logo {
    display: none;
  }
  .for_mob_inte {
    display: block;
  }
  .integration_banner_cnt {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }

  .integration_banner {
    padding: 108px 0 45px;
    height: auto;
    background-size: cover;
  }
  .integration_banner_cnt a {
    margin-top: 0;
  }
  .integration_text_and_img .main_container { 
    padding-left: 0;
    padding-right: 0;
    max-width: 80%;
    box-sizing: border-box;
    padding-top: 16px;
    border-radius: 16px 16px 16px 16px;
  }
  .integration_text_and_img .main_container>div {
    flex-direction: column;
  }
  .integration_text_and_img .main_container>div div {
    padding: 0 15px;
  }
  .integration_text_and_img .main_container>div div p {
    margin-bottom: 10px;
  }
  .integration_text_and_img img {
    border-radius: 16px;
  }
  .integration_three_col_with_img>.main_container {
    flex-direction: column;
  }
  .integration_three_col_with_img>.main_container>div {
    width: 100%;
    margin-bottom: 20px;
  }
  .supported_integration_partner .main_container figure {
    margin: 0 0 10px;
    width: 31%;
  }
  .integration_request_demo {
    height: auto;
    margin-top: 55px;
  }
  .integration_request_demo>.main_container {
    padding: 15px 10px 0px 10px;
    flex-direction: column;
  }
  .integration_request_demo>.main_container figure {
    margin: 0;
    position: relative;
    right: 0;
    bottom: -7px;
  }
}
@media screen and (max-width: 900px) {

  .body-container--about_us {
    background-size: cover;
  }
  .about_page_container {
    max-width: 100%;
  }
  .about_banner_cnt h1:before {
    top: -66px;
    width: 100%;
  }
  .about_banner_cnt p:after {
    bottom: -50px;
  }
  .three_col_layout_bg .about_page_container>div {
    flex-direction: column;
  }
  .two_col_layout_bg ul li>* {
    width: 100%;
  }
  .two_col_layout_bg ul li>div {
    margin-bottom: 40px;
  }
  .two_col_layout_bg ul li>img {
    margin-top: 20px;
  }
  .two_col_layout_bg {
    padding: 50px 0 0;
  }
  .two_col_layout_bg ul li {
    flex-direction: column !important;
    margin-bottom: 60px;
  }
  .three_col_layout_bg figure {
    margin: 0 0 30px;
    width: 100%;
  }
  .about_banner_bg.about_sec_second {
    padding: 80px 0 70px;
  }
  .about_banner_bg video {
    display: none;
  }
  .about_banner_bg.about_sec_second:after {
    width: 100%;
  }
  .integration_banner h4 {
    font-size: 20px;
  }
  .integration_three_col_with_img>.main_container+div {
    margin-bottom: 40px;
  }
  /* use cases */
  .two_col_layout_bg.use_case_two_col ul li>* {
    width: 100%;
  }
  
}
@media screen and (max-width: 500px) { 
  .integration_text_and_img .main_container { 
    max-width: 100%; 
    margin-left: 20px;
    margin-right: 20px;
  }
  .integration_request_demo>.main_container {
    margin-left: 20px;
    margin-right: 20px;
  }
  .main_container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about_banner_cnt p:after {
    bottom: -50px;
    width: 100%;
  }
  .integration_request_demo h2 {
    font-size: 24px;
  }
}