/* ========================================================================================================================
													Fonts Reference
======================================================================================================================== */

/*
Futura PT Light
font-family: "futura-pt", sans-serif;
font-weight: 300;
font-style: normal;

Futura PT Light Oblique
font-family: "futura-pt", sans-serif;
font-weight: 300;
font-style: italic;

Futura PT Book
font-family: "futura-pt", sans-serif;
font-weight: 400;
font-style: normal;

Futura PT Book Oblique
font-family: "futura-pt", sans-serif;
font-weight: 400;
font-style: italic;

Futura PT Medium
font-family: "futura-pt", sans-serif;
font-weight: 500;
font-style: normal;

Futura PT Medium Oblique
font-family: "futura-pt", sans-serif;
font-weight: 500;
font-style: italic;

Futura PT Demi
font-family: "futura-pt", sans-serif;
font-weight: 600;
font-style: normal;

Futura PT Demi Oblique
font-family: "futura-pt", sans-serif;
font-weight: 600;
font-style: italic;

Futura PT Heavy
font-family: "futura-pt", sans-serif;
font-weight: 700;
font-style: normal;

Futura PT Heavy Oblique
font-family: "futura-pt", sans-serif;
font-weight: 700;
font-style: italic;

Futura PT Extra Bold
font-family: "futura-pt", sans-serif;
font-weight: 800;
font-style: normal;

Futura PT Extra Bold Oblique
font-family: "futura-pt", sans-serif;
font-weight: 800;
font-style: italic;

Futura PT Bold
font-family: "futura-pt-bold", sans-serif;
font-weight: 700;
font-style: normal;

Futura PT Bold Oblique
font-family: "futura-pt-bold", sans-serif;
font-weight: 700;
font-style: italic;

Source Sans Pro ExtraLight
font-family: "source-sans-pro", sans-serif;
font-weight: 200;
font-style: normal;

Source Sans Pro ExtraLight Italic
font-family: "source-sans-pro", sans-serif;
font-weight: 200;
font-style: italic;

Source Sans Pro Light
font-family: "source-sans-pro", sans-serif;
font-weight: 300;
font-style: normal;

Source Sans Pro Light Italic
font-family: "source-sans-pro", sans-serif;
font-weight: 300;
font-style: italic;

Source Sans Pro Regular
font-family: "source-sans-pro", sans-serif;
font-weight: 400;
font-style: normal;

Source Sans Pro Italic
font-family: "source-sans-pro", sans-serif;
font-weight: 400;
font-style: italic;

Source Sans Pro Semibold
font-family: "source-sans-pro", sans-serif;
font-weight: 600;
font-style: normal;

Source Sans Pro Semibold Italic
font-family: "source-sans-pro", sans-serif;
font-weight: 600;
font-style: italic;

Source Sans Pro Bold
font-family: "source-sans-pro", sans-serif;
font-weight: 700;
font-style: normal;

Source Sans Pro Bold Italic
font-family: "source-sans-pro", sans-serif;
font-weight: 700;
font-style: italic;

Source Sans Pro Black
font-family: "source-sans-pro", sans-serif;
font-weight: 900;
font-style: normal;

Source Sans Pro Black Italic
font-family: "source-sans-pro", sans-serif;
font-weight: 900;
font-style: italic;

*/

/* ========================================================================================================================
													General Styles
======================================================================================================================== */

.skip-to-content {
    padding: 10px !important;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s;
}
.skip-to-content:focus-visible {
    transform: translateX(5%);
}

html,
body {
	height: 100%;
}

