/* 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 ---------------------------------------------------------- */
/*--------------- Common Tags ---------- */
.h1_blue {
  color: #284980 !important;
}
.h1_white {
  color: #f7f8fa !important;
}
.h1_grad {
  background: linear-gradient(to right, #00aeef, #284980);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 15px;
  font-weight: 600;
}
.h2_blue {
  color: #284980 !important;
}
.h2_white {
  color: #f7f8fa !important;
}
.color_white {
  color: #f7f8fa !important;
  margin-bottom: 14px !important;
}
.h3_bold {
  padding: 20px 0px;
  font-weight: 700;
}
.h3_bold_blue {
  font-weight: 600;
  font-size: 28px;
  color: #284980;
}
.h3_bold_white {
  font-weight: 600;
  font-size: 28px;
  color: #f7f8fa;
}
.h2_grad {
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.h2_grad_med {
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.h3_grad_med {
  font-weight: 500;
  font-size: 24px;
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.h3_grad {
  font-weight: 700;
  font-size: 24px;
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /*   color: transparent; */
}
.h5_white {
  color: #f7f8fa !important;
  padding: 20px 0px;
}
.h6_color {
  color: #1a2333 !important;
}
.h6_white {
  color: #f7f8fa !important;
  font-weight: 400 !important;
}
.color_white {
  color: #f7f8fa !important;
}
.para_blue {
  font-size: 17px !important;
  color: #1a2333 !important;
}
.active .para_blue {
  font-size: 18px !important;
  font-weight: 700;
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* ---------------Header-------------- */
/* .header_section .desktop-header {
  gap: 30px !important;
}
.head-search-cta .search-wrap .search-icon{
  background: #f7f8fa;
   border-radius: 40px;
    padding: 10px;
}
.head-search-cta .search-wrap{
margin-top:8px;
}
.search-open {
  padding: 20px;
} */

/* ---------------FORM----------------  */
form {
  padding: unset !important;
}
.hsfc-Step__Content button {
  font-size: 16px !important;
  padding: 12px 40px !important;
  font-weight: 400 !important;
}
.hsfc-FieldLabel span {
  font-size: 16px !important;
}

.hsfc-Step__Content {
  padding: unset !important;
}
.hsfc-DropdownOptions__List li {
  font-size: 14px !important;
}
.hsfc-ErrorAlert {
  font-size: 14px !important;
}
form input,
textarea {
  background: #d0d5dd !important;
  font-size: 16px !important;
}
#hs_form_target_widget_1763104647299 form .hs-button {
  background-color: #d42e12 !important;
  font-size: 16px !important;
  min-width: 0 !important;
  width: auto !important;
  padding: 12px 40px !important;
}

#hs_form_target_widget_1763104647299 .hs-form-booleancheckbox {
  margin-bottom: 24px;
  margin-top: 0px;
}

/* -----------------------------------------------LMS Home--------------------------------------- */

/* --------------------Banner Section ---------------------------*/
#hs_cos_wrapper_widget_1762930970372 .section-content {
  padding: 0px;
}
#hs_cos_wrapper_widget_1762930970372 .section-content h1 {
  font-weight: 500 !important;
}
/* #hs_cos_wrapper_widget_1762930970372 .section-content h1 span{
  font-weight: 500 !important;
} */
#hs_cos_wrapper_widget_1762930970372 .section-content .h1_grad {
  padding-bottom: 0px;
}
#hs_cos_wrapper_widget_1762930970372 .section-content h6 {
  padding: 20px 0px !important;
}
#hs_cos_wrapper_widget_1762930970372 .slider-outer {
  padding: 0px !important;
}
#hs_cos_wrapper_widget_1762930970372 .slider-item {
  /*   height: 100vh; */
  padding: 150px 0px 180px;
}
#hs_cos_wrapper_widget_1762930970372 .slider-item .full-width-content-wrapper {
  padding: 0px 90px;
}
#hs_cos_wrapper_widget_1762930970372 .section-button .prmy-btn {
  border-radius: 40px !important;
}
#hs_cos_wrapper_widget_1762930970372 .owl-dots .owl-dot span {
  border-radius: 20px;
  height: 4px;
  margin: 0 6px;
  width: 55px;
}
/* -------------------Specialists in ComplexMetal--------------- */
.wrapper-title p {
  font-size: 16px;
  color: #f7f8fa !important;
}

#owl-carousel-41 .owl-stage {
  width: 1378px !important;
}
#hs_cos_wrapper_dnd_area-module-12 .content-row {
  align-items: start;
  margin-bottom: 80px;
}
#owl-carousel-41 .repeater-content {
  padding: 40px 15px 30px 20px;
}
#owl-carousel-41 {
  padding: 0px !important;
}
#owl-carousel-41 .wrapper-icon {
  height: 62px !important;
  width: 62px !important;
  margin-top: 0px !important;
}
#owl-carousel-41 .wrapper-icon img {
  max-width: 22px !important;
}
#owl-carousel-41 .wrapper-title {
  margin-top: 50px;
}
#owl-carousel-41 .item-link {
  margin-top: 0px !important;
}

#owl-carousel-41 .owl-nav {
  display: none;
}

.content_wrap .section-content h3 {
  margin: 18px 0px !important;
}

/* ---------------------------Full Width Image--------------------  */
#hs_cos_wrapper_widget_1762934339719_ {
  margin-bottom: 0px;
}

/* ---------------------------Tab Section--------------- */

#hs_cos_wrapper_widget_1762934705943 #tabs-nav {
  width: 38%;
}
#hs_cos_wrapper_widget_1762934705943 .tabs--wrap {
  justify-content: space-between;
}
.tabs--wrap #tabs-nav li a {
  opacity: 1 !important;
}
#hs_cos_wrapper_widget_1762934705943 #tabs-nav {
  gap: 15px !important;
}
#hs_cos_wrapper_widget_1762934705943 #tabs-nav li {
  list-style: disc;
  margin-left: 22px;
}

#tabs-content-wrap .tab_images {
  object-fit: cover;
  width: 100%;
  height: 400px;
}

#hs_cos_wrapper_widget_1762934705943 #tabs-content-wrap {
  width: 58%;
}
#tabs-content-wrap .tab-content h6 {
  margin-top: 12px;
}
.tab-content 
/* ---------------Our Network of Trust------------------ */
#hs_cos_wrapper_widget_1762947587206 .owl-nav .owl-next {
  display: none !important;
}
#hs_cos_wrapper_widget_1762947587206 .owl-nav .owl-prev {
  display: none !important;
}
#hs_cos_wrapper_widget_1762947587206 .owl-nav .owl-next span {
  visibility: hidden !important;
}
#hs_cos_wrapper_widget_1762947587206 .section-subtitle .h2_blue {
  margin-bottom: 15px;
}
#hs_cos_wrapper_widget_1762947587206 .owl-carousel .owl-item {
  margin-right: 20px !important;
}

#hs_cos_wrapper_widget_1762947587206
  .client-logos--section
  .owl-stage-outer
  .client-logos-icons {
  width: calc(100% - 15px) !important;
  display: flex;
  justify-content: center;
}

#hs_cos_wrapper_widget_1762947587206 .owl-carousel .owl-item img {
  max-width: 100% !important;
  width: auto !important;
  height: 70px !important;
}
/* -----------------Metal Expertise That GALLERYYYYYYYYYY------------------- */

/* Container should be relative */
#hs_cos_wrapper_widget_1763018595290 .gallery-img {
  position: relative;
  overflow: hidden;
}
#hs_cos_wrapper_widget_1763018595290
  .gallery--item:hover
  .gallery-focus-heading
  h3 {
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* Blue gradient overlay */
#hs_cos_wrapper_widget_1763018595290 .gallery-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 174, 239, 1),
    rgba(40, 73, 128, 0.8)
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}

#hs_cos_wrapper_widget_1763018595290 .gallery-img:hover::after {
  opacity: 1;
}

/* Hover text container */
#hs_cos_wrapper_widget_1763018595290 .gallery-hover-content {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#hs_cos_wrapper_widget_1763018595290 .gallery-hover-content h6 {
  color: #ffffff !important;
  width: 60%;
  text-align: left;
}
/* Show on hover */
#hs_cos_wrapper_widget_1763018595290 .gallery-img:hover .gallery-hover-content {
  opacity: 1;
}
/* Right-side icon button */
#hs_cos_wrapper_widget_1763018595290 .hover-icon-link {
  position: absolute;
  right: 60px;
  /*   transform: translateY(100%); */
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: transparent;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
}
#hs_cos_wrapper_widget_1763018595290 .learn-more-text-wrapper {
  position: absolute;
  top: 49%;
  left: 55%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
  z-index: 4;
  text-decoration: underline;
}
#hs_cos_wrapper_widget_1763018595290 .hover-icon-link img {
  width: 135px;
  height: auto;
  opacity: 1;
  transition: none;
}
#hs_cos_wrapper_widget_1763018595290 .hover-icon-link:hover img {
  opacity: 1;
}

#hs_cos_wrapper_widget_1763018595290 .hover-icon-link {
  color: #fff;
}

#hs_cos_wrapper_widget_1763019060245 h2 {
  margin-bottom: 12px;
}
/* -----------------Where Innovation Meets Precision---------------- */
.has-icon {
  display: flex;
  align-items: start;
  gap: 10px;
}
.has-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("/hubfs/LMS%20from%20Design/icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* ----------------Certificates That Speaks------------------ */
#hs_cos_wrapper_widget_1763097521916
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
#hs_cos_wrapper_widget_1763097521916
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
#hs_cos_wrapper_module_17649365651633
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}

#hs_cos_wrapper_module_17649365651633
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
/* ---------------Shape the Future of Metal — and Your Career-------------- */

#hs_cos_wrapper_widget_1763100584365 h2 {
  margin-bottom: 12px;
}

#hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .item-1 {
  padding: 0px !important;
  background: unset !important;
}
#hs_cos_wrapper_widget_1763101594734
  .feature-inner-wrapper
  .item-1
  .image-wrapper {
  margin-bottom: 30px;
}

#hs_cos_wrapper_widget_1763101594734
  .feature-inner-wrapper
  .content_wrapper
  h6 {
  padding: 15px 0px;
  min-height: 100px;
}
#hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .section-button {
  text-align: left;
  margin-top: unset;
}
#hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .item-2 {
  padding: 0px !important;
  background: unset !important;
}

#hs_cos_wrapper_widget_1763101594734
  .feature-inner-wrapper
  .item-2
  .image-wrapper {
  margin-bottom: 30px;
}

/* --------------------BLOG RESOURCES----------------------- */
/* ------------Resources BLOG------------------------ */
#hs_cos_wrapper_widget_1763015802704
  .feature-page.variation-87
  .feature-inner-wrapper {
  display: none;
}

#hs_cos_wrapper_widget_1763015802704
  .feature-page.variation-87
  .three-column
  .inner_col {
  width: calc(23.33% - 21.3px);
  margin: 0 auto;
}

.variation-87 .feature-inner-wrapper .top_section {
  margin-bottom: 40px !important;
}
.variation-87 .feature-inner-wrapper .three-column .blog_category {
  border: 1px solid white;
  border-radius: 40px;
  background: #284980 !important;
  padding: 5px 15px !important;
}
.variation-87 .feature-inner-wrapper .three-column .blog_category h5 {
  color: white !important;
  font-family: inter;
  font-size: 16px;
  font-weight: 400 !important;
}

.variation-87 .feature-inner-wrapper .section_button {
  margin-top: 20px !important;
}
#hs_cos_wrapper_widget_1763015802704 .description h6 {
  font-size: 14px;
}
/* ------------------------------------------------------LMS Company------------------------------------------------------------- */

#hs_cos_wrapper_widget_1762930970372 .slider-item .h6_color {
  padding: 0px;
}
/* --------WHO WE ARE-------------- */
#hs_cos_wrapper_widget_1763452172945 .section-content * {
  padding: 10px 0px;
}

#hs_cos_wrapper_widget_1763452172945 .section-slider {
  padding: 0px 0px 20px;
}
#hs_cos_wrapper_widget_1763452172945 .slide-item .item-text h1 {
  font-size: 30px !important;
}

