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

.dnd-section[class*="force-full-width-section"] > .row-fluid{
  padding:0;
}
.dnd-section[class*="force-full-width-section"]{
  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.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

th{
  text-align:left; 
}
/* Paragraphs */

p {
  font-size: 1em;
  margin: 0 0 1.4rem;
}

p:last-child{
  margin-bottom: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
  transition:all 0.3s ease;
}
/* 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 {
  position: relative;
}

blockquote::before {
  content: "";
  display: inline-block;
  background-image: url(//26192512.fs1.hubspotusercontent-eu1.net/hubfs/26192512/raw_assets/public/Replug_2025/images/Group%201410121912.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 10px; /* optional spacing */
  vertical-align: middle;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  word-break: normal;
  vertical-align: middle;
  height: auto;
  max-width: 100%;
}

svg{
  fill: currentColor;
  vertical-align: middle;
}
.hs-search-results__listing {
  margin-bottom: 24px !important;
}
.systems-page p,.systems-page p:last-child {
  margin-bottom: 16px;
}
.hs-search-results__pagination{
  flex-wrap: wrap;
}

@media(max-width:767px){
  ul, ol {
    padding-left: 25px;
  }
}
button,
.button,
.hs-button,
.primary_btn,
.primary-btn a,
.btn-custom a,
.secondary_btn,
.secondary-btn a,
.tertiary_btn,
.tertiary-btn a{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height: 1.57142857;
}

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

/* No button */

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

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

form input::placeholder {
  font-weight: 400;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

form{
  margin-bottom: 20px;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 18px;
  line-height:28px;
  padding: 16px 12px;
  width: 100%;
  font-weight:500;
  outline:0;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.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;
}

form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox-display input[type="checkbox"] + span {
  display: block;
  margin-left: 30px;
}

form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox-display input[type=checkbox] {
  float: left;
}
/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 30px !important;
}

/* Validation */

.hs-form-required {
  color: red !important;
}

.hs-input.invalid.error {
  border-color: red !important;
}
.hs-error-msgs label{
  color: red !important;
}
.hs-error-msg {
  color: red !important;
  margin-top: 0.35rem;
}

fieldset .input {
  margin-right: 0 !important;
}

form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form select,
form textarea {
  width: 100% !important;
}
form textarea {
  min-height: 114px;
}

form .hs-submit {
  padding-top: 10px;
}
/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  margin-top:20px;
}
.submitted-message{
  font-weight:bold !important;
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

.grecaptcha-badge {
  margin-left: 0;
}

form input[type=checkbox] {
  -webkit-appearance: none;
  background: #0026D20A;
  border:0;
  border-radius: 2px;
  cursor: pointer;
  height: 20px;
  line-height: 0;
  margin: 0 10px 0 0;
  opacity: 1;
  outline: 0;
  padding: 0 !important;
  position: relative;
  vertical-align: text-top;
  width: 20px !important;
}

form input[type=checkbox]:checked {
  background-color: #0026D2;
  opacity: 1;
}

form input[type=checkbox]:before {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  height: 10px;
  margin: -1px -1px 0;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: rotate(45deg) translate(-50%, -50%);
  width: 5px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

form input[type=checkbox]:checked:before {
  opacity: 1;
  visibility: visible;
}



form .hs-form-field legend.hs-field-desc {
  margin: -5px 0 10px;
}

form .hs-fieldtype-file input[type=file] {
  border-radius: 0;
}


@media(min-width:401px){
  fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 9px !important;
  }
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Navigation skipper */

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

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

.om-header-wrap .header-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.om-header-wrap .header-inner-wrap .lft-wrap .om-logo-inner a {
  display: inline-block;
  max-width: 191.23px;
}

.om-header-wrap .header-inner-wrap .lft-wrap .om-logo-inner a img {
  width: 100%;
  display: inline-block;
  font-size: inherit;
}

header.om-header {
  background: #05040C;
  position:relative;
}

header.om-header .om-header-wrap {
  padding: 15px 0;
}

.om-header-wrap .header-inner-wrap .om-menu-col > ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.om-header-wrap .header-inner-wrap .lft-wrap {
  max-width: 191.23px;
}

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

.om-header-wrap .header-inner-wrap .om-menu-col > ul a {
  /*   color: #fff; */
}

.om-header-wrap .header-inner-wrap .om-menu-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Montserrat;
}

.om-header-wrap .header-inner-wrap .om-menu-col > ul > li.has_child_menu > .child_menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .35s ease-in-out;
  /*   background:#05040C;   */
}

