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

/* Responsive grid */					
					
.row-fluid {					
width: 100%;					
}					
					
.row-fluid:before, .row-fluid:after {					
display: table;					
content: '';					
}					
					
.row-fluid:after {					
clear: both;					
}					
					
.row-fluid [class*='span'] {					
display: block;					
float: left;					
width: 100%;					
min-height: 1px;					
margin-left: 2.127659574%;					
-webkit-box-sizing: border-box;					
-moz-box-sizing: border-box;					
-ms-box-sizing: border-box;					
box-sizing: border-box;					
}					
					
.row-fluid [class*='span']:first-child {					
margin-left: 0;					
}					
					
.row-fluid .span12 {					
width: 99.99999998999999%;					
}					
					
.row-fluid .span11 {					
width: 91.489361693%;					
}					
					
.row-fluid .span10 {					
width: 82.97872339599999%;					
}					
					
.row-fluid .span9 {					
width: 74.468085099%;					
}					
					
.row-fluid .span8 {					
width: 65.95744680199999%;					
}					
					
.row-fluid .span7 {					
width: 57.446808505%;					
}					
					
.row-fluid .span6 {					
width: 48.93617020799999%;					
}					
					
.row-fluid .span5 {					
width: 40.425531911%;					
}					
					
.row-fluid .span4 {					
width: 31.914893614%;					
}					
					
.row-fluid .span3 {					
width: 23.404255317%;					
}					
					
.row-fluid .span2 {					
width: 14.89361702%;					
}					
					
.row-fluid .span1 {					
width: 6.382978723%;					
}					
					
.container-fluid:before, .container-fluid:after {					
display: table;					
content: '';					
}					
					
.container-fluid:after {					
clear: both;					
}					
					
@media (max-width: 767px) {					
.row-fluid {					
width: 100%;					
}					
					
.row-fluid [class*='span'] {					
display: block;					
float: none;					
width: auto;					
margin-left: 0;					
}					
}					
					
@media (min-width: 768px) and (max-width: 1139px) {					
.row-fluid {					
width: 100%;					
}					
					
.row-fluid:before, .row-fluid:after {					
display: table;					
content: '';					
}					
					
.row-fluid:after {					
clear: both;					
}					
					
.row-fluid [class*='span'] {					
display: block;					
float: left;					
width: 100%;					
min-height: 1px;					
margin-left: 2.762430939%;					
-webkit-box-sizing: border-box;					
-moz-box-sizing: border-box;					
-ms-box-sizing: border-box;					
box-sizing: border-box;					
}					
					
.row-fluid [class*='span']:first-child {					
margin-left: 0;					
}					
					
.row-fluid .span12 {					
width: 99.999999993%;					
}					
					
.row-fluid .span11 {					
width: 91.436464082%;					
}					
					
.row-fluid .span10 {					
width: 82.87292817100001%;					
}					
					
.row-fluid .span9 {					
width: 74.30939226%;					
}					
					
.row-fluid .span8 {					
width: 65.74585634900001%;					
}					
					
.row-fluid .span7 {					
width: 57.182320438000005%;					
}					
					
.row-fluid .span6 {					
width: 48.618784527%;					
}					
					
.row-fluid .span5 {					
width: 40.055248616%;					
}					
					
.row-fluid .span4 {					
width: 31.491712705%;					
}					
					
.row-fluid .span3 {					
width: 22.928176794%;					
}					
					
.row-fluid .span2 {					
width: 14.364640883%;					
}					
					
.row-fluid .span1 {					
width: 5.801104972%;					
}					
}					
					
