/* Theme base styles */

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

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

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

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

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

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

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

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

body {
	margin: 0;
	overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Clearfix */

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

.position-relative {
	position: relative;
}

.text-image--centered {
	display: flex;
	height: 600px;
	align-items: center;
}

.text-image--right > div >div:first-child {
    display: flex;
    flex-direction: column-reverse;
}

@media (max-width: 768px) {
	.position-relative > .row-fluid > div:last-child {
		display: flex;
		flex-direction: column-reverse;
	}

	.text-image--centered {
		height: auto;
	}
}

@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 1rem; */
}

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

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

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  
  .body-wrapper {
    overflow-x: hidden;
  }
}

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* 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;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

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

/* Help text */

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 {
  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 - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* 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;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

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

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Libraries */

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

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

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

/**************************\
Basic Modal Styles
\**************************/

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow-y: auto
}

.modal--video .modal__container {
  width: 1100px;
}

.modal img {
  max-width: 100%
}

@media (min-width: 768px) {
  .modal--small .modal__container {
    max-width: 456px
  }

  .modal--model .modal__container {
    max-width: 814px
  }
}

.modal--small .modal__inner-wrapper {
  padding: 35px
}

.modal--model .modal__inner-wrapper {
  overflow: hidden;
}

.modal__container {
  max-width: 100%;
  max-height: calc(calc(var(--vh, 1vh) * 100) - 140px);
  box-sizing: border-box;
}

.modal--arneg-groups .modal__container {
  width: 615px;
}

.modal__inner-wrapper {
  padding: 50px 60px;
  background: #fff;
  border-radius: 3px;
}

.modal--model .modal__inner-wrapper {
  padding: 20px 60px 0
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #e7e9ec;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__close {
  position: absolute;
  top: -34px;
  right: -75px;
  cursor: pointer
}

.modal__close svg {
  pointer-events: none
}

@media (max-width: 767px) {
  .modal__close {
    top: -60px;
    right: 0;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
  }

  .modal__close svg {
    height: 50px;
    filter: brightness(0)
  }

  .modal__container {
    padding-top: 60px;
    max-width: calc(100% - 30px);
    max-height: calc(calc(var(--vh, 1vh) * 100) - 20px);
  }

  .modal__inner-wrapper {
    padding: 40px 20px;
  }

  .modal--model .modal__inner-wrapper {
    padding: 20px 40px 0
  }
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #e7e9ec;
  color: #fff;
}



/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mmfadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
  to { transform: translateY(0); }
}

@keyframes mmslideOut {
  from { transform: translateY(0); }
  to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}
.progressive {
  overflow: hidden;
  position: relative;
  will-change: transform
}

.progressive__img {
  width: 100%;
  height: 100%;
  transform: translateZ(0)
}

.progressive__bg-wrapper {
  overflow: hidden
}

.progressive--not-loaded {
  filter: blur(30px);
  transform: scale(1.1)
}

.progressive--is-loaded {
  filter: blur(20px);
  animation: a .5s both;
  transform: scale(1)
}

@keyframes a {
  0% {
    filter: blur(20px)
  }
  to {
    filter: blur(0)
  }
}

figure {
  margin: 0;
  line-height: 0
}

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

/* Header animation menu section */
.menu__link {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  position: relative
}

.menu__link {
  white-space: nowrap;
}

.menu__link:after {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, #ffffff00 50%, white 50%) right;
  background-size: 205%;
  transition: .5s ease-out;
  margin-top: 5px;
  position: absolute;
  bottom: -4px
}

.menu__link:hover:after {
  background-position: left;
}

@media (max-width: 800px){
  .menu__link:after {
    content: none;
    display: none;
  }

  .menu__link {
    flex-direction: inherit;
  }
}


/* Header DND sections */

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  transition: all .3s ease-in-out;
  transition-property: background, transform;
  z-index: 99;
  width: 100%
}

@media (min-width: 801px) {
  .header[data-scroll="out"] {
    transform: translatey(-100%);
  }
}

[data-scroll-dir-y="-1"] .header {
  transform: translatey(0);
}

.header-spacer {
  height: 0px;
}

.header--no-nav .header__bottom {
  min-height: 90px;
  display: flex;
  align-items: center;
}

.header--no-nav .header__bottom .header__container {
  width: 100%
}

@media (max-width: 800px){
  .header--standard .header__bottom {
    border-bottom: 1px solid #e7e9ec33;
    padding-bottom: 17px;
    padding-top: 12px;
  }

  .header {
    transition-property: transform;
  }
}

.header--no-nav + .header-spacer {
  height: 90px
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 25px;
  min-height: 90px;
}

@media (max-width: 800px){
  .header__container {
    min-height: 50px;
  }
}

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

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

@media (max-width: nullpx) {
  .header__container {
    padding: 0;
  }

  .header__column {
    position: relative;
  }

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

  .header-spacer {
    height: 0px
  }
}

/* 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; */
  overflow: hidden;
  z-index: 100;
}


.lang-switcher{
  z-index: 100;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  align-content: center;
}

.search-button {
  background: #fff;
  height: 40px;
  padding: 10px;
  width: 40px;
}
.search-button-closed {
  border-radius: 50%;
}

.searchform {
  position: relative;
  display: flex;
  align-items: center;
}
.search_btn{
  height: 40px;
}

.popup_form {
  position: absolute;
  right: 30px;
  width: 266px;
}

.popup_form__background {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  background: #00000073;
  z-index: -1;
}
@media (max-width: 800px) {
  .popup_form {
    right: 55px;
  }
  .popup_form__background {
    background: #fff;
  }
}

.hs-search-field .hs-search-field__input, 
.hs-search-field .hs-search-field__input:active, 
.hs-search-field .hs-search-field__input:focus {
  border-color: transparent;
  height: 40px;
  outline: none;
  border-radius: 50px
}

.header__logo .widget-type-logo, .header__logo .widget-type-logo * {
  line-height: 0
}

.header__logo-claim {
  font-size: 13px;
  line-height: 17px;
  margin-left: 20px
}

.header__logo-claim-second-line {
  letter-spacing: .4px
}

.header__back-button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: calc(100% - 70px);
  align-items: center;
  justify-content: center;
  background: #e7e9ec;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
}

.header__back-button span::before {
  
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
  margin-right: 6px;
  display: inline-block;
}

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

  .header__logo .widget-type-logo {
    width: 144px;
    position: absolute;
    left: 50%;
    transform: translate(-50%)
  }
}

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

.header-switch-mobile{
  display:none;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

/* Navigation */

#nav-toggle {
  display: none;
}

.header__navigation--toggle{
  display: none;
}
/* Mobile toggles */

