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

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

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 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.4;
  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 {
  font-size: 22px;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
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: #F3F3F3;
  border-color: #F3F3F3;
  color: #828D9E;
}

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

/* Labels */

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 0px;
}

/* 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: 22px;
  padding: 14px 24px;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
  display:none;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
form>fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 100% !important;
}

form>fieldset .hs-form-field {
  width: 100%;
}

form>fieldset.form-columns-2 .hs-form-field {
  width: calc(50% - 12px) !important;
}
form>fieldset.form-columns-3 .hs-form-field {
  width: calc(33.33% - 16px) !important;
}

form>fieldset .hs-form-field .input {
  margin: 0 !important;
}
@media screen and (max-width: 767px){
  form>fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
  }
  form>fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
  }
  form>fieldset {
    gap: 0 !important;
  }
}

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

/* 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 DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------- Custom CSS ---------------------------------------------------------- */
/* __________________________Header Section_____________________________________________ */
/* header Height adjust */
/* .my_custom_height {
    height: 87px !important;
} */

.hs-search-field__bar .hs-search-field__form {
    background-color: #184d98 !important;
}

.hs-search-field__form .hs-search-field__input {
    padding: 12px 5px !important;
}

.header-variation_3 .scndry-btn {
    padding: 10px 20px !important;
    background-color: #ffc35a !important;
    font-size: 18px !important;
}

/*------------------------------------------ */
/* common tags */
.h1_white {
    font-family: Montserrat !important;
    font-size: 42px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    text-align: center;
}

.h2_white {
    font-family: Montserrat !important;
    font-size: 42px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    color: #e5e7eb !important;
}

.h2_blue {
    color: #184d98 !important;
    font-family: Montserrat !important;
    font-size: 42px !important;
    font-style: normal !important;
    font-weight: 500 !important;
}

.h4_white {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500 !important;
    color: white;
}

.h3_blue {
    color: #184d98 !important;
    font-family: Montserrat !important;
    font-size: 28px !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

.h3_company_slider {
    font-family: DM Sans;
    font-size: 28px;
    font-weight: 700 !important;
}

.h4_blue {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500 !important;
    color: #0f2e41;
}

.h4_white {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500 !important;
    color: #e5e7eb;
}

.h5_blog {
    font-family: DM Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 500 !important;
    color: #0f2e41 !important;
    padding: 5px 0px 10px;
}

.h5_blog_white {
    font-family: DM Sans;
    font-size: 20px;
    font-weight: 500 !important;
    color: #e5e7eb !important;
    padding: 5px 0px 10px;
}

.h5_team_name {
    font-family: DM Sans;
    font-size: 22px;
    font-style: bold;
    font-weight: 700 !important;
    color: #0f2e41 !important;
}

.product_name {
    font-family: DM Sans;
    font-size: 22px;
    font-weight: 400 !important;
    color: #0f2e41 !important;
}

.h6_blog {
    font-family: DM Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 400 !important;
    color: #0f2e41 !important;
    border: 1.5px solid #0f2e41;
    max-width: fit-content;
    padding: 4px 8px;
    border-radius: 20px;
}

.h6_blog_white {
    font-family: DM Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 400 !important;
    color: #e5e7eb !important;
    border: 1.5px solid #e5e7eb;
    max-width: fit-content;
    padding: 4px 8px;
    border-radius: 20px;
}

.para_white {
    font-family: DM Sans !important;
    font-size: 18px !important;
    font-weight: 400;
    color: #e5e7eb !important;
}

.para_blue {
    color: #0f2e41 !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    font-family: DM Sans !important;
    margin-bottom: 15px !important;
}

.prmy-btn {
    background-color: #184d98 !important;
    color: #fff !important;
    border: 0px !important;
    width: "fit-content";
    min-width: unset !important;
    font-family: "DM Sans";
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 10px 25px !important;
}

.prmy-btn:hover {
    background-color: #184d98 !important;
    color: #fff !important;
    border: 0px !important;
    font-family: "DM Sans";
    font-size: 16px !important;
    font-weight: 400 !important;
}

.scndry-btn {
    background-color: #ffc35a !important;
    color: #0f2e41 !important;
    border: 0px !important;
    font-family: "DM Sans";
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 10px 25px !important;
}

.scndry-btn:hover {
    background-color: #ffc35a !important;
    color: #0f2e41 !important;
    border: 0px !important;
    font-family: "DM Sans";
    font-size: 16px !important;
    font-weight: 400 !important;
}

/* banner Image */

.section_variation_30 .slider-outer .slider-item {
    background-position: unset !important;
}

/* #hs_cos_wrapper_dnd_area-module-2 .header--section.full-width-content--section.section_variation_30 .slider-item.item-1{
  height:620px;
  } */
/*------------------------------------------ */
/* Forms */
.form--section.variation_4 form .input input {
    height: unset !important;
    padding: 13px 12px !important;
    font-size: 16px;
    color: #0f2e41;
}

.form--section.variation_4 form .input select {
    color: #0f2e41;
    padding: 13px 12px;
    font-size: 16px;
}

.form--section.variation_4 form .input textarea {
    width: 100% !important;
    font-size: 16px;
    color: #0f2e41;
    height: 100px;
    padding: 13px 12px;
}

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

.form--section.variation_4 form input::placeholder {
    font-size: 16px;
}

.form--section.variation_4 form select.hs-input.is-placeholder {
    font-size: 16px;
}

.form--section.variation_4 form textarea::placeholder {
    font-size: 16px;
}

.form--section.variation_4 form fieldset .hs-error-msg {
    font-size: 14px !important;
}

.form--section.variation_4 form select,
textarea:focus-visible {
    outline: none;
}

#hs_cos_wrapper_widget_1759675675894 form .legal-consent-container .hs-form-booleancheckbox span {
    margin-left: 1.5rem !important;
}

/* Contact Us Form */

.hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section .form_inner_wrapper {
    display: flex;
    max-width: unset;
    column-gap: 8rem;
}

.hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section .title_wrap {
    width: 45%;
}

.hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section .form--wrapper {
    width: 70%;
}

.hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section .content_section .h2_blue {
    font-weight: 500 !important;
}

.hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section.variation_4 form input[type="submit"] {
    background-color: rgba(255, 195, 90, 1);
    color: #0f2e41;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
    border-radius: px;
    border: 1px none;
}

/* --------- */
.hsfc-Step .hsfc-Step__Content {
    padding: 0px !important;
}

.hsfc-NavigationRow__Buttons .hsfc-Button {
    background-color: #ffffff !important;
    color: #184d98 !important;
    border: 0px !important;
    font-family: "DM Sans" !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    border-radius: 0px !important;
    padding: 10px 20px !important;
}

/*----------------Menzolit Header Section-------------------------- */

.header--section .slider-outer .slider-item .section-tagline .banner_maxwidth {
    max-width: 900px;
    margin: 0 auto;
}

/*----------------Menzolit-Home-------------------------- */

/* Banner Section */
.slider-outer .section-tagline {
    padding: 0px !important;
    margin: 0px !important;
}

.slider-outer .section-content {
    padding-bottom: 30px !important;
    padding-top: 30px !important;
}

#hs_cos_wrapper_widget_1759841919276 .feature-inner-wrapper.variation-1 .image-left {
    width: unset;
    position: unset;
}

/*------------------------------------------ */
/* Trusted by Leading OEMs */

.section_variation_2 .tabs--inner-wrapper .icons--wrap {
    padding: 35px 0px 0px !important;
}

.section_variation_2 .tabs--inner-wrapper .owl-nav {
    display: none !important;
}

/*------------------------------------------ */
/* Product Spotlight */
.hs-content-id-281776072903 .team-inner-wrapper {
    padding: 0px !important;
}

.hs-content-id-281776072903 .team-inner-wrapper .img-box {
    margin-bottom: 50px !important;
}

.hs-content-id-281776072903 .team-inner-wrapper .member-profile .member-name {
    margin: 0px !important;
}

.hs-content-id-281776072903 .team-inner-wrapper .owl-carousel {
    padding: 0 35px !important;
}

.hs-content-id-281776072903 .team-inner-wrapper .owl-nav {
    margin-top: 30px !important;
}

.hs-content-id-281776072903 .member-name p {
    color: #0f2e41;
    font-size: 20px !important;
    font-family: DM Sans !important;
}

.hs-content-id-281776072903 .hs-content-id-281776072903 .member-name .designation h5 {
    color: #0f2e41;
    font-size: 20px !important;
    font-family: DM Sans !important;
}

#hs_cos_wrapper_widget_1759673825168 .team-page {
    background-color: unset !important;
}

