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

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

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

/* Paragraphs */

p {
  margin: 0;
}

* + p {

  padding-top: 20px;

}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* 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;display: inline-block;vertical-align:middle;max-width: 100%; height: auto;
}
/* Button CSS */

.button.primary a,a.button.primary,.button a,a.button {  
  background-color: var(--green); text-align:center;border: 1px solid var(--green);color: var(--white);padding: 9px 30px; min-width:195px;
  font-size:18px;line-height: 1.22;font-weight: 700;display: inline-block;vertical-align:middle; }
.button.primary a:hover,a.button.primary:hover,.button a:hover,a.button:hover { background-color: var(--fern-green);border-color: var(--fern-green); }

.button.secondary a, a.button.secondary { background-color: var(--blue);border-color: var(--blue); }
.button.secondary a:hover, a.button.secondary:hover { background-color: var(--deep-cerulean);border-color: var(--deep-cerulean); }
.button.terratary a:hover,a.button.terratary:hover { background-color: var(--deep-cerulean);border-color: var(--deep-cerulean); color: var(--white)}

.button.terratary a,a.button.terratary { background-color: var(--white);border-color:var(--white);color:var(--dark-gray) }
.button.normal-button a,a.button.normal_button ,.button.simple_button a, a.button.simple_button,.button.simple-button a, a.button.simple-button  {background-color: transparent; min-width:auto;  border-color: transparent;   padding: 0;   text-align: inherit;color:var(--blue)}
.button.normal-button a:hover,a.button.normal_button:hover , .button.simple_button a:hover, a:hover.button.simple_button, .button.simple-button a:hover, a:hover.button.simple-button{color:var(--fern-green);}
.button.small a { padding: 14px 24px;font-size: 15px; }
.button.medium a { padding: 15px 30px;font-size: 16px; }
.button.fullwidth a { padding: 15px 30px;width: 100%;display: block;text-align:center;}

@media (max-width: 767px) { .button a,a.button {  min-width:100% !important;} }
/* Forms */

/*---------------------    chdeckbox  setup ---------------*/

