/* 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));
    }
  
}
div[class*="force-full-width-section"]>.row-fluid {
  padding-left: 0;  
  padding-right: 0;
} 
.dnd-section > .row-fluid, .page-center, .content-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.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.5555555555555556;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}

/* 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 0 16px;
}
p:last-child {
  margin-bottom: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}
h1 {
  line-height: 1.1666666666666667;
}
h2{
  line-height: 1.2222222222222223;
}
h3 {
  line-height: 1.2857142857142858;
}
h4 {
  line-height: 1.4545454545454546;
}
h5,
h6 {
  line-height: 1.5;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.5rem;
  padding-left: 18px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul li,
ol li{
  margin-bottom: 15px;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 4px solid;
  margin: 0 0 1.2rem;
  padding-left: 0.7rem;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Horizontal rules */

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

/* Image alt text */

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

/* Clearfix */
.clearfix:before, .clearfix:after{
  content: '';
  display: table;
}
.clearfix:after{
  clear: both;
}


/*== Hidden Phone and Desktop ==*/

@media (min-width: 768px){
  .hidden-desktop, .visible-phone, .visible-tablet {
    display: none!important;
  }
}

@media (max-width: 767px){
  .hidden-phone {
    display: none!important;
  }
}


@media only screen and (max-width: 767px)  {
  body {
    line-height: 1.5;
  }
}

/*========= HsCol Width Css=========*/
.hsrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.hscol{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0
}
.no-gutters > .hscol , .no-gutters > [class*=hscol-] {
  padding-right: 0;
  padding-left: 0
}

