/* Theme base styles */

/* Theme variable settings
This is where the theme settings are pulled into css variables to be used across the rest of the theme css
*/



@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;700&display=swap');







:root {
	--body: #191919;
	--primary: #02568A;
	--secondary: #4DAAEF;
	--tertiary: #191919;
	--primary-background: #E4F0FF;
	--secondary-background: #F4FAFF;
	--white: #fff;
	--black: #000;
	--bold: 600;
	--medium: 500;
	--regular: 400;
	--light: 300;
  --h1-color: var(--tertiary);
	--h2-color: var(--tertiary);
	--h3-color: var(--secondary);
	--h4-color: var(--primary);
	--label-color: #191919;
	--help-color: #FF0201;
	--form-background-color: #fff;
	--form-border-color: var(--primary);
}
:root {
	--bs-blue: #0d6efd;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #dc3545;
	--bs-orange: #fd7e14;
	--bs-yellow: #ffc107;
	--bs-green: #198754;
	--bs-teal: #20c997;
	--bs-cyan: #0dcaf0;
	--bs-black: #000;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #343a40;
	--bs-gray-100: #f8f9fa;
	--bs-gray-200: #e9ecef;
	--bs-gray-300: #dee2e6;
	--bs-gray-400: #ced4da;
	--bs-gray-500: #adb5bd;
	--bs-gray-600: #6c757d;
	--bs-gray-700: #495057;
	--bs-gray-800: #343a40;
	--bs-gray-900: #212529;
	--bs-primary: #02568A;
	--bs-secondary: #02568A;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #ffc107;
	--bs-danger: #FF0201;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
	--bs-primary-rgb: 13, 110, 253;
	--bs-secondary-rgb: 108, 117, 125;
	--bs-success-rgb: 25, 135, 84;
	--bs-info-rgb: 13, 202, 240;
	--bs-warning-rgb: 255, 193, 7;
	--bs-danger-rgb: 220, 53, 69;
	--bs-light-rgb: 248, 249, 250;
	--bs-dark-rgb: 33, 37, 41;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-body-color-rgb: 33, 37, 41;
	--bs-body-bg-rgb: 255, 255, 255;
	--bs-font-sans-serif: 'Space Grotesk', sans-serif;
	--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 1rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1;
	--bs-body-color: #191919;
	--bs-body-bg: #fff;
	--bs-border-width: 1px;
	--bs-border-style: solid;
	--bs-border-color: #dee2e6;
	--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
	--bs-border-radius: 0.375rem;
	--bs-border-radius-sm: 0.25rem;
	--bs-border-radius-lg: 0.5rem;
	--bs-border-radius-xl: 1rem;
	--bs-border-radius-2xl: 2rem;
	--bs-border-radius-pill: 50rem;
	--bs-link-color: #0d6efd;
	--bs-link-hover-color: #0a58ca;
	--bs-code-color: #d63384;
	--bs-highlight-bg: #fff3cd;
}

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

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.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%;
    *margin-left: 2.0744680846382977%;
    -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%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.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%;
        *zoom: 1;
    }

    .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%;
        *margin-left: 2.709239449638298%;
        -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%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .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%;
        *margin-left: 2.510911074638298%;
        -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%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.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 ;
    }
}
.container,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
	margin: 0 auto;
	padding: 40px 20px;
}
.container-small {
	margin: 0 auto;
	padding: 0 20px;
}
div[class*="max-width-section-centering"] > .row-fluid {
	padding: 0 20px;
}
@media screen and (min-width: 768px) {
	.container,
	.container-small,
	.container-xxl,
	.container-xl,
	.container-lg,
	.container-md,
	.container-sm{
		padding: 60px 40px;
	}
	div[class*="max-width-section-centering"] > .row-fluid {
		padding: 0 40px;
	}
}
@media screen and (min-width: 1380px) {
	.container,
	.container-small,
	.container-xxl,
	.container-xl,
	.container-lg,
	.container-md,
	.container-sm{
		padding: 40px 0;
	}
	div[class*="max-width-section-centering"] > .row-fluid {
		padding: 0;
	}
}

.dnd-section > .row-fluid {
	margin: 0 auto;
}

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

html {
  font-size: 16px;
}