/*------------------------------------------ */
/* <Why Choose Menzolit> */
.hs-content-id-281776072903 .feature-page .section-header {
    margin-bottom: 35px !important;
}

.hs-content-id-281776072903 .feature-inner-wrapper .three-column-wrapper {
    margin: 35px 0px 0px !important;
}

.hs-content-id-281776072903 .feature-inner-wrapper .bottom-btn {
    text-align: center;
    margin-top: 2rem;
}

.hs-content-id-281776072903 .three-column-wrapper .item-title {
    margin-bottom: 20px !important;
}

.hs-content-id-281776072903 .feature-page.variation-31 .column-item {
    display: flex;
    justify-content: center !important;
}

.hs-content-id-281776072903 .feature-page.variation-31 .item-button .scndry-btn {
    background-color: #ffc35a !important;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

/*------------------------------------------ */
/* <Industries> */
.hs-content-id-281776072903 .three-column-bar .img-box {
    margin-bottom: 25px !important;
}

.hs-content-id-281776072903 .three-column-bar .img-box img {
    height: 260px !important;
}

.hs-content-id-281776072903 .member-profile .member-name {
    font-size: 24px !important;
}

/*------------------------------------------ */
/* <Beyond Materials> */
.hs-content-id-281776072903 #hs_cos_wrapper_module_17606018553375 .feature-inner-wrapper.variation-1 .image-left img {
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    height: auto !important;
    /*  flex-wrap:unset !important; */
}

#hs_cos_wrapper_module_17606018553375 .feature-inner-wrapper.variation-1 .image-left img {
    width: auto !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    height: auto !important;
    /*      flex-wrap:unset !important; */
}

/*------------------------------------------ */
/* <Innovation & Sustainability Hub> */
.feature-page.variation-7 .image-wrapper {
    margin-bottom: 50px !important;
}

.hs-content-id-281776072903 .variation-7 .column-item {
    padding: 80px 80px 50px !important;
}

.hs-content-id-281776072903 .feature-page.variation-7 .section-button {
    margin-top: 40px !important;
}

.hs-content-id-281776072903 .feature-page.variation-7 .section-button .prmy-btn {
    border: none !important;
}

.hs-content-id-281776072903 .main-title h4 {
    color: #ffffff !important;
    font-size: 42px !important;
    font-family: Montserrat !important;
    font-weight: 500 !important;
}

#hs_cos_wrapper_widget_1760610933325 .hs_cos_wrapper_type_linked_image {
    margin-bottom: 0px;
}

/*------------------------------------------ */
/* <Insights & Blogs> */
.hs-content-id-281776072903 .variation-87 .top_section {
    margin-bottom: 40px !important;
}

.hs-content-id-281776072903 .blog_content {
    margin-top: 20px !important;
}

.hs-content-id-281776072903 .blog_category {
    padding: 4px 8px;
    border: 1px solid #c5c5c5;
    border-radius: 20px;
    background-color: transparent !important;
}

.hs-content-id-281776072903 .section_button {
    margin-top: 30px !important;
}

#hs_cos_wrapper_module_17596773702632 .feature-page.variation-87 .feature-inner-wrapper .section_button a {
    max-width: unset;
    width: unset;
}

#hs_cos_wrapper_module_17596773702632 .variation-87 .three-column .inner_col {
    width: calc(24% - 17.3px);
}

/*------------------------------------------ */
/* <Certifications & Compliance> */
.hs-content-id-281776072903 .gallery-section .gallery-heading {
    padding-bottom: 20px !important;
}

.gallery-section.variation_11 .six-col-inner {
    display: flex;
    gap: 0px !important;
    justify-content: center !important;
}

.gallery-section.variation_11 .photos {
    width: calc(18.3% - 0px) !important;
}

.gallery-section.variation_11 .photos img {
    object-fit: contain !important;
    width: 180px !important;
    height: auto !important;
}

/* -----------------------------------------------Menzolit Company--------------------------------------- */

/* second Section */
.menzolit_company .right-items-wrap {
    position: relative;
}

.menzolit_company .overlay-content-box {
    background-color: transparent !important;
    margin: 0px !important;
    max-width: none !important;
    padding: 0px !important;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    width: 9% !important;
    transform: translate(-50%, -50%);
}

.menzolit_company .overlay-content-box .h5 {
    margin-bottom: 0px !important;
}

.menzolit_company .overlay-content-box .popup--link {
    margin: 0px !important;
}

/*------------------------------------------ */
/* Third Section */

#hs_cos_wrapper_widget_1760356893067 .title-column {
    width: 50%;
}

#hs_cos_wrapper_widget_1760356893067 .column-item {
    width: 90%;
}

#hs_cos_wrapper_widget_1760356893067 .section-title {
    margin-bottom: 3rem !important;
}

#hs_cos_wrapper_widget_1760356893067 .menu-column {
    width: calc(28% - 0px);
}

#hs_cos_wrapper_widget_1760356893067 .column-item .service-menu {
    flex-wrap: wrap;
    justify-content: space-between;
}

#hs_cos_wrapper_widget_1760356893067 .menu-tag {
    height: unset !important;
    min-height: 70px;
}

#hs_cos_wrapper_widget_1760356893067 .menu-column .menu-items {
    height: unset !important;
}

/*------------------------------------------ */
/* Our Global Presence */
#hs_cos_wrapper_widget_1759760016244_ .para_blue {
    width: 70%;
    margin: 0 auto;
}

/*------------------------------------------ */
/* Global Partners */
#hs_cos_wrapper_widget_1760361783151_ .h2_blue {
    margin-bottom: 15px !important;
}

#hs_cos_wrapper_widget_1759734759852 .image-wrapper {
    margin-bottom: 40px !important;
}

.hs-content-id-286373934288 .section-button {
    margin-top: 40px !important;
}

.hs-content-id-286373934288 .section-button .prmy-btn {
    border: 0px !important;
}

/*------------------------------------------ */
/* Research & Collaboration */
#hs_cos_wrapper_widget_1760362519018 .tagline .h2_blue {
    padding-bottom: 20px !important;
}

#hs_cos_wrapper_widget_1760362519018 .senata_grp_img {
    height: 32px !important;
}

#hs_cos_wrapper_widget_1760362519018 .content_wrapper {
    margin: 0 0 30px 0 !important;
}

#hs_cos_wrapper_module_17603644892383 .feature-page.variation-25 .tagline {
    margin-bottom: 10px !important;
}

#hs_cos_wrapper_module_17603644892383 .content_wrapper {
    margin: 0 0 40px 0 !important;
}

#hs_cos_wrapper_widget_1772001436384 .client-logos--section .section-subtitle .para_blue,
#hs_cos_wrapper_module_17786543558166 .client-logos--section .section-subtitle .para_blue {
    max-width: 1100px;
    margin: 0px auto 30px;
}

/* .hs-content-id-286373934288 .row-number-19 img {
        height: 60px !important;
        width: 350px !important;
      } */

#hs_cos_wrapper_widget_1772001436384 .client-logos--section .owl-stage {
    display: flex;
    align-items: center;
}

#hs_cos_wrapper_module_17786543558166 .client-logos--section .owl-stage {
    display: flex;
    align-items: center;
}

#hs_cos_wrapper_widget_1772001436384 .client-logos--section .owl-stage .owl-item .client-logos-icons,
#hs_cos_wrapper_module_17786543558166 .client-logos--section .owl-stage .owl-item .client-logos-icons {
    width: calc(50% - 0px) !important;
    margin: 20px 0 0;
}

#hs_cos_wrapper_widget_1772001436384 .client-logos--section .icons--wrap,
#hs_cos_wrapper_module_17786543558166 .client-logos--section .icons--wrap {
    padding: 0px;
}

/*------------------------------------------ */
/* Image Section */
#hs_cos_wrapper_widget_1760366476608_ {
    margin-bottom: 0px !important;
}

/*------------------------------------------ */
/* Energy & Climate Resposibility */

.hs-content-id-286373934288 #hs_cos_wrapper_widget_1760367631976 .h2_white {
    padding-bottom: 20px !important;
}

#hs_cos_wrapper_widget_1760367631976 .wrapper-icon {
    height: 56px !important;
    width: 56px !important;
}

#hs_cos_wrapper_widget_1760367631976 .wrapper-title {
    flex: unset !important;
    margin-bottom: unset !important;
    min-height: 80px !important;
}

.hs-content-id-286373934288 #hs_cos_wrapper_widget_1760367631976 .wrapper-title h4 {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    color: #ffffff;
}