@media (max-width: 800px) {
  .header__logo-claim {
    display: none;
  }

  .header__navigation {
    display: none;
    width: 100%;
  }

  .header__navigation.open {
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }

  .header__navigation--toggle {
    cursor: pointer;
    position: relative;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background-color: #fff;
    border-radius: 50%;
  }

  .header__navigation--toggle::after {
    content: url('data:image/svg+xml,%3Csvg width="19px" height="11px" viewBox="0 0 16 9" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"%3E%3Cg id="mockup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"%3E%3Cg id="Assets" transform="translate(-233.000000, -174.000000)" stroke="%232C333D"%3E%3Cg id="menu-filter" transform="translate(233.849242, 174.000000)"%3E%3Cline x1="0.5" y1="0.5" x2="14.5" y2="0.5" id="Line"%3E%3C/line%3E%3Cline x1="0.5" y1="4.5" x2="14.5" y2="4.5" id="Line-Copy-3"%3E%3C/line%3E%3Cline x1="0.5" y1="8.5" x2="14.5" y2="8.5" id="Line-Copy-4"%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    display: block;
  }

  .header__navigation--toggle.open::after {
    position: relative;
    top: 50%;
    transform: translate(-0%, -50%);
    content: url('data:image/svg+xml,%3Csvg width="19px" height="19px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"%3E%3Cg id="mockup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"%3E%3Cg id="Assets" transform="translate(-365.000000, -172.000000)" stroke="%23ffffff"%3E%3Cg id="x" transform="translate(365.849242, 173.000000)"%3E%3Cline x1="-1.63984938" y1="5.16605339" x2="11.9719562" y2="5.16605339" id="Line" transform="translate(5.166053, 5.166053) rotate(-45.000000) translate(-5.166053, -5.166053) "%3E%3C/line%3E%3Cline x1="-1.63984938" y1="5.16605339" x2="11.9719562" y2="5.16605339" id="Line-Copy-3" transform="translate(5.166053, 5.166053) rotate(45.000000) translate(-5.166053, -5.166053) "%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  }

  .hamburger-backgroundColor-standard:after{
    filter: invert(1);
  }

  .header--black-isothermal .header__navigation--toggle.open::after,
  .header--black .header__navigation--toggle.open::after{
    filter: invert(1);
  }

  .menu.menu--primary {
    position: relative;
    top: 50px;
    left: 0;
    width: 100%;
  }

  .menu.menu--primary ul {
    margin:0;
    padding: 0;
    width: 100%;
    position: relative;
    transition: 0.25s;
  }

  .menu__item--depth-1 {
    min-height: 73px;
    contain: content;
    width: 100%;
    padding: 0 !important;
  }
  .menu__item--depth-1:after {
    border-bottom: 2px solid #d9d8d6;
    content: " ";
    width: 100%;
    height: 2px;
    position: absolute;
    margin-top: 24px;
  }

  .menu__wrapper{
    background-color: white;
  }
  .menu.menu--primary .menu__submenu, 
  .menu.menu--primary .menu__wrapper {
    padding: 57px 24px 32px 24px;
  }

  .menu.menu--primary .menu__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-switch-mobile {
    display: block;
    position: relative;
    padding: 15px 36px;
    margin-top: 1px;
  }
  .header--black--isothermal .header-switch-mobile,
  .header--black .header-switch-mobile {
    background: black;
  }

  .header.header--black-isothermal-isothermal .menu__wrapper {
    background-color: black;
  }

  .header--black-isothermal *{
    background: #000;
  }

  .header__navigation--toggle.open {
    background: #e7e9ec
  }

  .menu.menu--primary > ul {
    top:0;
    left:0;
  }

  .menu.menu--primary > ul ul {
    display: none;
    top:0;
    left:100%;
  }

  .menu.menu--primary .menu__submenu--active .mega-menu__row > ul {
    display: block !important;
    position: relative !important;
    left: unset !important;
    padding: 0
  }

  .menu--primary .menu__item {
    position: static
  }

  .menu.menu--primary .mega-menu .mega-menu__row > .menu__link {
    display: none
  }

  .mega-menu .mega-menu__col > .menu__submenu,
  .menu.menu--primary .menu__brands > .menu__submenu {
    display: block;
    left: 0;
    position: relative; 
    padding: 0;
    font-weight: 300
  }

  .menu.menu--primary .mega-menu__col .menu__child-toggle {
    display: none
  }

  .menu.menu--primary .mega-menu .mega-menu__col .menu__link {
    padding: 10px 0
  }

  .menu.menu--primary .mega-menu__row > .menu__submenu > .mega-menu__col:not(:first-child)::before {
    content: "";
    border-bottom: 1px solid #E2E2E2;
    position: relative;
    display: block;
    width: calc(100% + 72px);
    left: -36px;
    margin: 15px 0
  }

  .menu.menu--primary .menu__brands .menu__brand .menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 15px 0
  }

  .menu__brands .menu__brand .menu__link > *{
    max-width: 50%
  }

  .menu__item--italic-mobile {
    font-style: italic
  }

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

  .menu.menu--primary .menu__item.menu__brands .menu__item.menu__brands-wrapper::before,
  .menu.menu--primary .mega-menu .mega-menu__col.menu__item.menu__grid::before {
    content: unset
  }

  .menu.menu--primary .menu__brands-wrapper > .menu__link {
    display: none
  }

  .menu__item.menu__brands {
    position: relative
  }

  .menu__brands::after {
    content: "";
    background: #F0F0F0;
    position: absolute;
    left: -36px;
    top: 35px;
    width: calc(100% + 72px);
    height: 100%
  }

  body.menu-open .header {
    background: #fff
  }
}

@media (min-width: 1px) {
  .menu__wrapper.no-list {
    display: flex;
    align-items: center
  }

  .header__back-button {
    display: none !important
  }
}

/* MENU */
/* Menu */



/* Menu items */

.menu__item {
  position: relative;
}

.menu__link {
  text-decoration: none;
}

.menu__item--no-label > .menu__link {
  margin: 0 !important
}

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

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: 500;
}

.menu__link[href="javascript:;"] {
  cursor: default
}

@media (max-width: nullpx) {
  .menu__item {
    display: block;
    width: 100%;
  }

  .menu__link {
    display: block;
    font-size: 0.944rem;
  }
}

/* Menu items - top level */

.menu__item--depth-1 {
  display: inline-block;
  padding: 22px 20px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.menu__item--depth-1 > .menu__link--active-link:after {
  bottom: 19px;
  content: '';
  height: 1px;
  left: 0;
  position: unset;
  width: 100%;
  background: #5263bb;
}

.menu__link, 
.menu__link:hover,
.menu__link:focus {
  font-weight: inherit
}

/* Menu items - submenus */

.menu__submenu {
  display: none;
  left: 0;
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: 270px;
  z-index: 99;
  padding: 15px 0;
}

.menu__item--open > .menu__submenu {
  display: block;
}

/* Keeps the first menu item's drop down menu aligned to the left of the top level menu item */

.menu__item--depth-1:first-child .menu__submenu--level-2 {
  transform: unset;
}

.menu__submenu .menu__item {
  padding: 0;
  width: 100%;
}

.menu__submenu .menu__link {
  display: block;
  padding: 7.5px 30px;
  transition: background-color 0.3s;
  width: 100%;
}

.menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

.mega-menu .menu__submenu {
  padding: unset;
  background: unset;
  box-shadow: unset;
  border-radius: 0
}

.mega-menu .menu__submenu .menu__link {
  padding: unset;
}




/* Accounts for child toggle */

.menu__submenu .menu__item--has-submenu > .menu__link {
  /* padding-right: 3rem; */
}

/* Creates the triangle at the top of the submenu drop down */

@media (min-width: 1px) {
  .menu__submenu {
    background: #f4f5f5;
  }

  .menu__link{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: nullpx) {
  .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
  }

  .menu__submenu .menu__item {
    border-bottom: none;
    padding: 0;
  }

  .menu__item--depth-1 {
    padding: 0
  }

  .menu.menu--primary .menu__link {
    display: inline-block;
    padding: 15px 0;
    transition: none;
  }

  .menu__submenu .menu__item .menu__link:hover,
  .menu__submenu .menu__item .menu__link:focus {
    background-color: inherit;
    transition: none;
  }

  .menu__item--has-submenu > .menu__link {
    width: 70%;
  }

  .menu__item--no-label > .menu__submenu {
    display: block
  }

  .menu__item--no-label > .menu__child-toggle,
  .menu__item--no-label > .menu__link,
  .menu__item--brand-numbers {
    display: none
  }
}

/* Menu icons */

@media(min-width: 1px) {
  .menu__submenu .menu__child-toggle {
    margin-left: auto;
    padding: 0 1.05rem;
  }

  .menu__child-toggle {
    position: absolute;
    right: 5px;
    top: 12px;
    z-index: 2;
  }

  .menu__item--depth-1 > .menu__child-toggle {
    position: static;
    right: 0;
    top: 0;
    vertical-align: middle;
  }
}

.menu__child-toggle-icon {
  background-repeat: no-repeat;
  display: block;
  height: 15px;
  width: 15px;
}

.header--black-isothermal .menu__child-toggle-icon,
.header--black .menu__child-toggle-icon{
  filter: brightness(5);
}

@media (max-width: nullpx) {
  .menu__child-toggle {
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 40px;
    padding: 15px 0;
    position: relative;
    right: 0;
    top: 0;
    width: 28%;
    display: inline-block
  }

  .menu__child-toggle-icon {
    margin-left: auto;
    transition: transform 0.4s;
  }

  .menu__item--arneg-world {
    flex-direction: row-reverse;
    margin-top: auto;
    justify-content: space-between;
  }

  .menu.menu--primary .menu__grid > .menu__submenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px
  }

  .menu__grid img {
    width: 100%;
    height: auto
  }

  .menu__submenu--active {
    max-height: calc(100vh - 70px);
    max-height: calc(calc(var(--vh, 1vh) * 100) - 70px);
    overflow-y: auto;
  }

  .menu__grid>.menu__submenu .menu__link {
    text-align: center;
    font-size: 15px
  }
}

/* Menu items custom */

.menu__item--arneg-world {
  display: flex;
  align-items: center
}

.menu__item--arneg-world::before {
  content: "";
  
  margin-right: 10px;
  line-height: 0;
  height: 45px;
  width: 46px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.menu__item.menu__brands {
  color: #5263bb;
}

.mega-menu .menu__item--depth-4>.menu__link:hover {
  text-decoration: underline;
  text-underline-offset: 7px
}

@media (min-width: 1px) {
  .menu__item--arneg-world:after {
    content: "";
    width: 1px;
    background: #EDEDED;
    height: 35px;
    position: absolute;
    left: 0
  }

  .menu__item--arneg-world {
    padding-left: 30px;
    padding-right: 0;
    margin-left: 10px
  }

  .menu__item--arneg-world >.menu__link--active-link:after,
  .menu__item--arneg-world:hover >.menu__link--active-link:after,
  .menu__item--arneg-world:focus >.menu__link--active-link:after {
    background: #e7e9ec;
    height: 100%;
    z-index: -1;
    width: calc(100% + 30px);
    left: 1px
  }

  .menu__item--arneg-world >.menu__link--active-link,
  .menu__item--arneg-world >.menu__link--active-link:hover,
  .menu__item--arneg-world >.menu__link--active-link:focus {
    color: #fff !important
  }


  .header .mega-menu>.menu__submenu.menu__submenu--level-2 {
    max-height: calc(100vh - 138px);
    overflow-y: auto;
  }

  .mega-menu > .menu__submenu.menu__submenu--level-2 {
    width: 100vw;
    position: fixed;
    left: 0;
    top: 138px;
    background: #F4F5F5;
    padding: 50px 0
  }

  .mega-menu .menu__item {
    font-size: 16px;
    font-weight: 300;
  }

  .mega-menu .menu__item--depth-3 {
    font-weight: 500;
  }

  .mega-menu .menu__item--depth-3 > .menu__link {
    margin-bottom: 20px
  }

  .mega-menu .menu__item--depth-4 > .menu__link {
    margin-bottom: 15px
  }

  .menu__submenu .menu__item.mega-menu__row {
    max-width: calc(1296px + 3rem);
    margin: auto;
    padding: 0 1rem;
  }

  .mega-menu__row .menu__submenu {
    display: block;
    position: relative;
    top: unset;
    left: unset
  }

  .mega-menu__row > .menu__submenu {
    display: flex;
    width: 100%;
    left: unset;
    top: unset;
  }

  .menu__item.menu__item--brand-numbers {
    background-color: #fff;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    font-style: italic;
    padding: 45px 135px;
    border-radius: 5px;
    margin-top: -40px;
    margin-bottom: -40px
  }

  .menu__item--brand-numbers .menu__item {
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 215px;
    font-weight: 400;
  }

  .menu__item--brand-numbers .menu__item .menu__link {
    margin: 0
  }

  .menu__item--brand-numbers .menu__submenu > .menu__item:not(:last-child) {
    margin-bottom: 25px
  }

  .menu__item--brand-numbers .menu__item span {
    flex: 1
  }

  .menu__item--brand-numbers .menu__item::after {
    counter-reset: num var(--num);
    content: counter(num);
    display: inline-block;
    position: relative;
    font-size: 45px;
    line-height: 1;
  }

  .menu__grid .menu__submenu {
    display: grid;
    grid-template-columns: repeat(4, 1fr );
    width: 100%;
  }

  .menu__grid .menu__submenu > li {
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgb(237 237 237 / .2);
    border-bottom: 1px solid rgb(237 237 237 / .2);
  }

  .menu__grid .menu__submenu > li:nth-child(4n) {
    border-right: 0
  }

  .menu__grid .menu__submenu > li:nth-child(n+5) {
    border-bottom: 0
  }

  .menu__grid .menu__submenu > li .menu__link {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: auto
  }

  .mega-menu__col--1 {
    flex: 1
  }

  .mega-menu__col--5 {
    flex: 7
  }

  .menu__grid .menu__link span {
    display: block;
    margin-top: 10px   
  }

  .header.header--grey .mega-menu>.menu__submenu.menu__submenu--level-2,
  body .header.header--grey {
    background: #f4f5f5
  }

  .header.header--black-isothermal .menu__item--arneg-world:after,
  .header.header--black .menu__item--arneg-world:after {
    background: rgb(237 237 237 / .2)
  }

  .menu__item.menu__brands {
    background: #F4F5F5;
    margin-top: 60px;
    margin-bottom: -50px;
    padding: 20px 0
  }

  .menu__brands > .menu__submenu {
    display: block;
    left: 0;
    width: 100%;
    position: relative;
  }

  .menu__brands-wrapper > .menu__submenu {
    display: flex;
    width: 100%
  }

  .menu__brands-wrapper > .menu__submenu > li:not(:first-child)::after {
    content: "";
    position: absolute;
    border-left: 1px solid #E8E8E8;
    left: 0;
    top: -20px;
    display: block;
    width: 1px;
    height: calc(100% + 40px)
  }

  .menu__item.menu__brand {
    padding: 0 36px;
    position: relative
  }

  .mega-menu  .menu__item.menu__brand > .menu__link {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .menu__brand .menu__link span {
    margin-left: 30px;
    font-size: 14px;
    opacity: .8;
    position: relative;
  }

  .menu__brands .mega-menu__col--1 > .menu__submenu {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .menu__brands .mega-menu__col--1 > .menu__submenu .menu__link {
    margin: 0
  }

  .menu__brands .menu__link.menu__link--toggle {
    margin-bottom: 0
  }

  .menu__brand .menu__link span::before {
    
    position: absolute;
    top: 0;
    left: -30px;
  }

  .menu__item--depth-1 > .menu__child-toggle,
  .mega-menu .menu__child-toggle {
    display: none
  }
}

@media (min-width: 1px) and (max-width: 185px) {
  .menu__item.menu__item--brand-numbers {
    padding: 45px 65px;
  }
}

.menu__item.menu__item--big {
  font-size: 18px
}

.menu__item.menu__item--underline > .menu__link > span {
  border-bottom: 1px solid;
  padding-bottom: 3px
}

.menu__item.menu__item--red {
  color: #E30613
}

.header .mega-menu>.menu__submenu.menu__submenu--level-2 {
  transition: background .3s ease-in-out
}

.header.header--black .mega-menu>.menu__submenu.menu__submenu--level-2,
body .header.header--black {
  background: #000000;
  color: #fff            
}
.header.header--black-isothermal .mega-menu>.menu__submenu.menu__submenu--level-2,
body .header.header--black-isothermal {
  background: #000000;
  color: #fff            
}

.header.header--black svg * {
  stroke: #fff
}
.header.header--black-isothermal svg * {
  stroke: #fff
}

.header.header--black .header-top__label,
.header.header--black .header-top__menu .hs-menu-item,
.header.header--black .menu__item--depth-1 .menu__link
{
  color: inherit
}
.header.header--black-isothermal .header-top__label,
.header.header--black-isothermal .header-top__menu .hs-menu-item,
.header.header--black-isothermal .menu__item--depth-1 .menu__link
{
  color: inherit
}

.header.header--black * {
  border-color: rgb(237 237 237 / .2)
}
.header.header--black-isothermal * {
  border-color: rgb(237 237 237 / .2)
}

.header--black .menu__item--depth-1 > .menu__link--active-link:after,
.header--black .menu__item--depth-1:hover > .menu__link:after {
  background: #e7e9ec;
}

.header--black-isothermal .menu__item--depth-1 > .menu__link--active-link:after,
.header--black-isothermal .menu__item--depth-1:hover > .menu__link:after {
  background: #e7e9ec;
}



@media (min-width: 1px) { 
  .header.header-md--white {
    background: #fff
  }
}

div[class*="open"]::after {
  filter: invert(0);
}



.header-switcher{
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-switcher--listing {
  width: 155px;
  white-space: nowrap;
}

.header--black-isothermal .header-switcher--listing>a,
.header--black .header-switcher--listing>a{
  color: white;
}
.header-switcher--listing>a{
  color: #2C333D;
}

.header-switcher__link--red{
  color: #E30613 !important;
}

.header-switcher-container {
  height: 68px;
  display: flex;
  align-content: center;
  align-items: flex-start;
  gap: 17px;
  height: 68px;
  justify-content: center;
  margin-top: 10px;
}

.header-switcher-svg::before {
  content: url('data:image/svg+xml,%3Csvg width="14px" height="14px" viewBox="0 0 16 9" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"%3E%3Cg id="mockup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"%3E%3Cg id="Assets" transform="translate(-233.000000, -174.000000)" stroke="%232C333D"%3E%3Cg id="menu-filter" transform="translate(233.849242, 174.000000)"%3E%3Cline x1="0.5" y1="0.5" x2="14.5" y2="0.5" id="Line"%3E%3C/line%3E%3Cline x1="0.5" y1="4.5" x2="14.5" y2="4.5" id="Line-Copy-3"%3E%3C/line%3E%3Cline x1="0.5" y1="8.5" x2="14.5" y2="8.5" id="Line-Copy-4"%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  display: block;
  position: relative;
  height: 14px;
  width: 14px;
}

.header-switcher-svg.open::before {
  content: url('data:image/svg+xml,%3Csvg width="14px" height="14px" viewBox="0 0 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"%3E%3Cg id="mockup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"%3E%3Cg id="Assets" transform="translate(-365.000000, -172.000000)" stroke="%232C333D"%3E%3Cg id="x" transform="translate(365.849242, 173.000000)"%3E%3Cline x1="-1.63984938" y1="5.16605339" x2="11.9719562" y2="5.16605339" id="Line" transform="translate(5.166053, 5.166053) rotate(-45.000000) translate(-5.166053, -5.166053) "%3E%3C/line%3E%3Cline x1="-1.63984938" y1="5.16605339" x2="11.9719562" y2="5.16605339" id="Line-Copy-3" transform="translate(5.166053, 5.166053) rotate(45.000000) translate(-5.166053, -5.166053) "%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  width: 14px;
}

.header--black-isothermal .header-switcher-svg:before,
.header--black .header-switcher-svg:before{
  filter: invert(1);
}

.display-none{
  display: none;
}

[data-scroll="out"] .logo__image:not(.logo__image--scroll) {
  display: none
}

[data-scroll="out"] .logo__image.logo__image--scroll {
  display: block
}

[data-scroll="out"] .header__top {
  display: none
}

.header[data-scroll="out"] {
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(0,0,0,0.05);
}

.header[data-scroll="out"] .search-button {
  background: #EFEFEF
}

@media (max-width: 800px) {
  .custom-language-switcher--desktop {
    display: none
  }
}

@media (min-width: 801px) {
  .header.header--white[data-scroll="in"] .menu *,
  .header.header--white[data-scroll="in"] .header-top__language-switcher * {
    color: white !important;
  }

  .custom-language-switcher--mobile {
    display: none
  }
}

body:not(.menu-open) .header.header--white[data-scroll="in"] .logo__image:not(.logo__image--scroll) {
  filter: brightness(0) invert(1)
}

.header--white-standard {
  background: #fff
}

.custom-language-switcher {
  user-select: none;
  cursor: pointer
}

.custom-language-switcher.open .custom-language-switcher__current-lang svg {
  transform: rotate(180deg)
}

.custom-language-switcher.open .custom-language-switcher__current-lang {
  border-bottom: 0;
  border-radius: 12px 12px 0 0 
}

.custom-language-switcher__languages {
  top: 100%;
  left: 0;
  padding: 4px 12px;
  width: 100%;
  border: 1px solid #191e3a;
  border-radius: 0 0 12px 12px;
  border-top: 0
}

.custom-language-switcher.open .custom-language-switcher__languages {
  display: block;
}

.custom-language-switcher.open .custom-language-switcher__languages * {
  color: #191e3a;
}
.scroll-down {
  display: flex;
  justify-content: center;
  position: relative;
  font-size: 11px;
  letter-spacing: 2px
}

.scroll-down__line {
  height: 50px;
  width: 1px;
  background: #ffffff1f;
}

.scroll-down__line::before {
  content: "";
  width: 1px;
  height: 25px;
  background: white;
  position: absolute;
}

@keyframes moveLine {
  0% {
    height: 0;
  }

  25% {
    top: 0;
    height: 25px
  }

  75% {
    top: 25px;
    height: 25px
  }

  100% {
    top: 100%;
    height: 0
  }
}

.header__top * {
  color: white;
}

.header__top--desktop {
  width: 100%;
}

.header-select {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  z-index: 90;
  position: relative;
  user-select: none
}

.header-select:not(.open) .header-select__container {
  display: none
}

.header-select:not(.open) .header-select__content {
  transform: skewX(-50deg);
}

.header-select:not(.open) .header-select__toggle-wrapper {
  transform: skewX(50deg);
}

.header-select__icon svg {
  transition: all .3s linear
}

.header-select.open .header-select__icon svg {
  transform: rotate(45deg)
}

.header-select__container {
  position: absolute;
  width: 100%;
  background: #191e3a;
  top: 0;
  padding: 60px;
  z-index: -1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.header-select__title {
  margin-bottom: 40px;
	font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 18px;
}

.header-select__list {
  display: flex;
}

.header-select__toggle-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-select__section-title {
  margin: 7px 15px 7px 0px;
  font-size: 12px;
}

.display-mobile {
  display: none;
}

.white {
  background-color: #fff;
  border-radius: 50%;
  padding: 1px;
}

.header-select__section-title-rotation {
  transform: skewX(50deg);
}

.header-select__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #191e3a;
  width: 100%;
}

.header-select__item {
  max-width: 277px;
  position: relative;
}

.header-select__item:not(:first-child) {
  margin-left: 60px;
}

.link-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
}

.header-select__item:hover .header-select__image-wrapper {
  border: 1px solid #fff;
}

.border-white .link-arrow {
  display: none !important;
}

.header-select__item>a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header-select__image-wrapper {
  height: 133px;
  width: 100%;
  position: relative;
  background: #ffffff1a;
  margin-bottom: 21px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.header-select__item--image-logo {
  margin: 19px 0;
  object-fit: contain;
  width: auto;
  height: auto;
}

@media (max-width: 800px) {
  .header-select__content__scroll {
    height: 150vh;
    overflow-y: scroll;
    max-height: 100vh;
  }
}

.header-select__description {
  font-size: 12px;
  margin: 0;
  color: #fff;
}

.display-none {
  display: none;
}

.header__top--desktop .header-top {
  display: absolute;
  justify-content: space-between;
  align-items: center
}

.header__top--desktop .header-top__menu .hs-menu-item,
.header-top__label {
  font-size: 14px;
  line-height: 1.1;
  color: #e7e9ec;
  text-transform: uppercase;
}

.header__top--desktop .header-top__menu .hs-menu-item {
  margin-right: 30px
}

.header-top__menu .hs-menu-item a {
  color: inherit
}

.header-top__right {
  display: flex;
  align-items: center
}

.header__top--desktop .header-top__right>div:not(:last-child) {
  margin-right: 30px
}

.header-top__item {
  display: flex;
  align-items: center;
}

.header-top__item:hover *,
.header-top__menu .hs-menu-item:hover {
  color: #191e3a;
}

.header-top__comparator--hidden {
  display: none
}

.header-top__size {
  font-size: 10px;
  position: absolute;
  top: 8px;
  left: 18px;
  font-weight: 600
}

.header-top__language-switcher {
  margin-right: 24px;
}

.custom-language-switcher__current-lang {
  padding: 4px 12px;
  border: 1px solid #191e3a;
  border-radius: 12px;
  white-space: nowrap;
}

.custom-language-switcher__arrow {
  margin-left: 6px;
  /* 	transition: transform .3s ease-in-out */
}

.custom-language-switcher:hover .custom-language-switcher__arrow,
.custom-language-switcher:hover .rotate-element {
  /* 	transform: rotate(180deg); */
}

.reload-animation {
  transition: transform .3s ease-in-out;
}

.reload-animation__animate {
  transform: rotate(180deg);
}

.header__top--desktop .header-top__item {
  padding: 15px 0;
  cursor: pointer;
}

.header__top--desktop .header-top__icon {
  margin-right: 10px
}

.header__top--mobile .header-top__menu {
  padding: 30px;
  border-top: 1px solid #E2E2E2
}

.header__top.header__top--mobile .header-top__menu ul {
  flex-direction: row;
  justify-content: space-evenly;
}

.header__top--mobile .header-top {
  padding: 0
}

.header__top--mobile .header-top__right {
  display: flex;
}

.header__top--mobile .header-top__right>div {
  flex: 1;
  background: #fff
}

.header__top--mobile .header-top__right>div:not(:last-child) {
  border-right: 1px solid #E2E2E2
}

.header__top--mobile .header-top__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  width: 100%;
}

.header__top--mobile .header-top__icon {
  height: 22px;
  width: 22px;
  margin-bottom: 8px
}

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

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

.hs-search-field__suggestions #results-for {
  font-weight: bold;
  margin: 10px 0px;
}

.hs-search-field__suggestions a,
.hs-search-field__suggestions #results-for {
  display: block;
}

.hs-search-field__suggestions a {
  color: #e7e9ec
}

.hs-search-highlight {
  background: #E2E2E2
}

.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  color: #e7e9ec;
  outline: 0
}

li.no-submenu.menu-item.custom-language-switcher__language {
    display: flex;
}
.custom-language-switcher__language a {
	font-size: 14px;
	color: #e7e9ec;
	text-transform: uppercase;
	width: 100%;
}

.custom-language-switcher__language:hover a {
  color: #e7e9ec;
}

.hs-search-field__input::placeholder {
  opacity: .4
}

button.hs-search-field__button,
button.hs-search-field__button:focus,
button.hs-search-field__button:hover {
  background: unset;
  border: unset;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 10px
}

.hs-search-field__bar {
  position: relative
}


.custom-language-switcher {
  position: relative;
  border-color: #fff;
  color: #fff;
  stroke: #fff
}

.custom-language-switcher__languages {
  position: absolute;
  list-style: none;
  z-index: 2;
  display: none;
  margin: 0;
}

.header[data-scroll=out] .custom-language-switcher, 
body.menu-open .custom-language-switcher,
.header--white-standard.header--standard .custom-language-switcher {
  border-color: #e7e9ec;
  color: #e7e9ec;
  stroke: #e7e9ec
}

.custom-language-switcher * {
/*   border-color: inherit; */
  color: #191e3a;
  stroke: #191e3a;
}

@media (max-width: 800px) {
  body.header-select-open {
    overflow: hidden
  }

  body.header-select-open .header-select {
    overflow: scroll;
    height: 100vh;
  }

  body.header-select-open .header-select__content {
    background-color: unset;
    position: absolute;
    top: 0;
  }

  body.header-select-open .header-select__toggle-wrapper {
    margin-top: 10px
  }

  body.header-select-open .header-select__icon {
    position: fixed;
    top: 10px;
    right: 18px
  }

  body.header-select-open .header-select__icon svg {
    width: 15px;
    height: 15px
  }

  .custom-language-switcher__languages,
  .header-column--hider {
    display: none
  }

  .custom-language-switcher__languages--mobile {
    position: unset !important;
    transform: translate(0px, 0px) !important;
    ;
  }

  .custom-language-switcher {
    margin-left: 24px;
    margin-top: 24px;
    margin-bottom: 32px
  }

  .custom-language-switcher__toggle {
    display: inline-block
  }

  .scroll-down {
    display: none;
  }

  .header-column--hider-toggle {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0;
  }

  .display-mobile {
    display: block;
  }

  .header-select__section-title {
    margin: 4px 8px 4px 0px;
  }

  .header-select__list {
    flex-direction: column;
    padding: 0px 32px;
  }

  .header-select {
    padding: 0px 50px;
  }

  .header-select__container {
    margin: auto;
    padding: 60px 40px 40px;
    width: calc(100% - 16px);
  }

  .header-select__title {
    display: none;
  }

  .header-select__toggle-wrapper {
    align-items: center;
  }

  .header-select__list {
    margin-bottom: 50px;
  }

  .header-select__item {
    max-width: 296px;
    min-height: 221px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .header-select__item:not(:first-child) {
    margin-left: 00px;
  }

  .header-select__image-wrapper {
    max-height: 101px;
    min-height: 101px;
    height: 101px;
    max-width: 211px;
    margin-bottom: 12px;
  }

  .header-select__description {
    text-align: center;
    min-height: 68px;
    height: fit-content;
    margin-bottom: 40px;
  }

	.custom-language-switcher__languages {
		bottom: 100%;
		padding: 16px 12px;
	}

  .custom-language-switcher__languages>li:not(:last-child) {
    margin-bottom: 12px
  }

  .custom-language-switcher__language {
    text-align: center
  }

  .custom-language-switcher.active .custom-language-switcher__languages {
    display: block
  }

  .header__top {
    /* 		background: #f8fafc; */
    font-size: 15px
  }

  .header__top.header__top--mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: .25s;
  }

  .header-top__comparator {
    display: none
  }
}

@media (min-width: 801px) {
  .header-select {
    z-index: 999
  }
}
/* FOOTER GENERAL */

.footer .footer__middle a,
.footer .footer__bottom a {
	color: #ffffff;
}

/* FOOTER TOP ----------------------------------------------------------------- */

@media screen and (max-width: 800px) {
	.footer__top .footer-top-row-0-padding {
		padding-top: 24px !important;
		padding-bottom: 0px !important;
	}
}


/* Footer Logo Modulo */
.footer-wrapper-logo > img {
	width: 150px;
	max-width; 150px;
}

.hide-logo{
	display: none;
}

.relative{
	position: relative;
}
.relative > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 800px) {
	.footer-wrapper-logo {
		margin: 0 auto;
		width: fit-content;
	}
}
/* Fine Footer Logo Modulo */


/* FOOTER MIDDLE ----------------------------------------------------------------- */

.container-fluid.footer__middle ul {
	list-style: none;
}

@media screen and (min-width: 768px) {
	.footer__middle,
	.footer__middle p {
		font-size: 14px;
	}
}

@media screen and (max-width: 800px) {
	.footer__middle {
		font-size: 13px;
	}

	.footer__middle .footer-middle-row-0-padding {
		padding-top: 25px !important;
		padding-bottom: 0px !important;
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}

.footer-middle-contacts * {
	line-height: 30px;
}
@media (max-width: 800px) {
	.footer-middle-contacts * {
		text-align: center;
	}
}



@media screen and (max-width: 767px) {
	.footer-middle-contacts p {
		font-size: 13px;
		letter-spacing: 0.3px;
		line-height: 28px;
	}
}

/* FOOTER BOTTOM - COPY ----------------------------------------------------------------- */
.footer .footer__bottom .footer__copyright p {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 1.13px;
	line-height: 11px;
	margin-bottom: 0px;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.footer__copyright {
		display: flex;
		justify-content: space-between;
	}

	.footer__copyright .f-copy span:last-child {
		margin-left: 40px;
	}

	.footer__copyright .f-policies a:last-child {
		margin-left: 40px;
	}
}

@media screen and (max-width: 800px) {

	.container-fluid.footer__bottom {
		border-top: 1px solid #ffffff1a;
	}

	.footer__copyright {
		display: flex;
		margin-bottom: 16px;
		flex-direction: column;
	}

	.footer__copyright .f-copy {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 32px;
	}

	.footer__copyright .f-copy span:last-child {
		margin-top: 12px;
	}


	.footer__copyright .f-policies {
		margin-top: 24px;
		display: flex;
		justify-content: space-around;
	}
}

/* Footer media per mobile */
@media (max-width: 800px) {

	.footer {
		position: relative;
	}

	.footer .row-fluid {
		width: 100%;
	}

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

	.container-fluid.footer__middle .row-fluid .row-fluid {
		display: flex;
		flex-direction: column;
	}

	.footer .footer-middle-row-0-padding {
		padding-left : 0;
		padding-right : 0;
	}
	.container-fluid.footer__middle .row-fluid .row-fluid>div {
		margin: 0;
		padding: 0;
	}
	.container-fluid.footer__middle .row-fluid .row-fluid>div:nth-child(1) {
		order: 2;
	}
	.container-fluid.footer__middle .row-fluid .row-fluid>div:nth-child(2) {
		order: 3;
	}
	.container-fluid.footer__middle .row-fluid .row-fluid>div:nth-child(3) {
		order: 1;
	}
}

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

@media screen and (min-width:768px) {
  .accordion--section__title h3 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .accordion--section__title {
    text-align: center;
  }
  .accordion--section__title h3 {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 27px;
  }
}


.accordion__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0px;
  cursor: pointer;
  user-select: none;
}


.accordion__head--doc {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.accordion__head--doc > a {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
}

.accordion__title {
  margin: 0;
  font-weight: 500;
}

.accordion__title_faq {
  margin: 0 50px 0px 0px;
  color: #000;
}
.accordion__arrow > span {
  display: flex;
  align-items: center
}


.accordion__content {
  display: none;
  transition: height 0.35s ease-in-out;
  overflow: hidden;
}


.accordion__inner-wrapper {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .accordion__inner-wrapper {
    padding: 0px 20px;
  }
}

.accordion > .accordion__item:not(:last-child) {
  margin-bottom: 10px
}

.accordion__item.active .accordion__content {
  display: block
}

.accordion__item.active .accordion__arrow {
  transform: rotate(-45deg)
}

.accordion__arrow {
  transition: transform .3s ease-in-out;
  display: flex;
}


/* ACCORDION WHITE */
.accordion--white .accordion__head {
  border-bottom: 1px solid #d9d8d6;
}

.accordion--white .accordion__item.no-margin-bottom {
  margin-bottom: 0px;
}


.accordion--white .accordion__content .accordion__inner-wrapper {
  margin-bottom: 20px;
}

.accordion--white .element {
  display: flex;
  flex-direction: column;
}

.accordion--white .element .element__box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.accordion--white .element .element__box img {
  height: 55px;
  width: 65px;
  margin-right: 20px;
}

.accordion--white .element .element__box span {
  font-size: 16px;
  line-height: 19px;
  color: #727274;
  font-weight: 500;
}



.accordion--white .accordion__content ul li {
  list-style: none;
}

.accordion--white .accordion__content ul li {
  position: relative;
}

.accordion--white .accordion__content ul li::before {
  content: " ";
  width: 11px;
  height: 11px;
  background-color: #272e3f;
  position: absolute;
  left: -28px;
  top: 5px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

/* ACCORDION WHITE TEXT COLOR */
.accordion-cw .accordion--section__title h2 {
  color: #ffffff;
}

.accordion-cw .accordion.accordion--white.js-accordion .accordion__head {
  border-bottom: 1px solid #ffffff;
}

.accordion-cw .accordion.accordion--white.js-accordion .accordion__title {
  color: #ffffff;
}

.accordion-cw .accordion.accordion--white.js-accordion .accordion__content {
  color: #ffffff;
}
.accordion-cw .accordion--white .accordion__content ul li::before {
  background-color: #fff;
}

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

/* For content that needs to be visually hidden but stay visible for screenreaders */
/* Effetti cta e animazioni */
/* Underline rivistitata */
.underline-cta,
.underline-cta:hover{
	padding: 20px 32px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 22px;
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
	z-index: 2;
	text-align: center;
	width: fit-content;
}

.underline-cta--dark::after,
.underline-cta--light::after,
.underline-cta--club-deal-dark::after{
	content: "";
	height: 1px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: height .3s linear;
	z-index: -1;
}

.underline-cta--light::after {
	background: #fff;
}
.underline-cta--light{
	color: #fff;
}
.underline-cta--light:hover {
	color: #272e3f;
}
.underline-cta--light:hover::after {
	height: 100%;
}

.underline-cta--dark::after {
	background: #272e3f;
}
.underline-cta--dark{
	color: #313C4C;
}
.underline-cta--dark:hover {
	color: #fff;
}
.underline-cta--dark:hover::after {
	height: 100%;   
}
.underline-cta--club-deal-dark::after {
	background: #272e3f;
	border-radius: 2px;
}
.underline-cta--club-deal-dark{
	color: #313C4C;
}
.underline-cta--club-deal-dark:hover {
	color: #fff;
}
.underline-cta--club-deal-dark:hover::after {
	height: 100%;   
}
/* Underline rivistitata */

.contattaci-cta, .contattaci-cta:hover, .contattaci-cta:active, .contattaci-cta:focus {
	text-transform: uppercase;
	padding: 12px 16px;
	color: #272E3F;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 14px;
	border-radius: 2px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.contattaci-cta::before,
.contattaci-cta::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	z-index: -1
}

.contattaci-cta::before {
	background: #fff;
	width: 100%;
}

.contattaci-cta::after {
	background: #f1f1f1;
	width: 0;
	transition: all .3s linear
}

.contattaci-cta:hover::after {
	width: 100%
}

@media (min-width: 768px) {
	.contattaci-cta, .contattaci-cta:hover, .contattaci-cta:active, .contattaci-cta:focus {
		padding: 16px 24px;
		font-size: 14px;
	}
}

.contattaci-cta--blog, .contattaci-cta--blog:hover, .contattaci-cta--blog:active, .contattaci-cta--blog:focus {
	border-bottom: 1px solid;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 22px;
	padding: 4px 0px;
	text-transform: uppercase;
	white-space: nowrap;
	color: #313C4C;
	font-size: 13px;
}

.cover-box-light:hover, .cover-box-light:active, .cover-box-light:focus {
	color: #fff;
}

.cover-box-light:focus-visible {
	padding: 20px 32px;
	outline: none;
}
.cover-box-dark:hover, .cover-box-dark:active, .cover-box-dark:focus {
	color: #000;
	box-shadow: inset 0 -60px #fff;
}
.cover-box-dark:focus-visible {
	padding: 20px 32px;
	outline: none;
}

.cover-box-light, .chi-siamo-home, .contattaci-cta, .underline-cta {
	-webkit-backface-visibility:  hidden;
	-webkit-tap-highlight-color:  transparent;
}


.chi-siamo-home,
.chi-siamo-home:hover{
	border-radius: 2px;
	background-color: #272E3F;
	padding: 16px 25px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 14px;
	box-shadow: inset 0 -3px 0 -1px #313C4C;
	transition: box-shadow .5s ease-in-out;
	text-transform: uppercase;
	text-align: center;
}
.chi-siamo-home:hover {
	box-shadow: inset 100vw 0px #272E3F;
}

/* .chi-siamo-home{
background-image: linear-gradient(#272E3F,#272E3F);
background-size: 0 100%;
background-repeat: no-repeat;
transition: .4s;
}
.chi-siamo-home:hover {
background-size: 100% 100%;
} */


.blog-contattaci-cta:hover:after {
	background-position: 0;
}

.blog-contattaci-cta:after {
	background: linear-gradient(90deg,#000 50%,#fff 0) 200%;
	background-size: 200%;
	content: "";
	height: 1px;
	margin-top: 5px;
	transition: 1s ease-out;
	width: 100%;
}
.blog-contattaci-cta,
.blog-contattaci-cta:hover,
.blog-contattaci-cta:focus,
.blog-contattaci-cta:active {
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 21px;
	padding: 0px 0px;
	text-transform: uppercase;
	white-space: nowrap;
	color: #313c4c;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	font-size: 13px;
}

.club-deal-contattaci:hover:after {
	background-position: 0;
}

.club-deal-contattaci:after {
	background: linear-gradient(90deg,#fff 50%,#313c4c 0) 200%;
	background-size: 200%;
	content: "";
	height: 1px;
	margin-top: 21px;
	transition: 1s ease-out;
	width: 150%;
}
.club-deal-contattaci,
.club-deal-contattaci:hover,
.club-deal-contattaci:focus,
.club-deal-contattaci:active {
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 21px;
	padding: 0px 0px;
	text-transform: uppercase;
	white-space: nowrap;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	font-size: 13px;
}

/* Fine Effetti cta e animazioni */
.body-overflow-hidden{
	overflow: hidden !important;
}

.fixed-select {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
}
.radius-6 {
	border-radius: 6px;
}

/* Search button */
.bkg-darker-efefef .hs-search-field__input {
	background-color: #efefef;
}
@media (max-width: 800px) {
	.bkg-darker-efefef .hs-search-field__input {
		background-color: #fff;
		border-bottom: 1px solid #D9D8D6 !important;
		border-radius: 0px !important;
		padding: 0.7rem 0.7rem 0.7rem 0rem;
	}
}
/* Fine Search Button */
.bkg-darker-30{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #0000004d;
}

.border-white {
	border: 5px solid #fff !important;
}

.category-svg__reset {
	display: flex;
	align-items: center;
	align-content: center;
}
.category-svg__reset:not(:last-child) {
	margin-bottom: 2px;
}
.category-svg__reset--blog {
	justify-content: space-between;
}

.category-svg--left{
	margin-right: 8px;
}
.category-svg--right{
	margin-left: 8px;
}

.category-svg {
	width: 2px;
	height: 15px;
}

.filter_invert:after {
	background: linear-gradient(270deg,#ffffff00 50%,#000 0) 100%;
	background-size: 205%;
}

.rotation,
.filter-rotation {
	transform: skewX(-50deg);
}
.counter-rotation{
	transform: skewX(50deg) !important;
}

.fixed-90{
	top: -90px;
}

.click-to-close {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 0;
}

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

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

.atena-icon {
	background: #272e3f;
	transform: skewY(-45deg)
}

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

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

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

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

@media screen and (max-width: 767px) {
	.single-project-page p {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 30px;
	}
	
	.single-project-page h2,
	.single-project-page h3 {
		font-size: 19px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 27px;
	}
}


@media screen and (min-width: 1101px) {
	.project--second-section {
		padding-right: 120px;
	}
}

@media screen and (min-width: 768px) {
	.project--second-section {
		padding-top: 130px;
		
		padding-bottom: 80px;
		padding-left: 22px;
		display: flex;
		justify-content: space-between;
		position: relative;
	}
	.project-full-description__section {
    max-width: 700px;
	}

	.project-caracteristic__section {
			max-width: 218px;
		  padding-top: 70px;
	}
	
	.description--svg {
		position: absolute;
    right: 72px;
    top: -143px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
	.project--second-section {
		padding-right: 22px;
	}
	
	.project-caracteristic__section {
    max-width: 170px;
  }
	.project-full-description__section {
    max-width: 70%;
  }
}




.project-caracteristic__section ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.project-caracteristic__section ul li {
	padding-top: 17px;
	padding-bottom: 48px;
	font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
	border-top: 1px solid #272E3F;
}


@media screen and (max-width: 767px) {
	.project-caracteristic__section {
    margin-top: 210px;
		padding: 0 22px;
  }
	
	.project-caracteristic__section ul {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between
  }
	
	.project-caracteristic__section ul li {
		flex-basis: calc(50% - 11px);
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 22px;
		margin-bottom: 32px;
		padding-top: 12px;
		border-top: 1px solid #272E3F;
		padding-bottom: 0px;
  }
	
	.description--svg {
		display: none;
	}
}








@media screen and (min-width: 768px) {
	.project-full-description__section h2 {
    font-size: 23px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 28px;
  }
	
	.project-full-description__section p {
		font-size: 18px;
		letter-spacing: 0;
		line-height: 32px;
  }
}


@media screen and (max-width: 767px) {
	.project-full-description__section {
		padding: 0px 22px;
	}
	.project-full-description__section h2 {
    font-size: 19px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 27px;
  }
	.project-full-description__section p {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 30px;
  }
}






.project-accordion__section {
	padding: 0px 22px;
}

@media screen and (min-width: 1101px) {
   .project-accordion__section .accordion.accordion--white.js-accordion {
       margin-right: 100px;
   } 
}





.project-six-box__section .row-fluid {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.project-six-box__title {
    text-align: center;
}

.project-six-box__sub-title {
    text-align: center;
    margin: 0;
	  padding-top: 16px;
		padding-bottom: 56px;
}

@media screen and (min-width: 768px) {
	.project-six-box__section {
		margin-top: 130px;
		margin-bottom: 80px;
	}
	
	.project-six-box__title {
    font-size: 32px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 40px;
  }
	
	.project-six-box__sub-title {
		max-width: 788px;
		font-size: 19px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 27px;
	}
	
	.six-box__wrapper.first-row,
	.six-box__wrapper.second-row {
    margin: 0;
		padding: 0 22px;
  }
	.six-box__wrapper.first-row {
		padding-bottom: 64px;
	}
	
	.six-box__wrapper .single-box .box-title {
    display: flex;
    margin-bottom: 24px;
		 font-size: 19px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 32px;
	}
	.six-box__wrapper .single-box .box-title svg {
			margin-right: 16px
	}
	
	.six-box__wrapper .single-box .box-content {
		font-size: 18px;
		letter-spacing: 0;
		line-height: 32px;
	}
}

@media screen and (max-width: 767px) {
	.project-six-box__section {
		padding: 80px 22px;
	}
	
	.project-six-box__title {
    font-size: 23px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 31px;
  }
	
	.project-six-box__sub-title {
		font-size: 17px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 25px;
	}
	
	.six-box__wrapper.first-row .single-box,
	.six-box__wrapper.second-row .single-box:not(:last-of-type) {
    margin-bottom: 48px
  }
	
	.six-box__wrapper .single-box .box-title {
    display: flex;
    margin-bottom: 16px;
		font-size: 17px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 25px;
	}

	.six-box__wrapper .single-box .box-title svg {
			margin-right: 24px
	}
	
	.six-box__wrapper .single-box .box-content {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 30px;
	}
	
}






@media screen and (max-width: 767px) {
  .project-divider__section {
	  display: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 1318px) {
  hr.project-divider {
    margin-right: 22px;
}
}
@media screen and (min-width: 768px) {
  hr.project-divider {
    margin-left: 22px;
}
}








.project-middle-content__section {
		padding: 0px 22px;
	}

@media screen and (min-width: 768px) {
	.span12.project-middle-content {
    max-width: 700px;
		padding-right: 22px;
	}

	.project-middle-content__section .row-fluid {
			display: flex;
			justify-content: flex-end;
	}
}

@media screen and (max-width: 767px) {
	
	
	.project-middle-content__section h3 {
		font-size: 19px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 27px;
	}
	
	.project-middle-content__section p {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 30px
	}
}






@media screen and (min-width: 768px) {
	.project-video__section {
	  margin-top: 80px;
		margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
	.project-video__section {
		margin-top: 80px;
		margin-bottom: 40px;
  }
}






.project-bottom-content__section {
		padding: 0px 22px;
	}

@media screen and (min-width: 768px) and (max-width: 1039px) {
	.project-bottom-content {
		max-width: 700px;
	}
	.project-bottom-content__section .row-fluid {
			display: flex;
			justify-content: flex-end;
	}
}


@media screen and (min-width: 1040px) {
	.project-bottom-content__section {
		margin-bottom: 130px;
	}
	
	.span12.project-bottom-content {
    display: flex;
    justify-content: space-between;
}

.span12.project-bottom-content p {
    max-width: 700px;
    
}
}

@media screen and (max-width: 767px) {
	
	
	.project-bottom-content__section h3 {
		font-size: 19px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 27px;
	}
	
	.project-bottom-content__section p {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 30px
	}
}

