/* Theme base styles */

html {
  scroll-behavior: smooth;
}

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

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

/* TW Breakpoints */
/* 
 * sm *
	@media (min-width: 640px) { ... }
 * md *
	@media (min-width: 768px) { ... }
  * lg *
	@media (min-width: 1024px) { ... }
  * xl *
	@media (min-width: 1280px) { ... }
  * 2xl *
	@media (min-width: 1536px) { ... } 
*/


:root {
	--section-padding-block: 48px;
	--half-padding: 24px;
	--no-padding: 0;
	--hero-breadcrumb-pt: 32px;
	--hero-padding-top: 48px;

	@media screen and (min-width: 768px) {
		--section-padding-block: 72px;
		--half-padding: 36px;
/* 		--hero-breadcrumb-pt: 128px; */
	--hero-padding-top: 64px;
		
	}

	@media screen and (min-width: 1280px) {
		--section-padding-block: 96px;
		--half-padding: 48px;
	}
}

.section {
	padding-block: var(--section-padding-block);
}

.section.hero-pt {
	padding-top: var(--hero-padding-top);
}

.section.hero-breadcrumb-pt {
	padding-top: var(--hero-breadcrumb-pt);
}

.section.half-pt {
	padding-top: var(--half-padding);	
}

.section.half-pb {
	padding-bottom: var(--half-padding);
}

.section.no-pt {
	padding-top: var(--no-padding);
}

.section.no-pb {
	padding-bottom: var(--no-padding);
}

.container {
	width: 100%;
	margin: 0 auto;
	padding-inline: 16px;
}
.relative{
	position: relative;
}
.absolute {
	position: absolute;
}

@media screen and (min-width: 768px) {
	.container {
		max-width: 706px;
		padding-inline: 0;
	}
}

@media screen and (min-width: 1024px) {
	.container {
		max-width: 1216px;
		padding-inline: 16px;
	}
}

@media screen and (min-width: 1280px) {
	.container {
		padding-inline: 0;
	}
}
.my-0 {
	margin-top: 0!important;
	margin-bottom: 0!important;
}
.mt-0 {
	margin-top: 0!important;
}
.mb-0 {
	margin-bottom: 0!important;
}


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


:root {
	--white: #fff;
	--black: #000;

	
		
			--alpha-primary-5: #00ADEF0D;
		
			--alpha-primary-10: #00ADEF1A;
		
			--alpha-primary-20: #00ADEF33;
		
			--alpha-primary-30: #00ADEF4D;
		
			--alpha-primary-40: #00ADEF66;
		
			--alpha-primary-50: #00ADEF80;
		
			--alpha-primary-60: #00ADEF99;
		
			--alpha-primary-70: #00ADEFB3;
		
			--alpha-primary-80: #00ADEFCC;
		
			--alpha-primary-90: #00ADEFE6;
		
	
		
			--alpha-white-5: #FFFFFF0D;
		
			--alpha-white-10: #FFFFFF1A;
		
			--alpha-white-20: #FFFFFF33;
		
			--alpha-white-30: #FFFFFF4D;
		
			--alpha-white-40: #FFFFFF66;
		
			--alpha-white-50: #FFFFFF80;
		
			--alpha-white-60: #FFFFFF99;
		
			--alpha-white-70: #FFFFFFB3;
		
			--alpha-white-80: #FFFFFFCC;
		
			--alpha-white-90: #FFFFFFE6;
		
	
		
			--breeze-blue-primary-50: #BFEDFF;
		
			--breeze-blue-primary-100: #A9E7FF;
		
			--breeze-blue-primary-200: #8DDFFF;
		
			--breeze-blue-primary-300: #67D4FF;
		
			--breeze-blue-primary-400: #34C5FF;
		
			--breeze-blue-primary-500: #00ADEF;
		
			--breeze-blue-primary-600: #00A2E0;
		
			--breeze-blue-primary-700: #007CAD;
		
			--breeze-blue-primary-800: #006993;
		
			--breeze-blue-primary-900: #00597D;
		
	
		
			--cool-gray-50: #FBFCFF;
		
			--cool-gray-100: #F5F6FA;
		
			--cool-gray-200: #EFF0F5;
		
			--cool-gray-300: #E1E2E6;
		
			--cool-gray-400: #BDBEC2;
		
			--cool-gray-500: #9FA0A4;
		
			--cool-gray-600: #76777A;
		
			--cool-gray-700: #626366;
		
			--cool-gray-800: #434447;
		
			--cool-gray-900: #222326;
		
	
		
			--lavender-secondary-50: #E9E6FB;
		
			--lavender-secondary-100: #E2DEF9;
		
			--lavender-secondary-200: #D8D3F7;
		
			--lavender-secondary-300: #CBC5F4;
		
			--lavender-secondary-400: #BAB1F0;
		
			--lavender-secondary-500: #A398EB;
		
			--lavender-secondary-600: #7C6DDC;
		
			--lavender-secondary-700: #5B49CF;
		
			--lavender-secondary-800: #4735B9;
		
			--lavender-secondary-900: #3E309A;
		
	
		
			--navy-50: #C3CCE5;
		
			--navy-100: #AFBBDC;
		
			--navy-200: #94A5D0;
		
			--navy-300: #7087C1;
		
			--navy-400: #4862A4;
		
			--navy-500: #2C3C65;
		
			--navy-600: #253356;
		
			--navy-700: #202B49;
		
			--navy-800: #1B253E;
		
			--navy-900: #1A2540;
		
	
		
			--pistachio-tertiary-50: #F1FDF7;
		
			--pistachio-tertiary-100: #EDFCF4;
		
			--pistachio-tertiary-200: #E7FBF0;
		
			--pistachio-tertiary-300: #DFFAEB;
		
			--pistachio-tertiary-400: #D5F8E5;
		
			--pistachio-tertiary-500: #C7F5DC;
		
			--pistachio-tertiary-600: #93E6B9;
		
			--pistachio-tertiary-700: #68D99B;
		
			--pistachio-tertiary-800: #45CC82;
		
			--pistachio-tertiary-900: #36B26E;
		
	
		
			--red-quinary-50: #F9C5C5;
		
			--red-quinary-100: #F8B8B8;
		
			--red-quinary-200: #F6A8A8;
		
			--red-quinary-300: #F49494;
		
			--red-quinary-400: #F17C7C;
		
			--red-quinary-500: #ED5F5F;
		
			--red-quinary-600: #E14646;
		
			--red-quinary-700: #D82E2E;
		
			--red-quinary-800: #C12828;
		
			--red-quinary-900: #A92727;
		
	
		
			--yellow-quaternary-50: #FEECCE;
		
			--yellow-quaternary-100: #FEE8C2;
		
			--yellow-quaternary-200: #FEE3B5;
		
			--yellow-quaternary-300: #FEDDA4;
		
			--yellow-quaternary-400: #FDD58F;
		
			--yellow-quaternary-500: #FDCC76;
		
			--yellow-quaternary-600: #F4BA55;
		
			--yellow-quaternary-700: #EDAB38;
		
			--yellow-quaternary-800: #E69D1F;
		
			--yellow-quaternary-900: #CC8B1C;
		
	
		
			--surface-primary: #FFF;
		
			--surface-secondary: #F5F6FA;
		
	
		
			--accent-blue: #00ADEF;
		
			--accent-lavender: #A398EB;
		
			--accent-pistachio: #C7F5DC;
		
			--accent-yellow: #FDCC76;
		
			--accent-red: #ED5F5F;
		
	
		
			--body-primary: #626366;
		
			--body-primary-dark: #E1E2E6;
		
	
		
			--heading-primary: #2C3C65;
		
			--heading-primary-dark: #fff;
		
			--heading-highlight: #00A2E0;
		
	
}

