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

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.hsfc-Form {
    --hsf-default-heading__font-family: var(--primary-font);
    --hsf-default-heading__color: var(--blue-primary);
  
    --hsf-default-richtext__font-family: var(--primary-font);
    --hsf-default-richtext__font-size: var(--form-font-size);
    --hsf-default-richtext__color: var(--blue-primary);
  
    --hsf-default-button__font-family: var(--primary-font);
    --hsf-default-button__font-size: 14px;
    --hsf-default-button__color: var(--white);
    --hsf-default-button__background-color: var(--blue-primary);
    --hsf-default-button__border-radius: 0;
    --hsf-default-button__border-style: solid;
    --hsf-default-button__border-width: 1px;
    --hsf-default-button__padding: 8px 20px;
    --hsf-default-button--hover__background-color: var(--white);
    --hsf-button--hover__border-color: var(--blue-primary);
    --hsf-button--hover__color: var(--blue-primary);
  
    --hsf-default-field-label__font-family: var(--primary-font);
    --hsf-default-field-label__font-size: var(--form-font-size);
    --hsf-default-field-label__color: var(--blue-primary);
  
    --hsf-default-field-input__placeholder-color: var(--form-placeholder-color);
  
    --hsf-default-field-description__font-family: var(--primary-font);
  --hsf-default-field-description__font-size: var(--primary-font);
    --hsf-default-field-description__color: var(--blue-primary);
  
    --hsf-default-erroralert__font-family: var(--primary-font);
    --hsf-default-erroralert__color: var(--red-primary);
  
    --hsf-default-field-input__font-size: var(--form-font-size);
    --hsf-default-field-input__font-family: var(--primary-font);
    --hsf-default-field-input__background-color: var(--gray50);
    --hsf-default-field-input__border-color: var(--blue-primary);
    --hsf-default-field-input__border-width: 0 0 1px 0;
    --hsf-default-field-input__border-radius: 0;
    --hsf-default-field-input__padding: 0;
    --hsf-default-field-input__color: var(--blue-primary);
  
    --hsf-default-field-textarea__font-family: var(--primary-font);
    --hsf-default-field-textarea__font-size: var(--form-font-size);
    --hsf-field-textarea__color: var(--blue-primary);
    --hsf-default-field-textarea__background-color: var(--gray50);
    --hsf-default-field-textarea__border-color: var(--blue-primary);
    --hsf-default-field-textarea__border-width: 1px;
    --hsf-default-field-textarea__border-radius: 0;
    --hsf-default-field-textarea__padding: 5px;
    --hsf-default-field-textarea__placeholder-color: var(--form-placeholder-color);
}

.hsfc-PhoneInput__FlagAndCaret {
  display: none !important;
}

.hsfc-Button {
  text-transform: uppercase;
}

[data-hsfc-id=Renderer] .hsfc-NavigationRow {
  margin-top: 0 !important;
}

/* Fields */

.hs-form-field {
  margin-top: var(--form-gap);
}

/* Labels */

form label {
  display: block;
  font-size: var(--form-font-size);
  line-height: var(--form-line-height);
  color: var(--blue-primary);
  font-weight: 500;
}

.hs-form-field > label:first-child {
  margin-bottom: 5px;
}

/* Help text */

form legend {
  font-size: var(--form-font-size);
  color: var(--blue-primary);
  margin-bottom: 5px;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea,
form .hs-input {
  display: inline-block;
  font-size: var(--form-font-size);
  width: 100% !important;
  background-color: var(--gray50);
  line-height: var(--form-line-height);
  color: var(--blue-primary);
  outline: none !important;
  box-shadow: none !important;
}

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form select {
  padding: 0;
  border: 0 solid var(--blue-primary) !important;
  border-bottom-width: 1px !important;
}

form textarea {
  height: 96px;
  padding: 5px;
  border: 1px solid var(--blue-primary) !important;
}

form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form select::placeholder,
form textarea::placeholder,
form .hs-input::placeholder {
  color: var(--form-placeholder-color);
}

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;
  font-weight: 500;
}

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  width: fit-content !important;
  margin-right: 0.35rem;
  accent-color: var(--blue-primary);
}

/* 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: var(--white);
}

.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: var(--white);
}

/* 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: var(--form-font-size);
}

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

/* GDPR */

