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

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

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

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

h4{
  margin: 0 0 24px;
}

/* Lists */

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



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


body .splide__pagination__page.is-active {
  transform: none;
}

body .splide__pagination__page:hover {
  background: currentColor;
  opacity: 1;
}

body .splide__pagination__page {
  border: none !important;
  margin: 0;
  opacity: 1;
/*   width: 12px;
  height: 3px;
  border-radius: 2px !important; */
  background: var(--tertiary_color);
  opacity: 25%;
  transition:all 0.3s ease-in-out;
   width: 40px;
  height: 10px;
  border-radius: 12px !important;
}

body .splide__pagination__page:hover {
  background: var(--tertiary_color);
  opacity: 1;
}

body .splide__pagination {
/*   gap: 2px; */
  gap:10px;
}


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: #fff;
  border-color: #D9DBDF;
  color: #868C98;
}



/* 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: 14px;
  margin-bottom: 8px;
  font-weight:600;
}

form label:has(span:empty) {
  display: none;
}


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


.form-title:empty{
  padding:0;
}

/* Help text */

form legend {
  font-size: 14px;
}

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: 16px;
  line-height:1.5;
  padding: 15px 19px;
  width: 100%;
  font-weight:500;
  outline:0;
}


form select {
  appearance: none;
  background: url(https://5490681.fs1.hubspotusercontent-na1.net/hubfs/5490681/raw_assets/public/DoctorsofCannabis_2026/images/select-arrow.svg) no-repeat 97% center;
  padding-right: 30px;
  background-size: 13px;
}

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: 14rem;
}

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: 14rem;
  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
*/

.hs-inline-edit #onetrust-consent-sdk {
  display: none;
}

/* Navigation skipper */
.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
  z-index:99;
}
.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 10px;
  overflow: visible;
  top: 10px;
  width: auto;
  outline: none;
}
/* ///////////////////////////// */

header.om-header ::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
header.om-header ::-webkit-scrollbar-thumb {
  background: #fff;
}

/* Handle on hover */
header.om-header ::-webkit-scrollbar-thumb:hover {
  background: #fff;
}



header.om-header {
  padding: 24px 0;
}

header.om-header .cst-header-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position:relative;

}

header.om-header .cst-header-inner .cst-hdr-logo a {
  display: inline-block;
  max-width: 102px;
}

header.om-header .cst-header-inner .cst-hdr-btns .om_btn_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

header.om-header .cst-header-inner .cst-hdr-btns .om_btn_wrapper .custom-btn a {
  background-color: transparent;
  color: #000;
  border-color: transparent;
}

header.om-header .cst-header-inner .cst-hdr-btns .om_btn_wrapper .custom-btn a:hover,
header.om-header .cst-header-inner .cst-hdr-btns .om_btn_wrapper .custom-btn a:focus {
  background-color: var(--primary_btn_bg_hover);
  color: var(--primary_btn_text_hover);
  border-color:var(--primary_btn_border_hover);
}


.om-header>.om_header_search {
  display: none;
}

.mega_menu_wrapper>ul ul.outer_wrap .om_header_search form .hs-search-field__input{
  padding: 18.5px 23px;
  border-radius: 50px;
  font-size: 12px;
  line-height: 1.4;
}

.mega_menu_wrapper>ul ul.outer_wrap .om_header_search form .hs-search-field__button {
  display:none;
}

header.om-header {
  z-index: 99;
  position: relative;
}

header.om-header .hamburger {
  align-items: center;
  cursor: pointer;
  display:flex;
  flex-direction: column;
  gap: 6px;
  height: 24px;
  justify-content: center;
  position: relative;
  width: 24px
}

header.om-header .hamburger .line {
  border: 1.5px solid #abbebf;
  border-radius: 999px;
  position: absolute;
  transition: all .3s ease;
  width: 100%
}

header.om-header .hamburger .line:first-child {
  top: 2px
}

header.om-header .hamburger .line:nth-child(2) {
  top: 10px
}

header.om-header .hamburger .line:nth-child(3) {
  top: 18px
}

.mobile_menu_open header.om-header .hamburger .line:first-child {
  left: 0;
  top: 12px;
  transform: rotate(45deg)
}

.mobile_menu_open header.om-header .hamburger .line:nth-child(2) {
  opacity: 0
}

.mobile_menu_open header.om-header .hamburger .line:nth-child(3) {
  left: 0;
  top: 12px;
  transform: rotate(-45deg)
}

.start_scroll header.om-header {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .08);
  transform: translateY(0);
}

.std-head header.om-header {
  transition: all .5s ease-in-out; 
}

.scrolling_down.start_scroll header.om-header {
  transform: translateY(-100%);
}

.scrolling_up.start_scroll header.om-header {
  transform: translateY(0%);  
}


@media (min-width:992px){
  header.om-header .page-center .hamburger{
    display:none;
  }
}


