/* Theme base styles */

:root {

	/* Spacing */

	--container-width: 1180px;
	--container-width-narrow: 880px;
	--vertical-spacing: 12rem;
	--gap: 2rem;
	--gap-xs: calc(var(--gap) * 0.2);
	--gap-sm: calc(var(--gap) * 0.4);
	--gap-md: calc(var(--gap) * 1.2);
	--gap-lg: calc(var(--gap) * 1.6);
	--gap-xl: calc(var(--gap) * 2.1);

	/* Colors */

	--base-color: #01161F;
	--primary-color: #023349;
	--primary-color-hover: #023349;
	--secondary-color: #FEC01E;
	--secondary-color-hover: #FEC01E;
	--tertiary-color: #F4F5F6;
	--tertiary-color-hover: #F4F5F6;

	--black: #01161F;
	--dark-gray: #D0D4DB;
	--light-gray: #F4F5F6;
	--light-gray-2: #F8F9FA;
	--medium-gray: rgba(2, 51, 73, 0.25); /* form borders, form placeholders, table borders, table header, table footer, dividers */
	--white: #fff;

	--deep-blue: #023349;
	--yellow: #FEC01E;
	--mountain-green: #109F49;
	--blue: #0079FE;
	--ocean-blue: #005CC0;
	--azure-gray: #D0D4DB;
	--porcelain: #F4F5F6;

	/* Typography */

	--base-font-size: 1.6rem;
	--base-line-height: 1.75;
	--primary-font-family: 'Barlow', sans-serif;
	--secondary-font-family: 'Montserrat', sans-serif;

	/* Border radius */

	--border-radius-small: 6px;
	--border-radius: 16px;

	/* Box shadow */
	--box-shadow: 
			0px 0px 30px 0px rgba(2, 51, 73, 0.08), 
			0px 45px 27px 0px rgba(3, 51, 73, 0.02), 
			0px 20px 20px 0px rgba(3, 51, 73, 0.04), 
			0px 5px 11px 0px rgba(3, 51, 73, 0.04);

}

/* Generic */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

@media (max-width: 767px) {
  .oembed_container {
    margin-bottom: 1.5rem;
  }
}
/*! 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: 85%;
}

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

.content-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}

.content-wrapper--narrow {
  max-width: var(--container-width-narrow);
}

section,
.dnd-section,
.content-wrapper--vertical-spacing {
  padding: calc(var(--vertical-spacing) / 2) 2rem;
}

.dnd-section > .row-fluid {
  max-width: var(--container-width);
  margin: 0 auto;
}

.dnd-section .row-module {
  margin: 0 calc(var(--gap) * -1);
}

.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-width);
  position: relative;
}

.dnd-section > .row-fluid .hs-private {
  width: 100%; /* for the dnd add module here placeholder */
}