body {
  background: #fff;
  line-height: 1.4;
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  font-family: 'Space Grotesk', sans-serif;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Custom Font Family */


/* Paragraphs */

p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.4;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  color: var(--secondary);
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.26;
  margin: 0 0 1.4rem;
}

h1, .h1 {
  font-size: 2.5rem !important;
  color: var(--h1-color);
  font-weight: 300;
}
h2, .h2 {
  color: var(--h2-color);
  font-weight: 400;
}
h3, .h3{
  color: var(--h3-color);
  font-weight: 700;
}
h4, .h4 {
  color: var(--h4-color);
  font-weight: 700;
}
h5, .h5 {
  color: var(--tertiary);
  font-weight: 700;
}
h6, .h6 {
  color: var(--tertiary);
  font-weight: 700;
}
p.subhead {
  font-weight: 700;
  color: var(--secondary);
}

@media (min-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1.8rem;
  }
  h1, .h1 {
    font-size: 3.5rem!important;
  }
}

/* Lists */

ul,
ol {
  color: var(--body);
  margin: 0 0 1.4rem;
  font-size: 1rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}
ul li,
ol li{
  margin-bottom: 0.3rem;
}

ul.no-list {
  list-style: none;
}

ul.treatment_list li {
  list-style: none;
  position: relative;
  padding-top: .5rem;
}

ul.treatment_list li:before {
  content: "-";
  list-style: none;
  position: absolute;
  left: -20px;
  top: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}

ul.treatment_list p {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}

/* Image alt text */

img {
  font-size: 14px;
  word-break: normal;
}
.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}


.btn {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 2px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: row;
  column-gap: 7px;
  width: fit-content !important;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x) !important;
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight) !important;
  line-height: var(--bs-btn-line-height) !important;
  color: var(--bs-btn-color) !important;
  text-align: center !important;
  text-decoration: none !important;
  vertical-align: middle !important;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color) !important;
  
  
  background-color: var(--bs-btn-bg) !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn i.fa-solid.fa-arrow-right{
  font-size: 10px;
  transition: transform 0.15s ease-in-out;
}

:not(.btn-check) + .btn:hover, .btn:first-child:hover {
  color: var(--bs-btn-hover-color) !important;
  background-color: var(--bs-btn-hover-bg) !important;
  border-color: var(--bs-btn-hover-border-color) !important;
  text-decoration: none !important;
}

.btn:hover i.fa-solid.fa-arrow-right,
.btn:focus i.fa-solid.fa-arrow-right{
  transform: translateX(2px);
}

.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: var(--white);
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: var(--primary);
  --bs-btn-hover-bg: none;
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--primary);
  --bs-btn-active-bg: none;
  --bs-btn-active-border-color: var(--primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--white)80;
  --bs-btn-disabled-bg: var(--primary)80;
  --bs-btn-disabled-border-color: var(--primary)80;
}



.btn-secondary {
  --bs-btn-color: var(--primary);
  --bs-btn-bg: var(--secondary);
  --bs-btn-border-color: var(--secondary);
  --bs-btn-hover-color: var(--primary);
  --bs-btn-hover-bg:  none;
  --bs-btn-hover-border-color: var(--secondary);
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: var(--primary);
  --bs-btn-active-bg: none;
  --bs-btn-active-border-color: var(--secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--white)80;
  --bs-btn-disabled-bg: var(--primary)80;
  --bs-btn-disabled-border-color: var(--primary)80;
}



.btn-tertiary {
  --bs-btn-color: var(--white);
  --bs-btn-bg: var(--tertiary);
  --bs-btn-border-color: var(--tertiary);
  --bs-btn-hover-color: var(--tertiary);
  --bs-btn-hover-bg:  none;
  --bs-btn-hover-border-color: var(--tertiary);
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: var(--tertiary);
  --bs-btn-active-bg: none;
  --bs-btn-active-border-color: var(--tertiary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--white)80;
  --bs-btn-disabled-bg: var(--primary)80;
  --bs-btn-disabled-border-color: var(--primary)80;
}



.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}



.btn-outline-secondary {
  --bs-btn-color: var(--secondary);
  --bs-btn-border-color: var(--secondary);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg:  var(--secondary);
  --bs-btn-hover-border-color:  var(--secondary);
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--secondary);
  --bs-btn-active-border-color: var(--white);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-tertiary {
  --bs-btn-color: var(--tertiary);
  --bs-btn-border-color: var(--tertiary);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg:  var(--tertiary);
  --bs-btn-hover-border-color:  var(--tertiary);
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--tertiary);
  --bs-btn-active-border-color: var(--white);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.25rem;
}