body {
	font-family: "source-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 18px;
	line-height: 1.5;
	color: #263244;
	background-color: #fff;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

/*img[src*=svg] {
	width: 100%;
}*/

strong,
b {
    font-weight: 600;
}

a {
	color: #0075E4;
	text-decoration: none;
	-webkit-transition: color 200ms ease-in-out;
	transition: color 200ms ease-in-out;
}
a.dark-link {
    color: #12162E;
}
a:hover,
a:active {
	color: #0A208B;
	text-decoration: underline;
}
a.dark-link:hover,
a.dark-link:active {
    color: #0075E4;
}
a:focus-visible {
  outline: 1px solid #0075E4;
  outline-offset: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 4px;
}

h1,
.h1 {
	font-size: 36px;
	font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
	line-height: 1.2;
	color: #12162e;
	margin: 20px 0;
}
h2,
.h2 {
	font-size: 32px;
	font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
	line-height: 1.25;
	color: #12162e;
	margin: 20px 0;
}
h3,
.h3 {
	font-size: 28px;
	font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
	line-height: 1.3;
	color: #12162e;
	margin: 20px 0;
}
h4,
.h4 {
	font-size: 24px;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
	line-height: 1.35;
	color: #12162e;
	margin: 20px 0;
}
h5,
.h5 {
	font-size: 20px;
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
	line-height: 1.4;
	color: #12162e;
	margin: 20px 0;
}
h6,
.h6 {
	font-size: 18px;
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
	line-height: 1.3;
	color: #12162e;
	margin: 20px 0 2px;
}
.display-large {
    font-size: 40px;
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;  
    line-height: 1.1;
    color: #12162e;
}

p {
	font-family: "source-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 18px;
	line-height: 1.5;
	margin: 10px 0 20px;
}

@media (min-width: 768px) {

h1,
.h1 {
	font-size: 40px;
	line-height: 1.2;
}
h2,
.h2 {
	font-size: 36px;
	line-height: 1.2;
}
h3,
.h3 {
	font-size: 32px;
	line-height: 1.25;
}
h4,
.h4 {
	font-size: 28px;
	line-height: 1.3;
}
h5,
.h5 {
	font-size: 24px;
	line-height: 1.35;
}
h6,
.h6 {
	font-size: 20px;
	line-height: 1.3;
}    
.display-large {
    font-size: 52px;
}    
    
}

.text-lg,
.text-lg * {
	font-size: 20px;
    line-height: 1.55;
}
.text-sm,
.text-sm * {
	font-size: 16px;
    line-height: 1.4;
}
.text-xs,
.text-xs * {
    font-size: 12px;
    line-height: 1.6;
}
.text-overline {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.text-spaced-out {
    font-size: 24px;
    letter-spacing: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1em;
    color: #0075e4;
  text-align: center;
}

.text-quote-wrapper {
  width: 100%;
  max-width: 1000px;
  min-width: 4000px;
  position: realtive;
}

.text-quote-attribute {
  margin: 2% 6% 6% 0; 
  text-align: right;
}

.text-quote {
  font-family: futura-pt, sans-serif;
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 600;
  text-shadow: #000000 1px 1px 0px;
  color: #ffffff;
}

.text-quote-author {
  font-size: 24px;
  line-height: 0.8em;
  font-weight: 800;
  color: #ecd98d;
  text-align: right;
}

.text-quote-org {
  margin-top: -1%;
  font-size: 18px;
  line-height: 0.9em;
  font-weight: 400;
  color: #ecd98d;
  text-align: right;
}

.line-tight,
.line-tight * {
  text-align: center;
    line-height: 1;
  color: #263244;
  margin: 0;
}

ul {
	font-size: 18px;
	line-height: 1.5;
	margin: 20px 0 0;
    list-style-type: square;
    padding-left: 30px;
}
ul ul,
ul ol {
		margin-top: 5px;
  margin-left: -15px;
	}	

ul li {
  color: #000; /* text color */
  position: relative;
	margin-left: 20px;
}

ul li::marker {
  color: #0075e4; /* bullet color */
}	

ul > li {
  padding-bottom: 10px;}
	
ul.checkmark-list,
.checkmark-lists ul {
    list-style: none;
    padding-left: 0;
}
 
ul.checkmark-list > li,
	.checkmark-lists ul > li {
		padding-left: 30px; padding-bottom: 10px;
}
ul.checkmark-list > li:before,
	.checkmark-lists ul > li:before {
		font-family: "Font Awesome 6 Pro";
		font-weight: 400;
		content:"\f00c";
		font-size: 18px;
		line-height: 1.2;
		margin-left: -25px;
		margin-right: 10px;
		width: auto;
		height: auto;
		color: #0075E4;
		background-color: transparent;
	}
	
ol {
	font-size: 18px;
	line-height: 1.6;
	margin: 20px 0 0;
	counter-reset: item;
	list-style-type: none;
	position: relative;
	padding-left: 0;
}	
ol > li {
		padding-left: 60px; padding-bottom: 10px;
	}
ol > li:before {
		color: #0075E4;
		content: counter(item) ". ";
        counter-increment: item;
		/*left: 0;
		position: absolute;*/
		margin-left: -30px;
		margin-right: 4px;
		font-size: 18px;
		line-height: 1.6;
}
	ol ol,
	ol ul {
		margin-top: 5px;
	}
    ol ol {
        margin-left: -20px;
    }

blockquote {
    position: relative;
	font-size: 18px;
	line-height: 1.6;
	margin: 20px 1em 20px 3em;
	padding: 0 0 0 20px;
    color: #263244;
}
blockquote:before {
    content: "";
    position: absolute;
    left:0;
    top:0;
    display: block;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0075E4 0%, #0A208B 100%);
}

hr {
	background-color: #94a3b8;
	border: 0;
	height: 1px;
	margin: 20px 0;
}



/* Content Tight / Scrunch
---------------------------------------- */

.content-tight h1,
.content-tight h2,
.content-tight h3,
.content-tight h4,
.content-tight h5,
.content-tight h6,
.content-tight p,
.content-tight ul,
.content-tight ol,
.content-tight blockquote,
.content-tight hr,
h1.content-tight,
h2.content-tight,
h3.content-tight,
h4.content-tight,
h5.content-tight,
h6.content-tight,
p.content-tight,
ul.content-tight,
ol.content-tight,
blockquote.content-tight,
hr.content-tight {
	margin: 10px 0;
}

.content-scrunch h1,
.content-scrunch h2,
.content-scrunch h3,
.content-scrunch h4,
.content-scrunch h5,
.content-scrunch h6,
.content-scrunch p,
.content-scrunch ul,
.content-scrunch ol,
.content-scrunch blockquote,
.content-scrunch hr {
	margin: 0;
}

.scrunch {
	margin: 0 !important;
}
.scrunch-top {
	margin-top: 0 !important;
}
.scrunch-bottom {
	margin-bottom: 0 !important;
}
.scrunch-top-first-child :first-child {
	margin-top: 0 !important;
}
.scrunch-bottom-last-child :last-child {
	margin-bottom: 0 !important;
}




/* Content Inverse
---------------------------------------- */

.content-inverse h1,
.content-inverse h2,
.content-inverse h3,
.content-inverse h4,
.content-inverse h5,
.content-inverse h6,
.content-inverse p,
.content-inverse ul,
.content-inverse ol,
.content-inverse blockquote,
.content-inverse hr,
.content-inverse * {
	color: #FFF;
}

/* Links Inverse
---------------------------------------- */

.links-inverse a {
	color: #FFF;
	text-decoration: none;
}
.links-inverse a:hover,
.links-inverse a:active {
	color: #FFF;
	text-decoration: underline;
}
.links-inverse a:focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 4px;
}



/* Text Colors
---------------------------------------- */

.text-fff {
	color: #FFF;
}
.text-94A3B8 {
    color: #94A3B8;
}
.text-12162E {
    color: #12162E;
}

.text-barbuda {
	color: #0075E4;
}
.text-raspberry-popsicle {
    color: #00D8FF;
}
.text-atlantic {
 color: #0A208B;   
}
.text-goldenrod {
    color: #E3C026;
}

/* Link Colors
---------------------------------------- */

a.black-link {
	color: #000;
	text-decoration: none;
}
a.black-link:hover,
a.black-link:active,
a.black-link:focus-visible {
	color: #000;
	text-decoration: underline;
}




/* Backgrounds
---------------------------------------- */

.bg-cover {
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.bg-light-blue-gradient {
    background: linear-gradient(90deg, rgba(0, 117, 228, 0.05) 0%, rgba(0, 117, 228, 0.01) 100%);
}

.bg-fff {
	background-color: #FFF;
}
.bg-12162E {
    background-color: #12162E;
}
.bg-F8FAFC {
    background-color: #F8FAFC;
}


/* Borders
---------------------------------------- */

.border-radius-4 {
    border-radius: 4px;
}
.border-radius-8 {
    border-radius: 8px;
}
.border-radius-10 {
    border-radius: 10px;
}

.border-0075E4 {
    border:solid 2px #0075E4;
}

/* Image Sizes
---------------------------------------- */

.image-object-fit {
	-o-object-fit: cover !important;
	object-fit: cover !important;
	object-position: center center;
	width: 100%;
	height: 100%;
}

.image-center {
	margin: 0 auto;
}
.image-full {
	width: 100%;
}
.image-xs {
	max-width: 50px;
}
.image-sm {
	max-width: 100px;
}
.image-md {
	max-width: 150px;
}
.image-lg {
	max-width: 200px;
}







/* ========================================================================================================================
														Bootstrap Forms
======================================================================================================================== */

input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

.form-label {
	font-size: 18px;
	font-weight: 400;
	color: #0f172a;
}
.form-control,
.form-select {
	color: #0f172a;
	background-color: transparent;
	border: 1px solid #cbd5e1 !important;
	border-radius: 10px;
	background-image: none !important;
	padding-right: 12px !important;
	box-shadow: none !important;
}
.form-control:focus-visible,
.form-select:focus-visible {
	border: 1px solid #6345f2 !important;
	outline: 4px solid rgba(99, 69, 242, 0.3);
	outline-offset: 0;
}
.form-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
.form-check {
	line-height: 1.5;
}
.form-check-label {
	font-size: 18px;
	font-weight: 400;
	color: #0f172a !important;
}
.form-check-input {
	border-color: #cbd5e1 !important;
	box-shadow: none !important;
}
.form-check-input[type=checkbox] {
	border-radius: 4px;
}
.form-check-input:checked {
	background-color: #6345f2 !important;
	border-color: #6345f2 !important;
	outline: 4px solid rgba(99, 69, 242, 0.3);
	outline-offset: 0;
}
.invalid-feedback {
	font-size: 14px;
	color: #D62246;
}



/* ========================================================================================================================
														HubSpot Forms
======================================================================================================================== */

form.hs-form {
	margin: 20px 0;
}
form.hs-form label {
	font-size: 18px;
	font-weight: 400;
}
form.hs-form .hs-form-field > label {
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	color: #12162E;
}

form.hs-form input[type="text"],
form.hs-form input[type="email"],
form.hs-form input[type="password"],
form.hs-form input[type="tel"],
form.hs-form input[type="number"],
form.hs-form input[type="file"],
form.hs-form select,
form.hs-form textarea {
	display: block;
	width: 100% !important;
	min-height: unset;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	background-clip: padding-box;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	color: #263244;
	background-color: transparent;
	border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #12162E;
	padding: 15px 0 5px 0 !important;
    height: unset !important;
}
/* Content Inverse */
.content-inverse form.hs-form input[type="text"],
.content-inverse form.hs-form input[type="email"],
.content-inverse form.hs-form input[type="password"],
.content-inverse form.hs-form input[type="tel"],
.content-inverse form.hs-form input[type="number"],
.content-inverse form.hs-form input[type="file"],
.content-inverse form.hs-form select,
.content-inverse form.hs-form textarea {
    color: #94A3B8;
    border-bottom-color: #ffffff;
}
form.hs-form textarea {
	min-height: 200px;
}

form.hs-form select {
	-moz-padding-start: calc(0.75rem - 3px);
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
}

form.hs-form input[type="checkbox"],
form.hs-form input[type="radio"] {
	width: 1em !important;
	height: 1em !important;
	margin-top: 0.25em;
	margin-right: 10px;
	vertical-align: top;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 1px solid #adb5bd;
	border-radius: 0.25rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
	cursor: pointer;
}
form.hs-form input[type="radio"] {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
	border-radius: 50%;
}
form.hs-form input[type="checkbox"]:checked,
form.hs-form input[type="radio"]:checked {
	background-color: #e3c026;
	border-color: #e3c026;
}

form.hs-form input[type="text"]:focus,
form.hs-form input[type="email"]:focus,
form.hs-form input[type="password"]:focus,
form.hs-form input[type="tel"]:focus,
form.hs-form input[type="number"]:focus,
form.hs-form input[type="file"]:focus,
form.hs-form select:focus,
form.hs-form textarea:focus {
	outline: none;
	outline-offset: 0;
    border-radius: 0px;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #0075E4 !important;
}

form.hs-form input[type="checkbox"]:focus,
form.hs-form input[type="radio"]:focus {
    outline: none;
	outline-offset: 0;
    border-color: #0075E4 !important;
}

/* Submit button
---------------------------------------- */

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

form.hs-form .hs-button {
	display: inline-block;
	margin: 0;
	text-align: center;
	vertical-align: middle;
	transition: all 100ms ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
    
    border-radius: 4px;
    padding: 12px 40px 12px 30px;
    border: none;
    font-family: "source-sans-pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: #12162E;
    background-color: #E3C026;
}
form.hs-form .hs-button:hover,
form.hs-form .hs-button:active {
    color: #12162E;
	text-decoration: none;
	background-color: #6345f2;
    box-shadow: none;
    
    background-color: #F0D93F !important;
	text-decoration: none;
}
form.hs-form .hs-button:focus-visible {
    background-color: #E3C026;
    text-decoration: none;
	outline: 1px solid #0075E4;
	outline-offset: 2px; 
	box-shadow: none; 
}







/* Submit button arrow
---------------------------------------- */

form.hs-form .hs-submit::after {
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	color: #12162E;
	content: "\f061";
	font-size: 80%;
	line-height: 1;
	margin-left: 8px;
	margin-top: -6px;
	transition: transform 100ms ease-in-out;
	animation-direction: alternate;
}
form.hs-form .hs-submit:hover::after,
form.hs-form .hs-submit:active::after,
form.hs-form .hs-submit:focus-visible::after {
	animation-name: slide-forward;
	animation-iteration-count: 2;
	animation-direction: alternate;
	animation-duration: 200ms;
}



/* Errors
---------------------------------------- */

form.hs-form .hs-form-required {
	color: #FF0000;
}
form.hs-form .hs-input.invalid.error {
	border-color: #FF0000;
}
form.hs-form .hs-error-msg,
form.hs-form .hs-error-msgs {
	font-size: 14px;
	color: #FF0000;
	margin-top: 5px;
}


/* GDPR
---------------------------------------- */

form.hs-form .hs-gdpr_checkbox .hs-form-required {
	display: none;
}
form.hs-form .legal-consent-container * {
	font-size: 14px;
}

/* Content Inverse */
.content-inverse form.hs-form .legal-consent-container * {
    color: #F8FAFC;
}


/* Datepicker
---------------------------------------- */

form.hs-form .hs-dateinput {
	position: relative;
}
form.hs-form .hs-dateinput:before {
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	content: "\f073";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}


/* Filepicker
---------------------------------------- */

form.hs-form input[type="file"] {
	background-color: transparent;
	border: initial;
	padding: initial;
}


/* Undo list styles
---------------------------------------- */

form.hs-form  ul,
form.hs-form  ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
	form.hs-form  ul > li,
	form.hs-form  ol > li {
		padding: 0;
		margin: 0;
	}
	form.hs-form  ul > li::before,
	form.hs-form  ol > li::before {
		display: none;
	}


/* Alignment
---------------------------------------- */

form.hs-form fieldset {
	max-width: 100% !important;
}
form.hs-form .hs-richtext {
	margin: 0 0 10px 0;
}
form.hs-form .hs-form-field {
	position: relative;
	margin-bottom: 20px;
}
form.hs-form label {
	display: block;
}
form.hs-form fieldset .input {
	margin-right: 0 !important;
}
form.hs-form .legal-consent-container {
	margin-bottom: 10px;
}
form.hs-form fieldset.form-columns-2 .hs-form-field,
form.hs-form fieldset.form-columns-3 .hs-form-field {
	width: 100%;
}

@media (min-width: 992px) {
 
	form.hs-form fieldset .hs-form-field {
		padding-right: 10px;
	}
	form.hs-form fieldset .hs-form-field:last-child {
		padding-right: 0;
	}
	form.hs-form fieldset.form-columns-2 .hs-form-field {
		width: 50%;
	}

}

@media (min-width: 1200px) {
 
	form.hs-form fieldset.form-columns-3 .hs-form-field {
		width: 33.33333%;
	}

}


/* Form Horizontal
---------------------------------------- */


.form-horizontal form.hs-form .hs-submit {
    width: 91px;
}
.form-horizontal form.hs-form .hs-submit:after {
    font-size: 10px;
    right: 15px
}
.form-horizontal form.hs-form .hs-button {
    padding: 8px 25px 8px 15px;
    font-size: 14px;
    width: 100%;
}

@media (min-width: 768px) {

.form-horizontal form {
display: grid;
grid-template-columns: auto 91px;
grid-template-rows: max-content;
grid-column-gap: 30px;
grid-row-gap: 0px;
}

.form-horizontal form .hs-email { grid-area: 1 / 1 / 2 / 2; }
.form-horizontal form .legal-consent-container { grid-area: 2 / 1 / 3 / 3; }
.form-horizontal form .hs_submit { grid-area: 1 / 2 / 2 / 3; }

.form-horizontal form .hs_submit {
    margin-top: 0;
    height: 37px;
}
.form-horizontal form.hs-form .hs-button {
    margin-top: 0;
}

}


/* System Form 
---------------------------------------- */

.system-template-form.comm-preferences form .item {
    padding: 20px;
    border-radius: 4px;
    background-color: #ffffff;
    border: solid 1px #94A3B8;
    margin-bottom: 10px;
}
.system-template-form.comm-preferences form .item span {
    font-weight: 600;
}
.system-template-form.comm-preferences form .item p {
    margin: 0;
}
.system-template-form.password-prompt-form input[type="password"] {
    margin-bottom: 10px;
}


/* ========================================================================================================================
														Buttons
======================================================================================================================== */




.btn {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
    padding: 12px 30px;
    border: none;
    font-family: "source-sans-pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: #12162E;
}
.btn:hover,
.btn:focus-visible,
.btn:active,
.btn:active:hover,
.btn:active:focus-visible {
	box-shadow: none;
}
.btn:focus-visible {
    color: #12162E;
    text-decoration: none;
	outline: 1px solid #0075E4;
	outline-offset: 2px; 
	box-shadow: none;    
}

/* Button Sizes
---------------------------------------- */
.btn-xs {
    padding: 4px 16px;
    font-size: 12px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}



/* Button Colors
---------------------------------------- */

.btn-yellow {
	background-color: #E3C026;
}
.btn-yellow:hover,
.btn-yellow:active,
.btn-yellow:active:hover,
.btn-yellow:active:focus-visible {
	background-color: #F0D93F !important;
	text-decoration: none;
}
.btn-yellow:focus-visible {
    background-color: #E3C026;
}

.btn-outline {
	background-color: #F8FAFC;
    border: solid 1px #94A3B8;
    color: #263244 !important;
}
.btn-outline:hover,
.btn-outline:active,
.btn-outline:active:hover,
.btn-outline:active:focus-visible,
.btn-outline.active {
	background-color: #E2E8F0 !important;
    border-color: #0075E4;
	text-decoration: none !important;
}
.btn-outline:focus-visible {
    border: solid 1px #94A3B8;
    background-color: #F8FAFC;
}




/* Button arrows
---------------------------------------- */

.arrow-right::after {
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	content: "\f061";
	font-size: 80%;
	line-height: 1;
	margin-left: 8px;
	transition: transform 100ms ease-in-out;
	animation-direction: alternate;
}
.arrow-right:hover::after,
.arrow-right:active::after,
.arrow-right:focus-visible::after {
	animation-name: slide-forward;
	animation-iteration-count: 2;
	animation-direction: alternate;
	animation-duration: 200ms;
}

@keyframes slide-forward {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(35%);
	}
}

.arrow-left::before {
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	content: "\f060";
	font-size: 80%;
	line-height: 1;
	margin-right: 8px;
	transition: transform 100ms ease-in-out;
	animation-direction: alternate;
}
.arrow-left:hover::before,
.arrow-left:active::before,
.arrow-left:focus-visible::before {
	animation-name: slide-backward;
	animation-iteration-count: 2;
	animation-direction: alternate;
	animation-duration: 200ms;
}

@keyframes slide-backward {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-35%);
	}
}