@media (min-width: 1280px) {					
.row-fluid {					
width: 100%;					
}					
					
.row-fluid:before, .row-fluid:after {					
display: table;					
content: '';					
}					
					
.row-fluid:after {					
clear: both;					
}					
					
.row-fluid [class*='span'] {					
display: block;					
float: left;					
width: 100%;					
min-height: 1px;					
margin-left: 2.564102564%;					
-webkit-box-sizing: border-box;					
-moz-box-sizing: border-box;					
-ms-box-sizing: border-box;					
box-sizing: border-box;					
}					
					
.row-fluid [class*='span']:first-child {					
margin-left: 0;					
}					
					
.row-fluid .span12 {					
width: 100%;					
}					
					
.row-fluid .span11 {					
width: 91.45299145300001%;					
}					
					
.row-fluid .span10 {					
width: 82.905982906%;					
}					
					
.row-fluid .span9 {					
width: 74.358974359%;					
}					
					
.row-fluid .span8 {					
width: 65.81196581200001%;					
}					
					
.row-fluid .span7 {					
width: 57.264957265%;					
}					
					
.row-fluid .span6 {					
width: 48.717948718%;					
}					
					
.row-fluid .span5 {					
width: 40.170940171000005%;					
}					
					
.row-fluid .span4 {					
width: 31.623931624%;					
}					
					
.row-fluid .span3 {					
width: 23.076923077%;					
}					
					
.row-fluid .span2 {					
width: 14.529914530000001%;					
}					
					
.row-fluid .span1 {					
width: 5.982905983%;					
}					
}					
					
/* Clearfix */					
					
.clearfix:before, .clearfix:after {					
display: table;					
content: '';					
}					
					
.clearfix:after {					
clear: both;					
}					
					
/* Visibilty classes */					
					
.hide {					
display: none;					
}					
					
.show {					
display: block;					
}					
					
.invisible {					
visibility: hidden;					
}					
					
.hidden {					
display: none;					
visibility: hidden;					
}					
					
/* Responsive visibilty classes */					
					
.visible-phone {					
display: none !important;					
}					
					
.visible-tablet {					
display: none !important;					
}					
					
.hidden-desktop {					
display: none !important;					
}					
					
@media (max-width: 767px) {					
.visible-phone {					
display: inherit !important;					
}					
					
.hidden-phone {					
display: none !important;					
}					
					
.hidden-desktop {					
display: inherit !important;					
}					
					
.visible-desktop {					
display: none !important;					
}					
}					
					
@media (min-width: 768px) and (max-width: 1139px) {					
.visible-tablet {					
display: inherit !important;					
}					
					
.hidden-tablet {					
display: none !important;					
}					
					
.hidden-desktop {					
display: inherit !important;					
}					
					
.visible-desktop {					
display: none !important;					
}					
}
.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;
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

