/* Theme base styles */

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

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

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
/*! 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;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

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

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

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

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

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

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

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

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

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

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

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

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

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

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

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

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

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

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

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

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

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

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.dnd-section .dnd-column {
  padding: 0 20px;
}

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

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

body {
  line-height: 1.4;
  word-break: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}

/* Image alt text */

img {
  font-size: 14px;
  word-break: normal;
}


/*b, strong {
    font-weight: 900 !important;
}*/
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}
/* Form fields */

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

/* Labels */

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

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background-color: #FFF;
  border: 2px solid;
  border-radius: 3px;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

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

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}
:root {
  
  /* Global Linear Gradient  */
  --linear-gradient : linear-gradient(360deg,#eef4fd 0%,#eef4fd 100%);
  
	/* Margin typo */
	--typo-xlarge: 50px;
	--typo-large: 40px;
	--typo-large-var: 35px;
	--typo-medium: 30px;
	--typo-med-var: 25px;
	--typo-med-small: 20px;
	--typo-small: 10px;
	--typo-unset: 0px;

	/* Colori */
	--black: #484848;
	--black2: #222222;
  --black270: #222222B2;
	--blue: #0F4683;
  --cerulean : #F1F8FF;
	--light-blue: #4DABFF;
	--red: #C8102E;
	--bg-grey: #E5E5E5;
	--hr-grey: #ECECEC;
	--white: #fff;

	/* Font */
	--lato: 'Lato', sans-serif;

	/* Font Weight */
	--light: 300;
	--regular: 400;
	--medium: 700;
	--bold: 900;

	/* Font Size */
	--fs-large: 48px;
	--fs-large-med: 40px;
	--fs-medium: 34px;
	--fs-med28: 28px;
	--fs-med-var: 25px;
	--fs-med-small: 20px;
	--fs-small-var: 18px;
	--fs-small: 16px;
	--fs-xsmall: 14px;
	--fs-xsmall-var: 10px;

	/* Line height */
	--lh-xlarge: 45px;
	--lh-large: 40px;
	--lh-medium: 38px;
	--lh-med-var: 35px;
	--lh-med-small: 30px;
	--lh-small-var: 25px;
	--lh-small: 20px;
	--lh-xsmall: 15px;

	/* Aria */
	--aria-xlarge: 200px;
	--aria-large: 130px;
	--aria-large-var: 80px;
	--aria-lg-med: 60px;
	--aria-medium: 50px;
	--aria-med-var: 40px;
	--aria-med-small: 35px;
	--aria-small: 30px;
	--aria-small-var: 25px;
	--aria-xsmall: 20px;
	--aria-xsmall-var: 15px;
	--aria-unset: 0;

	/* Header height */
	--header-height: 80px;
  --header-private-mb-height: 60px;

}


/*  Classes  */

/* Reset container */

@media (min-width: 960px) {
	.reset-padd {
		padding: var(--aria-unset) !important;
	}
}

@media (max-width: 1199px) {
	.reset-xl {
		padding: var(--aria-unset) !important;
	}
}

@media (max-width: 959px) {
	.reset-lg {
		padding: var(--aria-unset) !important;
	}
}

@media (max-width: 639px) {
	.reset-md {
		padding: var(--aria-unset) !important;
	}
}

@media (max-width: 1199px) {
	.reset-child {
		margin: 0 40px;
	}

	.reset-child-padd {
		padding: 0 40px;
	}

	.reset-child.reset-child-lg {
		margin: 0;
	}
}

@media (max-width: 959px) {
	.reset-child-lg {
		margin: 0 30px;
	}

	.reset-child {
		margin: 0 30px;
	}

	.reset-child-padd {
		padding: 0 30px;
	}

	.reset-child.reset-child-lg {
		margin: 0 30px;
	}
}

@media (max-width: 639px) {
	.reset-child-lg {
		margin: 0 15px;
	}

	.reset-child {
		margin: 0 15px;
	}

	.reset-child-padd {
		padding: 0 15px;
	}

	.reset-child.reset-child-lg {
		margin: 0 15px;
	}
}

/* Margin top typo */	
.mt20 {	
	margin-top: var(--typo-med-small);	
}	
.mt30 {	
	margin-top: var(--typo-medium);	
}	

/* Margin bottom typo */
.mb50 {
	margin-bottom: var(--typo-xlarge);
}

@media (max-width: 639px) {
	.mb50 {
		margin-bottom: var(--typo-med-small);
	}
}

.mb20 {
	margin-bottom: var(--typo-med-small);
}

@media (max-width: 639px) {
	.mb20 {
		margin-bottom: var(--typo-small);
	}
}

.mb10 {
	margin-bottom: var(--typo-small);
}

.mb0 {
	margin-bottom: var(--typo-unset);
}

/* Aria */
.aria-top-large {
	padding-top: var(--aria-large);
}

@media (max-width: 959px) {
	.aria-top-large {
		padding-top: var(--aria-xsmall);
	}
}

.aria-top-large-var {
	padding-top: var(--aria-large-var);
}

.aria-bottom-large {
	padding-bottom: var(--aria-large);
}

@media (max-width: 959px) {
	.aria-bottom-large {
		padding-top: var(--aria-xsmall);
	}
}

.aria-bottom-unset {
	padding-bottom: var(--aria-unset);
}

.aria-bottom-medium {
	padding-bottom: var(--aria-medium);
}

@media (max-width: 959px) {
	.aria-bottom-medium {
		padding-bottom: var(--aria-xsmall);
	}
}

.aria-top-medium {
	padding-top: var(--aria-medium);
}

@media (max-width: 959px) {
	.aria-top-medium {
		padding-top: var(--aria-med-small);
	}
}

.aria-top-med-var {
	padding-top: var(--aria-med-var);
}

@media (max-width: 959px) {
	.aria-top-med-var {
		padding-top: var(--aria-med-small);
	}
}

.aria-top-small {
	padding-top: var(--aria-small);
}

.aria-top-small-var {
	padding-top: var(--aria-small-var);
}

.aria-top-xsmall {
	padding-top: var(--aria-xsmall);
}

.aria-bottom-xsmall {
	padding-bottom: var(--aria-xsmall);
}

.aria-top-xsmall-var {
	padding-top: var(--aria-xsmall-var);
}

.aria-top-unset {
	padding-top: var(--aria-unset);
}

@media (min-width: 1200px) {
	.aria-right-xlarge {
		padding-right: var(--aria-xlarge);
	}
}

/* Font Family */
.lato {
	font-family: var(--lato);
}

/* Font Size */
.fs-large {
	font-size: var(--fs-large);
}

@media (max-width:639px) {
	.fs-large {
		font-size: var(--fs-med-var);
	}
}

.fs-large-med {
	font-size: var(--fs-large-med);
}

@media (max-width:639px) {
	.fs-large-med {
		font-size: var(--fs-med-var);
	}
}

.fs-med28 {
	font-size: var(--fs-med28);
}

@media (max-width:639px) {
	.fs-med28 {
		font-size: var(--fs-small-var);
	}
}

.fs-medium {
	font-size: var(--fs-medium);
}

@media (max-width:639px) {
	.fs-medium {
		font-size: var(--fs-med-var);
	}
}

.fs-med-var {
	font-size: var(--fs-med-var);
}

.fs-med-small {
	font-size: var(--fs-med-small);
}

@media (max-width:959px) {
	.fs-med-small {
		font-size: var(--fs-small);
	}
}

.fs-small-var {
	font-size: var(--fs-small-var);
}

.fs-small {
	font-size: var(--fs-small);
}

.fs-xsmall {
	font-size: var(--fs-xsmall);
}

.fs-xsmall-var {
	font-size: var(--fs-xsmall-var);
}

/* Line height */
.lh-xlarge {
	line-height: var(--lh-xlarge);
}

@media (max-width:639px) {
	.lh-xlarge {
		line-height: var(--lh-large);
	}
}

.lh-large {
	line-height: var(--lh-large);
}

.lh-medium {
	line-height: var(--lh-medium);
}

@media (max-width:639px) {
	.lh-medium {
		line-height: var(--lh-med-var);
	}
}

.lh-med-small {
	line-height: var(--lh-med-small);
}

.lh-small-var {
	line-height: var(--lh-small-var);
}

.lh-small {
	line-height: var(--lh-small);
}

.lh-xsmall {
	line-height: var(--lh-xsmall);
}

/* Font Weight */
.light {
	font-weight: var(--light);
}

.regular {
	font-weight: var(--regular);
}

.medium {
	font-weight: var(--medium);
}

.bold {
	font-weight: var(--bold);
}

/* Colori */
.colorwhite {
	color: var(--white);
}

.colorblue {
	color: var(--blue);
}

.colorlightblue {
	color: var(--light-blue);
}

.colorblack {
	color: var(--black);
}

.colorblack2 {
	color: var(--black2);
}

.colorblack270 {
	color: var(--black270);
}

.colorred {
	color: var(--red);
}

.bg-grey {
	background: var(--bg-grey);
}

.bg-white {
	background: var(--white);
}

.opacity3 {
	opacity: 0.3;
}

.opacity6 {
	opacity: 0.6;
}

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

footer.footer {
	background-color: var(--blue);
	border-top: 5px solid var(--red);
	padding-top: var(--aria-large-var);
	padding-bottom: var(--aria-small-var);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 70px auto auto 100px;
	gap: 0 120px;
	grid-template-areas:
		"l gl"
		"gd gl"
		"s gl"
		". ."
		"c p";
}

.footer .footer-logo {
	grid-area: l;
}

.footer .grid-data {
	grid-area: gd;
}

.footer .grid-data p {
	font-size: 12px;
	line-height: 18px;
	color: var(--white);
	padding-top: var(--aria-small-var);
}

.footer .social {
	grid-area: s;
}

.footer .social-links {
	padding-top: var(--aria-small-var);
	justify-content: flex-start;
}

.footer .social-links a:first-child .social-links__icon {
	margin-left: var(--typo-unset);
}

.footer .social-links__icon {
	width: 24px;
	height: 24px;
	margin: 0 8px;
	background-color: rgba(255, 255, 255, 0.1);
}

.footer .social-links__icon:hover {
  background: #b5b5b5;
}

.footer .social-links__icon svg {
	height: 13px;
}

.footer .footer-menu {
	grid-area: gl;
}

.footer .grid-list {
	display: flex;
}

.footer .grid-list>* {
	flex: 1 0 50%;
}

.footer .grid-list h4 {
	font-family: var(--lato);
	font-weight: var(--medium);
	font-size: var(--fs-med-small);
	line-height: var(--lh-med-small);
	margin-bottom: var(--typo-med-small);
	color: var(--white);
}

.footer .grid-list a,
.footer .policies a {
	font-family: var(--lato);
	font-weight: var(--regular);
	font-size: var(--fs-xsmall);
	line-height: var(--lh-small-var);
}

.footer .grid-list a,
.footer .copyright p,
.footer .policies a {
	color: #D9DBE1;
}

.footer .copyright {
	grid-area: c;
}

.footer .policies {
	grid-area: p;
}

.footer .policies ul {
	list-style: none;
	display: flex;
	justify-content: flex-end;
	padding-left: var(--aria-unset);
}

.footer .policies li {
	display: flex;
	align-items: center;
}

.footer .policies li:not(:last-child) a::after {
	content: '|';
	margin-left: 7px;
}

.footer .policies li:not(:first-child) {
	margin-left: 7px;
}

.footer a:hover {
  text-decoration: none;
  color: var(--white);
}

/* MEDIA QUERIES */
@media (max-width: 959px) {
	footer.footer {
		padding-top: var(--aria-small-var);
		padding-bottom: var(--aria-large-var);
	}

	.footer .uk-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.footer-grid {
		gap: var(--aria-unset);
		grid-template-rows: auto;
		grid-template-areas:
			"l s"
			"gl gl"
			"p p"
			"gd gd"
			"c c";
	}

	.footer .footer-logo {
		max-width: 100px;
	}

	.footer #hs_cos_wrapper_module_16220397515211 {
		place-self: center end;
	}

	.footer .social-links {
		padding-top: var(--aria-unset);
	}

	.footer #hs_cos_wrapper_module_16220418506818 {
		padding-top: var(--aria-med-var);
	}

	.footer .grid-list h4 {
		font-size: var(--fs-small-var);
	}

	.footer .policies ul {
		justify-content: flex-start;
		padding-top: var(--aria-lg-med);
	}

	.footer .policies a {
		font-size: 12px;
	}

	.footer .grid-data {
		padding-top: var(--aria-xsmall);
	}
}