/* ========================================================================================================================
														Pills
======================================================================================================================== */

.pill {
    border-radius: 11px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    padding: 0 10px;
    vertical-align: middle;
}
.pill-blue {
    background-color: #1F467E;
    color: #ffffff;
}

/* ========================================================================================================================
														Gutters
======================================================================================================================== */

.container,
.container-fluid {
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 1600px) {

	.container {
		max-width: 1500px;
	}

}

.row {
	margin-left: -20px;
	margin-right: -20px;
}
.row > .col,
.row > [class*="col-"] {
	padding-left: 20px;
	padding-right: 20px;
}
.gutter-top {
	padding-top: 20px;
}
.gutter-bottom {
	padding-bottom: 20px;
}

/* No gutters
---------------------------------------- */

.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}
.row.no-gutters > .col,
.row.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}
.row.no-gutters .gutter-top {
	padding-top: 0;
}
.row.no-gutters .gutter-bottom {
	padding-bottom: 0;
}

/* Tight gutters
---------------------------------------- */

.row.tight-gutters {
	margin-right: -10px;
	margin-left: -10px;
}
.row.tight-gutters > .col,
.row.tight-gutters > [class*="col-"] {
	padding-right: 10px;
	padding-left: 10px;
}
.row.tight-gutters .gutter-top {
	padding-top: 10px;
}
.row.tight-gutters .gutter-bottom {
	padding-bottom: 10px;
}