font-family: 'Soleil';
src: url('https://www.beyondbooksmart.com/hubfs/Beyond%20Booksmart/fonts/soleilbk-webfont.woff2') format('woff2'),
url('https://www.beyondbooksmart.com/hubfs/Beyond%20Booksmart/fonts/soleilbk-webfont.woff') format('woff');
font-weight: 400;
font-style: normal;

}
@font-face {
  font-family: 'Soleil';
  src: url('https://www.beyondbooksmart.com/hubfs/Beyond%20Booksmart/fonts/soleilbk-italic-webfont.woff2') format('woff2'),
    url('https://www.beyondbooksmart.com/hubfs/Beyond%20Booksmart/fonts/soleilbk-italic-webfont.woff') format('woff');
  font-weight: 400; 
  font-style: italic;

}
@font-face {
  font-family: 'Soleil';
  src: url('https://www.beyondbooksmart.com/hubfs/Beyond%20Booksmart/fonts/soleil-bold-webfont.woff2') format('woff2'),
    url('https://www.beyondbooksmart.com/hubfs/Beyond%20Booksmart/fonts/soleil-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}




@font-face {
  font-family: 'Soleil';
  src: url('https://www.beyondbooksmart.com/hubfs/Beyond%20Booksmart/fonts/soleillt-webfont.woff2') format('woff2'),
    url('https://www.beyondbooksmart.com/hubfs/Beyond%20Booksmart/fonts/soleillt-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;

}

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


/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

ul,
ol {
  margin: 0 0 .6rem;
}

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 #000000;
  margin: 0 0 .6rem;
  padding-left: .6rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* Global Classes */
.flex{
  display:flex;
}
.flex-col{
  flex-direction: column;
}
.row-reverse{
  flex-direction: row-reverse;
}
.space-between{
  justify-content: space-between;
}
.flex-end{
  align-items: flex-end;
}
.wrap{
  flex-wrap: wrap;
}
.hide {
  display:none;
}
.item-center{
  align-items: center;
}
.content-center{
  justify-content: center;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.margin-zero h1,
.margin-zero h2,
.margin-zero h3,
.margin-zero h4,
.margin-zero h5,
.margin-zero h6,
.margin-zero p,
.margin-zero img{
  margin:0;
}
.all-text-white h1,
.all-text-white h2,
.all-text-white h3,
.all-text-white h4,
.all-text-white h5,
.all-text-white h6,
.all-text-white p{
  color:#fff;
}
strong{
  font-weight:700;
}
.fw-400{
  font-weight:400;
}
.lt-7{
  letter-spacing: -0.7px;
}
.glow-circles{
  position:absolute;
  pointer-events: none;
}
i.border-yellow,
i.border-blue,
i.circle-blue,
i.border {
  color: inherit;
  position: relative;
  display: inline-block;
  z-index: -1;
  font-style:unset;
}
i.border-yellow:before,
i.border-blue:before,
i.border:before,
i.circle-blue:after{
  position:absolute;
  content: "";
  z-index: -2;
}
i.border:before{
  background: url(https://www.beyondbooksmart.com/hubfs/yellow-border.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  top: auto;
  height: 45%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 2px;
}
i.circle-blue:after{
  background: url(https://www.beyondbooksmart.com/hubfs/Imported%20sitepage%20images/circle-blue.png) no-repeat 50% 50% / 100% 100%;
  left:-5%;
  right:-5%;
  bottom: -47%;
  top: -47%;
}
i.border-blue:before{
  background: url(https://www.beyondbooksmart.com/hubfs/Imported%20images/border-1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  top: auto;
  height: 45%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: -5px;
}
i.border-yellow:before{
  background: url(https://www.beyondbooksmart.com/hubfs/yellow-border.png);
  background-size: 100%;
  background-repeat: no-repeat;
  bottom: -5px;
  content: "";
  height: 40%;
  position: absolute;
  top: auto;
  width: 100%;
  z-index: 1;
}
@media (max-width:767px){
  .mobile{
    display:block;
  }
  .mobile-hide{
    display:none;
  }
}

/* .roboto-thin {
font-family: "Roboto", sans-serif;
font-weight: 100;
font-style: normal;
}

.roboto-light {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: normal;
}

.roboto-regular {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}

.roboto-medium {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: normal;
}

.roboto-bold {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: normal;
}

.roboto-black {
font-family: "Roboto", sans-serif;
font-weight: 900;
font-style: normal;
}

.roboto-thin-italic {
font-family: "Roboto", sans-serif;
font-weight: 100;
font-style: italic;
}

.roboto-light-italic {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: italic;
}

.roboto-regular-italic {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: italic;
}

.roboto-medium-italic {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: italic;
}

.roboto-bold-italic {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: italic;
}

.roboto-black-italic {
font-family: "Roboto", sans-serif;
font-weight: 900;
font-style: italic;
} */
button,
.button,
.hs-button,
a.cta_button{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled,
a.cta_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;
}

li.hs-form-checkbox label{
  display: inline-block;
  cursor:pointer;
}

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

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;
  line-height:1;
}

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





form input[type=checkbox],
.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  width:auto;
}
form input[type=checkbox],
.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  padding: 0;
  background:255, 255, 255, 1.0);
  margin-left: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #101a29;
  -webkit-appearance: none;
  border: 1px solid rgba(16, 26, 41, 1.0);
  margin-right: 8px;
  top: 4px;
  width: 15px;
  height: 15px;
}
input[type="radio"]:checked:after,
.row-fluid .hs-form .field .input input[type="radio"]:checked:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  top: 2px;
  background-color: #101a29;
  left: 2px;
  border-radius: 50%;
}
body textarea.hs-input {
  height: 150px!important;
  resize: none;
}
.two-col-form-section textarea.hs-input {
  height: 122px;
}
.inputs-list label>input, .inputs-list label>span {
  vertical-align: middle;
}
form input[type=checkbox]:checked:after,
.row-fluid .hs-form .field .input input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 5px;
  top: 3px;
  left: 2px;
  border: 2px solid rgba(16, 26, 41,1.0);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
form input[type=checkbox]:checked:after,
.row-fluid .hs-form .field .input input[type="checkbox"]:checked:after {
  display:transparent;
}
form input[type=checkbox],
body .row-fluid .hs-form .field .input input[type="checkbox"] {
  padding: 0;
  background: rgba(255, 255, 255, 1.0);
  margin-left: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 8px;
  -webkit-appearance: none;
  border: 1px solid rgba(16, 26, 41, 1.0);
  margin-right: 8px;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius:0px;
}
input[type="radio"],
.row-fluid .hs-form .field .input input[type="radio"]{
  border-radius: 50%;
  margin-bottom: 4px;
  height: auto;
  overflow: unset;
}
input[type="radio"]::before,
.row-fluid .hs-form .field .input input[type="radio"]::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(16, 26, 41, 1.0);
  background: rgba(255, 255, 255, 1.0);
  border-radius: 50%;
  position: absolute;
  left: -21.2px;
  bottom: -7px;
  opacity: 1;
  transition: all 0.3s;
}
input[type="radio"]:checked::after,
.row-fluid .hs-form .field .input input[type="radio"]:checked::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(16, 26, 41,1.0);
  background: rgba(16, 26, 41,1.0);
  border-radius: 50%;
  position: absolute;
  left: -18px;
  bottom: -4px;
  opacity: 1;
  transition: all 0.3s;
}
input[type="radio"],
.row-fluid .hs-form .field .input input[type="radio"] {
  appearance: none;
  margin: 0;
}
.row-fluid .hs-form .field .input .hs-form-radio-display {
  margin-left: 20px;
}

form .hs-fieldtype-textarea.hs-input {
  resize: none;
}
ul.no-list.hs-error-msgs.inputs-list{
  position:absolute;
}
@media (min-width:768px){
  form fieldset.form-columns-3 .hs-form-field{
    width:33.33% !important;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
  text-align: center;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/







/*=====================================================================
header styling
========================================================================*/

header.header {
  /*   min-height: 76px; */
  /*   display:none !important; */
}

body .container-fluid .row-fluid .wrapper, body .header-container-wrapper .header-grp .wrapper{
  max-width: 1240px;
  margin-left:auto;
  margin-right:auto;
  float: none;
  position:relative;
  z-index:2;
  box-sizing:border-box;
  padding: 0px 15px;
}


.header-grp {
  background:#FFFFFF;
  position: fixed;
  z-index:999;
  line-height:0;
  top:0;
  left:0;
  right:0;
  transition: all ease-in-out .4s;
  padding: 20px 0px;
}



.header-container-wrapper .header-grp.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  transition: all ease-in-out .4s;
  box-shadow: 0 1px 1px rgb(0 0 0 / 15%);
  animation: sticky .2s linear;
  background-color: #FFFFFF;
  padding: 20px 0;
}  




@media(max-width:767px){
  body .header-container-wrapper .header-grp.fixed {
    padding:20px 0;
  }

  header.header {
    /*     min-height: 70px; */
  }
}


/********************Header fixed styling Ends************************/

.header-grp {
  background-color: rgba(255, 255, 255,1.0);
  transition: all ease-in-out .4s;
}



/*====================================================
MOBILE MENU 
====================================================*/                

/* ==========================================================================
Custom Menu Primary
========================================================================== */



.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:#FFFFFF;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:#FFFFFF;
}

/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
  overflow: visible !important;
  max-width: none !important;
  width: auto !important;
}

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:768px) {
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }
}

