/* Theme base styles */

:root {
  --primary-color: #172A54;
  --secondary-color: #BC202D;
	--tertiary-color: #6A6B6C;
  --alt-color: #8BC0C6;
  --accent-color: #4C7E84;
	--font-family-primary: "Montserrat", sans-serif;
	--font-family-secondary: "Merriweather", serif;
	--font-size: 1rem;
	--line-height: 1.375;
	--h1-font-size: 2.5rem;
	--h1-line-height: 3.25rem;
	--h2-font-size: 2rem;
	--h2-line-height: 2.5rem;
	--h3-font-size: 1.75rem;
	--h3-line-height: 2.375rem;
	--h4-font-size: 24px;
	--h4-line-height: 36px;
	--h5-font-size: 20px;
	--h5-line-height: 30px;
	--h6-font-size: 18px;
	--h6-line-height: 24px;
}

@media (max-width: 991px) {
	:root {
		--font-size: 0.875rem;
		--h1-font-size: 2rem;
		--h1-line-height: 2.5rem;
		--h2-font-size: 1.625rem;
		--h2-line-height: 2.125rem;
		--h3-font-size: 1.375rem;
		--h3-line-height: 1.75rem;
		--h4-font-size: 1.1875rem;
		--h4-line-height: 1.75rem;
		--h5-font-size: 1rem;
		--h5-line-height: 1.25rem;
		--h6-font-size: 0.875rem;
		--h6-line-height: 1.25rem;
	}
}

body:not(.--editing) {
	opacity: 1 !important;
}


/* 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 */
  font-size: 16px;
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
  --page-margin: max(100px, calc((100vw - 1400px) / 2));
  
  @media not (min-width: 1025px) {
    --page-margin: max(16px, calc((100vw - 1400px) / 2));
  }
}

.body-wrapper {
  width: 100%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 1023px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}

@media screen and (max-width: 1024px) {
  .widget-span + .widget-span {
    margin-top: 24px;
  }
}

.hs-form .hs_submit {
  text-align: center;
}

.hs-form .hs_submit input[type=submit] {
  background: var(--secondary-color);
  font-size: 1rem;
  font-weight: 700;
  transition: background 350ms;
}

