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

@media (max-width: 767px) {
	.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 {
  z-index: 2;position: relative;
  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,.h4,
h5,.h5,
h6,.h6 {
  margin: 0;
}

/* 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;height: auto;max-width: 100%; }
/* Button CSS */

.button a, a.button, .button.small a, a.button.small {background-color: var(--nice-blue);border: 1px solid var(--nice-blue);color: var(--white);padding: 8px 24px;border-radius: 24px;font-size: 20px;line-height: 1.6;font-weight: 600;display: inline-block;vertical-align: middle;text-align: center;}
.button.large a, a.button.large {padding: 8px 50px;}
.button.xx-large a, a.button.xx-large {padding: 23px 127px;font-size: 24px;   line-height: 1;    border-radius: 48px;}
.button.full-width a, a.button.full-width {width: 100%;}
.button a:hover, a.button:hover {background-color: var(--madison-blue);border-color: var(--madison-blue);}
.button.secondary a,a.button.secondary {background-color: var(--madison-blue);border-color: var(--madison-blue);}
.button.secondary a:hover, a.button.secondary:hover {background-color: var(--nice-blue);border-color: var(--nice-blue);}
.button.terratary a, a.button.terratary {background-color: #08522E;   border-color: #08522E;}
.button.terratary a:hover, a.button.terratary:hover {background-color: transparent;color: #08522E;}
.button.orange a, a.button.orange {background-color: #FF8700;border-color: #FF8700;}
.button.orange a:hover, a.button.orange:hover {background-color: #ffffff;color: #FF8700;}
.button.rmm-blue a, a.button.rmm-blue {background-color: #004c6d; border-color: #004c6d;}
.button.rmm-blue a:hover, a.button.rmm-blue:hover {background-color: #009a44; border-color: #fff;}
.button.rmm-green a, a.button.rmm-green {background-color: #009a44; border-color: #009a44;}
.button.rmm-green a:hover, a.button.rmm-green:hover {background-color: #004c6d; border-color: #fff;}
.button.blue a, a.button.blue {background-color: var(--madison-blue);   border-color: var(--madison-blue);}
.button.blue a:hover, a.button.blue:hover {background-color: transparent;color: var(--madison-blue);}
.button.outline-blue a, a.button.outline-blue {background-color: transparent;color: var(--madison-blue);border-color: var(--madison-blue);}
.button.outline-blue a:hover, a.button.outline-blue:hover {background-color: var(--madison-blue);color: var(--white);}
.button.white a {background-color: var(--white) ;color: var(--madison-blue) ;}
.button.white a:hover {border-color: var(--white) ;background-color: var(--madison-blue) ;color: var(--white) ;}

@media(max-width:767px){
  .button.xx-large a, a.button.xx-large {padding: 20px 75px;}
}
/*---------------------    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 32px; }
form fieldset .field { padding-left:10px; padding-right:10px; }
form ul.multi-container { padding-top:10px; }
form ul.multi-container li { margin:5px 0; }  
textarea, input[type="text"], input[type="number"], input[type="email"], input[type="tel"], select { background-color: transparent;border-bottom: 1px solid #F1EEEA !important;
  border-radius: 0;color: #60676D;display: block;font-family: inherit;   font-size: 20px;font-weight: 400;line-height: 1.6;margin: 0;outline: none;margin-top: 12px;
  padding: 0 0 8px;width: 100% !important;border: none; }    
textarea { min-height:110px; }
input[type="submit"] { background: transparent;border: 1px solid #F1EEEA;border-radius: 24px;color: #848EAE;cursor: pointer;font-family: inherit;font-size: 16px;
  font-weight: 600;line-height: 1;outline: none;padding: 13px 40px;-webkit-transition: all .3s ease;-moz-transition: all .3s ease;transition: all .3s ease;}
form input[type="radio"]+span,form input[type="checkbox"]+span { position: relative; display:block;  padding-left: 40px;  cursor:pointer;}
form input[type="radio"]+span:before,form input[type="checkbox"]+span:before { content: '';  color:#6b1631;  position:absolute;  left:4px;  top: 0;  font-size:0; width: 24px;  height: 24px;
  display:block; border:1px solid #ccc;  transition:all ease .3s;  -webkit-transition:all ease .3s;  text-align:center;  line-height:14px;  border-radius: 4px;background-position: center center;
  background-repeat: no-repeat;
  background-size: auto; }
form input[type="radio"]:checked+span:before { background: #6b1631; border-color:#6b1631;}
form input[type="checkbox"]:checked+span:before { border-color: #00c7b1; font-size:12px;  background-color: #00c7b1;  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: #000;color:#FFFFFF;border-color:#000}
.hs_error_rollup {display: none;}
form label > span {font-weight: 600;font-size: 16px;   line-height: 1;}
textarea {border: 1px solid #F1EEEA;padding: 8px 12px;border-radius: 8px;min-height: 156px;}
@media (max-width: 767px) {

  form fieldset.form-columns-2 .field {
    width: 100% !important;
  }

}
/* Missing Template at Path: \'brilliance_theme_2024\/css\/elements\/_tables.css\' */

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

/* Header CSS */

.header-two-col {display: flex;flex-wrap: wrap;}
.header-left {width: 147px;}
.header-right {width: calc(100% - 147px);padding-left: 15px;}
.header-navbar .hs-menu-wrapper > ul {display: flex;justify-content: flex-end;position: relative;}
.header-navbar .hs-menu-wrapper > ul > li > a {color: var(--madison-blue);font-size: 20px;line-height: 1.6;font-weight: 600;display: block;text-align: center;}
/* .header-navbar .hs-menu-wrapper > ul > li:not(:last-child) {padding-left: 20px;padding-right: 20px;} */
/* .header-navbar .hs-menu-wrapper > ul > li > a:hover {color: var(--nice-blue);} */
.header-navbar .hs-menu-wrapper > ul > li:last-child > a {background-color: #78CCF2;border: 1px solid #78CCF2; color: #0A2161; padding: 7px 30px;border-radius: 24px;
  display: inline-block;vertical-align: middle;text-align: center;}
.header-navbar .hs-menu-wrapper > ul > li:nth-last-child(2) > a {color: #08522E; background-color: #bfcb1f; padding: 7px 56px;border: 1px solid #bfcb1f; border-radius: 24px;
  display: inline-block;vertical-align: middle;text-align: center;}
.header-navbar .hs-menu-wrapper > ul > li:nth-last-child(2) > a:hover {background-color: #cdde4c; border-color: #cdde4c; color: #08522E;}
.header-navbar .hs-menu-wrapper > ul > li:last-child > a:hover {background-color: #A0D8FC; border-color: #A0D8FC;}
.header-section {padding-top: 24px;padding-bottom: 16px; left: 0;opacity: 1;position: fixed;top: 0;transform: translateY(0);transition: all .4s ease;transition: transform .5s cubic-bezier(.86,0,.07,1);
  transition: opacity .3s, transform .3s, background .3s, border .3s, border-radius .3s, box-shadow .3s ease-in-out;width: 100%;z-index: 9;background-color: var(--white)}

.header-section.hidden {
  position: fixed;
	top: 0;
	left: 0;
	width: 100%;

	/* 	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%); */
	transition: opacity .3s, transform .3s, background .3s, border .3s, border-radius .3s, box-shadow .3s ease-in-out;
}

.header .active-branch.hs-menu-depth-1 > a,
.header .hs-menu-depth-1:has(.active) > a {
	border-bottom: 2px solid #FF8700;
}



.header .rsMega .menuRows a.active + .listTitle h5 {
	display: inline-block;
	padding-bottom: 5px;
	border-bottom: 2px solid #FF8700;
}

.megamenuRepeat {position: absolute;right: 0;top: 100%;width: 100%;height: auto;z-index: 9;transition: all ease .3s;opacity: 0;visibility: hidden;}

.megamenuRepeatInr {max-width: 1280px;margin: 0 0 0 auto;padding: 39px 68px;background-color: #F1EEEA;border-radius:24px;}
.header-navbar .hs-menu-wrapper > ul > li:first-child .megamenuRepeatInr {border-radius:24px 24px 24px 24px; }
.lsProfile {width: 160px;height: 160px;border-radius: 160px;border: 2px solid #0A2161;}
.megaProfileInr {display: flex;flex-wrap: wrap;align-items: center;}
.rsProfile {width: calc(100% - 160px);padding-left: 32px;}
.profileTitle h3 {font-family: Urbanist;font-size: 26px;font-weight: 600;line-height: 1;transition: all ease .3s;}
.profileTExt {font-size: 20px;font-weight: 400;line-height: 1.6;padding-top: 7px;}
.megaRow {display: flex;flex-wrap: wrap;align-items: center;}
.lsMega {width: 63%;padding-right: 32px;}
.rsMega {width: 37%;padding-left: 24px;border-left:1px solid rgb(10 33 97 / 20%);}
.listTitle h5 {color: #0A2161;font-size: 20px;font-weight: 600;line-height: 1;transition: all ease .3s;}
.listContent {font-size: 16px;font-weight: 400;color: #303030;padding-top: 8px;line-height: 1.2;transition: all ease .3s;}
.menuLists + .menuLists {margin-top: 40px;}
.menuRows, .megaProfileInr {position: relative;}
.menuRows>a, .megaProfileInr>a {position: absolute;left: 0;top: 0;width: 100%;height: 100%;z-index: 1;display: block;}
.menuRows:hover .listTitle h5, .megaProfileInr:hover .profileTitle h3 {color: var(--nice-blue);}
.rsMegaInr {padding: 10px 0;}

.megaRow + .megaRow {margin-top: 20px;}

@media (min-width: 1025px) {
 .header-navbar .hs-menu-wrapper>ul>li.mega-list-parent:hover .megamenuRepeat {opacity: 1;visibility: visible;}
  .header-navbar .hs-menu-wrapper>ul>li {background-color: transparent;padding: 8px 16px 16px;min-width: 115px;border-radius:16px 16px 0 0;transition: all ease .3s;}
  .header-navbar .hs-menu-wrapper>ul>li:last-child {padding: 0;background-color: transparent !important;min-width: auto;}
  .header-navbar .hs-menu-wrapper>ul>li:nth-last-child(2) {padding-left: 5px;padding-right: 16px;padding-top: 0;padding-bottom: 0;min-width: auto;border-radius: 0;background-color: transparent !important;}
  .header-navbar .hs-menu-wrapper>ul>li:hover {background-color: #F1EEEA;}
  .header-navbar { display: block !important; }
  a.expandMenu, .childExpand { display: none; }
}

@media (max-width: 1230px) {
  .header-section .content-wrapper{ max-width:100%}
  .header-navbar .hs-menu-wrapper>ul>li:nth-last-child(2)>a {padding: 8px 32px;font-size: 18px;}
  .header-navbar .hs-menu-wrapper>ul>li:last-child>a {font-size: 18px;}
  .header-navbar .hs-menu-wrapper>ul>li>a {font-size: 18px;}
  .header-navbar .hs-menu-wrapper>ul>li {min-width: auto;}
  .header-navbar .hs-menu-wrapper > ul > li:first-child .megamenuRepeatInr {border-radius:24px; }

}

@media (max-width: 1080px) {
  .header-section .content-wrapper {max-width: 100%;}
  .header-navbar .hs-menu-wrapper>ul>li {min-width: auto;}
  .megamenuRepeatInr {padding: 25px 30px;border-radius: 16px;}
  .header-navbar .hs-menu-wrapper>ul>li:first-child .megamenuRepeatInr {border-radius: 16px;}
  .lsProfile {width: 135px;height: 135px;}
  .rsProfile {padding-left: 25px;width: calc(100% - 135px);}
  .profileTExt {font-size: 16px;}
  .lsMega {padding-right: 25px;width: 55%;}
  .rsMega {width: 45%;}
}

@media (max-width: 1024px) {
  /*-=-=-=-= Mobile menu JS USE  MENU ICON as '<a class="expandMenu"><i></i><i></i><i></i></a>' -=-=-=*/
  a.expandMenu { width: 30px; height: 30px; display: block; cursor: pointer; padding: 3px; position: absolute;  top: 28px;  right: 18px;}
  a.expandMenu i { position:relative; width: 30px; left:0; height: 4px; opacity:1; display: block; background: var(--madison-blue); margin: 5px 0; transition:all ease 0.3s; -webkit-transition:all ease 0.3s; -moz-transition:all ease 0.3s; }
  a.expandMenu i:first-child {  margin-top: 0;}
  a.expandMenu.active i:first-child { transform: rotate(135deg); -webkit-transform: rotate(135deg); top: 10px; position: relative; }
  a.expandMenu.active i:nth-child(2) { position:relative; left:-46px; opacity:0; }
  a.expandMenu.active i:last-child { transform: rotate(-135deg); -webkit-transform: rotate(-135deg); top: -8px; position: relative; }
  /*-=-=-=-= Mobile Submenu JS USE  SUBMENU ICON as '<a class="childExpand"><i></i><i></i></a>' -=-=-=*/
  .childExpand { position: absolute; top: 14px; right: 16px; width: 24px; text-align: center; height: 24px; margin: 0; padding:5px; cursor:pointer; z-index:-1;}
  .childExpand i { position:relative; width: 15px; left:0; height: 1px; opacity:1; display: block; background:#fff; 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); }
  .header-navbar {position: absolute;top: 100%;left: 0;width: 100%;z-index: 2;background-color: var(--madison-blue);display: none;}
  .header-navbar .hs-menu-wrapper>ul {display: block;}
  .header-navbar .hs-menu-wrapper>ul>li>a {padding: 10px 20px;color: var(--white);}
  .header-navbar .hs-menu-wrapper>ul>li:not(:last-child) {padding: 0;border-top: 1px solid var(--white);}
  .header-section {padding: 20px 0;}
  .header-navbar .hs-menu-wrapper>ul>li:nth-last-child(2)>a {border-radius: 0;border-color: var(--white);border-top: none;border-left: none;border-bottom: none;border-right: none;padding: 10px 20px;}
  .header-navbar .hs-menu-wrapper>ul>li:last-child>a {background-color: var(--nice-blue);border-radius: 0;border-color: var(--nice-blue);padding: 10px 20px;}
  .header-navbar .hs-menu-wrapper>ul>li:nth-last-child(2)>a , .header-navbar .hs-menu-wrapper>ul>li:last-child>a { display: block;text-align:left; }
  .header-navbar .hs-menu-wrapper>ul>li>a {text-align: left;}
  .megamenuRepeat {transition: none;position: static;opacity: 1;visibility: visible;display: none;}
  .megamenuRepeatInr {border-radius: 0 !important;padding: 20px;}
  .lsMega,.rsMega {width: 50%;}
  .megaProfileInr {flex-direction: column;}
  .rsProfile {padding-left: 0;padding-top: 20px;text-align: center;width: 100%;}
  .lsProfile {width: 110px;height: 110px;}
  .profileTitle h3 {font-size: 22px;}
  .header-navbar .hs-menu-wrapper>ul>li {position: relative;}
  .megaRow+.megaRow {margin-top: 40px;}

}

@media (max-width: 767px) {

  .header-navbar .hs-menu-wrapper>ul>li>a { font-size: 16px; }
  .header-navbar .hs-menu-wrapper>ul>li:nth-last-child(2)>a , .header-navbar .hs-menu-wrapper>ul>li:last-child>a {font-size: 16px;}
  /** .lsMega, .rsMega {padding: 0;width: 100%;} */
  .lsMega {display: none;}
  .lsMega, .rsMega {width: 100%;}
  .rsMegaInr {padding: 0;}
  .rsMega {border-left: none;margin-top: 10px;padding-top: 10px; width: 100%;}
  .menuLists+.menuLists {margin-top: 25px;}
  .megamenuRepeatInr {padding: 30px 20px;max-height: 350px;overflow: auto;}
}
/* Footer CSS */

.social-icons ul > li>a svg {width: 24px;height: 24px;}
.footer-section {background-color: #303030;padding-top: 58px;padding-bottom: 94px;position:relative;z-index:2;}
.follow-title , .form-title {letter-spacing: 0.32px;font-weight: 700;font-size: 16px;line-height: 1;}
.social-icons ul {margin: 0 -8px;padding: 0;list-style: none;display: flex; flex-wrap: wrap;}
.social-icons ul > li {padding: 8px;}
.social-icons ul > li > a {display: flex;flex-wrap: nowrap; align-items: center;}
.social-icons ul > li > a span {height: 24px;width: 24px;}
.social-icons {padding-top: 4px;}
.social-icons ul > li>a svg path {fill: var(--white);transition: all ease 0.3s;}
.social-icons ul > li>a:hover svg path {fill: var(--orange);}
.footer-simple-nav .hs-menu-wrapper ul {display: block;text-align: center;}
.footer-simple-nav {padding-top: 24px;}
.footer-simple-nav .hs-menu-wrapper ul > li> a {color: var(--white); font-size: 16px;line-height: 1;font-weight: 400;letter-spacing: 0.32px;display: block;}
.footer-simple-nav .hs-menu-wrapper ul > li + li {padding-top: 12px;}
.footer-right > * {max-width: 200px;margin: 0 0 0 auto;}
.email-form textarea,.email-form input[type="text"],.email-form input[type="number"],.email-form input[type="email"],.email-form input[type="tel"],.email-form select {
  display: block;border: 1px solid #FFFFFF; outline:none; background-color: transparent;font-size:16px;line-height: 1;font-family: inherit;font-weight:400;color: #fff;margin:0; padding: 14px 15px;
  width:100% !important;border-radius: 0;letter-spacing: 0.32px;}
.email-form ::placeholder {color: var(--white);}
.email-form {padding-top: 12px;}
.email-form input[type="submit"] {outline: none;font-family: inherit;padding:14px 40px;background: var(--madison-blue);color: #fff;border: 1px solid var(--madison-blue);font-size:16px;
  line-height: 1;text-transform: capitalize;font-weight:700;border-radius:4px;cursor:pointer;-webkit-transition:all ease 0.3s;-moz-transition:all ease 0.3s;transition:all ease 0.3s;letter-spacing: 0.32px;}
.email-form .actions {padding-top: 12px;}
.email-form input[type="submit"]:hover {background-color: var(--nice-blue);border-color: var(--nice-blue);}
.footer-simple-nav .hs-menu-wrapper ul > li> a:hover {color: var(--nice-blue);}
.footer-middle { padding: 0 15px; }
.top-shape {line-height: 0;position: relative;z-index: 2;    margin-bottom: -1px;}
.top-shape svg {width: 100%;height: auto;}
.email-form form .field { padding-bottom:0 }

@media (max-width: 1080px) {

  .footer-logo {max-width: 160px;margin: 0 auto;}
  .footer-section {padding-bottom: 60px;padding-top: 50px;}
  .top-shape { bottom:-3px;    line-height: 1; }

}

@media (max-width: 767px) {

  .footer-middle {padding: 0;}
  .footer-left {order: 3;}
  .footer-logo {margin: 0;}
  .footer-simple-nav .hs-menu-wrapper ul>li>a {text-align: left;}
  .footer-right>* {max-width: 100%;margin: 0;}
  .footer-right {  order: 3; }
  .footer-left {padding-top: 30px;padding-bottom: 30px;}
  .footer-section {padding-bottom: 40px;padding-top: 40px;}
  .email-form input[type=submit] {width: 100%;}

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