/*===========================================================================
Mobile Menu - Hubspot Standard Toggle Menu
============================================================================*/

.mobile-trigger, .child-trigger{
  display: none; /* Hide button on Desktop */
}

@media (max-width: 767px){
  .child-trigger{
    border-left: 1px dotted #000000;;
  }

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color: #009ec4;;
  }

  body .custom-menu-primary .hs-menu-wrapper > ul{
    /*     margin: -1px 0px 0px -1px; */
  }

  .custom-menu-primary .hs-menu-wrapper > ul{
    box-shadow: 0px 37px 37px 0px rgba(0, 0, 0, 0.05);
  }


  /* Toggle Button
  ========================================================================== */

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: relative; /*******************************************/
    /*     top: -3px;          /* Position Button at right of screen  */ */
    /*     right: 15px;        /*******************************************/ */
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 6px 7px 6px 7px;
    background:transparent; /* Background color */
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    color: #009ec4; 
    transition: all .3s ease-in-out;
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#007aff;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:#000000;;
    background-color: transparent; 
    border-color: transparent;
  }


  /* Toggle Button Icon
  ========================================================================== */

  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -3px;
  }

  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }

  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 38px;
    height: 1.7px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #009ec4;; /* Icon color */
    display: inline-block;
    transition: all .3s ease-in-out;
  }

  .mobile-trigger i:before{
    top: -8px; /* Position top line */
    width: 100%;
    right: 0;
  }
  .mobile-trigger i:after{
    top: 8px; /* Position bottom line */
    width: 100%;
    right: 0;
  }

  .mobile-open .mobile-trigger i {
    background:#FFFFFF;
    transition: all .3s ease-in-out;
  }
  .mobile-open .mobile-trigger i:after {
    top: 0;
    transform: rotate(-45deg);
    transition: all .3s ease-in-out;
    width: 100%;
  }

  .mobile-open .mobile-trigger i:before {
    top:0px;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
    width: 100%;
  }
  .mobile-trigger:hover i:before, .mobile-trigger:hover i:after, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
    background-color: #009ec4; /* Icon color */
  }


  /* Child Toggle Button
  ========================================================================== */

  .child-trigger{
    display: block !important;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important;
    min-width: 55px !important;
    height: 45px !important;
    padding: 0 !important;
    border-left: 1px dotted rgba(255, 255, 255, .20);
  }

  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }

  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 2px; /* Icon line height */
    background-color:#000000;; /* Icon color */
    display: block;
  }

  .child-trigger i:after{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .child-trigger.child-open i:after{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }



  /* Menu Styles on Mobile Devices
  ========================================================================== */  

  .custom-menu-primary.js-enabled{
    /*     position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; */
  }

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color: #FFFFFF; /* Menu background color set off global black_color variable */
    width: 100%; /* Full screen width */
  }

  /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 22px; /* Font size of top level list items */
    line-height: 45px;
    overflow: visible;
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 10px;
    color:#000000; /* link color set by global mobile-white_color variable */
  }

  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 10px!important; /* Indent Child lists */
    font-size: 16px; /* Font size of child lists */
  }

  /* Level 3 and Higher Menu List Styles */
  .header-grp .hs-menu-wrapper > ul ul ul li a{
    text-indent: 30px!important; /* Indent Child lists */
  }
  .header-grp .hs-menu-wrapper > ul ul ul ul li a{
    text-indent: 50px!important; /* Indent Child lists */
  }

  .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    pointer-events: unset;
  }

  .header-container-wrapper ul li.hs-menu-depth-1 .child-trigger {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%!important;
    height: 45px !important;
  }

  .child-trigger i{
    position: absolute;
    top: 22px;
    right: 24px;
  }  

}