form .input { margin-right:0 !important; }
form fieldset { max-width:inherit !important; margin:0 -10px !important;  }
form fieldset.form-columns-1 .field { width:100% !important; }
form fieldset.form-columns-2 .field { width:50% !important; }
form fieldset.form-columns-3 .field { width:33.33% !important; }
form .field { padding:0 0 20px; }
form fieldset .field { padding-left:10px; padding-right:10px; }
form ul.multi-container { padding-top:10px; }
form ul.multi-container li { margin:5px 12px; }  
textarea, input[type="text"], input[type="number"], input[type="email"], input[type="tel"], select { display:block; border:1px solid var(--gray); 
  outline:none; background:#FCFCFA; font-size:18px; line-height:1.22;font-family: inherit;font-weight:400; color:#515356; margin:0; padding:13px 10px; width:100% !important;  }
textarea { min-height:100px; }
input[type="submit"] { outline: none;font-family: inherit;padding: 15px 55px;background-color: var(--blue);color: var(--white);border: 1px solid var(--blue);
  font-size: 18px;line-height: 1.22;text-transform: uppercase;font-weight: 400;border-radius: 0;cursor: pointer;-webkit-transition: all ease 0.3s;-moz-transition: all ease 0.3s;
  transition: all ease 0.3s; text-align: center;}
form input[type="radio"]+span,form input[type="checkbox"]+span { position: relative; display:block;  padding-left: 28px;  cursor:pointer;font-weight: 400;}
form input[type="radio"]+span:before,form input[type="checkbox"]+span:before { content: '';  color:#6b1631;  position:absolute;  left:0;  top: 1px;  font-size:0; width: 18px;height: 18px;
  display:block; border:1px solid var(--gray);  transition:all ease .3s;  -webkit-transition:all ease .3s;  text-align:center;  line-height:14px;  border-radius: 0;background-position: center center;
  background-repeat: no-repeat;background-size: 8px auto; }
form input[type="radio"]:checked+span:before { background: #6b1631; border-color:var(--gray);}
form input[type="checkbox"]:checked+span:before { border-color: var(--gray); font-size:12px;  background-color: #009CDE;  color:#fff;  letter-spacing: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M0 11.522l1.578-1.626 7.734 4.619 13.335-12.526 1.353 1.354-14 18.646z'/%3E%3C/svg%3E");
}
input[type="checkbox"] { display: none;}
input[type="submit"]:hover {background-color: #515356;border-color: #515356;}
.hs_error_rollup {display: none;}
form fieldset label {font-size: 18px;line-height: 1.2;font-weight: 600;margin-bottom: 10px;display: block;}
.hs-fieldtype-file {display: flex;flex-wrap: wrap;}
legend.hs-field-desc {order: 2;margin-top: 12px;font-size: 14px;line-height: 1.43;opacity:80%;}
.hs-fieldtype-file > * {width: 100%;}
input[type="file"] {background-color: #FCFCFA;border: 1px solid #D1D1D1;padding: 12px;width: 100% !important;}
ul.inputs-list.multi-container {margin: 0 -12px;padding: 0;list-style: none;display: flex;flex-wrap: wrap;}

select {appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.584737 1.08392C0.611529 1.05732 0.643357 1.03621 0.678398 1.02181C0.71344 1.00741 0.751005 1 0.788943 1C0.826882 1 0.864447 1.00741 0.899488 1.02181C0.934529 1.03621 0.966358 1.05732 0.99315 1.08392L4.25008 4.30995L7.507 1.08392C7.53382 1.05736 7.56565 1.03629 7.60069 1.02192C7.63573 1.00755 7.67328 1.00015 7.71121 1.00015C7.74913 1.00015 7.78669 1.00755 7.82172 1.02192C7.85676 1.03629 7.8886 1.05736 7.91542 1.08392C7.94223 1.11048 7.9635 1.14201 7.97802 1.1767C7.99253 1.2114 8 1.24859 8 1.28615C8 1.32371 7.99253 1.3609 7.97802 1.3956C7.9635 1.4303 7.94223 1.46183 7.91542 1.48839L4.45428 4.91608C4.42749 4.94268 4.39566 4.96379 4.36062 4.97819C4.32558 4.99259 4.28801 5 4.25008 5C4.21214 5 4.17457 4.99259 4.13953 4.97819C4.10449 4.96379 4.07266 4.94268 4.04587 4.91608L0.584736 1.48839C0.557876 1.46185 0.536565 1.43033 0.522025 1.39563C0.507485 1.36093 0.5 1.32372 0.5 1.28615C0.5 1.24858 0.507485 1.21138 0.522025 1.17667C0.536566 1.14197 0.557876 1.11045 0.584737 1.08392Z' fill='%23515356' stroke='%23515356' stroke-width='0.5'/%3E%3C/svg%3E");
  background-position: calc(100% - 10px) center;background-repeat: no-repeat;background-size: auto;}
ul.inputs-list {margin: 0;padding: 0;list-style: none;}

form label {font-weight: 600;}
form .input {margin-top: 8px;}
form input[type="radio"]+span, form input[type="checkbox"]+span {line-height: 18px;}
ul.inputs-list.multi-container {margin: 0;gap: 24px;}
form ul.multi-container li {margin: 0;}

@media(max-width:767px){
  form fieldset.form-columns-2 .field {width: 100% !important;}
  form input[type="submit"] {  width: 100%;}
  
}
/* Missing Template at Path: \'sf_theme\/Payday_theme_2024\/css\/elements\/_tables.css\' */

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

.header-sec .content-wrapper {padding:  0 15px;}
.header-sec {position: fixed;left: 0;top: 0;width: 100%;height: auto;z-index: 999;background-color: #fff;box-shadow: 0px 4px 6px 0px #0000000A;}
.header-sec-inr {display: flex;flex-wrap: wrap;align-items: center;}
.rs-header-inr {display: flex;justify-content: flex-end;align-items: center;}
.ls-header {width: 210px;}
.rs-header {width: calc(100% - 210px);}
/*  Search Css */
.searchIcon {position: relative;cursor: pointer;}
.searchIcon form {position: absolute;right: 0;top: 50%;transform: translateY(-50%);background-color: transparent;border: 1px solid transparent;}
.searchIcon form input[type="text"] {background-color: transparent;height: 42px;padding: 0;border-radius: 3px;text-indent: 12px;border: 1px solid transparent;transition: all .2s ease;width: 0 !important;}
.searchIcon input[type=submit] {background-color: transparent;background-position: 50%;background-repeat: no-repeat;border: none;height: 42px;margin: 0;opacity: 0;padding: 0;right: 0;position: absolute;border-radius: 0 3px 3px 0;0 3px 3pxCONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;top: 0;visibility: hidden;width: 46px;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.414' height='19.414'%3E%3Cg fill='none' stroke='%2323232d' stroke-width='2' data-name='Group 8668'%3E%3Cg data-name='Ellipse 1'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' stroke='none'/%3E%3Ccircle cx='7.5' cy='7.5' r='6.5'/%3E%3C/g%3E%3Cpath stroke-linecap='round' d='m13 13 5 5' data-name='Line 37'/%3E%3C/g%3E%3C/svg%3E");}
.searchIcon.active form input[type="text"] {background-color: #fff;border-color: #ccc;width: 250px !important;}
.searchIcon.active input[type=submit] {opacity: 1;visibility: visible;}
.searchIcon input[type=submit]:hover {background-color: #009CDE;border: 1px solid #009CDE;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11'%3E%3Cpath fill='%23fff' d='M5.7.1 11 5.4c.1.1 0 .1 0 .2l-5.2 5.3c-.1.1-.1.1-.2 0L4.4 9.8l3.3-3.4H0V4.6h7.6L4.3 1.2 5.5 0s.1 0 .2.1c0-.1 0 0 0 0z'/%3E%3C/svg%3E");}
/*  Menu Items Css */
.menuItems>.hs_cos_wrapper >.hs-menu-wrapper>ul {display: flex;flex-direction: row;flex-wrap: wrap;align-items: center;}
.menuItems>.hs_cos_wrapper >.hs-menu-wrapper>ul> li {line-height: 0;}
.menuItems>.hs_cos_wrapper >.hs-menu-wrapper>ul> li >a {display: inline-block;vertical-align: middle;text-decoration: none;
  color: #515356;font-size: 18px;font-weight: 400;line-height: 1.223;padding: 24px 0; 
  transition:all ease .3s;-webkit-transition:all ease .3s;-moz-transition:all ease .3s}
.searchbar {line-height: 0;width: 24px;height: 24px;display: flex;align-items: center;justify-content: center;margin-left: 20px;}
.searchIcon span {line-height: 0;display: inline-block;}
.megamenu-items{ display:none;}
.auth-buttons {display: inline-flex;gap: 20px;margin-left: 20px;}

.megamenuRepeat {position: absolute;left: 0;top: 100%;width: 100%;height: auto;background-color: #009CDE;transition: all ease .3s;opacity: 0;visibility: hidden;}

.header-sec .content-wrapper {position: relative;}
.megaTitle h2 {margin: 0;display: block;line-height: 1.19444;font-weight: 400;color: #fff;font-size: 36px;}
.megaRow {display: flex;}
.ls-mega {width: 311px;background-color: #006E9D;}
.rs-mega {width: calc(100% - 311px);}
.tabsList> ul {margin: 0;padding: 0;list-style-type: none;display: block !important;}
.tabsList> ul>li>span {display: flex;line-height: 1.223;padding: 9px 30px;width:100%;font-size: 18px;color: #fff;transition: all ease .3s;background-color: transparent;cursor: pointer;align-items: center;justify-content: space-between;}

.megaTitle {padding: 0 29px 30px;}
.ls-megaInr {padding-top: 30px;padding-bottom: 43px;}
.rs-megainr {padding: 50px;}
.tabContent, .tabContent p {margin: 0;font-size: 18px;line-height: 1.223;font-weight: 600;color: #fff;}
.tabTitle {padding-bottom: 10px;}
.titleRowInr {display: flex;justify-content: space-between;align-items: center;}
.megaBtn.button {padding: 0;background-color: transparent;border: none;}
.megaBtn.simple_button a {font-size: 18px;font-weight: 400;line-height: 1.223;text-align: left;color: #fff;text-decoration: none;display: inline-flex;align-items: center;text-transform: capitalize;transition: all ease .3s;}
.megaBtn.simple_button a span {line-height: 1;padding-left: 10px;}
.megaBtn.simple_button a span svg path {stroke: #fff;transition: all ease .3s;}
.megaBtn.simple_button a:hover span {padding-left: 20px;}
.countTitle h3 {margin: 0;line-height: 1.25;color: #ffff;font-weight: 400;font-size: 24px;text-transform: capitalize;}
.counttext , .counttext p {margin: 0;color: #fff;font-size: 14px;line-height:1.42}
.countRowInr {display: flex;align-items: center;justify-content: space-between;}
.lsCount {width: 70%;padding-right: 40px;max-width: 505px;}
.rsCount {width: 30%;display: flex;flex-wrap: wrap;align-items: center;justify-content: flex-end;gap: 36px;}
.CountNum {font-size: 36px;color: #fff;line-height: 1.194;text-align: center;}
.countertitle {padding-top: 5px;color: #fff;font-weight: 600;text-align: center;display: block;vertical-align: middle;line-height: 1.223;}
.tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul {display: flex;flex-wrap: wrap;align-items: center;}
.tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li>a {display: flex;vertical-align: middle;align-items: center;color: #fff;text-decoration: none;font-size: 18px;line-height: 1.223;font-weight: 400;transition: all ease .3s;justify-content: space-between;}
.tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li {width: 100%;padding:7px 0;}
.tabsMenuItems.three >.hs_cos_wrapper >.hs-menu-wrapper>ul{ margin: 0 -25px;}
.tabsMenuItems.three >.hs_cos_wrapper >.hs-menu-wrapper>ul>li {width: 33.3333%;padding: 7px 25px; }
.tabsMenuItems.two >.hs_cos_wrapper >.hs-menu-wrapper>ul {margin:0 -7px; }
.tabsMenuItems.two >.hs_cos_wrapper >.hs-menu-wrapper>ul>li {width: 50%;padding:7px; }
.countRow, .titleRow {padding-bottom: 30px;border-bottom: 1px solid rgb(255 255 255 / 20%);margin-bottom: 30px;position: relative;}
.countTitle {padding-bottom: 13px;}
.tabTitle {display: inline-block;vertical-align: middle;}
.logoBorder{position: absolute; height: 1px;left:0;background-color: rgb(255 255 255 / 30%);bottom: 0;}
.megaTitleBorder{position: absolute;width: 309px;left:0;height: 1px;background-color: rgb(255 255 255 / 30%);bottom: 0;} 
.countTitle {display: inline-block;vertical-align: middle;}
.megaBtn.button:hover {padding: 0;background-color: transparent;border: none;}
.megaBtn.simple_button a span {transition: all ease .3s;}
.megaBtn.simple_button a:hover span {padding-left: 15px;}
.tabsParent {display: none;}
.childExpand {line-height: 0;padding-left: 8px;}
.childExpand svg {transition: all ease .3s;}

.tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li> a:hover span {padding-right: 0;}
.tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li> a span {padding-right: 5px;transition: all ease .3s;}
.soly-title {display: none;}

/* New Form CSS */

.form-btm form {transform: none;position: relative;}
.form-btm .form-btm-inr {position: absolute;top: 100%;left: 0;width: 100%;z-index: 1;background-color: #F0F0F0;padding: 15px 0;}
.form-btm form {max-width: 1320px;margin: 0 auto;}
.searchIcon {position: static;}
.searchIcon input[type=submit] {background-image: none;outline: none;font-family: inherit;padding: 10px 55px;color: var(--white);
  border: 1px solid #3F9C35;font-size: 18px;line-height: 1.22;text-transform: uppercase;font-weight: 400;border-radius: 0;cursor: pointer;
  -webkit-transition: all ease 0.3s;-moz-transition: all ease 0.3s;transition: all ease 0.3s;text-align: center;background-color: #3F9C35;width: auto;height: auto;}
.header-sec .content-wrapper {position: static;}
/* .searchIcon.active form input[type="text"] { width:100% !important; } */
.searchIcon form input[type="text"] { width: 100% !important; }
.form-btm textarea,.form-btm input[type="text"],.form-btm input[type="number"],.form-btm input[type="email"],.form-btm input[type="tel"],.form-btm select {
  padding: 10px 26px 10px 35px !important;height: inherit !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M13.244 12.0265L9.58993 8.3724C10.1583 7.47919 10.5643 6.50478 10.5643 5.44917C10.5643 2.60713 8.29072 0.333496 5.44868 0.333496C2.60664 0.333496 0.333008 2.60713 0.333008 5.44917C0.333008 8.2912 2.60664 10.5648 5.44868 10.5648C6.58549 10.5648 7.55991 10.24 8.37192 9.59042L12.026 13.2445C12.5132 13.7317 13.0816 13.8129 13.4064 13.4069C13.8124 13.0821 13.7312 12.5137 13.244 12.0265ZM5.44868 9.10321C3.41865 9.10321 1.79463 7.39799 1.79463 5.44917C1.79463 3.41914 3.49985 1.79512 5.44868 1.79512C7.4787 1.79512 9.10273 3.50034 9.10273 5.44917C9.10273 7.39799 7.4787 9.10321 5.44868 9.10321Z' fill='%23515356'/%3E%3C/svg%3E");
  background-position: 15px  center;background-repeat: no-repeat;background-size: auto;text-transform: capitalize;}
.form-btm input[type=submit]:hover {background-image: none !important;}
.form-btm {display: none;}
.searchIcon.active .form-btm {display: block;}
.searchIcon.active form input[type="text"] {width: 100% !important;}
/* ENd New Form CSS  */

.mb-con {display: none;}
.megamenuRepeat {max-width: 1320px;margin:  0 auto;left: 50%;transform: translateX(-50%);}

@media(min-width:992px){
  .menuItems >.hs_cos_wrapper> .hs-menu-wrapper >ul> li:hover >a {color: #515356;font-weight: 700;}
  .menuItems >.hs_cos_wrapper> .hs-menu-wrapper >ul> li+li {margin-left: 20px;}
  .menuItems>.hs_cos_wrapper >.hs-menu-wrapper>ul> li:hover .megamenuRepeat {opacity: 1;visibility: visible;}
  .menuItems>.hs_cos_wrapper >.hs-menu-wrapper>ul> li:hover .childExpand svg {transform: rotate(180deg);}
  .mwmega, .backBtn, .backchild, .mwSearch{ display:none;}
  .tabsList> ul>li:hover>span, .tabsList> ul>li.active>span {background-color: #009CDE;}
  .simple .megaTitle {padding-bottom: 0;}
  .ls-megaInr.simple {padding-bottom: 30px;}
  .ls-megaInr.simple .rs-megainr {display: none;}
}
@media(max-width:1230px){
  .header-sec .content-wrapper {max-width:1000px;}


  .megaTitle h2 {font-size: 30px;}
  .ls-mega {width: 280px;}
  .megaTitle {padding: 0 20px 20px;}
  .tabsList> ul>li>span {padding: 9px 20px;}
  .rs-mega {width: calc(100% - 280px);}
  .rs-megainr {padding: 40px 25px;}
  .countRow, .titleRow {padding-bottom: 20px;margin-bottom: 20px;}
  .tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul {margin: 0 -10px;}
  .tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li>a {gap: 5px;}
  .ls-megaInr {padding: 30px 0;}
  .tabsMenuItems.three >.hs_cos_wrapper >.hs-menu-wrapper>ul{ margin: 0 -10;}
  .tabsMenuItems.three >.hs_cos_wrapper >.hs-menu-wrapper>ul>li {padding: 7px 10px; }

}

@media(max-width:1080px){
  .header-sec .content-wrapper {max-width: 100%;}

  .megaTitle {padding: 0 20px 30px;}
  .megaTitle h2 {font-size: 26px;}
  .tabsList> ul>li>span {padding: 9px 15px;font-size: 16px;}
  .rs-megainr {padding: 30px 20px;}
  .tabTitle {max-width: 130px;}
  .tabContent, .tabContent p {font-size: 16px;}
  .megaBtn.simple_button a {font-size: 16px;}
  .countRow, .titleRow {margin-bottom: 15px;padding-bottom: 15px;}
  .tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li>a {font-size: 16px;}


  .tabsMenuItems.three >.hs_cos_wrapper >.hs-menu-wrapper>ul,.tabsMenuItems.two >.hs_cos_wrapper >.hs-menu-wrapper>ul{ margin: 0 -10px;}
  .tabsMenuItems.three >.hs_cos_wrapper >.hs-menu-wrapper>ul>li, .tabsMenuItems.two >.hs_cos_wrapper >.hs-menu-wrapper>ul>li {width: 50%;padding: 10px; }

  .countertitle {font-size: 16px;}
  .CountNum {font-size: 30px;}
  .lsCount {padding-right: 25px;}
}

@media(max-width:991px){
  .rs-header {position: fixed;top:55px;width: 100%;height: auto;left: 0;display: block;transform:translateX(100%); transition:all ease .3s;height: 100%;
    background-color: #fff;}
  .header-sec.active .rs-header {transform:translateX(0);}
  .rs-header-inr {flex-direction: column;height: 90%;justify-content: space-between;}
  .auth-buttons {order: 3;width: 100%;display: block;padding: 20px;margin:0;}
  .login-btn, .signup-btn {width:100%}
  .login-btn {margin-top:14px;}
  .menuItems {order: 1;width: 100%;}
  .menuItems> .hs_cos_wrapper> .hs-menu-wrapper >ul >li> a {display: block;width: 100%;padding: 12px 15px;background: #fff;}
  .menuItems> .hs_cos_wrapper> .hs-menu-wrapper >ul {display: block;width: 100%;}
  .menuItems> .hs_cos_wrapper> .hs-menu-wrapper >ul >li+li {margin: 0;}
  .searchbar {display: none;}
  .menuItems>.hs_cos_wrapper>.hs-menu-wrapper ul>li.mega-list-parent {border-top: 1px solid #D7D7D7;}
  .expanMenu {display: flex;flex-direction: column;width: 20px;height: 20px;gap: 4px;align-items: center;justify-content: center;cursor: pointer;transition: all ease .3s;}
  .expanMenu i {width: 100%;height: 2px;background-color: #009CDE;transition: all ease .3s;}
  .header-sec-inr {justify-content: space-between;}
  .header-sec {padding:  0;}
  .ls-header {width: 100px;}
  .header-logo {width: 150px;}
  .header-sec .content-wrapper {padding: 0;}
  .mwSearch .searchbar {display: flex;margin: 0;}
  .mwSearch {position: absolute;right: 47px;top: 32px;}
  .expanMenu {width: 55px;height: 55px;padding: 20px 13px;background-color: #009CDE;}
  .expanMenu i {background-color: #fff;}
  .expanMenu i + i {margin-top: 2px;}
  .mwSearch {top: 15px;right: 75px;}
  .ls-header {padding: 14px 15px 14px 20px;}
  .header-sec.active .rs-header {box-shadow: 0px 4px 6px 0px #0000000A;border-top: 1px solid #009CDE;  }
  .menuItems> .hs_cos_wrapper >.hs-menu-wrapper> ul> li > a {background: #009CDE;color: #ffffff;}
  .menuItems> .hs_cos_wrapper >.hs-menu-wrapper> ul> li.mega-list-parent > a {background-color: #fff;color: #515356;}
  .menuItems> .hs_cos_wrapper >.hs-menu-wrapper> ul> li {border-top: 1px solid #D1D1D1;}
  /*   megamenu css */

  span.childExpand {width: 45px;height: 45px;display: flex;align-items: center;justify-content: center;cursor: pointer;padding: 0;}
  .menuItems> .hs_cos_wrapper> .hs-menu-wrapper >ul >li.mega-list-parent> a {width: calc(100% - 45px);}
  .menuItems> .hs_cos_wrapper >.hs-menu-wrapper> ul> li {display: flex;flex-wrap: nowrap;background-color: #fff;}
  .childExpand svg {transform: rotate(-90deg);}
  .megamenuRepeat {opacity: 1;visibility: visible;position: fixed;top: 0;left: 0;width: 100%;height: 100vh;z-index: 1;border-top: 1px solid #009CDE;transform: translateX(100%);}
  .rs-mega {display: none;}
  .ls-mega {width: 100%;background-color: #009CDE;}
  .ls-megaInr {padding: 0;}
  .megamenuRepeatInr, .megaRow {height: 100%;}
  .megaTitle {padding: 15px;}
  .tabsList> ul>li>span {border-top: 1px solid #fff !important;padding: 10px 15px;font-size: 18px;}
  .tabsList> ul>li:hover>span, .tabsList> ul>li.active>span {background-color: transparent;}
  .megaTitle h2 {font-size: 20px;font-weight: 600;display: inline-flex;align-items: center;}
  .mwmega {display: block;position: fixed;top: 0;left: 0;width: 100%;height: 100vh;transition: all ease .3s;z-index: 2;background-color: #009CDE;transform: translateX(100%);z-index:2;}
  .tabsParent {display: block;}
  .countRow, .titleRow {border: none;padding: 0  0 20px;margin: 0;}
  .rs-megainr {padding: 30px 0;}
  .tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li {width: 100% !important;border-top: 1px solid #fff;padding: 10px 15px !important;}
  .tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul {margin: 0 !important;}
  .lsCount {width: 100%;padding: 0 15px;max-width: 100%;}
  .rsCount {width: 100%;padding: 25px 15px 0;justify-content: flex-start;}
  .countRowInr {flex-wrap: wrap;}
  .is-active .mwmega {transform: translateX(0);}
  .header-sec .content-wrapper {position: static;}
  .titleRowInr {padding: 0 15px;display: block;}
  .megaBtn.button, .megaBtn.button:hover {font-size: 0;line-height: 1;padding-top: 20px;}
  .menuItems> .hs_cos_wrapper >.hs-menu-wrapper> ul> li.is-open .megamenuRepeat {    transform: translateX(0);}
  .expanMenu.menuOpen i:nth-child(2) {transform: translateX(100%);opacity: 0;visibility: hidden;}
  .expanMenu.menuOpen i:first-child {transform: rotate(45deg);top: 8px;}
  .expanMenu i {transition: all ease .3s;position: relative;}
  .expanMenu.menuOpen i:last-child {transform: rotate(-45deg);top: -6px;}
  .backBtn {padding-right: 10px;line-height: 0;}
  .megaTitle h2 {cursor: pointer;}
  .backBtn path {fill: #fff;}
  .backchild {display: inline-flex;margin: 0 15px 20px;align-items: center;font-size: 16px;font-weight: 700;cursor:pointer;color:#fff;}
  .backchild svg {height: 14px;width: auto;margin-right: 10px;}
  .backchild path {fill: inherit; }
  .megaBtn {  padding-top: 15px;}
  .megaTitle h2 br { display: none;}
  .ls-megaInr.simple .rs-megainr {padding: 0;}

  .backchild {font-size: 14px;line-height: 1.42;font-weight: 400;margin-left: 20px;margin-right: 20px;margin-bottom: 20px;}
  span.backchild svg {width: 13px;height: auto;}
  .rs-megainr {padding-top: 20px;}
  .titleRowInr {padding: 0;}
  .lsTabTitle {padding: 30px 20px;}
  .megaBtn {padding: 15px 20px 19px 20px;}
  .titleRow {padding-bottom: 0;}
  .tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li {padding: 19px 20px !important;}
  .tabsMenuItems >.hs_cos_wrapper >.hs-menu-wrapper>ul>li {border-top: 1px solid rgb(255 255 255 / 20%);}
  .rstabs {max-height: 520px;overflow: auto;}
  .backchild br {display: none;}
  .soly-title {display: block;}
  /*  Megamenu Updates  */

  .soly-title h2 {margin: 0;padding: 30px 20px;font-size: 28px;color: #fff;line-height: 1.21;}
  .ls-mega {background-color: #006E9D;}
  .backBtn path {fill: inherit;stroke: #fff;}
  .megaTitle h2 {font-size: 14px;line-height: 1.43;font-weight: 400;}
  .tabsList> ul>li>span {padding: 19px 20px;border-top: 1px solid rgb(255 255 255 / 20%) !important;font-size: 16px;line-height: 1.37;font-weight: 400;}

  .tabsList> ul>li>span {display: flex;flex-wrap: wrap;}
  .mb-con {width: 100%;font-size: 14px;line-height: 1.43;}
  .tabTitle {padding-bottom: 5px;}

  .megaBtn.simple_buttons a {padding: 0;text-align: right;position: absolute;top: 0;right: 0;width: 100%;height: 100%; }
  .lsTabTitle.mbl {display: flex;flex-wrap: nowrap;justify-content: space-between;position: relative;}
  .right-cn {width: 100%;position: absolute;right: inherit;left: 0;height: 100%;padding-right: 20px;top: 0;}
  .left-cn {width: calc(100% - 20px);}
  .megaBtn.simple_buttons {padding: 0;}
  .megaBtn.simple_buttons a span {position: relative;top: 30px;right: 20px;z-index: 1;}

  /* New Form CSS   */
  .mwSearch {z-index: 1;left: 0;width: 100%;}
  .searchIcon span {position: absolute;top: 0;right: 75px;z-index: 1; }
  .expanMenu {z-index: 9;}
  .ls-header {position: relative;z-index: 9;}
  .searchIcon input[type=submit] {display: none;}
  .form-btm .form-btm-inr {padding: 20px;}
  .form-btm textarea, .form-btm input[type="text"], .form-btm input[type="number"], .form-btm input[type="email"], .form-btm input[type="tel"], .form-btm select {
    padding: 9px 26px 9px 35px !important;}
  .form-btm .form-btm-inr {top: calc(100% + 16px);}  
  /*  End New Form CSS  */
  .mb-con {display: block;}
  
  .tabsList> ul>li>span>span {position: absolute;right: 20px;top: 50%;transform: translateY(-50%);}
  .tabsList>ul>li {position: relative;}
  .megaBtn.simple_buttons a span {position: absolute;right: 20px;top: 50%;transform: translateY(-50%);}
  
}



@media(max-width:767px){
  .rs-megainr {max-height: 75vh;overflow: auto;}
}
/* 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;
  }
}