@media (min-width: 300px) {
  .hscol-1{
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .hscol-2{
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .hscol-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hscol-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .hscol-5{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hscol-6{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hscol-7{
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hscol-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hscol-9{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hscol-10{
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .hscol-11{
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .hscol-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 480px) {
  .hscol-sm-1{
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .hscol-sm-2{
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .hscol-sm-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hscol-sm-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .hscol-sm-5{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hscol-sm-6{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hscol-sm-7{
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hscol-sm-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hscol-sm-9{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hscol-sm-10{
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .hscol-sm-11{
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .hscol-sm-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) { 
  .hscol-md-1{
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .hscol-md-2{
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .hscol-md-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hscol-md-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .hscol-md-5{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hscol-md-6{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hscol-md-7{
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hscol-md-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hscol-md-9{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hscol-md-10{
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .hscol-md-11{
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .hscol-md-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  } 
}

@media (min-width: 992px) {
  .hscol-lg-1{
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .hscol-lg-2{
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .hscol-lg-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hscol-lg-4{
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .hscol-lg-5{
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hscol-lg-6{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hscol-lg-7{
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hscol-lg-8{
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hscol-lg-9{
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hscol-lg-10{
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .hscol-lg-11{
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .hscol-lg-12{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  } 
}

@media (min-width: 1200px) {
  .hscol-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
  }
  .hscol-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
  }
  .hscol-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }
  .hscol-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }
  .hscol-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
  }
  .hscol-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }
  .hscol-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }
  .hscol-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }
  .hscol-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }
  .hscol-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }
  .hscol-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
  }
  .hscol-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  border-style: solid;
  min-height: 56px;
}

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

/* No button */

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

@media only screen and (max-width: 767px)  {
  button,
  .button,
  .hs-button {
    width: 100%;
    display: block;
    min-height: 46px;
    font-size: 14px;
    line-height: 1.1428571428571428;
  }
}
/* Fields */

.hs-form-field, [data-hsfc-id=Renderer] .hsfc-Form .hsfc-Row {
  margin-bottom: 26px;
}

[data-hsfc-id=Renderer] .hsfc-Form .hsfc-Step .hsfc-Step__Content{
  padding: 0;
}

/* Labels */

form label, [data-hsfc-id=Renderer] .hsfc-Form .hsfc-Row .hsfc-FieldLabel {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4285714285714286;
  font-family: Poppins;
}

/* 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,
[data-hsfc-id=Renderer] form input[type=email], 
[data-hsfc-id=Renderer] form input[type=file], 
[data-hsfc-id=Renderer] form input[type=number], 
[data-hsfc-id=Renderer] form input[type=password], 
[data-hsfc-id=Renderer] form input[type=tel], 
[data-hsfc-id=Renderer] form input[type=text], 
[data-hsfc-id=Renderer] form select, 
[data-hsfc-id=Renderer] form textarea.hsfc-TextareaInput{
  display: block;
  font-size: 14px;
  line-height: 1.4285714285714286;
  padding: 4px 12px;
  width: 100% !important;
  max-width: 767px;
  min-height: 36px;
  border-style: solid;
  outline: none;
}

form input[type=text]:hover, form input[type=search]:hover, form input[type=email]:hover, form input[type=password]:hover,
form input[type=tel]:hover, form input[type=number]:hover, form input[type=file]:hover, form select:hover, form textarea:hover,
[data-hsfc-id=Renderer] form input[type=email]:hover, 
[data-hsfc-id=Renderer] form input[type=file]:hover, 
[data-hsfc-id=Renderer] form input[type=number]:hover, 
[data-hsfc-id=Renderer] form input[type=password]:hover, 
[data-hsfc-id=Renderer] form input[type=tel]:hover, 
[data-hsfc-id=Renderer] form input[type=text]:hover, 
[data-hsfc-id=Renderer] form select:hover, 
[data-hsfc-id=Renderer] form textarea.hsfc-TextareaInput:hover{
  box-shadow: none;
}

form input[type=text]:focus, form input[type=search]:focus, form input[type=email]:focus, form input[type=password]:focus,
form input[type=tel]:focus, form input[type=number]:focus, form input[type=file]:focus, form select:focus, form textarea:focus,
[data-hsfc-id=Renderer] form input[type=email]:focus, 
[data-hsfc-id=Renderer] form input[type=file]:focus, 
[data-hsfc-id=Renderer] form input[type=number]:focus, 
[data-hsfc-id=Renderer] form input[type=password]:focus, 
[data-hsfc-id=Renderer] form input[type=tel]:focus, 
[data-hsfc-id=Renderer] form input[type=text]:focus, 
[data-hsfc-id=Renderer] form select:focus, 
[data-hsfc-id=Renderer] form textarea.hsfc-TextareaInput:focus{
  box-shadow: 0px 0px 0px 3px #E6D6F7;
}

form textarea, [data-hsfc-id=Renderer] form textarea.hsfc-TextareaInput{
  resize: vertical;
  min-height: 114px;
}

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

[data-hsfc-id=Renderer] form .hsfc-PhoneInput__FlagAndCaret {
  font-size: 14px;
  line-height: 1.4285714285714286;
  font-family: Poppins;
}


/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

[data-hsfc-id=Renderer] form .hsfc-CheckboxInput{
  cursor: pointer;
  margin-right: 0.35rem;
  width: 18px;
  height: 18px;
  padding: 0;
  vertical-align: middle;
  display: inline-block;
}
[data-hsfc-id=Renderer] form .hsfc-CheckboxInput:hover{
  box-shadow: none;
}
[data-hsfc-id=Renderer] form .hsfc-CheckboxField .hsfc-FieldLabel span{
  vertical-align: middle;
}

/* 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 - checkbox */
form .hs-fieldtype-booleancheckbox {
  margin-bottom: 12px;
}
form .hs-fieldtype-booleancheckbox .inputs-list li {
  margin: 0;
}
form .hs-fieldtype-booleancheckbox .inputs-list li label{
  margin: 0;
}
form .hs-fieldtype-booleancheckbox .inputs-list li label input[type=checkbox]{
  width: 18px;
  height: 18px;
}

/* 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: 14px;
  line-height: 1.4285714285714286;
}
form .hs-richtext {
  margin-bottom: 26px;
}

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

.form-title:empty{
  display: none;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-width: 1.5px;
  border-color: #D72700;
}
.hs-input.invalid.error:focus{
  box-shadow: none;
}

.hs-error-msg, [data-hsfc-id=Renderer] form .hsfc-ErrorAlert {
  color: #D72700;
  font-size: 12px;
  line-height: 1.5;
  font-family: Poppins;
}
.hs_error_rollup {
  display: none;
}

/* Submit button */
[data-hsfc-id=Renderer] form .hsfc-NavigationRow__Buttons {
  display: block;
}
form input[type=submit],
form .hs-button, .white-button,
[data-hsfc-id=Renderer] form .hsfc-NavigationRow .hsfc-Button{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  border-style: solid;
  min-height: 56px;
}

[data-hsfc-id=Renderer] form .hsfc-NavigationRow {
  margin-top: 0; 
}

@media only screen and (max-width: 767px)  {
  form input[type=submit],
  form .hs-button, .white-button,
  [data-hsfc-id=Renderer] form .hsfc-NavigationRow .hsfc-Button{
    width: 100%;
    display: block;
    min-height: 46px;
    font-size: 14px;
    line-height: 1.1428571428571428;
  }
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
  padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 6px;
  margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
  height: 15px;
  fill: #fff;
}

.body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
  padding: 10px;
}

.body-container-wrapper .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.custom-header{
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
  z-index: 999;
  box-shadow: 0px 8px 16px 0px rgba(33, 0, 76, 0.078), 0px 0px 4px 0px rgba(33, 0, 76, 0.039);
}
.custom-header .page-center {
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}
.custom-header .header-logo {
  float: left;
  width: auto;
}
.custom-header .header-logo a img {
  max-width: 240px;
}
.custom-header .header-menu li {
  margin-bottom: 0px;
}
.custom-header .header-menu .hs-menu-wrapper > ul > li > a {
  font-size: 12px;
  line-height: 1.3333333333333333;
  display: inline-block;
}
.custom-header .header-menu .hs-menu-wrapper > ul > li > a svg {
  vertical-align: middle;
  margin-right: 3px;
}
.custom-header .header-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.custom-header .header-btn-wrap .header-login-button {
  margin-right: 10px;
}
.custom-header .header-btn-wrap .header-btn a{
  padding: 7.2px 10px;
  border-style: solid;
  font-size: 13px;
  line-height: 1.2307692307692308;
  min-height: unset;
}
.custom-header .header-btn-wrap .header-login-button a{
  border-width: 1px;
}



@media only screen and (min-width: 992px)  {
  .custom-header .header-logo-mobile, .custom-header .mobile-trigger{
    display: none;
  }
  .custom-header .header-right{
    float: right;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .custom-header .header-menu .hs-menu-wrapper > ul > li:not(:last-child) {
    margin-right: 30px;
  }
  .custom-header .header-btn-wrap {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 1050px) and (min-width: 992px)  {
  .custom-header .page-center {
    padding-left: 25px;
    padding-right: 25px;
  }
  .custom-header .header-btn-wrap {
    margin-left: 20px;
  }
  .custom-header .header-menu .hs-menu-wrapper > ul > li:not(:last-child) {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px)  {
  .custom-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .custom-header .page-center {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .custom-header .header-logo-desktop{
    display: none;
  }
  .custom-header .header-logo a img {
    max-width: 31px;
  }
  .custom-header .mobile-trigger {
    float: right;
    cursor: pointer;
  }
  .custom-header .mobile-trigger svg {
    vertical-align: middle;
  }
  .custom-header .header-right {
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding-left: 24px;
    padding-right: 24px;
    display: none;
  }
  .custom-header .header-menu .hs-menu-wrapper ul{
    display: block; 
  }
  .custom-header .header-menu .hs-menu-wrapper > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .custom-header .header-menu .hs-menu-wrapper > ul > li > a {
    display: block;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 14px;
    line-height: 1.3;
  }
  .custom-header .header-btn-wrap {
    margin-top: 15px;
  }
}
.custom-footer{
  font-size: 12px;
  line-height: 1.3333333333333333;
  padding-top: 90px;
  padding-bottom: 45px;
}
.custom-footer .footer-copyright {
  text-align: center;
}
.custom-footer ul li{
  margin-bottom: 0;
}
.custom-footer .bottom-footer {
  margin-top: 94px;
}
.custom-footer .bottom-footer-menu{
  margin-bottom: 18px;
}
.custom-footer .bottom-footer-menu .hs-menu-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.custom-footer .bottom-footer-menu .hs-menu-wrapper ul li:not(:last-child):after{
  content: "•";
  margin-right: 10px;
  margin-left: 10px;
}
.custom-footer .footer-btn-wrap {
  margin-bottom: 50px;
}

.custom-footer .footer-btn-wrap .footer-btn a{
  min-width: 219px;
  display: inline-block;
  padding: 25.4px 30px;
  text-align: center;
  font-size: 17px;
  line-height: 1.3529411764705883;
}
.custom-footer .footer-btn-wrap .footer-btn a svg{
  vertical-align: middle;
}
.custom-footer .top-footer-wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.custom-footer .top-footer-left{
  width: 403px;
}
.custom-footer .top-footer-right{
  width: 598px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.custom-footer .top-footer-right .footer-menu{
  width: 170px;
}
.custom-footer .top-footer-right .footer-language{
  width: 80px;
}
.custom-footer .top-footer-right .footer-language img{
  max-width: 16px;
}
.custom-footer .footer-title{
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 18px;
}
.custom-footer .footer-menu .hs-menu-wrapper ul{
  display: block;
}
.custom-footer .footer-menu .hs-menu-wrapper ul li:not(:last-child){
  margin-bottom: 18px;
}
.custom-footer .footer-menu .hs-menu-wrapper ul li a{
  font-size: 16px;
  line-height: 1.5;
  display: block;
}

.custom-footer .footer-form-top-text {
  margin-bottom: 20px;
}
.custom-footer .footer-form .footer-title{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1428571428571428;
  margin-bottom: 13px;
}
.custom-footer .footer-social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 38px;
}
.custom-footer .footer-social-icon a {
  display: block;
}
.custom-footer .footer-social-icon a:not(:last-child) {
  margin-right: 17px;
}
.custom-footer .footer-social-icon a svg {
  vertical-align: middle;
}
.custom-footer .footer-subscribe-form form .hs-form-field {
  margin-bottom: 13px;
}
.custom-footer .footer-subscribe-form form .hs-form-field .input > .hs-input{
  min-height: 43px;
  border-radius: 50px;
  font-size: 12px;
  line-height: 1.3333333333333333;
  color: #0C001C;
}
.custom-footer .footer-subscribe-form form ::-webkit-input-placeholder {
  color: #0C001C;
}
.custom-footer .footer-subscribe-form form .hs-submit .hs-button {
  width: 100%;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 46px;
  font-size: 16px;
  line-height: 1.5;
}
.custom-footer .footer-form-bottom-text {
  margin-top: 12px;
}

@media only screen and (min-width: 768px)  {
  .custom-footer .footer-mobile-logo{
    display: none;
  }
  .custom-footer .footer-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .custom-footer .footer-btn-wrap .footer-btn:not(:last-child){
    margin-right: 10px;
  }
}

@media only screen and (max-width: 1100px) and (min-width: 992px)  {
  .custom-footer .top-footer-left {
    width: 380px;
  }
  .custom-footer .top-footer-right {
    width: 500px;
  }
}

@media only screen and (max-width: 991px) and (min-width: 768px)  {
  .custom-footer .top-footer-left {
    width: 40%;
  }
  .custom-footer .top-footer-right {
    width: 55%;
  }
}

@media only screen and (max-width: 767px)  {
  .custom-footer {
    padding-top: 56px;
    padding-bottom: 38px;
  }
  .custom-footer .bottom-footer {
    margin-top: 69px;
  }
  .custom-footer .footer-btn-wrap {
    margin-bottom: 32px;
  }
  .custom-footer .footer-btn-wrap .footer-btn.appstore-btn {
    margin-bottom: 10px;
  }
  .custom-footer .footer-btn-wrap .footer-btn a {
    display: block;
    padding: 14px 30px;
  }
  .custom-footer .bottom-footer-menu .hs-menu-wrapper ul{
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
  }
  .custom-footer .top-footer-wrap{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .custom-footer .top-footer-left, .custom-footer .top-footer-right {
    width: 100%;
  }
  .custom-footer .footer-social-icon {
    margin-top: 24px;
  }
  .custom-footer .footer-form-top-text {
    margin-bottom: 16px;
  }
  .custom-footer .top-footer-right{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .custom-footer .top-footer-right .footer-menu {
    width: 50%;
  }
  .custom-footer .top-footer-right .footer-language {
    width: 100%;
    margin-bottom: 32px;
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.5;
    color: #433358;
  }
  .custom-footer .footer-menu .hs-menu-wrapper ul li a {
    font-size: 14px;
    line-height: 1.4285714285714286;
  }
  .custom-footer .footer-mobile-logo{
    margin-bottom: 32px;
    width: 100%;
  }
  .custom-footer .footer-mobile-logo img{
    max-width: 206px;
  }
}
/* 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;
  }
}

/* Templates
All the website styles
*/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

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

.charity-partners .charity-partners-row3 .dnd-section {
  border-bottom-right-radius: 100px;
}
.contact-page .faq-mdl .faq-top {
  max-width: 626px;
}
.banner-area form input[type=text] {
  min-height: 43px;
}
.banner-area .hs-form-field {
  margin-bottom: 13px;
}

@media only screen and (min-width: 768px) {
  .contact-page .faq-mdl .faq-top .faq-section-title {
    margin-bottom: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .charity-partners .charity-partners-row3 .dnd-section {
    border-bottom-right-radius: 60px;
  }
}