@media (min-width: 768px) {
  .equal-height-container>.row-fluid-wrapper>.row-fluid {
    -webkit-box-align:stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
  }

  body .row-fluid .vertical-center {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center
  }
}

table {
  width: 100%;
  display: table;
  overflow-x:auto;
}
.small_cta a.cta_button:hover,
.small_cta a.cta_button,
.header-cta-count a.cta_button:hover,
.header-cta-count a.cta_button {
  font-size: 24px;
  font-weight: 400;
  border: 1px solid #fff;
  padding: 10.5px 35px 6.5px;
  min-width: 155px;
  line-height: 1.5835;
}

header.header .span2.header-cta {
  max-width: 230px;
  margin-left: 30px;
}

header.header .span3.logo-image {
  max-width: 200px;
  width: 100%;
}

header.header .span7.header-menu {
  max-width: 100%;
  width: 100%;
}

@media (max-width:1440px){
 body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    font-size: 17px;
    padding: 10px 15px;
  }
  .small_cta a.cta_button:hover,
.small_cta a.cta_button,
  .header-cta-count a.cta_button:hover, .header-cta-count a.cta_button {
    font-size: 18px;
    min-width: 120px;
    line-height: 22px;
  }
  header.header .span2.header-cta {
    margin-left: 15px;
  }
}