/* .om-header-wrap .header-inner-wrap .om-menu-col > ul > li.has_child_menu:hover .child_menu {
opacity: 1;
visibility: visible;
pointer-events: auto;
} */


/* .om-header-wrap .header-inner-wrap .om-menu-col > ul > li {
position: relative;
} */

.om-header-wrap .header-inner-wrap .om-menu-col > ul > li > a {
  /*   color: #fff; */
  text-transform: uppercase;
  font-size:14px;
}

.om-header-wrap .header-inner-wrap .om-menu-col > ul > li:hover > a {
  /*   color: #DD2246; */
}

.om-header-wrap .header-inner-wrap .om-menu-col > ul > li:hover > a svg path{
  fill: currentcolor;
}

.om-header-wrap .header-inner-wrap .om-menu-col ul li svg path {
  fill: currentColor;
}

.om-header-wrap .header-inner-wrap .rght-wrap a.om-btn {
  text-transform: uppercase;
}

.om-header-wrap .header-inner-wrap .om-menu-col > ul > li.has_child_menu > a {
  position: relative;
}

.om-header-wrap .header-inner-wrap .om-menu-col .child_menu ul.child_menu-inner {
  display: flex;
  flex-direction: column;
  /*   max-width: 20%; */
  max-width: calc(30% - 20px);
  min-height: 364px;
  padding: 40px;
  border: 1px solid #FFFFFF99;
  border-radius: 20px;
  box-shadow: 0px 0px 32px 0px #7C7C8699;
  /*   position: relative; */
}

.om-header-wrap .header-inner-wrap .om-menu-col .child_menu-cards {
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  margin-left: auto;
  max-width: calc(70% - 20px);
  left: 0;
  right: 0;
  max-height: 364px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: 0 0 32px 0 #7c7c8699;
  border-radius: 20px;
  transition: all .35s ease-in-out;
  border: 1px solid #ffffff99;
  border-radius: 20px;
  min-height: 364px;
}

.om-header-wrap .header-inner-wrap .om-menu-col .child_menu ul.child_menu-inner > li {
  padding: 10px 0;
  border-bottom: 1px solid #FFFFFF99;
  text-transform: uppercase;
}

.om-header-wrap .header-inner-wrap .om-menu-col .child_menu ul.child_menu-inner > li:first-of-type {
  padding-top: 0;
}

.om-header-wrap .header-inner-wrap .om-menu-col .child_menu ul.child_menu-inner > li:last-of-type {
  border-bottom: none;
}

.om-header-wrap .header-inner-wrap .om-menu-col .child_menu-cards .cards-wrapper {
  /*   border: 1px solid #ffffff99;
  border-radius: 20px; */
  padding: 40px;
  margin: 0;
  width: 100%;
  height: 100%;
}

/* .om-header-wrap .header-inner-wrap .om-menu-col .level_2:hover .child_menu-cards {
opacity: 1;
visibility: visible;
} */



.om-header-wrap .header-inner-wrap .om-menu-col .child_menu .content-wrapper {
  position: relative;
}

.om-header-wrap .header-inner-wrap .om-menu-col .cards-wrapper ul.cards-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap:10px;
}

.om-header-wrap .header-inner-wrap .om-menu-col .cards-wrapper ul.cards-list li {
  width: 48%;
}

.om-header-wrap .header-inner-wrap .om-menu-col .cards-wrapper ul.cards-list .card-contents {
  display: flex;
  align-items: center;
  align-items: flex-start;

}

.om-header-wrap .om-menu-col ul.cards-list .card-contents .card-bg {
  /*   max-width: 62px; */
  /*   width: 100%; */
  display: flex;
  align-items: center;
  /*   justify-content: center; */
}

.om-header-wrap .om-menu-col ul.cards-list .card-contents .card-label h4 {
  font-size: 18px;
  color: currentcolor;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.om-header-wrap .om-menu-col ul.cards-list .card-contents .card-label p {
  font-size: 12px;
  text-transform: initial;
}

.om-header-wrap .header-inner-wrap .menu-mobile-effect {
  background-color: transparent;
  background-image: none;
  display: none;
  cursor: pointer;
  z-index: 1;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
}

.om-header-wrap .header-inner-wrap .menu-mobile-effect .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  width: 22px;
  border-radius: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 6px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 15px;
}