@media (min-width: 768px) {
  .dnd-section .row-fluid {
    -webkit-column-gap: var(--gap);
       -moz-column-gap: var(--gap);
            column-gap: var(--gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .dnd-section [class*='span'] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  
    .dnd-section .span0 {
      flex-basis: 0.0%;
    }
  
    .dnd-section .span1 {
      flex-basis: 8.333333333333332%;
    }
  
    .dnd-section .span2 {
      flex-basis: 16.666666666666664%;
    }
  
    .dnd-section .span3 {
      flex-basis: 25.0%;
    }
  
    .dnd-section .span4 {
      flex-basis: 33.33333333333333%;
    }
  
    .dnd-section .span5 {
      flex-basis: 41.66666666666667%;
    }
  
    .dnd-section .span6 {
      flex-basis: 50.0%;
    }
  
    .dnd-section .span7 {
      flex-basis: 58.333333333333336%;
    }
  
    .dnd-section .span8 {
      flex-basis: 66.66666666666666%;
    }
  
    .dnd-section .span9 {
      flex-basis: 75.0%;
    }
  
    .dnd-section .span10 {
      flex-basis: 83.33333333333334%;
    }
  
    .dnd-section .span11 {
      flex-basis: 91.66666666666666%;
    }
  
    .dnd-section .span12 {
      flex-basis: 100.0%;
    }
  
}

@media (min-width: 992px) {
  section,
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: var(--vertical-spacing) 2rem;
  }
}

/* Visibilty classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none !important;
  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;
  }
}


/* Flexbox */

.flex,
.flex-wrap {
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

.flexInline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-top {
  -webkit-box-align: start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

.flex-self {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.flex-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-space {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width:767px) {
  .flex:not(.flex-row) {
    flex-direction: column;
  }

  .flex-column-reverse {
    flex-direction: column;
  }

  .flex-row-reverse {
    flex-direction: row;
  }
}

/* Elements */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8.4rem;
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 9.6rem;
  }
}

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

body {
  color: var(--base-color);
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  word-break: break-word;
}

/* Anchors */

a {
  color: var(--deep-blue);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-underline-offset: 3px;
}

.body-container-wrapper a:not(.button) {
  text-decoration: underline;
}

a:hover, .body-container-wrapper a:not(.button):hover,
a:focus, .body-container-wrapper a:not(.button):focus,
a:focus-within, .body-container-wrapper a:not(.button):focus-within,
a:active, .body-container-wrapper a:not(.button):active {
  color: var(--ocean-blue);
  text-decoration: underline;
}

/* Paragraphs */

p {
  margin: 0 0 2.4rem;
}

/* Headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--primary-color);
  font-family: var(--secondary-font-family);
  font-weight: 600;
  margin: 0 0 2.4rem;
  line-height: 1.25;
}

h1,
.h1 {
  font-size: 4rem;
}
h2,
.h2 {
  font-size: 3.2rem;
}
h3,
.h3 {
  font-size: 2.8rem;
}
.h3-alt {
  font-family: var(--primary-font-family);
  font-size: 2rem;
  line-height: 1.48;
}
h4,
.h4 {
  font-size: 2.4rem;
}
h5,
.h5 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 6rem;
  }
  h2,
  .h2 {
    font-size: 4rem;
  }
  h3,
  .h3 {
    font-size: 3rem;
  }
  h4,
  .h4 {
    font-size: 2.8rem;
  }
  h5,
  .h5 {
    font-size: 2.4rem;
  }
}

/* Lists */

ul,
ol {
  list-style-position: inside;
  margin: 0 0 2.4rem;
  padding-left: 1.2rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid var(--mountain-green);
  font-family: var(--secondary-font-family);
  font-weight: 600;
  font-size: 2.4rem;
  font-style: normal;
  margin: 2.4rem 0;
  padding: 1.6rem 2.8rem;
}

blockquote *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  blockquote {
    font-size: 1.8rem;
  }
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 2px solid var(--mountain-green);
  margin: 4.2rem auto;
}

/* Overline */

.overline {
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.button,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 1.4rem 2.2rem;
  border: 2px solid;
  border-radius: var(--border-radius-small);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: var(--secondary-font-family);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
}

@media (min-width: 480px) {
  .button,
  form input[type="submit"],
  form .hs-button {
    width: auto;
  }
}

@media (max-width: 479px) {
  .button,
  form input[type="submit"],
  form .hs-button {
    margin-inline: auto;
  }
}

/* Primary */

.button--primary,
form input[type="submit"],
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button,
form .hs-button {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.button--primary:hover,
.button--primary:focus,
.button--primary:active,
form input[type="submit"]:hover,
form input[type="submit"]:focus,
form input[type="submit"]:active,
form input[type="file"]::file-selector-button:hover,
form input[type="file"]::file-selector-button:focus,
form input[type="file"]::file-selector-button:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
}

form input[type="file"]::-webkit-file-upload-button:hover,
form input[type="file"]::-webkit-file-upload-button:focus,
form input[type="file"]::-webkit-file-upload-button:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
}

/* Secondary */

.button--secondary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.button--secondary:hover,
.button--secondary:focus,
.button--secondary:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
}

/* Text Primary */

.button--text-primary {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: var(--gap-sm);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  min-height: auto;
  padding: 0 0.4rem 0 0;
  outline-offset: 0.4rem;
  background: none;
  border: 0;
  border-radius: 0;
  color: var(--primary-color);
  text-align: left;
  text-decoration: none;
  text-decoration-color: var(--secondary-color);
  text-underline-offset: 5px;
}

.button--text-primary:after {
  position: relative;
  content: url('data:image/svg+xml,<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.048 0.983999L8.416 4.584L6.048 8.216H3.888L6.064 4.584L3.888 0.983999H6.048ZM6.528 3.72V5.464H0.8V3.72H6.528Z" fill="%23023349"/></svg>');
  left: 0;
  top: -1px;
  font-size: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.button--text-primary:hover,
.button--text-primary:focus,
.button--text-primary:active {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: var(--secondary-color);
  text-underline-offset: 5px;
}

.button--text-primary:hover:after,
.button--text-primary:active:after,
.button--text-primary:focus:after {
  left: var(--gap-xs);
}

/* Icon */

.button--icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--gap-sm);
}