/* Header Custom Styling */
@media (min-width:768px){
  header.header .logo-image .logo-image-inner{
    max-width: 145px; 
  }
  header.header .header-cta{
    min-width:max-content;
  }
  .all-content{
    margin-top:95px;
  }
}
@media (min-width:1024px){
  header.header .logo-image .logo-image-inner{
    max-width: 200px; 
  }
  .all-content{
    margin-top:116px;
  }
}
@media (max-width:767px){
  header.header .logo-image.span3{
    width: 75%;
    max-width:none;
  }
  header.header .span2.header-cta{
    margin:0;
  }
  header.header .custom-menu-primary.js-enabled {
    text-align: right;
    width:25%;
  }
  header.header .logo-image>div{
    max-width: 150px;
    width:100%;
  }
  .header-section .equal-height-container .row-fluid-wrapper .row-fluid{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body .custom-menu-primary .hs-menu-wrapper > ul .header-cta-count {
    padding: 14px;
  }
  .all-content{
    margin-top:97px;
  }
}

/*=====================================================================
Footer styling
========================================================================*/



body .footer-section{
  position:relative;
  z-index:2;
  max-width:100%;
  background:#86A9B6;
  border-top: 2px solid #FFFFFF;
}
body .footer-section .copyright-text,
body .footer-section .copyright-text span{
  color:#FFFFFF;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0px;
  margin-bottom: 10px;
  line-height: 1.444em;
  font-family: 'Roboto', sans-serif;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
  max-width:100%;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a,
.footer-section a,
.footer-section p{
  color:#FFFFFF;
}
.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
  display:inline-block;
  padding:4px 0;
}
body .footer-section .social-icon-container {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #161e27;
}
body .footer-section .footer-bottom{
  max-width: 555px;
  padding: 0 15px;
  margin:0 auto;
}
body .footer-section .footer-bottom .footer-logo {
  margin-bottom: 3px;
}
.footer-container .footer-content-wrapper {
  max-width: calc(1110px + 2rem);
  margin: 0 auto;
  padding:0 1rem;
}
.footer-container .footer_1-row-0-padding {
  padding: 127px 0 99px;
}
.footer-container .social-links__link{
  line-height:0;
}
@media(max-width:767px){
  body .footer-section .footer-bottom .footer-logo {
    padding-top: 20px;
  }
  .header__container.content-wrapper.header-container-wrapper.lp{
    min-height:19px;
  }
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/



                                        

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

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  font-size:24px;
  color: #101a29;
  font-family: Soleil (Adobe);
  font-weight: 400;
  line-height: 1.584;
  letter-spacing: 0px;
  font-style: ;
  text-decoration: none;
  padding: 10px 30px;
  white-space: normal;
  max-width: 100%;
  display:inline-block;
}


.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li:hover a{
  color:rgba(16, 26, 41, 1.0)
} 

@media(max-width: 900px) and (min-width: 767px) {
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    color:#101a29;
    padding: 15px 15px;
    font-size: 28px;
  }

}