/* Wide gutters
---------------------------------------- */

.row.wide-gutters {
	margin-right: -20px;
	margin-left: -20px;
}
.row.wide-gutters > .col,
.row.wide-gutters > [class*="col-"] {
	padding-right: 20px;
	padding-left: 20px;
}
.row.wide-gutters .gutter-top {
	padding-top: 20px;
}
.row.wide-gutters .gutter-bottom {
	padding-bottom: 20px;
}

@media (min-width: 992px) {

	.container-fluid.wide-gutters {
		padding-left: 36px;
		padding-right: 36px;
	}
	.row.wide-gutters {
		margin-right: -36px;
		margin-left: -36px;
	}
	.row.wide-gutters > .col,
	.row.wide-gutters > [class*="col-"] {
		padding-right: 36px;
		padding-left: 36px;
	}
	.row.wide-gutters .gutter-top {
		padding-top: 36px;
	}
	.row.wide-gutters .gutter-bottom {
		padding-bottom: 36px;
	}

}

@media (min-width: 1200px) {

	.container-fluid.wide-gutters {
		padding-left: 50px;
		padding-right: 50px;
	}
	.row.wide-gutters {
		margin-right: -50px;
		margin-left: -50px;
	}
	.row.wide-gutters > .col,
	.row.wide-gutters > [class*="col-"] {
		padding-right: 50px;
		padding-left: 50px;
	}
	.row.wide-gutters .gutter-top {
		padding-top: 50px;
	}
	.row.wide-gutters .gutter-bottom {
		padding-bottom: 50px;
	}

}



/* ========================================================================================================================
													Layout Padding
======================================================================================================================== */

.layout-wrapper {
	position: relative;
}
.layout-container {
	padding-top: 30px;
	padding-bottom: 30px;
}

.layout-pt-xs {
    padding-top: 30px;    
}
.layout-pt-sm {
    padding-top: 30px;   
}
.layout-pt-md {
	padding-top: 50px;
}
.layout-pt-lg {
	padding-top: 75px;
}

.layout-pb-xs {
    padding-bottom: 30px;
}
.layout-pb-sm {
	padding-bottom: 30px;
}
.layout-pb-md {
	padding-bottom: 50px;
}
.layout-pb-lg {
	padding-bottom: 75px;
}

.layout-pr-xs {
    padding-right: 30px;
}
.layout-pr-sm {
    padding-right: 30px;   
}
.layout-pr-md {
    padding-right: 50px;   
}
.layout-pr-lg {
    padding-right: 75px;   
}

.layout-pl-xs {
    padding-left: 30px;
}
.layout-pl-sm {
    padding-left: 30px;   
}
.layout-pl-md {
    padding-left: 50px;   
}
.layout-pl-lg {
    padding-left: 75px;   
}