.button--icon > svg {
  height: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.button--icon-large > svg {
  height: 2.4rem;
}

/* Full */

.button--full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/* Small */

.button--small {
  font-size: 1.4rem;
  min-height: 4.1rem;
  padding: 0.6rem 1.4rem;
}

/* Large */

.button--large {
  font-size: 1.8rem;
  padding: 1.6rem 2.6rem;
}

/* CTA Override */

a.cta_button {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
/* Labels */

form label,
.fakelabel {
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Inputs */

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 input[type="search"],
form select,
form textarea {
  display: block;
  padding: 1.2rem 1.6rem;
  width: 100%;
  min-height: 4.8rem;
  margin-bottom: 2rem;
  background-color: var(--light-gray);
  border: 1px solid var(--dark-gray);
  border-radius: 8px;
  font-size: 1.4rem;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 30' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3E%3Cpath d='M5.64 0 0 5.64l24 24 24-24L42.36 0 24 18.32 5.64 0Z' style='fill-rule:nonzero'/%3E%3C/svg%3E");
  background-position: calc(100% - 1rem) 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  border: 1px solid var(--dark-gray);
  -webkit-text-fill-color: var(--black);
  opacity: 1;
}

form textarea {
  min-height: 15rem;
  margin-top: 1rem;
  padding: 1rem 1rem;
  border: 1px solid var(--dark-gray);
}

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

::-webkit-input-placeholder {
  color: var(--black);
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: var(--black);
}

/* Inputs - checkbox/radio */

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

.inputs-list > li {
  display: block;
}

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

input[type="checkbox"],
input[type="radio"],
input[type="range"],
progress {
  accent-color: var(--primary-color);
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: "\01F4C5";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: var(--base-color);
}

.fn-date-picker td.is-selected .pika-button {
  background: var(--black);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  background-color: var(--black) !important;
  border-radius: 0 !important;
  color: #fff;
}

.fn-date-picker td.is-today .pika-button {
  color: var(--black);
}

/* Inputs - file picker */

form input[type="file"] {
  width: auto !important;
  min-height: auto;
  background-color: transparent;
  border: initial;
  padding: initial;
}
form input[type="file"]::-webkit-file-upload-button,
form input[type="file"]::file-selector-button {
  margin-right: var(--gap);
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1.4rem;
  margin: 0 0 1.6rem;
}

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 {
  font-size: 1.4rem;
}

.legal-consent-container .hs-form-booleancheckbox-display p {
  position: relative;
  top: -1px;
}

/* Validation */

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

.hs-input.invalid.error {
  border-color: #E00000;
}

.hs-error-msg,
.hs-error-msg,
.hs-error-msgs {
  margin: -1rem 0 2rem 0;
  color: #E00000;
  font-size: 1.4rem;
  font-weight: 400;
}

.hs_error_rollup {
  display: none;
}

.body-container--1811A .hs-form-required {
  color: #C70000;
}
.body-container--1811A .hs-input.invalid.error {
  border-color: #C70000;
}
.body-container--1811A .hs-error-msg,.hs-error-msgs {
  color: #C70000;
}

/* Captcha */

.grecaptcha-badge {
  margin-bottom: 2rem;
}

/* Change Autocomplete styles in Chrome */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px var(--light-gray) inset !important;
  box-shadow: 0 0 0 30px var(--light-gray) inset !important;
}

/* Fix Column Layouts */

.hs-form fieldset {
  max-width: inherit !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field,
.hs-form fieldset.form-columns-2 .hs-form-field,
.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 100% !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field .input,
.hs-form fieldset.form-columns-2 .hs-form-field .input,
.hs-form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: 0 !important;
}
.hs-form
  fieldset.form-columns-1
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.hs-form
  fieldset.form-columns-2
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.hs-form
  fieldset.form-columns-3
  .hs-form-field
  .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100% !important;
}

@media (min-width: 992px) {
  .hs-form fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 0.75rem;
  }
}
/* Table */

table {
	width: 100%;
	border: 1px solid var(--light-gray);
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
	padding: 1rem;
	text-align: left;
  vertical-align: top;
}

td {
	border-bottom: 1px solid var(--light-gray);
}

/* Table header */