@media (max-width:991px){
  header.om-header .cst-header-inner .mega_menu_wrapper {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    height: calc(100vh - 84px);
    overflow:auto;
    /*     background: #fff; */
    top: 100%;
    left: 0;
    padding: 0 16px 24px;
  }

  header.om-header .cst-header-inner .cst-hdr-btns .om_btn_items:not(:last-child) {
    display: none;
  }

  header.om-header {
    padding: 20px 0;
  }

  header.om-header .page-center {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }

  header.om-header .page-center .cst-header-inner {
    width: calc(100% - 44px);
  }

  header.om-header .cst-header-inner .cst-hdr-logo a {
    max-width: 84px;
  }

  header.om-header .cst-header-inner .cst-hdr-btns .om_btn_items a {
    padding: 10px 22px;
    font-size: 13px;
    line-height: 20px;
    border-radius: 8px;
  }

  /*   mobile menu */

  header.om-header .cst-header-inner {
    position: static;
  }

  .mobile_menu_open header.om-header .cst-header-inner .mega_menu_wrapper {
    opacity: 1;
    visibility: visible;
  }


  html.mobile_menu_open {
    overflow: hidden;
  }

}

@media(max-width:350px){
  header.om-header .page-center {
    gap: 16px;
  }

  header.om-header .page-center .cst-header-inner {
    width: calc(100% - 40px);
  }
}
.om-footer-wrapper{
  position: relative;
  z-index:9;
  border-top: 4px solid #0b9d90;
  box-shadow: 0px 8px 23.9px 0px #3C3C3C33 inset;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding-top:80px;
  padding-bottom:80px;
  line-height:1.4;
}