@media (min-width: 768px) {

	.layout-container {
		padding-top: 96px;
		padding-bottom: 96px;
	}
    
	.layout-pt-sm {
		padding-top: 60px;
	}
	.layout-pt-md {
		padding-top: 100px;
	}
	.layout-pt-lg {
		padding-top: 150px;
	}
    
	.layout-pb-sm {
		padding-bottom: 60px;
	}
	.layout-pb-md {
		padding-bottom: 100px;
	}
	.layout-pb-lg {
		padding-bottom: 150px;
	}
    
    .layout-pl-sm {
        padding-left: 60px;   
    }
    .layout-pl-md {
        padding-left: 100px;   
    }
    .layout-pl-lg {
        padding-left: 150px;   
    }
    
    .layout-pr-sm {
        padding-right: 60px;   
    }
    .layout-pr-md {
        padding-right: 100px;   
    }
    .layout-pr-lg {
        padding-right: 150px;   
    }

}

.min-400 {
    min-height: 400px;
}

.min-600 {
    min-height: 600px;
}

.mt-n1 {
    margin-top: -0.25rem !important;
}
.mt-n2 {
    margin-top: -0.5rem  !important;
}
.mt-n3 {
    margin-top: -1rem  !important;
}
.mt-n4 {
    margin-top: -1.5rem  !important;
}
.mt-n5 {
    margin-top: -3rem !important;
}

/* ========================================================================================================================
													Content Padding
======================================================================================================================== */

.content-section {
	margin-bottom: 40px;
}
.flexible-header {
	padding-bottom: 40px;
}
.flexible-footer {
	padding-top: 40px;
}

.content-padding-xs {
	padding: 10px;
}
.content-padding-sm {
	padding: 10px;
}
.content-padding-md {
	padding: 15px;
}
.content-padding-lg {
	padding: 20px;
}
.content-padding-xl {
	padding: 25px;
}

@media (min-width: 768px) {

	.content-padding-xs {
		padding: 10px;
	}
	.content-padding-sm {
		padding: 20px;
	}
	.content-padding-md {
		padding: 30px;
	}
	.content-padding-lg {
		padding: 40px;
	}
	.content-padding-xl {
		padding: 50px;
	}

}



/* Vertical Align Middle
---------------------------------------- */

.vmiddle-table {
	display: table;
	width: 100%;
	height: 100%;
}
.vmiddle-cell {
	display: table-cell;
	vertical-align: middle;
}


/* Height Sizer
---------------------------------------- */

@media (max-width: 575px) {
	[class*="height-sizer-sm"] {
		height: auto !important;
	}
}

@media (max-width: 767px) {
	[class*="height-sizer-md"] {
		height: auto !important;
	}
}

@media (max-width: 991px) {
	[class*="height-sizer-lg"] {
		height: auto !important;
	}
}

@media (max-width: 1199px) {
	[class*="height-sizer-xl"] {
		height: auto !important;
	}
}


/* Hidden classes
---------------------------------------- */

@media (max-width: 575px) {
	.hidden-xs {
		display: none !important;
	}
}
@media (min-width: 576px) and (max-width: 767px) {
	.hidden-sm {
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.hidden-md {
		display: none !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-lg {
		display: none !important;
	}
}
@media (min-width: 1200px) {
	.hidden-xl {
		display: none !important;
	}
}


/* Order classes
---------------------------------------- */

@media (max-width: 575px) {
	.order-first-xs {
		order: -1;
	}
}
@media (min-width: 576px) and (max-width: 767px) {
	.order-first-sm {
		order: -1;;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.order-first-md {
		order: -1;;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.order-first-lg {
		order: -1;
	}
}
@media (min-width: 1200px) {
	.order-first-xl {
		order: -1;
	}
}




/* Alignment classes
---------------------------------------- */

.align-items-between {
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
}










/* ========================================================================================================================
														5 Columns
======================================================================================================================== */

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15,
.col-xl-15 {
	position: relative;
	width: 100%;
	padding-right: 20px;
	padding-left: 20px;
}
.col-xs-15 {
	flex: 0 0 20%;
	max-width: 20%;
}
@media (min-width: 576px) {
	.col-sm-15 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}
@media (min-width: 768px) {
	.col-md-15 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}
@media (min-width: 992px) {
	.col-lg-15 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}
@media (min-width: 1200px) {
	.col-xl-15 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}




/* ========================================================================================================================
														Tables
======================================================================================================================== */

/* Add to tables with responsive images
---------------------------------------- */

.table-layout-fixed {
	table-layout: fixed;
	width: 100%;
}



/* ========================================================================================================================
														Carousels
======================================================================================================================== */
.carousel-control-next:after, 
.carousel-control-prev:after {
  display: none;
}

#quotes-carousel .carousel-control-next, 
#quotes-carousel .carousel-control-prev,
#image-carousel .carousel-control-next,
#image-carousel .carousel-control-prev {
  color: #CCCCCC;
  opacity: 1;
  width: 17.5px;
  font-size: 20px;
  transition: color .2s ease-in-out;
}
#quotes-carousel .carousel-control-next:hover, 
#quotes-carousel .carousel-control-prev:hover,
#image-carousel .carousel-control-next:hover,
#image-carousel .carousel-control-prev:hover {
  /*color: #359E75;*/
}

/* Quote Carousel Specific */
#quotes-carousel .quote-wrapper {
  background-color: #F5F8FA;
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 80%;
}
  #quotes-carousel .quote {

    margin-bottom: 0;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 23px;
  }
  #quotes-carousel .quote-author {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 25px;
  }


/* Image Carousel Specific */
#image-carousel .carousel-item .carousel-item-inner {
  max-width: 80%; 
  margin: 0 auto;
}

/* Fix nav dropdown going behind carousel
---------------------------------------- */
.carousel-fade .carousel-item.active {
	z-index: 0;
}





/* ========================================================================================================================
														Header Logos
======================================================================================================================== */

.header-logo {
    width: 200px;
    max-width: 100%;
    padding: 20px 0;
}
    .header-logo a {
      display: block;
    }

@media (min-width: 992px) {
 
  .header-logo {
    float: left;
    padding: 35px 0;
  }
  
}


@media (min-width: 1600px) {
    
        .desktop-header{
            padding-left: 30px;
            padding-right: 30px;
        }
    
}












/* ========================================================================================================================
														Content
======================================================================================================================== */

.framed-image-outer-wrapper {
    padding: 10px;
    margin-left: 15px;
    margin-top: 15px;
    border-radius: 8px;
    background-color: #E2E8F0;
}
    .framed-image-inner-wrapper {
        padding: 25px 25px 0 25px;
        border-radius: 8px;
        background-color: #E5F1FC;
        margin-top: -25px;
        margin-left: -25px;
    }

}
.no-frame-center {
    display: flex;
  justify-content: center;
}

.no-frame-wrapper {
  align-self: center;
}

.no-frame-wrapper img {
    border-radius: 8px;
}

.image-radius-wrapper {padding: 10px 0 0; }

.image-radius-wrapper img {border-radius: 16px;}


/* Blog
 * -----------------------------------------------------------*/

ul.blog-tag-list li {
    margin-bottom: 5px;
}
    ul.blog-tag-list li a {
        color: #263244;
    }
    ul.blog-tag-list li.active a,
    ul.blog-tag-list li a:hover,
    ul.blog-tag-list li a:focus-visible {
        color: #0075E4;
        font-weight: 700;
        text-decoration: none;
    }

