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

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.dnd-section > .row-fluid,
.page-center,
.content-wrapper {
  margin:0 auto;
  padding: 0 15px;
  width: 100%;
}
.page-center.full_width,
.content-wrapper.full_width{
  width:100%;
  max-width:100%;
}
.dnd-section[class*="force-full-width-section"]>.row-fluid .dnd-column {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid{
  padding:0;
}

.dnd-section[class*="force-full-width-section"]{
  padding:0;
}

.dnd-section .dnd-column {
  padding: 0 15px;
}

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

@font-face {
  font-family: "Inter";
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
  font-named-instance:"Regular";src: url("https://46597540.fs1.hubspotusercontent-na1.net/hubfs/46597540/raw_assets/public/Syncron_2025/fonts/Inter.woff2") format("woff2")
    }


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

th{
  text-align:left; 
}
/* Paragraphs */

p {
  margin: 0 0 22px;
}

p:last-child{
  margin-bottom: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
  transition:all 0.3s ease-in-out;
}
/* Headings */

h1,
h2,
h3,
h5,
h6 {
  margin: 0 0 22px;
}

h4{
  margin: 0 0 20px;
}

/* Lists */

ul,
ol {
  margin: 0 0 22px;
  padding-left: 32px;
}


.body-container-wrapper li:not(:last-child) {
  margin-bottom: 12px;
}
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 {
  position: relative;
  font-style: italic;
  border-left-style: solid;
  border-left-width: 4px;
  padding-left: 15px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  font-size:var(--h5_font_size);
  margin-bottom:24px;
}


/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

svg{
  vertical-align: middle;
}
.hs-search-results__listing {
  margin-bottom: 24px !important;
}
.systems-page p,.systems-page p:last-child {
  margin-bottom: 16px;
}
.hs-search-results__pagination{
  flex-wrap: wrap;
}

img{
  vertical-align: middle;
  max-width:100%;
  height:auto;
} 

body .splide__arrow:hover svg {
  fill: #fff;
  opacity: 1;
}

/* body .splide__arrow svg {
  transition: 0.3s all ease-in-out;
} */

body .splide__pagination {
  bottom: 0;
  position: relative;
  padding-top: 20px;
}

body .splide__pagination__page {
  background-color: var(--primary_color);
  opacity: .3;
}

body .splide__pagination__page.is-active {
  background-color: var(--tertiary_color);
  opacity: 1;
}

a.cta_button {
  box-sizing: border-box !important;
}

@media(max-width:1024px){
  h1,
  h2,
  h3,
  h5,
  h6 {
    letter-spacing: normal !important;
  }
}
button,
.button,
.hs-button,
.primary_btn,
.primary-btn a,
.btn-custom a,
.secondary_btn,
.secondary-btn a,
.tertiary_btn,
.tertiary-btn a,
.custom-btn a{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease-in;
  white-space: normal;
  line-height:1.5;
}


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

/* Labels */

form label {
  display: inline-block;
  font-size: 0.875rem;
  margin-bottom: 5px;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

form{
  margin-bottom: 20px;
}

/* 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: 14px;
  line-height:20px;
  padding: 9px 10px;
  width: 100%;
  font-weight:500;
  outline:0;
}

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

form label p {
  font-size: 0.875rem;
}

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;
  outline: none;
  accent-color: #0000ff;
  margin-top: 4px;
}

/* 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: red !important;
}

.hs-input.invalid.error {
  border-color: red !important;
}
.hs-error-msgs label{
  color: red !important;
}
.hs-error-msg {
  color: red !important;
  margin-top: 0.35rem;
}

fieldset .input {
  margin-right: 0 !important;
}

form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form select,
form textarea {
  width: 100% !important;
}
form textarea {
  min-height: 114px;
}

form .hs-submit {
  padding-top: 10px;
}
/* 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;
  margin-top:20px;
}
.submitted-message{
  font-weight:bold !important;
}
/* Captcha */

.grecaptcha-badge {
  margin: auto auto auto 0;
}

.systems-page form input[type=checkbox]~label {
  display: inline;
}
@media(max-width:400px){
  .grecaptcha-badge {
    overflow-x: 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;
}

form input[type=file] {
  border: 0 !important;
  background-color: transparent !important;
  margin-top: 10px !important;
}

@media(min-width:401px){
  fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 9px !important;
  }
}
/* 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
*/

/* 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: 10px;
  overflow: visible;
  top: 10px;
  width: auto;
  outline: none;
}
/* ///////////////////////////// */

.om-header-wrapper {
  position: relative;
  z-index: 99;
  min-height: 109px;
}

header.om-header{
  position: fixed;
  width: 100%;
  border-bottom: 1px solid #e7ecef;
  transition: 0.3s all ease-in-out;
}

.om-header-wrapper .om-header-wrap .top_main_content {
  background-color: #E7ECEF;
  padding: 11px 0;
}



.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper>ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  margin: 0;
  list-style: none;
  padding: 0;
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper>ul>li>a {
  color: #0F1012;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  vertical-align: middle;
  display: block;
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper ul  a {
  transition: 0.3s all ease-in-out;
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper ul ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: absolute;
  top: calc(100% + 11px);
  width: max-content;
  max-width: 200px;
  min-width: 200px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .1), 0 20px 40px 0 rgba(0, 0, 0, .15);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 10px 0;
  transform: translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper>ul>li:before {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 11px;
  content: "";
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper>ul li:hover>a {
  color: #FF8300;
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper ul li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper ul ul li a {
  color: #0F1012;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 12px;
  display: block;
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper>ul>li {
  position: relative;
  line-height: 1;
}

.om-header-wrapper .om-header-wrap .bottom_main_header {
  padding: 21px 0;
}

.om-header-wrapper  .bottom_main_header .header-inner-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.om-header-wrapper .bottom_main_header .left-wrap {
  display: flex;
  align-items: center;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col {
  padding-left: 9px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-logo-col {
  padding-right: 23px;
  padding-top: 5px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li {
  vertical-align: middle;
  position: relative;
  border-radius: 50px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>a {
  font-size: 15px;
  line-height: 1.0011;
  display: block;
  vertical-align: middle;
  padding: 10px 15px;
}

.om-header-wrapper .bottom_main_header .right-wrap .btn_header_main {
  display: flex;
  gap: 8px;
  align-items: center;
}

.om-header-wrapper .bottom_main_header .right-wrap .btn_header_main .content-wrapper {
  padding: 0;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li:before {
  content: "";
  position: absolute;
  top: 100%;
  height: 21px;
  width: 100%;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul li ul {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: absolute;
  top: calc(100% + 21px);
  width: max-content;
  max-width: 200px;
  min-width: 200px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .1), 0 20px 40px 0 rgba(0, 0, 0, .15);
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul li:first-child a {
  padding-top: 12px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul li:last-child a {
  padding-bottom: 12px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul a {
  color: #0F1012;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 12px;
  display: block;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul li.hs-item-has-children a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul ul ul {
  top: 0;
  left: 100%;
  right: auto;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul ul li:hover>ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul li {
  position: relative;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li:hover>a {
  color: #ff8300;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li:hover>a {
  color: #ff8300;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul li:hover>a {
  color: #ff8300;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul a .om-dropdown svg path {
  stroke: currentColor;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>a .om-dropdown svg {
  transform: rotate(90deg);
  width: 10px;
  transition: 0.3s all ease-in-out;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li.hs-item-has-children>a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li:hover>a .om-dropdown svg {
  transform: rotate( 270deg);
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li:hover>a .om-dropdown svg path {
  stroke: currentColor;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul a svg {
  width: 10px;
}

.om-header-wrapper .om-header-wrap .top_main_content .hs-menu-wrapper>ul>li:nth-last-child(-n+2) ul {
  left: auto;
  right: 0;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul ul li:last-child a{
  padding-bottom: 12px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>ul ul li:first-child a{
  padding-top: 12px;
}

.om-header-wrapper .bottom_main_header .btn-trigger {
  width: 35px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.om-header-wrapper .bottom_main_header .btn-trigger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--tertiary_color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.om-header-wrapper .bottom_main_header .btn-trigger span:nth-child(1) {
  top: 0px;
}

.om-header-wrapper .bottom_main_header .btn-trigger span:nth-child(2),
.om-header-wrapper .bottom_main_header .btn-trigger span:nth-child(3) {
  top: 10px;
}

.om-header-wrapper .bottom_main_header .btn-trigger span:nth-child(4) {
  top: 20px;
}

.om-header-wrapper .bottom_main_header .btn-trigger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.om-header-wrapper .bottom_main_header .btn-trigger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.om-header-wrapper .bottom_main_header .btn-trigger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.om-header-wrapper .bottom_main_header .btn-trigger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

header.om-header.scroll-up {
  transform: translateY(var(--top-main-height));
}

header.om-header.scroll-down {
  transform: none;
}

header.om-header .mobile_header .btn_header_main .btn_sec {
  flex-wrap: nowrap;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-menu-col .hs-menu-wrapper>ul>li>a .om-dropdown svg path{
  stroke: currentColor;
}

header.om-header .mobile_header .hs-menu-wrapper>ul>li .cm-child-trigger svg{
  fill: currentColor;
}

header.om-header .mobile_header .hs-menu-wrapper>ul>li ul li a {
  display: block;
  line-height: 1.2;
  color: #000;
  font-size: 16px;
  padding: 15px 10px;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-logo-col .om-logo-inner img {
  max-width: 118px !important;
  width: 100% !important;
}

.om-header-wrapper .bottom_main_header .left-wrap .om-logo-col .om-logo-inner a{
  vertical-align: middle;
}

html.overflow .om-header{
  transform:none !important;  
}


@media(min-width:1024px){
  .om-header-wrapper .bottom_main_header .btn-trigger {
    display: none;
  }
  header.om-header .mobile_header {
    display: none;
  }
}

@media(max-width:1023px){
  header.om-header.scroll-up{
    transform: translateY(-100%);
  }

  .om-header-wrapper{
    min-height: 69px;
  }
  .om-header-wrapper .bottom_main_header .left-wrap .om-menu-col {
    display: none;
  }

  .om-header-wrapper .bottom_main_header .right-wrap {
    display: none;
  }

  .om-header-wrapper .om-header-wrap .top_main_content {
    display: none;
  }

  header.om-header .mobile_header {
    background-color: #fff;
    height: 100vh;
    transform: translateX(-100%); 
    transition: 0.3s all ease-in-out;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow-y: auto;
    height: calc(100vh - 63px);
    padding-bottom: 50px;
  }


  header.om-header .mobile_header  .hs-menu-wrapper>ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul ul {
    display: none;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li>a {
    display: block;
    padding: 20px 0;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
  }

  header.om-header .mobile_header  .hs-menu-wrapper>ul>li {
    border-bottom: 1px solid #0f10124d;
  }


  header.om-header .mobile_header .btn_header_main {
    padding-top: 30px;
  }

  header.om-header .mobile_header .btn_header_main .btn_item {
    width: 50%;
  }

  header.om-header .mobile_header .btn_header_main .btn_item a {
    width: 100%;
  }

  header.om-header .mobile_header .btn_header_main .content-wrapper {
    padding: 0;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li {
    position: relative;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li .cm-child-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li .cm-child-trigger svg {
    width: 20px;
    display: flex;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li.hs-item-has-children>a {
    padding-right: 45px;
  }

  header.om-header .mobile_header  .hs-menu-wrapper>ul>li ul a {
    display: block;
    line-height: 1.2;
    color: #000;
    font-size: 16px;
    padding: 8px 10px;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li ul {
    padding-bottom: 20px;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li ul li {
    position: relative;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li ul li .cm-child-trigger {
    width: 40px;
    height: 34px;
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li .cm-child-trigger.child-open {
    transform: rotate(180deg);
  }

  html.overflow {
    overflow: hidden;
  }

  header.om-header .mobile_header.menu_open {
    transform: translate(0);
  }

  header.om-header .mobile_header .hs-menu-wrapper>ul>li ul li.hs-item-has-children>a {
    padding-right: 45px;
  }

  header.om-header .mobile_header .mob_top_menu_wrap .hs-menu-wrapper>ul>li:last-child {
    border-bottom: 0;
  }
}
@media(max-width:450px){
  header.om-header .mobile_header .btn_header_main .btn_item {
    width: 100%;
  }

  header.om-header .mobile_header .btn_header_main .btn_sec {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.om-footer-wrapper{
  position: relative;
  z-index:9;
}

.om-footer-wrapper .overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  z-index:9; 
}

.om-footer-wrapper .footer_main {
  position: relative;
  z-index: 9;
}

.om-footer-wrapper .footer_main .top_footer_wrap {
  padding-top: 63px;
  padding-bottom: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.om-footer-wrapper .footer_main .top_footer_wrap .logo_wrapper {
  width: calc(50% - 10px);
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.om-footer-wrapper  .top_footer_wrap .logo_wrapper .footer_logo {
  max-width: 155px;
  margin-bottom: 8px;
}

.om-footer-wrapper .top_footer_wrap .logo_wrapper .logo_headline {
  margin-bottom: 16px;
}

.om-footer-wrapper {
  color: #fff;
}

.om-footer-wrapper .top_footer_wrap .logo_wrapper .logo_headline>h3 {
  letter-spacing: -1.76px;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.om-footer-wrapper .top_footer_wrap .logo_wrapper .btn_wrapper .content-wrapper {
  padding: 0;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 80px;
  flex-wrap: nowrap;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul>li {
  max-width: 181px;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul>li a {
  color: #FFFFFF;
  font-size: 14px;
  display: block;
  line-height: 1.5;
  letter-spacing: 0.035px;
  padding-bottom: 17px;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul>li li:last-child a {
  padding-bottom: 0;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul>li a:hover {
  color: #ff8300;
}

.om-footer-wrapper .footer_main .top_footer_wrap {
  border-bottom: 1px solid #ffffff26;
}

.om-footer-wrapper .footer_main .bottom_footer {
  padding-top: 16px;
  padding-bottom: 18px;
}

.om-footer-wrapper .footer_main .bottom_footer ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 26px;
}

.om-footer-wrapper .footer_main .bottom_footer ul li {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.048px;
  font-weight: 400;
}

.om-footer-wrapper .footer_main .bottom_footer ul li a {
  line-height: 1.5;
  display: inline-block;
}

.om-footer-wrapper .footer_main .bottom_footer ul li a:hover {
  color: #ff8300;
}

.om-footer-wrapper .footer_main .bottom_footer ul {
  row-gap: 10px;
}

@media(max-width:992px){
  .om-footer-wrapper .footer_main .top_footer_wrap {
    flex-direction: column;
    gap: 30px;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .logo_wrapper {
    width: 100%;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap {
    width: 100%;
    align-items: self-start;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul>li {
    max-width: 100%;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs_cos_wrapper {
    width: 100%;
  }

  .om-footer-wrapper .top_footer_wrap .logo_wrapper .btn_wrapper .btn_item {
    width: auto;
  }

  .om-footer-wrapper .top_footer_wrap .logo_wrapper .btn_wrapper .btn_item a {
    width: auto;
  }
}

@media(max-width:767px){
  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul {
    gap: 17px;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul>li {
    width: 50%;
  }

  .om-footer-wrapper .top_footer_wrap .logo_wrapper .logo_headline>h3 {
    font-size: 35px;
  }
  .om-footer-wrapper .footer_main .bottom_footer ul {
    gap: 15px;
  }
  .om-footer-wrapper .footer_main .top_footer_wrap {
    padding-bottom: 30px;
    
  }
}

@media(max-width:500px){
  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul {
    flex-direction: column;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_wrap .hs-menu-wrapper>ul>li {
    width: 100%;
  }
  .om-footer-wrapper .top_footer_wrap .logo_wrapper .btn_wrapper .btn_sec {
    gap: 20px;
  }
  .om-footer-wrapper .footer_main .bottom_footer ul li + li {
    padding-top: 10px;
  }
  .om-footer-wrapper .footer_main .bottom_footer ul {
    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%;
}


.hs-image__grid__list{
  margin-bottom: 0;
}

.body-container-wrapper .hs-image__grid__list li:not(:last-child){
  margin-bottom: 0;
}

/* 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;
  }
}
.leadership_page {
  padding-top: 100px;
  padding-bottom: 100px;
}
.leadership_page .leadership-article {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: center;
}

.leadership_page .leadership-article .left-container {
  width: calc(61.5% - 38px/2);
}

.leadership_page .leadership-article .right-container {
  width: calc(38.5% - 38px/2);
}

.leadership_page .leadership-article  .leadership-article-image {
  width: 100%;
}

.leadership_page .leadership-article-title {
  margin-bottom: 32px;
  font-weight: 500;
}
.leadership_page .leadership-article .leadership-article-designation {
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.09rem;
  margin-bottom: 30px;
}
.leadership_page .btn_sec {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 9px;
  justify-content: flex-start;
}
.leadership_page .btn_sec .link-btn.btn_item a {
  align-items: center;
  display: flex;
  justify-content: center;
}
.leadership_page .btn_sec .link-btn.btn_item a .text {
  color: #212529;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 10px;
  padding-top: 10px;
  text-transform: uppercase;
}

.leadership_page .btn_sec .btn_item .icon {
  height: 19px;
  margin-left: 1rem;
  -webkit-transition: margin-left .2s ease-out;
  transition: margin-left .2s ease-out;
  width: 31px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  position: relative;
}

.leadership_page .btn_sec .btn_item .icon>span {
  display: inline-flex;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .3s ease-in-out;
  width: 100%;
}
.leadership_page .btn_sec .btn_item .icon .icon_initial {
  transform: scale(1);
}
.leadership_page .btn_sec .btn_item .icon>span img {
  min-width: 16px;
  object-fit: contain;
}
.leadership_page .btn_sec .link-btn.btn_item a:hover .text {
  color: var(--tertiary_color);
}
.leadership_page .btn_sec .link-btn.btn_item a:hover .icon {
  margin-left: 1.5rem;
}

.leadership_page .leadership-blog-content p:not(:last-child) {
  margin-bottom: 9px;
}
@media(max-width:991px) and (min-width:600px){
  .leadership_page .leadership-article  .leadership-article-image {
    max-width:50%;
  }
  .leadership_page .leadership-article .right-container{
    text-align:center;
  }
}
@media(max-width:991px){
  .leadership_page .leadership-article .left-container,
  .leadership_page .leadership-article .right-container{
    width:100%;
  }
  .leadership_page {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .leadership_page .leadership-article{
    flex-direction: column-reverse;
  }
}

@media(max-width:767px){
  .leadership_page .leadership-article{
    gap:32px;
  }
}
.legal_page .legal_wrap_main {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.legal_page .legal_wrap_main .legal_left {
  width: calc(33.33% - 17.5px);
}

.legal_page .legal_wrap_main .legal_right {
  width: calc(66.66% - 17.5px);
}

.legal_page .legal_wrap_main .legal_left ul {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.legal_page .legal_wrap_main .legal_left ul li {
  border-bottom: 1px solid #ced4da;
  padding: 16px 0;
  width: 100%;
  margin:0;
}

.legal_page .legal_wrap_main .legal_left ul li a {
  color: var(--primary_color);
  text-transform: uppercase;
}

.legal_page .legal_wrap_main .legal_left ul li a:hover {
  color: var(--tertiary_color);
}

.legal_page .legal_wrap_main .legal_left ul li.active a {
  color: var(--tertiary_color);
}

@media(max-width:767px){
  .legal_page .legal_wrap_main .legal_left {
    width: 100%;
  }

  .legal_page .legal_wrap_main .legal_right {
    width: 100%;
  }
  .legal_page .legal_wrap_main .legal_left ul li {
    padding: 8px 0;
    margin-bottom: 8px;
  }
}



/* landing page v2 style */

.landing-page-v2-wrapper .landing-v2-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: self-start;
}

.landing-page-v2-wrapper .left-toc {
  width: calc(30% - 30px / 2);
  position: sticky;
  top: calc(var(--header-height) + 50px);
  background: #fff;
}

.landing-page-v2-wrapper .right-content {
  width: calc(70% - 30px / 2);
}

.landing-page-v2-wrapper .tabel_content_inner {
  align-self: self-start;
  border: 1px solid var(--tertiary_color);
  border-radius: 12px;
  box-shadow: -2px -2px 2px var(--tertiary_color);
  padding: 20px;
  position: sticky;
  top: var(--header-height);
  transition: all .3s ease-in-out;
  border-radius: 8px;
  max-height: 85vh;
  overflow: auto;
}
.landing-page-v2-wrapper .left-toc  h5.title {
  border-bottom: 1px solid var(--tertiary_color);
  margin-bottom: 16px;
  font-weight:500;
  padding-bottom: 16px;
}

.landing-page-v2-wrapper .left-toc .tabel_content_inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.landing-page-v2-wrapper  .left-toc .tabel_content_inner ul li{
  margin-bottom:0;
}
.landing-page-v2-wrapper  .left-toc .tabel_content_inner ul li:not(:last-child){
  border-bottom: 1px solid #0000003d;
}
.landing-page-v2-wrapper   .left-toc .tabel_content_inner ul li:not(:last-child) a{
  padding-bottom: 12px;
}
.landing-page-v2-wrapper  .left-toc .tabel_content_inner ul li:not(:first-child) a{
  padding-top: 12px;
}
.landing-page-v2-wrapper   .left-toc .tabel_content_inner ul li a {
  color: inherit;
  width:100%;
  display:block;
}
.landing-page-v2-wrapper  .left-toc .tabel_content_inner ul li{
  position:relative;
}
.landing-page-v2-wrapper   .left-toc .tabel_content_inner ul li:not(:last-child):after {
  content: "";
  width: 0%;
  height: 2px;
  display: block;
  background: var(--tertiary_color);
  bottom: -1.5px;
  position: absolute;
  transition: width 0.76s 0.2s ease ;
}

.landing-page-v2-wrapper  .left-toc .tabel_content_inner ul li:not(:last-child):has(.active):after{
  width: 100%;
}
.landing-page-v2-wrapper  .left-toc .tabel_content_inner ul li a.active,
.landing-page-v2-wrapper  .left-toc .tabel_content_inner ul li a:hover{
  color: var(--tertiary_color);
}

.landing-page-v2-wrapper .right-content hr {
  margin-bottom: 24px;
}

.landing-page-v2-wrapper .right-content .hs_cos_wrapper_type_rich_text>*:last-child {
  margin-bottom: 0;
}

.landing-page-v2-wrapper .right-content .hs_cos_wrapper_type_rich_text>*:last-child>table {
  margin-bottom: 0;
}

.landing-page-v2-wrapper .tabel_content_inner::-webkit-scrollbar {
  width: 4px;
}

.landing-page-v2-wrapper .tabel_content_inner::-webkit-scrollbar-track {
  background: transparent;
}

.landing-page-v2-wrapper .tabel_content_inner::-webkit-scrollbar-thumb {
  background:var(--tertiary_color);
  border-radius: 10px;
}

.landing-page-v2-wrapper .tabel_content_inner::-webkit-scrollbar-thumb:hover {
  background:var(--tertiary_color);
}

@media(max-width:991px){
  .landing-page-v2-wrapper .left-toc {
    width: 100%;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    transition: 0.3s all ease-in-out;
  }

  .landing-page-v2-wrapper .right-content {
    width: 100%;
  }
  .landing-page-v2-wrapper .landing-v2-inner {
    gap: 50px;
  }
  .landing-page-v2-wrapper .child--trigger {
    align-items: center;
    color: #000;
    cursor: pointer;
    display: flex;
    height: 55px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s ease-in-out;
    width: 50px;
  }
  .landing-page-v2-wrapper .left-toc .tabel_content_inner ul {
    display: none;
  }
  .landing-page-v2-wrapper .left-toc h5.title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: transparent;
    position:relative;
    cursor: pointer;
    z-index:1;
  }
  .landing-page-v2-wrapper .left-toc .tabel_content_inner ul {
    display: none;
  }
  .landing-page-v2-wrapper .tabel_content_inner{
    padding: 15px;
  }
  .landing-page-v2-wrapper .left-toc .tabel_content_inner ul>li:first-child {
    margin-top: 16px;
    padding-top: 16px;
  }
  .landing-page-v2-wrapper .left-toc h5.title:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    width: 0;
    height: 1px;
    background-color: var(--tertiary_color);
    transition: 0.3s all ease-in-out;
  }

  .landing-page-v2-wrapper .left-toc.open h5.title:after {
    width: 100%;
  }
  .landing-page-v2-wrapper .left-toc .child--trigger i{
    transition: 0.3s all ease-in-out;
  }
  .landing-page-v2-wrapper .left-toc.open .child--trigger i {
    transform: rotate(180deg);
  }
  body:has(header.om-header.scroll-up) .landing-page-v2-wrapper .left-toc {
    top: 20px;
  }
}

@media(min-width:992px){
  .landing-page-v2-wrapper .child--trigger{
    display:none;
  }
  .landing-page-v2-wrapper .left-toc h5.title{
    pointer-events:none;
  }
}