/* ---------------Engineering the Future of Mobility--------------- */
#hs_cos_wrapper_widget_1763453711773 .section-content .vision {
  margin: 25px 0px 20px;
}
#hs_cos_wrapper_widget_1763453711773 .section-content h3 {
  font-weight: 700;
}
#hs_cos_wrapper_widget_1763453711773 .section-content h6 {
  padding: 10px 0px;
}
#hs_cos_wrapper_widget_1763453711773 .section-content-col {
  padding: 80px 0px;
}
#hs_cos_wrapper_widget_1763453711773
  .section-content-col
  .language-btns-wrapper {
  margin: 0px !important;
}

/* --------What Drives Us Forward------------ */
#hs_cos_wrapper_widget_1763471668679 .column-item {
  row-gap: 30px;
}
#hs_cos_wrapper_widget_1763471668679 .wrapper-icon {
  height: 55px !important;
  width: 55px !important;
}
#hs_cos_wrapper_widget_1763471668679 .wrapper-inner-content .wrapper-title {
  flex: unset;
  margin: 15px 0px;
}
#hs_cos_wrapper_widget_1763471668679 .tagline h2 {
  margin-bottom: 12px;
}
#hs_cos_wrapper_widget_1763471668679 .wrapper-inner-content .wrapper-title h4 {
  font-weight: 500;
}
#hs_cos_wrapper_widget_1763471668679 .wrapper-inner-content .wrapper-text p {
  font-size: 16px;
  font-family: inter;
}

/* --------------------Timeline of Innovation------------------ */
#hs_cos_wrapper_widget_1763474223390 .steps-viewport .step-item {
  flex-basis: 26.3333% !important;
}
#hs_cos_wrapper_widget_1763474223390 .steps-viewport .timeline-year {
  color: #284980;
}
#hs_cos_wrapper_widget_1763474223390 .steps-viewport .year_title {
  color: #1a2333 !important;
  font-weight: 600;
  font-family: Sora, sans-serif;
}
.steps-nav .nav-btn {
  background: #f7f8fa !important;
  color: #d42e12 !important;
  height: 35px;
  width: 35px;
  font-weight: 600;
}
#hs_cos_wrapper_widget_1763474223390 .steps-nav span img {
  width: 20px;
}
/* ---------------------Strong Roots. Secure Future-------------------- */
/* BACKGROUND IMAGE OVERLAY ADJUST */

/* .hs-content-id-302842840262 .dnd_area-row-5-background-layers {
  position: relative;
  z-index: 1;
  overflow: hidden;
} */

/* .hs-content-id-302842840262 .dnd_area-row-5-background-layers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1; 
} */
/* BACKGROUND IMAGE OVERLAY ADJUST */

#hs_cos_wrapper_module_17641428811578 .hs_cos_wrapper_type_linked_image {
  justify-content: center;
}
#hs_cos_wrapper_module_17641428811578 img {
  width: 75%;
}
/* -----------------Our Technology – Where Precision Meets Motion---------------- */
#hs_cos_wrapper_widget_1763561110586 .h6_white {
  padding-bottom: 20px;
}
#hs_cos_wrapper_widget_1763561081530 .h6_white {
  border-left: 3px solid #d42e12;
  padding-left: 20px;
}
#hs_cos_wrapper_module_17635611359293 .h6_white {
  border-left: 3px solid #d42e12;
  padding-left: 20px;
}

/* ---------------Driven by Metal. Moved by Ideas------------ */
#hs_cos_wrapper_widget_1763563734941 h2 {
  margin-bottom: 10px;
}
#hs_cos_wrapper_widget_1763563734941 h6 {
  margin-bottom: 15px;
}
#hs_cos_wrapper_widget_1763563734941 .tab_sec h6 {
  border: 1px solid #555;
  padding: 15px 20px;
  border-bottom: none;
  border-left: none;
  border-right: none;
  margin-bottom: 0px;
}
#hs_cos_wrapper_widget_1763563734941 .tab_sec h6:last-child {
  border-bottom: 1px solid #555 !important;
}
#hs_cos_wrapper_widget_1763563734941 .tab_sec h6:hover {
  background-color: #d42e12;
  border: none;
  color: #fff;
}
#hs_cos_wrapper_widget_1763563734941 .tab_sec {
  padding-top: 20px;
}

/* ---------------Certifuicate----------- */
#hs_cos_wrapper_module_176536382479211
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
#hs_cos_wrapper_module_176536382479211
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
#hs_cos_wrapper_module_176536382479212
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}

#hs_cos_wrapper_module_176536382479212
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
/* ----------Improve NOI----------- */
#hs_cos_wrapper_widget_1763101594734
  .feature-inner-wrapper
  .three-column-wrapper {
  flex-wrap: nowrap;
}
#hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .column-item {
  padding: 30px 10px 40px 25px;
}
#hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .item-title {
  margin-bottom: 20px;
}
#hs_cos_wrapper_widget_1763101594734 .item-title h3 {
  min-height: 66px;
}
#hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .image-box {
  height: 130px;
  width: 130px;
}
#hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .image-box img {
  height: 130px;
}
#hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .item-content {
  margin-top: 35px;
}

/* ------------------------------------------------------LMS Industry ALL PAGE For the Certificate------------------------------------------------------------- */
/* ----------------------LMS Industry (Wehrtechnik und Verteidigung_freigegeben)--------------------- */
#hs_cos_wrapper_module_176547016054211
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
#hs_cos_wrapper_module_176547016054211
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
#hs_cos_wrapper_module_176547016054212
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}

#hs_cos_wrapper_module_176547016054212
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
/* LMS Industry (Industrieseite Schienenfahrzeugbau_freigegeben) */

#hs_cos_wrapper_module_176568372805411
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
#hs_cos_wrapper_module_176568372805411
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
#hs_cos_wrapper_module_176568372805412
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}

#hs_cos_wrapper_module_176568372805412
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}

/* ------------RAIL BUYER CHALLENGES & LMS SOLUTIONS---------------- */
#hs_cos_wrapper_widget_1763707688631 .description .h2_white {
  padding: 15px 0px;
}

#hs_cos_wrapper_widget_1763707688631 .bottom_section {
  background: linear-gradient(to right, #f5f7fa, #c7ccd6);
  grid-gap: 50px;
  padding: 24px 10px 24px 25px;
  align-items: start;
}

#hs_cos_wrapper_widget_1763707688631 .description .h3_grad {
  margin-bottom: 0px;
}
#hs_cos_wrapper_widget_1763707688631 .description .h6_color {
  margin-bottom: 0px;
  padding: 12px 0px;
}
#hs_cos_wrapper_widget_1763707688631 .topchallenge {
  padding-bottom: 15px;
}
#hs_cos_wrapper_widget_1763707688631 .bottomsolution {
  border-top: 1px solid #555555;
  padding-top: 15px;
}
#hs_cos_wrapper_widget_1763707688631
  .feature-page.variation-88
  .feature-inner-wrapper
  .bottom_section
  .right_section {
  width: calc(60% - 33.5px);
}

#hs_cos_wrapper_widget_1763707688631 .right_section .two_col {
  border: none;
  margin-top: 0;
  padding-top: 20px;
}
#hs_cos_wrapper_widget_1763707688631 .right_section .inner_col .right_col h5 {
  font-size: 14px;
}

/* ------------Case studies section removed---------------- */

#hs_cos_wrapper_widget_1763707688631
  .feature-page.variation-88
  #owl-carousel-88 {
  display: none !important;
}
/* ----------------------Gallery The goal is to facilitate usability--------------- */
#hs_cos_wrapper_widget_1763648685180 .left-tab {
  width: calc(38% - 10px);
}
#hs_cos_wrapper_widget_1763648685180 .gallery-heading {
  padding-bottom: 0px;
}
#hs_cos_wrapper_widget_1763648685180 .gallery-content h6 {
  margin-bottom: 15px;
}
#hs_cos_wrapper_widget_1763648685180 .gallery-content h2 {
  margin-bottom: 15px;
}
#hs_cos_wrapper_widget_1763648685180 .left-tab-list ul {
  padding-left: 20px;
  padding-top: 10x;
}
#hs_cos_wrapper_widget_1763648685180 .left-tab-list li {
  list-style: disc;
  line-height: 110%;
}
#hs_cos_wrapper_widget_1763648685180 .left-tab-list li a {
  color: #1a2333;
  font-size: 20px;
  font-weight: 600;
}
#hs_cos_wrapper_widget_1763648685180 .left-tab-list li.active a {
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: underline;
  font-weight: 600;
}
#hs_cos_wrapper_widget_1763648685180 .left-tab-list li:hover {
  text-decoration: underline;
}
#hs_cos_wrapper_widget_1763648685180 .left-tab-list li:hover a {
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: underline;
}
#hs_cos_wrapper_widget_1763648685180 .right-tab {
  width: calc(60% + 7px);
}
#hs_cos_wrapper_widget_1763648685180 .right-tab h6 {
  margin-top: 10px;
}
/* ----------------Why Leading OEMs Choose LMS for Rail--------------- */
#hs_cos_wrapper_widget_1762947587206 .tabs--inner-wrapper .icons--wrap {
  justify-content: center;
}

#hs_cos_wrapper_widget_1763648934641 .h2_white {
  margin-bottom: 15px;
}
.toprow h3 {
  margin-bottom: 15px;
}
.bottomrow h3 {
  margin-bottom: 15px;
}
.toprow {
  min-height: 130px;
}

#hs_cos_wrapper_widget_1763649058956 h6 {
  margin-bottom: 0px;
}
#hs_cos_wrapper_module_1763649223741 h6 {
  margin-bottom: 0px;
}
#hs_cos_wrapper_module_1763649231077 h6 {
  margin-bottom: 0px;
}
/* --------------------FAQ’s----------------------- */
#hs_cos_wrapper_widget_1763646884378 .faqs-section {
  background: transparent !important;
}
#hs_cos_wrapper_widget_1763646884378 .variation__2 .faq-item .faq__question {
  justify-content: space-between;
}
#hs_cos_wrapper_widget_1763646884378 .faqs-section.variation__2 .faqs__answer {
  background: transparent !important;
  padding: 10px 25px 20px 0 !important;
}
#hs_cos_wrapper_widget_1763646884378
  .faqs-section.variation__2
  .faqs__answer
  p {
  font-size: 16px !important;
}
#hs_cos_wrapper_widget_1763646884378 .faqs-section.variation__2 .faq-item {
  border-bottom: 1px solid #1a2333 !important;
}
#hs_cos_wrapper_widget_1763646884378 .variation__2 .faq-item .faq__question h3 {
  font-size: 20px;
  font-weight: 600;
}
/* -------------------------Your Partner in Rail Innovation--------------- */
/* #hs_cos_wrapper_widget_1763647142303 .two-column-wrapper {
  align-items: start;
} */
#hs_cos_wrapper_widget_1763647142303 .column-content {
  padding: 60px 0px;
}
#hs_cos_wrapper_widget_1763647142303 .section-button .prmy-btn {
  padding: 15px 30px;
}

/* -------------------------------------------LMS Service Detail----------------------------------------------- */
#hs_cos_wrapper_widget_1765815206830 .left_section .description h2 {
  font-weight: 500 !important;
  color: #284980 !important;
  margin-bottom: 10px;
}
#hs_cos_wrapper_widget_1765815206830 .left_section .description h6 {
  padding: 10px 0px;
}
#hs_cos_wrapper_widget_1765815206830 .left_section .profile-column {
  display: none;
}

/* ----------------Why Choose LMS for Certified Welding?-------------------- */
#hs_cos_wrapper_widget_1763969077299 .three-column-wrapper .wrapper-icon {
  height: 80px;
  width: 80px;
}

#hs_cos_wrapper_module_1763970105426 .three-column-wrapper .wrapper-icon {
  height: 80px;
  width: 80px;
}

#hs_cos_wrapper_widget_1763969077299 .three-column-wrapper .wrapper-title h3 {
  font-weight: 500;
  font-size: 22px !important;
}
#hs_cos_wrapper_module_1763970105426 .three-column-wrapper .wrapper-title h3 {
  font-weight: 500;
}

#hs_cos_wrapper_widget_1763969077299 .three-column-wrapper .wrapper-text p {
  font-size: 16px;
}
#hs_cos_wrapper_module_1763970105426 .three-column-wrapper .wrapper-text p {
  font-size: 16px;
}
#hs_cos_wrapper_widget_1763969077299 .three-column-wrapper .wrapper-title {
  margin: 15px 0 10px;
  min-height: 60px;
}