.hs-form .hs_submit input[type=submit]:hover, .hs-form .hs_submit input[type=submit]:focus {
  background: var(--primary-color);
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

.section-headline {
	margin-block-end: 48px;
	margin-inline: auto;
	max-inline-size: 700px;
	text-align: center;
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  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;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;

  em {
    font-family: "Merriweather", serif;
    color: var(--alt-color);
  }
}

h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

/* 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;
}

/* 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;
}

.body-container-wrapper .widget-type-rich_text {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.footer .footer__top .widget-type-rich_text,
.footer .footer__top .widget-type-rich_text p {
  color: #fff;
}

.body-container-wrapper .widget-type-rich_text a:not(.button):hover {
  text-decoration: none;
}

.body-container-wrapper .widget-type-rich_text p {
  font-size: 1rem;
  line-height: 1.375rem;
}

.body-container-wrapper .widget-type-rich_text ul {
  list-style: square;
  padding-left: 20px;
}

.body-container-wrapper .widget-type-rich_text ul li {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--primary-color);
}

.body-container-wrapper .widget-type-rich_text ul li + li {
  margin-top: 12px;
}

.body-container-wrapper .widget-type-rich_text ul li::marker {
  color: var(--secondary-color);
}

.body-container-wrapper .widget-type-rich_text h1 {
  font-size: 2.5rem;
  line-height: 3.25rem;
}

.body-container-wrapper .widget-type-rich_text h1,
.body-container-wrapper .widget-type-rich_text h2,
.body-container-wrapper .widget-type-rich_text h3,
.body-container-wrapper .widget-type-rich_text h4,
.body-container-wrapper .widget-type-rich_text h5 {
  margin-bottom: 1rem;
}

.body-container-wrapper .widget-type-rich_text * + h1,
.body-container-wrapper .widget-type-rich_text * + h2,
.body-container-wrapper .widget-type-rich_text * + h3,
.body-container-wrapper .widget-type-rich_text * + h4,
.body-container-wrapper .widget-type-rich_text * + h5 {
  margin-top: 1rem;
}

.body-container-wrapper .widget-type-rich_text em,
.body-container-wrapper .widget-type-rich_text em,
.body-container-wrapper .widget-type-rich_text em,
.body-container-wrapper .widget-type-rich_text em,
.body-container-wrapper .widget-type-rich_text em {
  color: var(--secondary-color);
}

@media screen and (max-width: 1024px) {
  .body-container-wrapper .widget-type-rich_text h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
button {
	background: none;
	border: none;
	box-shadow: none;
	outline: none;
}
button:disabled {
	opacity: 0.75;
}
.button {
	align-items: center;
	background-color: var(--secondary-color);
	color: white;
	column-gap: 10px;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	padding-block: 15px;
	padding-inline: 28px;
	text-decoration: none;
	transition: all 350ms;
}
.button.icon-button svg {
	min-width: 15px;
}
 .button.icon-button svg circle {
	 fill: currentColor;
	 stroke: currentColor;
	 transition: fill 350ms, stroke 350ms;
}
 .button.icon-button svg path {
	 stroke: var(--secondary-color);
	 transition: stroke 350ms;
}
.button.icon-button svg path {
	stroke: var(--secondary-color);
	transition: stroke 350ms;
}

.button:is(:hover):not(:disabled) {
		background: white;
		color: var(--secondary-color);
		text-decoration: none;
	}
	.button.icon-button:is(:hover):not(:disabled) svg circle {
		fill: var(--secondary-color);
		stroke: var(--secondary-color);
	}
	.button.icon-button:is(:hover):not(:disabled) svg path {
		stroke: white;
	}
	
	.button.icon-button.primary-hover:is(:hover):not(:disabled) {
		background: var(--primary-color);
		color: white;
		text-decoration: none;
	}
	.button.icon-button.primary-hover:is(:hover):not(:disabled)
		svg
		circle {
		fill: white;
		stroke: white;
	}
	.button.icon-button.primary-hover:is(:hover):not(:disabled)
		svg
		path {
		stroke: var(--primary-color);
	}

@media screen and (max-width: 1024px) {
	.button,
	a,
	.text-button,
	.button *, 
	a *,
	.text-button *,
	.text-button::after {
		transition: none !important;
	}
}

.button.icon-button svg path {
	stroke: var(--secondary-color);
}

.button.icon-button.outline-button {
	border: 2px solid var(--secondary-color);
	color: var(--secondary-color);
	background: #fff;
}

.button.icon-button.outline-button svg circle {
	fill: var(--secondary-color);
	stroke: var(--secondary-color);
}

.button.icon-button.outline-button svg path {
	stroke: #fff;
}

.button.icon-button.outline-hover:is(:hover):not(:disabled),
.button.icon-button.outline-button:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	text-decoration: underline;
}

.button.icon-button.outline-hover:is(:hover):not(:disabled)
	svg
	circle,
	.button.icon-button.outline-button:hover svg circle {
	fill: var(--primary-color);
	stroke: var(--primary-color);
}

.text-button {
	display: flex;
	align-items: center;
	color: var(--secondary-color);
	font-size: 1rem;
	transition: all 350ms;
	font-weight: 700;
}
.text-button svg {
	margin-left: 10px;
}
.text-button svg circle, .text-button svg path {
	stroke: var(--secondary-color);
	transition: all 350ms;
}
a:is(:hover) span.text-button, 
a.text-button:is(:hover),
button.text-button:is(:hover):not(:disabled),
.testimonials__testimonial:is(:hover) span.text-button {
	color: var(--primary-color);
}
a:is(:hover) span.text-button svg circle, 
a.text-button:is(:hover) svg circle,
button.text-button:is(:hover):not(:disabled) svg circle,
.testimonials__testimonial:is(:hover) span.text-button svg circle {
	stroke: var(--primary-color);
	fill: var(--primary-color);
}
a:is(:hover) span.text-button svg path, 
a.text-button:is(:hover) svg path,
button.text-button:is(:hover):not(:disabled) svg path,
.testimonials__testimonial:is(:hover) span.text-button svg path {
	stroke: white;
}

@media screen and (max-width: 1024px) {
	.button {
		padding-block: 10px;
	}
}
/* Fields */

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

/* Labels */

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

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

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

/* Headings and text */

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

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

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

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* Custom Form Button Styling */

.adv_deposit input[type="submit"], input#adv_dep_submit{
  border-radius: 0px;
  font-weight: 700;
  padding: 15px 28px;
  background: var(--secondary-color);
  transition: all .35s;
}

