/* 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: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

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

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

.dnd-section > .row-fluid {
  margin: 0 auto;
}
.banner-section .dnd-section>.row-fluid {
  padding: 0;
}
@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.)
*/

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

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

/* Paragraphs */

p {
  margin: 0 0 16px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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%;
  vertical-align:middle;
  word-break: normal;
}

ul,ol {
    padding-left: 24px;
    margin-bottom: 32px;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

/* Fields */

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

}
.input {
  padding-top: 8px;
}
/* Labels */

form label {
  /* Desktop/Body/Small */
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: -0.001px;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  height: 56px;
  background-color: var(--onyx-3, rgba(58, 60, 74, 0.03));
  border: 2px solid var(--onyx-3, rgba(58, 60, 74, 0.03));
  outline: none;
}
form input[type=email] {
  background-image: url(https://27242826.fs1.hubspotusercontent-eu1.net/hubfs/27242826/raw_assets/public/Axxemble_July2023%20Theme/images/module-icons/at.png);
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}
form input[type=tel] {
  background-image: url(https://27242826.fs1.hubspotusercontent-eu1.net/hubfs/27242826/raw_assets/public/Axxemble_July2023%20Theme/images/module-icons/phone.png);
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}
form input[type=checkbox] {
  width: 30px !important;
  height: 30px;
  flex-shrink: 0;
}

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  filter: drop-shadow(0px 0.6641415357589722px 1.5496636629104614px rgba(42, 44, 56, 0.03)) drop-shadow(0px 1.596024513244629px 3.724057197570801px rgba(42, 44, 56, 0.05)) drop-shadow(0px 3.0051724910736084px 7.012069225311279px rgba(42, 44, 56, 0.06)) drop-shadow(0px 5.360713958740234px 12.508333206176758px rgba(42, 44, 56, 0.07)) drop-shadow(0px 10.026626586914062px 23.395462036132812px rgba(42, 44, 56, 0.09)) drop-shadow(0px 24px 56px rgba(42, 44, 56, 0.12));
}
.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
  background-image: url(https://27242826.fs1.hubspotusercontent-eu1.net/hubfs/27242826/raw_assets/public/Axxemble_July2023%20Theme/images/module-icons/triangle-exclamation.png);
  background-repeat: no-repeat;
  background-position: left 1px center;
  padding-left: 25px;

}
form .legal-consent-container .hs-error-msgs label{
  color: #EF6B51;
}
form input[type=text]:hover,
form input[type=text]:focus,
form input[type=text]:active,
form input[type=search]:hover,
form input[type=search]:focus,
form input[type=email]:hover,
form input[type=email]:focus,
form input[type=password]:hover,
form input[type=password]:focus,
form input[type=tel]:hover,
form input[type=tel]:focus,
form input[type=number]:hover,
form input[type=number]:focus,
form select:focus,
/* form select:hover, */
form textarea:hover {

  border: 2px solid #4C7BF4;
  outline: none;
}
.hs_phone.hs-phone.hs-fieldtype-phonenumber.field.hs-form-field 
{
  position: relative

} 

.hs_error_rollup {
  display: none;
}

/* .Security-card .hs-field-desc {
position: absolute;
left: auto;
display: inline !important;
width: auto !important;
right: 165px;
top: 2px;
color: var(--onyx-67, rgba(42, 44, 56, 0.67));
} */

.hs-form-field {
  display: flex;
  flex-wrap: wrap;
}

.input {
  width: 100%;
}

.hs-field-desc {
  width: auto !important;
  display: inline-block !important;
}

/* Css For Contact Form Ends*/
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.hs-form-booleancheckbox label:before, form .inputs-list li.hs-form-booleancheckbox label:after {
  content: '';
  display: block;
  clear: both;
}

form .inputs-list {
  margin-bottom: 2.15rem;
}

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

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

.legal-consent-container .hs-form-booleancheckbox-display input {
  filter: drop-shadow(0px 0.6641415357589722px 1.5496636629104614px rgba(42, 44, 56, 0.03)) drop-shadow(0px 1.596024513244629px 3.724057197570801px rgba(42, 44, 56, 0.05)) drop-shadow(0px 3.0051724910736084px 7.012069225311279px rgba(42, 44, 56, 0.06)) drop-shadow(0px 5.360713958740234px 12.508333206176758px rgba(42, 44, 56, 0.07)) drop-shadow(0px 10.026626586914062px 23.395462036132812px rgba(42, 44, 56, 0.09)) drop-shadow(0px 24px 56px rgba(42, 44, 56, 0.12));
  border: none !important;
  outline: none !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;
}



/* Submit button */




/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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


form select {
  width: 100% !important;
  -webkit-appearance: none; 
  background-image: url(https://27242826.fs1.hubspotusercontent-eu1.net/hubfs/27242826/raw_assets/public/Axxemble_July2023%20Theme/images/caret-down.png);
  background-repeat: no-repeat;
  background-position: right 21px center;
}

form .hs-input {
  width: 100% !important;
}

.hs-form-field {
  margin-bottom: 32px;
}

.hs-field-desc {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.001px;
  color: rgba(42, 44, 56, 0.67);
}

form .hs-richtext p {
  color: var(--primary-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 18px */
  letter-spacing: -0.001px;
  margin-bottom: 16px !important;
}

form .hs-richtext {
  margin: 0;
}

form .input {
  padding-top: 0;
}

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

form input[type=checkbox], form input[type=radio] {
  margin-right: 16px;
}

.legal-consent-container {
  max-width: 592px;
  width: 100%;
}

form .hs-button, form input[type=submit] {
  display: inline-block;
  line-height: 20px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

form .hs-button, form input[type=submit] {
  margin-top: 16px;
}
form .hs-form-booleancheckbox-display:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  background-color: #fff;
  left: 0;
  z-index:1;
  border-radius: 8px;
  filter: drop-shadow(0 0.6641415357589722px 1.5496636629104614px rgba(42,44,56,.03)) drop-shadow(0 1.596024513244629px 3.724057197570801px rgba(42,44,56,.05)) drop-shadow(0 3.0051724910736084px 7.012069225311279px rgba(42,44,56,.06)) drop-shadow(0 5.360713958740234px 12.508333206176758px rgba(42,44,56,.07)) drop-shadow(0 10.026626586914062px 23.395462036132812px rgba(42,44,56,.09)) drop-shadow(0 24px 56px rgba(42,44,56,.12));
  pointer-events: none;
}

form .hs-form-booleancheckbox-display {
  position: relative;
}

form .hs-form-booleancheckbox-display input[type=checkbox] {
  opacity: 0;  
  position: relative;
  z-index: 5;
}

form .hs-form-booleancheckbox-display input[type=checkbox]:checked {
  opacity: 1;
}
form .hs-form-field > label {
  padding-bottom: 8px;
}
form .hs-button, form input[type=submit] {
  border-radius: 12px;
}
.legal-consent-container .hs-form-booleancheckbox-display>span, .legal-consent-container .hs-form-booleancheckbox-display>span p {
  margin-left: 0 !important;
}
form .form-columns-2 .inputs-list .hs-error-msg {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% - 32px);
  display: block;
}

.form-columns-2 {
  position: relative;
}

form .input-focused input[type=email],
form .input-focused input[type=tel],
form .not-empty input[type=email],
form .not-empty input[type=tel]{
  background-image: none;
}

form .hs-form-booleancheckbox-display>span:after {
  position: absolute;
  display: block;
  content: "";
  left: -30px;
  top: 30%;
  width: 10px;
  height: 16px;
  border: solid #ff7b00;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 10;
}

form .hs-form-booleancheckbox-display input[type=checkbox]:checked {
  opacity: 0;
}

form .hs-form-booleancheckbox-display input[type=checkbox] {
  opacity: 0;
}

form .hs-form-booleancheckbox-display input[type=checkbox]:checked~span:after {
  opacity: 1;
  transition: all 0.2s ease;
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
  position: relative;
}

@media(max-width:540px){
  .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    overflow: 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 ===================*/
a.header__skip {
  position: absolute;
  left: 0;
  padding: 10px 15px;
  border: 1px solid #ff7b00;
  margin: 10px;
  z-index: 500000;
}

.header-container-wrap {
  padding: 9px 0;
}
header.header.header-wrapper {
  min-height: 70px;
}

.header-container-wrap {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  -webkit-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -moz-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -o-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  -ms-transition: all .33s cubic-bezier(.694,.0482,.335,1);
  transition: all .33s cubic-bezier(.694,.0482,.335,1);
  z-index: 500;
}
.header-wrapper.scroll-header .header-container-wrap {
  top: -120px;
  position: fixed;
}
header.header.header-wrapper.fixed-nav .header-container-wrap {
  top: 0;
}
.header-wrapper .content-wrapper:not(.container-fluid) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .header__logo {
  max-width: 100%;
  width: auto;
}
.header-wrapper .header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.header-wrapper .custom-menu-primary .hs-menu-children-wrapper {
  display: none;
}
.custom-menu-primary .hs-menu-wrapper > ul > li {
  margin-right: 16px;
}
.custom-menu-primary .hs-menu-wrapper ul > li.hs-item-has-children {
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  /*   color:#fff; */
  font-family:var(--primary_font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: inline-block;
  border-radius: 6px;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  padding: 8px 12px;
}
.header-lang {
  display: flex;
  height: 36px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  max-width: 164px;
  width: 100%;
  border:2px solid rgba(255,255,255,.15);
  border-radius: 6px;
  margin-left: 16px;
  color:#fff;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
  font-family: var(--primary_font);
}
.header-lang.desktop svg {
  width: 12px !important;
  transition: all .3s ease-in-out;
}

.header-lang:hover svg {
  rotate: 180deg;
}
.header-wrapper .header__column {
  width: 75%;
  padding-left: 15px;
}
.header-wrapper .header__logo {
  width: 25%;
}
.header-wrapper .content-wrapper:not(.container-fluid) {
  position: relative;
}
.header-wrapper .content-wrapper:not(.container-fluid):after {
  content: "";
  display: block;
  width: auto;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: -9px;
  background: rgba(58, 60, 74, 0.15);
  left: 0;
  right: 0;
  margin: 0 24px;
}
.custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children {
  display: flex;
  align-items: center;
}
.custom-menu-primary .child-trigger {
  margin-left: 8px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}


.header-btn a.button {
  box-shadow: 0 0 15px -10px #000;
}
@media(min-width:768px){

  .header--toggle.header__navigation--toggle, .header__close--toggle {
    display: none;
  }
  /*=   Menu     =*/
  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    display: flex;
  }
  .custom-menu-primary .hs-menu-wrapper > ul>li.hs-item-has-children > ul.hs-menu-children-wrapper {
    position: absolute;
    top: 100%;
    left:0;
    flex-direction: row;
    background: #fff;
    min-width: 400px;
    width: 100%;
    box-shadow: 0px 3px 15px -8px #2a2c38;
    z-index: 5;
    /*   transform: translate(-50%,0); */
    border-radius: 10px;
    margin-top:12px;
  }
  .header-wrapper .custom-menu-primary .hs-menu-children-wrapper .hs-menu-children-wrapper {
    display: flex;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li > ul > li {
    width: 50%;
  }
  .custom-menu-primary .hs-menu-wrapper ul ul>li.hs-item-has-children {
    flex-direction: column;
  }
  .header-wrapper .custom-menu-primary .hs-menu-children-wrapper ul ul {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    display: none !important;
  }
  .custom-menu-primary .hs-menu-wrapper ul ul ul>li.hs-item-has-children {
    width: 100%;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper {
    padding: 32px 18px 36px 18px;
  }
  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li > a {
    /*     color:  #2A2C38; */
    font-family:var(--primary_font);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    width: 100%;
    display: inline-block;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 58px;
    border-right: 0 solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 21px solid #fff;
    border-top: 0 solid transparent;
    transform: rotate(45deg);
  }
  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children> ul ul>li > a {
    /*     color: #2a2c38; */
    font-family:var(--primary_font);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 8px 16px;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>a {
    padding-left: 16px;
    padding-bottom: 33px;
  }
  .header-wrapper .custom-menu-primary .hs-menu-children-wrapper .hs-menu-children-wrapper:after {
    background: rgba(58, 60, 74, 0.15);
    content: "";
    width: 1px;
    height: 145px;
    display: block;
    position: absolute;
    right: 0;
    margin: 5px 0;
  }
  .header-wrapper .custom-menu-primary .hs-menu-children-wrapper .hs-menu-children-wrapper {
    position: relative;
  }


  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children:hover>.child-trigger {
    transform: rotate(180deg);
  }

  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children> ul ul>li > a:hover {
    /*     background-color: rgba(255, 123, 0, 0.15);
    color: #FF7B00; */
  }
  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children> ul ul>li {
    padding-right: 5px;
    position: static;
  }
  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children> ul ul>li:hover > .hs-menu-children-wrapper {
    display: flex !important;
  }
  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children> ul ul>li > .hs-menu-children-wrapper {
    position: absolute;
    right: auto;
    left: 100%;
    padding-left:15px;
    width: 100%;
    flex-direction: column;
    top: 0;
    height: 100%;
  }
  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children> ul ul>li > .hs-menu-children-wrapper:after {
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper ul>li.hs-item-has-children> ul ul>li > .hs-menu-children-wrapper > li {
    padding: 0;
    width: auto;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li:last-child>a {
    padding-left: 32px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper:after {
    content: "";
    display: block;
    width: 100%;
    height: 25px;
    position: absolute;
    top: -21px;
    left: 0;
  }
  .mobile {
    display: none;
  }
}
@media(max-width:1160px){
  .header-wrapper .header__logo {
    width: 10%;
  }
  .header-wrapper .header__column {
    width: 90%;
  }

}
@media(max-width:991px){
  .custom-menu-primary .hs-menu-wrapper>ul>li:not(:last-child) {
    margin-right: 0;
  }

  .custom-menu-primary .hs-menu-wrapper>ul {
    justify-content: center;
  }

  .header-lang {
    max-width: 100%;
    width: auto;
    margin-left: 8px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>a {
    font-size: 12px;
    padding:6px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:last-child {
    margin-right: 10px;
  }
  .header-lang {
    padding: 8px;
  }

  .custom-menu-primary .child-trigger {
    margin-left: 0;
    margin-right: 5px;
  }
}
@media(max-width:767px){
  :is(a.header__skip,.mobile-menu-wrapper.mobile,.desktop,.header__close--toggle){
    display:none;
  }
  :is(.header--toggle,.header__close--toggle) {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 25px -10px #2a2c38;
    cursor: pointer;
  }
  :is(.header-wrapper .header__logo,.header-wrapper .header__column) {
    width: auto;
  }
  .mobile-menu-wrapper.mobile {
    background-color: #fff;
    box-shadow: 0 13px 25px -29px #2a2c38;
    display:none;
    left: 0;
    padding: 34px 24px;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 500;
    flex-direction: column;
    max-height: 80vh;
    overflow-y: auto;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(58, 60, 74, 0.15);
    display: block !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li > a {

    font-family:var(--primary_font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    float: left;
  }
  .custom-menu-primary .hs-menu-wrapper ul>li > a{
    color:var(--primary-color);
  }
  .custom-menu-primary .hs-menu-wrapper ul>li:hover > a{
    color:var(--secondary-color);
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li:last-child {
    margin-right: 0;
  }
  .header-wrapper .custom-menu-primary .hs-menu-children-wrapper {
    width: 100%;
    flex-direction: row;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul>li {
    width: 100%;
    padding-left: 12px;
    float: left;
  }
  .custom-menu-primary .child-trigger {
    float: left;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul>li:not(:last-child) {
    padding-bottom: 24px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul>li:first-child {
    padding-top: 24px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul>li > a {
    color: #3A3C4A;
    font-family:var(--primary_font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  .mobile-menu-wrapper.mobile .custom-menu-primary {
    order: 1;
  }

  .mobile-menu-wrapper.mobile .to-home-page {
    order: 3;
    text-align: center;
  }

  .mobile-menu-wrapper.mobile .header-btn {
    order: 2;
    margin: 32px 0;
  }

  .mobile-menu-wrapper.mobile .header-btn a.button {
    width: 100%;
    box-shadow: 0 0 25px -10px #2a2c38;
  }
  .mobile-menu-wrapper.mobile .to-home-page > a {
    display: inline-block;
    margin-left: 12px;
  }

  .mobile-menu-wrapper.mobile .to-home-page > a > svg {
    display: inline-block;
    margin-left: 8px;
  }
  .mobile-open .header--toggle {
    display: none;
  }
  .mobile-open .header__close--toggle {
    display: flex;
  }

  .header__close--toggle {
    background-color: #FF7B00;
  }
  .open-child .child-trigger {
    transform: rotate(180deg);
  }

  .custom-menu-primary .child-trigger {
    transition: all 0.3s ease-in-out;
    margin-left: 10px;
  }
  .custom-menu-primary .hs-menu-wrapper ul>li>a {
    padding: 0;
  }

  .custom-menu-primary .hs-menu-wrapper>ul ul>li {
    display: block !important;
  }

}

/*========== lang ============*/
.header-lang {
  position: relative;
  cursor: pointer;
}

.header-lang .flagBox {
  border-radius: 10px;
  box-shadow: 0 3px 15px -8px #2a2c38;
  right: 0px;
  margin-top: 12px;
  min-width: 223px;
  width: 100%;
  z-index: 5;
  position: absolute;
  top: 100%;
  background-color: #fff;
  padding: 20px;
  text-align: left;
  display: none;
}

.header-lang .flagBox ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-lang .flagBox ul li > a {
  padding: 8px 16px;
  display: inline-block;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary-color);   
  border-radius: 6px;
  transition: all .3s ease-in-out;
  width: 100%;
}

.header-lang .flagBox:before {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 0 0 21px 21px;
  content: "";
  display: block;
  left: auto;
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  right: 20px;
  box-shadow: 0 3px 15px -8px #2a2c38;
}

.header-lang .flagBox:after {
  content: "";
  display: block;
  height: 25px;
  left: auto;
  position: absolute;
  top: -21px;
  width:100%;
  right: 0;
}

.header-lang:hover .flagBox {
  display: block;
}
.mobile-menu-wrapper.mobile .to-home-page>a {
  color: #3A3C4A;
}
/*========== Search ============*/
.search-icon, .exit-icon {
  color: #ffffff;
}
.exit-icon {
  display: none;
}
.exit-icon, .search-icon {
  cursor: pointer;
}
.search-section {
  opacity: 0;
  position: fixed;
  transition: all .5s ease-in-out;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
}

.search-box {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.open {
  opacity: 1;
  z-index: 99999;
  transition: 0.5s all ease-in-out;
}
.frizebody{overflow:hidden}
body.frizebody svg.feather.feather-search.search-icon {
  display: none;
}
body.frizebody svg.feather.feather-x-circle.exit-icon {
  display: block;
}

body.frizebody label#search {
  position: relative;
  z-index: 99999999999999999999999999999;
}
.search-input {
  width: 750px;
  border: 2px solid #ffffff;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.search-input .search-query {
  position: relative;
  background: transparent;
  width: 100%;
  height: 53px;
  padding: 10px;
  color: white;
  z-index: 2;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}
.search-input form {
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.search-input form {
  width: 100%;
  background: transparent;
}

.search-input form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.search-input .search-query {
  outline: none;
}
.search-input .search-query:hover {
  outline: none;
  border: 0;
}
.search-input form {
  width: 100%;
  background: transparent;
}

input:-internal-autofill-selected {
  background-color: transparent !important;
}
.search-input .search-query {
  border-radius: 0px;
}
.search-input .search-query {
  outline: none;
}
.search-input .search-query:hover {
  outline: none;
  border: 0;
}
.search-input form input[type=text]:active{
  border: 0px solid #4c7bf4;
  outline: none;
  background: transparent;
}
.header-search.desktop {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.search-section label#search {
  display: flex;
}
.exit-icon {
  position: absolute;
  top: 25px;
  right: 60px;
} 
svg.feather.feather-search.search-icon:hover, .exit-icon:hover, header.header.header-wrapper.scroll-header.fixed-nav svg.feather.feather-search.search-icon:hover, .no-banner .header-container-wrap svg.feather.feather-search.search-icon:hover {
  color: rgba(191,96,7,1.0);
}
header.header.header-wrapper.scroll-header.fixed-nav svg.feather.feather-search.search-icon, .no-banner .header-container-wrap svg.feather.feather-search.search-icon {
  color: #000;
}
svg.feather.feather-x-circle.exit-icon {
    width: 40px !important;
    height: 40px !important;
}
.search-input form {
    margin: 0px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-search.desktop {
    padding-left: 4px;
  }
  svg.feather.feather-search.search-icon {
    width: 17px;
  }
  .header-wrapper .header__column {
    width: 85%;
  }
  .header-wrapper .header__logo {
    width: 15%;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li {
    margin-right: 6px;
  }

}
/* ipad Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  .header-search.desktop {
    padding-left: 4px;
  }
  svg.feather.feather-search.search-icon {
    width: 17px;
  }

}
/*=============== Footer ===================*/


.hs-footer_bottom  .dnd-section>.row-fluid {
  align-items: center;
  flex-wrap: wrap;
}

.hs-footer_bottom .dnd-section>.row-fluid:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 27px;
  opacity: 0.25;
  background: #3A3C4A;
}

.hs-footer_bottom .hs-menu-wrapper > ul > li {
  padding: 0 16px;
}

.hs-footer_bottom .dnd-section>.row-fluid > div:first-child {
  padding-left: 0;
}

.hs-footer_bottom .dnd-section>.row-fluid > div:last-child {
  padding-right: 0;
}

.hs-footer_bottom .hs-menu-wrapper > ul {
  margin: 0 -16px;
}

.hs-footer_bottom .hs-menu-wrapper ul > li > a {
  color: #3A3C4A;
  font-family:var(--primary_font);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  /* 30px */
}

.hs-footer-top .dnd-section .dnd-column {
  padding: 0;
}

.hs-footer-top .span2 {
  width: 20%;
}

.hs-footer-top .dnd-section .dnd-column.span6 {
  width: 66%;
  padding: 0 15px;
}

.hs-footer-top .span4 {
  width: 24%;
}

.hs-footer-top .widget-type-rich_text p {
  /*   color: rgba(42, 44, 56,68%); */
  font-family:var(--primary_font);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 19.5px */
  margin-bottom: 10px;
}

.hs-footer-top .span6 .hs-menu-wrapper > ul > li {
  width: 50%;
}

.hs-footer-top .span2 .hs-menu-wrapper > ul {
  display: block;
}

.hs-footer-top .hs-menu-wrapper ul > li > ul {
  display: block;
}

.hs-footer-top .hs-menu-wrapper ul > li > a {
  color: #3A3C4A;
  font-family:var(--primary_font);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  /* 30px */
}

.hs-footer-top .span6 .hs-menu-wrapper > ul > li > a {
  color: #3A3C4A;
  font-family:var(--primary_font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding-bottom: 24px;
  display: inline-block;
  pointer-events: all;
}

.hs-footer-top .hs-menu-wrapper ul > li {
  padding-bottom:10px;
}

.hs-footer-top .span6 .hs-menu-wrapper > ul > li {
  padding: 0;
}

.hs-footer-top .hs-menu-wrapper ul > li:last-child {
  padding-bottom:0px;
}

.hs-footer-top .span2 > .dnd-row:first-child {
  padding-bottom: 24px;
}

.hs-footer-top .span2 > .dnd-row:last-child {
  padding-top: 10px;
}
.hs-footer_bottom .dnd-section .dnd-column {
  width: auto !important;
}
.hs-footer-top .button-wrapper a {
  box-shadow: 0px 0px 25px -10px #2a2c38;
}
@media(max-width:991px){
  .hs-footer-top .span4 {
    width: 100%;
  }

  .hs-footer-top .dnd-section > .row-fluid {
    flex-wrap: wrap;
  }

  .hs-footer-top .span2 {
    width: 30%;
  }

  .hs-footer-top .dnd-section .dnd-column.span4 {
    padding-top: 25px;
  }
}
@media(max-width:850px){
  .hs-footer_bottom .hs-menu-wrapper>ul>li {
    padding: 0 16px;
  }

  .hs-footer_bottom .dnd-section .dnd-column {
    width: 100% !important;
  }

  .hs-footer_bottom .hs-menu-wrapper>ul {
    justify-content: center;
  }
  .hs-footer_bottom .widget-type-linked_image {
    text-align: center;
    padding-top: 32px;
  }
}
@media(max-width:767px){


  .hs-footer_bottom .hs-menu-wrapper>ul {
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  .hs-footer_bottom .dnd-section>.row-fluid:before {
    margin-bottom: 32px;
  }

  .hs-footer-top .widget-type-rich_text p {
    margin-bottom: 8px;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 18px */
  }

  .hs-footer_bottom .hs-menu-wrapper ul>li>a {
    font-size: 13px;
  }

  .hs-footer-top .span2 {
    width: 100%;
  }

  .hs-footer-top .dnd-section .dnd-column.span6 {
    width: 100%;
    padding-top: 48px;
    padding-right: 0;
    padding-left: 0;
  }

  .hs-footer-top .dnd-section .dnd-column.span4 {
    padding-top: 32px;
  }

  .hs-footer-top .hs-menu-wrapper ul>li>a {
    font-size: 13px;
  }

  .hs-footer-top .span2>.dnd-row:last-child {
    padding-top: 16px;
  }

  .hs-footer-top .span6 .hs-menu-wrapper>ul>li:not(:last-child) {
    padding-right: 15px;
  }
  .hs-footer-top .span2 .hs-menu-wrapper>ul > li:not(:last-child) {
    padding-bottom: 16px;
  }

}

@media(max-width:360px){
  .hs-footer-top .span6 .hs-menu-wrapper>ul>li {
    width: 100%;
  }

  .hs-footer-top .span6 .hs-menu-wrapper>ul>li:not(:last-child) {
    padding-right: 0;
    padding-bottom: 25px;
  }
}
/* 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%;
}
.dnd-section[class*="force-full-width"] > .row-fluid {
    padding: 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;
  }
}
.banner-section .dnd-section[class*=force-full-width]{
  padding:0 !important;
}

.overview-banner .simple-banner-wrapper .heading-wrap h1 br {
  display: block;
}

/*================ overview detail ===================*/
.hs-overview-detail .widget-type-rich_text p,
.hs-overview-detail .widget-type-rich_text ul,
.hs-overview-detail .widget-type-rich_text ol {
    letter-spacing: -0.001px;
}
.hs-overview-detail .imgSection img.logo_img {
  box-shadow: -2px -7px 13px -1px #ccc;
}

.hs-overview-detail .widget-type-header h3 {
  font-weight: 600;
}

.hs-overview-detail .blogOneImg_imgHolder {
    margin-right: 0;
    margin-left: 0;
}
.hs-overview-detail .button-wrapper a.button {
    line-height: 20px;
}
.hs-overview-detail .widget-type-rich_text p:last-child {
    margin: 0;
}

/*================ Landing Page ===================*/
.button-wrapper a.button {
    line-height: 20px;
}
.banner-section.lp-banner .sub-heaidng {
    max-width: 100%;
    padding-bottom: 0;
}
.banner-section.lp-banner .banner-area-wrapper .heading {
    padding-bottom: 0;
}
.banner-section.lp-banner .banner-area-wrapper .heading h1 {
    line-height: 1.25em;
}
.banner-section.lp-banner .banner-area-wrapper {
    padding:10% 0 5%;
}

.hs-overview-detail .hs_cos_wrapper_type_rich_text li {
  margin-bottom: 1em;
}

@media(max-width:991px){
  .banner-section.lp-banner .banner-area-wrapper {
    padding:18% 0 10%;
  }
}
@media(max-width:600px){
  .banner-section.lp-banner .banner-area-wrapper {
    padding:25% 0 5%;
  }
}