.hs-content-id-286373934288 #hs_cos_wrapper_widget_1760367631976 .wrapper-text p {
    font-family: DM Sans !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    color: #ffffff;
}

/*------------------------------------------ */
/* Certifications & Compliance Hub */
.hs-content-id-286373934288 #hs_cos_wrapper_widget_1759727720711 .para_blue {
    padding-top: 15px !important;
}

#hs_cos_wrapper_widget_1772001436384 .disabled .owl-prev,
#hs_cos_wrapper_module_17786543558166 .disabled .owl-prev {
    display: none;
}

#hs_cos_wrapper_widget_1772001436384 .disabled .owl-next,
#hs_cos_wrapper_module_17786543558166 .disabled .owl-next {
    display: none;
}

/*------------------------------------------ */
/* Innovation & Sustainability Hub */
#hs_cos_wrapper_module_17603603659744 .content_wrapper {
    padding: 0 20px !important;
}

#hs_cos_wrapper_module_17603603659744 .content_wrapper .h4_blue {
    text-align: left;
}

#hs_cos_wrapper_module_17603603659744 .content_wrapper .para_blue {
    text-align: left;
    padding: 0px !important;
}

#hs_cos_wrapper_module_17603603659744 .feature-page.variation-7 .column-item {
    padding: 60px 60px !important;
}

#hs_cos_wrapper_module_17603603659744 .feature-page .feature-inner-wrapper .company_li li {
    padding: 6px 0px !important;
}

/*------------------------------------------ */
/* An automotive partner -------------Testimonals  common section */
.testimonial-page {
    padding: 80px 0px !important;
}

#owl-carousel-22 {
    padding: 1px !important;
}

.testimonial-content-outer .member-profile {
    margin-top: 0px !important;
}

.testimonial-content-outer .member-profile p {
    font-family: DM Sans !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    color: white !important;
}

#owl-carousel-22 .owl-dots {
    justify-content: end !important;
    margin-top: 15px !important;
    gap: 8px;
}

#owl-carousel-22 .owl-dots .owl-dot span {
    background-color: transparent !important;
}

#owl-carousel-22 .owl-dots .active span {
    background-color: #ffc35a !important;
}

#hs_cos_wrapper_widget_1760424119274 .page-content,
.h2_blue {
    margin-bottom: 0px !important;
}

/* -----------------------------------------------Menzolit Certification--------------------------------------- */
#hs_cos_wrapper_widget_1760799031416 .disabled .owl-prev {
    display: none;
}

#hs_cos_wrapper_widget_1760799031416 .disabled .owl-next {
    display: none;
}

/* -----------------------------------------------Menzolit Sustainability--------------------------------------- */
.hs-content-id-287474968802 .h2_blue {
    padding-bottom: 15px;
}

/*------------------------------------------ */
/* Recognised for Excellence in Sustainability */
.hs-content-id-287474968802 {
    align-items: center !important;
}

#hs_cos_wrapper_widget_1760610967111_ {
    margin-bottom: 0px !important;
}

#hs_cos_wrapper_widget_1760610967111_ .hs-image-widget {
    height: auto !important;
    width: 170px !important;
}

/*------------------------------------------ */
/* Collaboration Partners */
.hs-content-id-287474968802 .row-number-9 .hs_cos_wrapper_type_linked_image {
    margin-bottom: 0px !important;
}

#hs_cos_wrapper_module_17781547747516 .client-logos--section .icons--wrap,
#hs_cos_wrapper_widget_1772001436384 .client-logos--section .icons--wrap,
#hs_cos_wrapper_module_17786543558166 .client-logos--section .icons--wrap {
    justify-content: space-evenly;
    align-items: center;
}

#hs_cos_wrapper_module_17781547747516 .client-logos--section .client-logos-icons,
#hs_cos_wrapper_widget_1772001436384 .client-logos--section .client-logos-icons,
#hs_cos_wrapper_module_17786543558166 .client-logos--section .client-logos-icons {
    width: calc(16% - 30px);
}

#hs_cos_wrapper_module_17781547747516 .client-logos--section .client-logos-icons:nth-child(2) img {
    transform: scale(1.4);
}

#hs_cos_wrapper_module_17786543558166 .client-logos--section .client-logos-icons:nth-child(2) img {
    transform: scale(1.4);
}

#hs_cos_wrapper_widget_1772001436384 .client-logos--section .client-logos-icons:nth-child(2) img {
    transform: scale(1.4);
}

#hs_cos_wrapper_module_17781547747516 .client-logos--section .tabs--section-header .section-subtitle .para_blue,
#hs_cos_wrapper_widget_1772001436384 .client-logos--section .tabs--section-header .section-subtitle .para_blue,
#hs_cos_wrapper_module_17786543558166 .client-logos--section .tabs--section-header .section-subtitle .para_blue {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 22px !important;
}

/* .hs-content-id-287474968802 .hs_cos_wrapper_type_linked_image img {
        height:60px !important;
        width: 320px !important;
      } */
/*------------------------------------------ */
/* Energy & Climate Resposibility */
#hs_cos_wrapper_widget_1760367631976 .wrapper-title h4 {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    color: #0f2e41;
}

#hs_cos_wrapper_widget_1760367631976 .wrapper-text p {
    font-family: DM Sans !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    color: #0f2e41;
}

#hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .column-item .section-button {
    margin-top: 0px !important;
    justify-content: center;
}

.hs-content-id-287474968802 #hs_cos_wrapper_widget_1760367631976 .wrapper-title {
    min-height: 50px !important;
}

/* Image Section */

#hs_cos_wrapper_widget_1776342280362 .hs_cos_wrapper_type_linked_image {
    margin-bottom: 0px;
}

/* Content And Image  */
.hs-content-id-287474968802 #hs_cos_wrapper_widget_1760628455461_ {
    margin-bottom: 0px !important;
}

/*------------------------------------------ */
/* Sustainable Products & Applications */
.hs-content-id-287474968802 #hs_cos_wrapper_widget_1760361783151_ .h2_white {
    margin-bottom: 15px !important;
}

/*------------------------------------------ */
/* Sustainable Solutions */

#hs_cos_wrapper_widget_1760609778312 .wrapper-icon {
    height: 54px !important;
    width: 54px !important;
    background-color: unset;
}

#hs_cos_wrapper_widget_1760609778312 .wrapper-icon img {
    width: 50px !important;
}

#hs_cos_wrapper_widget_1760609778312 .wrapper-title h3 {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    color: #ffffff;
}

#hs_cos_wrapper_widget_1760609778312 .wrapper-text p {
    font-family: DM Sans !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    color: #ffffff;
}

#hs_cos_wrapper_widget_1760609778312 .bottom-btn {
    margin-left: 0px !important;
}

/*------------------------------------------ */

/* -----------------------------------------------Menzolit Innovation Hub--------------------------------------- */
/* content & Image Sec */
.hs-content-id-287827417335 #hs_cos_wrapper_module_17606766776212 .section-subtitle .h2_white,
.h2_blue {
    padding-bottom: 20px !important;
}

.hs-content-id-287827417335 #hs_cos_wrapper_widget_1760682234679_ {
    margin-bottom: 0px !important;
}

#hs_cos_wrapper_module_1760610213624 .feature-inner-wrapper .top_section {
    margin-bottom: 25px !important;
}

#hs_cos_wrapper_module_17733849824475 .feature-page .feature-inner-wrapper .content-row {
    align-items: start;
    margin-bottom: 40px;
}

#hs_cos_wrapper_module_17733849824475 .feature-page .feature-inner-wrapper .content-row .section-header {
    width: calc(50% - 100px);
}

#hs_cos_wrapper_module_17733849824475 .feature-page .repeater-content,
#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content {
    background-color: #184d98;
    height: auto;
    padding: 25px 25px;
}

#hs_cos_wrapper_module_17733849824475 .feature-page .repeater-content:hover,
#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content:hover {
    background-color: #ffc35a;
}

#hs_cos_wrapper_module_17733849824475 .feature-page .repeater-content .item-link,
#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .item-link {
    margin-top: 0;
}

#hs_cos_wrapper_module_17733849824475 .feature-page .repeater-content .wrapper-icon,
#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-icon {
    background: unset;
}

#hs_cos_wrapper_module_17733849824475 .feature-page .repeater-content .wrapper-icon img,
#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-icon img {
    max-width: 50px !important;
}

#hs_cos_wrapper_module_17733849824475 .feature-page .repeater-content .wrapper-title,
#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-title {
    margin: 20px 0 0px;
    min-height: 60px;
    flex-grow: unset;
}

