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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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

.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;
}


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

/* Button */

.home-page-loaded .for-otherpage {display: none;}
.for-homepage a {display: block;}
.for-homepage {max-width: 184px; width:100%}
.for-homepage{display:none;}
.home-page-loaded .for-homepage {display: block;}


.home-page-loaded .toggle-header .for-otherpage {display: block;}
.home-page-loaded .toggle-header .for-homepage, .home-page-loaded .toggle-header .for-otherpage.header-desktop-cta {display: none;}
/* .home-page-loaded .toggle-header .for-otherpage.header-desktop-cta {display: none;} */


.header-cta-og {
  border-radius: 1.4em;
  background-color: #1a2857;
  color: #fff;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 400;
  border-radius: 32px;
  padding: 14px 55px;
  background-color: #FFFFFF;
  line-height: 1.22;
  color: #01182E;

}
.header-cta-og span {
  display: block;
  position: relative;
}
.header-cta-og:hover a{
  color: #fff;
}
.header-cta-og:hover em {
  transform: rotate(-8deg) translateY(-81%);
  transform-origin: left top;
}
.header-cta-og em {
  position: absolute;
  width: 16em;
  height: 6em;
  background-color: #ED4D79;
  left: 0;
  top: 3.8em;
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
.header-cta-og em i {
  float: left;
  position: relative;
  overflow: hidden;
  width: 2em;
  height: 1em;
  margin-top: -0.5em;
}
.header-cta-og em i:after,
.header-cta-og em i:before {
  content: '';
  float: left;
  height: 100%;
  width: 50%;
  border-radius: 50%;
}
.header-cta-og em i:before {
  background-color: #ED4D79;
}
.header-cta-og em i:after {
  background-color: #fff;
}

/* * * * */
/* My custome code */
.headerRow {display: flex; align-items: center; justify-content: space-between; width: 100%;}
.svgBlock svg{display: block; width:121px; height:26px;}
.mainNavForWeb ul li {position: relative; display: inline-flex;}
.mainNavForWeb ul {display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding-left: 0;}
.toggle-menu {gap: 10px; flex-direction: column; width: 41px; z-index: 501; cursor: pointer;}
.position-relative {
  position: relative ;
}
.d-flex {
  display: flex;
}


.toggle-menu > .toggle-bar:nth-child(1)::before {
  width: 36px;
}
.toggle-menu>.toggle-bar:nth-child(3):before {
  width: 30px;
}
.toggle-menu > .toggle-bar::before {
  content: '';
  background-color: #ffffff;
  width: 41px;
  height: 3px;
  position: absolute;
  right: 0;
  -webkit-transition: all ease .3s;
  transition: all ease 0.3s;
}

.mainNavForWeb ul li > a {
  color: #ffffff;
  font-weight: 300;
  transition: all ease 0.3s;
}
.mainNavForWeb ul li a {
  padding: 15px 18px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  font-weight:500;
  display: block;

}

.mainNavForWeb ul li:hover a{transform: translateY(-4px);}
.mainNavForWeb ul li a::after {
  content: '';
  position: absolute;
  margin: 0 auto;
  bottom: 5px;
  width: 0;
  height: 2px;
  background-color: #fff;
  left: 0;
  right: 0;
  transition: all ease 0.2s;
}
.mainNavForWeb ul > li:hover > a::after {
  width: calc(100% - 50px);
}

/* .siteSearchAndCTARow {
display: flex;
gap: 48px;
padding-left:30px;
} */
.mainNavForWeb li.hs-menu-item.hs-menu-depth-2 {display: block;max-width: 100%;width: 100%;}
.mainNavForWeb ul.hs-menu-children-wrapper {position: absolute;top:130%;width: 160px;left:0;visibility: hidden;opacity: 0;overflow:hidden;}
.mainNavForWeb li.hs-item-has-children:hover ul.hs-menu-children-wrapper {visibility: visible;opacity: 1;top: calc(100% - 0px); z-index:15; transition: all .5s ease;}
.mainNavForWeb ul>li.hs-item-has-children:hover>a:after{display:none;}
.mainNavForWeb li.hs-menu-item.hs-menu-depth-2 a {padding: 0px; padding-bottom: 5px; font-size: 14px;display:inline-block;}
.mainNavForWeb ul li.hs-menu-depth-2 a:after {transition:all-ease-in 0.5s; background-color: #fff;bottom: 0px;content: "";height: 2px;left: 0px;margin: 0 auto;position: absolute;right: 0;transition: all .2s ease;width: 0;}
.mainNavForWeb ul>li.hs-menu-item.hs-menu-depth-2:hover>a:after {width: 100%;}
.mainNavForWeb ul li.hs-item-has-children:hover ul li a {transform:translateY(0px)}


/* .mainNavForDKB li.hs-item-has-children > a:before {content: "\f107";position: absolute;right: 0;top: 36%;font-family: 'FontAwesome';transition:all 0.2s ease;}
.mainNavForDKB li.hs-item-has-children:hover > a:before {content: "\f107";position: absolute;right: 0;font-family: 'FontAwesome';top: 44%;transform: rotate(180deg);}
*/
.mainNavForWeb ul.hs-menu-children-wrapper { border: 1px solid #96969633;border-radius: 10px; padding: 10px 10px !important; background:#FFFFFF; }
.Navigation_Inner ul li.active-branch a , .Navigation_Inner ul li.active-branch > a {color: #fff !important;}
.mainNavForWeb ul li.active-branch a {transform: translateY(-8px);}
.mainNavForWeb ul li.hs-menu-item.hs-menu-depth-1.active-branch a:after{width: calc(100% - 50px);}
.mainNavForWeb ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children.active-branch ul li a:after {width:0;}

.mainNavForWeb ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children.active-branch:hover ul li:hover a:after {width:100%;}
.mainNavForWeb ul li.hs-menu-item.hs-menu-depth-1.active.active-branch a:after {
  width: calc(100% - 50px);
}
.forLeftSideMarginSpace{margin-right:auto;}

.header-cta-button a {
  font-size: 18px;
  line-height: 1.22;
  transition: all 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  padding: 20px 24px;
  gap:10px;
  font-weight: 600;
  font-family: 'Averta Std CY';
}
.header-cta-icon svg {
    display: block;
    width: 21px;
    height: 21px;
}

/* .header-cta-button a:hover{
  color: #fff;
} */
/* Search */
header.header {
  position: absolute;
  width: 100%;
  z-index: 99;
  padding: 12px 0;
}


.home-page-loaded header.header {
  background-color: transparent;
}

/* Hamburger */
.toggleCTACol {
  display: none;
}
/* * * * * */
.Navigation_row {
  display: flex;
  align-items: center;
  gap:12px;
  z-index: 40;
}
.search-filter.d_none {display: none;}
.mobile-slider-item-sub-title {margin-top: 4px;}
.navigation-item-text {line-height: 1.2; font-size: 18px; font-family: 'Averta Std CY'; color:#FFFFFF; font-weight: 600;}
/* * */
/* * * * */
@media (max-width: 1320px) {
  .siteSearchAndCTARow {
    padding-left: 15px;
  }
}

@media (min-width: 1081px) {
  .hs-menu-children-wrapper {
    display: block !important;
  }
  .Navigation_row {
    display: flex !important;
  }
}
@media (max-width: 1280px) {
  .siteSearchAndCTARow {

    padding-left: 50px;
  }
  .mainNavForWeb ul li a {
    padding: 30px 18px;
    position: relative;
  }
}
@media (max-width: 1230px) {
  .siteSearchAndCTARow {padding-left: 15px; gap: 30px;}
  .mainNavForWeb ul > li:hover > a::after {width: calc(100% - 30px);}

}
@media (max-width: 1080px) {
  .navigation-item-text {color:#000000;}
  .mainNavForWeb ul li {position: relative;}
  .mainNavForWeb ul li:before {content: ""; position: absolute; right: 24px; top: 50%; background-image: url(https://4034898.fs1.hubspotusercontent-na1.net/hubfs/4034898/Wagonex%20-%202023/Icon%20feather-chevron-right.png); width: 8px; height: 14px; background-size: contain; background-repeat: no-repeat; background-position: center; transform: translateY(-50%);}
  .mainNavForWeb ul li.hs-item-has-children:before{display:none;}
/*  .home-page-loaded .header.toggle-header {background-color: #FFFFFF; }
  .home-page-loaded .header.toggle-header .expandMenu i {background: #262626; }
  .home-page-loaded .header.toggle-header .mainHeaderLogo img {filter: brightness(0) invert(0);}
  .home-page-loaded .header.toggle-header .for-homepage {margin: 0 auto; position: relative; left: 35px; transition: all 0.4s ease;} */
  .search-filter.d_none {display: block; padding: 0px 20px;}
  .search-filter.d_none form input[type=search] {border: none; background-color: #F8F8F8; border-radius: 15px;}
  /*-=-=-=-= Mobile menu JS USE  MENU ICON as '<a class="expandMenu"><i></i><i></i><i></i></a>' -=-=-=*/

  .expandMenu {width: 41px;height: 25px;display: block;cursor: pointer;padding: 3px;position: relative;margin: 0 3px 0 auto;}
  .expandMenu i { position:relative; width: 41px; left:0; height: 3px; opacity:1; display: block; background: #ffffff; margin: 7px 0; transition:all ease 0.3s; -webkit-transition:all ease 0.3s; -moz-transition:all ease 0.3s; }
  .expandMenu i:first-child {margin-top: 0; width:36px; left: 4.8px;}
  .expandMenu.active i:first-child {margin-top: 0; width: 25px; left: 11px;}
  
  .expandMenu i:nth-child(3) {width:30px; left: 11px;}
  .expandMenu.active i:first-child {transform: rotate(135deg); -webkit-transform: rotate(135deg); top: 11px; position: relative; }
  .expandMenu.active i:nth-child(2) {position:relative; left:-46px; opacity:0; }
  .expandMenu.active i:last-child {transform: rotate(-135deg); -webkit-transform: rotate(-135deg); top: -9px; position: relative; width:25px;}

  .childExpand { position: absolute; top: 14px; right: 20px; width: 24px; text-align: center; height: 24px; margin: 0; padding:5px; cursor:pointer; }
  .childExpand i { position:relative; width: 15px; left:0; height: 2px; opacity:1; display: block; background:#000000; margin: 6px 0; transition:all ease 0.3s; -webkit-transition:all ease 0.3s; -moz-transition:all ease 0.3s; }
  .childExpand i + i { position: relative; transform: rotate(90deg); -moz-transform: rotate(90deg); -webkit-transform: rotate(90deg); top:-7px; }
  .childExpand.open i { transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); }
  .childExpand.open i+i { transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg);}

  .Navigation_row {border-top: 1px solid #fff;width: 100%;position: absolute; left: 0;top: 100%;display: none; background-color: #FFFFFF ;text-align: left;box-shadow: 0px 4px 4px 0px rgb(153 153 153 / 30%);height: calc(100vh); overflow-y: auto !important; padding-bottom: 30px;};
  .Navigation_Left.hs-menu-wrapper { width: 100%; }
  ul.listParentOfNav { padding: 0; display: block; }
  li.navItem { padding: 0; }
  .mainNavForDKB .hs-menu-wrapper ul li a { padding: 10px 20px; color:#fff !important; }
  span.navArrow { display: none; }

  .mainNavForWeb .hs-menu-children-wrapper { position: relative; display: none; top: inherit; left: inherit; transform: none; padding: 10px 0; border-radius: 0; }
  .mainNavForWeb .hs-menu-children-wrapper { border-radius: 0; }
  .allMegaMenuContentWrap { flex-wrap: wrap; }
  .leftSideContent { width: 100%; padding: 10px 20px; }
  .leftSideContent { width: 100%; }
  .leftSideContent:not(:first-child) { padding-left: 20px; }
  .navItem:nth-child(n+3) .hs-menu-children-wrapper { right: 0%; }
  ul.listParentOfNav li .hs-menu-children-wrapper { opacity: 1; visibility: visible; }

  /*   .mainNavForWeb .hs-menu-wrapper  ul > li + li { border-top: 1px solid rgb(255 255 255 / 5%); } */
  .mainNavForWeb .hs-menu-wrapper  ul > li > a {padding: 15px 20px; }

  .Navigation_Right {width: 100%;text-align: center;}
  .Navigation_Right ul {justify-content: center;padding-top: 12px !important;border-top: 1px solid #f29335;}
  .Navigation_Right {padding-left: 0;}
  li.signInIcon a {color: #ffffff;}
  .mainNavForWeb ul {flex-direction: column;}
  .headerInner {padding: 20px 0px;}
  /* CSS for toggle order change */
  .toggleCTACol {display: none;}
  .expandMenu {order: 4; margin-left: 25px;}
  .mainNavForWeb ul li a::after {display:none;}
  .mainNavForWeb ul li:hover a{transform: unset;}
  .mainNavForWeb li.hs-item-has-children:hover>a:before, li.hs-item-has-children>a:before{visibility:1;opacity:1;}

  li.hs-menu-item.hs-menu-depth-2:not(:last-child) {
    border-bottom: 1px solid hsla(0,0%,100%,.4);
  }
  .mainNavForWeb ul.hs-menu-children-wrapper {
    position: relative;
    width: 100%;
    visibility: visible;
    opacity: 1;
    top: 0;
    border-radius: 0;
    display: none;
    padding: 0px 23px!important;
  }

  .mainNavForWeb ul li {
    display: block;
  }

  .Navigation_Inner ul li a {
    display: inline-block;
  }

  li.hs-item-has-children:hover>a:before, li.hs-item-has-children>a:before {
    display: none;
  }
  .mainNavForWeb ul li.active-branch a {
    transform: translateY(0px);
  }
  .mainNavForWeb li.hs-menu-item.hs-menu-depth-2{padding:5px 0;}
  .header-cta-button {padding: 0 20px;}
  .mainNavForWeb ul {gap: 0px;}
  .header-cta-field {padding-top: 12px!important; border-top: 1px solid #fff;}
  
  .Navigation_row {gap:0px;}
  .mainNavForWeb li.hs-item-has-children:hover ul.hs-menu-children-wrapper {transition: auto;}
  /*   .mainNavForDKB ul li.hs-item-has-children ul li a {-webkit-text-stroke: 0 #fff; transform: translateY(0); } */


} 
@media (max-width: 767px){
  .svgBlock svg { width: 165px; height: 35px;}
  header.header {padding: 0;}
  .for-homepage {max-width: 120px;}
}

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