.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: 0.375rem;
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}



.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
/* Form fields */

.hs-form-field {
	margin-bottom: 1.4rem;
}

/* Labels */

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

/* Help text - legends */

form legend {
	font-size: 0.875rem;
}

/* Inputs */

form .hs-form-field {
	display: inline-block;
	position: relative;
	width: 100%;
	margin: 6px 0;
}
.hs-form-field > label > span:first-child {
	color: var(--label-color);
}

/* Label Styles for Fields that can shift the label when filled */
.hs-form-field > label{
	display: block;
	order: -1;
	transition: all .3s ease;
	position: absolute;
	top: 8px;
	left: 12px;
	pointer-events: none;
	font-size: 0.875rem;
	padding: .5rem 0;
	margin: 0;
	transition: all ease-in-out .2s;
	z-index: 2;
}
.hs-form-field.filled > label{
	font-size: 0.75rem;
	transform: translateY(-20px);
}

/* Label Styles for Fields that CANNOT shift the label when filled */
.hs-form-field.hs-fieldtype-checkbox > label,
.hs-form-field.hs-fieldtype-file > label {
	position: relative;
	top: inherit;
	left: inherit;
}
.hs-form-field.hs-fieldtype-checkbox.filled > label,
.hs-form-field.hs-fieldtype-file.filled > label {
	font-size: 1.125rem;
	transform: none;
}

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
	background-color: transparent;
	
	background-color: var(--form-background-color);
	
	border: 2px solid #fff;
	
	
	
	display: inline-block;
	font-size: 0.875rem;
	padding: 6px 12px;
	width: 100%!important;
	height: 46px;
}

form textarea {
	height: 100px;
}

form .hs-form-field input[type=text]:focus,
form .hs-form-field input[type=text]:focus,
form .hs-form-field input[type=email]:focus,
form .hs-form-field input[type=password]:focus,
form .hs-form-field input[type=tel]:focus,
form .hs-form-field input[type=number]:focus,
form .hs-form-field input[type=file]:focus,
form .hs-form-field select:focus,
form .hs-form-field textarea:focus {
	border: 1px solid #ebf6ff!important;
	box-shadow: 0 0 3px #ebf6ff!important;
	-moz-box-shadow: 0 0 3px #ebf6ff!important;
	-webkit-box-shadow: 0 0 3px #ebf6ff!important;
	outline-offset: 0px!important;
	outline: none!important;
}

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

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

form fieldset .input {
	margin-right: 0!important;
}

@media (min-width: 481px) {
	form fieldset.form-columns-2 {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 14px;
	}
}


/* 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 .hs-fieldtype-checkbox > label {
	font-size: 1.125rem;
	margin: 6px 0 8px;
}

form .hs-fieldtype-checkbox .input label span {
	font-size: 1rem;
}

form .hs-fieldtype-checkbox .input label {
	display: flex;
	align-items: center;
	margin: 4px 0 14px;
}

form input[type=checkbox],
form input[type=radio] {
	position: relative;
	display: block;
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	width: 16px!important;
	height: 16px;
	border: 2px solid var(--primary);
/* 	border-radius: 50%; */
	transition: all ease-in-out .3s;
	cursor: pointer;
	margin-right: 0.35rem;
}

form input[type=checkbox]:checked,
form input[type=radio]:checked {
	background-color: var(--primary);
}

/* Inputs - datepicker */

.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: var(--help-color);
}

.hs-error-msg {
	color: var(--help-color);
	margin: 4px 0 0;
}

form .inputs-list > li {
	margin: 0;
}

/* Submit button */

form .hs-submit .actions {
	position: relative;
	display: inline-block;
	margin-top: 14px;
}