/* -----------------------------------------------Menzolit Product Summary--------------------------------------- */

#hs_cos_wrapper_widget_1760697508077 ul {
    padding: 0px 20px !important;
}

.hs-content-id-287908767965 #hs_cos_wrapper_widget_1760697524862 .hs_cos_wrapper_type_linked_image {
    margin-bottom: 0px !important;
}

.hs-content-id-287908767965 #hs_cos_wrapper_widget_1760697524862 .hs_cos_wrapper_type_linked_image img {
    height: 400px !important;
    object-fit: cover !important;
}

.hs-content-id-287908767965 #hs_cos_wrapper_widget_1760698657191 .image-column .image-wrapper img {
    height: 495px !important;
    object-fit: cover !important;
}

#hs_cos_wrapper_widget_1760698657191 .feature-page.variation-28 .column-content,
#hs_cos_wrapper_module_17786646963364 .feature-page.variation-28 .column-content {
    padding: 0px !important;
    margin: 0px !important;
}

/* -----------------------------------------------Menzolit Product Detail--------------------------------------- */
#hs_cos_wrapper_widget_1772518967296 .feature-page .column-item .item-title {
    margin-bottom: 5px !important;
}

#hs_cos_wrapper_widget_1772518967296 .feature-page .section-header {
    margin-bottom: 35px !important;
}

#hs_cos_wrapper_widget_1772518967296 .feature-page .section-header .section-title {
    text-align: center;
}

#hs_cos_wrapper_widget_1772518967296 .feature-page .section-header .section-title h2 {
    color: #fff;
}

#hs_cos_wrapper_widget_1772518967296 .feature-page .feature-inner-wrapper .three-column-wrapper {
    margin: 30px 0 0;
}

/* ----------------------------------------------Menzolit-Tech Services Detail--------------------------------------- */
/* What We Offer */
.hs-content-id-288889418985 .variation-34 .feature-inner-wrapper.three-column-wrapper {
    padding: 15px 0px !important;
}

#hs_cos_wrapper_widget_1761027894848 .variation-34 .wrapper-icon {
    width: 100px !important;
    height: 100px !important;
    background-color: #ffc35a !important;
}

#hs_cos_wrapper_widget_1761027894848 .variation-34 .wrapper-icon img {
    width: 70px !important;
    height: 70px !important;
}

#hs_cos_wrapper_widget_1761027894848 .feature-page .feature-inner-wrapper .three-column-wrapper .wrapper-title {
    margin: 20px 0 0px;
    min-height: 3.8rem;
}

/* Collaboration Partners */
.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761115940622 .feature-inner-wrapper .tagline {
    margin-bottom: 0px !important;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761115940622 .feature-inner-wrapper .content_wrapper {
    margin: 0px !important;
}

/*------------------------------------------ */
/* The Co-Development Journey */
.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761117085645 .variation-48 .feature-inner-wrapper .section-header {
    padding-bottom: 40px !important;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761117085645 .variation-48 .feature-inner-wrapper .h2_white {
    padding-bottom: 20px !important;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761117085645 .variation-48 .feature-step:nth-child(odd):not(:last-child) {
    border-right: 2px solid #e5e7eb !important;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761117085645 .variation-48 .feature-step:nth-child(2n) {
    border-left: 2px solid #e5e7eb !important;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761117085645 .variation-48 .content-outer .feature-step-content {
    position: unset !important;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761117085645 .variation-48 .content-outer .feature-step-content .feature-step-desc .h4_blue {
    padding-bottom: 10px !important;
    color: #184d98 !important;
}

/*------------------------------------------ */
/* Capabilities We Bring */
.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761124113786 .section-header .content_wrapper {
    padding-bottom: 20px;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761124113786 .variation-63 .three-column-wrapper .column-item {
    display: flex;
    flex-direction: column;
    padding: 50px 40px !important;
    background-color: #e5e7eb;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761124113786 .variation-63 .three-column-wrapper .item-title {
    margin-bottom: 20px !important;
    min-height: 3rem;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761124113786 .variation-63 .three-column-wrapper .image-box {
    height: 100px !important;
    width: 100px !important;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761124113786 .variation-63 .three-column-wrapper .image-box img {
    height: 100px !important;
}

.hs-content-id-289305374953 #hs_cos_wrapper_widget_1761124113786 .variation-63 .three-column-wrapper .item-content {
    margin-top: 30px !important;
}

/*------------------------------------------ */
/* Sustainability Built In */
#hs_cos_wrapper_widget_1760698657191 .two-column-wrapper .image-wrapper img,
#hs_cos_wrapper_module_17786646963364 .two-column-wrapper .image-wrapper img {
    height: 480px !important;
    object-fit: cover;
}

#hs_cos_wrapper_widget_1760698657191 .feature-page.variation-28 .column-content,
#hs_cos_wrapper_module_17786646963364 .feature-page.variation-28 .column-content {
    padding: 50px !important;
    margin: 0 auto !important;
}

/*------------------------------------------ */
/* Blog Resource */
#hs_cos_wrapper_module_1760610213624 .variation-87 .feature-inner-wrapper .section_button {
    margin-top: 30px !important;
}

#hs_cos_wrapper_module_1760610213624 .variation-87 .three-column {
    justify-content: space-between;
}

#hs_cos_wrapper_module_1760610213624 .variation-87 .three-column .inner_col {
    width: calc(24% - 17.3px);
}

/*------------------------------------------ */

/* -----------------------------------Industries - Sanitary ---------------------------------------*/

.hs-content-id-379281762490 #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .wrapper-text {
    margin-top: 10px;
}

/* -------------------------Menzolit-Design Guide Detail--------------------------------------- */
.hs-content-id-289482739943 #hs_cos_wrapper_widget_1761135628811 .tabs--inner-wrapper ul#tabs-nav {
    width: 36% !important;
}

.hs-content-id-289482739943 #hs_cos_wrapper_widget_1761135628811 .tabs--inner-wrapper #tabs-content-wrap {
    width: 60% !important;
}

/*------------------------------------------ */
/* Related Design Guides */
.hs-content-id-289482739943 #hs_cos_wrapper_module_1760610213624 .variation-87 .blog_content .description {
    min-height: 130px;
}

.hs-content-id-289482739943 #hs_cos_wrapper_module_1760610213624 .variation-87 .blog_content .learn_more_btn a {
    display: unset !important;
    padding: 15px 25px !important;
}

/*------------------------------------------ */
/* -------------------------Menzolit-industrial Detail--------------------------------------- */

#hs_cos_wrapper_module_17606102566095 .feature-inner-wrapper .image-left {
    height: unset !important;
    position: unset !important;
    width: unset !important;
}

#hs_cos_wrapper_module_17612910088716 ul {
    padding: 0px 20px !important;
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .feature-inner-wrapper .content-row {
    align-items: start;
    margin-bottom: 40px;
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .feature-inner-wrapper .content-row .section-header {
    width: calc(50% - 100px);
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content {
    background-color: #184d98;
    padding-top: 10px;
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content:hover {
    background-color: #ffc35a;
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .item-content h5 {
    margin-bottom: 10px;
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .item-link {
    margin-top: 0;
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-icon {
    background: unset;
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-icon img {
    max-width: 50px !important;
}

#hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-title {
    margin: 35px 0 10px;
}

.hs-content-id-290321909973 #hs_cos_wrapper_widget_1760367631976 .wrapper-title {
    min-height: 50px !important;
}

.hs-content-id-290321909973 #hs_cos_wrapper_widget_1760367631976 .wrapper-inner-content .wrapper-title h4 {
    color: #e5e7eb;
}

.hs-content-id-290321909973 #hs_cos_wrapper_widget_1760367631976 .wrapper-inner-content .wrapper-text p {
    color: #e5e7eb;
}

#hs_cos_wrapper_widget_1761304298029 .team-page .team-inner-wrapper .page-content {
    margin-bottom: 20px;
}

#hs_cos_wrapper_widget_1761304298029 .team-member-detail .img-box {
    background: unset;
    aspect-ratio: unset;
    margin-bottom: 20px;
}

#hs_cos_wrapper_widget_1761302705541_ {
    margin-bottom: 0px;
}

/* -----------------------------------------------------Menzolit- Contact------------------------------------ */
/* Locations and Operations */

#hs_cos_wrapper_widget_1761298067647 .team-page.variation_12 .member-profile {
    background-color: #ffffff;
    padding: 30px;
    height: 180px;
}

#hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .member-profile {
    background-color: #ffffff;
    padding: 30px;
    min-height: 315px;
}

#hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .member-profile .item-button {
    margin-top: 0px !important;
}

#hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .member-profile .item-button a {
    width: fit-content;
}

#hs_cos_wrapper_module_17613023221134 .team-page .team-column-bar .img-column {
    width: calc(25.9% - 0px) !important;
}

#hs_cos_wrapper_widget_1761298067647 .team-page.variation_12 .three-column-bar .img-column .img-box,
#hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .three-column-bar .img-column .img-box {
    aspect-ratio: 0;
    margin-bottom: 0px;
}

#hs_cos_wrapper_widget_1761298067647 .team-page.variation_12 .img-column .member-name * {
    margin-bottom: 16px;
}

#hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .h5_team_name {
    min-height: 105px !important;
}

#hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .para_blue {
    min-height: 100px;
}

#hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .team-column-bar {
    justify-content: center;
}

#hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .page-content {
    margin-bottom: 30px;
}

/*----------------------Menzolit-Resource Detail ----------------------- */

#hs_cos_wrapper_widget_1778494873788 .h3_company_slider,
#hs_cos_wrapper_widget_1773390470347 .h3_company_slider {
    color: #184d98;
}

/*----------------------Menzolit-Blog Section----------------------- */

.menzolit_blog_sec .blog_unorderlist {
    padding: 0px 15px;
}

.menzolit_blog_sec .hr_bold {
    border-bottom: 2px solid #184d98 !important;
}

.menzolit_blog_sec .hr_light {
    border-bottom: 1px solid #184d98 !important;
}

.menzolit_blog_sec .hr_small_line {
    border-bottom: 2px solid #184d98 !important;
    width: 50px;
    margin-bottom: 35px;
}

.menzolit_blog_sec .blog_center {
    text-align: center;
}

.menzolit_blog_sec .blog_padding {
    padding: 20px 0px;
}

#hs_cos_wrapper_widget_1778570420588 .gallery-section.variation_6 .owl-carousel.image-width .owl-item img {
    aspect-ratio: unset !important;
}

#hs_cos_wrapper_widget_1778570420588 .owl-nav .owl-prev,
#hs_cos_wrapper_widget_1778570420588 .owl-nav .owl-next {
    height: 35px !important;
    width: 35px !important;
}

/* -------------------------Blog - 70 years of MENZOLIT-------------------- */

#hs_cos_wrapper_module_17794308202755 img {
    width: 120px;
}

/* ------------------------------ */
/* .hs-content-id-290473801917 #hs_cos_wrapper_module_17613023221134 .team-inner-wrapper .three-column-bar{
      justify-content:center;
      } */

/* ************************************************************************************************ */
/* ------------------------RESPONSIVE Break Points-------------------------------------- */
@media (max-width: 1024px) {

    .h1_white,
    .h2_white,
    .h2_blue {
        font-size: 34px !important;
    }

    .h3_blue,
    .h3_company_slider {
        font-size: 24px !important;
    }

    .h4_white,
    .h4_blue {
        font-size: 20px !important;
    }

    .h5_blog,
    .h5_blog_white,
    .h5_team_name,
    .product_name {
        font-size: 18px !important;
    }

    .para_white,
    .para_blue {
        font-size: 16px !important;
    }

    /*   ----------------------------Menzolit-Home----------------------------- */

    .section_variation_30 .slider-outer .slider-item {
        background-position: 50% !important;
    }

    #hs_cos_wrapper_module_17596773702632 .variation-87 .three-column .inner_col {
        width: calc(50% - 17.3px);
    }

    /*  -------------------Menzolit - Industries - Mass Transport--------------------------   */
    #hs_cos_wrapper_widget_1772561749528 .feature-page.variation-41 .slider-outer .four_col_wrap .repeater-content {
        width: calc(48% - 0px);
        flex-grow: 0;
    }

    /*  Industries - Commercial Vehicles */

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .feature-inner-wrapper {
        gap: 57px;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .column-item {
        width: 100%;
        row-gap: 57px;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .repeater-content {
        padding: 0px 30px;
        width: 50% !important;
        align-items: center;
        text-align: center;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .title-items {
        width: calc(80% - 0px);
        text-align: center;
        margin: 0 auto;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .content_wrapper.w-550 {
        max-width: 900px;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .wrapper-inner-content {
        align-items: center;
    }

    #hs_cos_wrapper_module_17781547747516 .client-logos--section .client-logos-icons,
    #hs_cos_wrapper_widget_1772001436384 .client-logos--section .client-logos-icons,
    #hs_cos_wrapper_module_17786543558166 .client-logos--section .client-logos-icons {
        width: calc(20% - 0px);
    }

    #hs_cos_wrapper_widget_1760609778312 .feature-page.variation-36 .feature-inner-wrapper {
        gap: 30px;
    }

    #hs_cos_wrapper_widget_1760609778312 .feature-page.variation-36 .right-content {
        padding-left: 40px;
    }

    #hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-title {
        margin: 15px 0 0px !important;
    }

    /*  -----------------Menzolit - Innovation & Strategic Partnerships--------------------------- */
    #hs_cos_wrapper_module_17733849824475 .feature-page.variation-41 .slider-outer .four_col_wrap .repeater-content {
        width: calc(48% - 0px);
    }

    /* About Us   */
    #hs_cos_wrapper_widget_1772001436384 .client-logos--section .owl-stage .owl-item .client-logos-icons {
        width: calc(75% - 0px);
        margin: 20px 0 0;
    }

    #hs_cos_wrapper_module_17786543558166 .client-logos--section .owl-stage .owl-item .client-logos-icons {
        width: calc(75% - 0px);
        margin: 20px 0 0;
    }

    /*   --------------------------Menzolit-Innovation Hub----------------------------- */
    .gallery-section.variation_11 .photos {
        width: calc(24.3% - 0px) !important;
    }

    /*   ----------------------------Menzolit-TECH SERVICE----------------------------- */

    .header--section .slider-outer .slider-item .full-width-content-wrapper .section-content p br {
        display: none;
    }

    #hs_cos_wrapper_widget_1761027894848 .feature-page .feature-inner-wrapper .three-column-wrapper .wrapper-title {
        margin: 20px 0 0px;
        min-height: 50px;
    }

    #hs_cos_wrapper_widget_1761027894848 .feature-page.variation-34 .wrapper-content {
        max-width: unset;
        text-align: center;
        width: calc(50% - 20px);
    }

    /* --------------------------------- Menzolit - Contact Us Form -------------------------------  */
    .hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section .form_inner_wrapper {
        column-gap: 2rem;
    }

    /* --------------------------------- Menzolit - Contact  -------------------------------  */

    #hs_cos_wrapper_module_17613023221134 .team-page .team-column-bar .img-column {
        width: calc(48% - 0px) !important;
    }

    #hs_cos_wrapper_widget_1761298067647 .team-page .team-column-bar .img-column {
        width: calc(49% - 16px) !important;
        display: flex !important;
    }

    #hs_cos_wrapper_widget_1761298067647 .team-page.variation_12 .member-profile {
        padding: 30px !important;
        height: auto !important;
        min-height: 10rem !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .member-profile {
        min-height: 270px !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 {
        padding: 0px !important;
    }

    #hs_cos_wrapper_widget_1761298067647 .team-page.variation_12 {
        padding: 0px !important;
    }

    /* --------------------------------- Menzolit - About Us  -------------------------------  */

    #hs_cos_wrapper_widget_1760356893067 .menu-tag {
        height: unset !important;
        min-height: 56px;
    }

    #hs_cos_wrapper_widget_1759734759852 .feature-page .feature-inner-wrapper .column-item {
        padding: 40px 30px !important;
    }

    #hs_cos_wrapper_widget_1760350702836 .feature-page.variation-38 .image-with-overlay img {
        min-height: unset !important;
    }

    /* ------------------------------- Menzolit - Resourse Detail------------------- */
    #hs_cos_wrapper_module_1760610213624 .variation-87 .three-column .inner_col {
        width: calc(50% - 17.3px);
    }

    /*  Menzolit - co-Development   */
    #hs_cos_wrapper_widget_1760698657191 .feature-page .two-column-wrapper .column-item,
    #hs_cos_wrapper_module_17786646963364 .feature-page .two-column-wrapper .column-item {
        width: calc(50% - 0px) !important;
    }

    #hs_cos_wrapper_widget_1760698657191 .feature-page.variation-28 .column-content,
    #hs_cos_wrapper_module_17786646963364 .feature-page.variation-28 .column-content {
        padding: 25px !important;
    }


    /*   ---------------------Blogs------------- */

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .h5_team_name {
        min-height: 70px !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .para_blue {
        min-height: 65px !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .para_blue br {
        display: none;
    }

    #hs_cos_wrapper_module_17794397546035 .hs-img-slider__slide {
        min-height: clamp(280px, 55vw, 366px);
    }


    #hs_cos_wrapper_module_17794397546035 .hs-img-slider__content {
        min-height: 0px;
    }


}