.hs-form-booleancheckbox-display > input {
  float: left;
  margin-top: 4px;
}

.hs-form-booleancheckbox-display > span {
  margin-left: 20px !important;
  padding-left: 8px;
  display: block;
  font-weight: 400;
  font-size: var(--form-font-size);
}

/* Validation */

.hs-form-required {
  color: var(--red-primary);
}

.hs-input.invalid.error {
  border-color: var(--red-primary);
}

.hs-error-msg, .hs-error-msgs label {
  color: var(--red-primary);
  font-weight: 400;
}

/* Submit button */

form input[type=submit],
form .hs-button,
input[type="file"]::file-selector-button {
  padding: 8px 20px;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid var(--blue-primary);
  text-transform: uppercase;
  outline: none;
}

.form input[type=submit],form .hs-button {
  margin-top: var(--form-gap);
}

form input[type=submit],form .hs-button,
input[type="file"]::file-selector-button:hover {
  background-color: var(--blue-primary);
  color: var(--white);
}

input[type="file"]::file-selector-button,
form input[type=submit]:hover, form .hs-button:hover {
  background-color: var(--white);
  color: var(--blue-primary);
}

/* Captcha */

.hs_recaptcha {
  margin-top: var(--form-gap);
}

.grecaptcha-badge {
  margin: 0;
}
:root {
  --root-custom-button-text-weight-initial: 400;
  
  --root-custom-button-text-size_primary: 16px;
  --root-custom-button-text-size_outlined: 14px;
  --root-custom-button-text-weight_primary: var(--root-custom-button-text-weight-initial);
  --root-custom-button-text-weight_outlined: 700;
  --root-custom-button-line-height_primary: 1;
  --root-custom-button-line-height_outlined: 1.2;
  
  --root-custom-button-bg_primary: var(--blue-secondary_600);
  --root-custom-button-bg_outlined: var(--primary-color);
  --root-custom-button-text-color_outlined: var(--white);
  
  --root-custom-button-border-radius_primary: 4px;
  --root-custom-button-border-radius_outlined: 0px;
  --root-custom-button-border-color_primary: var(--root-custom-button-bg_primary);
  --root-custom-button-border-color_outlined: transparent;
  
  --root-custom-button-transition: background 200ms ease, color 200ms ease;
  
  --root-custom-button-offset-y_active: 1px;
  
  --root-custom-button-px: 24px;
  --root-custom-button-py: 14px;
  --root-custom-button-py_outlined: 8px;
  
  --root-custom-button-opacity_disabled: 0.6;
  
  /* Hover states */
  --root-custom-button-bg_primary--hover: transparent;
}

.button_primary,
.button_outlined {
  position: relative;
  
  cursor: pointer;
  
  text-align: center;  
  white-space: normal;
  text-decoration: none;
  display: inline-block;
  
  outline: none;
}

.button_primary {
  padding: var(--root-custom-button-py) var(--root-custom-button-px);
  
  text-transform: capitalize;
  font-family: var(--primary-font);  
  line-height: var(--root-custom-button-line-height_primary);
  font-size: var(--root-custom-button-text-size_primary);
  font-weight: var(--root-custom-button-text-weight_primary);
  
  background: var(--root-custom-button-bg_primary);
  color: var(--white);
  
  border-radius: var(--root-custom-button-border-radius_primary);
  border: 1px solid var(--root-custom-button-border-color_primary);

  transition: var(--root-custom-button-transition);
}

.button_primary:active,
.button_outlined:active,
form .hs-button:active {
  transform: translateY(var(--root-custom-button-offset-y_active));
}

.button_outlined,
form input[type=submit], 
form .hs-button {
  padding: var(--root-custom-button-py_outlined) var(--root-custom-button-px);

  font-family: var(--primary-font);  
  line-height: var(--root-custom-button-line-height_outlined);  
  text-transform: uppercase;
  font-size: var(--root-custom-button-text-size_outlined);
  font-weight: var(--root-custom-button-text-weight_outlined);
  
  background: transparent;
  color: var(--blue-secondary_600);
  
  border: 1px solid var(--blue-secondary_600);
  border-radius: var(--root-custom-button-border-radius_outlined);
  
  transition: var(--root-custom-button-transition);
}