.om-header-wrap .header-inner-wrap .menu-mobile-effect .icon-bar:nth-child(2) {
  top: 22px;
}

.om-header-wrap .header-inner-wrap .menu-mobile-effect .icon-bar:nth-child(3) {
  top: 29px;
}


.mobile-menu-open .om-header-wrap .header-inner-wrap .menu-mobile-effect .icon-bar:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-315deg);
  transform: translateY(20px) rotate(-315deg);
  top: 3px;
}
.mobile-menu-open .om-header-wrap .header-inner-wrap .menu-mobile-effect .icon-bar:nth-of-type(2) {
  opacity: 0;
  top: 20px;
}

.mobile-menu-open .om-header-wrap .header-inner-wrap .menu-mobile-effect .icon-bar:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(315deg);
  transform: translateY(-20px) rotate(315deg);
  bottom: 1px;
  top:auto;
}


.om-header-wrap .rght-wrap .icon-close-menu {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px 25px;
  z-index: 3;
  background: rgba(226, 45, 80, .1);
}

.om-header-wrap .rght-wrap .icon-close-menu .icon-menu-back {
  opacity: 0;
  visibility: hidden;
}

.om-header-wrap .rght-wrap .icon-close-menu .menu-close-effect {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1;
  vertical-align: middle;
  width: 30px;
  height: 28px;
  padding: 0;
  position: static;
  font-size: 1.25rem;
  display: block;
  float: none;
  text-align: right;
  margin: 10px 0;
  color: #DD2246;
}