#hs_cos_wrapper_module_1763970105426 .three-column-wrapper .wrapper-title {
  margin: 15px 0 10px;
  min-height: 60px;
}

/* -------------------Advanced Welding Technology & Services-------------- */
#hs_cos_wrapper_widget_1763986392134 .tabs-section-wrap .tab__content {
  gap: unset;
}
#hs_cos_wrapper_widget_1763986392134 .tabs-section-wrap .content li {
  font-size: 16px;
  color: #1a2333 !important;
}

#hs_cos_wrapper_widget_1764830347362
  .accordion--inner-wrapper
  .accordion--section-header {
  margin: 0px;
}
#hs_cos_wrapper_widget_1764830347362
  .accordion--inner-wrapper
  .accordion--section-wrap {
  margin: 0px;
}
#hs_cos_wrapper_widget_1764830347362 .accordion--inner-wrapper .acc__question {
  background: linear-gradient(to left, #284980, #00aeef);
  border: 1px solid #284980;
  padding: 15px 20px;
}
/* ----- */
#hs_cos_wrapper_widget_1764830347362
  .accordion--inner-wrapper
  .acc__question
  span {
  font-weight: 600;
  font-size: 24px;
  color: #f7f8fa;
}
#hs_cos_wrapper_widget_1764830347362
  .accordion--inner-wrapper
  .acc-item
  .active {
  background: linear-gradient(to left, #c7ccd6, #f5f7fa); /* background */
  position: relative;
  color: transparent; /* hide normal text */
}
#hs_cos_wrapper_widget_1764830347362 .accordion__answer ul {
  padding: 15px 30px !important;
}
#hs_cos_wrapper_widget_1764830347362 .accordion__answer li {
  padding: 15px 0px !important;
  font-size: 20px !important;
}
/* -----------------------Proven Across Multiple Industries--------- */

#hs_cos_wrapper_widget_1763992088543 .Industry_list {
  display: flex;
  flex-wrap: wrap; /* allows wrapping */
  gap: 20px; /* optional spacing */
  padding-left: 22px; /* keep your padding */
}
#hs_cos_wrapper_widget_1763992088543 .Industry_list li {
  width: calc(50% - 20px); /* 2 per row */
  list-style: disc;
}

/* Gradient TEXT using pseudo-element */
#hs_cos_wrapper_widget_1764830347362
  .accordion--inner-wrapper
  .acc-item
  .active
  span {
  background: linear-gradient(to right, #284980, #00aeef); /* text gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

#hs_cos_wrapper_widget_1764830347362
  .accordion--inner-wrapper
  .accordion__answer
  p {
  padding: 25px 20px !important;
  color: #f7f8fa;
  font-size: 16px;
  max-width: 1050px;
  font-family: inter;
}
/* -----------------------Certificate-------------------- */

#hs_cos_wrapper_module_17654597976344
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
#hs_cos_wrapper_module_17654597976344
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}

#hs_cos_wrapper_module_17654597976345
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
#hs_cos_wrapper_module_17654597976345
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
/* -----------------------Proven Across Multiple Industries--------------------- */
#hs_cos_wrapper_widget_1763992088543 .Industry_list {
  display: flex;
  justify-content: space-between;
  padding-left: 22px;
}
#hs_cos_wrapper_widget_1763992088543 .Industry_list li a {
  font-weight: 600;
  font-size: 20px;
  color: #1a2333;
}
#hs_cos_wrapper_widget_1763992088543 .Industry_list li a:hover {
  border-bottom: 1px solid #1a2333;
  background: linear-gradient(to right, #284980, #00aeef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /*   color: transparent; */
}
/* ------------------Looking for Certified Welding Expertise?---------------- */
#hs_cos_wrapper_widget_1763647142303
  .feature-page.variation-28
  .image-wrapper
  img {
  aspect-ratio: unset;
}

/* -------------------------------------------LMS Certifications----------------------------------------------- */

/* --------------Certificates That Speaks------------- */

#hs_cos_wrapper_module_176567964784411
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
#hs_cos_wrapper_module_176567964784411
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
#hs_cos_wrapper_module_176567964784412
  .hs-image__grid__container
  .hs-image__grid__list {
  display: flex;
  align-items: center;
  gap: 50px;
}

#hs_cos_wrapper_module_176567964784412
  .hs-image__grid__container
  .hs-image__grid__list__item {
  flex-basis: calc(18% - 0px) !important;
}
/* ---------------Our Certifications & Quality Standards------------- */
#hs_cos_wrapper_widget_1764252736788 .tabs--section-header {
  max-width: unset;
}
#hs_cos_wrapper_widget_1764252736788 .tabs--section-header .section-subtitle {
  margin-bottom: 50px;
}
#hs_cos_wrapper_widget_1764252736788 .tabs--section-header h6 {
  padding: 15px 0px;
}
#hs_cos_wrapper_widget_1764252736788 #tabs__nav {
  gap: 0px;
  margin-bottom: 25px;
  justify-content: space-between;
}
#hs_cos_wrapper_widget_1764252736788 #tabs__nav li.active {
  border-bottom: 2px solid #d42e12 !important;
}
#hs_cos_wrapper_widget_1764252736788 #tabs__nav li a {
  font-size: 18px;
  font-weight: 700;
}

#hs_cos_wrapper_widget_1764252736788 #tabs-content-wrap .content {
  width: 100%;
}
#hs_cos_wrapper_widget_1764252736788 #tabs-content-wrap .content .pdf_sec h5,
#hs_cos_wrapper_widget_1764252736788 #tabs-content-wrap .content .pdf_sec h6 {
  margin: 0;
}
#hs_cos_wrapper_widget_1764252736788 #tabs-content-wrap .content .pdf_sec {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  padding: 15px 0;
}
#hs_cos_wrapper_widget_1764252736788 #tabs-content-wrap .content .pdf_sec a {
  font-size: 14px;
  color: #d42e12;
  border: 1px solid #f7f8fa;
  background: #f7f8fa;
  border-radius: 40px;
  padding: 8px 16px;
  display: inline-block;
}
/* ----------------Why Certifications Matter------------------ */
#hs_cos_wrapper_widget_1764054204430 .certificate_sec {
  display: flex;
  justify-content: space-evenly;
  padding: 10px 0px;
}

#hs_cos_wrapper_widget_1764054204430 .has_icon_red {
  display: flex;
  align-items: center;
  gap: 10px;
}
#hs_cos_wrapper_widget_1764054204430 .has_icon_red::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("/hubfs/LMS%20Files/check-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* -----------Corporate Responsibility & Sustainability---------------- */
#hs_cos_wrapper_widget_1764064503575 .certificate_points {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#hs_cos_wrapper_widget_1764064503575 .certificate_points h3 {
  padding-top: 15px;
}
#hs_cos_wrapper_widget_1764064503575 .h6_white {
  margin-bottom: 15px;
}

/* -------------------------------------------LMS Carrers----------------------------------------------- */
/* ----------------Who We Are----------------- */
#hs_cos_wrapper_widget_1764075131314 .carrers_whosec h2,
h3 {
  margin-bottom: 20px;
}

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

/* -------------Our Values--------------------- */
#hs_cos_wrapper_module_17640768336945
  .feature-inner-wrapper
  .three-column-wrapper {
  flex-wrap: nowrap;
}
.hs-content-id-318221798613
  #hs_cos_wrapper_module_17640768336945
  .three-column-wrapper
  .item-title {
  min-height: 74px !important;
  margin-bottom: 0px !important;
}

#hs_cos_wrapper_module_17640768336945 .content_wrapper h2 {
  margin-bottom: 25px;
}
#hs_cos_wrapper_module_17640768336945 .feature-inner-wrapper .column-item {
  padding: 35px 10px 40px 25px;
}

#hs_cos_wrapper_module_17640768336945 .feature-inner-wrapper .image-box {
  height: 130px;
  width: 130px;
}
#hs_cos_wrapper_module_17640768336945 .feature-inner-wrapper .image-box img {
  height: 50px !important;
}
#hs_cos_wrapper_module_17640768336945 .feature-inner-wrapper .item-content {
  margin-top: 35px;
}

/* ----------Why Join LMS nEW----------------- */
#hs_cos_wrapper_widget_1765905272650
  .feature-page.variation-34
  .three-column-wrapper {
  margin-bottom: 34px !important;
}
#hs_cos_wrapper_widget_1765905272650
  .feature-page.variation-34
  .wrapper-content
  .wrapper-icon {
  height: 75px !important;
  width: 75px !important;
}
#hs_cos_wrapper_widget_1765905272650
  .feature-page.variation-34
  .wrapper-content
  .wrapper-title {
  margin-bottom: 0px !important;
  min-height: 50px !important;
}
#hs_cos_wrapper_widget_1765905272650
  .feature-page.variation-34
  .wrapper-content {
  max-width: unset !important;
}
#hs_cos_wrapper_widget_1765905272650
  .feature-page.variation-34
  .wrapper-content
  .wrapper-title
  h3 {
  font-weight: 500;
  color: #f7f8fa;
  font-size: 22px !important;
}

#hs_cos_wrapper_widget_1765905272650
  .feature-page.variation-34
  .wrapper-content
  .wrapper-text
  p {
  font-size: 16px;
  color: #f7f8fa;
  font-family: "Inter";
}

/* ------Second row--- */
#hs_cos_wrapper_module_17659061824794
  .feature-page.variation-34
  .wrapper-content
  .wrapper-icon {
  height: 75px !important;
  width: 75px !important;
}
#hs_cos_wrapper_module_17659061824794
  .feature-page.variation-34
  .wrapper-content
  .wrapper-title {
  margin-bottom: 0px !important;
  min-height: 50px !important;
}
#hs_cos_wrapper_module_17659061824794
  .feature-page.variation-34
  .wrapper-content
  .wrapper-title
  h3 {
  font-weight: 500;
  color: #f7f8fa;
  font-size: 22px !important;
}

#hs_cos_wrapper_module_17659061824794
  .feature-page.variation-34
  .wrapper-content
  .wrapper-text
  p {
  font-size: 16px;
  color: #f7f8fa;
  font-family: "Inter";
}
/* ----------Why Join LMS----------------- */
#hs_cos_wrapper_module_17641398088673 .feature-inner-wrapper .column-item {
  width: 100%;
  row-gap: 50px;
}

#hs_cos_wrapper_module_17641398088673 .wrapper-icon {
  height: 50px !important;
  width: 50px !important;
}
#hs_cos_wrapper_module_17641398088673 .wrapper-icon img {
  height: 25px;
}
#hs_cos_wrapper_module_17641398088673 .wrapper-inner-content .wrapper-title {
  flex: unset;
  margin: 18px 0 10px;
}
#hs_cos_wrapper_module_17641412293564 h2 {
  margin-bottom: 18px;
}
#hs_cos_wrapper_widget_1764141347817 h6 {
  margin-bottom: 10px;
}
#hs_cos_wrapper_widget_1764141347817 h6 .senata_link {
  color: #284980;
  font-weight: 600;
}

#hs_cos_wrapper_module_17641398088673 .wrapper-inner-content .wrapper-title h4 {
  font-weight: 500;
  color: #f7f8fa;
  font-size: 22px !important;
}
#hs_cos_wrapper_module_17641398088673 .wrapper-inner-content .wrapper-text p {
  font-size: 16px;
  color: #f7f8fa;
}
#hs_cos_wrapper_widget_1764140125838 .hs_cos_wrapper_type_linked_image {
  margin-bottom: 0px;
}
/* ------------Strong Roots. Secure Future.-------------------- */
#hs_cos_wrapper_widget_1764141306009 .hs_cos_wrapper_type_linked_image {
  justify-content: center;
}
#hs_cos_wrapper_widget_1764141306009 img {
  width: 75%;
}
/* ------------Where Your Work Makes an Impact----------- */
#hs_cos_wrapper_widget_1765639739442 .carrers_bottom {
  background: #f7f8fa;
  padding: 25px 25px 15px;
}
#hs_cos_wrapper_widget_1765639739442 .carrers_bottom li {
  font-size: 16px;
  padding: 12px 0px;
}

#hs_cos_wrapper_widget_1765639739442 .profile-column {
  display: none;
}