.adv_deposit input[type="submit"]:is(:hover):not(:disabled), input#adv_dep_submit:is(:hover):not(:disabled){
  background: var(--primary-color);
  text-decoration: none;
}


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

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

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

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

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

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.carousel {
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}

.carousel__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
}

.carousel__controls {
  display: flex;
  justify-content: space-between;
  margin-block-start: 16px;
}

.carousel__controls button:hover,
.carousel__controls button:focus {
  opacity: .6;
}

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.carousel__dot {
  position: relative;
  width: 34px;
  max-width: 13px;
  padding: 0;
  height: 6px;
  background-color: black;
  border: 1px solid black;
  transition: max-width 350ms;
}

.carousel__dot::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  height: 18px;
  width: 100%;
}

.carousel__dot:hover {
  cursor: pointer;
}

.carousel__dot--selected {
  max-width: 34px;
}

.carousel__button > svg {
    fill: transparent;
    transition: fill 0.3s ease;
    min-width: 9px;
}

.carousel__button:active,
.carousel__button:focus-visible,
.carousel__button:not(:disabled):focus {
  outline: none;
  background: none;
  border: none;
}

.carousel__button:not(:disabled):hover,
.carousel__button:not(:disabled):focus-visible,
.carousel__button:not(:disabled):focus {
  cursor: pointer;

  > svg {
    fill: black;
  }
}

.carousel__button:disabled {
  > svg > ellipse {
    fill: gray;
  }
}

@media (min-width: 993px) {
	.carousel__controls:is(.hide-desktop) {
		display: none;
	}
}
body:has(.dialog[open]) {
	filter: blur(2px);
}

.dialog {
  --animation-time: 0.25s;
  animation: close var(--animation-time) forwards;
	background-color: transparent;
  border: none;
	max-inline-size: min(85dvw, 900px);
	max-block-size: calc(80dvh + 32px);
	padding-block: 32px 0;
	padding-inline: 0;
	transition:
		display 0.25s allow-discrete,
		overlay 0.25s allow-discrete;
}

.dialog[open] {
  animation: open var(--animation-time) forwards;
}

.dialog::backdrop {
  background-color: var(--primary-color);
  opacity: 0.9;
}

.dialog__wrapper {
	background-color: white;
	padding-block: 48px 54px;
	padding-inline: 32px;
	position: relative;
}

.dialog button.close-dialog.text-button {
	color: white;
	padding: 0;
	position: absolute;
	inset-block-start: -32px;
	inset-inline-end: 0;
	text-transform: uppercase;
}

.dialog button.close-dialog.text-button:is(:hover, :focus-visible) {
	color: white;
	text-decoration: underline;
}