form .hs-submit .actions:before {
	font: var(--fa-font-solid);
	content: "\f061";
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	color: #fff;
	font-size: 10px;
	pointer-events: none;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

form .hs-submit .actions:hover:before,
form .hs-submit .actions:focus:before {
	color: var(--primary);
	transform: translate(2px,-50%);
}

form input[type=submit],
form .hs-button {
	display: inline-block;
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1;
	background: var(--primary);
	border: 1px solid var(--primary);
	color: var(--white);
	padding: 10px 30px 10px 44px;
	text-align: center;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	white-space: normal;
	cursor: pointer;
	
	
}

form input[type=submit]:hover,
form .hs-button:hover,
form input[type=submit]:focus,
form .hs-button:focus {
	background: transparent;
	color: var(--primary);
}

/* Captcha */

.grecaptcha-badge {
	margin: 0 auto;
}


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

/* Header DND sections */
header { 
  position: relative; 
  background: #EBF6FF;
  transition: all ease-in-out .3s;
}
body.navOpen header {
  background: var(--primary);	
}
body.navOpen header .header__container .header__logo img {
  filter: brightness(0) invert(1);
}
header .header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}
header .header__container .header__logo img {
  max-width: 150px;
  transition: all ease-in-out .3s;
}
header .header__container .header__navigation {
  display: flex;
  align-items: center;
}
header .header__container .header__navigation nav {
  display: none;
  z-index: 999;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  width: 100%;
  height: 100vh;
  background: var(--primary);
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"]{
  display: flex;
  flex-direction: column;
  padding: 20px;
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li {
  border-bottom: 1px solid var(--white);
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li:last-child {
  border-bottom: none;
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li:last-child > ul.hs-menu-children-wrapper {
  display: none;
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li a{
  display: block;
  font-size: 16px;
  color: var(--white);
  padding: 12px 0;
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children {
  position: relative;
}

header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children:after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 16px;
  color: white;
  transition: all 0.25s;
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[aria-hidden="false"] > li.hs-item-has-children:after {
  transform: rotate(180deg);
  color: red;
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > a{
  width: fit-content;
}

header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > ul { display: none; }
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > ul > li > a {
  display: block;
  color: var(--white);
  padding: 4px 8px;
}
header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > ul > li:last-child > a { padding-bottom: 20px; }
.hamburger{
  width: 40px;
  height: 30px;
  display:flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: space-between;
  transform: scale(0.75);
  cursor: pointer;
  margin-bottom: 8px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger-slice{
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background-color: var(--primary);
}
.hamburger .top{
  margin-top: 4px;
}
.hamburger .top-anim{
  animation: top-k 0.2s;
  animation-fill-mode: forwards;
  background-color: var(--white);
}
.hamburger .top-anim-r{
  animation: top-k-r 0.2s;
  animation-fill-mode: forwards;
}
.hamburger .mid-anim{
  animation: mid-k 0.2s;
  animation-fill-mode: forwards;
  background-color: var(--white);
}
.hamburger .mid-anim-r{
  animation: mid-k-r 0.2s;
  animation-fill-mode: forwards;
}
.hamburger .bot-anim{
  animation: bot-k 0.2s;
  animation-fill-mode: forwards;
  background-color: var(--white);
}
.hamburger .bot-anim-r{
  animation: bot-k-r 0.2s;
  animation-fill-mode: forwards;
}
.hamburger .bot{
  margin-bottom: -3px;
}
@keyframes top-k{
  from{
    transform:rotate(0deg) translate(0,0);
  }
  to{
    transform:rotate(45deg) translate(10px,10px);
  }
}
@keyframes top-k-r{
  from{
    transform:rotate(45deg) translate(12px,12px);
  }
  to{
    transform:rotate(0deg) translate(0,0);
  }
}
@keyframes mid-k{
  from{opacity:1;}
  to{opacity:0;}
}
@keyframes mid-k-r{
  from{opacity:0;}
  to{opacity:1;}
}
@keyframes bot-k{
  from{
    transform:rotate(0deg) translate(0,0);
  }
  to{
    transform:rotate(-45deg) translate(8px,-8px);
  }
}
@keyframes bot-k-r{
  from{
    transform:rotate(-45deg) translate(12px,-12px);
  }
  to{
    transform:rotate(0deg) translate(0,0);
  }
}
@media (min-width: 522px) {
  header .header__container .header__logo img {
    max-width: 250px;
  }
}
@media (min-width: 1400px) {
  body.navOpen header {
    background: var(--primary-background);	
  }
  body.navOpen header .header__container .header__logo img {
    filter: none;
  }
  header .header__container .header__navigation nav {
    display: block!important;
    position: relative;
    transform: none;
    height: auto;
    background: none;
  }
  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"]{
    flex-direction: row;
    align-items: center;
  }

  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li > a{
    font-size: 16px !important;
    letter-spacing: .5px;
    color:  var(--body);
    padding: 0 20px;
    text-decoration: none;
  }
  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children:after {
    content: '';
    position: absolute;
    right: 0;
    top: 16px;
    font-size: 0px;
    color: white;
  }

  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-menu-depth-1:last-child > a{
    margin-left: 1.5rem;
  }

  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li {
    position: relative;
  }
  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > ul { 
    display: block;
    position: absolute;
    width: 100%;
    min-width: 200px;
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out .3s;
    margin-top: 14px;
  }
  header .header__container .header__navigation nav .hs-menu-wrapper>ul[role=menu]>li {
    border-bottom: 0px solid var(--white);
  }

  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > ul[aria-hidden="false"] { 
    visibility: visible;
    opacity: 1;
  }

  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > ul > li > a { 
    color:  var(--body);
    font-size:16px;
    padding: 14px;
    text-decoration: none;
  }
  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > ul > li:hover > a,
  header .header__container .header__navigation nav .hs-menu-wrapper > ul[role="menu"] > li.hs-item-has-children > ul > li:focus > a { 
    background-color: var(--secondary-background)
  }


  .hamburger{
    display: none;
  }
}
/*  Styles */

footer .navigation{
  background: transparent linear-gradient(180deg, #EBF6FF 0%, #EBF6FF00 100%) 0% 0% no-repeat padding-box;
}
footer .policy{
  background-color: #EBF6FF;
}
footer .policy *{
  color: #19191930;
  font-size: 16px;
  margin:0;
}
footer .footer__container .footer__logo img {
  max-width: 200px;
  transition: all ease-in-out .3s;
}

footer .footer__container {
  display: grid;
  column-gap: 2rem;
  row-gap: 2rem;
}

footer .footer__container .footer__logo{
  grid-row: 1;
  grid-column: 1
}

footer .footer__container .footer__social-follow {
  grid-row: 1;
  grid-column: 2
}

footer .footer__container .footer__menu {
  grid-row: 2;
  grid-column: 1 / span 2;
}

footer .footer__container .hs-menu-wrapper > ul{
  justify-content: space-between;
  flex-direction: row;
  column-gap: 1rem;
  row-gap: 1rem;
}

footer .footer__container .hs-menu-wrapper > ul li.hs-menu-depth-1 > a{
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

footer .footer__container .hs-menu-wrapper ul.hs-menu-children-wrapper{
  margin-top: 0.75rem;
}
footer .footer__container .hs-menu-wrapper > ul li.hs-menu-depth-2 > a{
  text-decoration: none;
  color: var(--body);
  font-weight: 400;
  font-size: 14px;
}

footer .social-links{
  justify-content: flex-end;
}
footer .social-links__icon{
  background: none;
  border-radius: 0%;
}
footer .social-links__icon svg {
  fill:var(--primary);
  height: 70%;
}

footer .social-links__icon:hover, 
footer .social-links__icon:focus {
  background-color: var(--primary-background);
}
footer .social-links__icon:hover svg,
footer .social-links__icon:focus svg,
footer .social-links__icon:active svg {
  fill:var(--primary);
}
footer li.hs-menu-item.hs-menu-depth-2 {
    margin: 0.2rem 0;
}

@media (max-width: 768px) {
  footer .footer__container {
    display: grid;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
  footer .footer__container .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    flex-direction: column;
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
  footer .footer__container .hs-menu-wrapper ul.hs-menu-children-wrapper{
    margin-top: 0rem;
  }
  footer .footer__container .footer__logo{
    grid-row: 1;
    grid-column: 1
  }

  footer .footer__container .footer__social-follow {
    grid-row: 3;
    grid-column: 1;
  }

  footer .footer__container .footer__menu {
    grid-row: 2;
    grid-column: 1
  }

  footer .social-links{
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  footer .footer__container .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    flex-direction: column;
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
}
@media (min-width: 768px) {
  footer .footer__container .footer__logo img {
    max-width: 250px;
  }
}
/* 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;
  }
}