/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
    box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
    font-weight: 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;
}

/* 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: 768px) {
    .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));
}

}

/* Images */

.image-container {
    width: 100%;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .image-container img {
        margin-bottom: 1rem;
    }
}

/* Layout classes */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

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

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

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

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

@media (max-width: 991px) {
    .mobile-justify-left {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

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

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

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

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

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

@media (max-width: 991px) {
    .mobile-items-left {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

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

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


.content-wrapper {
    margin: 0 auto;
    padding: 0 1rem;
}

@media screen and (min-width: 1170px) {
    .content-wrapper {
        padding: 0;
    }
}

.dnd-section > .row-fluid {
    margin: 0 auto;
}

.dnd-section .dnd-column {
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .dnd-section .dnd-column {
        padding: 0;
    }
}

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

/* Global */

body {
	line-height: 28px;
}

/* Links */

a {
	cursor: pointer;
	transition: all 0.3s ease;
}

/* white text */
.text-white,
h1.text-white, .h1.text-white,
h2.text-white, .h2.text-white,
h3.text-white, .h3.text-white,
h4.text-white, .h4.text-white,
h5.text-white, .h5.text-white,
h6.text-white, .h6.text-white {
	color: #fff;
}

/* text align */
.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

@media (max-width: 991px) {

	.mobile-text-left {
		text-align: left;
	}

	.mobile-text-center {
		text-align: center;
	}

	.mobile-text-right {
		text-align: right;
	}

}

/* headlines */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 120%;
}

/* lists */

ul, ol {
	padding-inline-start: 20px;
}


/* General Button Styling */

button,
input[type=submit],
.hs-button,
.btn {
	padding: 10px 45px 10px 20px;
	transition: all 0.35s ease-in-out;
	cursor: pointer;
	border: 1px solid currentColor;
	text-align: center;
	position: relative;
	font-weight: 900;
	text-decoration: none;
}

.btn-container .btn {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn:not(:last-of-type) {
    margin-right: 0.5rem;
}

button:hover,
.btn:hover {
	font-weight: 900;
	text-decoration: none;
}

button:focus,
.btn:focus {
  font-weight: 900;
	text-decoration: none;
}

.footer__content .richtext-container .btn-footer:after,
.btn-container .btn-white:after,
.btn-container .btn-primary:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23FFF'%3E%3C!--! Font Awesome Pro 6.0.0 by@fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons,Inc.--%3E%3Cpath d='m443.7 266.8-165.9 176c-3.3 3.5-8.7 5.2-12.3 5.2-3.986 0-7.988-1.375-11.16-4.156-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59C7.419 272 0 264.845 0 256.9S7.421 240 16.59 240h377.3L253.19 90.7c-6.157-6.531-5.655-16.66 1.118-22.59 6.789-5.906 17.27-5.469 23.45 1.094l165.9 176a15.732 15.732 0 0 1 .042 21.596z'/%3E%3C/svg%3E") no-repeat 50%;
    background-size: 14px !important;
    content: "";
    display: inline-block;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

.btn-container .btn-white:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23000'%3E%3C!--! Font Awesome Pro 6.0.0 by@fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons,Inc.--%3E%3Cpath d='m443.7 266.8-165.9 176c-3.3 3.5-8.7 5.2-12.3 5.2-3.986 0-7.988-1.375-11.16-4.156-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59C7.419 272 0 264.845 0 256.9S7.421 240 16.59 240h377.3L253.19 90.7c-6.157-6.531-5.655-16.66 1.118-22.59 6.789-5.906 17.27-5.469 23.45 1.094l165.9 176a15.732 15.732 0 0 1 .042 21.596z'/%3E%3C/svg%3E") no-repeat 50%;
}

.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

.btn-container .btn-white:hover {
	background-color: #007c80;
	color: #fff;
}

.btn-container .btn-white:hover:after {
	 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23FFF'%3E%3C!--! Font Awesome Pro 6.0.0 by@fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons,Inc.--%3E%3Cpath d='m443.7 266.8-165.9 176c-3.3 3.5-8.7 5.2-12.3 5.2-3.986 0-7.988-1.375-11.16-4.156-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59C7.419 272 0 264.845 0 256.9S7.421 240 16.59 240h377.3L253.19 90.7c-6.157-6.531-5.655-16.66 1.118-22.59 6.789-5.906 17.27-5.469 23.45 1.094l165.9 176a15.732 15.732 0 0 1 .042 21.596z'/%3E%3C/svg%3E") no-repeat 50%;
}

.btn-white.btn-outline,
.btn-white.btn-outline:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-fullwidth {
    width: 100%;
}

.btn-container .btn.uppercase {
	text-transform: uppercase;
}

/* Button Icon */
.btn .icon-wrapper {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.btn:hover .icon-wrapper,
.btn:focus .icon-wrapper,
.btn:active .icon-wrapper {
    margin-left: 1rem;
}

.btn .icon-wrapper .icon {
    display: flex;
    align-items: center;
}

.btn .icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.btn-white.btn-outline .icon-wrapper svg {
    fill: #fff;
}

/* CTA styling */

.cta-container .hs-cta-node {
    display: flex;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.cta-container .hs_cos_wrapper_type_cta:not(:last-of-type) .hs-cta-node {
    margin-right: 0.5rem;
}


/* 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;
  margin-bottom: 0.35rem;
}

/* Layout */

/* 3 columns */
form.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 33.333333%;
}

form.hs-form fieldset .field,
form.hs-form fieldset .hs-richtext {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* 1 col */
form.hs-form fieldset.form-columns-1 input.hs-input:not([type=checkbox]) {
  width: 100%;
}

form.hs-form fieldset.form-columns-1 textarea.hs-input {
  width: 100%;
}

form.hs-form fieldset.form-columns-1 .hs-form-booleancheckbox input.hs-input {
  width: auto;
}

@media (max-width: 767px) {
  form.hs-form fieldset.form-columns-3 input.hs-input,
  form.hs-form fieldset.form-columns-3 .hs-form-field .hs-input,
  form.hs-form fieldset.form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }
}

/* 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% !important;
  border: 1px solid;
}

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

.legal-consent-container .hs-form-booleancheckbox-display input {
	margin-top: 7px;
}

/* Validation */

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

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

.no-list.hs-error-msgs {
	background-color: #DC3444;
}

.no-list.hs-error-msgs li {
	margin-top: 0;
}

.hs-error-msg {
  color: #fff;
	padding: 2px 10px;
}

.legal-consent-container .hs-error-msgs label {
	color: #fff;
}

/* Submit button */

form .actions {
  display: flex;
}

.form-container.submit-left form .actions {
  justify-content: flex-start;
}

.form-container.submit-center form .actions {
  justify-content: center;
}

.form-container.submit-right form .actions {
  justify-content: flex-end;
}

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 20px;
	padding: 10px 20px;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



/* Background */

.form-container.background {
	background-color: #007c80;
	padding: 40px 40px 45px;
}

.form-container.background label,
.form-container.background .hs-form-required,
.form-container.background .legal-consent-container .hs-error-msgs label,
.form-container.background a,
.form-container.background a:hover,
.form-container.background .submitted-message,
.form-container.background h1,
.form-container.background h2,
.form-container.background h3,
.form-container.background h4,
.form-container.background h5,
.form-container.background h6 {
	color: #fff;
}

.form-container.background a:hover {
	text-decoration: none;
}

.form-container.background input[type=submit] {
	background-color: #fff;
	border-color: #fff;
	color: #333;
}

.form-container.background input[type=submit]:hover,
.form-container.background input[type=submit]:active,
.form-container.background input[type=submit]:focus {
	background-color: #007c80;
	color: #fff;
}

/*
.form-container.background input[type=submit]:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23007C80'%3E%3C!--! Font Awesome Pro 6.0.0 by@fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons,Inc.--%3E%3Cpath d='m443.7 266.8-165.9 176c-3.3 3.5-8.7 5.2-12.3 5.2-3.986 0-7.988-1.375-11.16-4.156-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59C7.419 272 0 264.845 0 256.9S7.421 240 16.59 240h377.3L253.19 90.7c-6.157-6.531-5.655-16.66 1.118-22.59 6.789-5.906 17.27-5.469 23.45 1.094l165.9 176a15.732 15.732 0 0 1 .042 21.596z'/%3E%3C/svg%3E") no-repeat 50%;
}

.form-container.background input[type=submit]:hover:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23fff'%3E%3C!--! Font Awesome Pro 6.0.0 by@fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons,Inc.--%3E%3Cpath d='m443.7 266.8-165.9 176c-3.3 3.5-8.7 5.2-12.3 5.2-3.986 0-7.988-1.375-11.16-4.156-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59C7.419 272 0 264.845 0 256.9S7.421 240 16.59 240h377.3L253.19 90.7c-6.157-6.531-5.655-16.66 1.118-22.59 6.789-5.906 17.27-5.469 23.45 1.094l165.9 176a15.732 15.732 0 0 1 .042 21.596z'/%3E%3C/svg%3E") no-repeat 50%;
}*/
/* background classes */

.background-white {
    background-color: white;
}

.background-none {
    background-color: transparent;
}

/* shadow */

.shadow {
    -webkit-box-shadow: 4px 4px 1rem rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 1rem rgba(0, 0, 0, 0.2);
}

/* border */
.border {
    border: 2px solid;
}

.border-white {
    border-color: white;
}

/* fills */
.fill-white,
.fill-white svg {
    fill: white;
}

/* images */

img.circle {
    border-radius: 100%;
}

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

/* Landing */

.header.landing .search-icon {
	display: none;
}

/* Header DND sections */

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

/* Header container */
.header-content-wrapper {
	padding: 0 20px;
	height: 100%;
	width: 100%;
	display: grid;
	grid-template-columns: calc(50% - 570px) 1fr auto auto calc(50% - 570px);
}

.header {
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	z-index: 999;
	transition: all 0.3s ease;
}

.header__container {
	height: 100%;
	padding: 0;
}

.header.scroll {
	height: 67px;
}

@media (max-width: 767px) {
	.header {
		height: auto;
	}
}

/* Header Styles */

.header.default.shadow,
.header.transparent.scroll.shadow {
	box-shadow: 0 3px 6px 0 rgba(0,0,0,0.29);
}

.header.default.border,
.header.transparent.scroll.border {
	border-bottom: 1px solid #dfdfdf;
}

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

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
	height: 22px;
}

.header__logo img {
	max-height: 22px; /* 100px minus padding */
	width: auto;
	height: auto;
	transition: all 0.3s ease;
	margin-right: 50px;
	margin-left: 30px;
}

.header.scroll .header__logo img {
	/*transform: scale(50%);*/
	max-height: 41px;
}

@media (max-width: 500px) {
	.header .header__logo img {
		max-height: 41px;
	}
}

/* Search bar */
.header .search-icon {
	margin: 0 10px;
	height: 30px;
}

.header .search-icon object {
	filter: invert(35%) sepia(0) saturate(1265%) hue-rotate(225deg) brightness(90%) contrast(84%);
}

.page-search {
	margin-left: 1rem;
	position: relative;
	padding: 10px 0;
}

.page-search .search-toggle .icon-container svg {
	width: 18px;
	height: 18px;
	transition: all 0.3s ease;
}

.page-search .search-input {
	position: absolute;
	right: -1rem;
	width: 400px;
	padding-top: 50px;
	transition: all 0.3s ease;
	opacity: 0;
	z-index: -5;
}

.js-search-open .page-search .search-input {
	opacity: 1;
	z-index: 99999;
}

/* Search Module Styles */

.hs-editor-hide-until-active {
	display: none;
}

.inpage-editor-active-field .hs-editor-hide-until-active {
	display: block;
}

.hs-search-field {
	position: relative;
}

.hs-search-field__input {
	box-sizing: border-box;
	width: 100%;
	flex: 1;
}

.hs-search-field__bar button svg {
	height: 18px;
}

button.hs-search-field__button {
	padding: 1rem;
	margin-left: 1rem;
}

button.hs-search-field__button .hs_cos_wrapper_type_icon {
	display: flex;
}

.hs-search-field__suggestions {
	padding: 0;
	margin: 0;
	list-style: none;
}

.hs-search-field--open .hs-search-field__suggestions,
.inpage-editor-active-field .hs-search-field__suggestions {
	position: absolute;
	width: 100%;
	border: 1px solid #cdcdcd;
	background-color: #fff;
	box-shadow: 1px 10px 16px -9px rgba(122, 122, 122, 0.75);
}

.hs-search-field__suggestions li {
	display: block;
	padding: 0;
	margin: 0;
}

.hs-search-field__suggestions .results-for {
	font-weight: bold;
}

.hs-search-field__suggestions a,
.hs-search-field__suggestions .results-for {
	display: block;
	padding: 0 10px;
	line-height: 1.7rem;
}

.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
	background-color: rgba(0, 0, 0, 0.1);
	outline: none;
}

.hs-search-field__input:focus {
	outline-style: solid;
}

.hs-search-field__suggestions-container {
	position: relative;
	flex-basis: 100%;
}

.hs-search-field__form {
	display: flex;
	flex-wrap: wrap;
}

.hs-search-field__label {
	flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__input {
	flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__button {
	margin-top: 0.725rem;
	margin-right: 0.725rem;
}

.hs-search-field__bar--button-align-right .hs-search-field__button {
	margin-right: 0;
	margin-left: 0.725rem;
	order: 2;
}

.hs-search-field__bar--button-beneath .hs-search-field__suggestions-container {
	min-width: 75%;
	flex-basis: auto;
	flex-grow: 1;
}

.hs-search-field__button--labelled .hs_cos_wrapper_type_icon {
	margin-right: 0.5rem;
}

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


@media (min-width: 767px) {

}

@media (max-width: 767px) {

}

/* Language switcher */

.language-switcher {
	margin: 0 10px;
	text-transform: uppercase;
	position: relative;
}

.language-switcher .current-language {
	padding: 0;
	border: 2px solid #575757;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
}

.language-switcher .current-language > span {
	padding: 6px 6px 4px;
	min-width: 32px;
	text-align: center;
}

.language-switcher .available-translations {
	list-style-type: none;
	position: absolute;
	padding: 0 10px 10px;
	margin: 0;
	width: calc(100% + 20px);
	background: #fff;
	transition: all 0.3s ease;
	opacity: 0;
	z-index: -5;
	left: -10px;

}


.language-switcher .available-translations li {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
	transition: all 0.2s ease;
	display: none;
	border: 2px solid #575757;
	border-top: 0;
}

.language-switcher .available-translations li:hover {
	background: #f5f5f5;
}

.language-switcher .available-translations li a {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	text-decoration: none;
	padding: 6px 6px 4px;
}

.language-switcher:hover .available-translations,
.language-switcher:focus .available-translations,
.language-switcher:focus-visible .available-translations,
.language-switcher:active .available-translations,
.js-lang-open .language-switcher .available-translations {
	opacity: 1;
	z-index: 99999;
}

.language-switcher:hover .available-translations li,
.js-lang-open .language-switcher .available-translations li {
	display: list-item;
}

@media (max-width: 991px) {

	.language-switcher .available-translations,
	.language-switcher:active .available-translations,
	.language-switcher:focus .available-translations,
	.language-switcher:focus-visible .available-translations,
	.language-switcher:hover .available-translations {
		opacity: 0;
		height: 0;
		overflow: hidden;
	}

	.js-lang-open .language-switcher .available-translations {
		opacity: 1;
		height: auto;
		overflow: visible;
	}

	.language-switcher {
		width: 100%;
	}

	.language-switcher .current-language {
		width: fit-content;
		justify-content: center;
		margin: 0 10px;
	}

	.language-switcher .available-translations {
		bottom: 0;
		left: 0;
		transform: translateY(100%);
		width: 100%;
	}
	
	.language-switcher .available-translations li {
		min-width: 36px;
	}
}

/* Navigation */

.header .header__menu {
	width: 100%;
}

.header .header__menu--main a,
.header .header__menu--main a.btn-header {
	text-decoration: none;
	font-weight: 700;
}

.header__menu nav > a {
	padding: 27px 15px 10px;
}

.header .btn-header {
	transition: all 0.3s ease;
	margin-bottom: 10px;
	padding: 20px;
	height: 90px;
	display: flex;
	align-items: flex-end;
	line-height 25px;
	font-size: 15px;
}

.header.scroll .btn-header {
	padding: 0.5rem 1rem;
	margin-bottom: 0;
	height: 67px;
}

/* Mobile toggles */

.hamburger-switch,
.menu-close,
.header.landing .hamburger-switch {
	display: none;
}

.hamburger-switch svg,
.menu-close svg {
	width: 2rem;
	height: 2rem;
	transition: all 0.3s ease;
}

.header.scroll .hamburger-switch svg {
	width: 1.5rem;
	height: 1.5rem;
}

@media (max-width: 991px) {
	.header-content-wrapper {
		grid-template-columns: 1fr 54px 50px 40px;
		height: 67px;
		padding: 0 15px;
	}
	
	.header__logo img {
		margin: 0;
	}
	
	.hamburger-switch {
		display: block;
	}

	.hamburger-switch:hover {
		cursor: cursor;
	}

	.header.landing .header__menu,
	.burger-menu-container {
		display: none;
	}

	/* .js-menu-open .header__menu--main */
	.js-menu-open .burger-menu-container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: absolute;
		z-index: 1;
		top: 0;
		right: 0;
		width: 50vw;
		height: 100vh;
		padding: 4rem 2rem;
	}

	.header__menu--main {
		display: flex;
		flex-direction: column;
	}

	.language-switcher {
		margin: 0;
	}


	.header__menu nav > a:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 2rem;
	}

	.js-menu-open .menu-close {
		display: block;
		position: absolute;
		z-index: 2;
		top: 1rem;
		right: 1rem;
	}

	.js-menu-open .menu-close:hover {
		cursor: pointer;
	}

	.header.scroll .header__menu nav > .btn-header {
		padding: 1rem 2rem;
	}
}

@media (max-width: 767px) {
	body.js-menu-open {
		overflow: hidden;
	}

	.js-menu-open .burger-menu-container {
		width: 100vw;
		overflow-y: scroll;
	}

	.js-menu-open .menu-close {
		right: unset;
		left: 1rem;
	}
}


/* footer container */

.footer__content {
	padding-top: 45px;
	padding-bottom: 85px;
}

/* text styles */

.footer-headline {
	margin-bottom: 1rem;
	padding-top: 2rem;
}

@media (max-width: 991px) {
	.footer-headline {
		margin-top: 2.5rem;
	}
}

/* layout classes */

.footer-col-3 {
	width: calc(100% / 3);
}

.footer-col-4 {
	width: 25%;
}

.footer-col-5 {
	width: 20%;
}

.footer-col-6 {
	width: calc(100% / 6);
}

@media (max-width: 991px) {
	.footer-col-3,
	.footer-col-4,
	.footer-col-5,
	.footer-col-6 {
		width: 50%
	}
}

@media (max-width: 767px) {
	.footer-col-3,
	.footer-col-4,
	.footer-col-5,
	.footer-col-6 {
		width: 100%
	}
}

/* responsive layout */
@media screen and (max-width: 1050px) and (min-width: 768px) {
	.socket .content-wrapper {
		flex-direction: column;
	}
	
	.socket .socials-container {
		margin-left: 0 !important;
		margin-top: 1rem;
	}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
	.socket .copyright:after {
		display: none;
	}
}

/* footer menu */
ul.footer-menu {
	list-style-type: none;
	padding-inline-start: 0;
	margin: 0;
}

/*
ul.footer-menu li:not(:last-of-type) {
	margin-bottom: 0.5rem;
}*/

ul.footer-menu a,
.footer__content .richtext-container a {
	color: #fff !important;
}

.footer__content .richtext-container a:hover {
	color: #007c80 !important;
}

ul.footer-menu a:hover,
.footer__content .richtext-container a:hover {
	cursor: pointer;
	text-decoration: none;
}

.footer__content .richtext-container p {
	margin-top: 0;
}

.footer__content .richtext-container .btn-footer {
	display: block;
	text-transform: uppercase;
	font-weight: 900;
	text-decoration: none;
	font-size: 13px;
	letter-spacing: .16px;
	line-height: 20px;
}

/* footer images */

.footer__content .footer-img {
	max-width: 100%;
}

@media screen and (max-width: 991px) {
	.footer__content .footer-img {
		margin: 15px 0;
	}
}

/* social media icons */
footer .socials-container .social-channel .icon-wrapper svg {
	width: 1.5rem;
	height: 1.5rem;
	transition: all 0.3s ease;
}

footer .socials-container .social-channel .icon-wrapper:hover svg {
	cursor: pointer;
}

footer .socials-container .social-channel:not(:last-of-type) .icon-wrapper svg {
	/*margin-right: 0.5rem;*/
}

/* socket, lower footer */

.socket {
	padding: 1rem 15px;
	font-weight: 500;
}

ul.socket-menu {
	list-style-type: none;
	padding-inline-start: 0;
	margin: 0;
}

.socket .copyright,
ul.socket-menu > li {
	padding: 5px 10px;
	position: relative;
}

ul.socket-menu > li a {
	text-decoration: none;
}

ul.socket-menu > li a:hover {
	color: #007c80;
}

.socket .copyright:after,
ul.socket-menu > li:not(:last-child):after {
    background: #333;
    content: "";
    height: 15px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
}

.socket .socials-container {
	margin-left: 2rem;
}

.socket .socials-container .social-channel .icon-wrapper {
	background-color: #007c80;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	margin: 0 5px;
}

.socket .socials-container .social-channel .icon-wrapper:hover {
	background-color: #868e96;
}

.socket .socials-container .social-channel .icon-wrapper svg {
	width: 20px;
	height: 20px;
	transition: all 0.3s ease;
}

@media (max-width: 991px) {
	.socket .copyright,
	.socket .socket-content {
		width: 100%;
	}

	.socket .copyright {
		margin-bottom: 1rem;
	}

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

@media (max-width: 767px) {
	.socket .content-wrapper {
		justify-content: center;
	}
	
	.socket .socket-content > * {
		width: 100%;
	}
	
	.socket .copyright,
	ul.socket-menu > li {
		width: 100%;
		text-align: center;
	}
	
	.socket .copyright:after,
	ul.socket-menu > li:not(:last-child):after {
		display: none;
	}

	.socket .socials-container {
		margin-top: 20px;
		margin-left: 0;
	}

	.socket .socials-container .social-channel .icon-wrapper svg {
		width: 1.5rem;
		height: 1.5rem;
	}

}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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

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

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