/* --------------Counter Section------------ */
#hs_cos_wrapper_widget_1764143987505 .counter-section {
  background: unset;
}
#hs_cos_wrapper_widget_1764143987505 .section-content {
  margin-bottom: unset;
}
#hs_cos_wrapper_widget_1764143987505 .counter-column .counter-items {
  border-right: 1px solid #f7f8fa;
}
#hs_cos_wrapper_widget_1764143987505 .counter-column .counter-items:last-child {
  border-right: none;
}

#hs_cos_wrapper_widget_1764143987505 h2 {
  margin-bottom: 15px;
}
#hs_cos_wrapper_widget_1764143987505 .counter-column .counter-number h3 {
  margin-bottom: 10px;
  color: #d42e12;
}
#hs_cos_wrapper_widget_1764143987505 .counter-column .counter-number span {
  color: #d42e12;
}
#hs_cos_wrapper_widget_1764143987505 .counter-column .counter-text h3 {
  color: #0f2e41;
  font-size: 16px;
  font-weight: 400;
  width: 60%;
  margin: 0 auto;
}
#hs_cos_wrapper_widget_1764144321183 h2 {
  margin-bottom: 15px;
}
/* ---------------Shape the Future of Metal — and Your Career-------------- */
#hs_cos_wrapper_module_17641443555315 .feature-inner-wrapper .item-1 {
  padding: 0px !important;
  background: unset !important;
}
#hs_cos_wrapper_module_17641443555315
  .feature-inner-wrapper
  .item-1
  .image-wrapper {
  margin-bottom: 20px;
}

#hs_cos_wrapper_module_17641443555315
  .feature-inner-wrapper
  .content_wrapper
  h6 {
  padding: 10px 0px 0px;
  min-height: 55px;
}
#hs_cos_wrapper_module_17641443555315 .feature-inner-wrapper .section-button {
  text-align: left;
  margin-top: 20px;
}
#hs_cos_wrapper_module_17641443555315 .feature-inner-wrapper .item-2 {
  padding: 0px !important;
  background: unset !important;
}
#hs_cos_wrapper_module_17641443555315 .image_content_wrapper {
  padding-bottom: 30px !important;
}
#hs_cos_wrapper_module_17641443555315
  .feature-inner-wrapper
  .item-2
  .image-wrapper {
  margin-bottom: 20px;
}

#hs_cos_wrapper_module_17646731218715 .gallery-section h2 {
  color: #284980;
}

/* ----------------Your Application in Four Steps--------------- */
#hs_cos_wrapper_widget_1764164230550 .steps--section .step-item .step-number {
  height: 80px;
  width: 80px;
}
#hs_cos_wrapper_widget_1764164230550
  .steps--section
  .step-item
  .step-number
  h2 {
  font-size: 30px;
}
#hs_cos_wrapper_widget_1764164230550 .steps--section .line-connect:after {
  top: 40px;
  background: #f7f8fa;
  height: 1.5px;
}
#hs_cos_wrapper_widget_1764164230550 .steps--section .line-connect:before {
  top: 40px;
  background: #f7f8fa;
  height: 1.5px;
}

/* ---------------------More Insights into Our Daily Work------------------ */
#hs_cos_wrapper_module_17641659359656 .carrers_follow {
  display: flex;
  align-items: center;
}
#hs_cos_wrapper_module_17641659359656 .carrers_follow h3 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(to right, #00aeef, #284980);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}
#hs_cos_wrapper_module_17641659359656 .carrers_follow a {
  margin-left: 20px;
  width: 25px;
  height: 25px;
}
#hs_cos_wrapper_module_17641659359656 .carrers_follow h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, #00aeef, #284980);
}

/* --------------- Email And Number hr@lms-technik.com----------- */
#hs_cos_wrapper_widget_1764167604599 .hs_cos_wrapper_type_linked_image {
  margin-bottom: 0px;
}
#hs_cos_wrapper_widget_1764167648029 h3 {
  margin-bottom: 20px !important;
}
#hs_cos_wrapper_widget_1764167648029 h6 {
  margin-bottom: 20px !important;
}

#hs_cos_wrapper_widget_1764167648029 .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0px;
}
#hs_cos_wrapper_widget_1764167648029 .contact-item a {
  color: #f7f8fa !important;
  font-size: 20px;
}
#hs_cos_wrapper_widget_1764167648029 .contact-item img {
  /*   font-size: 20px;
  display: flex;
  align-items: center; */
  width: 28px;
}

/* -----------------------------------------LMS Job Listing----------------------------------------- */
/* ----------------Where Skill Meets Security----------------- */
#hs_cos_wrapper_module_17640768336945
  .feature-inner-wrapper
  .three-column-wrapper {
  flex-wrap: wrap;
}

#hs_cos_wrapper_module_17640768336945 .three-column-wrapper .column-item {
  padding: 25px 10px 40px 25px;
}
#hs_cos_wrapper_module_17640768336945 .three-column-wrapper .item-title {
  min-height: 50px !important;
  margin-bottom: 0px !important;
}
#hs_cos_wrapper_module_17640768336945 .three-column-wrapper .image-box {
  height: 90px;
  width: 90px;
}
#hs_cos_wrapper_module_17640768336945 .three-column-wrapper .image-box img {
  height: 35px !important;
}
/* -------------Our Departments ---------------- */
#hs_cos_wrapper_widget_1764226878707 .feature-inner-wrapper .section-header {
  margin: 0px;
}
#hs_cos_wrapper_widget_1764226878707 .three-column-wrapper {
  margin: 45px 0px 25px;
}
#hs_cos_wrapper_widget_1764226878707 .three-column-wrapper .column-item {
  background: linear-gradient(to right, #f5f7fa, #c7ccd6);
}

#hs_cos_wrapper_widget_1764226878707
  .three-column-wrapper
  .column-item
  .item-title {
  margin-bottom: 15px;
}
#hs_cos_wrapper_widget_1764226878707
  .three-column-wrapper
  .column-item
  .item-content {
  max-width: unset;
  /*   margin-bottom: 10px; */
}
#hs_cos_wrapper_widget_1764226878707
  .three-column-wrapper
  .column-item
  .item-content
  h6 {
  max-width: unset;
  padding: 0 25px;
}
#hs_cos_wrapper_module_17642290284543 .three-column-wrapper .column-item {
  flex-grow: 0 !important;
}
#hs_cos_wrapper_module_17642290284543
  .three-column-wrapper
  .column-item
  .item-content
  h6 {
  max-width: unset;
  padding: 0 25px;
}
/* -------------- */
#hs_cos_wrapper_module_17642290284543 .feature-inner-wrapper .section-header {
  margin: 0px;
}
#hs_cos_wrapper_module_17642290284543 .three-column-wrapper {
  margin: 15px 0px;
}
#hs_cos_wrapper_module_17642290284543 .three-column-wrapper .column-item {
  background: linear-gradient(to right, #f5f7fa, #c7ccd6);
}

#hs_cos_wrapper_module_17642290284543
  .three-column-wrapper
  .column-item
  .item-title {
  margin-bottom: 15px;
}
#hs_cos_wrapper_module_17642290284543
  .three-column-wrapper
  .column-item
  .item-content {
  max-width: unset;
}
#hs_cos_wrapper_module_17642290284543
  .three-column-wrapper
  .column-item
  .item-content
  h6 {
  max-width: unset;
}

/* -----------------Strong Roots. Secure Future.------------- */
#hs_cos_wrapper_widget_1764141306009 .hs_cos_wrapper_type_linked_image {
  justify-content: center;
}
#hs_cos_wrapper_widget_1764141306009 img {
  width: 75%;
}

/* --------------------------------------------LMS Job Detail Page--------------------------------------- */
/* --------First Sec---------- */
#hs_cos_wrapper_widget_1764311919084_ {
  margin-bottom: 0px;
}

/* ------------Details of the job-------------- */
#hs_cos_wrapper_widget_1764313865568 .hs_cos_wrapper_type_text {
  font-size: 28px !important;
  font-weight: 600;
  color: #284980;
  margin-bottom: 15px;
}
#hs_cos_wrapper_widget_1764313967376 .job-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  background: #f7f8fa;
  border-radius: 8px;
  margin-top: 20px;
}

#hs_cos_wrapper_widget_1764313967376 .job-info-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

#hs_cos_wrapper_widget_1764313967376 .job-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#hs_cos_wrapper_widget_1764313967376 .job_location {
  display: flex;
  align-items: center;
  gap: 8px;
}

#hs_cos_wrapper_widget_1764313967376 .job-icon {
  width: 20px;
  height: 20px;
}

#hs_cos_wrapper_widget_1764313967376 .job-label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #707070;
}

#hs_cos_wrapper_widget_1764313967376 .job-info h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #0a1b2b;
}

/* Vertical dividers */
#hs_cos_wrapper_widget_1764313967376 .divider {
  width: 1px;
  height: 45px;
  background: #555555;
}

/* Right side */
#hs_cos_wrapper_widget_1764313967376 .job-apply {
  text-align: center;
  margin-left: auto;
}

#hs_cos_wrapper_widget_1764313967376 .job-apply p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a2333;
  font-weight: 400;
}

/* ----------About the Role------------ */
#hs_cos_wrapper_widget_1764323383786 .job-list {
  padding-left: 18px;
}
#hs_cos_wrapper_widget_1764323383786 .job-list li {
  font-size: 16px;
}

#hs_cos_wrapper_widget_1764323822685 .what-we-offer {
  padding: 40px 40px;
}

#hs_cos_wrapper_widget_1764323822685 .offer-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 15px;
}

#hs_cos_wrapper_widget_1764323822685 .offer-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

#hs_cos_wrapper_widget_1764323822685 .offer-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

#hs_cos_wrapper_widget_1764323822685 .offer-item h6 {
  margin: 0;
}

/* ---------------Current Job Openings------------- */
#hs_cos_wrapper_module_17646014904975 .module-title {
  color: #f7f8fa;
}
/* -----------------------------------------LMS Apprenticeship detail page--------------------------------------- */
#hs_cos_wrapper_module_17646006379435 .module-title {
  color: #f7f8fa;
}
#hs_cos_wrapper_module_17648293396563 .module-title {
  color: #f7f8fa;
}
#hs_cos_wrapper_module_17648295223852 .module-title {
  color: #f7f8fa;
}
/* -----------------------------------------LMS Apprenticeship Listing page--------------------------------------- */
#hs_cos_wrapper_module_17645682914615 .job-cards-row .card-text {
  min-height: 142px !important;
}

/* -----------------------------------------LMS Case studies detail---------------------------------------- */
#hs_cos_wrapper_widget_1764411407084 .case_one .case_welding {
  display: flex;
  gap: 20px;
}
#hs_cos_wrapper_widget_1764411407084 .case_one .case_welding h6 {
  border: 1px solid #d42e12;
  border-radius: 40px;
  padding: 5px 12px;
  font-size: 14px;
  background: #d42e12;
  color: #f7f8fa;
  margin-bottom: 14px;
}
#hs_cos_wrapper_widget_1764411407084 .case_one h2 {
  margin-bottom: 14px;
}
#hs_cos_wrapper_widget_1764411407084 .case_one .case_duration {
  display: flex;
  gap: 20px;
}
#hs_cos_wrapper_widget_1764411407084 .case_one .case_duration small {
  font-size: 12px;
  font-weight: 500;
}
#hs_cos_wrapper_widget_1764414549300 .case_icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hs_cos_wrapper_widget_1764414549300 .case_icons img {
  margin-bottom: 10px;
}
#hs_cos_wrapper_widget_1764414362916 .case_two h6 {
  margin-bottom: 12px;
}
#hs_cos_wrapper_widget_1764417685276 .h3_bold_blue {
  font-weight: 500;
  font-size: 24px;
}
.case_three h6 {
  margin-bottom: 12px;
}
.case_three ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.case_three ol li {
  font-size: 16px;
  font-weight: 400;
}

#hs_cos_wrapper_module_17644184571398 .impact-metrics {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

#hs_cos_wrapper_module_17644184571398 .impact-item p {
  margin: 0;
  font-size: 14px;
  color: #1a2333;
  line-height: 1.4;
}