thead th {
	background-color: var(--light-gray);
  vertical-align: bottom;
}

/* Table footer */

tfoot td {
  background-color: var(--light-gray);
}

/* Components */

div[data-global-resource-path*="/templates/partials/header.html"] {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 101;
}

.header {
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header--stuck {
  border-bottom: 1px solid var(--light-gray);
}

.header__container {
  padding: 1.7rem 2rem 1.8rem;
}

.header__inner {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}
.header--paid-lp .header__inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .header--paid-lp .header__inner {
    flex-direction: column;
  }
}

/* Logo */

.header__logo a {
  display: block;
  font-size: 0;
}
.header--no-navigation .header__logo a {
  font-size: initial;
  width: 238px;
}
@media (max-width: 1189px) {
  .header__logo img {
    max-width: 153px;
  }
}

/* Phone Number */
.header__phone {
  text-align: right;
}
.header__phone a span {
  white-space: nowrap;
}

/* Nav */

@media (min-width: 1190px) {
  .header__navigation nav {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
.footer {
  padding: 0 2rem;
  background-color: #F8F9FA;
  background-repeat: no-repeat;
  background-position: 0% 100%;
  background-size: 100% auto;
}

.footer--paid-lp {
  padding: 4rem 2rem;
  background-color: var(--white);
  color: var(--base-color);
}
.footer--paid-lp .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: var(--gap);
  align-items: center;
}
.footer--copyright {
  font-size: 1.4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--light-gray);
  margin-top: 3rem;
}
.footer--paid-lp #hs_cos_wrapper_footer_license {
  margin-top: var(--gap-lg);
}
@media (max-width: 575px) {
  .footer--paid-lp .footer__inner {
    flex-direction: column;
  }
}

.footer-top {
  display: grid;
  grid-gap: var(--gap-md);
  padding-block: 6rem 5rem;
  text-align: center;
}

.footer-top__logo,
.footer-top__buttons {
  margin-bottom: 3.2rem;
}

.footer-top__buttons .button,
.footer-top__subscribe form .hs-button {
  font-size: 1.4rem;
  min-height: 4.2rem;
  padding: 0.8rem 1.6rem;
}

.footer-top__subscribe h3 {
  font-family: var(--primary-font-family);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.footer-top__subscribe form label:not(.hs-error-msg) {
  position: absolute;
  visibility: hidden;
}
.footer-top__subscribe form .hs-input {
  background-color: var(--white);
}
.footer-top__subscribe form .hs-button {
  min-height: 4.8rem;
}

.footer-top__menu .hs_cos_wrapper_type_text,
.footer-top__menu ul li {
  margin-bottom: 1.6rem;
}
.footer-top__menu .hs_cos_wrapper_type_text {
  color: rgba(1, 22, 31, 0.60);
  display: block;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.footer-top__menu ul {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
}
.footer-top__menu ul li a {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.48;
}

@media (min-width: 992px) {
  .footer-top {
    display: grid;
    grid-template-columns: 3.5fr 4.5fr 4fr;
    padding-block: 11rem 10rem;
    text-align: unset;
  }

  .footer-top__logo,
  .footer-top__buttons {
    margin-bottom: 4.8rem;
  }

  .footer-top__subscribe form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: var(--gap-sm);
  }
  .footer-top__subscribe form .hs-input {
    width: 22rem;
    margin-bottom: 0;
  } 
  .footer-top__subscribe form .hs-button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .footer-top__subscribe form .hs-error-msg {
    position: absolute;
    top: calc(100% + 1.6rem);
    margin-bottom: 0;
  }

  .footer-top__right {
    gap: 3.6rem;
    grid-column-start: 3;
  }

  .footer-top__menu-mobile {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1080px) {
  .footer-top {
    grid-template-columns: 3fr 2fr 4fr;
  }
}

@media (max-width: 991px) {
  .footer-top__menu {
    display: none;
  }

  .footer-top__menu-mobile {
    margin-inline: -2rem;
    width: calc(100% + 4rem);
  }

  .footer-top__buttons .buttons.flex {
    justify-content: center;
  }
}

.footer-bottom {
  font-size: 1.4rem;
  padding: 0 0 4rem;
}

.footer-bottom__row.flex {
  gap: var(--gap-md) var(--gap-sm);
}

.footer-bottom__links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--gap-sm);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding: 4rem 0 8rem;
  }
  .footer-bottom__row,
  .footer-bottom__left,
  .footer-bottom__links ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1.4rem;
  }
  .footer-bottom__links ul li {
    padding-left: 1.4rem;
    position: relative;
  }
  .footer-bottom__links ul li:before {
    left: 0;
    position: absolute;
    content: "";
    top: 50%;
    width: 1px;
    height: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--base-color);
  }
}