@keyframes open {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes close {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

header {
	 width: 100%;
	 background: #fff;
	 z-index: 999;
	 position: relative;
}
 .header {
	 position: relative;
	 box-shadow: 0px 4px 18px 0px #0e19310F;
}
 .header-overlay {
	 display: none;
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: #11203f;
	 z-index: 998;
	 opacity: .7;
}
 .header-overlay.dtopen {
	 display: block;
}
 @media (min-width: 980px) {
	 .header__container {
		 max-width: 1600px;
		 width: calc(100% - 48px);
		 padding: 0 25px;
		 margin: 0 auto;
		 display: flex;
		 justify-content: space-between;
		 position: relative;
		 z-index: 2;
	}
	 .header__logo {
		 height: 90px;
		 width: 230px;
		 display: flex;
		 align-items: center;
		 justify-content: flex-start;
	}
	 .header__logo img {
		 max-height: 65px;
		 margin-top: 13px;
		 width: auto !important;
	}
	 .header__navs {
		 flex-grow: 1;
	}
	 .header__util {
		 background: #eef3ff;
	}
	 .header__util > div {
		 display: block;
	}
	 .header__login svg {
		 display: none;
	}
	 .login-btn {
		 display: none;
	}
	 .header__login .button + span {
		 display: none;
	}
	 .header__util .hs_cos_wrapper_type_rich_text {
		 display: flex;
		 align-items: center;
		 justify-content: space-between;
		 font-size: 0.875rem;
		 height: 37px;
		 color: var(--primary-color);
	}
	 .header__util .hs_cos_wrapper_type_rich_text > div {
		 display: flex;
	}
	 .util__link {
		 display: flex;
		 align-items: center;
		 margin-left: 15px;
		 font-size: 0.875rem;
		 color: var(--primary-color);
		 text-decoration: none;
	}
	 .util__link svg {
		 fill: var(--primary-color);
		 margin-right: 4px;
	}
	 .util__link:hover, .util__link:focus {
		 color: var(--secondary-color);
		 text-decoration: none;
	}
	 .util__link:hover svg, .util__link:focus svg {
		 fill: var(--secondary-color);
	}
	 .header__main {
		 display: flex;
		 justify-content: space-between;
		 align-items: center;
		 padding-left: 20px;
		 height: 90px;
	}
	 .header__main > div:last-child {
		 display: flex;
		 align-items: center;
	}
	 .search__toggle {
		 display: flex;
		 align-items: center;
		 justify-content: center;
		 width: 52px;
		 height: 52px;
		 margin-left: 30px;
		 cursor: pointer;
		 transition: background 350ms;
	}
	.search__toggle img {
		max-width: 50px;
		transition: all 350ms;
	}
	.search__toggle:hover, .search__toggle:focus {
		background: #ddd;
	}
	 .search__box {
		 display: none;
		 position: absolute;
		 left: 0;
		 background: #f2f2f2;
		 width: 100%;
		 margin-top: 20px;
		 padding: 20px 80px;
	}
	 .search__box.open {
		 display: block;
	}
	 .search__box .hs-search-field__label {
		 flex-basis: auto;
		 margin-right: 10px;
		 margin-top: 10px;
	}
	 .search__box form button {
		 border: 1px solid #333;
		 min-width: 100px;
		 line-height: 0;
		 margin-left: 10px;
	}
	 .header_mobile-toggle {
		 display: none;
	}
}
 .header-top {
	 background: #f2f2f2;
	 padding: 3px 0;
}
 .header-top .content-wrapper {
	 max-width: 1600px;
}
 .header-top .dnd-section {
	 padding: 0;
}
 .fdic {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 font-size: 0.8rem;
	 padding: 5px 0;
}
 .fdic img {
	 margin-right: 10px;
	 max-width: 36px !important;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
	padding: 24px;
	width: calc(100% - 168px);
	margin-left: 57px;
}

 @media (max-width: 979px) {
	 header {
		 position: relative;
	}
	 .header-overlay.open {
		 display: block;
	}
	 .header, .header-top {
		 position: relative;
		 z-index: 999;
		 background: #fff;
	}
	header .header {
		overflow: hidden;
	}
	header .header.open {
		overflow: visible;
	}
	 .header-top {
		 background: #f2f2f2;
	}
	 .header__util, .header__search {
		 display: none;
	}
	 .header_mobile-toggle svg + svg {
		 display: none;
	}
	 .header_mobile-toggle.opened svg {
		 display: none;
	}
	 .header_mobile-toggle.opened svg + svg {
		 display: block;
	}
	 .header_mobile-toggle.opened span {
		 margin-top: 8px;
	}
	 .header_mobile-toggle {
		 text-align: center;
		 transform: translateY(5px);
	}
	 .header_mobile-toggle span {
		 display: block;
		 margin-top: 0;
		 font-size: 0.8rem;
		 line-height: 100%;
	}
	 .header__logo img {
		 max-width: 135px !important;
		 transform: translateY(5px);
	}
	 .header__container {
		 display: flex;
		 justify-content: space-between;
		 align-items: center;
		 padding: 16px 32px;
	}
	 .header__main > div + div {
		 display: flex;
		 align-items: center;
	}
	 .header__login .button {
		 min-width: 0;
		 padding: 0;
		 width: 32px;
		 height: 32px;
		 display: flex;
		 align-items: center;
		 justify-content: center;
		 background: var(--primary-color) !important;
		 margin-top: 5px;
		 margin-left: 3px;
	}
	 .header__login .button span {
		 display: none;
	}
	 .header__login svg {
		 width: 18px;
		 height: 18px;
		 fill: #fff;
	}
	 .header__login {
		 text-align: center;
	}
	 .header__login .button + span {
		 display: block;
		 font-size: 0.8rem;
		 line-height: 100%;
		 margin-top: 8px;
		 text-align: center;
	}

	.hs-search-field--open .hs-search-field__suggestions {
		display: none !important;
	}
}
.footer {
		margin-bottom: 88px;
	}
	.footer .hs_cos_wrapper_type_rich_text a {
		color: #fff;
	}
 .footer-container {
	 max-width: 1600px;
	 width: calc(100% - 48px);
	 padding: 0 25px;
	 margin: 0 auto;
	 display: flex;
}
 .footer__top {
	 position: relative;
	 background: #11203f;
	 min-height: 315px;
	 overflow: hidden;
	 padding: 60px 0;
	 color: #fff;
}
 .footer__top .footer-container > div {
	 position: relative;
	 z-index: 2;
	 flex-grow: 1;
	 flex-basis: 0;
	 padding: 0 60px;
	 border-right: 1px solid rgba(163, 178, 212, 0.2);
}
 .footer__top .footer-container > div:first-child {
	 padding-left: 0;
}
 .footer__top .footer-container > div:last-child {
	 padding-right: 0;
	 border-right: none;
}
 .footer__meta img {
	 margin-bottom: 20px;
}
 .footer__meta strong {
	 color: rgba(139, 192, 198, 1);
}
 .footer__meta p + p {
	 line-height: 200%;
}
 .footer__info #hs_cos_wrapper_compliance_ {
	 display: flex;
}
 .footer__info #hs_cos_wrapper_compliance_ > div:first-child {
	 margin-right: 24px;
}
 .footer__info #hs_cos_wrapper_compliance_ p {
	 font-size: 0.875rem;
	 margin-bottom: 16px;
}
 .footer__info #hs_cos_wrapper_compliance_ p strong, .footer__info #hs_cos_wrapper_compliance_ p span {
	 font-size: 1rem;
	 font-weight: 700;
}
 .footer__info #hs_cos_wrapper_compliance_ p strong {
	 color: rgba(139, 192, 198, 1);
}
 .footer__info #hs_cos_wrapper_compliance_ p:last-child {
	 margin-bottom: 0;
}
 .footer__nav h3 {
	 color: rgba(139, 192, 198, 1);
	 text-transform: uppercase;
	 font-size: 1.125rem;
	 line-height: 1.5rem;
	 margin-bottom: 10px;
}
 .footer__nav .links-list > div {
	 display: flex;
	 flex-wrap: wrap;
}
 .footer__nav .links-list > div a {
	 width: calc(50% - 10px);
	 flex-basis: calc(50% - 10px);
	 margin-right: 10px;
	 color: #fff;
	 font-size: 1rem;
	 text-decoration: none;
	 margin-top: 20px;
}
 .footer__nav .links-list > div a:hover, .footer__nav .links-list > div a:focus {
	 text-decoration: underline;
}
 .footer__glyph {
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 top: 0;
	 left: 0;
	 object-fit: cover;
}
 .footer__bottom {
	 background: rgba(212, 213, 215, 1);
	 padding: 8px 0;
}
 .footer__bottom .footer-container {
	 display: block;
}
 .footer__bottom #hs_cos_wrapper_Legaltext_ {
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 font-size: 1rem;
	 color: #282828;
}
 .footer__bottom #hs_cos_wrapper_Legaltext_ a {
	 color: #282828;
	 text-decoration: none;
}
 .footer__bottom #hs_cos_wrapper_Legaltext_ a:hover, .footer__bottom #hs_cos_wrapper_Legaltext_ a:focus {
	 color: #282828;
	 text-decoration: underline;
}