#hs_cos_wrapper_module_17644184571398 .impact-item h2 {
  margin-top: 5px;
  font-size: 24px;
  color: #284980;
  font-weight: 500;
}
/* --------------Stay Connected------------ */
#hs_cos_wrapper_widget_1764419728890 .prmy-btn {
  align-items: center;
  display: flex;
  gap: 15px;
  padding: 10px 10px 10px 20px;
}
#hs_cos_wrapper_widget_1764419728890 .hs_cos_wrapper_type_rich_text img {
  width: 28px;
}
#hs_cos_wrapper_widget_1764419728890 .stay-connected {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
#hs_cos_wrapper_widget_1764419728890 .stay-connected h2 {
  margin-bottom: 0px;
}

#hs_cos_wrapper_module_17644209786193 .h3_bold_white {
  font-weight: 600;
  color: #1a2333;
  margin-bottom: 10px;
}
#hs_cos_wrapper_module_17644209786193 h6 {
  margin-bottom: 12px;
}
#hs_cos_wrapper_module_17644209786193.h3_grad {
  font-weight: 600;
  font-size: 30px;
}
#hs_cos_wrapper_module_17644209786193 .connect_Section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#hs_cos_wrapper_module_17644209786193 .arrow_img {
  width: 65px;
}
/* -------------------------------------=========---LMS Contact------------------------------------------------ */
#hs_cos_wrapper_widget_1764572661950 .hs_cos_wrapper_type_linked_image {
  margin-bottom: 0px;
}
#hs_cos_wrapper_widget_1764586832109 .hs_cos_wrapper_type_linked_image {
  margin-bottom: 0px;
}
#hs_cos_wrapper_widget_1764575211713 .hs_cos_wrapper_type_linked_image {
  margin-bottom: 0px;
}

#hs_cos_wrapper_widget_1763634881330 .contact-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
#hs_cos_wrapper_widget_1763634881330 .contact-flex .contact-item {
  width: 31%;
}
#hs_cos_wrapper_widget_1763634881330 .contact-flex .contact-item h3 {
  margin-bottom: 10px;
}
#hs_cos_wrapper_widget_1763634881330 .contact-flex .contact-item h6 {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  font-size: 15px !important;
}
#hs_cos_wrapper_widget_1763634881330 .contact-flex .contact-item h6 a {
  margin-left: 10px;
}

/* -------------------------------------=========----LMS Thankyou------------------------------------------------- */
#hs_cos_wrapper_widget_1764675190749 h2 {
  margin-bottom: 15px;
}

/* -------------------------------------=========----LMS DATENSCHUTZERKLÄRUNG------------------------------------------------- */

#hs_cos_wrapper_widget_1766053667405 h1 {
  font-size: 40px !important;
  margin-bottom: 12px;
}
#hs_cos_wrapper_widget_1766053667405 h6 {
  margin-bottom: 12px;
  line-height: 1.6;
}
#hs_cos_wrapper_widget_1766053667405 .privacy-list {
  padding: 0px 20px;
  margin-bottom: 15px;
}
#hs_cos_wrapper_widget_1766053667405 .privacy-list li {
  list-style: none;
  font-size: 16px !important;
}
#hs_cos_wrapper_widget_1766053667405 li {
  font-size: 16px !important;
}
#hs_cos_wrapper_widget_1766053667405 ul li {
  padding: 12px 0px;
}
#hs_cos_wrapper_widget_1766053667405 h2 {
  font-size: 34px !important;
  margin-bottom: 12px;
}
#hs_cos_wrapper_widget_1766053667405 .phone-link {
  text-decoration: none !important;
}
#hs_cos_wrapper_widget_1766053667405 a {
  color: #284980 !important;
  text-decoration: underline;
  font-weight: 500;
  font-size: 16px !important;
}
/* =================================================================== */
/* -------------------------------------=========----LMS Responsive------------------------------------------------- */
/* ---------------Header-------------- */
.desktop-header .hs-menu-item .hs-menu-children-wrapper {
  background: linear-gradient(
    to left,
    rgba(229, 232, 235, 1),
    rgba(255, 255, 255, 1)
  ) !important;
}
.desktop-header .hs-menu-item .hs-menu-children-wrapper li:hover {
  background: #284980 !important;
}
.desktop-header .hs-menu-item .hs-menu-children-wrapper li:hover a {
  color: #f7f8fa !important;
}
.mobile-header .mobile_header_menu-wrap {
  background: linear-gradient(
    to left,
    rgba(229, 232, 235, 1),
    rgba(255, 255, 255, 1)
  ) !important;
}
@media (max-width: 1400px) {
  .header_sticky_placeholder {
    height: 93px !important;
  }
  #hs_cos_wrapper_dnd_header-module-1 .header_section {
    padding: 0px 22px !important;
  }
  .header_section .desktop-header {
    gap: 10px !important;
  }
}
@media (max-width: 1370px) {
  .header_sticky_placeholder {
    height: 93px !important;
  }
  #hs_cos_wrapper_dnd_header-module-1 .header_section {
    padding: 0px 22px !important;
  }
}
@media (max-width: 1281px) {
  #hs_cos_wrapper_dnd_header-module-1 .header_section {
    padding: 30px 22px !important;
  }
  .mobile-header_right_button {
    display: inline-block !important;
  }
  .mobile-header .hs-menu-item .hs-menu-children-wrapper {
    background: unset !important;
  }
  .mobile-header .hs-menu-item .hs-menu-children-wrapper .hs-menu-item:hover {
    background: #284980 !important;
  }
  .mobile-header .hs-menu-item .hs-menu-children-wrapper .hs-menu-item a {
    padding: 12px !important;
  }
  .mobile-header .hs-menu-item .hs-menu-children-wrapper .hs-menu-item:hover a {
    color: #f7f8fa !important;
  }
}
@media (max-width: 1024px) {
  #hs_cos_wrapper_dnd_header-module-1 .header_section {
    padding: 30px 22px !important;
  }
}
@media (max-width: 991.92px) {
  #hs_cos_wrapper_dnd_header-module-1 .header_section {
    padding: 0px 22px !important;
  }
}
@media (max-width: 1181px) {
  #hs_cos_wrapper_widget_1762930970372 .slider-item {
    height: 66vh !important;
  }
}
/* ===================================Large Tablets — max-width: 1024px=================================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px !important;
  }
  h2 {
    font-size: 34px !important;
  }
  h3 {
    font-size: 22px !important;
  }
  h4 {
    font-size: 22px !important;
  }
  h5 {
    font-size: 17px !important;
  }
  h6 {
    font-size: 16px !important;
  }

  /* ---------Header--------- */

  .desktop-header .header_left_logo img {
    width: 210px !important;
  }

  .content_wrap .section-content .h3_grad {
    font-size: 22px !important;
  }

  .feature-inner-wrapper .section-header {
    width: calc(60% - 200px) !important;
  }
  /* ----Laserschneiden Tab Section-------- */
  .tabs--inner-wrapper .tabs--wrap {
    justify-content: space-between;
  }
  .tabs--section.variation_1 ul#tabs-nav {
    width: 28% !important;
  }
  #tabs-content-wrap .tab_images {
    height: 250px !important;
  }
  /* ----OUR NETWORK Section-------- */
  #hs_cos_wrapper_widget_1762947587206 .owl-carousel .owl-item img {
    max-width: 100% !important;
    width: auto !important;
    object-fit: contain;
  }
  /* ----Metall-Know Gallery Section-------- */
  #hs_cos_wrapper_widget_1763018595290 .gallery-focus-heading h6 br {
    display: none;
  }
  /*   -----------Wo Innovation-------- */
  #hs_cos_wrapper_widget_1763019987269 h6 br {
    display: none;
  }

  #hs_cos_wrapper_widget_1763018595290 .gallery-img:hover .main_img {
    height: 350px !important;
  }

  /* ----------------Blog Section--------------- */
  #hs_cos_wrapper_widget_1763015802704
    .feature-page.variation-87
    .three-column
    .inner_col {
    width: calc(50% - 20px);
    margin: 0 auto;
  }

  /* =======================================  Company PAGE 1024=================================== */

  /*   Banner----------- */

  #hs_cos_wrapper_widget_1762930970372 .slider-item {
    height: 35vh !important;
    padding: 110px 0px 10px !important;
  }

  #hs_cos_wrapper_widget_1762930970372
    .slider-item
    .full-width-content-wrapper {
    padding: 0px 22px;
    max-width: unset;
  }
  /*   --------Das treibt --------- */
  .feature-page.variation-29 .column-item {
    width: 100% !important; /* 2 in a row */
  }

  .feature-page.variation-29 .title-items {
    width: 100% !important; /* Push title above */
    margin-bottom: 30px !important;
    text-align: center;
  }
  .feature-page.variation-29 .content_wrapper.w-550 {
    max-width: 900px !important;
  }

  .feature-page.variation-29 .column-item .repeater-content {
    width: 33% !important;
  }
  #hs_cos_wrapper_widget_1763471668679 .column-item {
    row-gap: 40px !important;
  }
  .feature-page.variation-29 .wrapper-text {
    max-width: 400px !important;
  }
  /* -------------  Entwicklung ----------- */
  #hs_cos_wrapper_widget_1763474223390 .steps-viewport .step-item {
    flex-basis: 50% !important;
  }

  /*   ---------------Angetrieben --------------- */

  #hs_cos_wrapper_widget_1763563734941 h2 br {
    display: none;
  }
  /*   ----------------Zertifiziert -------------- */
  #hs_cos_wrapper_module_176536382479211
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  #hs_cos_wrapper_module_176536382479212
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  /*   -------------Energiemanagement------------ */
  #hs_cos_wrapper_widget_1763101594734
    .feature-inner-wrapper
    .three-column-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .image-box img {
    height: 100px !important;
    width: 60px !important;
  }

  #hs_cos_wrapper_widget_1763101594734 .feature-page.variation-63 .column-item {
    width: 47% !important;
  }
  #hs_cos_wrapper_widget_1763101594734 .item-title h3 {
    min-height: 55px !important;
  }

  /* =======================================  Service PAGE 1024=================================== */

  #hs_cos_wrapper_widget_1763992088543 .Industry_list {
    display: flex;
    flex-wrap: wrap; /* allows wrapping */
    gap: 20px; /* optional spacing */
    padding-left: 22px; /* keep your padding */
  }
  #hs_cos_wrapper_widget_1763992088543 .Industry_list li {
    width: calc(50% - 20px); /* 2 per row */
    list-style: disc;
  }

  #hs_cos_wrapper_widget_1763647142303 .feature-page.variation-28 .column-item {
    width: 50% !important;
  }
  #hs_cos_wrapper_widget_1763647142303 .column-content {
    padding: 25px 25px !important;
  }

  #hs_cos_wrapper_widget_1763969077299
    .feature-page.variation-34
    .three-column-wrapper {
    margin-bottom: 47px !important;
  }

  #hs_cos_wrapper_widget_1764830347362
    .accordion--section.variation_9
    .accordion__answer
    li {
    padding: 15px 25px !important;
    margin-bottom: 0px;
  }
  /*   ----------------Zertifiziert -------------- */
  #hs_cos_wrapper_module_17654597976344
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  #hs_cos_wrapper_module_17654597976345
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }

  /* =======================================  Industry PAGE 1024=================================== */
  #hs_cos_wrapper_widget_1763707688631 .bottom_section {
    grid-gap: 35px !important;
  }
  #hs_cos_wrapper_widget_1763634881330 h2 br {
    display: none !important;
  }
  .feature-page.variation-88
    .feature-inner-wrapper
    .two_col
    .inner_col
    .left_col
    img {
    height: 30px !important;
    width: 30px !important;
  }
  /* ----------------Meeting the--------------- */
  #hs_cos_wrapper_widget_1763707688631
    .feature-page.variation-88
    .feature-inner-wrapper
    .bottom_section
    .right_section {
    width: 55% !important;
  }

  #hs_cos_wrapper_widget_1763707688631
    .feature-page.variation-88
    .feature-inner-wrapper
    .two_col {
    flex-wrap: wrap !important;
    grid-gap: 20px !important;
  }
  #hs_cos_wrapper_widget_1763707688631
    .feature-page.variation-88
    .feature-inner-wrapper
    .two_col
    .inner_col {
    width: calc(50% - 20px) !important;
  }
  #hs_cos_wrapper_widget_1763707688631 .bottom_section {
    grid-gap: 35px !important;
    align-items: center;
  }
  /*   --------Rail Components--------------- */
  #hs_cos_wrapper_widget_1763648685180 .left-tab {
    width: calc(35% - 10px) !important;
  }
  #hs_cos_wrapper_widget_1763648685180 .right-tab h6 br {
    display: none !important;
  }
  /*   #hs_cos_wrapper_widget_1763648685180 .right-tab .gallery-section.variation_14 .gallery-grid {
      gap: 10px !important;
  }
  #hs_cos_wrapper_widget_1763648685180 .right-tab .gallery-grid .grid-item{
  grid-row: unset !important;
  } */
  /*   ------------------------Zertificate----------- */
  #hs_cos_wrapper_module_176547016054211
    .hs-image__grid__container
    .hs-image__grid__list {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  #hs_cos_wrapper_module_176547016054211 .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  #hs_cos_wrapper_module_176547016054212
    .hs-image__grid__container
    .hs-image__grid__list {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 50px;
  }
  #hs_cos_wrapper_module_176547016054212
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  /*  --------  */
  .hs-content-id-321187683543 .bottomrow h3 {
    min-height: unset;
  }

  #hs_cos_wrapper_widget_1763648934641 h6 br {
    display: none;
  }
  .toprow h3 {
    min-height: 62px;
  }
  .bottomrow h3 {
    min-height: 62px;
  }
  .toprow {
    min-height: 170px;
  }
  /* =======================================  LMS certificate PAGE 1024=================================== */
  /*   ------------------------Zertificate----------- */
  #hs_cos_wrapper_module_176567964784411
    .hs-image__grid__container
    .hs-image__grid__list {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  #hs_cos_wrapper_module_176567964784411 .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  #hs_cos_wrapper_module_176567964784412
    .hs-image__grid__container
    .hs-image__grid__list {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: nowrap !important;
  }
  #hs_cos_wrapper_module_176567964784412
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  #hs_cos_wrapper_module_176568372805412
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }

  /* =======================================  Contact PAGE 1024=================================== */

  #hs_cos_wrapper_widget_1763634881330 .contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  #hs_cos_wrapper_widget_1763634881330 .contact-flex .contact-item {
    width: 45% !important;
  }

  #hs_cos_wrapper_widget_1764584349590 .team-cards-grid {
    display: grid;
    gap: 32px 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  /* -------------------------------------------LMS Carrers 1024----------------------------------------------- */
  #hs_cos_wrapper_module_17640768336945 .section-header {
    margin: 5px auto !important;
  }
  #hs_cos_wrapper_module_17641398088673 .feature-inner-wrapper .column-item {
    row-gap: 20px !important;
    column-gap: 35px !important;
  }
  #hs_cos_wrapper_module_17641398088673
    .feature-page.variation-29
    .column-item
    .repeater-content {
    width: 45% !important;
  }
  #hs_cos_wrapper_module_17641398088673
    .wrapper-inner-content
    .wrapper-title
    h4 {
    font-size: 18px !important;
  }

  #hs_cos_wrapper_module_17641398088673 .wrapper-inner-content .wrapper-text p {
    font-size: 14px !important;
  }

  #hs_cos_wrapper_widget_1764143987505 .counter-text h3 {
    font-size: 20px !important;
    width: unset !important;
  }

  /* -------------------------------------------LMS Job Detail 1024----------------------------------------------- */

  #hs_cos_wrapper_widget_1764311908272 h2 br {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1764311908272 h6 br {
    display: none;
  }

  #hs_cos_wrapper_widget_1764313967376 .job-info-wrapper {
    gap: 40px;
    flex-wrap: wrap;
  }

  #hs_cos_wrapper_widget_1764313967376 .job-box {
    align-items: flex-start;
  }
  #hs_cos_wrapper_widget_1764313967376 .job-apply {
    text-align: center;
    white-space: nowrap;
  }
  #hs_cos_wrapper_widget_1764235868815 .right-content-inner h2 br {
    display: none;
  }
  #hs_cos_wrapper_widget_1764235868815 .right-content-inner h6 br {
    display: none;
  }

  #hs_cos_wrapper_module_17646014904975 .job-cards-row {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr) !important;
    margin-top: 20px;
  }

  /* ======================================= Job Lisiting PAGE 1024================================== */

  #hs_cos_wrapper_widget_1764226878707 .feature-inner-wrapper .section-header {
    width: unset !important;
  }

  #hs_cos_wrapper_widget_1764226878707
    .feature-inner-wrapper
    .section-header
    h2 {
    margin-bottom: 15px !important;
  }
  #hs_cos_wrapper_module_17642290284543 .three-column-wrapper {
    display: flex !important;
    justify-content: center !important;
  }
  #hs_cos_wrapper_module_17642290284543 .three-column-wrapper .column-item {
    flex-grow: 0 !important;
  }

  #hs_cos_wrapper_widget_1764334374262 .job-cards-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #hs_cos_wrapper_widget_1764226878707 .three-column-wrapper .column-item {
    /*     flex-direction: column !important;
    flex-grow: 1;
  display:flex !important; */
    width: calc(50.33% - 30px) !important;
  }
  #hs_cos_wrapper_module_17642290284543 .three-column-wrapper .column-item {
    width: calc(50.33% - 30px) !important;
  }

  /* -----------------------------------------LMS Apprenticeship detail page--------------------------------------- */
  #hs_cos_wrapper_module_17648293396563 .job-cards-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #hs_cos_wrapper_module_17648295223852 .job-cards-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* -----------------------------------------LMS Apprenticeship Listing page--------------------------------------- */
  #hs_cos_wrapper_widget_1764075131314 h6 br {
    display: none !important;
  }
  #hs_cos_wrapper_module_17642264242573 h6 br {
    display: none !important;
  }
  /*   #hs_cos_wrapper_module_17645682914615 .job-cards-row{
  grid-template-columns: repeat(2, 1fr) !important;
  } */
  #hs_cos_wrapper_module_17645682914615 .job-cards-row h3 br {
    display: none !important;
  }
}
@media screen and (width: 1024px) and (height: 600px) {
  #hs_cos_wrapper_widget_1762930970372 .slider-item {
    height: 79vh !important;
    padding: 110px 0px 10px !important;
  }
}