.om-header-wrap .fa {
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.om-header-wrap .fa-remove:before,
.om-header-wrap .fa-close:before,
.om-header-wrap .fa-times:before {
  content: "\f00d";
}

.om-header-wrap .om-menu-col ul.cards-list .card-contents .card-bg svg path {
  fill: currentColor;
}

.om-header-wrap .om-menu-col ul.cards-list .card-contents .card-bg img {
  display: inline-block;
  width: 100%;
  padding-right: 10px;
  max-width: 100px;
  min-width:100px;
}

.header-hide header.om-header {
  -webkit-transform: translate(0, -150%);
  -moz-transform: translate(0,-150%);
  -ms-transform: translate(0,-150%);
  -o-transform: translate(0,-150%);
}

header.om-header {
  z-index: 999;
  width: 100%;
  top: 0;
  position: fixed;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

header.om-header .om-header-wrap .om-logo-inner {
  line-height: 0;
}

.om-header-main-wrapper {
  min-height: 78px;
}

body:after {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  height: 100%;
  width: 100%;
}

.mobile-menu-open body:after {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 99;
  visibility: visible;
}

.om-header-wrap .header-inner-wrap .rght-wrap.om-mob {
  display: none;
}

.om-header-wrap .header-inner-wrap .rght-wrap.om-desk {
  display: flex;
}

.om-header-wrap .header-inner-wrap .om-mob .om-menu-col ul.cards-list li.level_3 {
  padding-left: 25px;
  position: relative;
}

.om-header-wrap .header-inner-wrap .om-mob .om-menu-col ul.cards-list li.level_3:before {
  opacity: 0.5;
  background: #e22d50;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 2px;
  top: 1px;
  display: block;
}

.om-header-wrap .header-inner-wrap .om-mob .om-menu-col>ul>li.has_child_menu>.child_menu{
  background:none;
}




@media (max-width:1057px){
  .om-header-wrap .header-inner-wrap .om-menu-col > ul > li > a {
    font-size: 16px;
  }
}

@media(max-width:1136px) and (min-width:1024px){

  .om-header-wrap .header-inner-wrap .om-menu-col > ul > li > a {
    font-size: 12px;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col > ul {
    gap: 10px;
  }

}

@media(max-width:1024px){
  .om-header-wrap .header-inner-wrap .menu-mobile-effect {
    display: inline-block;
  }
  .om-header-wrap .header-inner-wrap .rght-wrap{
    display:none;
  }

  /*   mobile menu css */


  .om-header-wrap .header-inner-wrap .rght-wrap {
    display: block;
    position: fixed;
    right: auto;
    left: 0;
    top: 0;
    margin: 0;
    visibility: visible;
    max-width: 360px;
    z-index: 2;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    background-clip: content-box !important;
    background: var(--thim-bg-mobile-menu-color, #232323);
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%,0);
    -ms-transform: translate(-100%,0);
    -o-transform: translate(-100%,0);
    -webkit-transition: transform 0.4s ease-out;
    -moz-transition: transform 0.4s ease-out;
    -o-transition: transform 0.4s ease-out;
    -ms-transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    z-index: 999999;
  }

  .mobile-menu-open .om-header-wrap .header-inner-wrap .rght-wrap {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    visibility: visible;
    background-clip: content-box;
  }

  .om-header-wrap .rght-wrap .icon-close-menu {
    display:flex;
  }

  .om-header-wrap .header-inner-wrap .rght-wrap .om-menu-col {
    padding-top: 75px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col>ul {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    gap:0;
  }

  .om-header-wrap .header-inner-wrap .rght-wrap .om-btn-col {
    padding:20px 10px;
  }

  /*   mobile child menu */


  .om-header-wrap .header-inner-wrap .om-menu-col>ul>li.has_child_menu>.child_menu {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background: none;
    display:none;
    overflow: hidden;
    pointer-events:all;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .child_menu ul.child_menu-inner {
    box-shadow: none;
    border: none;
    padding: 20px 0 0;
    max-width: 100%;
    border-radius: 0;
    width: 100%;
    min-height: auto;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .child_menu-cards {
    display:none;
    box-shadow: none;
    border-radius:0;
    position: static;
    max-height: unset;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    min-height:unset;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .child_menu-cards .cards-wrapper {
    box-shadow: none;
    padding: 0;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .child_menu-cards{
    border: none;
    border-radius: 0;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .cards-wrapper ul.cards-list li {
    width: 100%;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col > ul > li {
    width: 100%;
    position: relative;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col > ul > li > a {
    width: 100%;
    display:inline-block;
    padding:8px 5px;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col>ul>li.has_child_menu>a:before {
    display: none;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .icon__svg{
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: center;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col > ul > li > a .icon__svg{
    top: 8px;
    right: 6px;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .child_menu ul.child_menu-inner li.level_2 {
    position: relative;
  }

  .om-header-wrap .om-menu-col ul.cards-list .card-contents .card-bg {
    display:none;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .cards-wrapper ul.cards-list .card-contents {
    flex-wrap: wrap;
    gap:10px;
  }

  .om-header-wrap .om-menu-col ul.cards-list .card-contents .card-bg img {
    padding-right: 0;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .cards-wrapper ul.cards-list {
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  html.mobile-menu-open {
    overflow: hidden;
  }

  .om-header-wrap .header-inner-wrap .rght-wrap.om-mob {
    display: block;
  }

  .om-header-wrap .header-inner-wrap .rght-wrap.om-desk {
    display: none;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col ul li.child_open>a .icon__svg {
    transform: rotate(180deg);
  }

  .om-header-wrap .header-inner-wrap .om-menu-col ul li>a .icon__svg {
    transition: all 0.3s ease;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col>ul ul a {
    position: relative;
  }

}


@media (max-width:1250px) and (min-width:1023px){
  .om-header-wrap .header-inner-wrap .om-menu-col .child_menu-cards{
    right:20px;
  }
}


@media (min-width:1023px){
  .om-header-wrap .header-inner-wrap .om-menu-col>ul>li.has_child_menu .child_menu .icon__svg {
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(270deg);
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .child_menu ul.child_menu-inner li.level_2 a {
    position: relative;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col>ul>li.has_child_menu .child_menu .icon__svg svg path {
    fill: currentColor;
  }

  .om-header-wrap .om-menu-col ul.cards-list .card-contents .card-bg svg{
    padding-right: 10px;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col > ul > li.has_child_menu.child_active .child_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col .level_2.child_active .child_menu-cards {
    opacity: 1;
    visibility: visible;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col>ul>li.has_child_menu>a {
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col>ul>li.has_child_menu>a span.icon__svg {
    display: inline-flex;
    vertical-align: middle;
  }

  .header-hide .om-header-wrap .header-inner-wrap .om-menu-col>ul>li.has_child_menu.child_active .child_menu {
    opacity: 0;
    visibility: hidden;
  }

  .om-header-wrap .header-inner-wrap .om-menu-col>ul>li.has_child_menu.child_active .child_menu {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .om-header-wrap .header-inner-wrap .om-menu-col > ul > li > a{
    display:flex;
    align-items:center;
  }
}
footer.om-footer .page-center {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  line-height: 1.5;
}

.om-footer {
  position: relative;
  z-index: 3;
}

.om-footer .om-ftr-wrapper .om-btm-sec {
/*   background: #0126D2; */
  padding: 22px 0;
  text-align: center;
  font-size: 16px;
}

.om-footer .om-ftr-wrapper .om-tp-sec {
  padding: 80px 0;
}

footer.om-footer .om-menu-wrapper {
  width: 70%;
}

footer.om-footer .om-ftr-social {
  width: 25%;
  display: flex;
  justify-content: flex-end;
}

.om-footer .om-ftr-wrapper .om-tp-sec .page-center {
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}

footer.om-footer .om-menu-wrapper .hs-menu-wrapper > ul {
  justify-content: space-between;
  row-gap: 20px;
}

footer.om-footer .om-menu-wrapper .hs-menu-wrapper > ul > li > a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Montserrat';
}

footer.om-footer .om-menu-wrapper .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper {
  gap: 8px;
  margin-top: 32px;
}


footer.om-footer .om-menu-wrapper .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper li {
  font-size: 14px;
}

footer.om-footer .om-ftr-social .om-ftr-social-title h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 32px;
  line-height: 1.5;
  text-transform:uppercase;
}

footer.om-footer .om-menu-wrapper .hs-menu-wrapper>ul>li {
  width: 25%;
}

.om-footer .om-ftr-wrapper .om-tp-sec .page-center {
  row-gap: 20px;
}


a.om-ack-to-top {
  position: fixed;
  bottom: 14px;
  right: 14px;
  display: block;
  width: 32px;
  height: 32px;
  background:var(--senary_color);
  color: var(--quinary_color);
  text-align: center;
  z-index: 997;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  visibility: visible;
}

a.om-ack-to-top:hover,
a.om-ack-to-top:focus{
  background:var(--tertiary_color);
  color: var(--quinary_color);
}

a.om-ack-to-top.active {
  opacity: 1;
  filter: alpha(opacity=100);
}

a.om-ack-to-top i {
  line-height: 32px;
  font-size: 10px;
}

@media (max-width:991px){
  footer.om-footer .om-menu-wrapper {
    width: 100%;
  }

  footer.om-footer .om-ftr-social {
    width: 100%;
    justify-content: flex-start;
  }
}

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

  footer.om-footer .om-menu-wrapper .hs-menu-wrapper>ul>li ul.hs-menu-children-wrapper {
    margin-top: 10px;
  }

  footer.om-footer .om-menu-wrapper .hs-menu-wrapper>ul {
    row-gap: 32px;
  }

  .om-footer .om-ftr-wrapper .om-tp-sec .page-center {
    row-gap: 32px;
  }

  footer.om-footer .om-ftr-social .om-ftr-social-title h2 {
    margin-bottom: 20px;
  }

  .om-footer .om-ftr-wrapper .om-btm-sec {
    font-size: 13px;
  }

  a.om-ack-to-top {
    bottom: 83px;
  }
}
/* 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;
  }
}

.om-theme .splide__arrow {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
}

.om-theme .splide__arrow  svg{
  display:none;
}
.om-theme .splide__arrow:hover {
  border: none;
}

.om-theme .splide__pagination {
  bottom: -32px;
  top: auto;
  padding: 0;
}

.om-theme .splide.is-focus-in .splide__arrow:focus {
  outline: 0;
}

.om-theme .splide__pagination__page.is-active,
.om-theme .splide__pagination__page:hover {
  background: var(--tertiary_color);
  border-radius: 50%;
  border: none;
}

.om-theme .splide__pagination__page {
  background: var(--primary_color);
}

.om-theme .splide__arrow--prev {
  background-image:url(//26192512.fs1.hubspotusercontent-eu1.net/hubfs/26192512/raw_assets/public/Replug_2025/images/left-arrow-svg.svg);
  background-size:40px 40px;
}

.om-theme .splide__arrow--next {
  background-image:url(//26192512.fs1.hubspotusercontent-eu1.net/hubfs/26192512/raw_assets/public/Replug_2025/images/right-arrow-svg.svg);
  background-size:40px 40px;
}
.om-theme .splide__arrow--prev:hover,
.om-theme .splide__arrow--prev:focus{
  background-image:url(//26192512.fs1.hubspotusercontent-eu1.net/hubfs/26192512/raw_assets/public/Replug_2025/images/prev-icon-fill.svg);
}

.om-theme .splide__arrow--next:hover,
.om-theme .splide__arrow--next:focus{
  background-image:url(//26192512.fs1.hubspotusercontent-eu1.net/hubfs/26192512/raw_assets/public/Replug_2025/images/next-icon-fill.svg);
}