@media(min-width: 768px) {

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    position: relative;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    /*     font-weight:600; */
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1 {
    position: relative;
    margin: 0;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1:hover{
    background-color: rgba(16, 26, 41, 0.0);
    border-radius:0;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    display: block;
    white-space: nowrap;
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after,
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children:hover>a:after {
    top: 16px!important;
    right: 14px!important;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1; 
    visibility: visible;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    /*     -webkit-transition: opacity 0.4s; */
    position: absolute;
    z-index: 10;
    left: 0px;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 259px!important;
    top: 0!important;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    line-height: 0;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1>a {
    border-top: 0;
    z-index: 3;
  }
  .header-grp .hs-menu-wrapper > ul li a, .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
    position: relative;
  }
  .header-grp .hs-menu-wrapper {
    line-height: 0;
    text-align: center;
    float: right;
    position: relative;
    /*     right: -15px; */
  }

  .header-grp .hs-menu-wrapper {
    display: block !important;
  }

}
@media (max-width:1400px){
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: auto !important;
    top: auto !important;
    right:0;
  }
}
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.active a{
  color:;
}

/*Sub Menu*/

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper{
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
  font-size:16px;
  font-family: Soleil (Adobe);
  font-style: ;
  text-decoration: ;
  font-weight: 400;
  margin: 0px;
  line-height: 1.584;
  letter-spacing: 0px;
  padding:10px 17px;
  text-align: left;
  min-width: 180px;
  text-indent: 0;
  color:#000000;
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li ul li:hover a,
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li:hover a{
  color:#000000;
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.active a{
  color:#000000;
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li.active a,
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li.active a{
  color:#000000;
}

/*===== New Header Styling ===========*/

@media(min-width: 768px) {
  body .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 181px;
    top:5px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li:hover{
    /*   background:#FFFFFF; */
    background: rgba(255, 255, 255, 1.0);
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper  ul.hs-menu-children-wrapper li a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper  ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li a {
    font-size:16px;
    color:#000000;
    font-family: Soleil (Adobe);
    font-style: ;
    text-decoration: ;
    font-weight: 400;
    margin: 0px;
    line-height: 1.584;
    letter-spacing: 0px;
    padding: 10px 15px;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li:hover a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li:hover a{
    color:;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper ul {
    left: 170px !important;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper{
    /*     transform: translateY(10px);
    transition: 0.3s all ease-in-out; */
    display: block !important;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
    /*     transition: 0.3s all ease-in-out;
    transform: translateY(0px); */
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children a{
    padding:10px 30px 10px 17px;
  }
}

/*===== New Header Styling ===========*/


@media(max-width:767px){
  .header-grp {
    z-index: 99999;
    padding: 20px 0px;
  }
  body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper{
    padding:0px; 
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    font-size: 14px;
    padding: 14px 25px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    box-shadow: none;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    border: 0;
  }

  .header-grp ul.hs-menu-children-wrapper{
    box-shadow: none;
  }

  .header-grp .right-col {
    display: none;
  }

  .custom-menu-primary .hs-menu-wrapper,
  .span1.header__search.header--element.vertical-center,
  .span3.right-col.vertical-center.align-right
  {
    display:none;
  }  

  body .container-fluid .row-fluid  .mobile-trigger{
    top:-33px;
    cursor:pointer;
  }

  body .row-fluid .custom-menu-primary.js-enabled .hs-menu-wrapper{
    top: 78px;
    position:absolute;
  }

  .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    padding: 14px 25px;
    font-weight: 500;
    font-size: 16px;
  }

  body .container-fluid .row-fluid .custom-menu-primary.js-enabled {
    position: absolute;
    width: 100%;
    left: 0;
    margin: 0;
    right: 0;
    top: 36px;
    padding: 0;
  }  

  body .container-fluid .row-fluid  .mobile-open .mobile-trigger,
  body .container-fluid .row-fluid  .mobile-trigger {
    background-color: transparent;
    border: none;
  }

  body .container-fluid .row-fluid .mobile-trigger:hover i, 
  body .container-fluid .row-fluid .mobile-trigger:hover i:before, 
  body .container-fluid .row-fluid .mobile-trigger:hover i:after, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i:before, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i:after {
    background-color:#007aff;

  }

  body .container-fluid .row-fluid .mobile-trigger i, 
  body .container-fluid .row-fluid .mobile-trigger i:before, 
  body .container-fluid .row-fluid .mobile-trigger i:after {
    width: 30px;
    height: 4px;
    background-color:#007aff;
  }

  body .container-fluid .row-fluid .mobile-trigger i:before {
    top: -7px;
  }

  body .container-fluid .row-fluid .mobile-trigger i:after {
    top: 7px;
  } 

  body .container-fluid .row-fluid .mobile-trigger{
    top: -33px;  
  }  
}

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