.text-white {color: var(--white, #fff)};
.bg-white {background-color: var(--white, #fff)};
.text-black {color: var(--black, #000)};
.bg-white {background-color: var(--black, #000)};


	
		.text-alpha-primary-5 { color: var(--alpha-primary-5); }
		.bg-alpha-primary-5 { background-color: var(--alpha-primary-5); }
	
		.text-alpha-primary-10 { color: var(--alpha-primary-10); }
		.bg-alpha-primary-10 { background-color: var(--alpha-primary-10); }
	
		.text-alpha-primary-20 { color: var(--alpha-primary-20); }
		.bg-alpha-primary-20 { background-color: var(--alpha-primary-20); }
	
		.text-alpha-primary-30 { color: var(--alpha-primary-30); }
		.bg-alpha-primary-30 { background-color: var(--alpha-primary-30); }
	
		.text-alpha-primary-40 { color: var(--alpha-primary-40); }
		.bg-alpha-primary-40 { background-color: var(--alpha-primary-40); }
	
		.text-alpha-primary-50 { color: var(--alpha-primary-50); }
		.bg-alpha-primary-50 { background-color: var(--alpha-primary-50); }
	
		.text-alpha-primary-60 { color: var(--alpha-primary-60); }
		.bg-alpha-primary-60 { background-color: var(--alpha-primary-60); }
	
		.text-alpha-primary-70 { color: var(--alpha-primary-70); }
		.bg-alpha-primary-70 { background-color: var(--alpha-primary-70); }
	
		.text-alpha-primary-80 { color: var(--alpha-primary-80); }
		.bg-alpha-primary-80 { background-color: var(--alpha-primary-80); }
	
		.text-alpha-primary-90 { color: var(--alpha-primary-90); }
		.bg-alpha-primary-90 { background-color: var(--alpha-primary-90); }
	

	
		.text-alpha-white-5 { color: var(--alpha-white-5); }
		.bg-alpha-white-5 { background-color: var(--alpha-white-5); }
	
		.text-alpha-white-10 { color: var(--alpha-white-10); }
		.bg-alpha-white-10 { background-color: var(--alpha-white-10); }
	
		.text-alpha-white-20 { color: var(--alpha-white-20); }
		.bg-alpha-white-20 { background-color: var(--alpha-white-20); }
	
		.text-alpha-white-30 { color: var(--alpha-white-30); }
		.bg-alpha-white-30 { background-color: var(--alpha-white-30); }
	
		.text-alpha-white-40 { color: var(--alpha-white-40); }
		.bg-alpha-white-40 { background-color: var(--alpha-white-40); }
	
		.text-alpha-white-50 { color: var(--alpha-white-50); }
		.bg-alpha-white-50 { background-color: var(--alpha-white-50); }
	
		.text-alpha-white-60 { color: var(--alpha-white-60); }
		.bg-alpha-white-60 { background-color: var(--alpha-white-60); }
	
		.text-alpha-white-70 { color: var(--alpha-white-70); }
		.bg-alpha-white-70 { background-color: var(--alpha-white-70); }
	
		.text-alpha-white-80 { color: var(--alpha-white-80); }
		.bg-alpha-white-80 { background-color: var(--alpha-white-80); }
	
		.text-alpha-white-90 { color: var(--alpha-white-90); }
		.bg-alpha-white-90 { background-color: var(--alpha-white-90); }
	

	
		.text-breeze-blue-primary-50 { color: var(--breeze-blue-primary-50); }
		.bg-breeze-blue-primary-50 { background-color: var(--breeze-blue-primary-50); }
	
		.text-breeze-blue-primary-100 { color: var(--breeze-blue-primary-100); }
		.bg-breeze-blue-primary-100 { background-color: var(--breeze-blue-primary-100); }
	
		.text-breeze-blue-primary-200 { color: var(--breeze-blue-primary-200); }
		.bg-breeze-blue-primary-200 { background-color: var(--breeze-blue-primary-200); }
	
		.text-breeze-blue-primary-300 { color: var(--breeze-blue-primary-300); }
		.bg-breeze-blue-primary-300 { background-color: var(--breeze-blue-primary-300); }
	
		.text-breeze-blue-primary-400 { color: var(--breeze-blue-primary-400); }
		.bg-breeze-blue-primary-400 { background-color: var(--breeze-blue-primary-400); }
	
		.text-breeze-blue-primary-500 { color: var(--breeze-blue-primary-500); }
		.bg-breeze-blue-primary-500 { background-color: var(--breeze-blue-primary-500); }
	
		.text-breeze-blue-primary-600 { color: var(--breeze-blue-primary-600); }
		.bg-breeze-blue-primary-600 { background-color: var(--breeze-blue-primary-600); }
	
		.text-breeze-blue-primary-700 { color: var(--breeze-blue-primary-700); }
		.bg-breeze-blue-primary-700 { background-color: var(--breeze-blue-primary-700); }
	
		.text-breeze-blue-primary-800 { color: var(--breeze-blue-primary-800); }
		.bg-breeze-blue-primary-800 { background-color: var(--breeze-blue-primary-800); }
	
		.text-breeze-blue-primary-900 { color: var(--breeze-blue-primary-900); }
		.bg-breeze-blue-primary-900 { background-color: var(--breeze-blue-primary-900); }
	

	
		.text-cool-gray-50 { color: var(--cool-gray-50); }
		.bg-cool-gray-50 { background-color: var(--cool-gray-50); }
	
		.text-cool-gray-100 { color: var(--cool-gray-100); }
		.bg-cool-gray-100 { background-color: var(--cool-gray-100); }
	
		.text-cool-gray-200 { color: var(--cool-gray-200); }
		.bg-cool-gray-200 { background-color: var(--cool-gray-200); }
	
		.text-cool-gray-300 { color: var(--cool-gray-300); }
		.bg-cool-gray-300 { background-color: var(--cool-gray-300); }
	
		.text-cool-gray-400 { color: var(--cool-gray-400); }
		.bg-cool-gray-400 { background-color: var(--cool-gray-400); }
	
		.text-cool-gray-500 { color: var(--cool-gray-500); }
		.bg-cool-gray-500 { background-color: var(--cool-gray-500); }
	
		.text-cool-gray-600 { color: var(--cool-gray-600); }
		.bg-cool-gray-600 { background-color: var(--cool-gray-600); }
	
		.text-cool-gray-700 { color: var(--cool-gray-700); }
		.bg-cool-gray-700 { background-color: var(--cool-gray-700); }
	
		.text-cool-gray-800 { color: var(--cool-gray-800); }
		.bg-cool-gray-800 { background-color: var(--cool-gray-800); }
	
		.text-cool-gray-900 { color: var(--cool-gray-900); }
		.bg-cool-gray-900 { background-color: var(--cool-gray-900); }
	

	
		.text-lavender-secondary-50 { color: var(--lavender-secondary-50); }
		.bg-lavender-secondary-50 { background-color: var(--lavender-secondary-50); }
	
		.text-lavender-secondary-100 { color: var(--lavender-secondary-100); }
		.bg-lavender-secondary-100 { background-color: var(--lavender-secondary-100); }
	
		.text-lavender-secondary-200 { color: var(--lavender-secondary-200); }
		.bg-lavender-secondary-200 { background-color: var(--lavender-secondary-200); }
	
		.text-lavender-secondary-300 { color: var(--lavender-secondary-300); }
		.bg-lavender-secondary-300 { background-color: var(--lavender-secondary-300); }
	
		.text-lavender-secondary-400 { color: var(--lavender-secondary-400); }
		.bg-lavender-secondary-400 { background-color: var(--lavender-secondary-400); }
	
		.text-lavender-secondary-500 { color: var(--lavender-secondary-500); }
		.bg-lavender-secondary-500 { background-color: var(--lavender-secondary-500); }
	
		.text-lavender-secondary-600 { color: var(--lavender-secondary-600); }
		.bg-lavender-secondary-600 { background-color: var(--lavender-secondary-600); }
	
		.text-lavender-secondary-700 { color: var(--lavender-secondary-700); }
		.bg-lavender-secondary-700 { background-color: var(--lavender-secondary-700); }
	
		.text-lavender-secondary-800 { color: var(--lavender-secondary-800); }
		.bg-lavender-secondary-800 { background-color: var(--lavender-secondary-800); }
	
		.text-lavender-secondary-900 { color: var(--lavender-secondary-900); }
		.bg-lavender-secondary-900 { background-color: var(--lavender-secondary-900); }
	

	
		.text-navy-50 { color: var(--navy-50); }
		.bg-navy-50 { background-color: var(--navy-50); }
	
		.text-navy-100 { color: var(--navy-100); }
		.bg-navy-100 { background-color: var(--navy-100); }
	
		.text-navy-200 { color: var(--navy-200); }
		.bg-navy-200 { background-color: var(--navy-200); }
	
		.text-navy-300 { color: var(--navy-300); }
		.bg-navy-300 { background-color: var(--navy-300); }
	
		.text-navy-400 { color: var(--navy-400); }
		.bg-navy-400 { background-color: var(--navy-400); }
	
		.text-navy-500 { color: var(--navy-500); }
		.bg-navy-500 { background-color: var(--navy-500); }
	
		.text-navy-600 { color: var(--navy-600); }
		.bg-navy-600 { background-color: var(--navy-600); }
	
		.text-navy-700 { color: var(--navy-700); }
		.bg-navy-700 { background-color: var(--navy-700); }
	
		.text-navy-800 { color: var(--navy-800); }
		.bg-navy-800 { background-color: var(--navy-800); }
	
		.text-navy-900 { color: var(--navy-900); }
		.bg-navy-900 { background-color: var(--navy-900); }
	

	
		.text-pistachio-tertiary-50 { color: var(--pistachio-tertiary-50); }
		.bg-pistachio-tertiary-50 { background-color: var(--pistachio-tertiary-50); }
	
		.text-pistachio-tertiary-100 { color: var(--pistachio-tertiary-100); }
		.bg-pistachio-tertiary-100 { background-color: var(--pistachio-tertiary-100); }
	
		.text-pistachio-tertiary-200 { color: var(--pistachio-tertiary-200); }
		.bg-pistachio-tertiary-200 { background-color: var(--pistachio-tertiary-200); }
	
		.text-pistachio-tertiary-300 { color: var(--pistachio-tertiary-300); }
		.bg-pistachio-tertiary-300 { background-color: var(--pistachio-tertiary-300); }
	
		.text-pistachio-tertiary-400 { color: var(--pistachio-tertiary-400); }
		.bg-pistachio-tertiary-400 { background-color: var(--pistachio-tertiary-400); }
	
		.text-pistachio-tertiary-500 { color: var(--pistachio-tertiary-500); }
		.bg-pistachio-tertiary-500 { background-color: var(--pistachio-tertiary-500); }
	
		.text-pistachio-tertiary-600 { color: var(--pistachio-tertiary-600); }
		.bg-pistachio-tertiary-600 { background-color: var(--pistachio-tertiary-600); }
	
		.text-pistachio-tertiary-700 { color: var(--pistachio-tertiary-700); }
		.bg-pistachio-tertiary-700 { background-color: var(--pistachio-tertiary-700); }
	
		.text-pistachio-tertiary-800 { color: var(--pistachio-tertiary-800); }
		.bg-pistachio-tertiary-800 { background-color: var(--pistachio-tertiary-800); }
	
		.text-pistachio-tertiary-900 { color: var(--pistachio-tertiary-900); }
		.bg-pistachio-tertiary-900 { background-color: var(--pistachio-tertiary-900); }
	

	
		.text-red-quinary-50 { color: var(--red-quinary-50); }
		.bg-red-quinary-50 { background-color: var(--red-quinary-50); }
	
		.text-red-quinary-100 { color: var(--red-quinary-100); }
		.bg-red-quinary-100 { background-color: var(--red-quinary-100); }
	
		.text-red-quinary-200 { color: var(--red-quinary-200); }
		.bg-red-quinary-200 { background-color: var(--red-quinary-200); }
	
		.text-red-quinary-300 { color: var(--red-quinary-300); }
		.bg-red-quinary-300 { background-color: var(--red-quinary-300); }
	
		.text-red-quinary-400 { color: var(--red-quinary-400); }
		.bg-red-quinary-400 { background-color: var(--red-quinary-400); }
	
		.text-red-quinary-500 { color: var(--red-quinary-500); }
		.bg-red-quinary-500 { background-color: var(--red-quinary-500); }
	
		.text-red-quinary-600 { color: var(--red-quinary-600); }
		.bg-red-quinary-600 { background-color: var(--red-quinary-600); }
	
		.text-red-quinary-700 { color: var(--red-quinary-700); }
		.bg-red-quinary-700 { background-color: var(--red-quinary-700); }
	
		.text-red-quinary-800 { color: var(--red-quinary-800); }
		.bg-red-quinary-800 { background-color: var(--red-quinary-800); }
	
		.text-red-quinary-900 { color: var(--red-quinary-900); }
		.bg-red-quinary-900 { background-color: var(--red-quinary-900); }
	

	
		.text-yellow-quaternary-50 { color: var(--yellow-quaternary-50); }
		.bg-yellow-quaternary-50 { background-color: var(--yellow-quaternary-50); }
	
		.text-yellow-quaternary-100 { color: var(--yellow-quaternary-100); }
		.bg-yellow-quaternary-100 { background-color: var(--yellow-quaternary-100); }
	
		.text-yellow-quaternary-200 { color: var(--yellow-quaternary-200); }
		.bg-yellow-quaternary-200 { background-color: var(--yellow-quaternary-200); }
	
		.text-yellow-quaternary-300 { color: var(--yellow-quaternary-300); }
		.bg-yellow-quaternary-300 { background-color: var(--yellow-quaternary-300); }
	
		.text-yellow-quaternary-400 { color: var(--yellow-quaternary-400); }
		.bg-yellow-quaternary-400 { background-color: var(--yellow-quaternary-400); }
	
		.text-yellow-quaternary-500 { color: var(--yellow-quaternary-500); }
		.bg-yellow-quaternary-500 { background-color: var(--yellow-quaternary-500); }
	
		.text-yellow-quaternary-600 { color: var(--yellow-quaternary-600); }
		.bg-yellow-quaternary-600 { background-color: var(--yellow-quaternary-600); }
	
		.text-yellow-quaternary-700 { color: var(--yellow-quaternary-700); }
		.bg-yellow-quaternary-700 { background-color: var(--yellow-quaternary-700); }
	
		.text-yellow-quaternary-800 { color: var(--yellow-quaternary-800); }
		.bg-yellow-quaternary-800 { background-color: var(--yellow-quaternary-800); }
	
		.text-yellow-quaternary-900 { color: var(--yellow-quaternary-900); }
		.bg-yellow-quaternary-900 { background-color: var(--yellow-quaternary-900); }
	

	
		.text-surface-primary { color: var(--surface-primary); }
		.bg-surface-primary { background-color: var(--surface-primary); }
	
		.text-surface-secondary { color: var(--surface-secondary); }
		.bg-surface-secondary { background-color: var(--surface-secondary); }
	

	
		.text-accent-blue { color: var(--accent-blue); }
		.bg-accent-blue { background-color: var(--accent-blue); }
	
		.text-accent-lavender { color: var(--accent-lavender); }
		.bg-accent-lavender { background-color: var(--accent-lavender); }
	
		.text-accent-pistachio { color: var(--accent-pistachio); }
		.bg-accent-pistachio { background-color: var(--accent-pistachio); }
	
		.text-accent-yellow { color: var(--accent-yellow); }
		.bg-accent-yellow { background-color: var(--accent-yellow); }
	
		.text-accent-red { color: var(--accent-red); }
		.bg-accent-red { background-color: var(--accent-red); }
	

	
		.text-body-primary { color: var(--body-primary); }
		.bg-body-primary { background-color: var(--body-primary); }
	
		.text-body-primary-dark { color: var(--body-primary-dark); }
		.bg-body-primary-dark { background-color: var(--body-primary-dark); }
	

	
		.text-heading-primary { color: var(--heading-primary); }
		.bg-heading-primary { background-color: var(--heading-primary); }
	
		.text-heading-primary-dark { color: var(--heading-primary-dark); }
		.bg-heading-primary-dark { background-color: var(--heading-primary-dark); }
	
		.text-heading-highlight { color: var(--heading-highlight); }
		.bg-heading-highlight { background-color: var(--heading-highlight); }
	



:root {
	--primary-font: 'Lexend Deca';
	--secondary-font: 'Polymath Demo';
	--gilroy-font: 'Gilroy';
	
	
	--font-size-text-xs: 'font-size: 12px; line-height: 150%; letter-spacing: normal;';
	
	--font-size-text-sm: 'font-size: 14px; line-height: 150%; letter-spacing: normal;';
	
	--font-size-text-md: 'font-size: 16px; line-height: 150%; letter-spacing: normal;';
	
	--font-size-text-lg: 'font-size: 18px; line-height: 150%; letter-spacing: normal;';
	
	--font-size-text-xl: 'font-size: 20px; line-height: 150%; letter-spacing: normal;';
	
	
	
	--font-size-display-xs: 'font-size: 24px; line-height: 130%; letter-spacing: -0.48px;';
	
	--font-size-display-sm: 'font-size: 30px; line-height: 125%; letter-spacing: -0.6px;';
	
	--font-size-display-md: 'font-size: 36px; line-height: 120%; letter-spacing: -0.72px;';
	
	--font-size-display-lg: 'font-size: 48px; line-height: 125%; letter-spacing: -0.96px;';
	
	--font-size-display-xl: 'font-size: 60px; line-height: 120%; letter-spacing: -1.2px;';
	
	--font-size-display-2xl: 'font-size: 72px; line-height: 125%; letter-spacing: -1.44px;';
	
	
}



/* Macro call with no prefixes base style classes */




.text-text-xs { font-size: 12px; line-height: 150%; letter-spacing: normal;} 



.text-text-sm { font-size: 14px; line-height: 150%; letter-spacing: normal;} 



.text-text-md { font-size: 16px; line-height: 150%; letter-spacing: normal;} 



.text-text-lg { font-size: 18px; line-height: 150%; letter-spacing: normal;} 



.text-text-xl { font-size: 20px; line-height: 150%; letter-spacing: normal;} 





.text-display-xs { font-size: 24px; line-height: 130%; letter-spacing: -0.48px;} 



.text-display-sm { font-size: 30px; line-height: 125%; letter-spacing: -0.6px;} 



.text-display-md { font-size: 36px; line-height: 120%; letter-spacing: -0.72px;} 



.text-display-lg { font-size: 48px; line-height: 125%; letter-spacing: -0.96px;} 



.text-display-xl { font-size: 60px; line-height: 120%; letter-spacing: -1.2px;} 



.text-display-2xl { font-size: 72px; line-height: 125%; letter-spacing: -1.44px;} 





/* Breakpoint specific classes */
@media screen and (min-width: 640px) { 
	



.sm-text-text-xs { font-size: 12px; line-height: 150%; letter-spacing: normal;} 



.sm-text-text-sm { font-size: 14px; line-height: 150%; letter-spacing: normal;} 



.sm-text-text-md { font-size: 16px; line-height: 150%; letter-spacing: normal;} 



.sm-text-text-lg { font-size: 18px; line-height: 150%; letter-spacing: normal;} 



.sm-text-text-xl { font-size: 20px; line-height: 150%; letter-spacing: normal;} 





.sm-text-display-xs { font-size: 24px; line-height: 130%; letter-spacing: -0.48px;} 



.sm-text-display-sm { font-size: 30px; line-height: 125%; letter-spacing: -0.6px;} 



.sm-text-display-md { font-size: 36px; line-height: 120%; letter-spacing: -0.72px;} 



.sm-text-display-lg { font-size: 48px; line-height: 125%; letter-spacing: -0.96px;} 



.sm-text-display-xl { font-size: 60px; line-height: 120%; letter-spacing: -1.2px;} 



.sm-text-display-2xl { font-size: 72px; line-height: 125%; letter-spacing: -1.44px;} 




}

@media screen and (min-width: 768px) { 
	



.md-text-text-xs { font-size: 12px; line-height: 150%; letter-spacing: normal;} 



.md-text-text-sm { font-size: 14px; line-height: 150%; letter-spacing: normal;} 



.md-text-text-md { font-size: 16px; line-height: 150%; letter-spacing: normal;} 



.md-text-text-lg { font-size: 18px; line-height: 150%; letter-spacing: normal;} 



.md-text-text-xl { font-size: 20px; line-height: 150%; letter-spacing: normal;} 





.md-text-display-xs { font-size: 24px; line-height: 130%; letter-spacing: -0.48px;} 



.md-text-display-sm { font-size: 30px; line-height: 125%; letter-spacing: -0.6px;} 



.md-text-display-md { font-size: 36px; line-height: 120%; letter-spacing: -0.72px;} 



.md-text-display-lg { font-size: 48px; line-height: 125%; letter-spacing: -0.96px;} 



.md-text-display-xl { font-size: 60px; line-height: 120%; letter-spacing: -1.2px;} 



.md-text-display-2xl { font-size: 72px; line-height: 125%; letter-spacing: -1.44px;} 




}

@media screen and (min-width: 1024px) { 
	



.lg-text-text-xs { font-size: 12px; line-height: 150%; letter-spacing: normal;} 



.lg-text-text-sm { font-size: 14px; line-height: 150%; letter-spacing: normal;} 



.lg-text-text-md { font-size: 16px; line-height: 150%; letter-spacing: normal;} 



.lg-text-text-lg { font-size: 18px; line-height: 150%; letter-spacing: normal;} 



.lg-text-text-xl { font-size: 20px; line-height: 150%; letter-spacing: normal;} 





.lg-text-display-xs { font-size: 24px; line-height: 130%; letter-spacing: -0.48px;} 



.lg-text-display-sm { font-size: 30px; line-height: 125%; letter-spacing: -0.6px;} 



.lg-text-display-md { font-size: 36px; line-height: 120%; letter-spacing: -0.72px;} 



.lg-text-display-lg { font-size: 48px; line-height: 125%; letter-spacing: -0.96px;} 



.lg-text-display-xl { font-size: 60px; line-height: 120%; letter-spacing: -1.2px;} 



.lg-text-display-2xl { font-size: 72px; line-height: 125%; letter-spacing: -1.44px;} 




}

@media screen and (min-width: 1280px) { 
	



.xl-text-text-xs { font-size: 12px; line-height: 150%; letter-spacing: normal;} 



.xl-text-text-sm { font-size: 14px; line-height: 150%; letter-spacing: normal;} 



.xl-text-text-md { font-size: 16px; line-height: 150%; letter-spacing: normal;} 



.xl-text-text-lg { font-size: 18px; line-height: 150%; letter-spacing: normal;} 



.xl-text-text-xl { font-size: 20px; line-height: 150%; letter-spacing: normal;} 





.xl-text-display-xs { font-size: 24px; line-height: 130%; letter-spacing: -0.48px;} 



.xl-text-display-sm { font-size: 30px; line-height: 125%; letter-spacing: -0.6px;} 



.xl-text-display-md { font-size: 36px; line-height: 120%; letter-spacing: -0.72px;} 



.xl-text-display-lg { font-size: 48px; line-height: 125%; letter-spacing: -0.96px;} 



.xl-text-display-xl { font-size: 60px; line-height: 120%; letter-spacing: -1.2px;} 



.xl-text-display-2xl { font-size: 72px; line-height: 125%; letter-spacing: -1.44px;} 




}

@media screen and (min-width: 1536px) { 
	



.xxl-text-text-xs { font-size: 12px; line-height: 150%; letter-spacing: normal;} 



.xxl-text-text-sm { font-size: 14px; line-height: 150%; letter-spacing: normal;} 



.xxl-text-text-md { font-size: 16px; line-height: 150%; letter-spacing: normal;} 



.xxl-text-text-lg { font-size: 18px; line-height: 150%; letter-spacing: normal;} 



.xxl-text-text-xl { font-size: 20px; line-height: 150%; letter-spacing: normal;} 





.xxl-text-display-xs { font-size: 24px; line-height: 130%; letter-spacing: -0.48px;} 



.xxl-text-display-sm { font-size: 30px; line-height: 125%; letter-spacing: -0.6px;} 



.xxl-text-display-md { font-size: 36px; line-height: 120%; letter-spacing: -0.72px;} 



.xxl-text-display-lg { font-size: 48px; line-height: 125%; letter-spacing: -0.96px;} 



.xxl-text-display-xl { font-size: 60px; line-height: 120%; letter-spacing: -1.2px;} 



.xxl-text-display-2xl { font-size: 72px; line-height: 125%; letter-spacing: -1.44px;} 




}

/* Font Weights */
.weight-thin,
.thin {
	font-weight: 300;
}

.weight-regular,
.regular {
	font-weight: 400;
}

.weight-medium,
.medium {
	font-weight: 500;
}

.weight-semibold,
.semibold {
	font-weight: 600;
}

.weight-bold,
.bold {
	font-weight: 700;
}

/* 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 {
	color: var(--body-primary, #626366);
	font-family: var(--primary-font);
	font-size: 16px;
	line-height: 150%;
	font-weight: 300;
	overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
	line-break: strict;
	overflow-wrap: normal;
	word-break: break-all;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-primary, #2c3c65);
	font-weight: 500;
	margin: 0 0 1.4rem;
}

h1 {
	font-size: 50px;
	line-height: 120%;
	letter-spacing: -1px;
}

h2 {
	font-size: 33px;
	line-height: 115.152%;
}

h3 {
	font-size: 27px;
	line-height: 140.741%;
}

h4 {
	font-size: 24px;
	line-height: 133.333%;
}

h5 {
	font-size: 20px;
	line-height: 150%;
}

h6 {
	font-size: 16px;
	line-height: 150%;
}

/* Paragraphs */
p {
	margin: 0 0 1.4rem;
}

/* Anchors */
a {
	cursor: pointer;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

p a,
p a:visited,
span a,
span a:visited,
.rich-text a,
.rich-text a:visited {
	color: var(--breeze-blue-primary-600, #00a2e0);
}

/* Code blocks */
pre {
	overflow: auto;
}

code {
	vertical-align: bottom;
}

/* Blockquotes */
blockquote {
	border-left: 2px solid;
	margin: 0 0 1.4rem;
	padding-left: 0.7rem;
}

/* Horizontal rules */
hr {
	border: none;
	border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
	font-size: 0.583rem;
	word-break: normal;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
/* 2024 Form styles */
/* 
* To use, wrap form hubl snippet with a div using the following, .form-container
* 
* Can be updated to include dark-theme items with a .dark-theme override class
* */

:root {
	--fontFamily: var(--primary-font, 'Lexend Deca');
	--labelColor: var(--heading-primary, #2C3C65);
	--inputColor: var(--navy-900, #1a2540);
	--inputBg: var(--cool-gray-100, #f5f6fa);
	--errorBorderColor: var(--red-quinary-300, #F49494);
	--errorColor: var(--red-quinary-500, #ed5f5f);
	--placeholderColor: var(--cool-gray-600, #76777a);
	--emailInputIcon: url('https://2659404.fs1.hubspotusercontent-na1.net/hubfs/2659404/Breezeway%20Marketing%20Site/Icons/envelope.svg');
}

.form-container {
	padding: 32px;
	border-radius: 16px;
	background: var(--white, #FFF);
	box-shadow: 6px 6px 25px 0px rgba(21, 54, 77, 0.15);
}

.form-container form .hs-form-field {
	margin-bottom: 16px;
}

.form-container form label,
.form-container .hs-custom-style .hs-form-required {
	width: max-content;
	color: var(--labelColor) !important;
	font-size: 18px;
	font-weight: 600;
	line-height: 150%;
	padding: 0;
	margin-bottom: 6px;
	font-family: var(--fontFamily) !important;
	text-align: left;
	float: unset;
}

.form-container form .form-columns-1 .input,
.form-container form .form-columns-2 .input,
.form-container .hs-custom-style .input {
	margin-inline: 0 !important;
	border-radius: 4px;
}

.form-container form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url('https://2659404.fs1.hubspotusercontent-na1.net/hubfs/2659404/Breezeway%20Marketing%20Site/Icons/CaretDown.svg') calc(100% - 14px) 50%/16px 16px no-repeat;
}

/* Input styles */
.form-container form .input input:not([type=checkbox]):not([type=radio]) ,
.form-container form select,
.form-container form textarea {
	color: var(--inputColor);
	display: block;
	width: 100% !important;
	min-height: 46px !important;
	font-family: var(--fontFamily) !important;
	font-size: 16px;
	font-weight: 300;
	line-height: 150%;
	letter-spacing: 0em;
	background-color: var(--inputBg);
	padding: 12px 14px;
	border-radius: 8px;
	border: 1px solid var(--cool-gray-300, #E1E2E6);
	transition-property: background-color, box-shadow, border-radius;
	transition-timing-function: ease-in-out;
	transition-duration: 300ms;

	&:hover,
	&:focus,
	&:focus-visible {
		background-color: var(--white, #fff);
		box-shadow: 0 0 0 4px #2885F6;
		outline: unset;
	}
}

.form-container form .hs-fieldtype-intl-phone.hs-input select,
.form-container fieldset.form-columns-1 .hs-fieldtype-intl-phone {
	width: 100% !important;
}

.hs-fieldtype-intl-phone.hs-input::after {
	display: none !important;
}

/* Disabled input styles */
.form-container form .input input[disabled]:not([type=checkbox]):not([type=radio]) ,
.form-container form select[disabled],
.form-container form textarea[disabled] {
	border: 1px solid var(--cool-gray-300, #E1E2E6);
	background: var(--cool-gray-300, #E1E2E6);
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	pointer-events: none;
	user-select: none;
}

.form-container form input::placeholder,
.form-container form select.is-placeholder,
.form-container form textarea::placeholder,
.form-container .hs-custom-style input::placeholder,
.form-container .hs-custom-style select.is-placeholder,
.form-container .hs-custom-style textarea::placeholder{
	color: var(--placeholderColor);
	opacity: 1;
}

/* .form-container form .input input[type="email"] {
	padding-left: 44px !important;
} */

/* .form-container  form .input:has(> input[type="email"]) {
	position: relative; */

	/* 	email icon */
/* 	&:before {
		position: absolute;
		content: '';
		inset: 50% auto auto 12px;
		width: 24px;
		height: 24px;
		background-image: var(--emailInputIcon);
		background-size: contain;
		background-repeat: no-repeat;
		transform: translateY(-50%);
	} */
/* } */

.form-container form textarea {
	resize: vertical;
}

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

/* Inputs - checkbox/radio */
.form-container form .inputs-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.form-container form .inputs-list label {
	font-size: 14px;
	font-weight: 500;
	line-height: 142.857%;
}

.form-container form .inputs-list input,
.form-container form .inputs-list span {
	vertical-align: middle;
	cursor: pointer;
	padding-left: 24px;
}

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

/* Checkboxes Styles */
/* Custom checkbox styles */
.form-container .hs-form-checkbox,
.form-container .hs-form-booleancheckbox,
.form-container .hs-form-radio {
	width: max-content;
	display: block;
	position: relative;
	/* 	padding-left: 24px; */
	margin-bottom: 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
}

/* Hide the browser's default checkbox */
.form-container .hs-form-checkbox input[type=checkbox],
.form-container .hs-form-booleancheckbox input[type=checkbox],
.form-container .hs-form-radio input[type=radio] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 100%;
	height: 100%;
}

/* Create a custom checkbox */
.form-container .hs-form-checkbox:before,
.form-container .hs-form-booleancheckbox:before,
.form-container .hs-form-radio:before {
	position: absolute;
	content: '';
	inset: 17px auto auto 2px;
	height: 16px;
	width: 16px;
	border-radius: 4px;
	border: 1px solid var(--Gray-300, #D0D5DD);
	background: var(--Base-White, #FFF);
	transform: translateY(-50%);
	transition: all .3s ease;
	pointer-events: none;
}

.form-container .hs-form-radio:before {
	border-radius: 8px;
}

/* On hover*/
.form-container .hs-form-checkbox:hover:has(input[type=checkbox]:not([disabled])):before,
.form-container .hs-form-booleancheckbox:hover:has(input[type=checkbox]:not([disabled])):before,
.form-container .hs-form-radio:hover:has(input[type=radio]:not([disabled])):before {
	border-radius: 4px;
	border: 1px solid var(--Breeze-Blue---Primary-500-P, #00ADEF);
	background: var(--Primary-100, #C5DEFD);
}

.form-container .hs-form-radio:hover:has(input[type=radio]:not([disabled])):before {
	border-radius: 8px;
}

/* focus */
.form-container .hs-form-checkbox:has(input[type=checkbox]:focus):before,
.form-container .hs-form-checkbox:has(input[type=checkbox]:focus-visible):before,
.form-container .hs-form-booleancheckbox:has(input[type=checkbox]:focus):before,
.form-container .hs-form-booleancheckbox:has(input[type=checkbox]:focus-visible):before,
.form-container .hs-form-radio:has(input[type=radio]:focus):before,
.form-container .hs-form-radio:has(input[type=radio]:focus-visible):before {
	border: 1px solid var(--Primary-300, #76B1F9);
	background: var(--Base-White, #FFF);
	box-shadow: 0px 0px 0px 4px #F4EBFF;
}

/* When the checkbox is checked */
.form-container .hs-form-checkbox:has(input[type=checkbox]:checked):before,
.form-container .hs-form-booleancheckbox:has(input[type=checkbox]:checked):before,
.form-container .hs-form-radio:has(input[type=radio]:checked):before {
	background: var(--Primary-100, #C5DEFD);
	border: 1px solid var(--Breeze-Blue---Primary-500-P, #00ADEF);
}

/* Create the checkmark/radio indicator (hidden when not checked) */
.form-container .hs-form-checkbox:after,
.form-container .hs-form-booleancheckbox:after {
	display: none;
	position: absolute;
	content: "";
	inset: 12px auto auto 4px;
	width: 12px;
	height: 12px;
	background-image: url('https://2659404.fs1.hubspotusercontent-na1.net/hubfs/2659404/Breezeway%20Marketing%20Site/Icons/check.svg');
	background-repeat: no-repeat;
	pointer-events: none;
}

.form-container .hs-form-radio:after {
	display: none;
	position: absolute;
	content: '';
	inset: 14px auto auto 7px;
	width: 6px;
	height: 6px;
	background-color: var(--breeze-blue-primary-500, #00adef);
	border-radius: 8px;
}

/* Show the checkmark when checked */
.form-container .hs-form-checkbox:has(input[type=checkbox]:checked):after,
.form-container .hs-form-booleancheckbox:has(input[type=checkbox]:checked):after,
.form-container .hs-form-radio:has(input[type=radio]:checked):after{
	display: block;
}

/* Disabled Styles */
.form-container .hs-form-checkbox:has(input[type=checkbox][disabled]),
.form-container .hs-form-booleancheckbox:has(input[type=checkbox][disabled]),
.form-container .hs-form-radio:has(input[type=radio][disabled]) {
	cursor: default;
}

.form-container .hs-form-checkbox:has(input[type=checkbox][disabled]):before,
.form-container .hs-form-booleancheckbox:has(input[type=checkbox][disabled]):before,
.form-container .hs-form-radio:has(input[type=radio][disabled]):before {
	pointer-events: none;
	border-radius: 4px;
	border: 1px solid var(--Gray-300, #D0D5DD);
	background: var(--Gray-100, #F2F4F7);
}

.form-container .hs-form-checkbox:has(input[type=checkbox][disabled]):after,
.form-container .hs-form-booleancheckbox:has(input[type=checkbox][disabled]):after,
.form-container .hs-form-radio:has(input[type=radio][disabled]):after{
	background-image: url('https://2659404.fs1.hubspotusercontent-na1.net/hubfs/2659404/Breezeway%20Marketing%20Site/Icons/check-disabled.svg');
}

/* Help Text */
.form-container legend {
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%;
	margin-bottom: 6px;
}

/* Error styles */
.form-container .hs-input.invalid.error {
	border-color: var(--errorBorderColor) !important;
	background-color: rgba(255, 132, 105, 0.3);
}

.form-container form .hs-error-msgs {
	margin: 0 !important;
	padding-left: 0 !important;
}

.form-container form .hs-error-msgs li {
	background-image: unset !important;
	padding: 0 !important;
	margin: 0 !important;
}

.form-container form .hs-error-msgs li label {
	color: var(--errorColor) !important;
	font-size: 14px !important;
	font-weight: 300;
	margin-top: 6px;
	margin-bottom: 0;
}

/* Consent message */
.form-container .hs-richtext  {
	font-size: 12px !important;
	font-weight: 400;
	line-height: 24px !important;
	margin-bottom: 20px !important;
}

.form-container .hs-richtext a {
	font-weight: 500;
}

.form-container form .actions {
	padding: 0;
	margin: 0;
}

.form-container form input[type="submit"],
.form-container .hs-custom-style input[type="submit"] {
	all: unset;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 6px;
	width: 100%;
	text-align: center;
	cursor: pointer;
	font-size: 16px !important;
	font-weight: 600;
	line-height: 150% !important;
	font-family: var(--fontFamily) !important;
	transition: all 0.3s ease;
	color: var(--white, #fff);
	background: var(--navy-500, #2C3C65);
	border: 1px solid var(--navy-900, #1A2540);
	padding: 7px 24px;
	border-radius: 8px;
	white-space: normal;

	&:hover,
	&:focus,
	&:focus-visible {
		background: var(--breeze-blue-primary-700, #007CAD) !important;
	}
}

/* Captcha */
.grecaptcha-badge {
	margin: 0 auto;
}




/* 	custom hubspot form breakpoint */
@media screen and (min-width: 481px) {
	.form-container form .form-columns-2 .hs-form-field:first-child .input {
		margin-right: 16px !important;
	}
}

@media screen and (min-width: 768px) {
	.form-container form .actions {
		display: flex;
		justify-content: flex-start;
	}

	.form-container form input[type="submit"] {
		width: max-content;
	}
}
/* 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;
}

.shadow-xs {
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.shadow-sm {
	box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
}

.shadow-md {
	box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
}

.shadow-lg {
	box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.shadow-xl {
	box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}

.shadow-2xl {
	box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
}

.shadow-3xl {
  box-shadow: 0px 32px 64px -12px rgba(16, 24, 40, 0.14);
}


.blur-sm {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.blur-md {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.blur-lg {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.blur-xl {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
button,
.button,
.hs-button {
	cursor: pointer;
	display: inline-block;
	text-align: center;
	transition: all 0.15s linear;
	white-space: normal;
}

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


/* Breezeway DS CTA styles */
.btn-primary,
.btn-primary-dark,
.btn-primary-atf,
.btn-secondary,
.btn-secondary-dark,
.btn-tertiary,
.btn-link,
.btn-link-dark {
	all: unset;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 6px;
	width: 100%;
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover,
.btn-primary-dark:hover,
.btn-primary-atf:hover,
.btn-secondary:hover,
.btn-secondary-dark:hover,
.btn-tertiary:hover,
.btn-link:hover,
.btn-link-dark:hover {
	text-decoration: none;
}

/* For svg/path fill */
.btn-primary *,
.btn-primary-dark *,
.btn-secondary *,
.btn-secondary-dark *,
.btn-tertiary *,
.btn-link *,
.btn-link-dark * {
	fill: currentColor;
}

.btn-primary,
.btn-primary-dark,
.btn-primary-atf,
.btn-secondary,
.btn-secondary-dark,
.btn-tertiary {
	padding: 7px 24px;
	border-radius: 8px;
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary-dark.disabled,
.btn-primary-dark:disabled,
.btn-primary-atf.disabled,
.btn-primary-atf:disabled,
.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-secondary-dark.disabled,
.btn-secondary-dark:disabled,
.btn-tertiary.disabled,
.btn-tertiary:disabled,
.btn-link.disabled,
.btn-link:disabled,
.btn-link-dark.disabled,
.btn-link-dark:disabled {
	pointer-events: none;
	cursor: default;
	opacity: 0.4;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Old versions of Firefox */
	user-select: none; /* Non-prefixed version, currently
	supported by Chrome, Edge, Opera and Firefox */
}

/* Primary */
.btn-primary {
	color: var(--white, #fff);
	background-color: var(--navy-500, #2C3C65);
	border: 1px solid var(--navy-900, #1A2540);
}
[data-theme='dark'] .btn-primary {
  border-color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
	background-color: var(--breeze-blue-primary-700, #007CAD);
}

/* Primary Dark */
.btn-primary-dark {
	color: var(--white, #fff);
	background-color: var(--navy-500, #2C3C65);
	border: 1px solid var(--white, #fff);
}

.btn-primary-dark:hover,
.btn-primary-dark:focus,
.btn-primary-dark:focus-visible {
	background-color: var(--breeze-blue-primary-700, #007CAD);
}

/* Primary ATF */
.btn-primary-atf {
	column-gap: 16px;
	color: var(--white, #fff);
	background-color: var(--navy-500, #2C3C65);
	border: 1px solid var(--navy-900, #1A2540);
	position: relative;
}

.btn-primary-atf:hover,
.btn-primary-atf:focus,
.btn-primary-atf:focus-visible {
	background-color: var(--breeze-blue-primary-700, #007CAD);
}

.primary-atf-chevron {
	display: none;
}

.btn-primary-atf .btn-label {
	isolation: isolate;
}

/* Secondary */
.btn-secondary {
	color: var(--navy-900, #1A2540);
	border: 1px solid var(--navy-900, #1A2540);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible {
	color: var(--white, #fff);
	background-color: var(--breeze-blue-primary-700, #007CAD);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
	padding: 6px 24px;
	border: 1px solid var(--navy-500, #2C3C65);
}

/* Secondary Dark */
.btn-secondary-dark {
	color: var(--white, #fff);
	border: 1px solid var(--white, #fff);
}

.btn-secondary-dark:hover,
.btn-secondary-dark:focus,
.btn-secondary-dark:focus-visible {
	background-color: var(--breeze-blue-primary-700, #007CAD);
	border-color: var(--breeze-blue-primary-700, #007CAD);
}

/* Tertiary */
.btn-tertiary {
	color: var(--white, #fff);
	background-color: var(--breeze-blue-primary-600, #00A2E0);
}

.btn-tertiary:hover,
.btn-tertiary:focus,
.btn-tertiary:focus-visible {
	background-color: var(--breeze-blue-primary-700, #007CAD);
}

.btn-tertiary.disabled,
.btn-tertiary:disabled {
	padding: 6px 24px;
	background-color: var(--navy-500, #2C3C65);
	border: 1px solid var(--navy-500, #2C3C65);
}

/* Button Link */
.btn-link {
	color: var(--navy-500, #2C3C65);
}

.btn-link:hover,
.btn-link:focus,
.btn-link:focus-visible {
	color: var(--breeze-blue-primary-700, #007CAD);
}

/* Button Link Dark */
.btn-link-dark {
	color: var(--white, #fff);
}

.btn-link-dark:hover,
.btn-link-dark:focus,
.btn-link-dark:focus-visible {
	color: var(--breeze-blue-primary-500, #00ADEF);
}

/* Button Icons */
.btn-icon {
	font-size: 20px;
}

@media screen and  (min-width: 768px) {
	.btn-primary,
	.btn-secondary,
	.btn-secondary-dark,
	.btn-tertiary,
	.btn-link,
	.btn-link-dark {
		width: max-content;
	}

	/* Primary ATF, hover action */
	.btn-primary-atf {
		padding: 6px 16px 6px 6px;
		border-radius: 12px;
	}

	.btn-primary-atf:hover,
	.btn-primary-atf:focus,
	.btn-primary-atf:focus-visible {
		background-color: var(--navy-500, #2C3C65);
	}

	.btn-primary-atf:before {
		position: absolute;
		content: '';
		inset: 5px auto auto 6px;
		width: 28px;
		height: 28px;
		background-color: var(--breeze-blue-primary-500,#00adef);
		border-radius: 8px;
		transition: width .2s ease;
	}

	.btn-primary-atf:hover::before,
	.btn-primary-atf:focus::before,
	.btn-primary-atf:focus-visible::before {
		width: calc(100% - 12px);
	}

	.primary-atf-chevron {
		display: flex;
		padding: 5px 0 5px 11px;
		border-radius: 8px;
		isolation: isolate;
		transition: transform .2s ease;
	}

	.btn-primary-atf:hover .primary-atf-chevron,
	.btn-primary-atf:focus .primary-atf-chevron,
	.btn-primary-atf:focus-visible .primary-atf-chevron {
		transform: translateX(5px);
	}
}
/* @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    */
/*****************************************/
/* Lists */

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

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

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

.rich-text ul,
.rich-text ol {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0 0 1.4rem;
}

.rich-text ul {
	list-style: none;
	padding: 0;
}

.rich-text ol {
	padding-left: 25px;
}

.rich-text ul li,
.rich-text ol li {
	color: var(--heading-primary, #2C3C65);
	font-weight: 600;
	padding-left: 32px;
}

[data-theme="dark"] ul li,
[data-theme="dark"] ol li {
	color: var(--white, #fff);
}

.rich-text ul li {
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	position: relative;
}

.rich-text ol li {
	padding-left: 8px;
}

.rich-text ul li:before {
	background-color: var(--breeze-blue-primary-200, #8DDFFF);
	border-radius: 4px;
	content: "";
	display: block;
	height: 16px;
	left: 4px;
	position: absolute;
	top: 4px;
	width: 16px;
}

.rich-text .li-desc > * {
	margin-bottom: 0;
}
.isolate {
	isolation: isolate;
}

.uppercase {
	text-transform: uppercase;
}

.line-clamp-1	{
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.line-clamp-2	{
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.line-clamp-3	{
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.line-clamp-4	{
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}


.section.light-theme,
.section[data-theme='light'] {
	background-color: var(--white, #fff);
}

.section.dark-theme,
.section[data-theme='dark'] {
	background-color: var(--navy-900, #1A2540);
}

.section.surface-theme,
.section[data-theme='surface'] {
	background-color: var(--surface-secondary, #F5F6FA);
}



.dark-theme .text-surface-primary,
[data-theme='dark'] .text-surface-primary {
	color : var(--navy-900);
}

.dark-theme .bg-surface-primary,
[data-theme='dark'] .bg-surface-primary {
	background-color : var(--navy-900);
}

.dark-theme .text-surface-secondary,
[data-theme='dark'] .text-surface-secondary {
	color : var(--navy-500);
}

.dark-theme .bg-surface-secondary,
[data-theme='dark'] .bg-surface-secondary {
	background-color : var(--navy-500);
}


.dark-theme .text-body-primary,
[data-theme='dark'] .text-body-primary {
	color: var(--cool-gray-300);
}

.dark-theme .bg-body-primary,
[data-theme='dark'] .bg-body-primary {
	background-color: var(--cool-gray-300);
}

.dark-theme .text-heading-primary,
[data-theme='dark'] .text-heading-primary {
	color: var(--white);
}

.dark-theme .bg-heading-primary,
[data-theme="dark"] .bg-heading-primary {
	background-color: var(--white);
}




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

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}




.header__search .hs-search-field__input {
  
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-position: center right 15px;
    background-repeat: no-repeat;
  
  height: 45px;
  padding: 0 0.7rem;
}




.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}
/* The video Modal */
.d-none {
  display: none;
}
.video-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}

/* Modal Content/Box */
.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 1200px;
  max-width: 80%;
  position: relative;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.video-content {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.iframe-scaler {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Close Button */
.close-button {
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.close-button:hover,
.close-button:focus {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
}
/****/
/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
  
  .modal-content {
    max-width: 100%;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}



/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}