.hs_cos_wrapper_type_social_sharing {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
    .hs_cos_wrapper_type_social_sharing a {
        display: inline-block;
        margin: 0 12px;
    }

.blog-post-featured-image img {
    transition: height 300ms ease;
}

.blog-post-featured-image:hover img {
    height: 105%;
}

.post-body .hs-embed-wrapper {
    max-width: 100% !important;
}

.blog-pagination a {
    font-size: 18px;
    color: #263244;  
    border-radius: 4px;
    border: 1px solid #94A3B8;
    padding: 4px 12px;
    -webkit-transition: color 100ms ease-in-out;
	transition: color 100ms ease-in-out;
    height: 34px;
    display: inline-block;
    vertical-align: middle;
}
.blog-pagination a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #0075E4;
    border-color: #0075E4;
}

.blog-pagination .blog-pagination-number-link {

}
.blog-pagination a.blog-pagination-link-active {
    color: #ffffff;
    background-color: #0075E4;
    border-color: #0075E4;
}

.blog-pagination a.blog-pagination-prev-link,
.blog-pagination a.blog-pagination-next-link {
    font-size: 12px;  
    line-height: 26px;
}




/* ========================================================================================================================
														Pagination
======================================================================================================================== */

.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px;
}
	.pagination > a,
	.pagination > span {
		position: relative;
		float: left;
		padding: 6px 12px;
		margin-left: -1px;
		line-height: 1.42857143;
		text-decoration: none;
		background-color: #fff;
		border: 1px solid #ddd;
	}
	.pagination > a:first-child,
	.pagination > span:first-child {
		margin-left: 0;
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
	}
	.pagination > a:last-child,
	.pagination > span:last-child {
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
	}
	.pagination > a:hover,
	.pagination > a:focus-visible,
	.pagination > span:hover,
	.pagination > span:focus-visible {
		z-index: 2;
		background-color: #eee;
		border-color: #ddd;
	}
	.pagination > a.current,
	.pagination > a.current:hover,
	.pagination > a.current:focus-visible,
	.pagination > span.current,
	.pagination > span.current:hover,
	.pagination > span.current:focus-visible {
		z-index: 3;
		color: #fff;
		cursor: default;
		background-color: #139fda;
		border-color: #139fda;
	}







/* ========================================================================================================================
														Google Search
======================================================================================================================== */

#custom-search-results .cse-result {
	margin-bottom: 40px;
}
#custom-search-results .cse-heading {
	margin: 0;
}
#custom-search-results .cse-url {
	font-size: 14px;
	margin: 0;
	color: #28a745;
}
#custom-search-results .cse-snippet {
	font-size: 14px;
	margin: 0;
}
#custom-search-results .cse-image-snippet {
	font-size: 14px;
	margin: 0 0 0 60px;
}
#custom-search-results .cse-image {
	float: left;
	margin-top: 4px;
	max-width: 50px;
	max-height: 120px;
}
#custom-search-results .cse-pagination {
	/*text-align: right;*/
}



/* ========================================================================================================================
														Scroll Animations
======================================================================================================================== */

.dnd-module {
	opacity: 0.01;
}
.dnd-module.inview {
	animation: animateSlideIn 600ms cubic-bezier(0, 0, .3, 1) forwards;
}