@media screen and (max-width: 1536px) {
	.footer__top .footer-container > div {
		padding: 0 30px;
	}
}

 @media (max-width: 1380px) {
	 .footer__top .footer-container > div {
		 padding: 0 24px;
	}
	 .footer__top .footer-container > div:first-child {
		 padding-left: 0;
	}
	 .footer__top .footer-container > div:last-child {
		 padding-right: 0;
	}
}

 @media (max-width: 979px) {
	 .footer {
		 margin-bottom: 76px;
	}
	 .footer__glyph {
		 display: none;
	}
	 .footer__top {
		 padding: 6px 0;
	}
	 .footer__top .footer-container {
		 display: block;
	}
	 .footer__top .footer-container > div {
		 position: relative;
		 z-index: 2;
		 flex-grow: 1;
		 flex-basis: 0;
		 padding: 24px 0;
		 border-right: none;
		 border-bottom: 1px solid rgba(163, 178, 212, 0.2);
	}
	 .footer__top .footer-container > div:last-child {
		 border-bottom: none;
	}
	 .footer .social-links {
		 justify-content: flex-start;
		 border-bottom: 1px solid rgba(163, 178, 212, 0.2);
		 padding-bottom: 30px;
		 margin-bottom: 24px;
	}
	 .footer__meta p {
		 font-size: 0.875rem;
		 margin-bottom: 1.15rem;
	}
	 .footer__meta p:last-child {
		 margin-bottom: 0;
	}
	 .footer__nav .links-list h3 {
		 font-size: 0.875rem;
		 margin-bottom: 0;
	}
	 .footer__nav .links-list > div a {
		 font-size: 0.875rem;
	}
	 .footer__info #hs_cos_wrapper_compliance_ {
		 flex-direction: row-reverse;
		 justify-content: flex-end;
	}
	 .footer__info #hs_cos_wrapper_compliance_ > div:first-child {
		 margin-right: 0;
		 margin-left: 24px;
	}
	 .footer__bottom {
		 padding: 16px 0;
	}
	 .footer__bottom #hs_cos_wrapper_Legaltext_ {
		 display: block;
		 text-align: center;
		 font-size: 0.875rem;
	}
	 .footer__bottom #hs_cos_wrapper_Legaltext_ > div + div {
		 margin-top: 12px;
	}
}
 