.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-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.om-footer-wrapper .footer_main .top_footer_wrap .logo_wrapper {
  width:calc(16.67% - 20px * 2 / 3);
  align-self: stretch;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_menu_contact_wrap {
  width: calc(50% - 20px * 2 / 3);
  display: flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content: space-around;
  align-self: stretch;
  border-left: 1px solid rgb(255 255 255 / 21%);
  border-right: 1px solid rgb(255 255 255 / 21%);
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap{
  width:calc(33.33% - 20px * 2 / 3);
}

.om-footer-wrapper .top_footer_wrap .logo_wrapper .footer_logo {
  max-width: 169px;
}

.om-footer-wrapper .top_footer_wrap .logo_wrapper .footer_logo img {
  width: 100% !important;
}

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

.om-footer-wrapper {
  width:calc(100% - 40px);
  margin: 0 auto;
}

.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 .bottom_footer {
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid rgb(255 255 255 / 21%);
  border-bottom: 1px solid rgb(255 255 255 / 21%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.om-footer-wrapper .footer_main .bottom_footer > * {
  width: calc(25% - 20px * 2 / 3);
}

.om-footer-wrapper .footer_main .bottom_footer .om_btm_menu{
  width: calc(50% - 20px * 2 / 3);
}


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


.om-footer-wrapper .footer_main .top_footer_wrap .logo_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 43px;
  flex-direction: column;
}

.om-footer-wrapper .logo_wrapper .logo_headline_logos {
  padding: 21px 0;
  border-top: 1px solid rgb(255 255 255 / 21%);
}

.om-footer-wrapper .footer_main .bottom_footer ul li.social-item {
  height: 20px;
  width: 20px;
}

.om-footer-wrapper .footer_main .bottom_footer ul li.social-item a {
  width: 100%;
}

.om-footer-wrapper .icon-wrapper .social-item a svg{
  width: 100%;
  height: 100%;
}

.om-footer-wrapper .footer_main .bottom_footer ul li.social-item:hover a{
  opacity: .8;
} 

.om-footer-wrapper .bottom_footer .social_icons_wrap .social_icons_title {
  margin-bottom: 12px;
}

.om-footer-wrapper .footer_main .bottom_footer .om_btm_menu ul{
  justify-content:center;
}

.om-footer-wrapper .footer_main .bottom_footer .om_btm_menu ul li {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.32px;
}

.om-footer-wrapper .footer_main .bottom_footer .om_btm_menu ul li a {
  line-height: 1.2;
  text-decoration:underline;
}

.om-footer-wrapper .footer_main .bottom_footer .om_copyright_text {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.om-footer-wrapper .om_menu_contact_wrap .om_menu ul {
  gap: 16px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.32px;
  font-weight: 500;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap form {
  margin: 0;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap .form-title {
  padding-bottom: 24px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap form .hs-form-field {
  margin-bottom: 12px;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap .hs_submit {
  padding-top: 0;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap .hs_submit input.hs-button {
  width: 100%;
  margin-top: 0;
  background: #fff;
  border: none;
  color: #031312;
  padding-top: 16px;
  padding-bottom: 16px;
  border:2px solid #fff;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap .hs_submit input.hs-button:hover {
  background-color: var(--primary_btn_bg_hover);
  color: var(--primary_btn_text_hover);
  border-color: var(--primary_btn_border_hover);
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap form .hs-form-field .hs-input {
  border-radius: 12px;
  background: transparent;
  border-color:#fff;
  color:#fff;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap form .hs-form-field .hs-input::placeholder{
  color:#fff;
}

.om-footer-wrapper .bottom_footer .social_icons_wrap .social_icons_title {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.32px;
}

.om-footer-wrapper .om_menu_contact_wrap .om_contact_details p{
  font-size:14px;
  line-height:1.4;
  letter-spacing: 0.32px;
}

.om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap form .hs-form-field .hs-input {
  font-size: 12px;
  line-height: 1.2;
  padding: 19px;
  letter-spacing:0.64px;
}

.om-footer-wrapper .cst-disclaimer-text {
  padding-top: 30px;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.32px;
  font-weight: 600;
}

.om-footer-wrapper .cst-disclaimer-text .cst-disclaimer-links ul {
  gap: 16px;
  margin-top: 16px;
}

.om-footer-wrapper .cst-disclaimer-text .cst-disclaimer-links ul a {
  text-decoration: underline;
}

.om-footer-wrapper .footer_main .bottom_footer ul.icon-wrapper{
  column-gap:25px;
  row-gap:20px;
}

.om-footer-no-navigation.om-footer-wrapper .cst-disclaimer-text {
  padding: 0;
}

@media (min-width:1099px){
  .om-footer-wrapper .footer_main .top_footer_wrap .logo_wrapper {
    padding-right: 50px;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap {
    padding-left: 50px;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .logo_wrapper {
    width:calc(21.67% - 20px * 2 / 3);
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_contact_wrap {
    width: calc(40% - 20px * 2 / 3);
  }
  .om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap{
    width:calc(38.33% - 20px * 2 / 3);
  }
}

@media (min-width:992px){
  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_contact_wrap {
    padding: 0 20px;
  }
}


@media(max-width:1100px){
  .om-footer-wrapper .footer_main .bottom_footer ul.icon-wrapper{
    column-gap:20px;
  }
}

@media(max-width:991px){

  .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 .logo_wrapper,
  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_contact_wrap {
    width: calc(50% - 20px * 1 / 2);
  }

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

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_contact_wrap {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .om-footer-wrapper .footer_main .bottom_footer ul.icon-wrapper {
    column-gap: 15px;
  }

}

@media(max-width:767px){
  .om-footer-wrapper .footer_main .top_footer_wrap {
    padding-bottom: 30px;
  }
  .om-footer-wrapper .footer_main .top_footer_wrap .logo_wrapper,
  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_contact_wrap,
  .om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap {
    width: 100%;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_contact_wrap {
    justify-content: flex-start;
    flex-direction: column;
    border: none;
    gap: 40px;
    padding:0;
  }

  .om-footer-wrapper .footer_main .bottom_footer > * {
    width: 100%;
  }

  .om-footer-wrapper .footer_main .bottom_footer .om_btm_menu {
    width: 100%;
  }

  .om-footer-wrapper .footer_main .bottom_footer .om_btm_menu ul {
    align-items: flex-start;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap {
    gap: 0;
  }

  .om-footer-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .logo_wrapper {
    gap: 0;
  }

  .om-footer-wrapper .logo_wrapper .logo_headline_logos {
    padding: 24px 0;
    border-bottom: 1px solid rgb(255 255 255 / 21%);
  }

  .om-footer-wrapper .top_footer_wrap .logo_wrapper .footer_logo {
    margin: 0;
    padding-bottom: 24px;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_menu_contact_wrap {
    padding: 24px 0;
    border-bottom: 1px solid rgb(255 255 255 / 21%);
  }

  .om-footer-wrapper .footer_main .top_footer_wrap {
    padding-bottom: 0;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap {
    padding: 24px 0;
  }

  .om-footer-wrapper .footer_main .bottom_footer {
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 40px; 
  }

  .om-footer-wrapper .cst-disclaimer-text{
    padding-top:24px;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap .form-title {
    font-size: 13px;
  }

  .om-footer-wrapper .om_menu_contact_wrap .om_contact_details p {
    margin-bottom: 10px;
  }
  .om-footer-wrapper .om_menu_contact_wrap .om_contact_details p:last-child{
    margin-bottom:0;
  }

  .om-footer-wrapper .om_menu_contact_wrap .om_menu ul {
    gap: 10px;
  }

  .om-footer-wrapper .om_menu_contact_wrap .om_contact_details p,
  .om-footer-wrapper .om_menu_contact_wrap .om_menu ul,
  .om-footer-wrapper .footer_main .bottom_footer .om_btm_menu ul li {
    font-size: 13px;
  }

  .om-footer-wrapper .footer_main .bottom_footer ul.icon-wrapper{
    column-gap:20px;
  }

  .om-footer-wrapper .footer_main .top_footer_wrap .om_form_wrap .hs_submit input.hs-button{
    font-size:14px;
  }

  .om-footer-wrapper .cst-disclaimer-text .cst-disclaimer-links ul{
    gap:10px;
  }
}
/* 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;
  }
}