/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */
@import url('//stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');










































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! 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;
}

/**
 * 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;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}
.banner-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

.dnd-module img{
  max-width: 100%;
  height: auto;
}

.dnd-module img.hs-cta-img{
  max-width: 850px;
  width: 100%;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
  .dnd-column.span3 img.hs-image-widget{
    margin-bottom: 20px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: barlow--light;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/Sparkfabrik_April2020/fonts/Barlow-Light.ttf)
}
@font-face {
  font-family: barlow--regular;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/Sparkfabrik_April2020/fonts/Barlow-Regular.ttf)
}
@font-face {
  font-family: barlow--medium;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/Sparkfabrik_April2020/fonts/Barlow-Medium.ttf)
}
@font-face {
  font-family: barlow--bold;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/Sparkfabrik_April2020/fonts/Barlow-Bold.ttf)
}
@font-face {
  font-family: barlow--black;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/Sparkfabrik_April2020/fonts/Barlow-Black.ttf)
}

@font-face {
  font-family: barlow-condensed--light;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/d360-sparkfabrik-2025/fonts/BarlowCondensed-Light.ttf);
}
@font-face {
  font-family: barlow-condensed--regular;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/d360-sparkfabrik-2025/fonts/BarlowCondensed-Regular.ttf);
}
@font-face {
  font-family: barlow-condensed--medium;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/d360-sparkfabrik-2025/fonts/BarlowCondensed-Medium.ttf);
}
@font-face {
  font-family: barlow-condensed--bold;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/d360-sparkfabrik-2025/fonts/BarlowCondensed-Bold.ttf);
}
@font-face {
  font-family: barlow-condensed--black;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/d360-sparkfabrik-2025/fonts/BarlowCondensed-Black.ttf);
}
@font-face {
  font-family: barlow-condensed--regular-medium;
  font-display:fallback;
  src: url(//6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/Sparkfabrik_April2020/fonts/Barlow-Medium.ttf);
}


html {
  font-size: 24px;
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.5;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Lato, serif;
  text-rendering: optimizelegibility;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
  text-rendering: optimizelegibility;
}

h1 {
  font-size: 2.1rem;
  line-height: 75px;
  letter-spacing: -1.26px;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}

h3 {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.pillar h3{
  margin-top: 60px;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 1.5;
}

h5 {
  font-size: 1rem;
  line-height: 1.5;
}

h6 {
  font-size: .9rem;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {
  line-height: 1.5rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

@media (max-width: 767px) {
  html {
    font-size: 18.0px
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14.399999999999999px
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 100%;
  font-family: Lato, sans-serif;
}
#form-center form fieldset {
  max-width: unset;
}
.hs_cos_wrapper_type_module.widget-type-form,
.hs-search-field__bar,
.section.post-footer form{
  box-shadow: 0 16px 24px 0 rgba(0,0,0,.07), 0 8px 12px 0 rgba(3,21,39,.15);
  border-radius: 5px;
  padding: 30px;
  border:1px solid;
}

.hs-button {
  margin: 10px 0;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  line-height: 1.1;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  font-size: .92rem;
  padding: 15px 53px;
  
  text-decoration: none;
  outline: none;
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}


.hs-form label {
  font-size: .83rem;
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: 4px;
}

.hs-form .hs-error-msgs label {
  margin-top: .5rem;
  color: #f2545b !important;
  font-weight: 400;
  font-size: 1rem;
}

input[type="text"],
		input[type="password"], 
		input[type="datetime"], 
		input[type="datetime-local"], 
		input[type="date"], 
		input[type="month"], 
		input[type="time"], 
		input[type="week"], 
		input[type="number"], 
		input[type="email"], 
		input[type="url"], 
		input[type="search"], 
		input[type="tel"], 
		input[type="color"],
		input[type="file"],
		textarea,
		select {
  display: inline-block;
  width: 100%;
  min-height: 44px; 
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
  background-color: #ffffff;
  border-top-color: transparent;
  border-bottom: 1px solid;
  box-sizing: border-box;
  font-family: Open Sans;
  color: #000000;
  font-size: 14px;
  border-radius: 3px;
  border-color: var(--form-input-border-clr);
  line-height:24px
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
input[type="text"]:focus,
		input[type="password"]:focus, 
		input[type="datetime"]:focus, 
		input[type="datetime-local"]:focus, 
		input[type="date"]:focus, 
		input[type="month"]:focus, 
		input[type="time"]:focus, 
		input[type="week"]:focus, 
		input[type="number"]:focus, 
		input[type="email"]:focus, 
		input[type="url"]:focus, 
		input[type="search"]:focus, 
		input[type="tel"]:focus, 
		input[type="color"]:focus,
		input[type="file"]:focus,
		textarea:focus,
		select:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
  font-family: barlow-condensed--medium;
  font-style: italic;
  font-size: 20px;
  color: #020C19;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872;
  border-top: none;
  border-left: none;
  border-right: none;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
  font-weight: 100;
  font-size: 14px;
  font-family: barlow--regular;
  margin-left: 0px !important;
}
.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}

.inputs-list label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  z-index: 2;
  cursor: pointer;
}

.inputs-list label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
}

.inputs-list label span:not(.hs-form-required) {
  position: relative;
  padding-left: 8px;
  line-height: 22px;
}

.inputs-list label span:not(.hs-form-required)::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary-color);
  background: #fff;
  border-radius: 2px;
  box-sizing: border-box;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.1s;
  z-index: 1;
}

.inputs-list label input[type="checkbox"]:checked + span:not(.hs-form-required)::before {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.inputs-list label input[type="checkbox"]:active + span:not(.hs-form-required)::before {
  transform: scale(0.95);
}

.inputs-list label input[type="checkbox"]:checked + span:not(.hs-form-required)::after {
  content: '';
  position: absolute;
  left: -23px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  z-index: 2;
}


.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */


.hs-menu-item a {
  display: block;
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  color: #fff;
}