/* ================================ Tablets — max-width: 991.92px======================================*/
@media (max-width: 991.92px) {
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 26px !important;
  }
  h3 {
    font-size: 20px !important;
  }
  h4 {
    font-size: 20px !important;
  }
  h5 {
    font-size: 16px !important;
  }
  h6 {
    font-size: 16px !important;
  }
  /* ---------Header--------- */
  .mobile-header {
    padding: 30px 0px !important;
  }
  /*   --------Ihr Spezialist--------- */
  #hs_cos_wrapper_dnd_area-module-12 .feature-page.dnd-section {
    padding-top: 40px;
  }
  #hs_cos_wrapper_dnd_area-module-12 .content-row {
    margin-bottom: 50px;
    gap: 0px;
  }
  .content_wrap .section-content .h3_grad {
    font-size: 20px !important;
  }

  #tabs-content-wrap .tab_images {
    height: 225px !important;
  }
  /*   -----------Wo Innovation-------- */
  #hs_cos_wrapper_widget_1763019987269 h6 br {
    display: none;
  }

  #hs_cos_wrapper_widget_1763101594734
    .feature-inner-wrapper
    .content_wrapper
    h6 {
    min-height: 60px;
  }
  /*   --------Für Berufseinsteiger---------- */
  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .item-1 {
    padding-bottom: 30px !important;
  }
  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .item-2 {
    padding-bottom: 0px !important;
  }

  /* ----------------Blog Section--------------- */
  #hs_cos_wrapper_widget_1763015802704
    .feature-page.variation-87
    .three-column
    .inner_col {
    width: calc(50% - 20px);
    margin: 0 auto;
  }

  #hs_cos_wrapper_widget_1763018595290 .gallery-img:hover .main_img {
    height: 380px !important;
  }
  #hs_cos_wrapper_widget_1763018595290 .hover-icon-link .arrrow_img {
    height: 80px !important;
  }

  /* =======================================  Company PAGE 991=================================== */
  /* ---------Banner---------- */
  #hs_cos_wrapper_widget_1762930970372 .slider-item {
    height: 35vh !important;
    padding: 50px 0px 0 !important;
  }

  /*   ----------Die Zukunft------------ */
  #hs_cos_wrapper_widget_1763453711773 .section-content-col {
    padding: 40px 0px !important;
  }

  #hs_cos_wrapper_widget_1763453711773 .feature-inner-wrapper .image-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 30px;
  }
  #hs_cos_wrapper_widget_1763453711773 .section-content-col .section-content {
    max-width: unset !important;
  }

  /*   ----------Das treibt------------- */
  .feature-page.variation-29 .feature-inner-wrapper {
    gap: 20px !important;
  }

  .feature-page.variation-29 .wrapper-text {
    max-width: 335px !important;
  }
  #hs_cos_wrapper_widget_1763471668679 .wrapper-inner-content .wrapper-text p {
    font-size: 14px !important;
  }
  #hs_cos_wrapper_widget_1763471668679 .feature-inner-wrapper .section-button {
    display: none;
  }
  /*   -----Entwicklung ----------- */
  .steps--section .steps--section-wrap {
    flex-wrap: nowrap !important;
  }
  .steps--section.section_variation_1 .steps--section-wrap {
    grid-gap: 0 !important;
  }
  #hs_cos_wrapper_widget_1763474223390
    .steps--section
    .step-item.line-connect--mobile {
    margin-bottom: 0px !important;
  }
  #hs_cos_wrapper_widget_1763561110586 .h6_white {
    padding-bottom: unset;
  }
  /*   -------------Energiemanagement------------ */

  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .image-box img {
    height: 100px !important;
    width: 55px !important;
  }
  /*   ----------------Zertifiziert -------------- */
  #hs_cos_wrapper_module_176536382479211
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }

  /* =======================================  Service PAGE 991=================================== */

  /*   --------Welding that ------------ */
  #hs_cos_wrapper_widget_1763634881330 h2 br {
    display: none;
  }
  #hs_cos_wrapper_widget_1763969077299
    .feature-page.variation-34
    .three-column-wrapper {
    margin-bottom: 0 !important;
  }
  #hs_cos_wrapper_widget_1763969077299
    .feature-page.variation-34
    .wrapper-content {
    width: calc(33.33% - 20px) !important;
    margin-bottom: 35px !important;
  }
  #hs_cos_wrapper_module_1763970105426
    .feature-page.variation-34
    .wrapper-content {
    width: calc(33.33% - 20px) !important;
  }
  #hs_cos_wrapper_module_1763970105426
    .feature-page.variation-34
    .three-column-wrapper {
    margin-bottom: 0 !important;
  }

  #hs_cos_wrapper_widget_1764830347362 .accordion--inner-wrapper .list_wrap {
    margin-top: 0px;
  }

  #hs_cos_wrapper_module_17654597976344
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  /*   --------------Looking for Certified Welding---------------- */
  #hs_cos_wrapper_widget_1763647142303 .column-content {
    padding: 13px 20px !important;
  }
  #hs_cos_wrapper_widget_1763647142303 .column-item .content_wrapper h6 {
    text-align: left !important;
  }
  #hs_cos_wrapper_widget_1763648934641 h6 br {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1763647142303
    .feature-inner-wrapper
    .column-item
    .section-button {
    text-align: left !important;
  }
  /* =======================================  Industry PAGE 991=================================== */

  #hs_cos_wrapper_widget_1763707688631
    .feature-page.variation-88
    .feature-inner-wrapper
    .bottom_section
    .right_section {
    width: 100% !important;
  }

  #hs_cos_wrapper_widget_1762930970372 h1 br {
    display: none !important;
  }
  #hs_cos_wrapper_widget_1762947587206
    .client-logos--section.section_variation_1
    .client-logos-icons {
    /*     width: calc(50% - 63px); */
  }

  /*   ---------------------------Gallery Tab---------------- */

  #hs_cos_wrapper_widget_1763648685180 .gallery-tab {
    align-items: center;
  }

  #hs_cos_wrapper_widget_1763648685180 .left-tab {
    width: 100% !important;
  }
  #hs_cos_wrapper_widget_1763648685180 .right-tab {
    width: 100% !important;
  }
  /*   ---------------------------FAQ Sec---------------- */

  #hs_cos_wrapper_widget_1763646884378 .faqs-section-header h2 br {
    display: none !important;
  }

  /* =======================================  Certificate PAGE 991=================================== */
  /*   ----------------Zertificate---------- */
  #hs_cos_wrapper_module_176547016054211
    .hs-image__grid__container
    .hs-image__grid__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 50px;
  }
  #hs_cos_wrapper_module_176547016054211 .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }

  #hs_cos_wrapper_widget_1764252736788
    .tabs--section.variation_2
    #tabs__nav
    li {
    padding: 20px 0px !important;
  }

  #hs_cos_wrapper_widget_1764252736788 .tabs--section.variation_2 {
    padding-bottom: 0px !important;
  }
  .toprow {
    min-height: 180px;
  }
  /* =======================================  Carrers PAGE 991=================================== */

  /*   why join us---------- */
  #hs_cos_wrapper_widget_1765905272650
    .feature-page.variation-34
    .three-column-wrapper {
    margin-bottom: 9px !important;
    flex-wrap: nowrap;
    grid-gap: 30px;
  }
  #hs_cos_wrapper_widget_1765905272650 h6 br {
    display: none !important;
  }
  #hs_cos_wrapper_module_17659061824794
    .feature-page.variation-34
    .three-column-wrapper {
    margin-bottom: 9px !important;
    flex-wrap: nowrap;
    grid-gap: 30px;
  }

  #hs_cos_wrapper_module_17640768336945 .three-column-wrapper {
    justify-content: center;
  }

  #hs_cos_wrapper_module_17641398088673 .mobile_view {
    display: none !important;
  }
  #hs_cos_wrapper_widget_1764139825551 h6 br {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1764143987505 .counter-section .counter-column {
    flex-direction: row !important;
    align-items: start !important;
  }

  #hs_cos_wrapper_widget_1765639739442 .sub_heading h2 {
    text-align: center !important;
  }
  #hs_cos_wrapper_widget_1765639739442 .sub_heading h2 br {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1765639739442 .sub_heading h6 {
    max-width: 90%;
    text-align: center;
    margin: 0 auto 15px;
  }

  #hs_cos_wrapper_widget_1764143987505 .counter-text h3 {
    font-size: 16px !important;
    width: unset !important;
  }
  #hs_cos_wrapper_widget_1764143987505 .counter-column .counter-items {
    border-right: 1px solid #f7f8fa;
    margin: 0;
    padding: 0;
  }

  #hs_cos_wrapper_widget_1764144321183 h2 {
    text-align: center;
    margin: 0 auto 15px;
    max-width: 80%;
  }
  #hs_cos_wrapper_widget_1764144321183 h6 {
    text-align: center;
    margin: 0 auto 21px;
    max-width: 80%;
  }

  .column-item .content_wrapper h3 {
    text-align: center !important;
  }

  .column-item .content_wrapper h6 {
    text-align: center !important;
  }
  .column-item .section-button {
    text-align: center !important;
  }

  /* -------------------------------------------LMS Job Detail 991----------------------------------------------- */

  #hs_cos_wrapper_widget_1764235868815
    .feature-inner-wrapper.variation-1
    .right-content {
    padding-bottom: 40px !important;
    padding-top: 40px !important;
    width: 100% !important;
  }
  #hs_cos_wrapper_widget_1764164230550 .section-subtitle {
    padding-top: 0 !important;
    margin-bottom: 50px !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .section-subtitle h6 br {
    display: none;
  }
  #hs_cos_wrapper_widget_1764167648029 .contact-item span {
    color: #f7f8fa !important;
    font-size: 16px !important;
  }

  /*   ------------------ */
  #hs_cos_wrapper_widget_1764164230550 .steps--section .steps--section-wrap {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    padding: 0px !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item {
    position: relative !important;
    text-align: center !important;
    flex: 0 0 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
    width: auto !important;
    margin-bottom: 30px !important;
    padding: 0 10px !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item:last-child {
    margin-bottom: 0 !important;
  }

  /* Hide connectors for 2-per-row mobile layout */
  #hs_cos_wrapper_widget_1764164230550 .step-item::after {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item .step-number {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    z-index: 1 !important; /* ensure circle is above connecting line */
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item .step-number h2 {
    font-size: 30px !important;
  }
  #hs_cos_wrapper_widget_1764164230550 .step-item h3 br {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item h4 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  /*   #hs_cos_wrapper_widget_1764164230550 .step-item p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    position: relative !important;
    z-index: 1 !important;
  } */

  #hs_cos_wrapper_widget_1764164230550
    .steps--section
    .step-item.line-connect--mobile {
    margin-bottom: 30px !important;
  }

  /* ======================================= Job Lisiting PAGE 991================================== */
}
/* ===================================  Mobile — max-width: 767px=================================== */
@media (max-width: 767px) {
  h1 {
    font-size: 26px !important;
  }
  h2 {
    font-size: 22px !important;
  }
  h3 {
    font-size: 18px !important;
  }
  h4 {
    font-size: 14px !important;
  }
  h5 {
    font-size: 16px !important;
  }
  h6 {
    font-size: 16px !important;
  }

  /*-------Banner------------ */

  #hs_cos_wrapper_widget_1762930970372 .slider-item {
    height: 70vh !important;
    padding: 150px 0px 180px !important;
  }
  #hs_cos_wrapper_widget_1762930970372
    .full-width-content-wrapper
    .section-content
    h6
    br {
    display: none !important;
  }
  /* ---------Header--------- */
  .header_left_logo img {
    width: 200px !important;
  }
  .header_sticky_placeholder {
    height: 84px !important;
  }

  .mobile_header_menu-wrap {
    margin-top: 28px !important;
  }
  .header_section .mobile-header_menu-wrap .hs-menu-wrapper .hs-menu-item a {
    line-height: 1 !important;
    padding: 12px !important;
  }
  /* =======================================  HOME PAGE 768=================================== */
  /*   Ihr Spezialist für */
  #hs_cos_wrapper_dnd_area-module-12 .feature-page.dnd-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  #hs_cos_wrapper_dnd_area-module-12 .feature-page .section-header .h2_blue {
    margin-bottom: 20px;
  }
  #hs_cos_wrapper_dnd_area-module-12 .content-row {
    margin-bottom: 30px;
    gap: 0px;
  }
  .content_wrap .section-content .h3_grad {
    font-size: 18px !important;
  }

  #owl-carousel-41 .repeater-content {
    padding: 20px 15px 30px 20px;
  }
  #owl-carousel-41 .wrapper-title {
    margin-top: 30px;
  }

  /*   =--------------Laserschneiden */
  #hs_cos_wrapper_widget_1762934547398 .h2_blue {
    margin: 0px;
  }
  .row-fluid-wrapper .row-fluid {
    row-gap: 20px !important;
  }
  #hs_cos_wrapper_widget_1762934705943 .tabs--section.variation_1 {
    padding: 0px !important;
  }
  #hs_cos_wrapper_widget_1762934705943 #tabs-nav {
    width: 100% !important;
  }
  .tabs--section.variation_1 .tabs--wrap {
    gap: 30px !important;
  }

  #hs_cos_wrapper_widget_1762934705943 #tabs-content-wrap {
    width: 100%;
  }
  .tabs--section.variation_1 .tabs--wrap ul {
    gap: 20px !important;
  }
  #tabs-content-wrap .tab_images {
    height: 150px !important;
  }
  /*   -------------------Unser Netzwerk--------- */
  #hs_cos_wrapper_widget_1762947587206 .tabs--section-header h6 br {
    display: none;
  }
  .client-logos--section.section_variation_1 .icons--wrap {
    padding-top: 0px !important;
  }
  #hs_cos_wrapper_widget_1762947587206 .tabs--section-header h2 br {
    display: none;
  }

  /* -------------  Wo Innovation------------------ */
  #hs_cos_wrapper_widget_1763019987269 .h2_white {
    margin-bottom: 15px;
  }
  #hs_cos_wrapper_widget_1763019987269 .h2_white br {
    display: none;
  }
  #hs_cos_wrapper_widget_1763019987269 .h6_white {
    margin-bottom: 15px;
  }
  #hs_cos_wrapper_widget_1763019987269 .h6_white br {
    display: none;
  }

  /*   --------------Werde Me.tall -------------- */
  #hs_cos_wrapper_widget_1763100584365 h2 br {
    display: none;
  }

  /*   ----------------Für Berufseinsteiger --------------- */
  #hs_cos_wrapper_widget_1763101594734
    .feature-page.variation-7
    .column-item
    .image_content_wrapper {
    padding: 0px !important;
  }
  #hs_cos_wrapper_widget_1763101594734
    .feature-page.variation-7
    .feature-inner-wrapper {
    gap: 30px;
  }
  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .item-1 {
    padding-bottom: 20px !important;
  }

  #hs_cos_wrapper_widget_1763015802704
    .variation-87
    .feature-inner-wrapper
    .top_section {
    margin-bottom: 25px !important;
  }
  #hs_cos_wrapper_widget_1763015802704
    .feature-page.variation-87
    .three-column
    .inner_col {
    width: 100%;
    margin: 0 auto;
  }

  #hs_cos_wrapper_widget_1763015802704
    .feature-page.variation-87
    .three-column {
    grid-gap: 10px;
  }
  /* =======================================  Company PAGE  768 =================================== */

  #hs_cos_wrapper_widget_1763643587491 h6,
  h2 {
    margin-bottom: 12px;
  }
  /*  --------------- Die Zukunft-------------- */
  #hs_cos_wrapper_widget_1763453711773 .section-content-col {
    padding: 20px 0px !important;
  }

  #hs_cos_wrapper_widget_1763471668679 .feature-inner-wrapper .title-items {
    margin-bottom: 10px !important;
  }
  #hs_cos_wrapper_widget_1763471668679 .wrapper-inner-content .wrapper-text p {
    font-size: 12px !important;
  }
  #hs_cos_wrapper_widget_1763471668679 .column-item {
    row-gap: 30px !important;
  }
  #hs_cos_wrapper_widget_1763471668679
    .feature-page.variation-29
    .column-item
    .repeater-content {
    width: 50% !important;
  }
  #hs_cos_wrapper_widget_1763474223390 .steps-viewport .step-item {
    flex-basis: 100% !important;
  }
  #hs_cos_wrapper_widget_1763474223390 .steps-viewport .year_title {
    min-height: 60px !important;
  }

  #hs_cos_wrapper_widget_1763474223390 .steps--section .steps--section-header {
    margin-bottom: 0px !important;
  }
  #hs_cos_wrapper_widget_1763563746324 .hs_cos_wrapper_type_linked_image {
    margin-bottom: 10px !important;
  }
  #hs_cos_wrapper_module_176536382479212
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }

  #hs_cos_wrapper_module_17630962109722 .hs_cos_wrapper_type_linked_image {
    margin-bottom: 10px !important;
  }

  #hs_cos_wrapper_widget_1763101594734 .feature-page.variation-63 .column-item {
    width: 100% !important;
  }
  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .column-item {
    padding: 20px 25px 20px 25px;
  }
  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .item-title {
    margin-bottom: 0 !important;
  }
  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .image-box {
    height: 100px !important;
    width: 100px !important;
  }
  #hs_cos_wrapper_widget_1763101594734 .feature-inner-wrapper .image-box img {
    height: 50px !important;
  }

  /* =======================================  Service PAGE 798=================================== */

  #hs_cos_wrapper_widget_1763634881330 h2 br {
    display: block !important;
  }
  #hs_cos_wrapper_widget_1763634881330 h6 {
    margin-bottom: 12px !important;
  }
  #hs_cos_wrapper_widget_1763969077299 .section-content h6 br {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1763969077299
    .feature-page.variation-34
    .wrapper-content {
    width: 100% !important;
    margin-bottom: 30px !important;
  }
  #hs_cos_wrapper_widget_1763969077299 .three-column-wrapper .wrapper-title {
    margin: 15px 0 10px;
    min-height: 10px;
  }
  #hs_cos_wrapper_module_1763970105426 .three-column-wrapper .wrapper-title {
    margin: 15px 0 10px;
    min-height: 10px;
  }
  #hs_cos_wrapper_module_1763970105426
    .feature-page.variation-34
    .wrapper-content {
    width: 100% !important;
    margin-bottom: 30px !important;
  }
  #hs_cos_wrapper_widget_1764830347362 .accordian_service li {
    padding: 10px 0px !important;
    font-size: 14px !important;
  }

  #hs_cos_wrapper_widget_1764830347362
    .accordion--inner-wrapper
    .acc__question
    span {
    font-size: 18px !important;
  }
  #hs_cos_wrapper_widget_1764830347362
    .accordion--section.variation_9
    .accordion__answer
    li {
    font-size: 16px !important;
    padding: 15px 15px !important;
  }
  #hs_cos_wrapper_widget_1764830347362
    .accordion--section.variation_9
    .accordion__answer
    ul {
    padding: 10px 25px !important;
  }

  #hs_cos_wrapper_widget_1763992088543 .Industry_list li a {
    font-size: 14px !important;
  }
  #hs_cos_wrapper_module_17654597976345
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }

  /*   F-------------FAQ SECTION--------------------- */
  #hs_cos_wrapper_widget_1763646884378 .section-subtitle h6,
  h2 {
    margin-bottom: 15px !important;
  }
  #hs_cos_wrapper_widget_1763646884378 .section-subtitle h2 br {
    display: none !important;
  }
  #hs_cos_wrapper_widget_1763646884378
    .faqs-section.variation__2
    .faq__question {
    padding: 15px 0;
  }

  /*   ----------------Looking for Certified --------------- */
  #hs_cos_wrapper_widget_1763647142303 .column-content {
    padding: 15px 20px 20px !important;
  }
  #hs_cos_wrapper_widget_1763647142303 .feature-page.variation-28 .column-item {
    width: 100% !important;
  }

  /* =======================================  Industry PAGE 767=================================== */

  #hs_cos_wrapper_widget_1763707688631 .feature-inner-wrapper .top_content {
    margin-bottom: 20px !important;
  }
  /*   ------------------Gallery tab--------------- */
  #hs_cos_wrapper_widget_1763707688631
    .feature-page.variation-88
    .feature-inner-wrapper
    .two_col
    .inner_col {
    width: 100% !important;
  }

  /*   #hs_cos_wrapper_widget_1763649058956 h6 {
    min-height: 40px;
  } */
  .toprow h6 {
    margin-bottom: 10px !important;
  }
  .bottomrow h6 {
    margin-bottom: 10px !important;
  }
  .toprow {
    min-height: unset;
  }
  .toprow h3 {
    min-height: unset;
  }
  .bottomrow h3 {
    min-height: unset;
  }

  /*   ------------------Zertificate--------------- */
  #hs_cos_wrapper_module_176547016054212
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }

  #hs_cos_wrapper_module_176568372805412
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }
  /* ======================================= Contact PAGE 767=================================== */

  #hs_cos_wrapper_widget_1764584349590 .team-cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  #hs_cos_wrapper_widget_1764584349590 .team-cards-grid {
    display: block !important;
  }
  #hs_cos_wrapper_widget_1764584349590 .team-card {
    margin-bottom: 20px;
  }

  /* ======================================= Careers PAGE 767=================================== */

  /*   why join us ---------- */
  #hs_cos_wrapper_widget_1765905272650
    .feature-page.variation-34
    .wrapper-content
    .wrapper-title {
    margin-bottom: 15px !important;
    min-height: 0px !important;
  }
  #hs_cos_wrapper_module_17659061824794
    .feature-page.variation-34
    .wrapper-content
    .wrapper-title {
    margin-bottom: 15px !important;
    min-height: 0px !important;
  }
  #hs_cos_wrapper_widget_1765905272650
    .feature-page.variation-34
    .wrapper-content {
    margin-bottom: 20px !important;
  }
  #hs_cos_wrapper_widget_1765905272650
    .feature-page.variation-34
    .three-column-wrapper {
    flex-wrap: wrap !important;
    margin-bottom: 16px !important;
  }
  #hs_cos_wrapper_module_17659061824794
    .feature-page.variation-34
    .three-column-wrapper {
    flex-wrap: wrap !important;
  }
  #hs_cos_wrapper_module_17659061824794
    .feature-page.variation-34
    .wrapper-content {
    margin-bottom: 20px !important;
  }

  #hs_cos_wrapper_module_17640768336945 .section-header {
    width: unset !important;
  }
  #hs_cos_wrapper_module_17640768336945
    .three-column-wrapper
    .column-item
    .item-title {
    text-align: center !important;
  }
  #hs_cos_wrapper_module_17640768336945
    .three-column-wrapper
    .column-item
    .image-box {
    margin: 0 auto !important;
  }
  #hs_cos_wrapper_module_17640768336945
    .three-column-wrapper
    .column-item
    .item-content {
    text-align: center !important;
  }
  .hs-content-id-318221798613
    #hs_cos_wrapper_module_17640768336945
    .three-column-wrapper
    .item-title {
    min-height: 0px !important;
    margin-bottom: 20px !important;
  }

  #hs_cos_wrapper_module_17641398088673
    .feature-page.variation-29
    .column-item
    .repeater-content {
    width: 100% !important;
  }
  #hs_cos_wrapper_module_17641398088673 .feature-inner-wrapper .title-items {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1765639739442 .carrers_bottom {
    background: #f7f8fa;
    padding: 25px 13px 1px !important;
  }

  #hs_cos_wrapper_widget_1765639739442 .carrers_bottom ul {
    padding: 0px 20px !important;
  }
  #hs_cos_wrapper_widget_1764143987505 .counter-section .counter-column {
    row-gap: 20px !important;
    column-gap: 20px !important;
  }
  #hs_cos_wrapper_widget_1764143987505 .counter-column .counter-items {
    border-right: 1px solid #f7f8fa;
    padding-right: 10px !important;
  }
  #hs_cos_wrapper_widget_1764143987505
    .counter-column
    .counter-items:last-child {
    border-right: 1px solid #f7f8fa !important;
    padding-right: 10px !important;
  }
  #hs_cos_wrapper_module_17641443555315
    .feature-page.variation-7
    .feature-inner-wrapper {
    gap: 0px !important;
  }
  /* ======================================= Job Certificate PAGE 767=================================== */

  #hs_cos_wrapper_module_176567964784412
    .hs-image__grid__container
    .hs-image__grid__list__item {
    flex-basis: calc(18% - 0px) !important;
  }

  /* ======================================= Job Detail PAGE 767=================================== */

  #hs_cos_wrapper_widget_1764311908272 h2 br {
    display: none !important;
  }
  #hs_cos_wrapper_widget_1764313967376 .job-box {
    display: block !important;
    padding: 15px 15px !important;
  }
  #hs_cos_wrapper_widget_1764313967376 .job-info-wrapper {
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  #hs_cos_wrapper_widget_1764313967376 .job-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
  }
  #hs_cos_wrapper_widget_1764235868815
    .feature-inner-wrapper.variation-1
    .right-content {
    padding-bottom: 20px !important;
    padding-top: 40px !important;
    width: 100% !important;
  }

  #hs_cos_wrapper_widget_1764313967376 .job-apply {
    margin: 15px 0 !important;
  }

  #hs_cos_wrapper_module_17646014904975 .job-cards-row {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  #hs_cos_wrapper_module_17646014904975 .card .card-title {
    min-height: unset;
  }
  #hs_cos_wrapper_module_17646014904975 .card .card-meta {
    margin-bottom: 15px !important;
  }

  /* ----------------- */
  #hs_cos_wrapper_widget_1764164230550 .section-subtitle {
    padding-top: 0 !important;
    margin-bottom: 30px !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item {
    padding: 0 15px !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item .step-number {
    width: 70px !important;
    height: 70px !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item .step-number h2 {
    font-size: 26px !important;
    margin-bottom: 0px !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item h4 {
    font-size: 16px !important;
  }

  #hs_cos_wrapper_widget_1764164230550 .step-item p {
    font-size: 13px !important;
  }

  /* Adjust vertical line position for smaller circles */
  #hs_cos_wrapper_widget_1764164230550 .step-item:not(:last-child)::after {
    top: 70px !important;
  }
  #hs_cos_wrapper_widget_1764164230550 .step-item {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
  }

  #hs_cos_wrapper_module_17641659359654 h2 br {
    display: none !important;
  }

  /* ======================================= Job Lisiting PAGE 767=================================== */

  #hs_cos_wrapper_widget_1764226414609 h2 br {
    display: none !important;
  }

  #hs_cos_wrapper_widget_1764226414609 h2 {
    margin: 0px !important;
  }

  #hs_cos_wrapper_module_17642264242573 h3 strong {
    font-size: 18px !important;
  }
  #hs_cos_wrapper_widget_1764226878707 h6 br {
    display: none !important;
  }
  #hs_cos_wrapper_widget_1764226878707 .three-column-wrapper .column-item {
    width: calc(100% - 30px) !important;
  }
  #hs_cos_wrapper_module_17642290284543 .three-column-wrapper .column-item {
    width: calc(100% - 30px) !important;
  }

  #hs_cos_wrapper_widget_1764226878707 .three-column-wrapper .column-item h6 {
    text-align: center !important;
    max-width: 90% !important;
    margin: 0 auto;
  }
  #hs_cos_wrapper_module_17642290284543 .three-column-wrapper .column-item h6 {
    text-align: center !important;
    max-width: 90% !important;
    margin: 0 auto;
  }

  #hs_cos_wrapper_widget_1764334374262 .job-cards-row {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  #hs_cos_wrapper_widget_1764334374262 .card .card-title {
    min-height: 40px;
  }
  #hs_cos_wrapper_widget_1764334374262 .card .card-title br {
    display: none !important;
  }

  /* -----------------------------------------LMS Apprenticeship detail page--------------------------------------- */
  #hs_cos_wrapper_module_17648293396563 .job-cards-row {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  #hs_cos_wrapper_module_17648295223852 .job-cards-row {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  /* ======================================= LMS Apprenticeship Lisiting PAGE 991================================== */

  /*       #hs_cos_wrapper_module_17645682914615 .job-cards-row {
        grid-template-columns: repeat(1, 1fr) !important;
    } */

  /*  ------------------------- CASE studies detail PAge  768px Only for this paage-------------------------- */

  #hs_cos_wrapper_module_17644184571398 .impact-metrics {
    display: flex;
    gap: 20px !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  #hs_cos_wrapper_module_17644184571398 .impact-metrics p br {
    display: none !important;
  }
  #hs_cos_wrapper_module_17644184571398 .impact-item h2 {
    text-align: center;
  }

  #hs_cos_wrapper_module_17644209786193 .lets_connect h3 {
    max-width: 85% !important;
  }

  /* -------------------------------------------LMS Certifications 768----------------------------------------------- */

  #hs_cos_wrapper_widget_1764053461594 h6 br {
    display: none !important;
  }
  #hs_cos_wrapper_widget_1764252736788 .tabs--section-header .section-subtitle {
    margin-bottom: 30px !important;
  }
  #hs_cos_wrapper_widget_1764054204430 .certificate_sec {
    display: block !important;
    padding: 0px !important;
  }

  /* ======================================= LMS Gallery 767=================================== */
  #hs_cos_wrapper_widget_1764825719044 .gallery-content {
    padding: 0 0 30px 0 !important;
  }
  #hs_cos_wrapper_widget_1764825719044 .section-subtitle {
    padding: 0px !important;
  }
  #hs_cos_wrapper_widget_1765171898763 .gallery-section .silder-title {
    padding: 0px 20px !important;
  }
  #hs_cos_wrapper_widget_1765171898763 .gallery-section .owl-slider {
    padding-top: 20px !important;
  }
  #hs_cos_wrapper_widget_1765171898763 .gallery-section .owl-nav {
    display: none !important;
  }
  #hs_cos_wrapper_module_17644209786193 .connect_Section .h3_grad {
    font-size: 18px !important;
  }
}

/* New changes */

/* Container */
.hover-img-features {
  display: flex;
  gap: 0px;
}

/* Wrapper created by JS */
.hover-img-features .img-wrap {
  flex: 1;
  overflow: hidden; /* THIS is the key */
  position: relative;
}

/* Image base */
.hover-img-features .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
  transform-origin: center center;
}

/* Zoomed state */
.hover-img-features .img-wrap img.is-active {
  transform: scale(1.25);
}

/* Optional: smooth UX */
.tab_sec h6 {
  cursor: pointer;
}