@media (max-width: 375px) {
  .footer .policies li:not(:last-child) a::after {
    margin-left: 3px;
  }
  
  .footer .policies li:not(:first-child) {
    margin-left: 3px;
  }
  
  .footer .policies a {
    font-size: 11px;
  }
}

/* FOOTER PRIVATE */

footer.footer-private {
  background: #FBFDFF;
  border: none;
  padding: var(--aria-small) 0;
}

.footer-private_container {
	display: flex;
	justify-content: space-between;
}

.footer-private .copyright p, .footer-private .policies a {
	color: var(--black);
}

/* MEDIA QUERIES */

@media (max-width: 959px) {
  .footer-private .uk-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .footer-private_container {
    flex-direction: column;
  }
  
  .footer-private .policies ul {
		padding-top: var(--aria-unset);
    margin-top: var(--typo-medium);
	}
  
  .footer-private .policies a {
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  .footer-private .copyright p {
    font-size: 13px;
  }
  
  .footer-private .policies a {
    font-size: 10px;
  }
}
/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 20px;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 20px 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 30px;
  }
}

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}

.header__logo--main {
  padding-top: 20px;
}

/* Search bar */

.header__search {
  padding: 0 22px;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 15px;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 20px 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 30px;
  }
}


/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 35px;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 6px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 10px 15px;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  background-color: #EBEFF3;
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 18px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 10px;
  margin-top: 3px;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 30px;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 30px;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 22px;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {

  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    height: calc(100vh - 115px);
    left: 0;
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 26px;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}


/* CON TE PRESTITI MENU */

.mobile-cta {
  display: none;
}

header.header {
  position: fixed;
  width: 100%;
  height: var(--header-height);
  border-top: 6px solid var(--red);
  background: var(--linear-gradient);
  z-index: 2;
  transition: all 0.3s ease;
}

.header>.uk-container,
.header .header-wrapper {
  height: 100%;
}

.header .uk-container {
  padding-left: 15px;
  padding-right: 15px;
}

.header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  max-width: 145px;
  display: flex;
  align-items: center;
}

.header nav {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw + 0.1rem, 40px);
  padding-left: var(--aria-small-var);
}

.header .nav-items li, .header .nav-cta a {
  display: flex;
  align-items: center;
}

.header nav a {
  text-transform: uppercase;
  font-family: var(--lato);
  font-weight: var(--medium);
  font-size: var(--fs-xsmall);
  line-height: var(--lh-xsmall);
  color: var(--blue);
  padding: 5px;
  margin: -5px;
  white-space: nowrap;
}

.header .nav-items a {
  opacity: 0.5;
}

.header .nav-items a:hover {
  opacity: 1;
}

.header a:hover,
.header a:focus {
  text-decoration: none;
}

.header .nav-cta li:last-child a {
  padding: 5px var(--aria-xsmall-var);
  border: 2px solid var(--blue);
  border-radius: 5px;
}

.header .nav-cta a::before {
  margin-right: 12px;
}

.header .nav-cta li:first-child a::before {
  background-image: url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/conte_icon_header_help.svg');
}

.header .nav-cta li:last-child a::before {
  background-image: url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/conte_icon_area_personale.svg');
}

.header .nav-cta li:first-child a::before , .header .nav-cta li:last-child a::before {
  content: '';
  display: inline-block;
  height: 24px;
  width: 24px;
  object-fit: contain;
  background-repeat: no-repeat;
}

/*  Quote footer */
.header-bottom-mobile {
  display: none;
  transform: translateY(100%);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 80;
  background-color: #fff;
  padding: 0px 12px 20px;
  transition: transform .3s ease;
}

.hero-home_form.bg-white.footer_form {
    max-width: none;
}

.header-bottom-mobile.is-open {
    transform: translateY(0);
    z-index: 101;
}

.header-bottom-mobile .header-mobile-trigger {
    position: absolute;
    width: 100%;
    color: #fff;
    background-color: #4DABFF;
    bottom: 100%;
    left: 0;
    text-align: center;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    padding-bottom: env(safe-area-inset-bottom);
    border-radius: 15px 15px 0 0;
}

/* MENU MOBILE */
#mobile-menu.uk-offcanvas-overlay, #desktop-menu.uk-offcanvas-overlay {
  background-color: rgba(15, 72, 132, 0.5);
}

#mobile-menu .uk-offcanvas-bar {
  padding-left: var(--aria-unset);
  padding-right: var(--aria-unset);
  background-color: var(--blue);
}

#mobile-menu .uk-offcanvas-close {
  top: 10px;
}

#mobile-menu .uk-offcanvas-close:hover, #mobile-menu .uk-offcanvas-close:focus {
  background-color: unset;
}

#mobile-menu .uk-nav {
  margin-top: var(--typo-med-var);
  background-color: #0d4075;
}

#mobile-menu li {
  padding-left: var(--aria-xsmall);
  transition: 150ms;
}

#mobile-menu li:hover {
  background-color: rgba(16, 174, 255, 0.3);
}

#mobile-menu a {
  color: var(--white);
}

/* END MENU MOBILE */

/* MEDIA QUERIES */

@media (min-width: 1000px) {
  header.header.z-internal {
    z-index: 0;
  }
}

@media (max-width: 999px) {
  header.header.home-header.is-shadow {
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  }
  
  .logo img {
    height: 65px;
    object-fit: contain;
  }

  header.header.home-header {
      background: var(--white);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      border-top: 3px solid var(--red);
  }
  
  .mobile-cta {
    display: flex;
  }
  
  .mobile-cta :not(:last-child) {
    margin-right: var(--typo-med-small);
  }
}

@media (max-width: 959px) {
  .header-bottom-fb-active {
    display: block;
  }
}

/* MENU PRIVATE */

.mobile-cta-private {
  display: none;
}

header.header-private {
  position: absolute;
  width: 120px;
  margin-top: 6px;
  background: transparent;
  border-top: none;
}

.header-private .uk-container {
	padding: var(--aria-unset);
}

.header-private-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: var(--blue);
}

.header .logo.logo-desktop {
  max-width: 100px;
  margin: var(--typo-medium) auto var(--typo-unset);
}

#hb-desktop-open {
  display: block;
  width: 100%;
  height: 100%;
}

#hb-desktop-open img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}

#desktop-menu .desktop-menu-private_header {
  display: flex;
  justify-content: space-between;
  padding: 0 var(--aria-small);
}

#desktop-menu .uk-offcanvas-bar {
  display: flex;
  flex-direction: column;
  padding: var(--aria-small-var) var(--aria-unset);
  border-top: 6px solid var(--red);
  background: var(--white);
}

#desktop-menu .uk-offcanvas-close {
  color: var(--light-blue);
}

#desktop-menu .uk-offcanvas-close:hover, #desktop-menu .uk-offcanvas-close:focus {
  background: none;
}

#desktop-menu ul {
  flex-grow: 1;
  margin-top: var(--typo-large);
}

#desktop-menu li:not(:first-child) {
  margin-top: var(--typo-xlarge);
}

#desktop-menu li img {
  margin-right: var(--typo-med-small);
}

#desktop-menu .icon-hover, #desktop-menu .icon-active {
  display: none;
}

#desktop-menu a {
  width: 100%;
  padding-left: var(--aria-small);
  text-transform: uppercase;
  font-size: var(--fs-xsmall);
  font-weight: var(--medium);
  line-height: var(--lh-small);
  color: var(--blue);
}

#desktop-menu li:hover a {
  color: rgba(15, 70, 131, 0.4);
}

#desktop-menu li:hover .icon-base, #desktop-menu li.is-active .icon-base {
  display: none;
}

#desktop-menu li:not(.is-active):hover .icon-hover, #desktop-menu li.is-active .icon-active {
  display: inline-block;
}

#desktop-menu p {
  padding-top: var(--aria-small);
  padding-left: var(--aria-small-var);
}

.header-private .nav-items a {
  opacity: 1;
}

.header-private .nav-items a:hover {
  color: var(--light-blue);
}

.header-private .nav-cta li:last-child a {
  padding: 9px var(--aria-xsmall-var);
}

.header-private .nav-cta li:last-child a::before {
  background-image: url('https://19636758.fs1.hubspotusercontent-na1.net/hubfs/19636758/log_out.svg');
  margin-right: var(--typo-unset);
  height: 18px;
  width: 18px;
}

/* MENU PRIVATE - mobile */

.header-private .logo-mobile {
  display: none;
}

.header-private .mobile-menu-private_header {
  display: flex;
	justify-content: space-between;
	padding: 0 var(--aria-xsmall);
}

.header-private .mobile-menu-private_header img {
  max-width: 90px;
}

.header-private .mobile-menu-private_header button, .header-private .mobile-menu-private_header button:hover {
  color: var(--white);
}

.header-private .uk-offcanvas-close {
  position: unset;
}

.header-private #mobile-menu .uk-nav {
	margin-top: var(--typo-large);
  background: transparent;
}

.header-private #mobile-menu li:not(:first-child) {
	margin-top: var(--typo-small);
}

.header-private #mobile-menu a {
  font-size: var(--fs-med-small);
  color: rgba(255,255,255,0.7);
}

/* MENU PRIVATE - MQ */

@media (max-width: 1099px) {
  .header-private nav li:not(:last-child) {
    margin-right: var(--typo-med-small);
  }
}

