@layer base, layout, theme, module, overrides;

@layer base {
	*, *:before, *:after {
		box-sizing: border-box;
		margin: 0;
	}

	html, body {
		min-height: 100svh;
		font-family: system-ui, sans-serif;
	}

	:where(html) {
    --theme-primary-color: #0082C8;
    --theme-accent-color: #0a73ba;
    --theme-text-color: #000000;
    --theme-body-background-color: #FFFFFF;
    --theme-surface-color: #FFFFFF;

    --theme-body-font-family: Poppins,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
    --theme-body-font-size: 21px;
    --theme-body-line-height: 1.5;
    --theme-body-font-color: #000000;

    --theme-link-color: #000000;
    --theme-link-hover-color: #0082C8;
    
    --theme-heading-font-family: Poppins,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
    
    --theme-h1-font-size: 2.857142857142857rem;
    --theme-h1-font-family: Poppins;
    --theme-h1-font-color: #000000;
    --theme-h1-line-height: 1.17;

    --theme-h2-font-size: 2.5714285714285716rem;
    --theme-h2-font-family: Poppins;
    --theme-h2-font-color: #000000;
    --theme-h2-line-height: 1.17;

  --theme-h3-font-size: 1.9523809523809523rem;
  --theme-h3-font-family: Poppins;
  --theme-h3-font-color: #000000;
  --theme-h3-line-height: 1.17;

  --theme-h4-font-size: 1.4285714285714286rem;
  --theme-h4-font-family: Poppins;
  --theme-h4-font-color: #000000;
  --theme-h4-line-height: 1.3;

  --theme-h5-font-size: 1.0952380952380953rem;
  --theme-h5-font-family: Poppins;
  --theme-h5-font-color: #000000;
  --theme-h5-line-height: 1.2;

  --theme-h6-font-size: 0.8095238095238095rem;
  --theme-h6-font-family: Poppins;
  --theme-h6-font-color: #000000;
  --theme-h6-line-height: 1.2;

  --theme-form-title-font-size: 1.3333333333333333rem;
  --theme-form-title-font-family: Poppins;
  --theme-form-title-font-color: #000000;

  --theme-form-background-color: #001D30;
  --theme-form-title-background-color: #FFFFFF;
  
  --theme-vertical-spacing: 0px;
  --theme-horizontal-spacing: 20px;
  --theme-max-content-width: 1200px;

  --shadow-color: 0deg 0% 0%;
  --theme-shadows-light:
  0px 0.6px 0.6px hsl(var(--shadow-color) / 0.07),
  0px 1.4px 1.4px -1.2px hsl(var(--shadow-color) / 0.06),
  0px 3.6px 3.5px -2.3px hsl(var(--shadow-color) / 0.05),
  0px 9.3px 9.1px -3.5px hsl(var(--shadow-color) / 0.04);
  --theme-shadows-medium:
  0px 1px 1px hsl(var(--shadow-color) / 0.07),
  0px 2.2px 2.1px -1.2px hsl(var(--shadow-color) / 0.06),
  0px 5.8px 5.7px -2.3px hsl(var(--shadow-color) / 0.05),
  -0.1px 15px 14.6px -3.5px hsl(var(--shadow-color) / 0.04);
  --theme-shadows-heavy:
  0px 0.7px 0.7px hsl(var(--shadow-color) / 0.11),
  0px 1.7px 1.7px -1.2px hsl(var(--shadow-color) / 0.1),
  0.1px 4.7px 4.6px -2.3px hsl(var(--shadow-color) / 0.08),
  0.2px 12.3px 12px -3.5px hsl(var(--shadow-color) / 0.06);

  --theme-shadow-filter-light: drop-shadow(0px 1px 1px rgb(0 0 0 / 0.15));
  --theme-shadow-filter-medium: drop-shadow(0px 1px 2px rgb(0 0 0 / 0.2));
  --theme-shadow-filter-heavy: drop-shadow(0px 1px 3px rgb(0 0 0 / 0.25));

  --theme-border-radius: 6px;

  --theme-button-color: #FFFFFF;
  --theme-button-background: #0082c8;
  --theme-button-border-color: #0082c8;
  --theme-button-border-width: 1px;
  --theme-button-border-radius: 100px;
  --theme-button-padding-v: 10px;
  --theme-button-padding-h: 20px;
  --theme-button-padding: var(--theme-button-padding-v) var(--theme-button-padding-h);
  --theme-button-font-family: Poppins;
  --theme-button-font-size: 16px;
  --theme-button-font-weight: 700;
  --theme-button-text-transform: none;

  --theme-cards-background-color: #FFFFFF;
  --theme-cards-border-color: rgba(0, 0, 0, 0%);
  --theme-cards-box-shadow-color: #CCCCCC;
  --theme-cards-box-shadow-light-color: #FAFAFA;
  --theme-cards-border-radius: 16px;

  --theme-form-heading-color: ;
  --theme-form-label-color: #000000;
  --theme-form-help-text-color: #000000;
  --theme-form-border-color: rgba(0, 0, 0, 65%);
  --theme-form-focused-border-color: #000000;

}    
	/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

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

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

body {
	margin: 0;
}

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

main {
	display: block;
}

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

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

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

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

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

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

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

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

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

a {
	background-color: transparent;
	text-underline-offset: 2px;
}

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

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

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

b,
strong {
	font-weight: bolder;
}

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

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

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

small {
	font-size: 80%;
}

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

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

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

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

img {
	border-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

progress {
	vertical-align: baseline;
}

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

textarea {
	overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */

details {
	display: block;
}

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

summary {
	display: list-item;
}

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

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

template {
	display: none;
}

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

[hidden] {
	display: none;
}
	/* Font smoothing */
:is(body, input, textarea, select, button) {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* improves punctuation in supported browsers */
:is(html) {
	hanging-punctuation: first last;
}

/* Improved heading in supported browsers */
:is(h1, h2, h3, h4, h5, h6) {
	text-wrap: balance;
}

/* improve readability with max-width on paragraphs and lists */
/* prevent orphans in supported browsers */
:is(p, li) {
	text-wrap: pretty;
}

.mce-content-body {
	width: 100%;
}

[data-hs-cos-type='rich_text'] > [style*='text-align: center;'] {
	margin-inline: auto;
}

:is(h1, h2, h3, h4, h5, h6):not(:last-child) {
	margin-bottom: 0.5em;
}

:is(p, ul, ol):not(:last-child) {
	margin-bottom: 1em;
}

:is(ul) {
	padding-inline-start: 1em;
}

:is(:not(pre) > code, kbd) {
	white-space: pre-wrap;
}

:is(pre) {
	direction: ltr;
	line-height: 1.5;
	max-inline-size: max-content;
	min-inline-size: 0;
	white-space: normal;
	word-break: break-word;
	writing-mode: lr;
}

pre[data-lang]::before {
	border-radius: 100px;
	color: #fefefe;
	content: attr(data-lang);
	display: block;
	background: #333;
	font-size: 12px;
	margin-bottom: 0.5em;
	padding: 4px 8px;
	width: fit-content;
}

:is(:not(pre) > code) {
	padding: 1rem;
	background: #efefef;
	border-radius: 2px;
	writing-mode: lr;
	display: inline-block;
}

:is(kbd, var) {
	padding: 0.25rem 0.5rem;
	border-width: 1px;
	border-color: #333;
	border-radius: 2px;
}
	.atlas-button,
.hs-button {
	text-decoration: none;
	display: inline-block;
	letter-spacing: 0.05em;
	white-space: nowrap;
	border-style: solid;
	cursor: pointer;
}

.atlas-button-group {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding-block: 0.5rem;
	gap: 0.5rem;
}

.atlas-button[class*='outlined'] {
	background-color: transparent;
}

.atlas-button[class*='text'] {
	background-color: transparent;
	border-color: transparent;
}

.atlas-button:not(.atlas-button--icon) .atlas-button__icon {
	display: inline-block;
	height: 0;
	margin-left: 0.7em;
	position: relative;
	vertical-align: super;
}

.atlas-button:not(.atlas-button--icon) .atlas-button__icon > span,
.atlas-button:not(.atlas-button--icon) .atlas-button__icon > div {
	display: grid;
	place-items: center;
	position: absolute;
	width: 1.25em;
	height: 1.25em;
	top: 50%;
	left: 50%;
}

.atlas-button:not(.atlas-button--icon) .atlas-button__icon svg {
	max-width: 100%;
	max-height: 100%;
	fill: currentColor;
	display: block;
}

.atlas-button__icon {
	position: relative;
	display: inline-block;
}

.atlas-button__icon {
	position: absolute;
	inset: 0;
}

.atlas-button--icon {
	aspect-ratio: 1;
	padding-inline: unset;
	position: relative;
	border: none;
}

.atlas-button--icon .atlas-button__icon > span,
.atlas-button--icon .atlas-button__icon > div {
	display: flex;
	height: calc(var(--button-icon-size, 0.8) * 100%);
	margin-block: calc((100% - (var(--button-icon-size, 0.8) * 100%)) / 2);
	justify-content: center;
	align-items: center;
}

.atlas-button--icon .atlas-button__icon svg {
	overflow: visible;
	max-height: 100%;
	fill: currentColor;
}
	/* Form */
form,
.submitted-message {
	font-family: var(--theme-body-font-family);
	padding: 1rem;
	border-radius: var(--theme-border-radius);
}

.form-title:not(:empty) {
	font-family: var(--theme-form-title-font-family);
	font-size: var(--theme-form-title-font-color);
	padding: 1rem;
	margin-bottom: 0;
	border-top-left-radius: var(--theme-border-radius);
	border-top-right-radius: var(--theme-border-radius);
}

.form-title:not(:empty) + div form {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.hs-form-field {
	margin: 0 0 1rem;
}

/* Labels */
form label {
	display: block;
	font-size: 0.875rem;
	font-weight: bold;
	padding-top: 0;
	margin-bottom: 0.35rem;
	text-align: left;
	width: auto;
}

/* Help text - legends */
form legend {
	color: var(--theme-form-help-text-color);
	font-size: 0.875rem;
}

/* Inputs */
.input {
	position: relative;
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='number'],
input[type='file'],
select,
textarea {
	background-color: var(--theme-surface-color);
	border: 1px solid;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: normal;
	padding: 0.75rem 1rem;
	width: 100%;
	border-color: var(--theme-form-border-color);
	border-radius: var(--theme-border-radius);
	color: var(--theme-text-color);
}

select {
	appearance: none;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat;
	background-position: right 0.7rem top 50%;
	background-size: 0.65rem auto;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='tel']:focus,
input[type='number']:focus,
input[type='file']:focus,
select:focus,
textarea:focus {
	outline: none;
	border: 1px solid var(--theme-form-focused-border-color);
}

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

fieldset.form-columns-0,
fieldset.form-columns-1,
fieldset.form-columns-2,
fieldset.form-columns-3 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

fieldset.form-columns-0 > div,
fieldset.form-columns-1 > div,
fieldset.form-columns-2 > div,
fieldset.form-columns-3 > div {
	width: 100%;
}

fieldset.form-columns-0 .hs-form-field,
fieldset.form-columns-1 .hs-form-field,
fieldset.form-columns-2 .hs-form-field,
fieldset.form-columns-3 .hs-form-field {
	flex-grow: 1;
	flex-basis: 135px;
}

fieldset.form-columns-0 .hs-form-field .input,
fieldset.form-columns-1 .hs-form-field .input,
fieldset.form-columns-2 .hs-form-field .input,
fieldset.form-columns-3 .hs-form-field .input {
	margin-right: 0;
}

fieldset.form-columns-0 .hs-form-field .hs-input,
fieldset.form-columns-1 .hs-form-field .hs-input,
fieldset.form-columns-2 .hs-form-field .hs-input,
fieldset.form-columns-3 .hs-form-field .hs-input {
	width: 100% !important;
	/* Style specifically for the international phone selector */
}

fieldset.form-columns-0 .hs-form-field .hs-input.hs-fieldtype-intl-phone,
fieldset.form-columns-1 .hs-form-field .hs-input.hs-fieldtype-intl-phone,
fieldset.form-columns-2 .hs-form-field .hs-input.hs-fieldtype-intl-phone,
fieldset.form-columns-3 .hs-form-field .hs-input.hs-fieldtype-intl-phone {
	display: flex;
	align-items: center;
}

fieldset.form-columns-0 .hs-form-field .hs-input.hs-fieldtype-intl-phone select,
fieldset.form-columns-1 .hs-form-field .hs-input.hs-fieldtype-intl-phone select,
fieldset.form-columns-2 .hs-form-field .hs-input.hs-fieldtype-intl-phone select,
fieldset.form-columns-3 .hs-form-field .hs-input.hs-fieldtype-intl-phone select {
	flex: 1 1 25%;
	margin-right: 10px;
}

fieldset.form-columns-0 .hs-form-field input[type='checkbox'],
fieldset.form-columns-0 .hs-form-field input[type='radio'],
fieldset.form-columns-1 .hs-form-field input[type='checkbox'],
fieldset.form-columns-1 .hs-form-field input[type='radio'],
fieldset.form-columns-2 .hs-form-field input[type='checkbox'],
fieldset.form-columns-2 .hs-form-field input[type='radio'],
fieldset.form-columns-3 .hs-form-field input[type='checkbox'],
fieldset.form-columns-3 .hs-form-field input[type='radio'] {
	width: auto !important;
}

/* Form placeholder text */
::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
	color: var(--theme-text-color);
	opacity: 0.65;
}

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

.inputs-list > li {
	display: block;
	margin: 0.7rem 0;
	padding: 0;
	width: 100%;
}

.inputs-list input,
.inputs-list span {
	font-size: 0.875rem;
	vertical-align: middle;
}

.hs-input[type='checkbox'],
.hs-input[type='radio'] {
	border: none;
	cursor: pointer;
	height: auto;
	line-height: normal;
	margin-right: 0.35rem;
	padding: 0;
	width: auto;
}

.hs-input[type='checkbox'] + label,
.hs-input[type='radio'] + label {
	display: inline-block;
	vertical-align: top;
}

/* Inputs - datepicker */
.hs-fieldtype-date .input .hs-dateinput:before {
	color: #e4e4e4;
	content: '\01F4C5';
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.fn-date-picker button,
.fn-date-picker .button {
	min-width: auto;
}

.fn-date-picker .pika-table thead th {
	color: var(--theme-text-color) !important;
	background-color: var(--theme-surface-color);
}

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

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

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

/* Inputs - file picker */
input[type='file'] {
	background-color: transparent;
	border: initial;
	box-shadow: none;
	line-height: 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;
}

form .header {
	background-color: transparent;
	border: none;
}

h3.form-title {
	color: var(--theme-form-heading-color);
}

/* GDPR */
.legal-consent-container {
	margin: 0;
}

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
	font-size: 0.875rem;
}

/* Validation */
.hs-form-required {
	color: red;
}

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

.hs-error-msg {
	color: #ef6b51;
	margin-top: 0.35rem;
	font-weight: normal;
}

/* Captcha */
.grecaptcha-badge {
	margin: 0;
	max-width: 100%;
}
}
@layer layout {
	.content-wrapper,
	.dnd-section > .row-fluid {
		max-width: var(--theme-max-content-width);
		margin-inline: auto;
	}

	.content-wrapper.footer__container {
		padding: 0 0;
	}

  .content-wrapper{
      padding: 0 20px;
  }

	.footer__container {
		max-width: 100%;
	}

	:is(.dnd-section, .content-wrapper--vertical-spacing) {
		padding-block: calc(var(--theme-horizontal-spacing) / 2);
		padding-inline: calc(var(--theme-vertical-spacing) / 2);
	}

	:is(.dnd-section, .content-wrapper--vertical-spacing)
		+ :is(.dnd-section, .content-wrapper--vertical-spacing) {
		padding-top: 0;
	}

	.row-fluid {
		align-items: flex-start;
		column-gap: calc(var(--theme-horizontal-spacing) / 2);
		row-gap: calc(var(--theme-vertical-spacing) / 2);
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.row-fluid > :where([class^='span']) {
		width: 100%;
	}

	.row-fluid > .span3,
	.row-fluid > .span2,
	.row-fluid > .span1 {
		width: calc(50% - (var(--theme-horizontal-spacing) / 2));
	}

	@media (min-width: 520px) {
		.row-fluid > .span12,
		.row-fluid > .span11,
		.row-fluid > .span10,
		.row-fluid > .span9,
		.row-fluid > .span8,
		.row-fluid > .span7,
		.row-fluid > .span6 {
			width: 100%;
		}

		.row-fluid > .span5,
		.row-fluid > .span4,
		.row-fluid > .span3,
		.row-fluid > .span2,
		.row-fluid > .span1 {
			width: 25%;
		}
	}

	@media (min-width: 768px) {
		:is(.dnd-section, .content-wrapper--vertical-spacing) {
			padding-block: var(--theme-horizontal-spacing);
			padding-inline: var(--theme-vertical-spacing);
		}

		.row-fluid {
			flex-wrap: nowrap;
			justify-content: center;
			column-gap: var(--theme-horizontal-spacing);
			row-gap: var(--theme-vertical-spacing);
		}

		.row-fluid > .span12 {
			width: 100%;
		}

		.row-fluid > .span11 {
			width: 91.667%;
		}

		.row-fluid > .span10 {
			width: 83.333%;
		}

		.row-fluid > .span9 {
			width: 75%;
		}

		.row-fluid > .span8 {
			width: 66.667%;
		}

		.row-fluid > .span7 {
			width: 58.333%;
		}

		.row-fluid > .span6 {
			width: 50%;
		}

		.row-fluid > .span5 {
			width: 41.667%;
		}

		.row-fluid > .span4 {
			width: 33.333%;
		}

		.row-fluid > .span3 {
			width: 25%;
		}

		.row-fluid > .span2 {
			width: 16.667%;
		}

		.row-fluid > .span1 {
			width: 8.333%;
		}
	}
}
@layer theme{
    html, body {
        font-size: 16px;
        font-family: var(--theme-body-font-family);
    }

    :is(p, ul, ol) {
        line-height: var(--theme-body-line-height);
    }

    h1 {
        font-family: var(--theme-h1-font-family);
        font-size: var(--theme-h1-font-size);
        line-height: var(--theme-h1-line-height);
    }
    
    h2 {
        font-family: var(--theme-h2-font-family);
        font-size: var(--theme-h2-font-size);
        line-height: var(--theme-h2-line-height);
    }
    
    h3 {
        font-family: var(--theme-h3-font-family);
        font-size: var(--theme-h3-font-size);
        line-height: var(--theme-h3-line-height);
    }
    
    h4 {
        font-family: var(--theme-h4-font-family);
        font-size: var(--theme-h4-font-size);
        line-height: var(--theme-h4-line-height);
    }
    
    h5 {
        font-family: var(--theme-h5-font-family);
        font-size: var(--theme-h5-font-size);
        line-height: var(--theme-h5-line-height);
    }
    
    h6 {
        font-family: var(--theme-h6-font-family);
        font-size: var(--theme-h6-font-size);
        line-height: var(--theme-h6-line-height);
    }

    body {
    background-color: var(--theme-body-background-color, #1d1d1d); 
    color: var(--theme-body-font-color, #ffffff);
}

h1 {
    color: var(--theme-h1-font-color, #ffffff);   
}

h2 {
    color: var(--theme-h2-font-color, #ffffff);
}

h3 {
    color: var(--theme-h3-font-color, #ffffff);
}

h4 {
    color: var(--theme-h4-font-color, #ffffff);
}

h5 {
    color: var(--theme-h5-font-color, #ffffff);
}

h6 {
    color: var(--theme-h6-font-color, #ffffff);
}

:where(a) {
    color: var(--theme-link-color, #4678EE);
}

:where(a:focus), :where(a:hover) {
    color: var(--theme-link-hover-color, #b8bfd1);
}

form,
.submitted-message {
	background-color: var(--theme-form-background-color);
}

.form-title {
	background-color: var(--theme-form-title-background-color);
	color: var(--theme-form-title-font-color);
}

form label {
	color: var(--theme-form-label-color);
}
    


    .atlas-button,
.hs-button.primary {
	padding: var(--theme-button-padding);
	font-size: var(--theme-button-font-size);
	font-family: var(--theme-button-font-family);
	font-weight: var(--theme-button-font-weight);
	text-transform: var(--theme-button-text-transform);
	border-width: var(--theme-button-border-width);
	border-radius: var(--theme-button-border-radius);
}

.atlas-button[class*='--filled'],
.hs-button.primary {
	color: var(--theme-button-color);
	background-color: var(--theme-button-background);
	border-color: var(--theme-button-border-color);
}

.atlas-button[class*='--outlined'] {
	color: var(--theme-text-color);
	border-color: var(--theme-button-border-color);
}

.atlas-button--filled-icon,
.atlas-button--outlined-icon {
	padding-right: calc(var(--theme-button-padding-h) * 1.5);
}

.atlas-button--icon {
	color: var(--theme-button-background);
}

/* Define transform of icon to prevent scroll animation override */
.atlas-button:not(.atlas-button--icon) .atlas-button__icon > span,
.atlas-button:not(.atlas-button--icon) .atlas-button__icon > div {
	transform: translate(-50%, -50%);
	transition: 0.2s transform ease-out;
}

.atlas-button:not(.atlas-button--icon):hover .atlas-button__icon > span,
.atlas-button:not(.atlas-button--icon):focus .atlas-button__icon > span {
	transform: translate(-25%, -50%);
}
    



    
    
    main h1 {font-size: 
             
            
            clamp(1.5rem, 14.516129032258064vw + -3.217741935483871rem, 3.75rem)
        ;}

    
    
    main h2 {font-size: 
             
            
            clamp(1.5rem, 12.096774193548388vw + -2.431451612903226rem, 3.375rem)
        ;}

    
    
    main h3 {font-size: 
             
            
            clamp(1.3125rem, 8.064516129032258vw + -1.3084677419354838rem, 2.5625rem)
        ;}

    
    
    main h4 {font-size: 
             
            
            clamp(1.125rem, 4.838709677419355vw + -0.4475806451612903rem, 1.875rem)
        ;}

    
    
    main h5 {font-size: 
             
            
            clamp(1.5625rem, -0.8064516129032258vw + 1.8245967741935485rem, 1.4375rem)
        ;}

    
    
    main h6 {font-size: 
             
            
            clamp(1.125rem, -0.4032258064516129vw + 1.2560483870967742rem, 1.0625rem)
        ;}

    .atlas-cards-card-background{
    background-color: var(--theme-cards-background-color);
}

.atlas-cards-card{
    border: 1px solid var(--theme-cards-border-color);
    box-shadow: var(--theme-box-shadow);
}

.atlas-cards-card,
.atlas-card::before,
.atlas-cards-wrapper-tilt,
.atlas-cards-wrapper{
    border-radius: var(--theme-cards-border-radius);
}
    

}
.blog-header .content-wrapper{
    max-width: none;
}

.blog-header__author-social-links {
    display: flex;
    justify-content: center;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.blog-header__author-social-links a {
    display: inline-block;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    margin: 0 8px;
    position: relative;
    cursor: pointer;
}

.blog-header__author-social-links svg {
    fill: var(--theme-body-font-color);
    height: 100%;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.blog-filter {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 32px 0;
}

.blog-search {
    flex-basis: 400px;
    width: 100%;
    margin: 32px 0 0;
}

/* Blog Cards */

@layer module{

    .atlas-blog-card, .atlas-blog-cards-grid{
        display: flex;
        flex-wrap: wrap;
        padding: 32px 0;
    }

    .atlas-blog-card:after{
        content: "";
        flex: auto;
    }

    .atlas-blog-card__post-wrapper{
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: 100%;
        padding: 24px;
    }

    @media screen and (min-width: 768px) {
        .atlas-blog-card__post-wrapper{
            flex-basis: calc(100% / 2);
        }
    }

    @media screen and (min-width: 1000px) {
        .atlas-blog-card__post-wrapper{
            flex-basis: calc(100% / 3);
        }
    }

    .atlas-blog-card__post{
        display: flex;
        flex-direction: column;
        background-color: var(--theme-cards-background-color);
        border: 0.5px solid var(--theme-cards-border-color);
        box-shadow: var(--theme-box-shadow);
        border-radius: var(--theme-cards-border-radius);
        height: 100%;
        overflow: hidden;
    }

    .atlas-blog-card__post img{
        height: auto;
        max-width: 100%;
    }

    .atlas-blog-card__post-content{
        padding: 30px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        flex-grow: 1;
    }

    .atlas-blog-card__post-content h3{
        margin: 0 0 1rem;
    }

    .atlas-blog-card__post-content h3 a{
        color: var(--theme-body-font-color);
        text-decoration: none;
    }

    .atlas-blog-card__post-content h3 a:hover, .atlas-blog-card__post-content h3 a:visited{
        color: var(--theme-body-font-color);
    }

    .atlas-blog-card__post-preheader{
        font-weight: bold;
        color: var(--theme-primary-color);
        display: block;
        margin: 0 0 .75rem;
    }

    .atlas-blog-card__post-meta{
        display: flex;
        justify-content: space-between;
        margin: 32px 0 0;
        font-size: .8rem;
        opacity: 0.8;
        color: var(--theme-body-font-color);
    }

    .atlas-blog-card__post-meta span{
        display: inline-block;
    }

    .atlas-blog-card__post-image{
        display: block;
        background-image: url('//144336479.fs1.hubspotusercontent-eu1.net/hubfs/144336479/raw_assets/public/@marketplace/kalungi_com/Atlas_2_SaaS_Website_Theme/images/grayscale-mountain.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 63%;
    }

    .atlas-blog-card__author h2{
        margin: 32px 0 1.5rem;
    }

    .atlas-blog-card__author hr{
        height: 2px;
        background-color: #DCDCDC;
    }
    
}
/* Blog post */
.atlas-blog-header--post {
    min-height: 520px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.atlas-blog-post {
    margin: 0 auto;
    padding: 4.5rem 0;
}

.atlas-blog-post_breadcrumbs{
    margin: 0 auto 25px;
    max-width: 1200px;
}

.atlas-blog-post_breadcrumbs span{
    line-height: 25px;
}

.atlas-blog-post__menu .atlas-blog-post_breadcrumbs{
    margin: 0 auto 10px;
}

.atlas-blog-post__meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}

.atlas-blog-post__meta a {
    color: var(--theme-text-color);
    transition: color .25s ease-in;
}

.atlas-blog-post__meta a:hover {
    color: var(--theme-primary-color);;
    text-decoration: none;
}

.atlas-blog-post__bio {
    display: flex;
    align-items: center;
}

.atlas-blog-post__timestamp {
    color: var(--theme-text-color);
}

.atlas-blog-post__divider {
    margin: 64px 0 52px;
}

.atlas-blog-post__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 38px;
}

.atlas-blog-post__preheader {
    font-size: 1rem;
    font-weight: bold;
    color: var(--theme-primary-color);;
    display: block;
    margin: 0 0 10px;
}

.atlas-blog-post__title {
    margin: 0 0 1rem;
}

.atlas-blog-post__summary {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 2.5rem;
}

.atlas-blog-post__body-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.atlas-blog-post__body-wrapper-2 {
    max-width: 800px;
}

.atlas-blog-header__image-featured img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.atlas-blog-header__image-featured{
    margin: 0 0 40px;
}

.atlas-blog-post__body-wrapper-2-menu {
    max-width: 700px;
}

.atlas-blog-post__menu {
    width: 280px;
}

.atlas-blog-post__menu-content {
    border: 0.5px solid var(--theme-cards-border-color);
    box-shadow: var(--theme-box-shadow);
    border-radius: var(--theme-cards-border-radius);
    background-color: var(--theme-cards-background-color);
    width: 100%;
}

.atlas-blog-post__menu-content__preheader {
    font-size: 1rem;
    font-weight: bold;
    color: var(--theme-primary-color);
    display: block;
    line-height: 1rem;
    margin: 0 0 .75rem;
}

.atlas-blog-post__menu-content__content h1, .atlas-blog-post__menu-content__content h2, .atlas-blog-post__menu-content__content h3, .atlas-blog-post__menu-content__content h4, .atlas-blog-post__menu-content__content h5, .atlas-blog-post__menu-content__content h6 {
    font-weight: bold;
    margin: 0 0 1rem;
}

.atlas-blog-post__menu-content__content p {
    margin: 0 0 2rem;
}

.atlas-blog-post__menu-form > div {
    display: none;
}

.atlas-blog-post__menu-form.local .local-form {
    display: block;
}

.atlas-blog-post__menu-form.global .global-form {
    display: block;
}

@media screen and (max-width: 1290px) {
    .atlas-blog-post__menu-form {
        display: none;
    }
}

.atlas-blog-post__menu.absolute-bottom {
    position: absolute;
    transform: translateX(-100%);
    bottom: 0;
    top: auto;
    padding-right: 20px;
}

.atlas-blog-post__menu.absolute-bottom.right {
    right: 0;
    transform: translateX(100%);
    padding-right: 0;
    padding-left: 20px;
}

.atlas-blog-post__menu.absolute {
    position: absolute;
    transform: translateX(-100%);
    padding-right: 20px;
}

.atlas-blog-post__menu.absolute.right {
    right: 0;
    transform: translateX(100%);
    padding-right: 0;
    padding-left: 20px;
}

.atlas-blog-post__menu.sticky {
    position: fixed;
    top: 100px;
    transform: translateX(-100%);
    padding-right: 20px;
}

.atlas-blog-post__menu.sticky.right {
    left: 50%;
    transform: translateX(calc(700px/2));
    padding-right: 0;
}

@media screen and (max-width: 1290px) {
    .atlas-blog-post__menu.sticky.right {
        left: auto;
        transform: none;
        padding: 0;
        margin-bottom: 40px;
    }
}

.atlas-blog-post__menu.absolute .atlas-social-sharing, .atlas-blog-post__menu.absolute.right .atlas-social-sharing, .atlas-blog-post__menu.sticky .atlas-social-sharing, .atlas-blog-post__menu.absolute-bottom .atlas-social-sharing {
    margin-bottom: 40px;
}

.atlas-blog-post__menu.absolute .button, .atlas-blog-post__menu.absolute .hs-button, .atlas-blog-post__menu.absolute.right .button, .atlas-blog-post__menu.absolute.right .hs-button, .atlas-blog-post__menu.sticky .button, .atlas-blog-post__menu.sticky .hs-button, .atlas-blog-post__menu.absolute-bottom .button, .atlas-blog-post__menu.absolute-bottom .hs-button {
    width: 100%;
}

.atlas-blog-post__menu.absolute .atlas-rich-text__form, .atlas-blog-post__menu.absolute.right .atlas-rich-text__form, .atlas-blog-post__menu.sticky .atlas-rich-text__form, .atlas-blog-post__menu.absolute-bottom .atlas-rich-text__form {
    max-width: 1290px;
}

@media screen and (max-width: 1290px) {
    .atlas-blog-post__menu.absolute, .atlas-blog-post__menu.absolute.right, .atlas-blog-post__menu.sticky, .atlas-blog-post__menu.absolute-bottom {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        right: auto;
        transform: none;
        padding: 0;
        margin-bottom: 40px;
    }
    .atlas-blog-post__menu.absolute .button, .atlas-blog-post__menu.absolute .hs-button, .atlas-blog-post__menu.absolute.right .button, .atlas-blog-post__menu.absolute.right .hs-button, .atlas-blog-post__menu.sticky .button, .atlas-blog-post__menu.sticky .hs-button, .atlas-blog-post__menu.absolute-bottom .button, .atlas-blog-post__menu.absolute-bottom .hs-button {
        width: auto;
    }
}

.atlas-blog-post__body-contents-wrapper {
    position: relative;
}

.atlas-blog-post__body img {
    max-width: 100%;
}

/* Blog related posts */
.atlas-blog-more {
    padding: 2rem 0;
}

.atlas-blog-more--centered h2 {
    text-align: center;
}

/* Blog comments */
.atlas-blog-comments {
    margin: 0 auto;
    max-width: 680px;
}

.atlas-blog-comments form {
    max-width: 100%;
}

.atlas-blog-comments .hs-submit {
    text-align: center;
}

.atlas-blog-comments .comment-reply-to {
    border: 0 none;
    outline: none;
}

.atlas-blog-comments .comment-reply-to:hover {
    background-color: transparent;
    text-decoration: underline;
    color: var(--theme-body-font-color);
}
@layer overrides {
    /* Move HubSpot Tools Menu out of the way */
    /* HubSpot probably won't allow this */
    /* body .hs-tools-menu { */
        /* top: 2px !important; */
        /* right: 2px !important; */
        /* min-height: 26px !important; */
        /* min-width: 26px !important; */
        /* box-shadow: none !important; */
    /* } */

    /* body .hs-tools-menu img.hs-sprocket { */
        /* width: 20px !important; */
    /* } */

    /* Special padding for icon only button group */
    .atlas-button-group.just-icons .atlas-button--icon {
        padding: calc(var(--button-icon-size) * var(--theme-button-padding-h));
    }

    .atlas-button-group.just-icons .atlas-button--icon .atlas-button__icon > div,
    .atlas-button-group.just-icons .atlas-button--icon .atlas-button__icon > span {
        height: 100%;
        margin-block: 0;
    }

}