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

h4{
  margin: 0 0 18px;
}

/* 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;
  padding-top: 60px;
  padding-bottom: 30px;
}

blockquote:after {
    content: "“";
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 58px;
    color: var(--tertiary_color);
    font-weight: bold;
    line-height: 1;
}


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

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


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

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

.form-title:empty{
  display: none;
}

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

form label {
  margin-bottom: 0;
}

@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;
  z-index: 100;
}
.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 10px;
  overflow: visible;
  top: 10px;
  width: auto;
  outline: none;
}
/* ///////////////////////////// */

.header-wrapper {
  position: relative;
  width: 100%;
  z-index: 99;
  min-height: 65px;
}

.header-wrapper .header-wrap{
  position: fixed;
  width: 100%;
  background: #000;
  box-shadow: 0 1px 5.5px 0 rgba(0, 0, 0, 0.40);
  padding: 0px 60px;
}

.header-wrapper .content-wrapper {
  max-width: 100%;
  padding: 0;
}


.header-wrapper .desktop .mega_menu_wrapper ul {
  padding: 00;
  margin: 0;
  list-style: none;
}

.header-wrapper .desktop .mega_menu_wrapper>ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  transition: all .3s ease;
}



.header-wrapper .desktop .mega_menu_wrapper>ul>li {
  font-size: 14px;
  line-height: normal;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li>a {
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px 8px;
  position:relative;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li>a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  content: '';
  opacity: 0;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
  background: linear-gradient(270deg, var(--tertiary_color) 0%, #FFF 100%);
}


.header-wrapper .desktop .mega_menu_wrapper>ul>li:hover>a:after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}


.header-wrapper .header_inner.desktop {
  display: flex;
  align-items: center;
}

.header-wrapper .header_inner.desktop .mega_menu_wrapper {
  max-width: calc(60%);
  padding-left: 32px;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap {
  margin-left: auto;
  padding-right: 20px;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul {
  position: absolute;
  top: calc(100% + 13px);
  left: auto;
  right: auto;
  width: auto;
  transform: translateY(10px);
  transition: 0.3s all  ease-in-out;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  border-radius: 10px;
  padding: 10px 0;
  max-width: 1200px;
  filter: drop-shadow(0 0 3.4px rgba(0, 0, 0, 0.15));
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li:hover>ul {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}


.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.two_col .sub_menu_inner>li {
  width: calc(50%);
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.two_col .sub_menu_inner {
  display: flex;
  flex-wrap: wrap;
  row-gap:0px;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul li .sub_title {
  display: block;
  color: #000;
  font-weight: 500;
  padding-top: 5px;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul li>a {
  font-weight: 700;
  line-height: normal;
  font-size: 12px;
  display: inline-block;
  padding: 10px 20px;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.single_col .sub_menu_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction:column;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.featured_post {
  padding: 0;
  filter: none;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.featured_post .main_outer_wrapper {
  display: flex;
  flex-wrap: wrap;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.featured_post .main_outer_wrapper .sub_menu_wrap {
  width: 50%;
  box-shadow: 0 0 3.4px rgba(0, 0, 0, 0.15);
  border-radius: 10px 0 0 10px;
  padding: 10px 0;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.featured_post .main_outer_wrapper .feature_section {
  width: 50%;
  padding: 20px;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 0px 10px 10px 0px;
}

.header-wrapper .desktop .mega_menu_wrapper .feature_content .tag_wrap a.blog-post__tag-link {
  padding: 4px 11px;
  display: inline-block;
  border-radius: 50px;
  border: 0.5px solid #000;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-size:12px;
}
.header-wrapper .desktop .mega_menu_wrapper .feature_content .read_more a svg {
  fill: currentColor;
}

.header-wrapper .desktop .mega_menu_wrapper .feature_content .blog_item_img img {
  max-width: 138px;
  border-radius: 5px;
  margin-bottom: 14px;
  display: block;
  width: 100%;
}

.header-wrapper .desktop .mega_menu_wrapper .feature_content .post_title a {
  font-size: 10px;
  line-height: normal;
}

.header-wrapper .desktop .mega_menu_wrapper .feature_content .post_title {
  margin: 0;
  line-height: normal;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 14px;
}

.header-wrapper .desktop .mega_menu_wrapper .feature_content .read_more a {
  font-size: 10px; 
  line-height: normal;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  vertical-align: bottom;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.menu_with_logos {
  padding: 0;
  filter: none;
  margin-right: 10px;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.menu_with_logos .main_outer_wrapper {
  display: flex;
  flex-wrap: wrap;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.menu_with_logos .main_outer_wrapper .logo_menu {
  width: 75%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 3.4px rgba(0, 0, 0, 0.15);
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.menu_with_logos .main_outer_wrapper .sub_menu_wrap {
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 0px 10px 10px 0px;
  width: 25%;
  padding: 10px 0;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.menu_with_logos .main_outer_wrapper .title_logo h6 {
  font-size: 12px; 
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.menu_with_logos .main_outer_wrapper .logo_item {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.menu_with_logos .main_outer_wrapper .logo_item .img_wrap {
  width: 25%;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul.menu_with_logos .main_outer_wrapper .logo_bottom_content p {
  font-size: 10px; 
  font-weight: 400;
  line-height: normal;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li>ul:before{
  content: "";
  position: absolute;
  top: -30px;
  height: 30px;
  width: 100%;
}

.header-wrapper .header_inner.desktop .button_group .btn_sec {
  display: flex;
  gap: 20px;
  padding: 13px 0;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .lang_switcher--mobile {
  display: none;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .lang_switcher--mobile {
  display: none;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .lang-current {
  background-image: url(https://6547620.fs1.hubspotusercontent-na1.net/hubfs/6547620/MikMak_2026/Images/internet%201.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 18px 18px;
  padding-left: 30px;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .lang-current svg.arrow-icon {
  fill: currentColor;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap ul.lang-list {
  position: absolute;
  right: 0;
  padding: 0;
  top: calc(100% + 13px);
  filter: drop-shadow(0 0 3.4px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  border-radius: 10px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s all  ease-in-out;
  max-width: 180px;
  width: max-content;
  left: 0;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .custom-lang-dropdown:hover ul.lang-list {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
  pointer-events: auto;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .custom-lang-dropdown:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 25px;
  bottom: -20px;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .custom-lang-dropdown {
  position: relative;
  padding: 24px 0;
  cursor: pointer;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap ul.lang-list li {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap ul.lang-list li a {
  line-height: normal;
  display: block;
  padding: 10px 20px;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .lang-current svg,.header-wrapper .header_inner.desktop .lang_switcher_wrap .lang-current svg * {
  stroke: currentColor;
}

.header-wrapper .header_inner.desktop .lang_switcher_wrap .lang-current svg {
  margin-left: 5px;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul li>a,
.header-wrapper .header_inner.desktop .lang_switcher_wrap ul.lang-list li a{
  display: block;
  position: relative;
  text-decoration: none;
  height: 100%;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li ul li {
  align-self: stretch;
}

.hamburger .hamburger_icon{
  width: 40px;
  height: 40px;
  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;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hamburger .hamburger_icon>span{
  display: block;
  position: absolute;
  height: 3px;
  width: 35%;
  background: #fff;
  opacity: 1;
  -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;
}

.hamburger .hamburger_icon>span:nth-child(odd){
  left: 0px;
  border-radius: 9px 0 0 9px;
}

.hamburger .hamburger_icon>span:nth-child(even){
  left: 12px;
  border-radius: 0 9px 9px 0;
}

.hamburger .hamburger_icon>span:nth-child(1),
.hamburger .hamburger_icon>span:nth-child(2){
  top: 10px;
}

.hamburger .hamburger_icon>span:nth-child(3),
.hamburger .hamburger_icon>span:nth-child(4){
  top: 18px;
}

.hamburger .hamburger_icon>span:nth-child(5),
.hamburger .hamburger_icon>span:nth-child(6){
  top: 26px;
}

.menu_open .hamburger .hamburger_icon>span:nth-child(1),
.menu_open .hamburger .hamburger_icon>span:nth-child(6){
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu_open .hamburger .hamburger_icon>span:nth-child(2),
.menu_open .hamburger .hamburger_icon>span:nth-child(5){
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu_open .hamburger .hamburger_icon>span:nth-child(1){
  left: 4px;
  top: 12px;
}

.menu_open .hamburger .hamburger_icon>span:nth-child(2){
  left: calc(50% - 5px);
  top: 12px;
}

.menu_open .hamburger .hamburger_icon>span:nth-child(3){
  left: -50%;
  opacity: 0;
}

.menu_open .hamburger .hamburger_icon>span:nth-child(4){
  left: 100%;
  opacity: 0;
}

.menu_open .hamburger .hamburger_icon>span:nth-child(5){
  left: 5px;
  top: 22px;
}

.menu_open .hamburger .hamburger_icon>span:nth-child(6){
  left: calc(50% - 5px);
  top: 22px;
}

.header-wrapper .hamburger {
  display: none;
}

.header-wrapper .header-wrap .mobile_header_wrap {
  display: none;
}
.menu_open {
  overflow: hidden;
}

.header-wrapper .desktop .mega_menu_wrapper>ul>li>a .submenu_child_icon path {
  stroke: currentColor;
}


.header-wrapper.lp_header header.header-wrap {
  padding: 15.5px 60px;
}

@media(max-width:1250px){
  .header-wrapper .header-wrap{
    padding-right: 20px;
    padding-left: 20px;
  }

}

@media(max-width:1150px){
  .header-wrapper .header_inner.desktop .button_group .btn_sec {
    gap: 10px;
    padding: 12px 0;
  }

  .header-wrapper .header_inner.desktop .mega_menu_wrapper {
    padding-left: 20px;
  }

  .header-wrapper .desktop .mega_menu_wrapper>ul>li>a {
    font-size: 12px;
  }

  .header-wrapper .header_inner.desktop .lang_switcher_wrap .lang-current {
    font-size: 12px;
    padding-left: 20px;
  }

  .header-wrapper .header_inner.desktop .lang_switcher_wrap .lang-current svg {
    width: 10px;
    height: 10px;
    vertical-align: middle;
  }
}

@media(max-width:1024px){

  .header-wrapper.lp_header header.header-wrap {
    padding: 27px 20px;
  }
  .header-wrapper .hamburger {
    display: block;
    margin-left: auto;
  }

  .header-wrapper .header_inner.desktop .mega_menu_wrapper {
    display: none;
  }

  .header-wrapper .header_inner.desktop .lang_switcher_wrap {
    display: none;
  }

  .header-wrapper .header_inner.desktop .button_group {
    display: none;
  }

  .header-wrapper .header-wrap{
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-wrapper {
    min-height: 65px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap {
    display: flex;
    position: absolute;
    top: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: calc(100dvh - var(--header-height));
    height: 100%;
    padding: 20px 0;
    right: 100%;
    transition: 0.3s all 
      ease-in-out;
    flex-direction: column;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100% !important;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul li>a {
    display: block;
    padding: 10px 20px;

    transition: 0.3s all ease-in-out;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul li {
    position: relative;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul li> .submenu_child_mob {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul {
    padding: 0 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul li>a {
    font-size: 15px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul li>a .sub_title {
    color: var(--tertiary_color);
    display: block;
    font-size: 14px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap.is_open {
    right: 0;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .submenu_child_mob {
    transition: transform 0.3s ease;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .submenu_child_mob.menu_open {
    transform: rotate(180deg);
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul li> .submenu_child_mob svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul li>a:hover {
    color: var(--tertiary_color);
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul li> .submenu_child_mob svg * {
    stroke: inherit;
  }
  .header-wrapper .header-wrap .mobile_header_wrap .mega_menu_wrapper>ul li>a:not(:last-child) {
    border-bottom: 1px solid var(--tertiary_color);
  }

  .header-wrapper .header-wrap .mobile_header_wrap .mega_menu_wrapper>ul>li>a {
    padding-right: 60px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .sub_menu_inner {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .mega_menu_wrapper>ul>li:hover>a {
    background-color: var(--tertiary_color);
  }

  .header-wrapper .header-wrap .mobile_header_wrap .mega_menu_wrapper>ul>li:hover .submenu_child_mob svg {
    stroke: #fff;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap .lang-current {
    background-image: url(https://6547620.fs1.hubspotusercontent-na1.net/hubfs/6547620/MikMak_2026/Images/internet%201.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 18px 18px;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    padding: 10px 20px;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap {
    padding: 20px 20px;
    margin-top: auto;
    padding-right: 6px;
    padding-top: 40px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap .lang-current .mob_arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap ul.lang-list a:hover {
    color: var(--tertiary_color);
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap ul.lang-list a {
    font-size: 13px;
    padding-left: 30px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap .lang-current .mob_arrow svg * {
    fill: #fff;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap .lang-list{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap .mob_arrow {
    transition: transform 0.3s ease;
    cursor:pointer;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .lang_switcher_wrap .lang-current.menu_open .mob_arrow {
    transform: rotate(180deg);
  }
  .header-wrapper .header-wrap .mobile_header_wrap .button_group {
    padding: 10px 20px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .button_group .btn_sec {
    display: flex;
    gap: 20px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .button_group .btn_sec .btn_item {
    width: calc(50% - 10px);
  }

  .header-wrapper .header-wrap .mobile_header_wrap .button_group .btn_sec .btn_item a {
    width: 100%;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .feature_section {
    padding: 20px 20px 40px;
    background: rgba(255, 255, 255, 0.90);
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .feature_section .blog-post__tags a {
    padding: 4px 11px;
    display: inline-block;
    border-radius: 50px;
    border: 0.5px solid #000;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-size: 14px;
    line-height: normal;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .feature_section .blog_item_img img {
    border-radius: 20px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .feature_section .post_title {
    margin: 0;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 14px;
    margin-top: 20px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .feature_section .read_more >a {
    line-height: normal;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    vertical-align: bottom;
  }
  .header-wrapper .header-wrap .mobile_header_wrap ul ul .feature_section .read_more >a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .logo_menu {
    padding: 20px 20px;
    background: rgba(255, 255, 255, 0.90);
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .logo_menu h6 {
    margin-bottom: 10px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .logo_menu .logo_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .logo_menu .logo_item .img_wrap {
    width: calc(20% - 16px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .logo_menu .logo_item .img_wrap img {
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    max-width: 100%!important;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .logo_menu .logo_bottom_content {
    margin-top: 15px;
  }

  .header-wrapper .header-wrap .mobile_header_wrap::-webkit-scrollbar {
    width: 4px
  }

  .header-wrapper .header-wrap .mobile_header_wrap::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 4px
  }

  .header-wrapper .header-wrap .mobile_header_wrap::-webkit-scrollbar-thumb {
    background: #00A6A4;
    border-radius: 4px;
  }

}

@media(max-width:450px){
  .header-wrapper .header-wrap .mobile_header_wrap .button_group .btn_sec .btn_item {
    width: 100%;
  }

  .header-wrapper .header-wrap .mobile_header_wrap .button_group .btn_sec {
    flex-wrap: wrap;
  }

  .header-wrapper .header-wrap .mobile_header_wrap ul ul .logo_menu .logo_item .img_wrap {
    width: calc(33.33% - 13.33px);
  }
}
.footer-wrapper{
  position: relative;
  z-index:9;
  background-color: #000;
  color: #fff;
}

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

.footer-wrapper .footer_main .footer_wrap .right_form_footer .form_wrap iframe {
  width: 100%;
}

.footer-wrapper.lp_footer .footer_main .footer_wrap .left_footer_wrap .top_footer {
  padding-bottom: 0;
}

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

.footer-wrapper .footer_main .page-center {
  max-width: 100%;
  padding: 42px 60px;
}

.footer-wrapper .footer_main .footer_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-wrapper .footer_main .footer_wrap .left_footer_wrap {
  width: calc(70% - 10px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.footer-wrapper .footer_main .footer_wrap .right_form_footer {
  width: calc(30% - 10px);
}

.footer-wrapper .footer_main .footer_wrap .left_footer_wrap .top_footer {
  display: flex;
  gap: 56px;
  padding-bottom: 40px;
  align-self: self-start;
  width: 100%;
  flex-wrap: wrap;
}

.footer-wrapper .left_footer_wrap .top_footer .logo_section {
  width: calc(17% - 28px);
  align-self: self-start;
}

.footer-wrapper .left_footer_wrap .top_footer .menu_section {
  width: calc(83% - 28px);
  align-self: flex-start;
}

.footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  flex-direction: row;
}

.footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li {
  width: calc(20% - 16px);
  font-size: 14px;
  line-height: 1.7;
}

.footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li a {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li>a {
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li li {
  line-height: 1.7;
}
.footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li li>a{
  font-size: 12px;
}
.footer-wrapper .left_footer_wrap .divider {
  background: linear-gradient(90deg, #000 0%, #FFF 45.67%, #000 100%);
  width: 100%;
  height: 1px;
}
.footer-wrapper .left_footer_wrap .bottom_footer .bottom_content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
}

.footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 {
  width: calc(25% - 15px);
}

.footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 h6 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 p {
  font-size: 12px;
  line-height: 2.08333333333;
}

.footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 p:not(:last-child) {
  margin-bottom: 0;
}

.footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 p a {
  line-height: normal;
  color: #fff;
  display: inline-block;
}

.footer-wrapper .footer_main .footer_wrap .right_form_footer .form_wrap h3 {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  line-height: normal;
}

.footer-wrapper .footer_main .right_form_footer .form_content p {
  font-size: 10px;
  line-height: 2;
  font-weight: 500;
}

.footer-wrapper .footer_main .right_form_footer .form_content p:not(:last-child) {
  margin-bottom: 9px;
}

.footer-wrapper .footer_main .right_form_footer .form_content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 9px;
}

.footer-wrapper .footer_main .right_form_footer .form_content ul li {
  font-size: 10px;
  line-height: 2;
}

.footer-wrapper .footer_main .right_form_footer .form_content ul li a {
  color: #fff;
}

.footer-wrapper .left_footer_wrap .top_footer .logo_section .social_icons {
  margin-top: 25px;
}

.footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li li a:hover {
  color: var(--tertiary_color);
}

.footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 p a:hover {
  color: var(--tertiary_color);
}

@media(max-width:1250px){
  .footer-wrapper .footer_main .footer_wrap {
    gap: 40px;
  }

  .footer-wrapper .footer_main .footer_wrap .left_footer_wrap {
    width: 100%;
  }

  .footer-wrapper .footer_main .footer_wrap .right_form_footer {
    width: 100%;
  }

  .footer-wrapper .left_footer_wrap .bottom_footer {
    display: flex;
    width: 100%;
  }

  .footer-wrapper .left_footer_wrap .bottom_footer .bottom_content {
    width: 100%;
  }

  .footer-wrapper .footer_main .page-center {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-wrapper .footer_main .footer_wrap .right_form_footer .form_wrap {
    max-width: 767px;
  }
}

@media(max-width:992px){
  .footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li {
    width: calc(33.33% - 13.3333333333px);
  }

  .footer-wrapper .footer_main .footer_wrap .left_footer_wrap .top_footer {
    gap: 30px;
  }

  .footer-wrapper .left_footer_wrap .top_footer .logo_section {
    width: calc(24% - 15px);
  }

  .footer-wrapper .left_footer_wrap .top_footer .menu_section {
    width: calc(76% - 15px);
  }
}

@media(max-width:767px){
  .footer-wrapper .left_footer_wrap .top_footer .logo_section {
    width: 100%;
  }

  .footer-wrapper .left_footer_wrap .top_footer .menu_section {
    width: 100%;
  }

  .footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 {
    width: calc(33.33% - 13.3333px);
  }
}

@media(max-width:550px){
  .footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li {
    width: calc(50% - 10px);
  }

  .footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 {
    width: calc(50% - 10px);
  }
}

@media(max-width:400PX){
  .footer-wrapper .left_footer_wrap .menu_section .hs-menu-wrapper>ul>li {
    width: calc(100%);
  }

  .footer-wrapper .left_footer_wrap .bottom_footer .bottom_content .footer_col4 {
    width: calc(100%);
  }
}
/* 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;
  }
}