.button_outlined:hover,
.button_outlined:focus,
.button_outlined:focus-visible,
form input[type=submit]:hover, 
form input[type=submit]:focus, 
form input[type=submit]:focus-visible {
  background: var(--blue-secondary_600);
  color: var(--white);
}

form input[type=submit] {
  background: var(--blue-secondary_600);
  color: var(--white);
}

.button_primary:hover,
.button_primary:focus,
.button_primary:focus-visible,
form input[type=submit]:hover {
  background: var(--root-custom-button-bg_primary--hover);
  color: var(--root-custom-button-bg_primary);
}

.button_primary:disabled,
form input[type=submit]:disabled,
form .hs-button:disabled,
.button_outlined:disabled,
.button_disabled {
  opacity: var(--root-custom-button-opacity_disabled);
  pointer-events: none;  
  cursor: default;
}

/* Generic
This is where reset, normalize & box-sizing styles go.
*/
@font-face {
    font-family: "futura-pt";
    src: url("https://use.typekit.net/af/db8d0b/00000000000000007758da2b/31/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n5&v=3") format("woff2"),url("https://use.typekit.net/af/db8d0b/00000000000000007758da2b/31/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n5&v=3") format("woff"),url("https://use.typekit.net/af/db8d0b/00000000000000007758da2b/31/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n5&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 500;
    font-stretch: normal;
}

@font-face {
    font-family: "futura-pt";
    src: url("https://use.typekit.net/af/361f51/000000000000000077586b60/31/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/361f51/000000000000000077586b60/31/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/361f51/000000000000000077586b60/31/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n7&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
}

@font-face {
    font-family: "futura-pt";
    src: url("https://use.typekit.net/af/82d592/000000000000000077586b5a/31/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i7&v=3") format("woff2"),url("https://use.typekit.net/af/82d592/000000000000000077586b5a/31/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i7&v=3") format("woff"),url("https://use.typekit.net/af/82d592/000000000000000077586b5a/31/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i7&v=3") format("opentype");
    font-display: auto;
    font-style: italic;
    font-weight: 700;
    font-stretch: normal;
}

@font-face {
    font-family: "futura-pt";
    src: url("https://use.typekit.net/af/26b618/000000000000000077586b59/31/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/26b618/000000000000000077586b59/31/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/26b618/000000000000000077586b59/31/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}

@font-face {
    font-family: "futura-pt";
    src: url("https://use.typekit.net/af/84715c/000000000000000077586b55/31/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i4&v=3") format("woff2"),url("https://use.typekit.net/af/84715c/000000000000000077586b55/31/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i4&v=3") format("woff"),url("https://use.typekit.net/af/84715c/000000000000000077586b55/31/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i4&v=3") format("opentype");
    font-display: auto;
    font-style: italic;
    font-weight: 400;
    font-stretch: normal;
}

@font-face {
    font-family: "futura-pt-bold";
    src: url("https://use.typekit.net/af/9d7aea/000000000000000077586b5f/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/9d7aea/000000000000000077586b5f/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/9d7aea/000000000000000077586b5f/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
}

@font-face {
    font-family: "futura-pt-bold";
    src: url("https://use.typekit.net/af/77682b/000000000000000077586b58/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"),url("https://use.typekit.net/af/77682b/000000000000000077586b58/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"),url("https://use.typekit.net/af/77682b/000000000000000077586b58/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
    font-display: auto;
    font-style: italic;
    font-weight: 700;
    font-stretch: normal;
}
:root {  
  --footer-container-max-w: 1500px;
  --footer-container-px: 4%;
  --footer-container-py: 2%;
  /*****************************************/
  /* Font sizes    */
  /*****************************************/    

  
  /*****************************************/
  /* Colors    */
  /*****************************************/    
  --white: #ffffff;
  --black: #000000;
  
  --orange-primary: #E2792E;
  --red-primary: #c02b0a;
  
  --blue-primary: #293881;
  --blue-secondary: #494a6b;
  --blue-secondary_600: #293881;
  --blue-light: #2b7bb9;
  
  
  --gray50: #fcfcfc;
  --gray100: #f2f2f2;
  --gray200: #f8f8f8;
  --gray300: #e5e5e5;
  --gray350: #c9c9c9;
  --gray400: #707070;
  --gray900: #050505;
  
  --primary-green: #008632;
  
  /*****************************************/
  /* Breakpoints    */
  /*****************************************/
  --lg: 1200px;
  --md: 992px;
  --sm: 768px;
  
  /*****************************************/
  /* Font    */
  /*****************************************/
  --primary-font: futura-pt, Verdana, Arial, sans-serif;
  --default-font-size: 17px;
  --default-line-height: 1.45;
  --text-color: var(--black);
  --list-text-color: var(--blue-secondary);
  
  /*****************************************/
  /* Utils    */
  /*****************************************/
  --max-content-width: 1500px;
  
  /*****************************************/
  /* Shape    */
  /*****************************************/  
  --rounded-section-shaping-width: 132%;  
  --rounded-section-shaping-height: 100%; 
  --rounded-section-shaping-x: 50%;       
  --rounded-section-shaping-y: 100%; 
  
  /*****************************************/
  /* Forms    */
  /*****************************************/
  --form-gap: 20px;
  --form-font-size: 16px;
  --form-line-height: 1.45;
  --form-placeholder-color: var(--blue-primary);
}

@media (max-width: 768px) {
  :root {
    --footer-container-py: 4%;
    --rounded-section-shaping-width: 100%;
  }
}
.flex-row {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

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

.items-stretch {
  align-items: stretch;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
 justify-content: center;
}

.justify-between {
 justify-content: space-between;
}

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

.absolute {
 position: absolute;
}

.uppercase {
  text-transform: uppercase;
}

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

html, body { 
  scroll-behavior: smooth !important;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

.widget-type-rich_text li {
  display: list-item;
}

.widget-type-rich_text ul li {
  list-style-type: disc;
}

.widget-type-rich_text ul {
   list-style: disc;
   margin-bottom: 10px;
   padding-left: 40px;
}
/*! 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: var(--default-line-height);
  font-family: var(--primary-font);
  font-size: var(--default-font-size);
  font-style: normal;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

body {
  background-color: var(--white);
  padding: 0;
  margin: 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)
*/

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  *margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.66%;
}
.row-fluid .span10 {
  width: 83.33%;
}
.row-fluid .span9 {
  width: 75%;
}
.row-fluid .span8 {
  width: 66.66%;
}
.row-fluid .span7 {
  width: 58.33%;
}
.row-fluid .span6 {
  width: 50%;
}
.row-fluid .span5 {
  width: 41.66%;
}
.row-fluid .span4 {
  width: 33.33%;
}
.row-fluid .span3 {
  width: 25%;
}
.row-fluid .span2 {
  width: 16.66%;
}
.row-fluid .span1 {
  width: 8.33%;
}

/*  */


.flex_row .col12 {
  width: 100%;
}
.flex_row .col11 {
  width: 91.66%;
}
.flex_row .col10 {
  width: 83.33%;
}
.flex_row .col9 {
  width: 75%;
}
.flex_row .col8 {
  width: 66.66%;
}
.flex_row .col7 {
  width: 58.33%;
}
.flex_row .col6 {
  width: 50%;
}
.flex_row .col5 {
  width: 41.66%;
}
.flex_row .col4 {
  width: 33.33%;
}
.flex_row .col3 {
  width: 25%;
}

.flex_row .col20 {
  width: 20%;
}

.flex_row .col2 {
  width: 16.66%;
}
.flex_row .col1 {
  width: 8.33%;
}


.container-fluid {
  *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: "";
}

.container-fluid:after {
  clear: both;
}

.page-center.full_width {
  padding: 0!important;
}

.page-center.full-width,
[class*=full-width-section].dnd-section,
[class*=full-width-section].dnd-section > .row-fluid {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"]  > .row-fluid > .dnd-column.span12,
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .span12.dnd-module {
  padding:0;
}


.page-center {
  margin: 0 auto;
}

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

.page-center{
  padding-left: 0;
  padding-right: 0;
}

.page-center.full_width, .full_width > .row-fluid {
  max-width: 100%;
  width: 100%;
}

.flex_row .col20,
.flex_row .col12,
.flex_row .col11,
.flex_row .col10,
.flex_row .col9 ,
.flex_row .col8 ,
.flex_row .col7 ,
.flex_row .col6 ,
.flex_row .col5 ,
.flex_row .col4 ,
.flex_row .col3 ,
.flex_row .col2 ,
.flex_row .col1 {
  padding: 0;
  margin: 0;
}

.dnd-section > .row-fluid,
.page-center {
  max-width: 1500px;
  width: 100%;
  padding: 0;
}

@media (max-width: 767px) {
  .row-fluid [class*=span] {
    min-height: 0;
  }
}


@media (min-width: 768px) {
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: 91.66%;
  }
  .row-fluid .span10 {
    width: 83.33%;
  }
  .row-fluid .span9 {
    width: 75%;
  }
  .row-fluid .span8 {
    width: 66.66%;
  }
  .row-fluid .span7 {
    width: 58.33%;
  }
  .row-fluid .span6 {
    width: 50%;
  }
  .row-fluid .span5 {
    width: 41.66%;
  }
  .row-fluid .span4 {
    width: 33.33%;
  }
  .row-fluid .span3 {
    width: 25%;
  }
  .row-fluid .span2 {
    width: 16.66%;
  }
  .row-fluid .span1 {
    width: 8.33%;
  }
}

@media (max-width: 767px) {
  .flex_row .col20,
  .flex_row .col12,
  .flex_row .col11,
  .flex_row .col10,
  .flex_row .col9 ,
  .flex_row .col8 ,
  .flex_row .col7 ,
  .flex_row .col6 ,
  .flex_row .col5 ,
  .flex_row .col4 ,
  .flex_row .col3 ,
  .flex_row .col2 ,
  .flex_row .col1 {
    width: 100%;  
  }

  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
    width: 100%;
  }
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

/* Elements */
.styled-unordered-list {
  --bullet-list-marker-size: 24px;
  
  margin: 0;
  padding: 0;
  
  list-style: none;
  font-size: 17px;
}

.styled-unordered-list li {
  display: flex;
  align-items: center;
  grid-gap: 8px;
  
  color: var(--list-text-color);
}

.styled-unordered-list li:before {
  content: "\25CF";
  
  font-size: var(--bullet-list-marker-size);
  line-height: 1;
  
  color: var(--orange-primary);
  
  flex-shrink: 0;
}

.styled-unordered-list li:not(:last-child) {
  margin-block-end: 1px;
}
.link-with-icon {
  --icon-link-img-ratio: 30px;
  
  display: flex;
  align-items: center;
  grid-gap: var(--icon-link-gap-x, 8px);
  
  justify-content: var(--icon-link-justify-content);
  
  padding: 10px;
  
  width: fit-content;
  min-width: var(--icon-link-min-w, 160px);
  
  color: var(--blue-primary);
  
  cursor: pointer;
  
  text-decoration: none;
  text-transform: uppercase;  
  font-weight: var(--icon-link-text-weight, 500);
  
  border: 2px solid transparent;
  outline: none;  
  
  transition: border 300ms ease;
}

.link-with-icon img {
  width: var(--icon-link-img-ratio);
  aspect-ratio: 1;
  
  display: block;
  max-width: 100%;
  object-fit: cover;
  
  transition: transform 300ms ease;
  will-change: transform;
}

.link-with-icon:focus, .link-with-icon:focus-visible {
  border: 2px solid var(--icon-link-border-color_focus, var(--blue-primary));
}

.link-with-icon:hover {
  text-decoration: underline;
}

.link-with-icon:hover img {
  transform: rotate(38deg);
}
/* Sections */
.content-block-with-image .row-fluid .span4 { width: 35% !important; }
.content-block-with-image .row-fluid .span8 { width: 65% !important; }

.content-block-with-image-mirrored .row-fluid .span4 { width: 39% !important; }
.content-block-with-image-mirrored .row-fluid .span8 { width: 61% !important; }

.full-width-section-with-inner-container[class*=full-width-section] > .row-fluid {
  max-width: 1500px !important;
}

.section-with-italic-links p > a {
  font-style: italic;
  color: #2b7bb9;
  text-decoration: none;
}

.section-with-italic-links p > a:hover {
   text-decoration: underline;
}

.contact-us-section {
  --hsf-default-background__padding: 0px 40px 40px 20px;
}

/* top shaped */
.shaped-section--top {
  clip-path: ellipse(
    var(--rounded-section-shaping-width) 
    var(--rounded-section-shaping-height) 
    at var(--rounded-section-shaping-x) 
    var(--rounded-section-shaping-y)
  );
}

/* bottom shaped */
.shaped-section--bottom {
  --rounded-section-shaping-height: 70%; 
  --rounded-section-shaping-y: 30%;     
  clip-path: ellipse(
    var(--rounded-section-shaping-width) 
    var(--rounded-section-shaping-height) 
    at var(--rounded-section-shaping-x) 
    var(--rounded-section-shaping-y)
  );
}

/* vertical shaped */
.shaped-section--vertical {
  --rounded-section-shaping-height: 50%; 
  --rounded-section-shaping-y: 50%;     
  clip-path: ellipse(
    var(--rounded-section-shaping-width) 
    var(--rounded-section-shaping-height) 
    at var(--rounded-section-shaping-x) 
    var(--rounded-section-shaping-y)
  );
}

.section-with-rounded-image .widget-type-linked_image img,
.section-with-rounded-image .hs-image-widget {
  border-radius: 50%;
}

.section-with-rounded-image ul li p {
  margin: 10px 0;
}

.section-with-rounded-two-columns {
  --rounded-section-shaping-width: 100%;
  --rounded-section-shaping-height: 50%; 
  --rounded-section-shaping-y: 50%;      
  
  clip-path: ellipse(
    var(--rounded-section-shaping-width) 
    var(--rounded-section-shaping-height) 
    at var(--rounded-section-shaping-x) 
    var(--rounded-section-shaping-y)
  );
}  

.partners-section img {
  border-radius: 0;
  max-height: 56px;
}

.partners-section > .row-fluid > .widget-span:not(:last-of-type) {
  border-right: 1px solid #707070;
}

.feedback-section {
  background: transparent;
}

.feedback-section > .row-fluid > .dnd-column {
  box-shadow: 0 0 190px 0 rgba(12, 5, 0, .11);
}

.customizable-rich-text > div > a:hover {
   text-decoration: underline;
}

@media (max-width: 991px) {
  .row-fluid-wrapper [data-hs-cos-type="rich_text"] > p {
    font-size: 14px !important;
  }  
  .tablet-bp-flex-col .row-fluid .dnd-column {
    width: 100% !important;
  }
  .tablet-bp-flex-col .row-fluid {
    flex-wrap: wrap;
  }
  .feedback-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-page-template .content-block-with-image-mirrored .row-fluid .dnd-column  {
    width: 100% !important;
  } 
  .home-page-template .content-block-with-image-mirrored .row-fluid {
    flex-wrap: wrap;
  }
} 

@media (max-width: 767px) {
  .partners-section > .row-fluid > .widget-span:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid #707070;
  }
  .content-block-with-image-mirrored .row-fluid .span4,
  .content-block-with-image-mirrored .row-fluid .span8 {
     width: 100% !important;
  }  
  .content-block-with-image-mirrored .row-fluid  { flex-wrap: wrap; }  
  .contact-us-section {
    --hsf-default-background__padding: 0px 20px 20px;
  }
  .partners-section.section-with-rounded-two-columns {
    --rounded-section-shaping-width: 200%;
  }
  
  .full-width-section-with-inner-container[class*=full-width-section] > .row-fluid {
    max-width: 400px !important;
  }
  .content-block-with-image .row-fluid .span4,
  .content-block-with-image .row-fluid .span8,
  .tablet-bp-full-width-sections .row-fluid .span3,
  .tablet-bp-full-width-sections .row-fluid .span9,
  .tablet-bp-full-width-sections .row-fluid .span4,
  .tablet-bp-full-width-sections .row-fluid .span8 { 
    width: 100% !important; 
  }
  .section-with-rounded-image .widget-type-linked_image img,
  .section-with-rounded-image .hs-image-widget {
    width: 180px;
    margin: 0 auto;
    display: block;
  }
  .section-with-rounded-image p {
    text-align: center;
  }  
  
  .section-with-rounded-image li p {
    text-align: left;
  } 
}
/* Templates */