@media (max-width: 999px) {
  .header-private .logo-desktop, #hb-desktop-open {
    display: none;
  }
  
  .header-private .logo-mobile, .mobile-cta-private {
    display: block;
  }
  
  header.header-private {
    width: 100%;
    height: var(--header-private-mb-height);
  }
  
  .header-private .uk-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .header-private-wrapper {
    position: initial;
    width: auto;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-private #hb-open {
    order: 1;
  }
  
  .header-private .logo {
    order: 2;
  }
  
  .header-private #mobile-logout {
    order: 3;
  }
  
  .header-private .logo img {
    max-height: 50px;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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


.uk-select:not([multiple]):not([size]) {
    -moz-padding-end : 25px;
    -webkit-padding-end: 30px;
    text-overflow: ellipsis;
}
html {
  scroll-behavior: smooth;
}

.nested50 {
	width: 50%;
	margin: 0 auto;
}

.nested66 {
	width: calc(100% * 2 / 3);
	margin: 0 auto;
}

.uk-accordion-title:hover, .uk-accordion-title:focus:hover {
	color: var(--light-blue);
}

.uk-accordion-title:focus {
	color: var(--blue);
}

.conte-cta a:hover {
	color: var(--light-blue);
}

.hs-input:focus-visible {
  outline-color: var(--light-blue);
}

.pt-absolute {
	padding-top: var(--header-height);
}

.pt-private-absolute {
	padding-top: var(--aria-unset);
}

.l-inline-block {
  display: inline-block;
}

.d-none {
  display: none !important;
}

/* MEDIA QUERIES */

@media (max-width: 999px) {
  .pt-private-absolute {
    padding-top: var(--header-private-mb-height);
  }
}

@media (max-width: 959px) {
  .hidden-to-m {
		display: none;
	}
}

@media (min-width: 640px) {
	.hidden-from-s {
		display: none !important;
	}
}

@media (max-width: 639px) {
  /* Cambio padding uk container come da mockup */
	.uk-container {
		padding-left: 30px;
		padding-right: 30px;
	}

	.nested50 {
		width: 100%;
	}

	.nested66 {
		width: 100%;
	}

	.hidden-to-s {
		display: none !important;
	}
}

/* Pages
Partials for pages stylesheets
*/

/* HERO SECTION */
.hero-home_bg {
	background: linear-gradient(360deg, #eef4fd 0%, #eef4fd 100%)
}

.main-overlay {
    display: none;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(15,72,132,0.7);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}
.main-overlay.active-overlay {
    display: block;
    opacity: 1;
    visibility: inherit;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.hero-home_section {
	max-width: 1680px;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: var(--aria-large-var);
	background-repeat: no-repeat;
	background-position-y: bottom;
}

.hero-home_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-home_text h1 {
	font-size: 80px;
	line-height: 1.2;
}

.hero-home_text .sub-title {
	font-size: 30px;
	line-height: 38px;
}

.hero-home_text .rate {
	font-size: 55px;
	line-height: 38px;
	margin-top: 70px;
}

.hero-home_text .rate_amount {
	position: relative;
	display: inline-block;
	margin-left: var(--typo-small);
}

.hero-home_text .rate_amount::after {
	content: '';
	display: block;
	width: 100%;
	height: 14px;
	margin-top: var(--typo-small);
	position: absolute;
	background-image: url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/taeg_line.png');
	background-repeat: no-repeat;
	background-size: contain;
}


.hero-home_form {
	margin-top: 130px;
	width: 100%;
	padding: var(--aria-small-var) var(--aria-small);
	box-shadow: 0px 20px 100px 0px #22222226;
	border-radius: 10px;
}

.hero-home_form .form-inner {
	display: flex;
	align-items: flex-end;
}

.hero-home_form .fields-container {
	display: flex;
	align-items: flex-end;
	flex-grow: 1;
}

.hero-home_form .field {
	flex: 1 1 300px;
	margin-right: var(--typo-med-small);
}

.hero-home_form .uk-form-controls {
	position: relative;
}

.hero-home_form .uk-form-controls::after {
	content: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.73633 8L14.473 1' stroke='%23094585' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M7.73665 8L1 1' stroke='%23094585' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
	font-size: 12px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--blue);
  pointer-events: none;
}

.hero-home_form .uk-form-controls:hover::after {
	cursor: pointer;
}

.hero-home_form .uk-form-label {
	margin-bottom: var(--typo-small);
}

.hero-home_form .uk-select,
.hero-home_form option {
	font-family: var(--lato), sans-serif;
	font-weight: var(--regular);
	font-size: var(--fs-small);
	line-height: var(--lh-small-var);
	color: var(--blue) !important;
	background: none !important;
	cursor: pointer;
}

.hero-home_form .uk-select {
	height: 60px !important;
	border: 1.5px solid #DEDEDE;
	border-radius: 5px;
}

.hero-home_form option:first-child {
	display: none;
}

.hero-home_form button {
  height: 60px;
	white-space: nowrap;
	background: linear-gradient(90deg, #4FB054 2.75%, #80D585 98.01%);
	opacity: 0.3;
	border: 3px solid #E5F7E4;
	border-radius: 5px;
}

.hero-home_form button:hover,
.hero-home_form button:focus {
	border-color: unset;
}

.hero-home_scroll {
	padding-top: var(--aria-medium);
}

/* END HERO SECTION */

/* CONTE FEATURES */
.conte-features_section {
	padding-top: var(--aria-large);
	padding-bottom: var(--aria-xlarge);
}

.conte-features {
	max-width: 85%;
	margin: 0 auto;
}

.hr-red {
	width: 60px;
	height: 4px;
	margin: 0 auto;
	margin-top: 18px;
	background-color: var(--red);
	border-radius: 5px;
}

/* END CONTE FEATURES */

/* CONTE FINANCING */
.conte-financing_section {
	background: #F9FCFF;
}

.conte-financing {
	max-width: 840px;
	margin: 0 auto;
	padding: var(--aria-med-var) var(--aria-large) var(--aria-medium);
	box-shadow: 0px 4px 134px 0px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.conte-financing_heading {
	display: flex;
	justify-content: space-between;
}

.conte-financing_heading_text h3 {
	margin-bottom: 16px;
}

.conte-financing_heading_text span {
	display: inline-block;
}

.conte-financing_data {
	border-top: 1px solid var(--hr-grey);
	border-bottom: 1px solid var(--hr-grey);
}

.conte-financing_data_item {
	display: flex;
	justify-content: space-between;
}

/* END CONTE FINANCING */

/* CONTE GRID */
.home-grid_section {
	padding-top: 180px;
	padding-bottom: 180px;
}

.home-grid_section .prestiti_card_container {
	padding: var(--aria-unset);
}

.home-grid_section .prestiti_card_text h3 {
  font-family: var(--lato);
  font-weight: var(--bold);
  font-size: var(--fs-medium);
  line-height: var(--lh-xlarge);
  margin-bottom: var(--typo-medium);
  color: var(--blue);
}

.home-grid_section .prestiti_card_text p {
  font-size: var(--fs-med-small);
  line-height: var(--lh-med-small);
}

.home-grid_image,
.home-grid_image>:first-child {
	position: relative;
}

.home-grid_image>:nth-child(1) {
	z-index: 1;
}

.home-grid_image>:nth-child(2) {
	position: absolute;
	top: 65px;
	left: 65px;
}

.home-grid_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home-grid_text>*:not(:first-child) {
	padding-top: var(--aria-large-var);
}
/* END CONTE GRID */

/* TESTIMONIAL */
.conte-testimonial_section .hr-red {
	margin-top: var(--typo-large);
}

.conte-testimonial_sx {
	background-color: var(--blue);
	position: relative;
}

.conte-testimonial_sx_text {
	position: absolute;
	width: 60%;
	top: 240px;
	right: 40px;
	max-width: 600px;
}

.conte-testimonial_dx {
	background-color: var(--cerulean);
	padding-left: var(--aria-unset);
}

.conte-slider {
	display: flex;
	flex-direction: column;
	min-height: 560px;
	max-width: 600px;
	margin-top: var(--typo-medium);
	margin-bottom: var(--typo-medium) !important;
	padding: var(--aria-med-var);
	box-shadow: 0px 30px 40px 0px #D4D9E833;
}

.conte-slider .hs_cos_wrapper {
	flex-grow: 1;
	display: flex;
}

.conte-slider .swiper-testimonial {
	display: flex;
	flex-direction: column;
}

/* END TESTIMONIAL */

/* CONTE BLOG */
.conte-blog .hr-red {
	margin-top: var(--typo-xlarge);
}

.swiper-container.conte-blog_container {
	padding-top: var(--aria-large-var);
}

.conte-blog_post {
	max-width: 350px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0 0 10px 10px;
}

.conte-blog_post img {
	height: 240px;
	object-fit: cover;
	width: 100%;
}

.conte-blog_text {
	padding: var(--aria-small);
}

.conte-blog_text h3 {
	font-size: var(--fs-med-small);
	line-height: var(--lh-med-small);
}

.conte-blog_text p,
.conte-blog_text a {
	font-size: var(--fs-small);
	line-height: var(--lh-med-small);
}

.conte-blog_text a::after {
	content: url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/arrow_light_blue.svg');
	margin-left: var(--typo-med-small);
}

.swiper-blog_navigation {
  display: flex;
  justify-content: flex-end;
  padding-right: var(--aria-xsmall-var);
  margin-top: var(--typo-med-small);
}

.swiper-blog_navigation .swiper-button-next, .swiper-blog_navigation .swiper-button-prev {
  position: static;
  color: #18191F;
  margin-top: var(--typo-unset);
}

.swiper-blog_navigation .swiper-button-prev {
  margin-right: var(--typo-large-var);
}

.swiper-blog_navigation .swiper-button-next::after, .swiper-blog_navigation .swiper-button-prev::after {
  font-size: var(--fs-xsmall);
  font-weight: var(--bold);
}

/* END CONTE BLOG */

/* CONTE FAQ */
.conte-faq .hr-red {
	margin-top: var(--typo-large);
}

.conte-faq_accordion {
	max-width: 840px;
	margin: 0 auto;
}

.conte-faq_accordion > ul > li {
	padding: var(--aria-med-var);
	border: 2px solid var(--blue);
	border-radius: 10px;
}

.conte-faq_accordion li.uk-open {
	border-color: var(--light-blue);
}

/* .conte-faq_accordion .uk-accordion-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
} */

/* .conte-faq_accordion .uk-accordion-title::before {
	content: none;
} */

.conte-faq_accordion .uk-accordion-title::before {
	/* display: inline;
	content: ''; */
	width: 30px;
	height: 30px;
	background-image: url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/circle_chevron_down.svg');
	background-size: contain;
	/* background-repeat: no-repeat;
	background-position: 50% 50%; */
}

.conte-faq_accordion .uk-open>.uk-accordion-title::before {
	background-image: url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/circle_chevron_up.svg');
}

.conte-faq_accordion .uk-accordion-content {
	margin-top: var(--typo-medium);
}

.conte-faq_accordion p {
	padding-right: var(--aria-large-var);
}

.conte-faq_section .conte-cta {
	padding-top: var(--aria-xsmall-var);
}

/* END CONTE FAQ */

/* MEDIA QUERIES */
@media (max-width: 639px) {

	.conte-features {
		max-width: 100%;
	}

	.conte-features br {
		content: ' ';
	}

	.conte-features br::after {
		content: ' ';
	}

	.hr-red {
		margin-top: var(--typo-large-var);
	}

	.conte-financing_section {
		padding-bottom: var(--aria-lg-med);
	}

	.conte-financing_section h2 {
		line-height: var(--lh-med-small);
	}

	.conte-financing_section .hr-red+p {
		line-height: var(--lh-small-var);
	}

	.conte-financing {
		padding: var(--aria-small);
		box-shadow: 0px 20px 100px 0px #22222226;
	}

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

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

	.conte-financing_heading_text p {
		font-size: 26px;
		margin-bottom: var(--typo-med-small);
		line-height: var(--lh-med-small);
	}

	.conte-financing_heading_logo {
		display: none;
	}

	.conte-financing_data p {
		font-size: var(--fs-xsmall);
		margin-bottom: var(--typo-med-small);
		word-break: normal;
	}

	.home-grid_section .prestiti_card_text h3 {
    font-size: var(--fs-med-var);
		line-height: var(--lh-med-small);
		margin-bottom: var(--typo-med-small);
	}

	.home-grid_section .prestiti_card_text p {
    font-size: var(--fs-small);
		line-height: var(--lh-small-var);
	}

	.conte-faq .hr-red {
		margin-top: var(--typo-large-var);
	}

	.conte-faq_accordion li {
		padding: var(--aria-xsmall-var);
	}

	.conte-faq_accordion p {
		padding-right: var(--aria-unset);
	}
}

@media (max-width: 959px) {

	.hero-home_bg {
		background: linear-gradient(0deg, #F9FCFF 0%, rgba(255, 255, 255, 0) 90.95%), url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/pattern-icon-13%201.png');
	}

	.hero-home_section {
		padding-top: var(--aria-small);
		padding-bottom: var(--aria-small-var);
	}

	.hero-home_text h1 {
		font-size: 35px !important;
		margin-bottom: var(--typo-unset);
  }

  .hero-home_text h1 br {
    content: '';
  }

	.hero-home_text .sub-title {
		font-size: var(--fs-small-var);
		line-height: var(--lh-medium);
	}

	.hero-home_text .sub-title span {
		font-weight: var(--regular);
	}

	.hero-home_text .rate {
		font-size: var(--fs-med-small);
		line-height: var(--lh-medium);
		margin-top: var(--typo-small);
		display: flex;
		justify-content: center;
	}

	.hero-home_text .rate_amount {
		font-size: 50px;
	}

	.hero-home_form {
		max-width: 500px;
		margin-top: var(--typo-xlarge);
		padding: var(--aria-unset);
		background: none;
		box-shadow: none;
	}

	.hero-home_form h3 {
		display: none;
	}

	.hero-home_form .form-inner {
		display: block;
	}

	.hero-home_form .fields-container {
		display: block;
	}

	.hero-home_form .field {
		margin-right: var(--typo-unset);
	}

	.hero-home_form .field:not(:first-child),
	.hero-home_form .form-button {
		margin-top: var(--typo-med-small);
	}

	.hero-home_form button {
		width: 100%;
	}

	.conte-features_section {
		padding-top: var(--aria-med-small);
		padding-bottom: var(--aria-lg-med);
	}

	.home-grid_section {
		padding-top: var(--aria-med-var);
		padding-bottom: var(--aria-large-var);
	}
  
  .home-grid_section .prestiti_card_image {
		max-width: 460px;
    margin: 0 auto;
	}

	.home-grid_image {
		margin-top: var(--typo-med-var);
	}

	.home-grid_image>:nth-child(2) {
		top: 40px;
		left: 40px;
	}

	.home-grid_text {
		order: -1;
	}

	.home-grid_text>*:not(:first-child) {
		padding-top: var(--aria-med-var);
	}

	.conte-testimonial {
		padding-top: var(--aria-unset);
	}

	.conte-testimonial_sx_text {
		position: static;
		width: 100%;
		max-width: unset;
		padding: var(--aria-small);
	}

	.conte-testimonial_sx_text h2 {
		font-size: calc(var(--fs-large) / 2);
		line-height: var(--lh-med-small);
		margin-bottom: var(--typo-med-small);
	}

	.conte-testimonial_dx {
		padding-left: var(--aria-small);
	}

	.conte-slider {
		min-height: auto;
		max-width: unset;
		margin-top: var(--typo-unset);
		margin-bottom: var(--typo-unset) !important;
		padding: var(--aria-med-var) var(--aria-small);
	}

	.conte-blog .hr-red {
		margin-top: var(--typo-large-var);
	}

	.swiper-container.conte-blog_container {
		padding-top: var(--aria-med-small);
	}

	.conte-blog_post {
		margin: 0 auto;
		border: none;
		box-shadow: 10px 10px 20px 0px #0F46831A;
	}
  
  .conte-blog .conte-cta {
    padding-top: var(--aria-med-var);
  }

	.conte-cta a {
		font-size: var(--fs-small-var);
	}
  
  .swiper-blog_navigation {
    justify-content: center;
    padding-right: var(--aria-unset);
	}

}

@media (min-width: 960px) {
	.conte-blog_container .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(3,1fr);
    grid-gap: 35px;
	}
  
  .conte-blog_container .conte-blog_text {
    display: grid;
    height: calc(100% - 240px);
  }
  
  .conte-blog_container .conte-cta {
    align-self: flex-end;
  }

	.conte-blog_container .swiper-slide {
		width: auto;
	}
  
  .conte-blog_container .conte-blog_post {
    height: 100%;
  }

	

	.conte-blog_container .swiper-blog_navigation {
		display: none;
	}
}

@media (min-width: 960px) and (max-width: 1199px) {
	.hero-home_section {
		background-position-x: -120px;
	}

	.conte-slider {
		width: 80%;
	}
}

@media (min-width: 1500px) {
  .hero-home_text h1 br {
    content: '';
  }
}

@media (max-width: 999px) {
	.header nav:not(.lp-nav) {
		display: none;
	}
  
  .hero-home_form.bg-white.footer_form {
    margin-top: var(--typo-xlarge);
    padding: var(--aria-unset);
    background: none;
    box-shadow: none;
  }
}

@media (max-width: 1199px) {
	.home-grid_image>* {
		width: 85%;
	}
}
.l-padd-internal {
  padding: var(--aria-lg-med) 0 45px;
}

/* FORM CHANGE */
.hero-home_form.form-internal.bg-white {
  margin: 0;
  border-radius: 50px;
}

.uk-section.conte-internal-features.conte-features_section {
  padding-bottom: 0;
}

.hero-home_form.form-internal.bg-white .form-button {
  display: flex;
  justify-content: center;
}

.hero-home_form.form-internal.bg-white {
  border-radius: 50px;
  max-width: 930px;
  margin: 0 auto;
  padding-top: var(--aria-xsmall-var);
  padding-bottom: var(--aria-xsmall-var);
  padding-left: var(--aria-small-var);
  padding-right: var(--aria-xsmall-var);
}

.hero-home_form.form-internal.bg-white .form-button button {
  border-radius: 29px;
  width: 190px;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}

.form-internal .fields-container {
  padding-left: 25px;
}

.form-internal_phrase {
  display: flex;
  text-align: initial;
}

.form-inner h3 {
  margin: 0;
}

.hero-home_form.form-internal .form-inner {
  align-items: center;
}

.form-internal_phrase h3 {
  font-size: 16px;
}

.form-internal_phrase h3:first-child {
  padding-right: 12px;
  align-self: center;
}

.conte-internal_section {
  background: var(--linear-gradient);
}

.form-internal_phrase h3:last-child {
  padding-right: 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* MEDIA QUERIES - FORM */

@media (min-width: 960px) {
  .form-internal-container.is-fixed {
    position: fixed;
    top: var(--header-height);
    background: linear-gradient(180deg, #eef4fd 50%, hsl(0deg 0% 100% / 25%) 50%);
  }

  .form-internal-container {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
  }
}

/* FIX Form layout */
@media (max-width: 1000px) {
  .hero-home_form.form-internal.bg-white .form-button button {
    width: 100%;
  }

  .form-internal_phrase h3:last-child br {
    display: none;
  }

  .form-internal_phrase h3:last-child {
    padding-right: 8px;
  }

  .form-internal .fields-container {
    padding-left: 8px;
  }
}

@media (max-width: 959px) {
  .form-internal-container {
    display: flow-root;
    box-sizing: content-box;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px
  }
  
  .hide-form {
    display: none;
  }
  
  .pt-abs-internal {
    padding-top: calc(var(--aria-med-small) + var(--header-height));
  }
}

@media (max-width: 659px) {
  .form-internal-container {
    padding-left: 30px;
    padding-right: 30px
  }
}

/* END MEDIA QUERIES - FORM */

/* PRESTITI */
.conte-internal_section .hr-red,
.conte-internal-features .hr-red {
  margin-top: var(--typo-medium);
}

.conte-prestiti_faq {
  padding: var(--aria-xsmall-var) var(--aria-small);
  margin-top: var(--typo-xlarge);
  margin-bottom: 100px;
  background: #FAFAFA;
  border-radius: 5px;
}

.faq_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq_button span {
  display: flex;
}

.faq_button a {
  padding: 10px 0;
  background: var(--light-blue);
  border-radius: 30px;
}

.faq_button a:hover {
  text-decoration: none;
  color: var(--white);
}

.faq_button :first-child,
.faq_button a {
  width: 100%;
}

@media (max-width: 959px) {
  .conte-prestiti_faq {
    flex-direction: column;
  }

  .faq_button {
    margin-top: var(--typo-medium);
  }
}

@media (min-width: 640px) {
  .conte-prestiti_features_card {
    margin-left: -25%;
    margin-right: -25%;
  }
}

/* END PRESTITI */

/* TRASPARENZA */
.trasparenza-heading .conte-features {
  max-width: 750px;
}

.trasparenza-section {
  padding-top: var(--aria-unset);
  padding-bottom: var(--aria-unset);
}

.trasparenza-section .contatti-container {
  padding: var(--aria-med-var) 70px;
}

.trasparenza-section .dnd-section,
.trasparenza-section .dnd-column {
  padding: var(--aria-unset);
}

.trasparenza-section h2 {
  font-family: var(--lato);
  font-weight: var(--bold);
  font-size: var(--fs-med-var);
  line-height: var(--lh-medium);
  color: var(--blue);
}

.trasparenza-section p {
  font-size: var(--fs-small);
  line-height: var(--lh-small-var);
}

.trasparenza-section h2:not(.row-number-1 h2) {
  padding-top: var(--aria-lg-med);
}

.trasparenza-section p:last-child {
  margin-bottom: var(--typo-unset);
}

.trasparenza-section li {
  list-style-image: url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/arrow_blue.svg');
  padding-left: 10px;
}

.trasparenza-section li:not(:first-child) {
  margin-top: var(--typo-med-small);
}

.trasparenza-section .widget-type-form {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-top: var(--typo-medium);
  margin-bottom: var(--typo-medium);
  padding: var(--aria-small-var);
}

.trasparenza-section form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.trasparenza-section .form-title {
  font-family: var(--lato);
  font-weight: var(--bold);
  font-size: var(--fs-small);
  line-height: var(--lh-small-var);
  color: var(--black);
  margin-bottom: var(--typo-small);
  background: none;
}

.trasparenza-section [id*="hs_form_target"] .hs-form-field {
  margin-bottom: var(--typo-unset);
}

.trasparenza-section form>div:not(.hs-fieldtype-text) {
  grid-column: 1 / -1;
}

.trasparenza-section [id*="hs_form_target"] input.hs-button.primary.large {
  width: 50%;
}

@media (max-width: 959px) {
  .trasparenza-section .contatti-container {
    padding-left: var(--aria-xsmall);
    padding-right: var(--aria-xsmall);
  }
}

@media (max-width: 639px) {
  .trasparenza-section form {
    grid-template-columns: 1fr;
  }

  .trasparenza-section [id*="hs_form_target"] input.hs-button.primary.large {
    width: 100%;
  }
}

@media (max-width: 419px) {
  .trasparenza-section .contatti-container {
    padding-left: var(--aria-unset);
    padding-right: var(--aria-unset);
  }
}

/* END TRASPARENZA */

/* TASSO ANTIUSURA */
.tasso-au-table {
  overflow-x: auto;
}

.tasso-au-table table {
  width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
}

.tasso-au-table table th, .tasso-au-table table td {
  border: 1px solid #C4C4C4;
}

.tasso-au-table table th {
  vertical-align: middle;
  background: rgba(172, 193, 216, 0.5);
  color: #194470;
}

.tasso-au-table table td {
  padding: var(--aria-medium) var(--aria-xsmall);
}
/*
.tasso-au-table table td:not(:first-child) {
  display: none;
}
*/
@media (max-width: 639px) {
  .tasso-au h2 {
    font-size: var(--fs-small-var);
  }
}

/* END TASSO ANTIUSURA */

/* GENESYS CREATE CONTACT */
.genesys-create-contact {
  padding-top: var(--aria-medium);
  min-width: 600px;
  margin: 0 auto;
}

.header--no-navigation img {
  width: auto !important;
}

.genesys-create-contact .widget-type-form {
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 10px;
  margin-top: var(--typo-medium);
  margin-bottom: var(--typo-medium);
  padding: var(--aria-small-var);
}

.genesys-create-contact .form-title {
  font-family: var(--lato);
  font-weight: var(--bold);
  font-size: var(--fs-med-small);
  line-height: var(--lh-small-var);
  letter-spacing: 0.5px;
  color: var(--black);
  margin-bottom: var(--typo-med-small);
  background: 0;
}

.genesys-create-contact [id*="hs_form_target"] .hs-form-field {
  margin-bottom: var(--typo-med-small);
}

.genesys-create-contact [id*="hs_form_target"] input.hs-button.primary.large {
  display: block;
  width: 50%;
  margin: 40px auto 0;
  padding: 15px;
}

@media (max-width: 767px) {
  .header--no-navigation .header__container {
    padding: 0 20px;  
  }
  
  .header--no-navigation .header__logo {
    margin: 0 auto 0 0;
    width: auto;
  }
}
/* END GENESYS CREATE CONTACT */
.uk-section.contatti-section {
    padding-top: 0;
}

.contatti-container {
    max-width: 930px;
    margin: 0 auto;
    background: #FFFFFF;
    margin-top: -40px;
    border-radius: 10px;
    padding: 32px 90px 42px;
}

.circle_cerulean {
    height: 46px;
    width: 46px;
    background: var(--cerulean);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.call-conte a {
    line-height: var(--typo-med-small);
    color: var(--light-blue);
    font-size: var(--fs-small-var);
}

.call-conte p {
    font-size: 12px;
    color: rgb(72 72 72 / 70%);
    margin-bottom: 2px;
}

.contatti-container_second {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.4rem;
}

.contatti-container_second_child {
    display: flex;
    align-items: flex-end;
}

.contatti-container_second_child:first-child {
    border-right: 1px solid rgba(72, 72, 72, 0.4);
}

.contatti_contattaci_two p,
.contatti-hours {
    font-size: var(--fs-xsmall);
    padding-left: 32px;
    line-height: var(--typo-med-small);
    margin: 0;
}

.contatti-container_grid {
    padding-top: 80px;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr;
    grid-template-areas:
        "uno"
    ;
}

.contatti-container_grid :first-child {
    grid-area: uno;
}

.contatti-container_grid .actions {
  max-width: 300px;
}

a.call-conte_phone:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.contatti-container_grid>div {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contatti_container_gridmail_2 span {
    display: flex;
    align-items: center;
}

.contatti_container_gridmail_2 a:nth-child(2n) {
    line-height: var(--typo-med-small);
    color: var(--light-blue);
    font-size: var(--fs-small);
}

/* FORM STYLE [id*="hs_form_target"] */
.contatti_container_form {
    padding-top: 32px;
}

[id*="hs_form_target"] label {
    margin-bottom: 2px;
    font-size: var(--fs-xsmall);
    line-height: var(--lh-small-var);
    color: var(--blue);
}

[id*="hs_form_target"] .hs-form-field {
    margin-bottom: 12px;
}

.legal-consent-container .hs-form-booleancheckbox-display>span p {
    margin-left: var(--unset) !important;
}

.contatti_container_form .hs-form-booleancheckbox-display, .trasparenza-section .hs-form-booleancheckbox-display {
  display: flex;
  align-items: flex-start;
  color: var(--black);
  line-height: var(--lh-small);
  margin-bottom: var(--typo-med-small);
}

[id*="hs_form_target"] input::placeholder,
[id*="hs_form_target"] .hs-form-field textarea::placeholder,
[id*="hs_form_target"] .hs-fieldtype-select.field.hs-form-field select.is-placeholder {
    color: #B6B6B6;
    font-style: italic;
}

[id*="hs_form_target"] .hs-fieldtype-select.field.hs-form-field option {
    color: var(--black);
    font-style: normal;
}

[id*="hs_form_target"] .hs-fieldtype-select.field.hs-form-field option:first-child {
    display: none;
}

[id*="hs_form_target"] .legal-consent-container .hs-form-booleancheckbox-display p {
    margin: 0;
    font-size: 12px;
    line-height: 22px;
    color: var(--black);
}

[id*="hs_form_target"] .hs-error-msgs label {
    color: var(--red);
}

[id*="hs_form_target"] input.hs-button.primary.large {
    background: rgba(77, 171, 255);
    border-radius: 29px;
    font-size: var(--fs-small-var);
    width: 100%;
    border-color: rgba(77, 171, 255);
}

[id*="hs_form_target"] .hs-form-field input.hs-input[type="checkbox"] {
    width: auto;
    margin-top: 6px;
}

[id*="hs_form_target"] .inputs-list>li {
    display: block;
    margin: 0;
}

[id*="hs_form_target"] .form-columns-2 .hs-fieldtype-text.field.hs-form-field input.hs-input,
[id*="hs_form_target"] .hs-fieldtype-text.field.hs-form-field input.hs-input,
[id*="hs_form_target"] .hs-fieldtype-phonenumber.field.hs-form-field input.hs-input,
[id*="hs_form_target"] .hs-fieldtype-textarea.field.hs-form-field textarea,
[id*="hs_form_target"] .hs-fieldtype-select.field.hs-form-field select {
    border: 1px solid rgba(182, 182, 182, 0.6);
    border-radius: 4px;
    padding: 10px;
    color: var(--black);
    font-size: var(--fs-small);
    width: 100%;
}

[id*="hs_form_target"] .form-columns-2 .hs-fieldtype-text.field.hs-form-field input.hs-input[disabled],
[id*="hs_form_target"] .hs-fieldtype-text.field.hs-form-field input.hs-input[disabled],
[id*="hs_form_target"] .hs-fieldtype-phonenumber.field.hs-form-field input.hs-input[disabled],
[id*="hs_form_target"] .hs-fieldtype-textarea.field.hs-form-field textarea[disabled],
[id*="hs_form_target"] .hs-fieldtype-select.field.hs-form-field select[disabled] {
    color: #ccc;
}

[id*="hs_form_target"] .hs-fieldtype-select.field.hs-form-field select {
    padding-right: var(--aria-small);
    -webkit-appearance: none;
    -moz-appearance: none;
}

[id*="hs_form_target"] .hs-fieldtype-select.field.hs-form-field .input {
    position: relative;
    overflow: hidden;
}

[id*="hs_form_target"] .hs-fieldtype-select.field.hs-form-field .input::after {
    content: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.73633 8L14.473 1' stroke='%23094585' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M7.73665 8L1 1' stroke='%23094585' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    pointer-events: none;
}

.contatti_container_form .submitted-message p {
  font-size: var(--fs-small);
  line-height: var(--lh-small-var);
}

@media (max-width: 959px) {

    .contatti-container_grid>div:first-child {
        grid-area: auto;
    }

    .contatti-container_grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .contatti-container_second {
        grid-template-columns: 1fr;
        grid-gap: 32px;
    }

    .contatti_contattaci_two p,
    .contatti-hours {
        padding-left: 0;
    }

    .contatti-container_second_child:nth-child(2n) {
        justify-content: space-between;
    }

    .contatti-container_second_child:first-child {
        border-right: 0;
    }
}


@media (max-width: 639px) {

    .contatti-container {
        padding: 32px 30px 42px;
    }

    .contatti-container_second_child:nth-child(2n) {
        justify-content: flex-start;
        display: grid;
        grid-gap: 8px;
    }

}

@media (max-width:419px) {
    .contatti-container_grid>div {
        padding: 15px;
    }

    .contatti-container {
        padding: 32px 0px 42px;
    }

    .contatti-container {
        margin-top: 0;
    }
}
html.conte-ar-height, .conte-ar-height body, .conte-ar-height body>div:first-child:not(#CybotCookiebotDialog), .conte-ar-height main {
  min-height: 100vh;
}

.conte-ar-height main {
  display: flex;
  flex-direction: column;
}

.conte-ar-height .ar_bottom {
  margin-top: auto;
}

.conte-ar a:hover, .conte-ar a:focus {
  text-decoration: none;
}

.conte-ar {
  margin-left: 120px;
}

.ar-hero_section {
  border-top: 6px solid var(--red);
  background: linear-gradient(180deg, #FBFCFE 8.01%, #D8EAFC 119.66%);
  position: relative;
  overflow: hidden;
}

.ar-hero_section::after {
  content: '';
  position: absolute;
  height: 200px;
  left: -10%;
  right: -10%;
  border-radius: 50%;
  bottom: -150px;
  background: var(--white);
}

/* New Personal Area */
.ar-home .ar-hero_section {
  overflow: inherit;
}

.ar-home .ar-hero_section::after {
  width: 100%;
  margin: 0 auto;
  bottom: -140px;
  left: inherit;
  right: inherit;
  border-radius: 0;
  border-top-left-radius: 50% 30%;
  border-top-right-radius: 50% 30%;
}

.ar-home .ar-hero_section .uk-section {
  padding: var(--aria-small-var) 0 0;
}

.ar-home .ar-hero_section .ar-hero_img {
  display: block;
  margin: 0 auto var(--typo-med-var);
  position: relative;
  z-index: 1;
}

.ar-home .ar_inner {
  position: relative;
  padding-top: 0;
}

.ar-home .ar_inner_title p {
  margin-block: var(--typo-med-var);
}
/* Dashboard */
.ar-home .ar-loans .uk-section {
  padding-block: var(--aria-small-var) 100px;
}

.ar-home .ar-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(min-content, 200px));
  justify-content: center;
  gap: 20px 40px;
}

.ar-home .ar-dashboard .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  border-radius: 7px;
  background: linear-gradient(234.13deg, #F9FCFF 0.89%, #FFFFFF 70.98%);
  box-shadow: 0 0 16px 8px rgb(235, 240, 245);
}

.ar-home .ar-dashboard .card:not(.disabled):hover {
  outline: 2px solid var(--blue);
}

.ar-home .ar-dashboard .card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ar-home .ar-dashboard .card h3 {
  font-size: var(--fs-small-var);
  line-height: var(--lh-small-var);
}

.toggle-inside {
  --toggle-width: 250px;
  --toggle-height: 40px;
  --toggle-brad: 6px;
  --toggle-bg-color: #f6f6f6;
  --toggle-slider-bg-color: var(--blue);
  --toggle-selected-label-color: var(--white);
  --toggle-unselected-label-color: var(--blue);
  position: relative;
  display: inline-block;
  width: var(--toggle-width);
  height: var(--toggle-height);
  background-color: var(--toggle-bg-color);
  border-radius: var(--toggle-brad);
  cursor: pointer;
}

.toggle-inside input {
  display: none
}

.toggle-inside:has(input:disabled) {
  cursor: not-allowed;
}

.toggle-inside .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(var(--toggle-height) - 4px);
  background-color: var(--toggle-slider-bg-color);
  border-radius: var(--toggle-brad);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .3s ease;
}

.toggle-labels {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 2px;
}

.toggle-labels span {
  width: 50%;
  text-align: center;
  transition: color .3s ease;
  z-index: 1
}

.toggle-labels span:first-child {
  color: var(--toggle-selected-label-color);
}

.toggle-labels span:last-child {
  color: var(--toggle-unselected-label-color);
}

.toggle-inside input:checked + .slider {
  transform: translateX(100%);
}

.toggle-inside input:checked ~ .toggle-labels span:first-child {
  color: var(--toggle-unselected-label-color);
}

.toggle-inside input:checked ~ .toggle-labels span:last-child {
  color: var(--toggle-selected-label-color);
}

.ar-loans-details {
  position: relative;
  margin: -90px auto 0;
  max-width: 560px;
}

.ar-loans-details .toggle-inside {
  --toggle-width: 100%;
  --toggle-height: 50px;
  --toggle-brad: 50px;
  --toggle-slider-bg-color: var(--white);
  --toggle-selected-label-color: var(--light-blue);
  --toggle-unselected-label-color: #BDBDBD;
}

.loans-wrapper, .offers-wrapper {
  margin-top: 40px;
}

.loan-detail {
  position: relative;
  padding: 14px 14px 22px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.loan-detail + .loan-detail {
  margin-top: 20px;
}

.loan-detail.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.loan-detail input[type="radio"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.loan-detail input[type="radio"] + label {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.loan-detail:has(input[type="radio"]:checked) {
  outline: 3px solid var(--blue);
}

.loan-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.loan-detail-header img {
  flex-shrink: 0;
}

.loan-detail-header .loan-id-header {
  flex: 1;
}

.loan-detail-header .loan-id-header > div {
  display: flex;
  justify-content: space-between;
}

.loan-detail-header .loan-id-header .flex-align-center {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loan-id-header .btn-download {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 2px;
  background: none;
  border-color: var(--blue);
  color: var(--blue);
}

.ap #documents .doc-btn {
  display: block;
  font-size: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--blue);
}

.ap #documents .doc-btn + .doc-btn {
  margin-top: 8px;
}

.ap .uk-notification {
  width: auto;
  margin: 0;
  transform: translateX(-50%)
}

.ap .uk-notification-message {
  padding: 15px 30px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
  box-shadow: 4px 4px 10px 0px var(--blue);
  cursor: pointer;
}

.ap .uk-notification-message-warning {
  color: var(--blue);
}

.loan-id-header .uk-badge {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
  padding: 10px;
}

.loan-id-header .uk-badge.approved {
  background: var(--blue);
}

.loan-id-header .uk-badge.completed {
  background: #4AB047;
}

.loan-id-header .uk-badge.expired {
  background: #FAA633;
}

.loan-detail .prestito_dati {
  display: grid;
  grid-template-columns: 1.5fr 0.1fr 1fr 0.1fr 1fr 0.1fr 1fr;
  margin-inline: 0;
  padding: 0;
  background: none;
}

.loan-detail .vr-grey {
  margin-left: -6px;
}

.ar-loans-details .deals-action-btn {
  border: none;
}

.ar-loans-details .deals-action-btn:disabled {
  background: rgb(77, 171, 255);
  opacity: 0.3;
  pointer-events: none;
}

.ar-loans-details .deals-action-btn:hover {
  background: linear-gradient(to bottom left,#285f93,#3585bc);
}
/* */
#loader .uk-modal-dialog {
  width: auto;
  border-radius: 10px;
}

#loader .uk-modal-body {
  padding: 0;
}

#loader img {
  width: 128px;
}

@media (max-width: 999px) {
  .ar-home .ar-hero_section::after {
    border-top-left-radius: 50% 20%;
    border-top-right-radius: 50% 20%;
  }

  .ar-home .ar-dashboard {
    grid-template-columns: repeat(2, minmax(min-content, 160px));
    gap: 20px 14px;
  }

  .ar-home .ar-dashboard .card {
    padding: 16px;
  }

  .ar-home .ar-dashboard .card h3 {
    font-size: var(--fs-xsmall);
    line-height: var(--lh-small);
  }

  .ap .uk-notification {
    left: 50%;
    right: auto;
  }
}

@media (max-width: 639px) {
  .ar-loans .ar_inner .uk-container {
    padding-inline: 20px;
  }
  
  .loan-detail-header .loan-id-header p {
    font-size: 12px;
  }
  
  .loan-detail .prestito_dati {
    grid-template-columns: 1fr .1fr 0.5fr .1fr 0.7fr .1fr 0.7fr;
  }

  .loan-detail .vr-grey {
    margin-left: 0;
  }
}
/* *** */

.l-padd-hero {
  padding-top: var(--aria-small-var);
  padding-bottom: 100px;
}

.ar-hero_inner {
  display: flex;
  justify-content: space-between;
}

.ar-hero_inner > a:only-child {
  margin-left: auto;
}

.ar-hero_inner_text p {
  padding-top: var(--aria-xsmall-var);
}

.desktop-logout {
  display: flex;
  align-self: flex-start;
  padding: 9px 17px;
  border: 2px solid var(--blue);
  border-radius: 5px;
}

.ar_inner {
  padding-top: var(--aria-small);
}

.ar_card {
  position: relative;
  max-width: 560px;
  margin: -90px auto 0;
  padding: var(--aria-xsmall) var(--aria-small) var(--aria-medium);
  background: linear-gradient(234.13deg, #F9FCFF 0.89%, #FFFFFF 70.98%);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
  border-radius: 7px;
}

.ar_inner .ar_card:nth-child(2) {
  margin: 30px auto 0;
}

.ar_card_title h3 {
  font-size: var(--fs-med-small);
}

.ar_card_img, .ar_card_content {
  padding-top: var(--aria-med-small);
}

.ar_card_cta {
  width: 60%;
  margin: 40px auto 0;
  font-weight: var(--medium);
  font-size: var(--fs-small-var);
  line-height: var(--lh-small);
  padding: 18px;
  border-radius: 29px;
  background: linear-gradient(270deg,#104d87 0%,#1e77b4 100%);
  cursor: pointer;
}

.ar_card_cta a:hover, .ar_card_cta a:focus {
  color: var(--white);
}



.ar_modal button:hover, .ar_modal button:focus, .ar_modal button:active {
  background: none;
  border: none;
}

.ar_modal button:active {
  color: initial;
}

.ap .uk-close svg {
  width: 18px;
  opacity: 0.3;
}

.ap .uk-close line {
  stroke: #094585;
  stroke-width: 4px;
}

.ar_modal .uk-modal-dialog {
  border-radius: 25px;
}

.ar_modal_width .uk-modal-dialog {
  width: 345px;
}

.ar_modal .uk-modal-body {
  padding: 50px 40px 40px;
}

.ar_modal .circle_cerulean {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
}

.ar_modal h2 {
  font-size: var(--fs-med-small);
}

.ar_modal h2, .ar_modal p:not(:last-of-type) {
  margin-bottom: var(--typo-med-small);
}

.ar_bg_img img {
  width: 100%;
  max-width: 1800px;
}



/* MEDIA QUERIES */

@media (max-width: 999px) {
  .conte-ar {
    margin-left: var(--typo-unset);
  }

  .desktop-logout {
    display: none;
  }

  .ar_bg_img, .ar_contact {
    display: none;
  }
}

@media (max-width: 639px) {
  .l-padd-hero {
    padding-bottom: 90px;
  }

  .ar-hero_inner_text h2 {
    font-size: var(--fs-med-small);
    line-height: var(--lh-small-var);
  }

  .ar-hero_inner_text p {
    font-size: var(--fs-xsmall);
  }

  .ar_card {
    padding: var(--aria-xsmall-var) var(--aria-xsmall) var(--aria-small);
  }

  .ar_card_title h3 {
    font-size: var(--fs-small);
  }

  .ar_card_content p:not(.submitted-message p):not(.prestito_dati p) {
    font-size: var(--fs-xsmall);
    line-height: var(--lh-small-var);
  }
}

@media (max-width: 575px) {
  .ar_card_cta {
    width: 100%;
  }
}

/*** Contatti - Riepilogo Offerta - Guide Pratiche ***/

.contatti-ar .ar_card {
  padding-bottom: var(--aria-xsmall);
}

.contatti-ar .ar_card_content {
  padding-top: 10px;
}

.contatti-ar .ar_card_content a, .prestito_docs a {
  display: flex;
  align-items: center;
  padding: var(--aria-xsmall) 0;
}

.contatti-ar .ar_card:first-child .ar_card_content > div:not(:last-child) a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.prestito_docs:not(.striped) > div:not(:first-child) {
  border-top: 1px solid var(--hr-grey);
}

.prestito_docs.striped > div:nth-child(even) {
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 20px;
  background: var(--cerulean);
}

.prestito_docs > div:last-child {
  margin-bottom: -20px;
}

.contatti-ar .ar_card_content p, .prestito_docs p {
  flex-grow: 1;
  padding-right: 5px;
}

.prestito_docs small {
  display: block;
  font-style: italic;
  margin-top: 10px;
}

.contatti-ar .ar_card:first-child .ar_card_content img:first-child, .prestito_docs img:first-child {
  margin-right: 16px;
  width: 25px;
}

.contatti-ar .ar_card:first-child .ar_card_content img:last-child {
  width: 20px;
}

.contatti-ar .ar_card_content_block:not(:first-child) {
  padding-top: var(--aria-med-small);
}

.ar_phone_call, .ar_email_write span {
  display: flex;
  align-items: center;
}

.ar_phone p {
  font-size: 12px;
  color: #484848B2;
}

/* MEDIA QUERIES */

@media (max-width: 639px) {
  .contatti-ar .ar_card:first-child {
    padding: var(--aria-xsmall) var(--aria-xsmall) var(--aria-unset);
  }

  .prestito_docs img:first-child {
    margin-right: var(--typo-small);
  }

  .prestito_docs small {
    font-size: var(--fs-xsmall-var);
    line-height: var(--lh-xsmall);
    margin-top: var(--typo-unset);
  }

  .prestito_docs p {
    line-height: unset;
  }
}

@media (max-width: 375px) {
  .prestito-riepilogo .ar_card {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ar_phone_call a, .ar_email_write a:last-child {
    font-size: 4.25vw;
  }
}

/*** Prestito Riepilogo ***/

.prestito_dati {
  display: flex;
  justify-content: space-between;
  margin-left: -30px;
  margin-right: -30px;
  padding: var(--aria-xsmall) var(--aria-small);
  background: #F8F8F9;
}

.prestito_dati .vr-grey {
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.prestito_dati [class*="valore"] {
  font-size: 30px;
}

.prestito_dati [class*="cent"] {
  font-size: var(--fs-small-var);
}

.prestito_taeg p:first-child {
  display: flex;
}

.prestito_taeg img {
  margin-left: 5px;
  z-index: 1;
  cursor: pointer;
}

.prestito_tan_valore, .prestito_taeg_valore {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.prestito_tan_valore::after, .prestito_taeg_valore::after {
  content: '';
  display: block;
  width: 100%;
  height: 14px;
  position: absolute;
  background-image: url('https://19636758.fs1.hubspotusercontent-na1.net/hubfs/19636758/taeg_line.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.prestito-riepilogo .ar_card_cta {
  margin-top: 25px;
}

.ar_card.ar_card_prestito_docs {
  padding: var(--aria-unset);
  background: none;
  box-shadow: none;
}

.ar_card_prestito_docs .ar_card_content {
  padding-top: var(--aria-unset);
}

.ar_card_prestito_docs .ar_card_accordion {
  padding: var(--aria-xsmall);
  overflow: hidden;
}

.ar_card_prestito_docs .ar_card_accordion li > img {
  float: left;
  margin-right: 15px;
}

.ar_card_prestito_docs .ar_card_accordion .uk-accordion-title::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.73633 8L14.473 1' stroke='%23094585' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M7.73665 8L1 1' stroke='%23094585' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  width: auto;
  height: auto;
  margin-left: 10px;
  float: right;
  background: none;
  transition: transform 0.15s ease;
}

.ar_card_prestito_docs .ar_card_accordion .uk-open .uk-accordion-title::before {
  transform: rotate(180deg);
}

.ar_card_prestito_docs .ar_card_accordion .uk-accordion-title:hover, .ar_card_prestito_docs .ar_card_accordion .uk-accordion-title:focus:hover {
  color: var(--blue);
}

/* MEDIA QUERIES */

@media (max-width: 639px) {
  .prestito_dati {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: var(--aria-xsmall);
    padding-right: var(--aria-xsmall);
  }

  .prestito_dati p:first-child {
    font-size: var(--fs-xsmall);
    line-height: var(--lh-small);
  }

  .prestito_dati [class*="valore"] {
    font-size: 25px;
  }

  .prestito_dati [class*="cent"] {
    font-size: 15px;
  }

  .ar_card_prestito_docs .uk-accordion-title {
    font-size: var(--fs-xsmall);
  }
}

@media (max-width: 375px) {
  .prestito_dati {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .prestito_dati [class*="valore"] {
    /*font-size: 23px;*/
    font-size: 6.5vw;
  }

  .prestito_dati [class*="cent"] {
    font-size: 4vw;
  }

  .prestito_taeg p:first-child::after {
    margin-left: 3px;
  }
}

/*** AR FAQ accordion ***/
.ar-faq_accordion .ar_card {
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid rgba(15, 70, 131, 0.15);
  box-shadow: none;
}

.ar-faq_accordion p {
  padding-top: 16px;
  border-top: 1px solid #E6ECF2;
}

.ar-faq_accordion li.uk-open a,
.ar_card_prestito_docs.ar-faq_accordion .uk-accordion-title:focus:hover,
.ar_card_prestito_docs.ar-faq_accordion .uk-accordion-title:hover {
  color: var(--light-blue);
}

.ar-faq_accordion .uk-accordion-content ul {
  padding-left: 20px;
  list-style-type: disc;
}

.ar-faq_accordion .uk-accordion-content li::marker {
  color: var(--blue);
}

.ar-faq_accordion .uk-accordion-content li + li {
  margin-top: 20px;
}

/*** Guide Pratiche ***/

.guide-pratiche .prestito_docs {
  padding-top: 10px;
}

.guide-pratiche .ar_card {
  padding-bottom: var(--aria-xsmall);
}

/*** Impostazioni Privacy ***/

.impostazioni-privacy .hs-fieldtype-booleancheckbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: var(--typo-unset);
}

.impostazioni-privacy .hs-fieldtype-booleancheckbox:not(:first-child) {
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.impostazioni-privacy legend {
  font-weight: var(--medium);
  font-size: var(--fs-small-var);
  line-height: var(--lh-small);
  padding-right: 10px;
  color: var(--blue);
}

.impostazioni-privacy [id*="hs_form_target"] .inputs-list > li {
  display: flex;
}

.impostazioni-privacy label {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 27px;
  margin: var(--typo-unset);
}

.impostazioni-privacy input[type="checkbox"] {
  display: none;
}

.impostazioni-privacy label span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E9EEF2;
  border-radius: 27px;
  -webkit-transition: .4s;
  transition: .4s;
}

.impostazioni-privacy label span::before {
  position: absolute;
  content: "";
  height: 19px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.impostazioni-privacy input:checked + span::before {
  transform: translateX(24px);
  background-color: #4AB047;
}

.impostazioni-privacy [id*="hs_form_target"] .hs-form-field input.hs-input[type="checkbox"] {
  margin: var(--typo-unset);
}

.impostazioni-privacy #hs_cos_wrapper_form form p {
  font-size: 14px !important;
  line-height: 18px;
}

.impostazioni-privacy [id*="hs_form_target"] input.hs-button.primary.large,
.assistenza-ar input.hs-button.primary.large {
  display: block;
  width: 60%;
  margin: 40px auto 0;
  font-weight: var(--medium);
  line-height: var(--lh-small);
  padding: 18px;
  background: linear-gradient(270deg,#104d87 0%,#1e77b4 100%);
  cursor: pointer;
  border: none;
}

/* MEDIA QUERIES */

@media (max-width: 639px) {
  .impostazioni-privacy legend {
    font-size: var(--fs-xsmall);
    line-height: var(--lh-xsmall);
  }

  .impostazioni-privacy #hs_cos_wrapper_form form p {
    font-size: 11px !important;
  }
}

/*** Assistenza AR ***/

.assistenza-ar .ar_card {
  padding-bottom: var(--aria-small);
}

.assistenza-ar .ar_card_content p:not(.submitted-message p) {
  padding-bottom: var(--aria-small-var);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.assistenza-ar form {
  padding-top: var(--aria-small-var);
}

.assistenza-ar label {
  margin-bottom: var(--typo-small);
}

.assistenza-ar input[readonly] {
  color: #ccc !important;
}

.assistenza-ar input[readonly]:focus-visible {
  outline: none;
}

.assistenza-ar input.hs-button.primary.large {
  background: var(--light-blue);
  opacity: 0.3;
}

.assistenza-ar #hs_form_target_form.submitted-message {
  overflow: unset;
}

/* MEDIA QUERIES */

@media (min-width: 1000px) {
  .assistenza-ar label {
    font-size: var(--fs-small);
  }
}

@media (max-width: 575px) {
  .assistenza-ar input.hs-button.primary.large, .impostazioni-privacy [id*="hs_form_target"] input.hs-button.primary.large {
    width: 100%;
  }
}
/*** LANDING PAGE ADS ***/
.lp-ads .hero-home_bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(103.69deg, #F1F8FF 3.76%, #F9FCFF 93.56%);
}

.lp-ads .hero-home_bg::after {
  content: '';
  position: absolute;
  height: 750px;
  bottom: -530px;
  left: -180px;
  right: -180px;
  background: #0A3B71;
  /*outline: 3px solid var(--red);
  outline-offset: 50px;*/
  border-radius: 50%;
  max-width: 1800px;
  margin: 0 auto;
}

.lp-ads .hero-home_bg::before {
  content: '';
  position: absolute;
  height: 850px;
  bottom: -580px;
  left: -230px;
  right: -230px;
  border: 3px solid var(--red);
  border-radius: 50%;
  max-width: 1900px;
  margin: 0 auto;
}

.lp-ads .hero-home_section {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  padding-top: 90px;
  padding-bottom: 0;
}

.lp-ads .hero-home_text {
  margin-bottom: 510px;
}

.lp-ads .hero-home_text h1 {
  font-size: 50px;
  line-height: 60px;
}

.lp-ads .hero-home_text .sub-title {
  font-size: 20px;
  white-space: nowrap;
}

.lp-ads .hero-home_form {
  position: relative;
  z-index: 1;
  width: auto;
  margin: -85px -40px 0;
  box-shadow: 0px -10px 100px rgba(34, 34, 34, 0.15);
}

.lp-ads .conte-features_section {
  padding-top: var(--aria-large-var);
  padding-bottom: var(--aria-large);
}

.lp-ads .hr-red {
  margin-top: var(--typo-medium);
}

.lp-ads .conte-financing_section {
  padding-bottom: var(--aria-large-var);
}

.lp-ads .conte-financing_cta {
  width: 60%;
  margin: 30px auto;
  font-weight: var(--medium);
  font-size: var(--fs-small-var);
  line-height: var(--lh-small);
  padding: 18px;
  border: 3px solid #E5F7E4;
  border-radius: 5px;
  background: linear-gradient(90deg, #4FB054 2.75%, #80D585 98.01%);
}

.lp-ads .conte-financing_cta a:hover, .lp-ads .conte-financing_cta a:focus, .lp-ads .conte-financing_cta a:active {
  color: var(--white);
  text-decoration: none;
}

.lp-ads .conte-testimonial_section {
  background: #EEF2F5;
}

/* FOOTER */
footer.footer-lp-ads {
  padding: var(--aria-small-var) var(--aria-unset) var(--aria-small);
}

.footer-lp-ads .footer-logo img {
  max-height: 50px;
}

.footer-lp-ads .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: unset;
  grid-template-areas: 
    "l l"
    "gd gd"
    "c p";
}

.footer-lp-ads .grid-data p {
  padding-top: var(--aria-med-small);
  margin-bottom: var(--typo-xlarge);
}
/* END FOOTER */
/*** END LANDING PAGE ADS ***/

/*** LP ADS MEDIA QUERIES ***/
@media (min-width: 960px) {
  .lp-ads .hero-home_inner {
    align-items: unset;
  }
  
  .lp-ads .hero-home_text h1 span {
    font-weight: var(--regular);
  }
  
  .lp-ads .hero-home_form_container {
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 999px) {
  footer.footer-lp-ads {
    padding-bottom: var(--aria-large-var);
  }
}

@media (max-width: 959px) {
  .lp-ads .hero-home_bg {
    background: linear-gradient(0deg, #F9FCFF 0%, rgba(255, 255, 255, 0) 90.95%);
  }
  
  .lp-ads .hero-home_bg::after {
    height: 250px;
    bottom: -140px;
    left: -110px;
    right: -110px;
    /*outline-offset: 12px;*/
  }
  
  .lp-ads .hero-home_bg::before {
    height: 315px;
    bottom: -190px;
    left: -160px;
    right: -160px;
  }
  
  .lp-ads .hero-home_section {
    padding-top: var(--aria-small-var);
  }
  
  .lp-ads .hero-home_text {
    margin-bottom: 240px;
    text-align: center;
  }
  
  .lp-ads .hero-home_form {
    margin: -55px auto 0;
    padding: var(--aria-xsmall);
    background: var(--white);
  }

  .lp-ads .conte-features_section {
    padding-top: var(--aria-lg-med);
    padding-bottom: var(--aria-large-var);
  }
  
  .footer-lp-ads .footer-grid {
    grid-template-areas: 
      "l l"
      "gd gd"
      "p p"
      "c c";
  }
  
  .footer-lp-ads .grid-data p {
    padding-top: var(--aria-unset);
    margin-bottom: var(--typo-large-var);
  }
  
  .footer-lp-ads .policies ul {
    padding-top: var(--aria-unset);
  }
  
  .footer-lp-ads .copyright p {
    margin-top: var(--typo-med-small);
  }
}

@media (max-width: 799px) {
  .lp-ads .conte-financing_cta {
    width: 100%;
  }
}

@media (max-width: 639px) {
  .lp-ads .hero-home_text h1 {
    font-size: 30px !important;
    line-height: var(--lh-med-var);
  }
  
  .lp-ads .hero-home_text .sub-title {
    font-size: var(--fs-small) !important;
  }
  
  .lp-ads .conte-financing_cta {
    font-size: var(--fs-small) !important;
  }
}
/*** END LANDING PAGE ADS ***/

/*** LANDING PAGE ADS - BULLET ***/
.lp-ads-bullet .hero-home {
  position: relative;
}

.lp-ads-bullet .hero-home::after {
  content: url('https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/beta-badge.svg');
  position: fixed;
  top: 100px;
  right: 0;
}

.lp-ads-bullet .hero-home_inner {
  flex-direction: row;
  align-items: inherit;
  margin-bottom: -35px;
}

.lp-ads-bullet .hero-home_text {
  width: 55%;
}

.lp-ads-bullet .hero-home_image {
  width: 45%;
  position: relative;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-ads-bullet .hero-home_text h1 {
  font-size: 50px;
  line-height: 70px;
  margin-top: 70px;
}

.lp-ads-bullet .hero-home_form {
  margin-top: -30px;
  margin-bottom: -180px;
  position: relative;
}

.lp-ads-bullet .under-hero_section {
  padding: 250px 0 80px;
  margin-bottom: 200px;
  background: #f3f8fe;
  border-top-left-radius: 50% 50px;
  border-top-right-radius: 50% 50px;
}

.lp-ads-bullet .under-hero {
  display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	grid-gap: 40px 100px;
  margin-bottom: -200px;
}

.lp-ads-bullet .under-hero__text {
  padding-top: 100px;
}

.lp-ads-bullet .under-hero__cta a {
  display: inline-block;
  margin-top: 50px;
  padding: 20px;
  background: #4AB047;
  border-radius: 100px;
  color: var(--white);
}

.lp-ads-bullet .conte-features_section {
  padding-top: var(--aria-large-var);
}

.lp-ads-bullet .conte-financing_section {
  padding-bottom: var(--aria-xlarge);
  background: #fafafa;
}

.lp-ads-bullet .conte-financing_cta {
  width: 60%;
  margin: 30px auto;
  font-weight: var(--medium);
  font-size: var(--fs-small-var);
  line-height: var(--lh-small);
  padding: 18px;
  border: 3px solid #E5F7E4;
  border-radius: 5px;
  background: linear-gradient(90deg, #4FB054 2.75%, #80D585 98.01%);
}

.lp-ads-bullet .conte-financing_cta a:hover, .lp-ads-bullet .conte-financing_cta a:focus, .lp-ads-bullet .conte-financing_cta a:active,
.lp-ads-bullet .under-hero__cta a:hover, .lp-ads-bullet .under-hero__cta a:focus, .lp-ads-bullet .under-hero__cta a:active {
  color: var(--white);
  text-decoration: none;
}

.lp-ads-bullet .conte-terms_section {
  padding-bottom: var(--aria-large);
  background: #fafafa;
}

/*** LP ADS BULLET MEDIA QUERIES ***/

@media (max-width: 1439px) {
  .lp-ads-bullet .under-hero {
    grid-gap: 40px 50px;
  }
}

@media (max-width: 1099px) {
  .lp-ads-bullet .under-hero_section {
    margin-bottom: unset;
  }
  
  .lp-ads-bullet .under-hero {
    grid-template-columns: 1fr;
    margin-bottom: unset;
  }
  
  .lp-ads-bullet .under-hero__text {
    padding-top: var(--aria-unset);
    text-align: center;
  }
}

@media (min-width: 960px) {
  .lp-ads-bullet .hero-home_text h1 span {
    font-weight: var(--regular);
  }
}

@media (max-width: 959px) {
  .lp-ads-bullet .hero-home::after {
    transform: scale(0.6);
    transform-origin: right;
  }

  .lp-ads-bullet .hero-home_inner {
    flex-direction: column;
  }
  
  .lp-ads-bullet .hero-home_inner > * {
    width: 100%;
  }
  
  .lp-ads-bullet .hero-home_text h1 {
    margin-top: 30px;
    font-size: 40px !important;
    line-height: 50px;
    text-align: center;
  }
  
  .lp-ads-bullet .hero-home_image img {
    display: block;
    margin: 0 auto;
  }
  
  .lp-ads-bullet .hero-home_form {
    max-width: 580px;
    margin: var(--typo-xlarge) auto;
    padding: var(--aria-xsmall);
    background: var(--white);
  }
  
  .lp-ads-bullet .under-hero_section {
    padding-top: 120px;
  }
  
  .lp-ads-bullet .conte-features_section {
    padding-top: var(--aria-lg-med);
    padding-bottom: var(--aria-large-var);
  }

  .lp-ads-bullet .conte-financing_section, .lp-ads-bullet .conte-terms_section {
    padding-bottom: var(--aria-large-var);
  }
}

@media (max-width: 799px) {
  .lp-ads-bullet .conte-financing_cta {
    width: 100%;
  }
}

@media (max-width: 639px) {
  .lp-ads-bullet .under-hero_section {
    padding-top: var(--aria-lg-med);
    border-top-left-radius: unset;
    border-top-right-radius: unset;
  }
  
  .lp-ads-bullet .conte-financing_cta {
    font-size: var(--fs-small) !important;
  }
  
  .lp-ads-bullet .conte-features br {
    content: inherit;
  }
}

/*** END LANDING PAGE ADS - BULLET ***/

/*** LANDING PAGE BULLET LEAD (PRELAUNCH) ***/
.lp-bullet-lead .hero-home {
  background: #f9fcff;
}

.lp-bullet-lead .hero-home::after {
  content: url(https://19559669.fs1.hubspotusercontent-na1.net/hubfs/19559669/beta-badge.svg);
  position: fixed;
  top: 100px;
  right: 0;
}

.lp-bullet-lead .hero-home_inner {
  flex-direction: row;
  align-items: inherit;
}

.lp-bullet-lead .hero-home_text {
  width: 55%;
}

.lp-bullet-lead .hero-home_form {
  width: 45%;
  margin-top: 30px;
  padding: 30px 30px 50px;
  box-shadow: 0px 1px 30px rgba(34, 34, 34, 0.1);
}

.lp-bullet-lead .hero-home_form .field {
  margin-right: 0;
}

.lp-bullet-lead .hs-form-field label:not(label.hs-form-radio-display):not(label.hs-error-msg) {
  font-family: var(--lato);
  font-size: 17px;
  font-weight: var(--bold);
  line-height: 26px;
  color: var(--blue);
  margin-bottom: 8px;
}

.lp-bullet-lead input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]) {
  height: 60px;
  border: 1.5px solid #DEDEDE !important;
  border-radius: 5px !important;
}

.lp-bullet-lead input[type="tel"] {
  padding: 10px;
  font-size: var(--fs-small);
}

.lp-bullet-lead input[type="tel"]::placeholder {
  font-size: var(--fs-small);
}

.lp-bullet-lead .hs_loan_amount_lead_f_f legend {
  font-size: 15px;
}

.lp-bullet-lead .inputs-list > li {
  margin-top: 10px;
  margin-bottom: 10px;
}

.lp-bullet-lead .hs-form-radio label {
  font-size: 17px;
  color: var(--black);
}

.lp-bullet-lead .legal-consent-container > div:first-child {
  margin-bottom: 0;
}

.lp-bullet-lead .legal-consent-container p {
  font-size: 15px;
  margin-bottom: 15px;
}

.lp-bullet-lead .hs-form-field label.hs-form-booleancheckbox-display {
  margin-bottom: 0 !important;
  line-height: 15px !important;
}

.lp-bullet-lead [id*=hs_form_target] .legal-consent-container .hs-form-booleancheckbox-display p {
  font-size: 11px;
  line-height: 14px;
}

.lp-bullet-lead .actions {
  position: relative;
}

.lp-bullet-lead .actions::after {
  content: '👉';
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  right: 15px;
}

.lp-bullet-lead [id*=hs_form_target] input.hs-button.primary.large{
  width: 100%;
  margin: 0;
  font-weight: var(--medium);
  font-size: var(--fs-small-var);
  line-height: var(--lh-small);
  padding: 18px;
  border: 3px solid #e5f7e4;
  border-radius: 5px;
  background: linear-gradient(90deg,#4fb054 2.75%,#80d585 98.01%);
  text-align: center;
}

.lp-bullet-lead .hero-home_text h1 {
  font-size: 50px;
  line-height: 60px;
  margin-top: 70px;
}

.lp-bullet-lead .dnd-section {
  padding: 50px 0;
}

.lp-bullet-lead .under-hero_section {
  padding-top: 120px;
  padding-bottom: 0;
  border-top-left-radius: 50% 50px;
  border-top-right-radius: 50% 50px;
  background: var(--white);
  margin-top: -50px;
}

.lp-bullet-lead .under-hero {
  display: flex;
  gap: 50px;
}

.lp-bullet-lead .under-hero > * {
  width: 100%;
}

.lp-bullet-lead .under-hero img {
  display: block;
}

.lp-bullet-lead .under-hero__cta {
  width: 45%;
  margin: 30px auto;
  font-weight: var(--medium);
  font-size: var(--fs-small-var);
  line-height: var(--lh-small);
  padding: 18px;
  border: 3px solid #E5F7E4;
  border-radius: 5px;
  background: linear-gradient(90deg, #4FB054 2.75%, #80D585 98.01%);
  text-align: center;
}

.lp-bullet-lead .under-hero__cta a:hover, .lp-bullet-lead .under-hero__cta a:focus, .lp-bullet-lead .under-hero__cta a:active {
  color: var(--white);
  text-decoration: none;
}

.lp-bullet-lead .conte-faq_section {
  background: #fafafa;
}

@media (min-width: 960px) {
  .lp-bullet-lead .hero-home_text h1 span {
    font-weight: var(--regular);
  }
}

@media (max-width: 959px) {
  .lp-bullet-lead .hero-home {
    padding-bottom: 60px;
  }
  
  .lp-bullet-lead .hero-home::after {
    transform: scale(.6);
    transform-origin: right;
  }
  
  .lp-bullet-lead .hero-home_inner {
    flex-direction: column;
  }

  .lp-bullet-lead .hero-home_inner > * {
    width: 100%;
  }
  
  .lp-bullet-lead .hero-home_text h1 {
    margin-top: 30px;
    font-size: 40px !important;
    line-height: 50px;
    text-align: center;
  }
  
  .lp-bullet-lead .hero-home_form {
    max-width: unset;
    margin-top: 0;
    padding: 20px 20px 40px;
    background: var(--white);
  }
  
  .lp-bullet-lead .hero-home_form .field:not(:first-child) {
    margin-top: 0;
  }
  
  .lp-bullet-lead .hs-form-field label:not(label.hs-form-radio-display):not(label.hs-error-msg) {
    font-size: 16px;
  }
  
  .lp-bullet-lead .actions {
    width: 50%;
    margin: 0 auto;
  }
  
  .lp-bullet-lead .under-hero {
    flex-direction: column;
  }
  
  .lp-bullet-lead .under-hero img {
    margin: 0 auto;
  }
  
  .lp-bullet-lead .under-hero_section {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 639px) {
  .lp-bullet-lead .under-hero__cta {
    width: 100%;
  }
  
  .lp-bullet-lead .actions {
    width: 100%;
  }
  
  .lp-bullet-lead [id*=hs_form_target] input.hs-button.primary.large {
    padding-right: 35px;
  }
  
  .lp-bullet-lead .conte-features br {
    content: inherit;
  }
  
  .lp-bullet-lead .conte-terms_section > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*** END LANDING PAGE BULLET LEAD (PRELAUNCH) ***/

/* Framework */

/**
 * Swiper 6.5.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 23, 2021
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}