@keyframes animateSlideIn {
	from {
		transform: translateY(2rem);
		opacity: 0.01;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}


/* ========================================================================================================================
														3rd Party
======================================================================================================================== */

/* Wistia embed
---------------------------------------- */

.embed-responsive .wistia_embed {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}


/* ACF Google Maps
---------------------------------------- */

/* fixes potential theme css conflict */
.acf-map img {
	max-width: inherit !important;
}


/* Lazy YouTube embeds
---------------------------------------- */

.lazy-youtube-embed {
	position: relative;
}
.lazy-youtube-embed:hover,
.lazy-youtube-embed:active,
.lazy-youtube-embed:focus-visible {
	cursor: pointer;
}
.lazy-youtube-embed-play {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 50px;
	color: #fff;
	margin-left: -25px;
	margin-top: -25px;
}








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

.footer-logo a {
  display: inline-block;
}
  .footer-logo a img {
    width: 85px;
  }

ul.footer-social {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
	ul.footer-social > li {
		display: inline-block;
		padding: 0;
		margin: 0;
	}
		ul.footer-social > li > a {
			display: inline-block;
			font-size: 22px;
			padding: 10px 5px;
            color: #ffffff;
		}
        ul.footer-social > li > a:hover,
        ul.footer-social > li > a:active {
            color: #94a3b8;
        }
        ul.footer-social > li:first-child > a {
            padding-left: 0;
        }
        ul.footer-social > li:last-child > a {
            padding-right: 0;
        }


.footer-menu .hs-menu-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
    .footer-menu .hs-menu-wrapper ul > li {
        margin-bottom: 16px;
    }
        .footer-menu .hs-menu-wrapper ul > li > a {
            color: #ffffff;
        }
        .footer-menu .hs-menu-wrapper > ul > li:first-child > a {
            font-size: 18px;
            font-weight: 700;
        }
        .footer-menu .hs-menu-wrapper ul > li > a:hover,
        .footer-menu .hs-menu-wrapper ul > li > a:active,
        .footer-menu .hs-menu-wrapper ul > li.active > a {
            color: #94a3b8;
            text-decoration: underline;
        }

    .footer-menu .hs-menu-wrapper ul > li > ul {
        margin-top: 16px;
    }

.footer-utility-menu .hs-menu-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
    .footer-utility-menu .hs-menu-wrapper ul > li {
        display: inline-block;
        margin: 0;
        padding: 0 10px;
        border-right: solid 1px #94a3b8;
        line-height: 14px;
    }
    .footer-utility-menu .hs-menu-wrapper ul > li:last-child {
        border-right: none;    
    }
        .footer-utility-menu .hs-menu-wrapper ul > li > a {
            color: #00D8FF;
            font-size: 14px;
            line-height: 14px;
        }
        .footer-utility-menu .hs-menu-wrapper ul > li > a:hover,
        .footer-utility-menu .hs-menu-wrapper ul > li > a:active {
            color: #ffffff;
        }




















/* ========================================================================================================================
													Mobile Collapse
======================================================================================================================== */

/* Prevents menu from jumping when expanding */
/*
#mobile-collapse.collapsing ul.sub-menu,
#mobile-collapse.collapsing div.mega-dropdown-wrapper {
	display: none;
}
#mobile-collapse.collapsing li.menu-item-has-children.active > ul.sub-menu,
#mobile-collapse.collapsing li.menu-item-has-children.active > div.mega-dropdown-wrapper {
	display: block;
}
*/

/* ========================================================================================================================
													submenu-js
======================================================================================================================== */

.submenu-js ul.sub-menu,
.submenu-js div.mega-dropdown-wrapper {
	display: none;
}
.submenu-js li.menu-item-has-children.active > ul.sub-menu,
.submenu-js li.menu-item-has-children.active > div.mega-dropdown-wrapper {
	display: block;
}

@media (min-width: 992px) {

	.submenu-js ul.sub-menu,
	.submenu-js div.mega-dropdown-wrapper {
		display: block;
		visibility: hidden;
		opacity: 0;
		max-height: 0;
        transition: all 150ms ease !important;
	}
	.submenu-js li.menu-item-has-children.active > ul.sub-menu,
	.submenu-js li.menu-item-has-children.active > div.mega-dropdown-wrapper {
		visibility: visible;
		opacity: 1;
		max-height: 1000px;
	}

}




/* ========================================================================================================================
													Mobile Header
======================================================================================================================== */

.mobile-header {

}

	/* Mobile Navbar Toggler
	---------------------------------------- */

	.navbar-toggler {
		position: absolute;
		top: 0;
		right: 20px;
		z-index: 2;
		background-color: transparent;
		background-image: none;
		border: none;
		border-radius: 0;
		margin: 20px 0 0 0;
		padding: 0;
		width: 30px;
		height: 30px;
	}
    .navbar-toggler:focus-visible {
        outline: 1px solid #0075E4;
        outline-offset: 2px;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 4px;
    }

	.navbar-toggler .icon-bar {
		display: block;
		width: 30px;
		height: 3px;
		margin: 5px 0;
		background: #12162E;
        border-radius: 3px;
		-webkit-transition: all 0.1s ease;
		-moz-transition: all 0.1s ease;
		-o-transition: all 0.1s ease;
		-ms-transition: all 0.1s ease;
		transition: all 0.1s ease;
	}

		.navbar-toggler[aria-expanded="true"] {
			padding-left: 8px;
		}
		.navbar-toggler[aria-expanded="true"] .icon-bar {
			width: 20px;
		}
		.navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(1) {
			-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			transform: rotate(45deg);
			position: absolute;
			top: 10px;
			left: 10px;
		}
		.navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(2) {
			-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
			transform: rotate(-45deg);
			position: absolute;
			top: 10px;
			left: 10px;
		}
		.navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(3) {
			opacity: 0;
		}
		.navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(4) {
			opacity: 0;
		}




	/* Mobile Menus
	---------------------------------------- */

		.mobile-menu {
			background-color: #ffffff;
		}
        .mobile-cta {
            display: block;
            margin: 20px;
        }
        
        /* Mobile Search
	    ---------------------------------------- */
		.mobile-search-wrapper {
			padding: 20px;
		}
			.mobile-search-form {
				position: relative;
				padding: 0;
			}
				.mobile-search-form .form-control {
					font-size: 16px;
					line-height: 20px;
					color: #000;
					padding: 10px 40px 10px 10px;
                    border-radius: 4px;
				}
                .mobile-search-form .form-control:focus {
                    color: #000;
                    border-color: #000000 !important;
                    box-shadow: none;
                    outline: none;
                }
				.mobile-search-form .button-search {
					position: absolute;
					top: 1px;
					right: 1px;
					font-size: 20px;
					line-height: 18px;
					color: #000;
					padding: 10px;
					margin: 0;
					background-color: transparent;
					border: none;
				}
				.mobile-search-form  .button-search:hover,
				.mobile-search-form  .button-search:active,
				.mobile-search-form  .button-search:focus {
					background-color: transparent;
					border: none;
					text-decoration: none;
					cursor: pointer;
				}
                .mobile-search-form  .button-search:focus-visible {
                    outline: 1px solid #0075E4;
                    outline-offset: 0px;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    border-radius: 4px;    
                }

        /* Mobile Menus
	    ---------------------------------------- */
		ul.mobile-navbar-menu {
			list-style: none;
			padding: 0 20px;
			margin: 0;
		}
			ul.mobile-navbar-menu > li {
				background-image: none;
				padding: 0;
				margin: 0;
			}
			ul.mobile-navbar-menu > li.menu-item-has-children {
				position: relative;
			}
				ul.mobile-navbar-menu > li > a {
					display: block;
					padding: 24px 20px 24px 0;
					font-size: 18px;
					font-weight: 600;
					line-height: 20px;
					color: #12162E;
					border-top: 1px solid #E2E8F0;
				}
				ul.mobile-navbar-menu > li > a:hover,
				ul.mobile-navbar-menu > li > a:active,
				ul.mobile-navbar-menu > li > a:focus {
					text-decoration: none;
				}
				ul.mobile-navbar-menu > li.menu-item-has-children.active > a,
                ul.mobile-navbar-menu > li > a.current-menu-item{
					color: #0075E4;
				}
					ul.mobile-navbar-menu > li.menu-item-has-children > a > .sub-menu-toggle {
						float: right;
						padding: 10px 0px 10px 40px;
						margin: -10px -20px;
						line-height: 1.4;
					}
					ul.mobile-navbar-menu > li.menu-item-has-children > a > .sub-menu-toggle::after {
						font-family: "Font Awesome 5 Pro";
						font-weight: 900;
						content: "\f078";
					}
					ul.mobile-navbar-menu > li.menu-item-has-children.active > a > .sub-menu-toggle::after {
						font-family: "Font Awesome 5 Pro";
						font-weight: 900;
						content: "\f077";
                        color: #0075E4;
					}

					/* Mobile Dropdown
					---------------------------------------- */

					ul.mobile-navbar-menu > li > ul.sub-menu {
						list-style: none;
						padding: 0;
						margin: 0 0 16px 0;
						overflow: hidden;
					}
						ul.mobile-navbar-menu > li > ul.sub-menu > li {
							background-image: none;
							padding: 0;
							margin: 0;
						}
							ul.mobile-navbar-menu > li > ul.sub-menu > li > a {
								display: block;
								padding: 8px 20px;
								font-size: 18px;
								line-height: 20px;
								color: #12162E;
                                margin: 3px;
							}
							ul.mobile-navbar-menu > li > ul.sub-menu > li > a:hover,
							ul.mobile-navbar-menu > li > ul.sub-menu > li > a:active,
							ul.mobile-navbar-menu > li > ul.sub-menu > li > a:focus-visible,
                            ul.mobile-navbar-menu > li > ul.sub-menu > li > a.current-menu-item{
								text-decoration: none;
                                color: #0075E4;
							}
							ul.mobile-navbar-menu > li > ul.sub-menu > li.menu-item-has-children.active > a {
								
							}

							ul.mobile-navbar-menu > li > ul.sub-menu > li.menu-item-has-children > a > .sub-menu-toggle {
								float: right;
								padding: 10px 20px 10px 40px;
								margin: -10px -20px;
								line-height: 1.4;
							}
							ul.mobile-navbar-menu > li > ul.sub-menu > li.menu-item-has-children > a > .sub-menu-toggle::after {
								font-family: "Font Awesome 5 Pro";
								font-weight: 900;
								content: "\f067";
							}
							ul.mobile-navbar-menu > li > ul.sub-menu > li.menu-item-has-children.active > a > .sub-menu-toggle::after {
								font-family: "Font Awesome 5 Pro";
								font-weight: 900;
								content: "\f068";
							}

								ul.mobile-navbar-menu > li > ul.sub-menu > li > ul.sub-menu {
									list-style: none;
									padding: 0 0 10px 0;
									margin: 0;
								}
									ul.mobile-navbar-menu > li > ul.sub-menu > li > ul.sub-menu > li {
										background-image: none;
										padding: 0;
										margin: 0;
									}
										ul.mobile-navbar-menu > li > ul.sub-menu > li > ul.sub-menu > li > a {
											display: block;
											padding: 10px 20px 10px 40px;
											font-size: 14px;
											line-height: 20px;
											color: #139fda;
										}
										ul.mobile-navbar-menu > li > ul.sub-menu > li > ul.sub-menu > li > a:hover,
										ul.mobile-navbar-menu > li > ul.sub-menu > li > ul.sub-menu > li > a:active,
										ul.mobile-navbar-menu > li > ul.sub-menu > li > ul.sub-menu > li > a:focus-visible {
											text-decoration: none;
										}










/* ========================================================================================================================
													Desktop Header
======================================================================================================================== */


	/* Desktop Navbar
	---------------------------------------- */

	@media (min-width: 992px) {

		.desktop-header {
			position: fixed;
            width: 100%;
			z-index: 1;
            background-color: #ffffff;
		}
        .desktop-header-spacer {
            content: '';
            display: block;
            height: 100px;
        }

				.desktop-cta {
					margin: 0 0 0 15px;
				}

                /* Desktop Search
                ---------------------------------------- */
				button.desktop-flyout-search-open {
					font-size: 17px;
					line-height: 17px;
					color: #000;
					padding: 10px;
					border: none;
					background-color: transparent;
					width: 40px;
				}
				button.desktop-flyout-search-open:hover,
				button.desktop-flyout-search-open:active,
				button.desktop-flyout-search-open:focus-visible {
					background-color: transparent;
					border: none;
					text-decoration: none;
					cursor: pointer;
					color: #0A208B;
				}

				.desktop-flyout-search-form {
                    background-color: #ffffff;
					display: none;
					position: absolute;
					top: 0;
					right: 155px;
					width: 100%;
				}
					.desktop-flyout-search-form .form-control {
						font-size: 16px;
						line-height: 20px;
						color: #000;
						padding: 10px 40px 10px 40px;
						height: 37px;
						border: none;
						border-radius: 4px;
                        background-color: #ffffff;
					}
					.desktop-flyout-search-form .form-control:focus-visible {
						color: #000;
						border-color: #000000 !important;
						box-shadow: none;
                        outline: none;
					}
					.desktop-flyout-search-form .button-search {
						position: absolute;
						top: 0;
						left: 0;
						font-size: 17px;
						line-height: 17px;
						color: #000;
						padding: 10px;
						margin: 0;
						background-color: transparent;
						border: none;
					}
					.desktop-flyout-search-form .button-search:hover,
					.desktop-flyout-search-form .button-search:active,
					.desktop-flyout-search-form .button-search:focus-visible {
						background-color: transparent;
						border: none;
						text-decoration: none;
						cursor: pointer;
					}
					.desktop-flyout-search-form .button-close {
						position: absolute;
						top: 0;
						right: 0;
						font-size: 17px;
						line-height: 17px;
						color: #000;
						padding: 10px;
						margin: 0;
						background-color: transparent;
						border: none;
						width: 40px;
					}
					.desktop-flyout-search-form .button-close:hover,
					.desktop-flyout-search-form .button-close:active,
					.desktop-flyout-search-form .button-close:focus-visible {
						background-color: transparent;
						border: none;
						text-decoration: none;
						cursor: pointer;
					}

                /* Desktop Navigation
	            ---------------------------------------- */
				.desktop-navbar {

				}
					ul.desktop-navbar-menu {
						list-style: none;
						padding: 0;
						margin: 0;
						border-bottom: transparent;
                        text-align: center;
					}
						ul.desktop-navbar-menu > li {
							background-image: none;
							padding: 0;
							margin: 0 13px;
							/*float: left;*/
                            display: inline-block;
						}
                        ul.desktop-navbar-menu > li:first-child {
                            margin-left: 0;
                        }
                        ul.desktop-navbar-menu > li:last-child {
                            margin-right: 0;
                        }
						ul.desktop-navbar-menu > li.menu-item-has-children {
							/*position: relative;*/
						}
						/* Remove position: relative on the li so that MEGAMENU can position relative to the column */
						ul.desktop-navbar-menu > li.menu-item-has-children.mega-dropdown {
							position: static;
						}
							ul.desktop-navbar-menu > li > a {
								display: block;
								padding: 15px 0px;
								font-size: 16px;
								font-weight: 600;
								line-height: 20px;
								color: #12162E;
								white-space: nowrap;
                                border-bottom: solid 2px transparent;
							}
							ul.desktop-navbar-menu > li > a:hover,
							ul.desktop-navbar-menu > li > a:active {
								text-decoration: none;
								color: #12162E;
                                border-bottom-color: #0A208B;
							}
							ul.desktop-navbar-menu > li.menu-item-has-children.active > a,
                            ul.desktop-navbar-menu > li > a.current-menu-item {
								color: #12162E;
                                border-bottom-color: #0A208B;
							}
                            

								/* Desktop MEGA MENU
								---------------------------------------- */
        
								ul.desktop-navbar-menu > li div.mega-dropdown-wrapper {
                                    text-align: left;
									position: absolute;
									/*top: 100%;*/
									left: 50%;
									z-index: 3;
									width: 920px;
                                    padding-top: 20px;
                                    margin-left: -460px;
									-webkit-transition: all 0.3s ease;
									-moz-transition: all 0.3s ease;
									-o-transition: all 0.3s ease;
									-ms-transition: all 0.3s ease;
									transition: all 0.3s ease;
								}
                                    ul.desktop-navbar-menu > li div.mega-cta-banner {
                                        margin-top: 20px;
                                        padding: 10px 0px;
                                        border-radius: 4px;
                                        background-image: url(//5412960.fs1.hubspotusercontent-na1.net/hubfs/5412960/raw_assets/public/CLM_HS_Theme_2024/images/mega-menu-cta-banner-bg.jpg);
                                        background-repeat: no-repeat;
                                        background-position: center center;
                                        -webkit-background-size: cover;
                                        -moz-background-size: cover;
                                        -o-background-size: cover;
                                        background-size: cover;
                                        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
                                    }
									ul.desktop-navbar-menu > li div.mega-dropdown-container {
										border-radius: 4px;
                                        background: #FFF;
                                        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
                                        min-height: 400px;
									}
										p.mega-dropdown-heading {
											font-weight: 500;
											padding: 10px 20px;
											margin: 0;
										}
										ul.desktop-navbar-menu > li ul.mega-dropdown-menu {
											list-style: none;
											padding: 0;
											margin: 20px 0;
										}
											ul.desktop-navbar-menu > li ul.mega-dropdown-menu > li {
												background-image: none;
												padding: 0;
												margin: 0 0 5px 0;
											}
												ul.desktop-navbar-menu > li ul.mega-dropdown-menu > li > a {
													clear: both;
													display: block;
													padding: 12px 20px;
													color: #000000;
                                                    border: solid 1px transparent;
                                                    border-radius: 4px;
                                                    -webkit-transition: all 200ms ease-in-out;
	                                                transition: all 200ms ease-in-out;
												}
                                                    ul.desktop-navbar-menu > li ul.mega-dropdown-menu > li > a:hover,
                                                    ul.desktop-navbar-menu > li ul.mega-dropdown-menu > li > a:active,
                                                    ul.desktop-navbar-menu > li ul.mega-dropdown-menu > li > a:focus-visible,
                                                    ul.desktop-navbar-menu > li ul.mega-dropdown-menu > li > a.current-menu-item {
                                                        text-decoration: none; 
                                                        border-color: #0075E4;
                                                        background-color: #E2E8F0;
                                                    }



	}

    @media (min-width: 1200px) {

        ul.desktop-navbar-menu > li {
            margin: 0 15px;    
        }
        
    }

    @media (min-width: 1600px) {
        
        ul.desktop-navbar-menu>li {
            margin: 0 25px;    
        }
        
        
    }