@media (min-width: 992px) {
  .footer:not(.footer--no-navigation) .footer-bottom {
    border-top: 1px solid var(--azure-gray);
  }
}

@media (max-width: 991px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom__row.flex {
    flex-direction: column-reverse;
  }

  .footer-bottom__left {
    gap: var(--gap-sm);
  }
}

/* Footer No Navigation */

.footer.footer--no-navigation {
  padding: 5rem 2rem;
}

.footer.footer--no-navigation .footer-bottom {
  padding: 0;
}

/* Utilities */

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

/* Background Colors */

.bg-light-gray {
  background-color: var(--light-gray);
}
.bg-light-gray-2 {
  background-color: var(--light-gray-2);
}
.bg-white {
  background-color: var(--white);
}
.bg-deep-blue {
  background-color: var(--deep-blue);
}

/* Backgrounds */

.bg-porcelain-texture {
  background-color: var(--porcelain);
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 0% 100%;
  background-size: 100% auto;
  border-radius: 4rem;
}
@media (min-width: 992px) {
  .bg-porcelain-texture {
    border-radius: 8rem;
  }
}

/* Spacing */

.mt-none {
  margin-top: 0 !important;
}
.mt-xs {
  margin-top: calc(var(--gap) * 0.2) !important;
}
.mt-sm {
  margin-top: calc(var(--gap) * 0.4) !important;
}
.mt-md {
  margin-top: calc(var(--gap) * 1.2) !important;
}
.mt-lg {
  margin-top: calc(var(--gap) * 1.6) !important;
}
.mt-xl {
  margin-top: calc(var(--gap) * 2.1) !important;
}

.mb-none {
  margin-bottom: 0 !important;
}
.mb-xs {
  margin-bottom: calc(var(--gap) * 0.2) !important;
}
.mb-sm {
  margin-bottom: calc(var(--gap) * 0.4) !important;
}
.mb-md {
  margin-bottom: calc(var(--gap) * 1.2) !important;
}
.mb-lg {
  margin-bottom: calc(var(--gap) * 1.6) !important;
}
.mb-xl {
  margin-bottom: calc(var(--gap) * 2.1) !important;
}

.pt-none {
  padding-top: 0 !important;
}
.pt-xs {
  padding-top: calc(var(--gap) * 0.2) !important;
}
.pt-sm {
  padding-top: calc(var(--gap) * 0.4) !important;
}
.pt-md {
  padding-top: calc(var(--gap) * 1.2) !important;
}
.pt-lg {
  padding-top: calc(var(--gap) * 1.6) !important;
}
.pt-xl {
  padding-top: calc(var(--gap) * 2.1) !important;
}

.pb-none {
  padding-bottom: 0 !important;
}
.pb-xs {
  padding-bottom: calc(var(--gap) * 0.2) !important;
}
.pb-sm {
  padding-bottom: calc(var(--gap) * 0.4) !important;
}
.pb-md {
  padding-bottom: calc(var(--gap) * 1.2) !important;
}
.pb-lg {
  padding-bottom: calc(var(--gap) * 1.6) !important;
}
.pb-xl {
  padding-bottom: calc(var(--gap) * 2.1) !important;
}

/* Text */

.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}

.text-large {
  font-size: calc(var(--base-font-size) * 1.125);
}
.text-small {
  font-size: calc(var(--base-font-size) * 0.875);
}

.white-text,
.white-text *:not([class*="button"]) {
  color: var(--white);
}

.text-bold {
  font-weight: 600;
}

/* Position style */

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.pos-fixed {
  position: fixed;
}

.pos-static {
  position: static;
}

.pos-sticky {
  position: sticky;
}

body:not(.modal-open) .widget-type-custom_widget .hs_cos_wrapper_widget div:not([class*='background-detail']) {
  z-index: 1;
}

body.modal-open .body-wrapper > div[data-global-resource-path*="/templates/partials/header.html"] {
  z-index: 2 !important;
}

/* Responsive embed */

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.embed-container--43 {
  padding-bottom: 75%;
}

/* Linked Image Module */

.widget-type-linked_image img {
  border-radius: var(--border-radius);
}