body #ae_app {
	position: relative !important;
	z-index: 2 !important;
}

body #ae_app #ae_launcher {
	position: absolute !important;
	top: -180px;
	left: 20px;
}

@media screen and (max-width: 980px) {
	body #ae_app #ae_launcher {
		left: 10px !important;
		top: -175px;
	}
}
/* 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: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .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%;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto;
  min-block-size: 500px;
  padding-block: 120px;
  padding-inline: 160px;
  background-repeat: no-repeat;
  background-size: cover;

  .hero__inner {
    max-width: 1320px;
    margin: 0 auto;
  }
  
  .hero__content {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    
    .hero__headline {
      margin-block: 0;
    }

    .hero__links {
        display: flex;
        gap: 48px;
        margin-block-start: 32px;
    }
  }
}

@media (max-width: 1024px) {
    .hero {
        padding-inline: 24px;
        padding-block-end: 32px;
        
        .hero__content {
            grid-column: 1 / 3;
            gap: 16px;
            
            .hero__links {
                flex-direction: column;
                gap: 12px;
    
                a {
                    inline-size: 100%;
                }
            } 
        }
    }
}

.site-map .hs-menu-children-wrapper a:before {
  left: -19px !important;
}

.site-map a:hover {
  color: var(--primary-color);
}

.container .special-rt.border {
  padding: 30px 30px 30px 0px;
}
/* Missing Template at Path: \'ind-bank\/css\/components\/_blog-list.css\' */

/* 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: 1024px) {
  .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;
  }
}