. fixed .custom-menu-primary .hs-menu-wrapper > ul > li > a {
  color: #031527 !important;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */

.hs-landing-page h2{
  font-family: barlow--light;
  margin-bottom:45px;
  font-weight: 700;
  color: #eb0000;
}
.hs-landing-page h2 strong{
  font-family: barlow--black;
}

.hs-landing-page h5{
  font-family: barlow--light;
  font-size: 20px;
}

@media (min-width: 480px) {
  .hs-landing-page h5{
    font-size: 26px;
  }
}

@media (min-width: 1200px) {
  .hs-landing-page h5{
    font-size: 36px;
  }
}

.hs-landing-page h5 strong{
  font-family: barlow--bold;
}

.body-wrapper.hs-landing-page{
  background-color: #fff;
}

.lp header.header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.lp .header__primary {
  /*margin-top: 30px;*/
}

.lp header.header>div {
  width: 100%;
}

.lp.footer {
  padding: 45px 0;
}

.row-fluid-wrapper[class*="-background-color"]{
  position:relative;
  z-index:995;
}

.legal-consent-container p{
  font-family: barlow--regular !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #031527 !important;
  text-align: left !important;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.no-banner .header-wrap {
    min-height: 119.6px;
  }
  header.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transition: all .6s cubic-bezier(0,0.8,0.2,1);
    transition: all .6s cubic-bezier(0,0.8,0.2,1);
    background-color: transparent;
    box-shadow: none;
  }
  
  .header__container {
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }
  .header__secondary {
    -webkit-transition: all .6s cubic-bezier(0,0.8,0.2,1);
    transition: all .6s cubic-bezier(0,0.8,0.2,1);
    height: 30px;
  }
  .header .row{
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  ul.menu-lang {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    -webkit-box-pack: end!important;
    justify-content: flex-end!important;
    font-family: barlow-condensed--regular,Helvetica,Arial,Sans-Serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .32px;
    line-height: 30px;
    color: #fff;
    margin: 0;
  }
  .header .col-12 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  ul.menu-lang li {
    line-height: 30px;
  }
  ul.menu-lang li a{
    display: block;
    padding: 0 15px;
    -webkit-transition: color .5s ease-out;
    transition: color .5s ease-out;
    color: #fff;
    text-transform: uppercase;
  }
  ul.menu-lang li a:not(.active):hover {
    color: #f7ac1a;
  }
  ul.menu-lang li a.active {
    color: #009ffd;
  }
  .menu-lang__separator:last-child {
    display: none;
  }
  .header__primary {
    -webkit-transition: all .6s cubic-bezier(0,0.8,0.2,1);
    transition: all .6s cubic-bezier(0,0.8,0.2,1);
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row.align-items-center.justify-content-between {
    -webkit-box-pack: justify!important;
    justify-content: space-between!important;
    -webkit-box-align: center!important;
    align-items: center!important;
  }
  .header-primary__logo {
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    -webkit-transition: all .2s cubic-bezier(0,0.8,0.2,1);
    transition: all .2s cubic-bezier(0,0.8,0.2,1);
    padding: 15px;
  }
  svg#spark-logo {
    max-height: 30px;
  }
  
  div#menu-icon {
    display: none!important;
  }
  
  @media (min-width: 780px) {
    body:not(.fixed):not(.sub-menu-open):not(.no-banner) svg#spark-logo path, 
    body:not(.fixed):not(.sub-menu-open):not(.no-banner) svg#spark-logo rect {
      fill: #fff;
    }
  }
  /* Bnner */
  .banner {
    background-color: #031527;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .banner .svg-shape {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 105px;
  }
  .banner .svg-shape svg {
    width: 100%;
    height: 105px;
  }
  .banner .hero{
    padding-top: 210px;
    padding-bottom: 150px;
  }
  h1.hero__title {
    font-family: barlow-condensed--bold;
    color: #fff;
    font-style: italic;
    margin-bottom: 0;
  }
  .offset-lg-1 {
    max-width: 83.33333%;
    text-align: center;
    margin: 0 auto;
    padding-top: 60px;
  }
  h2.hero__subtitle {
    color: #fff;
    font-size: 36px;
    line-height: 45px;
    font-family: barlow--regular,Helvetica,Arial,Sans-Serif;
    font-weight: 400;
    letter-spacing: 0;
  }
  
  /* ==Menu Sec== */
  nav.navigation-primary {
    display: inline!important;
  }
  .custom-menu-primary {
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .custom-menu-primary .hs-menu-wrapper > ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    -webkit-box-pack: end!important;
    justify-content: flex-end!important;
    margin: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    display: block;
    position: relative;
    -webkit-transition: color .5s ease-out;
    transition: color .5s ease-out;
    font-family: barlow--bold,Helvetica,Arial,Sans-Serif;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    padding: 30px 15px;
    font-size: 16px;
    letter-spacing: .32px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a:after{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 2%;
    height: .25rem;
    -webkit-transition: all .2s cubic-bezier(0,0.8,0.2,1);
    transition: all .2s cubic-bezier(0,0.8,0.2,1);
    content: '';
    bottom: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li:hover > a:after {
    left: 10%;
    width: 80%;
    background-color: #009ffd;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul:hover>li:not(.active-branch)>a:not(:hover) {
    color: #a6b1b6;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li:not(.active-branch).hs-item-has-children:hover > a {
    color: #031527 !important;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.active-branch > a:before,
  .custom-menu-primary .hs-menu-wrapper > ul > li.active:hover > a:after{
    display: none;
  }
  
  
  
  /* ==Mega Menu== */
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap {
    position: fixed;
    left: 0;
    display: none;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 6px 10px 0 rgba(3,21,39,.15);
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:hover>.mega-menu-wrap {
    display: block;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    background-color: #031527;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child+li {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
    border-top: solid 1px #d3dfe4;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child:before {
    position: absolute;
    top: 0;
    left: -300%;
    width: 300%;
    height: 100%;
    background-color: #031527;
    content: '';
  }
  
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child>ul>li:first-child>a {
    margin-bottom: 30px;
    font-family: barlow--bold,Helvetica,Arial,Sans-Serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: .288px;
    line-height: 2.25rem;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child>ul {
    padding: 60px 15px 60px 0;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children ul a {
    display: block;
    font-family: inherit;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child>ul>li:first-child+li>a {
    font-family: barlow--regular,Helvetica,Arial,Sans-Serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .24px;
    margin-bottom: 45px;
    line-height: 1.5rem;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child>ul>li:first-child+li+li, .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child>ul>li:first-child+li+li+li, .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child>ul>li:first-child+li+li+li+li {
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
    font-size: .8rem;
    font-weight: 200;
    margin-bottom: .25rem;
    letter-spacing: .24px;
    line-height: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child>ul>li:first-child+li+li>a:hover, .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child>ul>li:first-child+li+li+li>a:hover {
    opacity: 1!important;
    color: rgba(2,112,224,1.0)!important;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul {
    padding: 0 30px;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>a {
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: 2.4px;
    line-height: 1.5rem;
    color: #009ffd;
    text-transform: uppercase;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>ul>li {
    padding-bottom: .75rem;
    font-family: barlow--regular,Helvetica,Arial,Sans-Serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .4px;
    line-height: 1.5rem;
  
    display: block;
  }
  
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li+li {
    margin-top: 45px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>ul>li>a {
    color: #031527;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>ul>li:first-child>a {
    font-weight: bolder;
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children .mega-menu-wrap a:not([href*=https]) {
    cursor: text;
  }
  .DND_banner-row-0-force-full-width-section > .row-fluid {
    padding: 0 !important;
  }
  
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul {
    display: -webkit-box;
    display: flex;
    padding: 60px 0 0 15px;
    text-align: center;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    margin-bottom: 30px;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li>a {
    font-family: barlow--bold,Helvetica,Arial,Sans-Serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5rem;
    margin-bottom: 15px;
    color: #031527;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li {
    font-family: barlow--regular,Helvetica,Arial,Sans-Serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .24px;
    margin-bottom: 30px;
    line-height: 1.5rem;
  }
  
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li+li>a {
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .32px;
    line-height: .75rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #40c6cf;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li+li>a:hover {
    text-decoration: underline;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child {
    height: 9rem;
    margin-bottom: 15px;
    display: block;
    overflow: hidden;
    width: auto;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
  }
  
  
  
  
  
  
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul {
    display: -webkit-box;
    display: flex;
    padding: 60px 0 0 15px;
    text-align: center;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    margin-bottom: 30px;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li>a {
    font-family: barlow--bold,Helvetica,Arial,Sans-Serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5rem;
    margin-bottom: 15px;
    color: #031527;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li {
    font-family: barlow--regular,Helvetica,Arial,Sans-Serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .24px;
    margin-bottom: 30px;
    line-height: 1.5rem;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li>a {
    margin-bottom: .75rem;
    color: inherit;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li+li>a {
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .32px;
    line-height: .75rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #40c6cf;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li+li>a:hover {
    text-decoration: underline;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child {
    height: 9rem;
    margin-bottom: 15px;
    display: block;
    overflow: hidden;
    width: auto;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
  }
  
  
  
  
  
  
  
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:first-child+li>ul>li>ul>li:nth-child(3)~li>a,
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:first-child+li+li>ul>li>ul>li:nth-child(4)+li>a,
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:first-child+li+li>ul>li>ul>li:last-child>a {
    font-weight: bolder;
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:first-child+li>ul>li>ul>li:nth-child(3)+li>a,
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:first-child+li+li>ul>li>ul>li:nth-child(4)+li>a,
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:first-child+li+li>ul>li>ul>li:last-child>a,
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:first-child+li>ul>li>ul>li:last-child>a {
    /*padding-top: .75rem;*/
  }
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>a{
    margin-bottom: .75rem;
  }
  
  
  
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap a[href*=https]:hover {
    text-decoration: underline;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap li.custom-parent-link {
    display: none;
    background-color: #031527;
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .32px;
    line-height: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    padding: 30px;
    line-height: .75rem;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap li.custom-parent-link a {
    color: #40c6cf;
    font-family: inherit;
  }
  
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:last-child {
    display: none;
  }
  
  @-webkit-keyframes roll {
    from {
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }
  
    to {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg)
    }
  }
  
  @keyframes roll {
    from {
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }
  
    to {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg)
    }
  }
  .Banner-row-0-force-full-width-section > .row-fluid {
    max-width: none !important;
    padding: 0 !important;
  }
  
  @media(max-width:1439px){
    .custom-menu-primary .hs-menu-wrapper > ul > li > a {
      padding-top: 15px;
      padding-bottom: 15px;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap li.custom-parent-link {
      display: block;
    }
  
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child {
      display: none;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap>div>ul>li:first-child+li {
      -webkit-box-flex: 0;
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul {
      padding: 30px 0;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul {
      padding: 0 15px;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul {
      padding: 30px 0 0;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child {
      height: 7.5rem;
    }
  
    .banner .hero {
      padding-top: 210px;
      padding-bottom: 180px;
    }
    /*
    h1.hero__title {
      margin-bottom: 45px;
    }
    */
  }
  @media(min-width:1020px) {
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>ul {
      display: block !important;
      overflow: visible !important;
      height: auto !important;
      padding: 0 !important;
      margin: 0 !important;
      transition: none !important;
    }
  
  }
  
  @media(max-width:1199px){
    /*
    h1.hero__title {
      font-size: 3.2rem;
      letter-spacing: -.72px;
      line-height: 3rem;
    }
  */
    h2.hero__subtitle {
      font-size: 1rem;
      line-height: 1.5rem;
    }
  }
  
  @media(max-width:1019px){
    .fixed path#Path_35 {
      fill: transparent;
    }
    .custom-menu-primary .hs-menu-wrapper > ul > li > a {
      padding-left: 11.250px;
      padding-right: 11.250px;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap li.custom-parent-link>a {
      line-height: 1.5rem;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap li.custom-parent-link {
      padding: 15px 0;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children .mega-menu-wrap .container {
      max-width: 100%;
      padding-right: 2.25rem;
      padding-left: 2.25rem;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li {
      -webkit-box-flex: 0;
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>a {
      text-align: center;
      padding: 15px 0;
      cursor: pointer;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li {
      position: relative;
      border-bottom: solid 1px #d3dfe4;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>ul {
      display: none;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li+li {
      display: none;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul {
      padding: 15px 0;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>a:before {
      position: absolute;
      top: 1.25rem;
      right: 20px;
      width: .75rem;
      height: .5rem;
      background-image: url(https://6897318.fs1.hubspotusercontent-na1.net/hubfs/6897318/Sparkfabrik_April2020/images/menu-accordion-down--blue.svg);
      background-repeat: no-repeat;
      content: '';
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li.active>a:before {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
      -webkit-animation: roll 1s 1;
      animation: roll 1s 1;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li:last-child {
      display: block;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul {
      text-align: left;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child {
      display: none;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li {
      -webkit-box-flex: 0;
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul {
      flex-wrap: wrap;
    }
  
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(3) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li {
      margin: 0 0 15px;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>ul>li {
      text-align: center;
    }
  }
  
  
  
  
  
  
  /* ==Fixed Header */
  .fixed .header__secondary {
    margin-top: -1.5rem;
    overflow: hidden;
  }
  .fixed .custom-menu-primary .hs-menu-wrapper > ul > li > a,
  .fixed .header-primary__logo {
    padding-top: .75rem!important;
    padding-bottom: .75rem!important;
  }
  .fixed header.header {
    background: #fff;
    height: 60px;
    box-shadow: 0 6px 10px 0 rgba(3,21,39,.15);
  }
  .no-banner header.header{
    box-shadow: 0 6px 10px 0 rgba(3,21,39,.15);
  }
  .fixed svg#spark-logo, 
  .no-banner svg#spark-logo {
    height: 1.125rem;
    margin-left: -25px;
    max-height: 22.5px;
  }
  
  .fixed .custom-menu-primary .hs-menu-wrapper>ul>li>a, 
  body.no-banner .custom-menu-primary .hs-menu-wrapper>ul>li>a,
  .fixed .custom-menu-primary .hs-menu-wrapper>ul>li>a,
  .fixed .custom-menu-primary .hs-menu-wrapper>ul>li>a:hover {
    color: #031527;
    line-height: 1.5rem;
  }
  .fixed .custom-menu-primary .hs-menu-wrapper>ul>li.active>a, 
  body.no-banner .custom-menu-primary .hs-menu-wrapper>ul>li.active>a,
  .fixed .custom-menu-primary .hs-menu-wrapper>ul>li.active>a,
  .fixed .custom-menu-primary .hs-menu-wrapper>ul>li.active>a:hover{
    color:#fff;
  }
  .banner-section-row-0-force-full-width-section > .row-fluid {
    padding: 0 !important;
  }
  
  /* ==Sub Menu Open== */
  .sub-menu-open header.header {
    background-color: #fff;
  }
  
  .sub-menu-open svg#spark-logo {
    max-height: 1.125rem;
  }
  


  /* MENU Mobile - CTA */
  .header-primary__lp-contact-cta a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: var(--button-font-size);
    color: var(--white);
    background-color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 90px;
    font-style: italic;
    font-family: barlow-condensed--bold;
    text-transform: uppercase;
    line-height: 2rem;
  }
  .header-primary__lp-contact-cta a:hover {
    color: #ffffff;
    background-color: transparent;
  }

  .header-primary__lp-contact-cta a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    
    border-radius: 90px;
    background-color: var(--primary-color);
  }

  .header-primary__lp-contact-cta a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    border-radius: 90px;
    transition: opacity 0.4s ease-in-out;
    background: linear-gradient(to left,rgba(255, 145, 0, 0.6) 0%, rgba(255, 145, 0, 0.3) 10%, #eb0000 30%);
  }

  .header-primary__lp-contact-cta a:hover::after,
  .header-primary__lp-contact-cta a:focus::after {
    opacity: 1;
  }

 /* MENU Desktop - CTA */
 header .custom-menu-primary.desktop .menu-items .hs-menu-wrapper ul {
    align-items: center;
  }
  li.hs-menu-item.hs-menu-depth-1.blog-dt-contact-cta {
    padding-left: 10px;
  }
  header .custom-menu-primary.desktop .menu-items .hs-menu-wrapper ul li.blog-dt-contact-cta a {
    padding: 3px 8px;
    background-color: #FF0523;
    border-radius: 5px;
  }
  .fixed header .custom-menu-primary.desktop .menu-items .hs-menu-wrapper ul li.blog-dt-contact-cta a {
    color: #FF0523;
    background-color: transparent;
  }
  /*reset padding-top for items alignment*/
  header .custom-menu-primary.desktop .menu-items .hs-menu-wrapper ul li .hs-search-field__bar {
    padding-top: 0px;
  }



  @media(max-width:1439px){
    .lp header.header {
      height: 92.34px;
    }
    .header__container{
      max-width: 1080px !important;
    }
    .no-banner .header-wrap {
      min-height: 92.34px;
    }
  }
  
  @media(max-width:1199.98px){
    .header__container{
      max-width: 100% !important;
      padding-right: 45px;
      padding-left: 45px;
    }
  
  }
  @media (max-width: 1074.98px){
    .header-primary__logo {
      max-width: 50px;
      padding-right: 0;
      padding-left: 0;
      overflow: hidden;
    }
    .fixed .header-primary__logo {
      max-width: 40px;
      padding-right: 0;
      padding-left: 0;
      overflow: hidden;
    }
  }

  /*Resize the search bar on smaller screens to make room for the cta*/
  @media(max-width: 859.98px) {
    header .custom-menu-primary.desktop .menu-items .hs-menu-wrapper ul li .hs-search-field {
        width: 150px;
        margin-left: 15px;)
    }
  }

  @media(max-width: 814.98px) {
    header .custom-menu-primary.desktop .menu-items .hs-menu-wrapper ul li .hs-search-field {
        width: 115px;
        margin-left: 15px;)
    }
  }

  @media(max-width:779px){
    .lp header.header {
      height: 60px;
    }
    .lp .header__primary {
      margin-top: 0;
    }
    .header__secondary {
      display: none;
    }
    header.header{
      box-shadow: 0 6px 10px 0 rgba(3,21,39,.15);
      background-color: #fff !important;
    }
    svg#spark-logo path {
      fill: rgb(255, 5, 35);
    }
    .header__primary{
      height: 60px; 
    }
    .banner .hero {
      padding: 150px 15px;
    }

    .offset-lg-1 {
      padding: 30px 0 0;
    }
  
    .fixed .menu-icon::before {
      width: 1.25rem;
      height: 1.25rem;
    }
    .fixed .header-primary__logo {
      padding-top: .375rem!important;
      padding-bottom: .375rem!important;
    }
    .fixed .header__primary {
      height: 45px;
    }
    .fixed header.header {
      height: 45px;
    }
    svg#spark-logo path#Path_35 {
      fill: transparent;
    }
    .fixed .custom-menu-primary.mobile {
      height: calc(100vh - 45px);
    }
  
    .no-banner .header-wrap {
      min-height: 60px;
    }
  }
  
  @media(max-width:479px){
    .header__container,
    .header .header__primary {
      padding: 0 15px;
    }
    .banner .hero {
      padding: 120px 15px 90px;
    }
    h2.hero__subtitle {
      font-size: 1rem;
      line-height: 1.5rem;
      margin: 0 0 30px;
    }

    .header-primary__lp-contact-cta a {
        font-size: 0.8rem;
        color: #ffffff;
        background-color: red;
        padding: 8px 24px;
        border-radius: 90px;
        font-style: italic;
    }
  }
  
  /* ==Prefixes== */
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    display: none !important;
  }
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer{
  padding-top: 60px;
  padding-bottom: 45px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  font-size: 16px;
}
img {
  vertical-align: middle;
  border-style: none;
}
.footer__container{
  margin:0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
.footer__container .row{
  margin-left:-15px;
  margin-right: -15px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.footer .col-12 {
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.footer-copy {
    font-size: 16px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-right: -15px;
    margin-left: -15px;
}
.footer-copy .col-im-auto {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.footer  .footer-assolombarda {
    padding: 0 60px 60px;
}
.footer .col-im-auto {
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.footer .col-lg-10 {
    -webkit-box-flex: 0;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}
.footer-assolombarda__tag {
    margin-top: 15px;
    display: inline-block;
    align-self: center;
    letter-spacing: 2.4px;
}
.footer .footer-assolombarda > div {
    padding: 0;
    padding-right: 15px;
    padding-left: 15px;
}



.footer  .footer-menu__contacts {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
    border-top: 1px solid #fff;
}
.footer .footer-menu__menus {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
    border-top: 1px solid #fff;
}
.f-menu-contacts {
    padding-top: 30px;
    margin-bottom: 45px;
}
.footer-menu .f-contacts {
    font-size: 20px;
    letter-spacing: .3px;
}
.footer-menu .f-contacts > div {
    margin-bottom: 30px;
}
.footer .footer-menus__el {
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
.footer-menus {
    padding-top: 30px;
}
.footer-menus__el .fm-single {
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
    letter-spacing: .32px;
    margin-bottom: 30px;
}
.fm-single__title {
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.fm-single__link {
    margin-bottom: 15px;
}
.f-contacts__el {
    font-size: 16px;
    letter-spacing: .24px;
}
.footer-menu{
  padding: 0 15px;
}
.footer hr {
    margin: 0;
    border: 0;
    border-bottom: 1px solid #fff;
    height: 0;
}
.footer-menu .f-contacts__head {
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 15px;
}
strong {
    font-family: barlow--medium,Helvetica,Arial,Sans-Serif;
}
.footer  .footer-logo__logo {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}
.footer  .footer-logo__social {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
}
.justify-content-center {
    -webkit-box-pack: end!important;
    justify-content: flex-end!important;
}
.footer-logo__social .social-links__el {
    margin-bottom: 45px;
    padding-right: 15px;
    padding-left: 15px;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}
.footer .footer-assolombarda.row {
  padding: 0;
}
.footer a:hover {
  text-decoration: underline;
}

@media(max-width:1439px){
  .footer__container{
    max-width: 1080px !important;
  }
}

@media(max-width:1199px){
  .footer__container{
    max-width: 960px !important;
  }
  .footer .footer-menu__contacts, .footer .footer-menu__menus {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-menu .f-contacts .d-none {
    display: none;
  }
    .footer-menu .f-contacts>div {
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media(max-width:1019px){
  .footer__container{
    max-width: 720px !important;
  }
  .footer .col-lg-10 {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
  
}
@media(max-width:779px){
  .footer__container{
    max-width: 480px !important;
  }
  .footer {
    text-align: center!important;
  }
  .footer .col-im-auto {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .footer .col-lg-10 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer .footer-assolombarda>div {
    padding: 0;
  }
    .footer-assolombarda__img.col-im-auto {
    margin-bottom: 0;
  }
  .footer-logo__logo.col-12.col-im-3.d-none.d-im-block ,
  .footer-menu__menus.col-12.col-xl-9.d-none.d-im-block {
    display: none;
  }
  .footer .footer-logo__social {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  } 
  .justify-content-center {
    -webkit-box-pack: center!important;
    justify-content: center!important;
  }
    .footer-logo__social .social-links__el {
    -webkit-box-flex: 0;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
    margin-bottom: 45px;
  }
  .footer-menu .f-contacts>div {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media(max-width:479px){
  .footer__container{
    max-width: 305px !important;
  }
  .footer-logo__social .social-links__el {
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}


footer {
  background: linear-gradient(-45deg, rgba(255, 5, 35, 0) 50%, rgba(255, 5, 35, 0.25) 100%);
  background-color: #031527;
  padding: 5rem 0;
  color: #ffffff;

  a {
    color: #ffffff;
  }

  .footer__top {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2rem;

    & > div {
      grid-column: span 4/span 4;
    }
  }

  .footer__date {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5em;
    text-align: center;
  }

  .footer__social-list {
    display: flex;
    justify-content: flex-end;
  }

  .footer__social-el {
    padding-left: 1rem;
  }

  .footer__info {
    border-bottom: 1px solid #ffffff;
    padding: 2rem 0;
    grid-column: span 6/span 6;
    font-family: barlow--regular;
    font-size: 1rem;
    line-height: 1.5rem;

    .footer__info-title {
      font-family: barlow--regular;
      font-style: italic;
      font-weight: 200;
      margin: 0 0 0.5rem;
      text-transform: uppercase;
      font-size: 1.25rem;
      line-height: 1.75rem;
      display: block;
    }

    a {
      color: #ffffff;
      display: block;
      font-family: barlow--regular;
      font-size: 1rem;
      line-height: 1.5rem;

      &:hover {
        text-decoration: underline;
      }
    }
  }

  .footer__social-el,
  .footer__logo {
    svg {
      path,
      rect {
        fill: #ffffff;
      }
    }
  }

  .footer__social-el:hover {
    svg {
      path,
      rect {
        transition: fill .25s;
        fill: #027ACA;
      }
    }
  }

  .footer__bottom {
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    border-top: 1px solid #ffffff;
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: .875rem;
    line-height: 1.25rem;

    a {
      font-size: .75rem;
      padding: 0 1rem;

      &:hover {
        text-decoration: underline;
      }
    }

    .footer__date {
      font-size: .75rem;
      line-height: 1rem;
    }
  }

  .footer__sitemap {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(12,minmax(0,1fr));
  }

  .footer__sitemap-col {
    padding: 0;
    margin: 3rem 0;
    grid-column: span 3/span 3;

    @media (max-width: 1279px) {
      grid-column: span 6/span 6;
    }

    @media (max-width: 799px) {
      grid-column: span 12/span 12;
    } 
    
    .sitemap-title {
      font-size: .75rem;
      line-height: 1rem;
      color: #f36931;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: .5rem;
    }

    a {
      font-family: barlow--regular;
      font-size: .75rem;
      line-height: 1rem;
      list-style: none;
      text-transform: uppercase;
      padding: 0.325rem 0;
      display: block;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
  
  .blog-header {
    background-color: transparent;
    text-align: center;
  }
  
  .blog-header__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 3.3rem 0 0;
  }
  .blog-header__title {
    font-size: 2rem;
  }
  .blog-header__subtitle {
    margin: 1rem 0 2rem;
  }
  
  .blog-header__form {
    margin: 0 1rem;
  }
  
  @media screen and (min-width: 768px) {
    .blog-header__form {
      width: 500px;
      margin: 0 auto;
    }
  }
  
  .tag-filter{
    background-color:#031527;
    color: #fff;
    text-align: center;
    font-family: barlow--medium;
    font-size: 0.8em;
    padding: 15px 0;
  }
  .tag-filter span{
    transform: rotate(90deg);
    display: inline-block;
    margin-left: 15px;
  }
  .tag-filter button{
    -webkit-appearance: none;
    background: none;
    color: #fff;
    border: 0;
    outline: none;
    cursor: pointer;
    line-height: 30px;
    font-size: 20px;
  }
  .tag-filter .tag-filter-selector{
    display: none;
  }
  .tag-filter .tag-filter-selector ul{
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .tag-filter .tag-filter-selector ul li{
    display: inline-block;
  }
  .tag-filter .tag-filter-selector ul li a{
    border: 0;
    color: #fff;
    background-color: #009ffd;
    border-radius: 5px;
    display: inline-block;
    padding: 4px 14px;
    font-family: barlow--regular;
    transition: all .3s ease;
    margin: 5px 13px;
    font-size: 20px;
    line-height: 30px;
  }
  .tag-filter .tag-filter-selector ul li a:hover{
    color: #009ffd;
    background-color: #fff;
  }
  
  .blog-index {
    display: flex;
    flex-wrap: wrap;
    padding: 1.3rem 0;
  }
  .blog-sidebar {
    padding: 3.3rem 0;
  }
  .blog-index:after {
    content: "";
    flex: auto;
  }
  .blog-index__tag-header {
    flex: 1 0 100%;
    padding: 0 1rem;
  }
  .blog-index__tag-header_inner{
    background-color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
  }
  .blog-index__tag-subtitle {
    font-size: 1.16rem;
    line-height: 1.1;
  }
  .blog-index__tag-header p.blog-index__tag-subtitle,
  .blog-index__tag-header h1.blog-index__tag-heading{
    display: inline-block;
    font-family: barlow--black;
    font-size: 1.25em;
    line-height: normal;
    letter-spacing: normal;
    margin-bottom: 0;
  }
  .blog-index__tag-header_inner .tag-close-icon{
    position: absolute;
    right: 20px;
    top: 25%;
  }
  .blog-index__tag-header_inner .tag-close-icon a{
    display: block;
  }
  .blog-index__tag-header_inner .tag-close-icon img{
    width: 30px;
    height: 30px;
  }
  .blog-index__post {
    flex:  0 0 100%;
    padding: 1rem;
  }
  .blog-index__post .blog-index__post-internal{
    background-color: #fff;
    height: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(214,214,214,1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(214,214,214,1);
    box-shadow: 0px 5px 20px 0px rgba(214,214,214,1);
  }
  .blog-index__post .blog-index__post-internal img{
    border-radius: 5px 5px 0 0;
    object-fit: cover;
  }
  .blog-index__post .blog-index__post-content{
    padding: 15px;
  }
  @media screen and (min-width: 780px) {
    .blog-index__post {
      flex:  0 0 calc(100%/2);
    }
  }
  @media screen and (min-width: 1200px) {
    .blog-index__post {
      flex:  0 0 calc(100%/3);
    }
  }
  @media screen and (min-width: 768px) {
    .blog-index__post--large {
      flex: 1 0 100%;
      display: flex;
      justify-items: space-between;
    }
  }
  .blog-index__post-image {
    display: block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
      }
  @media screen and (min-width: 768px) {
    .blog-index__post-image--large {
      flex: 1 1 100%;
    }
    .blog-index__post-content--large {
      flex: 1 1 100%;
      padding-left: 2rem;
    }
    .blog-index__post-image--large {
      flex: 1 1 48%;
    }
    .blog-index__post-content--large {
      flex: 1 1 48%;
      padding-left: 2rem;
    }
  }
  .blog-index__post-content h2 {
    margin: 0;
  }
  
  /*---------------------------*/
  
  .blog-index__post-content--small h2 {
    font-size: 28px;
    line-height: 33px;
  }
  @media screen and (max-width: 1440px){
    .blog-index__post-content--small h2 {
      font-size: 25px;
      line-height: 30px;
    }
  }
  .blog-index__post-content--small h2 a,
  .blog-index__post-content--small p a{
    transition: all 0.5s ease;
  }
  .blog-index__post-content--small h2 a:hover{
    opacity: 0.7;
  }
  
  .blog-index__post-content p {
    font-family: Lato, sans-serif;
  }
  .blog-index__post-content .topic-tag,
  .blog-post .topic-tag{
    margin-bottom: 24px;
  }
  .blog-index__post-content .topic-tag a,
  .blog-post .topic-tag a{
    display: inline-block;
    background-color: #FF0523;
    border: 1px solid #FF0523;
    color: #fff;
    border-radius: 5px;
    padding: 7px 14px;
    font-size: .65em;
    margin-top: 10px;
    margin-right: 10px;
    transition: all 0.3s ease;
  }
  .blog-index__post-content .topic-tag a:hover,
  .blog-post .topic-tag a:hover{
    background-color: #fff;
    color: #FF0523;
  }

  /*CTA in colonna a sinistra*/
  .blog-index__post-content .blog-post-info-contact-cta,
 .blog-post .blog-post-info-contact-cta{
    margin-bottom: 24px;
  }
 .blog-index__post-content .blog-post-info-contact-cta a,
 .blog-post .blog-post-info-contact-cta a{
    display: inline-block;
    background-color: #FF0523;
    border: 1px solid #FF0523;
    color: #fff;
    border-radius: 5px;
    padding: 7px 14px;
    font-size: .80rem;
    margin-top: 10px;
    margin-right: 10px;
    transition: all 0.3s ease;
  }
 .blog-index__post-content .blog-post-info-contact-cta a:hover,
 .blog-post .blog-post-info-contact-cta a:hover{
    background-color: #fff;
    color: #FF0523;
  }

  .blog-index__post-content h2{
    margin-bottom: 30px;
  }
  .blog-index__post-content h2 a {
    color: #031527;
  }
  
  .blog-index__post-content p{
    font-size: 20px;
    line-height: 30px;
    font-family: barlow--medium;
    margin-bottom: 30px;
  }
  @media screen and (max-width: 1440px){
    .blog-index__post-content p {
      font-size: 18px;
      line-height: 30px;
    }
  }
  
  .blog-index__post-content p a,
  .blog-index__post-content p span{
    font-family: barlow--bold;
    color: #FF0523;
  }
  .blog-index__post-content p a:hover{
    color: #031527;
  }
  .blog-index__post-content .blog-post-read-cta{
    margin-bottom: 15px;
  }
  .blog-index__post-content .blog-post-read-cta a{
    border: 1px solid #009FFD;
    color: #009FFD;
    border-radius: 5px;
    padding: 7px 14px;
    font-size: 12px;
    line-height: 15px;
    font-family: barlow--bold;
    transition: all 0.3s ease;
  }
  .blog-index__post-content .blog-post-read-cta a:hover{
    background-color: #009FFD;
    color: #fff;
  }
  .blog-index__post img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  @media (min-width: 315px){
    .blog-index__post img{
      height: 153px;    
    }
  }
  @media (min-width: 480px){
    .blog-index__post img{
      height: 276px;    
    }
  }
  @media (min-width: 780px){
    .blog-index__post img{
      height: 205px;    
    }
  }
  @media (min-width: 1020px){
    .blog-index__post img{
      height: 182px;    
    }
  }
  @media (min-width: 1200px){
    .blog-index__post img{
      height: 210px;    
    }
  }
  @media (min-width: 1440px){
    .blog-index__post img{
      height: 250px;    
    }
  }
  @media (min-width: 1920px){
    .blog-index__post img{
      height: 330px;    
    }
  }
  
  .blog-index__post.newsletter-subscription .blog-index__post-internal{
    background: rgb(255,5,35);
    background: -moz-linear-gradient(180deg, rgba(255,5,35,1) 0%, rgba(3,21,39,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,5,35,1) 0%, rgba(3,21,39,1) 100%);
    background: linear-gradient(180deg, rgba(255,5,35,1) 0%, rgba(3,21,39,1) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal h3{
    color: #fff;
    font-size: 28px;
    line-height: 45px;
    text-align: center;
    margin-bottom: 40px;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal .hs_email label,
  .newsletter-post .newsletter-post-form .hs_email label{
    display: none;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal .hs_email label.hs-error-msg,
  .newsletter-post .newsletter-post-form .hs_email label.hs-error-msg{
    display: block;
    color: #fff !important;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal input.hs-input,
  .newsletter-post .newsletter-post-form input.hs-input{
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal input::-webkit-input-placeholder,
  .newsletter-post .newsletter-post-form input::-webkit-input-placeholder{ /* Edge */
    color: #fff;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal input:-ms-input-placeholder,
  .newsletter-post .newsletter-post-form input:-ms-input-placeholder{ /* Internet Explorer 10-11 */
    color: #fff;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal input::placeholder,
  .newsletter-post .newsletter-post-form input::placeholder{
    color: #fff;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal img.subscribe-icon{
    height: auto;
    max-width: 45px;
    margin: 0 auto 30px;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal .legal-consent-container p,
  .newsletter-post .newsletter-post-form .legal-consent-container p{
    color: #fff !important;
    font-size: .7em;
    line-height: 1.2;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal .legal-consent-container p a,
  .newsletter-post .newsletter-post-form .legal-consent-container p a{
    color: #fff;
    text-decoration: underline;
    transition: all 0.5s ease;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal .legal-consent-container p a:hover,
  .newsletter-post .newsletter-post-form .legal-consent-container p a:hover{
    opacity: 0.6;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal input.hs-button,
  .newsletter-post .newsletter-post-form input.hs-button{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: barlow--black;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 30px;
    transition: all 0.5s ease;
  }
  .blog-index__post.newsletter-subscription .blog-index__post-internal input.hs-button:hover,
  .newsletter-post .newsletter-post-form input.hs-button:hover{
    background-color: #fff;
    color: #031527;
  }
  
  .blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Lato, sans-serif;
    margin-bottom: 3.3rem;
  }
  .blog-pagination__link {
    display: inline-flex;
    padding: .25rem .4rem;
    margin: 0 7.5px;
    color: #009FFD;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1;
    border-radius: 50%;
    font-family: barlow--black;
    font-size: 20px;
    transition: all 0.3s ease;
  }
  .blog-pagination__link.blog-pagination__number-link{
    width: 45px;
    height: 45px;
    border: 1px solid #009FFD;
    background-color: #fff;
    justify-content: center;
    align-items: center;
  }
  .blog-pagination__link.blog-pagination__number-link.blog-pagination__link--active {
    color: #fff;
    background-color: #009FFD;
  }
  .blog-pagination__link:hover,
  .blog-pagination__link:focus {
    text-decoration: none;
  }
  .blog-pagination__prev-link,
  .blog-pagination__next-link {
    display: inline-flex;
    align-items: center;
  }
  .blog-pagination__prev-link {
    text-align: right;
    margin-right: .25rem;
  }
  .blog-pagination__next-link {
    text-align: left;
    margin-left: .25rem;
  }
  .blog-pagination__prev-link--disabled,
  .blog-pagination__next-link--disabled {
    color: #A6B1B6;
    pointer-events: none;
    cursor: default;
  }
  .blog-pagination__prev-link svg,
  .blog-pagination__next-link svg {
    fill: #009FFD;
    margin: 0 5px;
  }
  .blog-pagination__prev-link--disabled svg,
  .blog-pagination__next-link--disabled svg {
    fill: #B0C1D4;
  }
  .blog-pagination__number-link:hover,
  .blog-pagination__number-link:focus {
    color: #fff;
    background-color: #009FFD;
  }
  
  .blog-header__author-avatar {
    height: 200px;
    width: 200px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
    margin: 0 auto 1.5rem;
  }
  .blog-header__author-social-links a {
    display: inline-block;
    position: relative;
    background-color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 5px;
  }
  .blog-header__author-social-links a:hover {
    background-color: #494a52;
  }
  .blog-header__author-social-links svg {
    fill: #fff;
    height: 15px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .banner.banner-post{
    background: rgb(2,54,106);
    background: -moz-linear-gradient(0deg, rgba(2,54,106,1) 0%, rgba(0,158,252,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(2,54,106,1) 0%, rgba(0,158,252,1) 100%);
    background: linear-gradient(0deg, rgba(2,54,106,1) 0%, rgba(0,158,252,1) 100%);
    background-size: cover;
  }
  .banner-post p.post-date{
    color: #fff;
    font-size: 26px;
  }

  .banner-post p.post-updated-date{
    color: #fff;
    font-size: 20px;
  }
  
  @media screen and (max-width: 479px) {
    .banner-post p.post-date{
      font-size: 20px;
    }

    .banner-post p.post-updated-date{
      font-size: 15px;
    }
  }
  
  .body-wrapper.hs-blog-post{
    background-color: #fff;
  }
  .blog-post {
    max-width: 1170px;
    margin: 0 auto;
    padding: 3.3rem 0;
  }
  .blog-post h1 {
    font-size: 1.6rem;
  }
  .blog-post-info{
    display: block;
    float: left;
    width: 14.529914530000001%;
    text-align: center;
  }
  .blog-post-info.dt{
    display: block;
    position: sticky;
    top: 100px;
  }
  .blog-post-info.mb{
    display: none;
  }
  .blog-post-info a.back-to-blog{
    color: #031527;
    font-family: barlow--black;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    transition: all 0.5s ease;
  }
  .blog-post-info a.back-to-blog svg{
    margin-top: -4px;
    transition: all 0.5s ease;
  }
  .blog-post-info a.back-to-blog:hover{
    color: #ff0523;
  }
  .blog-post-info a.back-to-blog:hover svg{
    fill: #ff0523;
  }
  .blog-post-info .blog-post-author-info{
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 30px;
  }
  .blog-post-info .blog-post-author-info img{
    display:block;
    margin: 0 auto 15px;
    max-width: 100px;
    max-height: 100px;
    object-fit:cover;
    border-radius:50%;
  }
  .blog-post-info .blog-post-author-info a,
  .blog-post-info .blog-post-author-info span{
    font-family: barlow--bold;
    color: #ff0523;
  }
  .blog-post-info .social-links ul{
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 150px;
    margin: 0 auto;
  }
  .blog-post-info .social-links ul li{
    flex: 1 1 30%;
    margin-bottom: 15px;
  }
  .blog-post-info .social-links ul li a:hover svg{
    fill: rgba(0,159,253,1.0);
  }
  .blog-post-content{
    display: block;
    float: left;
    margin-left: 2.564102564%;
    width: 65%;
    padding-left: 50px;
    padding-right: 20px;
    margin-top: calc(-3.3rem - 100px);
  }
  @media (max-width: 1200px){
    .hs-blog-post .content-wrapper{
      max-width: 100%;
    }
  }
  @media (max-width: 1200px) and (min-width: 768px){
    .blog-post-info{
      width: 32% !important;
    }
    .blog-post-content{
      width: 68% !important;
      padding-left: 20px;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
  }
  @media (max-width: 767px){
    .blog-post-info{
      width: 100% !important;
      padding-left: 20px;
      padding-right: 20px;
    }
    .blog-post-info.dt{
      display:none;
    }
    .blog-post-info.mb{
      display: block;
    }
    .blog-post-content{
      width: 100% !important;
      padding-left: 20px;
      padding-right: 20px;
      margin: 0 !important;
    }
  }
  .blog-post-content img.blog-post-image{
    width:100%;
    height: auto;
    margin-bottom: 60px;
  }
  .content-wrapper{
    position: relative;
  }
  .blog-post__body p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .blog-post__body p strong{
    font-weight: inherit;
  }
  .blog-post__body img{
    max-width: 100%;
    height: auto;
  }
  .blog-post__body ul,
  .blog-post__body ol{
    padding-left: 33px;
  }
  .blog-post__body ul li,
  .blog-post__body ol li{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .blog-post__body h2{
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 30px;
    margin-top: 45px;
    letter-spacing: 1.2px;
  }
  @media (max-width: 480px){
    .blog-post__body h2 {
      font-size: 26px;
      line-height: 30px;
      margin-top: 30px;
    }
  }
  .blog-post__body h2 strong{
    font-family: barlow--bold;
    font-weight: inherit;
  }
  .blog-post__body h3{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    margin-top: 45px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .blog-post__body h3 strong{
    font-family: barlow--bold;
    font-weight: inherit;
  }
  
  .blog-post__body blockquote{
    background-color:#F5F7F9;
    border-left: 0;
    margin: 20px 0;
    padding: 1.5rem;
    color: #FF0523;
    font-family: barlow--light;
    text-align: center;  
  }
  .blog-post__body blockquote:before,
  .blog-post__body blockquote:after{
    content: '“';
    font-size: 150px;
    display:block;
  }
  .blog-post__body blockquote:before{
    height: 24px;
    margin-top: 30px;
  }
  .blog-post__body blockquote:after{
    margin-top: 40px;
    height:14px;
  }
  
  .blog-post__body blockquote p{
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 0;
    font-family: barlow--light;
    font-style: italic; 
  }
  .blog-post__body blockquote p:last-child{
    font-family: barlow--black;
    font-style: normal;
    color: #031527;
    font-size: 16px;
    margin-top: 20px;
    text-transform: uppercase;
  }
  
  .blog-post__body .end-post-navigation ul{
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }
  @media (max-width: 520px){
    .blog-post__body .end-post-navigation ul{
      display: block;
      text-align: center;
    }
  }
  .blog-post__body .end-post-navigation ul li{
    font-family: barlow--bold;
    font-size:0.75em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #828a91;
  }
  .blog-post__body .end-post-navigation ul li a{
    color: #009FFD;
  }
  .blog-post__body .end-post-navigation ul li a:hover{
    color: #031527;
  }
  
  .blog-post__meta {
    margin: 1rem 0;
  }
  .blog-post__meta a {
    color: #494a52;
    text-decoration: underline;
  }
  
  .blog-post__tags {
    font-family: Lato, sans-serif;
    color: #000;
  }
  .blog-post__tags svg {
    width: 15px;
    height: auto;
    margin-right: 10px;
  }
  .blog-post__tag-link {
    font-size: .8rem;
    color: #000;
  }
  
  .blog-recent-posts {
    margin-top: 3rem;
    background-color: transparent;
    padding: 2rem 0;
  }
  .blog-recent-posts h2 {
    text-align: center;
  }
  .blog-recent-posts__list {
    display: flex;
    flex-wrap: wrap;
  }
  .blog-recent-posts__post {
    display: block;
    flex:  0 0 100%;
    color: #494a52;
    padding: 1rem;
  }
  @media screen and (min-width: 768px) {
    .blog-recent-posts__post {
      flex:  0 0 calc(100%/2);
    }
  }
  @media screen and (min-width: 1000px) {
    .blog-recent-posts__post {
      flex:  0 0 calc(100%/3);
    }
  }
  .blog-recent-posts__post:hover {
    text-decoration: none;
  }
  .blog-recent-posts__image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: 63%;
  }
  .blog-recent-posts__title {
    margin: 1rem 0 .5rem;
  }
  
  .blog-comments {
    max-width: 680px;
    margin: 0 auto;
  }
  .blog-comments form {
    max-width: 100%;
  }
  
  .blog-comments .comment-reply-to {
    border: 0 none;
  }
  .blog-comments .comment-reply-to:hover {
    background-color: transparent;
    text-decoration: underline;
    color: #494A52;
  }
  
  
  /*             Blog Listing with Sidebar            */
  .post-item .page-center{
    display: -webkit-flex; /* Safari */
    display: flex; /* Standard syntax */
    margin-bottom: 20px;
  }
  .post-item .page-center .span4, .post-item .page-center .span8 {
    -webkit-flex: 1; /* Safari */
    -ms-flex: 1; /* IE 10 */
    flex: 1; /* Standard syntax */
  }
  .post-item .page-center .span8 {
    flex-basis: 31.914893614%;
    margin-left: 2.564102564%;
  }
  img.featured-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
  }
  
  @media (max-width: 767px) {
    .post-item .page-center {
      display: block;
    }
  
    .featured-image-wrapper.span4 {
      margin: 0 0 15px;
    }
  
  }
  
  
  .submitted-message p {
    color: #fff;
  }
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #d4d4d4;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 0;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4F7D24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.pass input#hs-pwd-widget-password {
  height: auto !important;
  margin: 10px 0 !important;
}
.content-wrapper.email form input[type="email"] {
  width: 100% !important;
}
.subs form {
  max-width: 100%;
}

:root {
  /* colors  */
  --white: #ffffff;
  --secondary-200: #838C97;
  --secondary-500: #031527;
  --typography-body: var(--secondary-500);
  --form-input-border-clr: var(--secondary-500);
  --form-input-placeholder-clr: #cccccc;
  /* radius */
  --radius-s: 1rem;
  --radius-m: 2rem;
  --radius-l: 4rem;
  --radius-xl: 6rem;
  --radius-xxl: 8rem;
  /* buttons */
  --button-font-size: calc(1rem + 4px);
  --button-padd: 0.5rem calc(1rem + 2px);

  
}

html {
  scroll-behavior: smooth;
}
:target:before {
    content: "";
    display: block;
    height: 100px;
    margin: -100px 0 0;
}  
  
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) li.hs-menu-depth-2:first-child>ul>li:first-child>a{
  font-family: barlow--bold,Helvetica,Arial,Sans-Serif !important;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li{
  margin-bottom: 60px !important;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li>a, .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li+li>a{
  font-size: .9rem !important;
  font-weight: 400 !important;
  letter-spacing: 0px !important;
  margin-bottom: 0px !important;
  padding-bottom: .75rem;
  font-family: barlow--regular,Helvetica,Arial,Sans-Serif !important;

  line-height: 1.5rem;
  font-size: .9rem;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li{
  margin-bottom: inherit !important;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child+li+li+li>a{
  text-transform: inherit !important;
}

.hs-menu-depth-3 > a:first-child{
  text-transform: inherit !important;
  line-height: 1.25rem !important;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .hs-menu-depth-3 > ul.hs-menu-children-wrapper{
    text-align: left;

}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .hs-menu-depth-3 > ul.hs-menu-children-wrapper li a{
    text-align: left;
    font-size: .9rem;
    color: inherit !important;
}


.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(6) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li:first-child{
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 2.4px;
  line-height: 1.5rem;
  color: #009ffd;
  text-transform: uppercase;
  margin-bottom: 30px!important;
  font-family: barlow--medium,Helvetica,Arial,Sans-Serif !important;
  text-align: left;
  height: auto !important;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul a{
  color: #40c6cf;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:nth-child(2) .mega-menu-wrap>div>ul>li:first-child+li>ul>li>ul>li>a{
  text-transform: uppercase;
}

/* Buttons */
.btn,
a.btn {
  font-family: barlow-condensed--bold;
  font-style: italic;
  font-weight: 700;
  font-size: var(--button-font-size);
  letter-spacing: 0.4px;
  padding: var(--button-padd);
  border-radius: var(--radius-xl);
}
.btn.btn-primary,
a.btn.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;

  background-color: var(--primary-color);
  color: var(--white);
}
.btn.btn-primary:hover,
a.btn.btn-primary:hover {
  color: #ffffff;
  background-color: transparent;
}
.btn.btn-primary::before,
a.btn.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  
  border-radius: 90px;
  background-color: var(--primary-color);
}
.btn.btn-primary::after,
a.btn.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  border-radius: 90px;
  transition: opacity 0.4s ease-in-out;
  background: linear-gradient(to left,rgba(255, 145, 0, 0.6) 0%, rgba(255, 145, 0, 0.3) 10%, #eb0000 30%);
}

.btn.btn-primary:hover::after,
a.btn.btn-primary:hover::after,
.btn.btn-primary:focus::after,
a.btn.btn-primary:focus::after {
  opacity: 1;
}