@media (max-width: 991.92px) {

    .h1_white,
    .h2_white,
    .h2_blue {
        font-size: 30px !important;
    }

    .h3_blue,
    .h3_company_slider {
        font-size: 22px !important;
    }

    .h4_white,
    .h4_blue {
        font-size: 18px !important;
    }

    .h5_blog,
    .h5_blog_white,
    .h5_team_name,
    .product_name {
        font-size: 16px !important;
    }

    .para_white,
    .para_blue {
        font-size: 16px !important;
    }

    /*   ----------------------------Menzolit-Home----------------------------- */

    .hs-content-id-281776072903 .full-width-content-wrapper .section-content .para_white br {
        display: none;
    }

    #hs_cos_wrapper_widget_1759841919276 .feature-inner-wrapper.variation-1 .right-content {
        padding: 80px 0px 0px;
    }

    #hs_cos_wrapper_module_1759676574548 .feature-page.variation-31 .column-item,
    #hs_cos_wrapper_module_17597360499242 .feature-page.variation-31 .column-item {
        width: calc(33.33% - 30px);
    }

    #hs_cos_wrapper_module_17599017622414 .feature-inner-wrapper.variation-1 .right-content {
        padding: 80px 0px;
    }

    #hs_cos_wrapper_module_17596773702632 .variation-87 .three-column .inner_col {
        width: calc(50% - 17.3px);
    }

    /* ---------------------------------- Menzolit-About Us -------------------------------  */
    #hs_cos_wrapper_widget_1760436890722 .steps--section.section_variation_1 .steps--section-wrap {
        grid-gap: 0px;
    }

    #hs_cos_wrapper_widget_1760436890722 .steps--section .steps--section-wrap {
        flex-wrap: nowrap;
    }

    #hs_cos_wrapper_widget_1760436890722 .steps--section .step-item {
        margin-bottom: 0px !important;
    }

    #hs_cos_wrapper_widget_1760356893067 .feature-page.variation-43 .feature-inner-wrapper {
        gap: 30px !important;
    }

    #hs_cos_wrapper_widget_1760356893067 .menu-column {
        width: calc(30% - 0px) !important;
    }

    #hs_cos_wrapper_widget_1760356893067 .menu-tag {
        height: unset !important;
        min-height: 50px !important;
    }

    #hs_cos_wrapper_widget_1759734759852 .variation-7 .feature-inner-wrapper .column-item {
        padding: 0 0 50px !important;
    }

    #hs_cos_wrapper_widget_1772001436384 .client-logos--section,
    #hs_cos_wrapper_module_17786543558166 .client-logos--section {
        padding: 50px 0 50px !important;
    }

    #hs_cos_wrapper_module_17603603659744 .feature-page .feature-inner-wrapper .item-1 {
        padding: 60px 60px 0px !important;
    }

    #hs_cos_wrapper_widget_1760350702836 .feature-page.variation-38 .overlay-content-box {
        height: unset !important;
    }

  
  #hs_cos_wrapper_module_17791005348985 .menzolit_company .overlay-content-box {
        height: unset !important;
}
  

    /*   ---------------------------Menzolit sustainability---------- */

    #hs_cos_wrapper_widget_1760609778312 .feature-page.variation-36 .feature-inner-wrapper {
        gap: 60px;
    }

    #hs_cos_wrapper_widget_1760609778312 .feature-page.variation-36 .right-content {
        padding-left: 0px;
    }

    /*     #hs_cos_wrapper_widget_1774523040617 .spm-logo-slider .spm-logo-slider__row .spm__logos {
          justify-content: space-evenly;
      } */

    /* -----------------------------------------------Menzolit Product Detail--------------------------------------- */
    /*   #hs_cos_wrapper_module_17610287744142
          .feature-inner-wrapper.variation-1
          .left-content
          .image-left {
          padding-top: 40px;
        } */

    #hs_cos_wrapper_module_17610287744142 .feature-inner-wrapper.variation-1 .right-content {
        padding: 40px 0px;
        width: 100% !important;
    }

    #hs_cos_wrapper_widget_1772518967296 .feature-page.variation-31 .column-item {
        flex: 0 0 calc(50.33% - 20px);
        max-width: calc(46.33% - 0px);
    }

    /* -----------------------------------------------Menzolit Product Detail--------------------------------------- */
    #hs_cos_wrapper_module_17606766776212 .feature-inner-wrapper.variation-1 .right-content {
        padding: 80px 0px 20px;
    }

    #hs_cos_wrapper_module_17606858454824 .feature-inner-wrapper.variation-1 .right-content {
        padding: 80px 0px 0px;
    }

    /* ---------------------------------- Co-deveopment Service Detail-------------------------------  */
    #hs_cos_wrapper_module_17606881321155 .feature-inner-wrapper.variation-1 .right-content,
    #hs_cos_wrapper_module_17725454554195 .feature-inner-wrapper.variation-1 .right-content {
        padding: 40px 0px 20px;
    }

    .hs-content-id-289305374953 #hs_cos_wrapper_widget_1761124113786 .variation-63 .three-column-wrapper .item-title {
        min-height: unset !important;
    }

    /*  ------------------- Case Study Detail-------------------- */

    #hs_cos_wrapper_module_1760610213624 .variation-87 .three-column .inner_col {
        width: calc(50% - 17.3px);
    }

    /*----------------------------Menzolit Product Summary------------------ */
    #hs_cos_wrapper_widget_1760698657191 .feature-page.variation-28 .column-content,
    #hs_cos_wrapper_module_17786646963364 .feature-page.variation-28 .column-content {
        padding: 20px !important;
    }

    /*  -------------------Product Summary Pages --------------------------------------- */

    /*  BMC   */

    #hs_cos_wrapper_widget_1760698657191 .feature-page .feature-inner-wrapper .two-column-wrapper .image-column .image-wrapper img,
    #hs_cos_wrapper_module_17786646963364 .feature-page .feature-inner-wrapper .two-column-wrapper .image-column .image-wrapper img {
        height: auto !important;
        aspect-ratio: 0 !important;
    }

    /*   Menzolit Industry pages Second Section addded the Flex direction Reverse */

    #hs_cos_wrapper_module_17606102566095 .feature-page .feature-inner-wrapper.variation-1.row-reverse {
        flex-direction: column-reverse !important;
    }

    /*  -------------------------Industries - Automotive-------------------------------  */
    #hs_cos_wrapper_module_17606102566095 .feature-inner-wrapper.variation-1 .right-content {
        padding: 20px 0px 10px;
    }

    #hs_cos_wrapper_widget_1772561749528 .feature-page.variation-41 .slider-outer .four_col_wrap {
        grid-gap: 45px;
    }

    /* --------------------- Industries - Automotive --------------------- */
    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .repeater-content {
        padding: 0 20px 0 0 !important;
        width: 50% !important;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-inner-wrapper .section-button {
        /*         display: none; */
        justify-content: center;
    }

    #hs_cos_wrapper_widget_1760367631976 .wrapper-title {
        min-height: 80px !important;
    }

    #hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-title {
        margin: 15px 0 0px !important;
    }

    /*  -------------------Menzolit - Industries - Mass Transport--------------------------   */
    #hs_cos_wrapper_widget_1772561749528 .feature-page.variation-41 .slider-outer .four_col_wrap {
        grid-gap: 26px;
    }

    /* --------------------------------- Menzolit - Contact Us Form -------------------------------  */
    .hs-content-id-290473801917 .legal-consent-container .hs-form-booleancheckbox-display>span {
        margin-left: 30px !important;
    }

    /* -------------------------Menzolit-contact---------------------------------- */
    #hs_cos_wrapper_widget_1761298067647 .team-page.variation_12 .member-profile {
        min-height: unset !important;
        height: 150px !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .member-profile {
        min-height: 285px !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page .team-column-bar .img-column {
        width: calc(47% - 0px) !important;
    }

    #hs_cos_wrapper_widget_1761027894848 .feature-page .feature-inner-wrapper .three-column-wrapper .wrapper-title {
        margin: 20px 0 0px;
        min-height: 45px;
    }

    /*   --------------------------------Blog Section------------------ */

    .menzolit_blog_sec a {
        font-size: 16px;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .h5_team_name {
        min-height: 80px !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .para_blue {
        min-height: 80px !important;
    }

}

@media (max-width: 767px) {
    .para_gap_adjustment {
        margin-top: -40px;
    }

    .h1_white,
    .h2_white,
    .h2_blue {
        font-size: 24px !important;
        text-align: left;
    }

    .h3_blue,
    .h3_company_slider {
        font-size: 20px !important;
    }

    .h4_white,
    .h4_blue {
        font-size: 18px !important;
    }

    .h5_blog,
    .h5_blog_white,
    .h5_team_name,
    .product_name {
        font-size: 16px !important;
    }

    .para_white,
    .para_blue {
        font-size: 14px !important;
    }

    .scndry-btn {
        width: fit-content !important;
        font-size: 14px !important;
        padding: 8px 18px !important;
    }

    /*  Bannner image center Alignemnt  */

    .header--section.full-width-content--section.section_variation_30 .slider-item {
        padding: 100px 20px !important;
        background-position: center !important;
    }

    #hs_cos_wrapper_dnd_area-module-2 .header--section.full-width-content--section.section_variation_30 .slider-item.item-1 {
        height: unset !important;
    }

    /*   ----------------------------Menzolit-Home----------------------------- */
    #hs_cos_wrapper_widget_1759841919276 .feature-inner-wrapper.variation-1 .right-content {
        padding: 50px 0px 0px;
    }

    #hs_cos_wrapper_widget_1759841919276 .feature-page.variation-1 .install-btn,
    #hs_cos_wrapper_module_17599017622414 .feature-page.variation-1 .install-btn {
        margin-bottom: 0px;
    }

    #hs_cos_wrapper_widget_1759760016244_ .para_blue {
        width: 100%;
        margin: 0 auto;
    }

    #hs_cos_wrapper_widget_1759673825168 .team-page.variation_5 .owl-carousel .owl-nav {
        justify-content: space-between;
    }

    #hs_cos_wrapper_module_1759676574548 .feature-page.variation-31 .three-column-wrapper,
    #hs_cos_wrapper_module_17597360499242 .feature-page.variation-31 .three-column-wrapper {
        gap: 25px !important;
    }

    #hs_cos_wrapper_module_1759676574548 .feature-page.variation-31 .column-item,
    #hs_cos_wrapper_module_17597360499242 .feature-page.variation-31 .column-item {
        text-align: center;
        align-items: center;
    }

    #hs_cos_wrapper_module_17599017622414 .feature-inner-wrapper.variation-1 .right-content {
        padding: 50px 0px;
    }

    #hs_cos_wrapper_widget_1759734759852 .main-title h4 {
        font-size: 24px !important;
    }

    #hs_cos_wrapper_widget_1759734759852 .variation-7 .column-item {
        padding: 20px 20px 50px !important;
    }

    #hs_cos_wrapper_widget_1759734759852 .feature-page.variation-7 .feature-inner-wrapper {
        gap: 0px !important;
    }

    #hs_cos_wrapper_module_17596773702632 .variation-87 .three-column .inner_col {
        width: calc(100% - 0px);
    }

    #hs_cos_wrapper_widget_1759727720711 .gallery-section.variation_11 .six-col-inner {
        gap: 0px !important;
    }

    #hs_cos_wrapper_widget_1759727720711 .gallery-section.variation_11 .gallery-content h2 {
        text-align: center !important;
    }

    /* -----------------------------------------------Menzolit Product Detail Responsive--------------------------------------- */
    #hs_cos_wrapper_widget_1772518967296 .feature-page.variation-31 .column-item {
        max-width: 100% !important;
        flex: 100%;
    }

    #hs_cos_wrapper_widget_1772518967296 .feature-page .section-header .section-title h2 {
        font-size: 28px !important;
    }

    #hs_cos_wrapper_module_17610287744142 .feature-page.variation-1 .section-subtitle h2 {
        text-align: left;
    }

    /* -----------------------------------------------Menzolit Certifications & Compliance Hub--------------------------------------- */

    .hs-content-id-288293884153 #hs_cos_wrapper_module_17608007540913 {
        margin-top: -2.3rem;
    }

    /* ---------------------------------- Co-deveopment Service Detail-------------------------------  */
    #hs_cos_wrapper_module_17606881321155 .feature-inner-wrapper.variation-1 .right-content,
    #hs_cos_wrapper_module_17725454554195 .feature-inner-wrapper.variation-1 .right-content {
        padding: 30px 0px;
    }

    #hs_cos_wrapper_widget_1760799031416 .client-logos--section .tabs--inner-wrapper .icons--wrap {
        gap: 0px;
        flex-wrap: wrap;
        padding-top: 0px;
    }

    /*  ------------------- Case Study Detail-------------------- */

    #hs_cos_wrapper_module_1760610213624 .variation-87 .three-column .inner_col {
        width: calc(100% - 0px);
    }

    /*  -------------------Product Summary Pages --------------------------------------- */

    /*  BMC   */

    #hs_cos_wrapper_widget_1760698657191 .feature-page .feature-inner-wrapper .two-column-wrapper .image-column .image-wrapper img,
    #hs_cos_wrapper_module_17786646963364 .feature-page .feature-inner-wrapper .two-column-wrapper .image-column .image-wrapper img {
        height: auto !important;
        aspect-ratio: 0 !important;
    }

    /*  -------------------Technical services Pages --------------------------------------- */
    .hs-content-id-288889418985 #hs_cos_wrapper_widget_1760693040851_ .para_blue {
        margin-top: -40px;
    }

    /*  -------------------Product Summary Pages (or) All banner heading---------------- */

    .hs-content-id-375005139185 .full-width-content--section .section-tagline h1,
    .hs-content-id-378258410728 .full-width-content--section .section-tagline h1,
    .hs-content-id-378318278879 .full-width-content--section .section-tagline h1,
    .hs-content-id-289305374953 .full-width-content--section .section-tagline h1,
    .hs-content-id-379173305557 .full-width-content--section .section-tagline h1,
    .hs-content-id-379173685495 .full-width-content--section .section-tagline h1,
    .hs-content-id-379173897462 .full-width-content--section .section-tagline h1,
    .hs-content-id-379242710245 .full-width-content--section .section-tagline h1,
    .hs-content-id-379279971549 .full-width-content--section .section-tagline h1,
    .hs-content-id-379281762490 .full-width-content--section .section-tagline h1,
    .hs-content-id-379282223296 .full-width-content--section .section-tagline h1,
    .hs-content-id-376097091802 .full-width-content--section .section-tagline h1,
    .hs-content-id-281776072903 .full-width-content--section .section-tagline h1,
    .hs-content-id-287827417335 .full-width-content--section .section-tagline h1,
    .hs-content-id-288293884153 .full-width-content--section .section-tagline h1,
    .hs-content-id-286373934288 .full-width-content--section .section-tagline h1,
    .hs-content-id-288889418985 .full-width-content--section .section-tagline h1 {
        text-align: center !important;
    }

    /* ----------------------Menzolit-About Us--------------------  */
  
    #hs_cos_wrapper_module_17791005348985 .image-with-overlay-wrap .image-with-overlay{
        min-height: unset !important;
}
  
  #hs_cos_wrapper_module_17791005348985 .image-with-overlay-wrap .image-with-overlay img{
        min-height: unset !important;
}

    #hs_cos_wrapper_widget_1760362519018 .senata_grp_img {
        height: 28px !important;
    }

    #hs_cos_wrapper_widget_1760436890722 .steps--section .steps--section-header .steps-nav {
        top: -50px;
    }

    #hs_cos_wrapper_widget_1760436890722 .steps-viewport .steps-track .step__title {
        height: 70px;
    }

    #hs_cos_wrapper_module_17603603659744 .feature-page.variation-7 .column-item {
        padding: 0px 0px 30px !important;
    }

    #hs_cos_wrapper_widget_1760356893067 .menu-tag {
        min-height: 0px;
    }

    #hs_cos_wrapper_widget_1760356893067 .feature-page.variation-43 .cta-btn {
        padding: 0px !important;
    }

    .hs-content-id-286373934288 #hs_cos_wrapper_widget_1772001436384 .client-logos--section .section-subtitle .para_blue {
        text-align: left;
    }

    #hs_cos_wrapper_module_17786543558166 .client-logos--section .section-subtitle .para_blue {
        text-align: left;
    }

    #hs_cos_wrapper_module_17603603659744 .feature-page.variation-7 .main-title h4 {
        font-size: 24px;
    }

    #hs_cos_wrapper_widget_1760356893067 .menu-column {
        width: calc(100% - 0px) !important;
    }

    #hs_cos_wrapper_widget_1760356893067 .menu-tag {
        height: unset !important;
        min-height: unset !important;
    }

    #hs_cos_wrapper_widget_1760356893067 .column-item .service-menu {
        gap: 0px;
    }

    #hs_cos_wrapper_widget_1759734759852 .variation-7 .feature-inner-wrapper .column-item {
        padding: 0px !important;
    }

    #hs_cos_wrapper_widget_1759734759852 .variation-7 .feature-inner-wrapper .item-2 {
        padding-bottom: 40px !important;
    }

    #hs_cos_wrapper_widget_1759734759852 .variation-7 .feature-inner-wrapper .item-1 {
        padding-bottom: 40px !important;
    }

    #hs_cos_wrapper_widget_1772001436384 .client-logos--section,
    #hs_cos_wrapper_module_17786543558166 .client-logos--section {
        padding: 0px !important;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .column-item {
        row-gap: 40px !important;
    }

    /* ----------------------Co-deveopment Service Detail--------------------  */
    #hs_cos_wrapper_widget_1761117085645 .feature-page.variation-48 .step-index {
        height: 64px;
        width: 64px;
        margin-bottom: 20px;
    }

    #hs_cos_wrapper_widget_1761115940622 .feature-inner-wrapper .content_wrapper {
        text-align: left;
    }

    #hs_cos_wrapper_widget_1760698657191 .feature-page .two-column-wrapper,
    #hs_cos_wrapper_module_17786646963364 .feature-page .two-column-wrapper {
        flex-direction: column !important;
    }

    #hs_cos_wrapper_widget_1760698657191 .feature-page .two-column-wrapper .column-item,
    #hs_cos_wrapper_module_17786646963364 .feature-page .two-column-wrapper .column-item {
        width: 100% !important;
    }

    #hs_cos_wrapper_widget_1761124113786 .variation-63 .three-column-wrapper .item-title {
        min-height: 1.5rem !important;
    }

    /* --------------------- Industries - Automotive --------------------- */
    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .repeater-content {
        width: 100% !important;
        text-align: center;
        align-items: center;
    }

    #hs_cos_wrapper_widget_1760367631976 .wrapper-title {
        justify-content: center;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .title-items .content_wrapper h2,
    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .title-items .content_wrapper p {
        text-align: center !important;
    }

    /*  -------------------Menzolit - Industries - Mass Transport--------------------------   */
    #hs_cos_wrapper_widget_1772561749528 .feature-page.variation-41 .slider-outer .four_col_wrap .repeater-content {
        width: calc(100% - 0px);
    }

    .hs-content-id-376097091802 .full-width-content--section .section-tagline h1 br {
        display: none;
    }

    #hs_cos_wrapper_widget_1772561749528 .feature-page .repeater-content .wrapper-title {
        margin: 20px 0 0px;
    }

    /*  -----------------Menzolit - Sustainability--------------------------- */
    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .section-button {
        justify-content: center;
    }

    #hs_cos_wrapper_widget_1760609778312 .feature-page.variation-36 .right-content {
        padding: 20px 20px 0;
    }

    .hs-content-id-287474968802 #hs_cos_wrapper_module_17603644892383 .feature-page.variation-25 .content_wrapper {
        text-align: left;
    }

    #hs_cos_wrapper_module_17781547747516 .client-logos--section .tabs--section-header .section-subtitle,
    #hs_cos_wrapper_widget_1772001436384 .client-logos--section .tabs--section-header .section-subtitle,
    #hs_cos_wrapper_module_17786543558166 .client-logos--section .tabs--section-header .section-subtitle {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #hs_cos_wrapper_module_17781547747516 .client-logos--section .client-logos-icons,
    #hs_cos_wrapper_widget_1772001436384 .client-logos--section .client-logos-icons,
    #hs_cos_wrapper_module_17786543558166 .client-logos--section .client-logos-icons {
        width: calc(25% - 0px) !important;
    }

    #hs_cos_wrapper_module_17781547747516 .client-logos--section .icons--wrap,
    #hs_cos_wrapper_widget_1772001436384 .client-logos--section .icons--wrap,
    #hs_cos_wrapper_module_17786543558166 .client-logos--section .icons--wrap {
        justify-content: space-evenly;
        align-items: center;
    }

    #hs_cos_wrapper_module_17763460924984 .gallery-section.variation_11 .photos {
        width: calc(22.3% - 0px) !important;
    }

    #hs_cos_wrapper_module_17763460924984 .gallery-section .gallery-content .para_blue br {
        display: none;
    }

    #hs_cos_wrapper_widget_1760367631976 .feature-page.variation-29 .feature-inner-wrapper {
        gap: 20px;
    }

    /*  -----------------Menzolit - Innovation & Strategic Partnerships--------------------------- */
    #hs_cos_wrapper_module_17733849824475 .feature-page.variation-41 .slider-outer .four_col_wrap,
    .feature-page.variation-87 .three-column {
        flex-direction: row;
    }

    #hs_cos_wrapper_module_17603644892383 .feature-page .content_wrapper .para_blue {
        text-align: start;
    }

    /* -----------------------------------------------Menzolit Product Detail--------------------------------------- */
    #hs_cos_wrapper_module_17606766776212 .feature-inner-wrapper.variation-1 .right-content {
        padding: 40px 0px 0px;
    }

    #hs_cos_wrapper_module_17733849824475 .feature-page .feature-inner-wrapper .content-row {
        gap: 0px !important;
    }

    /*  -----------------Menzolit - Innovation & Strategic Partnerships--------------------------- */
    #hs_cos_wrapper_widget_1760361783151_ .h2_blue {
        padding: 0px !important;
    }

    #hs_cos_wrapper_widget_1774523040617 .spm__inner {
        gap: 50px;
    }

    #hs_cos_wrapper_widget_1774523040617 .spm__right {
        padding: 0px;
    }

    /*  Menzolit-Technical Services  */

    #hs_cos_wrapper_widget_1761027894848 .feature-page .feature-inner-wrapper .three-column-wrapper .wrapper-title {
        min-height: 1.8rem;
    }

    #hs_cos_wrapper_widget_1761027894848 .feature-page .feature-inner-wrapper .three-column-wrapper .wrapper-content {
        margin-bottom: 40px;
    }

    #hs_cos_wrapper_widget_1761027894848 .feature-page.variation-34 .section-content h2 {
        text-align: center;
    }

    #hs_cos_wrapper_widget_1774523040617 .spm-logo-slider .spm-logo-slider__row .spm__logos {
        justify-content: space-between;
        gap: 0px !important;
    }

    #hs_cos_wrapper_module_17766808615826 .gallery-section.variation_11 .photos {
        width: calc(23.3% - 0px) !important;
    }

    /* --------------------------------- Menzolit - Thankyou Page -------------------------------  */

    #hs_cos_wrapper_widget_1778667991143 .button-inner-wrapper {
        margin-top: -40px;
    }

    #hs_cos_wrapper_module_17606940457905_ .h2_blue {
        text-align: center;
    }

    /* --------------------------------- Menzolit - Contact Us Form -------------------------------  */

    .hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section .form_inner_wrapper {
        flex-direction: column;
    }

    .hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section .title_wrap {
        width: 100%;
    }

    .hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section .form--wrapper {
        width: 100%;
    }

    .hs-content-id-290473801917 #hs_cos_wrapper_widget_1778230776416 .form--section form .legal-consent-container .hs-form-booleancheckbox label span {
        text-align: left;
    }

    /* -----------------------contact ---------------------------------------    */

    #hs_cos_wrapper_widget_1761298067647 .team-page .team-column-bar .img-column {
        width: 100% !important;
        display: block !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page .team-column-bar .img-column {
        width: 100% !important;
        display: block !important;
    }

    #hs_cos_wrapper_widget_1761298067647 .team-page.variation_12 .member-profile {
        min-height: unset !important;
        height: auto !important;
        padding: 20px !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .member-profile {
        min-height: unset !important;
        height: auto !important;
        padding: 20px !important;
    }

    #hs_cos_wrapper_widget_1761298067647 .team-page .team-inner-wrapper .page-content .product_name {
        text-align: left;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .page-content {
        text-align: left;
    }

    /*   ---------------------------Blogs--------------------------- */

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .h5_team_name {
        min-height: 60px !important;
    }

    #hs_cos_wrapper_module_17613023221134 .team-page.variation_12 .img-column .member-name .para_blue {
        min-height: 60px !important;
    }

}