/*=========================================
    Variabili
=========================================*/

:root {
	--title-color: #040A0C;
	--joelle-color: #48AACC;
	--text-color: #03080A;
	--text-grey: #808080;
	--light-grey: #FAFAFA;
	--white: #fff;
	--border-color: #E2E2E2;

	--new-joelle-color: #03080A;
	--new-joelle-color-hover: #f0f;
	--new-joelle-color-light-hover: #ff0;


	--font-size-mobile: 16px;
	--font-size-desktop: 20px;
}

/* @font-face {
	font-family: 'silkabold';
	src: url('../fonts/silka-bold.eot');
	src: url('../fonts/silka-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/silka-bold.woff2') format('woff2'), url('../fonts/silka-bold.woff') format('woff'), url('../fonts/silka-bold.ttf') format('truetype'), url('../fonts/silka-bold.svg#silkabold') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'silkalight';
	src: url('../fonts/silka-light.eot');
	src: url('../fonts/silka-light.eot?#iefix') format('embedded-opentype'), url('../fonts/silka-light.woff2') format('woff2'), url('../fonts/silka-light.woff') format('woff'), url('../fonts/silka-light.ttf') format('truetype'), url('../fonts/silka-light.svg#silkalight') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'silkaregular';
	src: url('../fonts/silka-regular.eot');
	src: url('../fonts/silka-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/silka-regular.woff2') format('woff2'), url('../fonts/silka-regular.woff') format('woff'), url('../fonts/silka-regular.ttf') format('truetype'), url('../fonts/silka-regular.svg#silkaregular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'silkamedium';
	src: url('../fonts/silka-medium.eot');
	src: url('../fonts/silka-medium.eot?#iefix') format('embedded-opentype'), url('../fonts/silka-medium.woff2') format('woff2'), url('../fonts/silka-medium.woff') format('woff'), url('../fonts/silka-medium.ttf') format('truetype'), url('../fonts/silka-medium.svg#silkamedium') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
} */


@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Light.woff2') format('woff2'),
		url('../fonts/Gotham-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
		url('../fonts/Gotham-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Book.woff2') format('woff2'),
		url('../fonts/Gotham-Book.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
		url('../fonts/Gotham-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* 
@font-face {
	font-family: 'Gotham Rounded Book';
	src: url('../fonts/GothamRounded-Book.woff2') format('woff2'),
		url('../fonts/GothamRounded-Book.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Rounded';
	src: url('../fonts/GothamRounded-Bold.woff2') format('woff2'),
		url('../fonts/GothamRounded-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Rounded';
	src: url('../fonts/GothamRounded-Light.woff2') format('woff2'),
		url('../fonts/GothamRounded-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Rounded';
	src: url('../fonts/GothamRounded-Medium.woff2') format('woff2'),
		url('../fonts/GothamRounded-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
} */



/*=========================================
    Base
=========================================*/

html {
	width: 100%;
	height: 100%;
	font-size: var(--font-size-mobile);
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
	overflow-x: hidden;
	font-family: 'Helvetica', sans-serif;
}

body {
	font-family: 'Gotham', Helvetica, Arial, sans-serif;
	font-size: var(--font-size-mobile);
	font-weight: normal;
	line-height: 1.4;
	color: #03080A;
	width: 100%;
	position: relative;
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 300;
	line-height: 1.2
}


h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
	font-weight: 500;
}

p {
	margin: 0
}

a {
	color: #03080A;
	/*color: #fff;*/
	text-decoration: none;
	-webkit-transition: color 200ms ease 0s;
	transition: color 200ms ease 0s
}

a:focus {
	outline: none;
}

input:focus,
button:focus {
	outline: none;
}

img,
picture {
	display: block;
}

img:not([src]) {
	visibility: hidden;
}

img[data-src],
img[data-srcset] {
	display: block;
	min-height: 1px;
}

strong {

	/* font-family: 'Gotham'; */
	font-weight: 700;
}

@media (min-width: 992px) {
	body {
		font-size: var(--font-size-desktop);
	}
}

.button {
	font-size: 14px;
	font-family: 'Gotham';
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 17px;
	display: inline-block;
	padding: 16px 20px;
	border: 1px solid var(--new-joelle-color);
	border-radius: 4px;
	background-color: var(--new-joelle-color);
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	color: #fff;
	-webkit-transition: background-color 300ms ease 0s, border-color 300ms ease 0s, color 300ms ease 0s;
	transition: background-color 300ms ease 0s, border-color 300ms ease 0s, color 300ms ease 0s;
}

.no-touchevents .button:hover {
	/* background-color: #5DC0E2; */
	background-color: var(--white);
	color: var(--new-joelle-color);
}

.button.button-green {
	background-color: #91dc5a;
	border-color: #91dc5a;
}

.no-touchevents .button.button-green:hover {
	background-color: #ADF678;
	border-color: #ADF678;
}

.button.button-white {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--new-joelle-color);
}

.no-touchevents .button.button-white:hover {
	background-color: var(--new-joelle-color);
	border-color: var(--white);
	color: var(--white);
}

.button-outline {
	color: var(--new-joelle-color);
	font-size: 14px;
	font-family: 'Gotham';
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 17px;
	text-transform: uppercase;
	display: inline-block;
	padding: 15px 20px;
	border-radius: 4px;
	border: 1px solid var(--new-joelle-color);
	-webkit-transition: color 300ms ease 0s, background-color 300ms ease 0s, border-color 300ms ease 0s;
	transition: color 300ms ease 0s, background-color 300ms ease 0s, border-color 300ms ease 0s;
}

.button-outline.button-outline-white {
	color: var(--white);
	border: 1px solid var(--white);
}

.button-outline.button-outline-thin {
	padding-left: 20px;
	padding-right: 20px;
}

.no-touchevents .button-outline:hover {
	color: #fff;
	background-color: var(--new-joelle-color);
	border-color: var(--new-joelle-color);
}

.no-touchevents .button-outline.button-outline-white:hover {
	color: var(--new-joelle-color);
	background-color: var(--white);
	border-color: var(--white);
}

.img-full-size {
	width: 100%;
	height: auto;
}

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

.list-clean {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.scroll-link {
	position: relative;
	color: var(--new-joelle-color);
	font-size: 14px;
	font-family: 'Gotham';
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 17px;
	text-transform: uppercase;
}

.scroll-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--new-joelle-color);
	-webkit-transition: width 250ms ease 0s;
	transition: width 250ms ease 0s;
}

.no-touchevents .scroll-link:hover::before {
	width: 100%;
}

.scroll-link.green {
	color: #91dc5a;
}

.scroll-link.green::before {
	background-color: #91dc5a;
}

.scroll-button {
	color: var(--new-joelle-color);
	font-size: 14px;
	font-family: 'Gotham';
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 17px;
	text-transform: uppercase;
	display: inline-block;
	padding: 15px 25px;
	border: 1px solid var(--new-joelle-color);
}

.title-caps {
	font-size: 18px;
	letter-spacing: 6px;
	font-family: "Gotham";
	line-height: 1.75;
	text-transform: uppercase;
}

.title-caps .text-joelle {
	font-weight: 500;
}

.text-joelle {
	color: var(--new-joelle-color);
	letter-spacing: 7px;
}

.text-grey {
	color: var(--text-grey);
}

.text-white {
	color: var(--white);
}

@media (min-width: 992px) {

	.button,
	.button-outline {
		padding-left: 50px;
		padding-right: 50px;
	}

	.button-outline.button-outline-thin {
		padding-left: 30px;
		padding-right: 30px;
	}

	.title-caps {
		font-size: 22px;
	}
}

@media (min-width: 1200px) {

	.button,
	.button-outline {
		padding-left: 65px;
		padding-right: 65px;
	}
}




.site {
	padding-top: 85px;
	/*85px;*/
}

.site-header {
	height: 85px;
	background: #fff;
	width: 100%;
	z-index: 120;
	top: 0;
	left: 0;
	bottom: auto;
	position: fixed;
	box-shadow: 0 2px 64px 0 rgba(0, 0, 0, 0.05);
	-webkit-transition: transform 350ms ease 0s;
	transition: transform 350ms ease 0s;
}


.site-header.is-hidden:not(.menu-opened) {
	-webkit-transform: translateY(-101%);
	-ms-transform: translateY(-101%);
	transform: translateY(-101%);
}

.top-menu-container {
	height: 30px;
	border-bottom: 1px solid #eee;
	display: none;
}

.top-menu-link {
	font-size: 14px;
	color: var(--text-grey);
	display: flex;
	align-items: center;
	height: 30px;
}

.top-menu-link span {
	font-family: "Gotham";
	font-weight: 500;
	color: var(--new-joelle-color);
}

/*.site-header .container,
.site-header .row {
	height: 100%;
}*/

.main-menu-container {
	height: 84px;
	padding-top: 18px;
	padding-bottom: 18px;
}

.logo-header svg {
	display: block;
	width: 160px;
	height: auto;
}


.hamburger {
	position: relative;
	/* right: 0;
	top: 0; */
	height: 40px;
	width: 50px;
	font-size: 0;
	text-indent: -9999px;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border: none;
	cursor: pointer;
	margin-right: -15px;
}

.hamburger:focus {
	outline: none
}

.hamburger .line {
	display: block;
	position: absolute;
	top: 24px;
	left: 15px;
	right: 15px;
	height: 1px;
	background: var(--text-color);
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
}

.hamburger .line::before,
.hamburger .line::after {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--text-color);
	-webkit-transition: transform .2s ease-out;
	transition: transform .2s ease-out;
}

.hamburger .line::before {
	top: -6px;
	/*-webkit-transition-property: top, -webkit-transform, background-color;
    transition-property: top, transform, background-color*/
}

.hamburger .line::after {
	bottom: -6px;
	/* -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform*/
}

.no-touchevents .hamburger:hover .line::before {
	transform: translateY(6px)
}

.no-touchevents .hamburger:hover .line::after {
	transform: translateY(-6px)
}

.hamburger.open span {
	background: transparent;
}

.hamburger.open span::before {
	-webkit-transform: translateY(6px) rotate(45deg);
	transform: translateY(6px) rotate(45deg);
}

.hamburger.open span::after {
	-webkit-transform: translateY(-6px) rotate(-45deg);
	transform: translateY(-6px) rotate(-45deg);
}


@media (min-width: 992px) {
	.site {
		padding-top: 150px;
	}

	.site-header {
		height: 150px;

	}

	.top-menu-container {
		display: block;
	}

	.main-menu-container {
		height: 119px;
		padding-top: 34px;
		padding-bottom: 35px;
	}
}


@media (min-width: 1200px) {
	.site {
		padding-top: 160px;
	}

	.site-header {
		height: 160px;

	}

	.top-menu-container {
		height: 40px;
	}

	.top-menu-link {
		height: 40px;
	}

	.logo-header svg {
		width: 200px;
	}

	/* .main-menu-container {
		height: 149px;
		padding-top: 49px;
		padding-bottom: 50px;
	} */
}


.lang-label {
	font-size: 8px;
	text-transform: uppercase;
}

.lang-menu {
	position: relative;
	line-height: 1.1;
	text-align: center;
}

.lang-menu a {
	font-size: 16px;
	color: var(--text-grey);
}

.lang-menu .lang-option a:hover {
	color: var(--text-color);
}

.lang-option {
	position: absolute;
	top: 100%;
	left: 50%;
	min-width: 85px;
	padding: 15px 5px;
	background-color: #fff;
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: opacity .35s ease;
	transition: opacity .35s ease;
	will-change: opacity;
	z-index: 10;
}

.lang-menu:hover .lang-option {
	opacity: 1;
	pointer-events: auto;
}

.areariservata-wrapper a>span:first-child {
	font-size: 11px;
	display: block;
	line-height: 1.1;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--text-grey);
	font-family: 'Gotham';
	font-weight: 500;
}

.areariservata-wrapper a:hover>span:first-child {
	color: var(--new-joelle-color);
}

.areariservata-wrapper a>span:last-child {
	font-size: 11px;
	display: block;
	line-height: 1;
	color: var(--new-joelle-color);
	font-family: 'Gotham';
	font-weight: normal;
}

@media (max-width: 991px) {
	.areariservata-wrapper a {
		display: block;
		padding-top: 5px;
		padding-bottom: 15px;
	}
}

@media (min-width: 992px) {

	.desktop-menu .list-clean {
		font-size: 0;
	}

	.desktop-menu .desktop-menu-list>.menu-item,
	.desktop-menu #menu-menu-en>.menu-item {
		display: inline-flex;
		padding: 0 4px;
	}

	.desktop-menu .desktop-menu-list .mobile-back,
	.desktop-menu #menu-menu-en .mobile-back {
		display: none;
	}

	.desktop-menu .desktop-menu-list>.menu-item>a,
	.desktop-menu #menu-menu-en>.menu-item>a {
		position: relative;
		display: inline-block;
		color: var(--text-color);
		font-family: 'Gotham';
		font-weight: normal;
		font-size: 14px;
		letter-spacing: 0;
		padding: 15px 4px;
		text-transform: uppercase;
		text-decoration: none;
		border: 1px solid transparent;
		-webkit-transition: opacity .35s ease;
		transition: opacity .35s ease;
		will-change: opacity;
	}

	.desktop-menu .desktop-menu-list>.menu-item.megaMenuAnchor a,
	.desktop-menu #menu-menu-en>.menu-item.megaMenuAnchor a {
		padding-right: 12px;
	}

	.desktop-menu .desktop-menu-list>.menu-item.megaMenuAnchor>a::before,
	.desktop-menu #menu-menu-en>.menu-item.megaMenuAnchor>a:before {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -3px;
		width: 8px;
		height: 5px;
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.9686 3.48544e-05C7.50315 3.48544e-05 7.66044 0.336016 7.32022 0.750121L3.94047 4.86364C3.7894 5.04756 3.54764 5.0453 3.3997 4.85766L0.171588 0.762586C-0.160434 0.341442 0.004059 0 0.538328 0L6.9686 3.48544e-05Z' fill='black'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		transition: all 100ms ease 0s;
	}

	.desktop-menu .desktop-menu-list>.menu-item>a:hover,
	.desktop-menu #menu-menu-en>.menu-item>a:hover {
		opacity: 0.6;
	}

	/* .desktop-menu .desktop-menu-list>.menu-item.megaMenuAnchor>a:hover::before,
	.desktop-menu #menu-menu-en>.menu-item.megaMenuAnchor>a:hover::before, */
	.desktop-menu .desktop-menu-list>.menu-item.megaMenuAnchor.active_link>a::before,
	.desktop-menu #menu-menu-en>.menu-item.megaMenuAnchor.active_link>a::before {
		transform: rotate(180deg);
	}


	/* Submenu */

	/* .desktop-menu .menu-item.menu-item-has-children {
		position: relative;
	}

	#menu-main-menu>.menu-item>.sub-menu,
	#menu-menu-en>.menu-item>.sub-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		padding: 28px 20px 37px;
		background-color: #fff;
		box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
		opacity: 0;
		pointer-events: none;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-transition: opacity .35s ease, -webkit-transform .15s ease;
		transition: opacity .35s ease, transform .15s ease;
		will-change: transform, opacity;
		z-index: 10;
	}

	#menu-main-menu>.menu-item.menu-formula>.sub-menu,
	#menu-menu-en>.menu-item.menu-formula>.sub-menu {
		display: flex;
		padding-top: 38px;
		justify-content: space-around;
	}

	#menu-main-menu>.menu-item>.sub-menu>.menu-item,
	#menu-menu-en>.menu-item>.sub-menu>.menu-item {
		padding-left: 20px;
		padding-right: 20px;
	}

	#menu-main-menu>.menu-item.menu-item-has-children:hover>.sub-menu,
	#menu-menu-en>.menu-item.menu-item-has-children:hover>.sub-menu {
		opacity: 1;
		pointer-events: auto;
	}

	#menu-main-menu>.menu-item.menu-formula>.sub-menu>li>a,
	#menu-menu-en>.menu-item.menu-formula>.sub-menu>li>a {
		color: #999999;
		font-size: 12px;
		font-family: 'silkabold';
		letter-spacing: 1px;
		display: block;
		cursor: default;
		margin-bottom: 20px;
		text-transform: uppercase;
		white-space: nowrap;
	}

	#menu-main-menu>.menu-item>.sub-menu>li>ul,
	#menu-menu-en>.menu-item>.sub-menu>li>ul {
		margin: 0;
		padding: 0;
		list-style-type: none;
	}

	#menu-main-menu>.menu-item>.sub-menu>li>ul>.menu-item,
	#menu-menu-en>.menu-item>.sub-menu>li>ul>.menu-item {
		display: block;
		margin-right: 0;
		margin-left: 0;
		padding: 0;
		white-space: nowrap;
	}



	#menu-main-menu>.menu-item:not(.menu-formula)>.sub-menu .menu-item,
	#menu-menu-en>.menu-item:not(.menu-formula)>.sub-menu .menu-item {
		display: block;
		margin: 0 20px;
		padding: 0;
	}

	#menu-main-menu>.menu-item>.sub-menu .menu-item.mobile-back,
	#menu-menu-en>.menu-item>.sub-menu .menu-item.mobile-back {
		display: none;
	}

	#menu-main-menu>.menu-item>.sub-menu>.menu-item.mobile-label>a,
	#menu-menu-en>.menu-item>.sub-menu>.menu-item.mobile-label>a {
		color: #999999;
		font-size: 12px;
		font-family: 'silkabold';
		letter-spacing: 1px;
		display: block;
		cursor: default;
		margin-bottom: 20px;
		margin-top: 7px;
		text-transform: uppercase;
	}

	#menu-main-menu>.menu-item:not(.menu-formula)>.sub-menu>.menu-item.mobile-label,
	#menu-menu-en>.menu-item:not(.menu-formula)>.sub-menu>.menu-item.mobile-label {
		display: none;
	}


	#menu-main-menu>.menu-item>.sub-menu>li>ul>.menu-item a,
	#menu-menu-en>.menu-item>.sub-menu>li>ul>.menu-item a,
	#menu-main-menu>.menu-item:not(.menu-formula)>.sub-menu .menu-item:not(.mobile-label) a,
	#menu-menu-en>.menu-item:not(.menu-formula)>.sub-menu .menu-item:not(.mobile-label) a {
		padding-top: 9px;
		color: var(--text-color);
		font-size: 16px;
		font-family: 'silkalight';
		display: inline-block;
		white-space: nowrap;
		border-bottom: 1px solid transparent;
		-webkit-transition: border-color 200ms ease 0s;
		transition: border-color 200ms ease 0s;
	}

	#menu-main-menu>.menu-item>.sub-menu>li>ul>.menu-item a:hover,
	#menu-main-menu>.menu-item>.sub-menu>li>ul>.menu-item.current-menu-item a,
	#menu-main-menu>.menu-item:not(.menu-formula)>.sub-menu .menu-item a:hover,
	#menu-main-menu>.menu-item:not(.menu-formula)>.sub-menu .menu-item.current-menu-item a,
	#menu-menu-en>.menu-item>.sub-menu>li>ul>.menu-item a:hover,
	#menu-menu-en>.menu-item>.sub-menu>li>ul>.menu-item.current-menu-item a,
	#menu-menu-en>.menu-item:not(.menu-formula)>.sub-menu .menu-item a:hover,
	#menu-menu-en>.menu-item:not(.menu-formula)>.sub-menu .menu-item.current-menu-item a {
		border-bottom-color: var(--new-joelle-color);
	} */


	.main-menu-cta-button .button {
		letter-spacing: 0;
		padding-left: 5px;
		padding-right: 5px;
	}
}




@media (min-width: 1200px) {

	.main-menu-inner {
		padding-left: 10px;
	}

	.desktop-menu .desktop-menu-list>.menu-item,
	.desktop-menu #menu-menu-en>.menu-item {
		padding: 0 5px;
	}

	.desktop-menu .desktop-menu-list>.menu-item>a,
	.desktop-menu #menu-menu-en>.menu-item>a {
		padding-right: 5px;
		padding-left: 5px;
		letter-spacing: 2px;
	}

	/* .desktop-menu #menu-main-menu>.menu-item:last-child,
	.desktop-menu #menu-menu-en>.menu-item:last-child {
		margin-left: 14px;
		margin-right: 41px;
	}

	.desktop-menu #menu-main-menu>.menu-item:last-child>a,
	.desktop-menu #menu-menu-en>.menu-item:last-child>a {
		padding-left: 28px;
		padding-right: 28px;
	} */

	/* #menu-main-menu>.menu-item>.sub-menu,
	#menu-menu-en>.menu-item>.sub-menu {
		padding: 43px 27px 52px;
	}

	#menu-main-menu>.menu-item.menu-formula>.sub-menu,
	#menu-menu-en>.menu-item.menu-formula>.sub-menu {
		padding-top: 53px;
	}

	#menu-main-menu>.menu-item>.sub-menu>.menu-item,
	#menu-menu-en>.menu-item>.sub-menu>.menu-item {
		padding-left: 27px;
		padding-right: 27px;
	} */

	.lang-wrapper {
		margin-right: 21px;
	}

	.main-menu-cta-button .button {
		letter-spacing: 2px;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (min-width: 1360px) {

	.main-menu-inner {
		padding-left: 30px;
	}

	.desktop-menu .desktop-menu-list>.menu-item,
	.desktop-menu #menu-menu-en>.menu-item {
		padding: 0 12px;
	}

	.desktop-menu .desktop-menu-list>.menu-item>a,
	.desktop-menu #menu-menu-en>.menu-item>a {
		padding-right: 12px;
		padding-left: 12px;
	}

	.main-menu-cta-button .button {
		padding-left: 21px;
		padding-right: 21px;
	}
}





/*============================================
	Menu mobile
============================================*/

@media (max-width: 991px) {
	.mobile-menu-wrapper {
		position: fixed;
		top: 85px;
		left: 0;
		width: 100%;
		bottom: 0;
		z-index: 120;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: 0.4s -webkit-transform ease;
		transition: 0.4s -webkit-transform ease;
		overflow-x: hidden;
	}

	.mobile-menu-wrapper>div {
		height: 100%;
		background-color: #fff;
	}


	.mobile-menu-wrapper.menu-opened {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.mobile-menu-content {
		padding-top: 40px;
	}

	/* #mobile-menu>.menu-item {
		text-align: center;
	} */

	#mobile-menu>.menu-item>a {
		position: relative;

		color: var(--text-color);
		text-transform: uppercase;
		font-size: 14px;
		font-family: "Gotham";
		font-weight: 500;
		/* letter-spacing: 2px; */
		display: block;
		padding: 15px 60px 15px 30px;
		/* text-align: center; */


	}

	#mobile-menu>.menu-item>a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 30px;
		width: 30px;
		height: 18px;
		margin-top: -10px;
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='19' viewBox='0 0 30 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.7274 0.81707L20.5445 -2.28882e-05L30 9.45507L20.5445 18.9102L19.7274 18.0931L27.7819 10.039L0 10.039L0 8.87133L27.7819 8.87133L19.7274 0.81707Z' fill='%2303080A'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	/* #mobile-menu>.menu-item:last-child {
		margin-top: 10px;
	}

	#mobile-menu>.menu-item:last-child>a {
		border: 1px solid var(--new-joelle-color);
		padding: 17px 30px;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: var(--new-joelle-color);
		font-family: 'silkamedium';
		display: inline-block;
		border-radius: 4px;
		-webkit-transition: color .25s ease, background .25s ease;
		transition: color .25s ease, background .25s ease;
	} */


	/* First level submenu */
	#mobile-menu>.menu-item>.sub-menu {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 101;
		background-color: var(--light-grey);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: 0.4s -webkit-transform ease;
		transition: 0.4s -webkit-transform ease;
		overflow-x: hidden;
		padding: 60px 0 0;
		margin: 0;
		list-style-type: none;
	}

	#mobile-menu>.menu-item>.sub-menu.menu-opened {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	#mobile-menu>.menu-item>.sub-menu>.mobile-back {
		position: absolute;
		top: 0;
		left: 0;
		width: 80px;
		height: 70px;
		font-size: 0;
		background-size: 20px 13px;
		background-position: center;
		background-repeat: no-repeat;
		background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxM3B4IiB2aWV3Qm94PSIwIDAgMjAgMTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYyICg5MTM5MCkgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+bGVmdDwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJIT01FUEFHRS1FLU1FTlUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJNLS0tTWVudS1Gb3JtdWxhIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzYuMDAwMDAwLCAtMTE2LjAwMDAwMCkiIGZpbGw9IiMwMDAwMDAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIGlkPSJsZWZ0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi4wMDAwMDAsIDExNi4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xOC43MjY1NSw1Ljk4OTAwMTIgTDEuMzYwMzAyOTcsNS45ODkwMDEyIEw2LjY1NjczMjY0LDAuNjkyNTcxNTMxIEM2LjgxMjM4NDc0LDAuNTM2OTE5NDMyIDYuODEyMzg0NzQsMC4yODQ3ODMyMDIgNi42NTY3MzI2NCwwLjEyOTE2ODQ1NyBDNi41MDEwODA1NCwtMC4wMjY0ODM2NDI1IDYuMjQ4OTQ0MzEsLTAuMDI2NDgzNjQyNSA2LjA5MzMyOTU3LDAuMTI5MTY4NDU3IEwwLjExNjc2NzA4OSw2LjEwNTczMDkzIEMtMC4wMzg4ODUwMDk2LDYuMjYxMzgzMDMgLTAuMDM4ODg1MDA5Niw2LjUxMzUxOTI2IDAuMTE2NzY3MDg5LDYuNjY5MTM0MDEgTDYuMDkzMzI5NTcsMTIuNjQ1Njk2NSBDNi4xNzExMzY5NCwxMi43MjM1MDM5IDYuMjczMTEyMDQsMTIuNzYyNDI2MiA2LjM3NTA0OTc4LDEyLjc2MjQyNjIgQzYuNDc2OTg3NTIsMTIuNzYyNDI2MiA2LjU3ODkyNTI3LDEyLjcyMzUwMzkgNi42NTY3Njk5OSwxMi42NDU2OTY1IEM2LjgxMjQyMjA5LDEyLjQ5MDA0NDQgNi44MTI0MjIwOSwxMi4yMzc5MDgyIDYuNjU2NzY5OTksMTIuMDgyMjkzNCBMMS4zNjAzMDI5Nyw2Ljc4NTkwMTEgTDE4LjcyNjU4NzMsNi43ODU5MDExIEMxOC45NDY4MjM3LDYuNzg1OTAxMSAxOS4xMjUwMzczLDYuNjA3Njg3NDcgMTkuMTI1MDM3Myw2LjM4NzQ1MTE1IEMxOS4xMjUwMzczLDYuMTY3MjE0ODIgMTguOTQ2Nzg2Myw1Ljk4OTAwMTIgMTguNzI2NTUsNS45ODkwMDEyIFoiIGlkPSJQYXRoIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
	}



	#mobile-menu>.menu-item.menu-formula>.sub-menu>.menu-item:not(.mobile-back)>a {
		color: #999999;
		font-family: 'Gotham';
		font-size: 12px;
		letter-spacing: 1px;
		text-transform: uppercase;
	}

	#mobile-menu>.menu-item>.sub-menu>.menu-item:not(.mobile-back)>a,
	#mobile-menu>.menu-item>.sub-menu>.menu-item:not(.mobile-label)>a,
	#mobile-menu>.menu-item>.sub-menu>.menu-item>.sub-menu>.menu-item a {
		position: relative;
		padding: 11px 0;
		color: var(--text-color);
		font-size: 16px;
		font-family: 'Gotham';
		font-weight: normal;
		display: inline-block;
		border-bottom: 2px solid transparent;
	}

	#mobile-menu>.menu-item>.sub-menu>.menu-item:not(.mobile-back)>a::before,
	#mobile-menu>.menu-item>.sub-menu>.menu-item:not(.mobile-label)>a::before,
	#mobile-menu>.menu-item>.sub-menu>.menu-item>.sub-menu>.menu-item a::before {
		content: '';
		position: absolute;
		bottom: 8px;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: transparent;
	}

	#mobile-menu>.menu-item>.sub-menu>.menu-item.current-menu-item:not(.mobile-back)>a::before,
	#mobile-menu>.menu-item>.sub-menu>.menu-item.current-menu-item:not(.mobile-label)>a::before,
	#mobile-menu>.menu-item>.sub-menu>.menu-item>.sub-menu>.menu-item.current-menu-item a::before {
		background-color: var(--new-joelle-color);
	}


	#mobile-menu>.menu-item>.sub-menu>.menu-item.mobile-back>a {
		font-size: 0;
	}

	#mobile-menu>.menu-item>.sub-menu>.menu-item.mobile-label>a {
		color: #999999;
		font-family: 'Gotham';
		font-size: 12px;
		letter-spacing: 1px;
		text-transform: uppercase;
	}

	/* Second level submenu */
	#mobile-menu>.menu-item>.sub-menu>.menu-item>.sub-menu {
		/*padding: 10px 0;*/
		padding: 0px 0 30px;
		margin: 0;
		list-style-type: none;
	}

	#mobile-menu>.menu-item>.sub-menu>.menu-item>.sub-menu.menu-opened {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}



	.mobile-menu-cta-button {
		padding-left: 30px;
		padding-right: 30px;
		margin-top: 40px;
		padding-bottom: 30px;
	}

	.mobile-menu-cta-button .button {
		display: block;
		width: 100%;
	}


	.mobile-menu-footer {
		background-color: #fafafa;
		padding-top: 40px;
		text-align: center;
		padding-bottom: 10px;
	}

	.mobile-menu-social {
		list-style-type: none;
		padding: 0;
		margin: 16px 0 0;
	}

	.mobile-menu-social a {
		padding: 7px;
		display: inline-block;
	}

	.mobile-menu-social svg {
		display: block;
		width: 32px;
		height: 32px;
	}
}



/*=========================================
    Footer
=========================================*/

.site-footer {
	padding-top: 50px;
}

.site-footer-menu {
	max-width: 1180px;
	margin: 0 auto 20px;
}

.site-footer-nav {
	margin-bottom: 30px;
}

.site-footer-label {
	color: var(--text-grey);
	font-size: 12px;
	letter-spacing: 3px;
	line-height: 14px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.site-footer-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.site-footer-menu ul a {
	color: var(--new-joelle-color);
	font-family: 'Gotham';
	font-weight: normal;
	font-size: 15px;
	line-height: 18px;
	padding-top: 5px;
	padding-bottom: 5px;
	display: inline-block;
	transition: opacity 300ms ease 0s;
}

.no-touchevents .site-footer-menu ul a:hover {
	opacity: 0.65;
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 40px;
	padding-bottom: 80px;
}

.logo-footer svg {
	display: block;
	width: 160px;
	margin: 0 auto 15px;
}

.footer-bottom p {
	color: #444648;
	font-size: 12px;
	line-height: 20px;
}

.footer-menu-social {
	list-style-type: none;
	padding: 0;
	margin: 16px 0 0;
	line-height: 1;
}

.footer-menu-social li {
	block-size: 46px;
}

.footer-menu-social a {
	padding: 7px;
	display: inline-block;
	-webkit-transition: opacity 200ms ease 0s;
	transition: opacity 200ms ease 0s
}

.no-touchevents .footer-menu-social a:hover {
	opacity: 0.7;
}

.footer-menu-social svg {
	display: block;
	width: 32px;
	height: 32px;
}

.logo-footer-wella {
	width: 50px;
	margin: 10px auto 0;
}

@media (min-width: 992px) {
	.site-footer {
		padding-top: 110px;
	}

	.site-footer-menu {
		margin-bottom: 80px;
	}

	.logo-footer svg {
		margin: 0;
	}

	.footer-menu-social {
		margin-top: 0;
	}

	.logo-footer-wella {
		width: 50px;
		margin: 0;
	}
}



/*=========================================
    CTA
=========================================*/
.cta-container {
	position: relative;
	padding: 50px 25px 50px;
	overflow: hidden;
	background: var(--light-grey);
	border-radius: 15px;
}

.cta-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom center;
}

.cta-header {
	position: relative;
	z-index: 2;
	/*color: var(--text-color);*/
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}

.cta-header h3 {
	font-size: 32px;
	font-family: 'Gotham';
	font-weight: 500;
	margin-bottom: 20px;
}

.cta-form {
	position: relative;
	z-index: 2;
}

._form_element {
	position: relative;
	margin-bottom: 10px;
}

._form_element.form-ac-last-element {
	margin-bottom: 20px;
}

._form_element ._form-label {
	display: inline-block;
	position: absolute;
	top: 21px;
	left: 20px;
	opacity: 0.8;
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 17px;
	color: #4C4E5B;
	text-transform: uppercase;
	transform-origin: center left;
	-webkit-transition: transform 200ms ease 0s;
	transition: transform 200ms ease 0s
}

._form_element ._form-label.is-focused {
	transform: translateY(-20px) scale(.7);
}

._form_element input[type=text],
._form_element input[type=email],
._form_element input[type=tel],
._form_element select {
	font-size: 16px;
	height: 57px;
	width: 100%;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	background-color: var(--white);
	padding-left: 20px;
	padding-right: 20px;
}


._form_element select {
	-webkit-appearance: none;
	appearance: none;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjYxMnB4IiBoZWlnaHQ9IjYxMnB4IiB2aWV3Qm94PSIwIDAgNjEyIDYxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNjEyIDYxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGcgaWQ9Il94MzFfMF8zNF8iPg0KCQk8Zz4NCgkJCTxwYXRoIGQ9Ik02MDQuNTAxLDEzNC43ODJjLTkuOTk5LTEwLjA1LTI2LjIyMi0xMC4wNS0zNi4yMjEsMEwzMDYuMDE0LDQyMi41NThMNDMuNzIxLDEzNC43ODINCgkJCQljLTkuOTk5LTEwLjA1LTI2LjIyMy0xMC4wNS0zNi4yMjIsMHMtOS45OTksMjYuMzUsMCwzNi4zOTlsMjc5LjEwMywzMDYuMjQxYzUuMzMxLDUuMzU3LDEyLjQyMiw3LjY1MiwxOS4zODYsNy4yOTYNCgkJCQljNi45ODgsMC4zNTYsMTQuMDU1LTEuOTM5LDE5LjM4Ni03LjI5NmwyNzkuMTI4LTMwNi4yNjhDNjE0LjUsMTYxLjEwNiw2MTQuNSwxNDQuODMyLDYwNC41MDEsMTM0Ljc4MnoiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K);
	background-repeat: no-repeat;
	background-size: 12px;
	background-position: 98% center;
}

.form-ac-privacy-wrap {
	position: relative;
	margin-bottom: 30px;
	line-height: 1;
}

.form-ac-privacy {
	font-size: 12px;
	color: var(--white);
	/*color: var(--text-grey);*/
}

.form-ac-privacy-wrap.form-privacy-double {
	text-align: left;
}

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



._form ._error {
	display: block;
	font-size: 12px;
	z-index: 10000001;
}

/*._form ._error._above {
    padding-bottom: 4px;
}*/

._form ._error._below {
	padding-top: 4px;
}

._form ._error._above ._error-arrow {
	display: none;
}

._form ._error._below ._error-arrow {
	display: none;
}

._form ._error-inner {
	font-size: 11px;
	line-height: 1.1;
	color: #ff3f3f;
	text-align: left;
	text-decoration: none;
	/*margin-top: 5px;*/
}

._form ._error-inner._form_error {
	margin-bottom: 5px;
	text-align: left;
}

._form ._button-wrapper ._error-inner._form_error {
	position: static;
	text-align: center;
}

._form ._error-inner._no_arrow {
	margin-bottom: 10px;
}

._form ._error-arrow {
	position: absolute;
	width: 0;
	height: 0;
}

._form ._error-html {
	margin-bottom: 10px;
}

._form .form-ac-privacy-wrap ._error-inner {
	position: absolute;
	bottom: -25px;
	width: 320px;
	left: 50%;
	text-align: center;
	margin-left: -160px;
}

.recaptcha-container {
	display: flex;
	justify-content: center;
}

@media (min-width: 768px) {
	.cta-container {
		padding: 85px 100px 120px;
		border-radius: 30px;
	}

	.cta-header {
		margin-bottom: 60px;
	}

	.cta-header h3 {
		font-size: 48px;
		margin-bottom: 40px;
	}

	._form_element {
		margin-bottom: 20px;
	}

	._form_element.form-ac-last-element {
		margin-bottom: 30px;
	}

	.form-ac-privacy-wrap {
		text-align: center;
		margin-bottom: 40px;
	}

	.form-ac-privacy {
		color: var(--white);
	}
}

@media (min-width: 1200px) {
	.cta-container {
		padding: 135px 200px 170px;
	}

	.cta-header h3 {
		font-size: 60px;
	}
}











.list-checkmark {
	list-style-type: none;
	margin-bottom: 30px;
	padding: 0;
}

.list-checkmark li {
	padding-left: 18px;
	margin: 3px 0;
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: 0 7px;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23000' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5' /%3E%3C/svg%3E");
	/* background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTBweCIgaGVpZ2h0PSI4cHgiIHZpZXdCb3g9IjAgMCAxMCA4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA2MiAoOTEzOTApIC0gaHR0cHM6Ly9za2V0Y2guY29tIC0tPgogICAgPHRpdGxlPlBhdGg8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iRk9STVVMQS1KT0VMTEUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJDb25zdWxlbnphLVNhbG9uZS1GdXR1cm8iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC05MDguMDAwMDAwLCAtMzk3NS4wMDAwMDApIiBmaWxsPSIjNDhBQUNDIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyBpZD0iRkVBVC1CTE9DSy1SaWdodCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDM0MTguMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iQ29udGVudCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTAzLjAwMDAwMCwgMTE3LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik03LjMsNDQ3LjcgTDUuMyw0NDUuNyBDNC45LDQ0NS4zIDQuOSw0NDQuNyA1LjMsNDQ0LjMgQzUuNyw0NDMuOSA2LjMsNDQzLjkgNi43LDQ0NC4zIEw4LDQ0NS42IEwxMy4zLDQ0MC4zIEMxMy43LDQzOS45IDE0LjMsNDM5LjkgMTQuNyw0NDAuMyBDMTUuMSw0NDAuNyAxNS4xLDQ0MS4zIDE0LjcsNDQxLjcgTDguNyw0NDcuNyBDOC4zLDQ0OC4xIDcuNyw0NDguMSA3LjMsNDQ3LjcgWiIgaWQ9IlBhdGgiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+); */
}

.list-checkmark li strong {
	font-weight: 500;
}

@media (min-width: 992px) {
	.list-checkmark {
		margin-bottom: 50px;
	}

	.list-checkmark li {
		background-position: 0 9px;
		margin: 7px 0;
	}
}

@media (min-width: 1200px) {
	.list-checkmark {
		margin-bottom: 65px;
	}
}





.section-newsletter {
	background: var(--light-grey);
	padding-top: 50px;
	padding-bottom: 50px;
}

.newsletter-inner {
	text-align: center;
	max-width: 840px;
	margin: 0 auto;
}

.newsletter-header {
	text-align: center;
	margin-bottom: 25px;
}

.newsletter-label {
	color: var(--title-color);
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.newsletter-title {
	color: var(--title-color);
	font-size: 26px;
	margin-bottom: 30px;
	font-family: 'Gotham';
}

.newsletter-inner .button {
	width: 100%;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.section-newsletter {
		margin-top: 30px;
	}

	.newsletter-inner {
		text-align: left;
	}

	.newsletter-label {
		font-size: 12px;
		letter-spacing: 6px;
		margin-bottom: 15px;
	}

	.newsletter-title {
		font-size: 30px;
		margin-bottom: 0;
	}

	.newsletter-inner .button {
		padding: 19px;
		width: auto;
		margin-bottom: 0;
	}
}

@media (min-width: 992px) {
	.section-newsletter {
		padding-top: 70px;
		padding-bottom: 70px;
		/*margin-top: 135px;*/
	}

	.newsletter-title {
		font-size: 34px;
	}
}

@media (min-width: 1200px) {
	.section-newsletter {
		margin-top: 125px;
	}
}




/*=========================================
    Owl
=========================================*/
.owl-carousel .owl-item img {
	width: auto;
}

.owl-theme .owl-nav {
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
	position: absolute;
	top: 2px;
	width: 36px;
	height: 36px;
}

.owl-theme .owl-nav button.owl-prev {
	left: -10px;
}

.owl-theme .owl-nav button.owl-next {
	right: -10px;
}

.owl-theme .owl-nav [class*='owl-'] svg {
	display: block;
	width: 20px;
	height: 20px;
	margin: 8px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
	opacity: 0.7;
}

.owl-theme .owl-nav .disabled {
	opacity: 0.5;
	cursor: default;
}

.owl-theme .owl-dots {
	position: absolute;
	bottom: 0;
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	padding: 5px !important;
	*display: inline;
}

.owl-theme .owl-dots .owl-dot span {
	height: 8px;
	width: 8px;
	margin: 0;
	background-color: #E3E3E3;
	opacity: .75;
	display: block;
	border-radius: 50%;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot:hover span {
	opacity: 1;
}

.owl-theme .owl-dots .owl-dot.active span {
	background-color: var(--new-joelle-color);
	opacity: 1;
}

.owl-theme .owl-dots .owl-dot.active:hover span {
	opacity: 1;
}


/*=========================================
    Section testimonianze
=========================================*/
.section-testimonianze {
	padding: 50px 0 50px;
}

#owl-recensioni {
	padding-bottom: 30px;
}

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

.icon-recensioni {
	font-size: 90px;
	font-family: "Gotham";
	color: #ddd;
	display: block;
	text-align: center;
	margin-bottom: -25px;
	line-height: 1;
}

.text-recensioni {
	font-size: 16px;
	font-style: italic;
	margin-bottom: 30px;
}

.owl-carousel .owl-item .img-recensioni {
	width: 57px;
	margin: 0 auto 10px;
}

.name-recensioni {
	font-size: 16px;
	font-family: 'Gotham';
	font-weight: 500;
	margin-bottom: 3px;
}

.salone-recensioni {
	font-size: 16px;
	color: var(--text-grey);
	margin-bottom: 20px;
}

.time-recensioni {
	color: var(--new-joelle-color);
	font-family: 'Gotham';
	margin-left: 10px;
	font-size: 16px;
	line-height: 20px;
}

.logo-recensioni {
	width: 14px;
	height: auto;
	display: block;
}

@media (min-width: 768px) {
	.section-testimonianze {
		padding: 70px 0;
	}
}

@media (min-width: 992px) {
	.section-testimonianze {
		padding: 100px 0;
	}

	.text-recensioni {
		font-size: 18px;
	}
}

/*@media (min-width: 1200px) {
	.section-testimonianze {
		padding: 160px 0 200px;
	}
}*/


/**
 * Mega menu
 */

/*=========================================
    Mega Menu
=========================================*/

.mega-menu-container {
	-webkit-transition: .4s ease;
	transition: .4s ease;
}

.mega-menu-inner {
	position: absolute;
	width: 100%;
	background-color: white;
	border-top: 1px solid var(--light-grey);
	/* padding-top: 60px;
	padding-bottom: 60px; */
	z-index: 1000;
	box-shadow: 0 24px 20px 0 rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.mega-menu-container.visible>.mega-menu-inner {
	opacity: 1;
	visibility: visible;
}

.mega-menu-back {
	height: 71px;
	border-bottom: 1px solid #eee;
}

.mega-menu-back button {
	position: relative;
	appearance: none;
	box-shadow: none;
	border: none;
	height: 70px;
	padding-left: 65px;
	width: 100%;
	display: block;
	background: #fff;
	text-align: left;
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'Gotham';
	font-weight: 500;
}

.mega-menu-back button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 30px;
	width: 30px;
	height: 18px;
	margin-top: -10px;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='19' viewBox='0 0 30 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.7274 0.81707L20.5445 -2.28882e-05L30 9.45507L20.5445 18.9102L19.7274 18.0931L27.7819 10.039L0 10.039L0 8.87133L27.7819 8.87133L19.7274 0.81707Z' fill='%2303080A'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(180deg);
}



.mm-col-1-images {
	position: relative;

}

.mm-col-1-images::before {
	content: '';
	padding-bottom: 131%;
	display: block;
}

.mm-col-1-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.mm-col-1-img.active {
	opacity: 1;
}

.mm-col-1-label {
	text-transform: uppercase;
	font-size: 14px;
	font-family: "Gotham";
	font-weight: 500;
	margin-bottom: 30px;
}

.mm-col-1-title {
	font-size: 34px;
	font-family: "Gotham";
	font-weight: 500;
	margin-bottom: 20px;
}

.mm-col-1-text {
	font-size: 16px;
	color: var(--text-grey);
	margin-bottom: 30px;
}

.mm-col-1 .button-outline {
	padding-left: 15px;
	padding-right: 15px;
}

.mm-col-1-blog {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	/* flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	height: 100%; */
	margin-left: -8px;
}

.mm-col-1-blog li {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding-right: 15px;
}

.mm-col-1-blog-categories {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.mm-col-1-blog-categories .arrow {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 10px;
}

.mm-col-1-blog-categories .arrow span {
	display: block;
	height: 11px;
	width: 40px;
	transform: scaleX(0);
	transform-origin: 0% 50%;
	transition: transform 300ms ease;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='61' height='16' viewBox='0 0 61 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60.7071 8.70711C61.0976 8.31658 61.0976 7.68342 60.7071 7.29289L54.3431 0.928932C53.9526 0.538408 53.3195 0.538408 52.9289 0.928932C52.5384 1.31946 52.5384 1.95262 52.9289 2.34315L58.5858 8L52.9289 13.6569C52.5384 14.0474 52.5384 14.6805 52.9289 15.0711C53.3195 15.4616 53.9526 15.4616 54.3431 15.0711L60.7071 8.70711ZM0 9H60V7H0V9Z' fill='black'/%3E%3C/svg%3E");
	/* background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='155' height='16' viewBox='0 0 155 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M154.707 8.70711C155.098 8.31658 155.098 7.68342 154.707 7.29289L148.343 0.928932C147.953 0.538408 147.319 0.538408 146.929 0.928932C146.538 1.31946 146.538 1.95262 146.929 2.34315L152.586 8L146.929 13.6569C146.538 14.0474 146.538 14.6805 146.929 15.0711C147.319 15.4616 147.953 15.4616 148.343 15.0711L154.707 8.70711ZM0 9H154V7H0V9Z' fill='black'/%3E%3C/svg%3E"); */
}

.no-touchevents .mm-col-1-blog a:hover .mm-col-1-blog-categories .arrow span {
	/* width: 60px; */
	transform: scaleX(100%);
}

.mm-col-1-blog a {
	display: block;
	padding-top: 12px;
	padding-bottom: 12px;
	text-transform: uppercase;
	font-size: 14px;
	font-family: "Gotham";
	font-weight: 500;
	padding-left: 8px;
	-webkit-transition: background-color .3s ease;
	transition: background-color .3s ease;
}

.no-touchevents .mm-col-1-blog a:hover {
	background-color: #f2f2f2;
}


.mm-col-2-list {
	list-style-type: none;
	padding: 18px 0;
	margin: 0;
}

.mm-col-2-list a {
	padding: 15px 30px;
	display: block;
}

.mm-col-2-list .mm-col-2-item-title {
	font-size: 14px;
	font-family: "Gotham";
	font-weight: 500;
	text-transform: uppercase;
	color: var(--text-color);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.mm-col-2-list .mm-col-2-item-title .arrow {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 10px;
}

.mm-col-2-list .mm-col-2-item-title .arrow span {
	display: block;
	height: 16px;
	width: 60px;
	transform: scaleX(0);
	transform-origin: 0% 50%;
	transition: transform 300ms ease;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='61' height='16' viewBox='0 0 61 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60.7071 8.70711C61.0976 8.31658 61.0976 7.68342 60.7071 7.29289L54.3431 0.928932C53.9526 0.538408 53.3195 0.538408 52.9289 0.928932C52.5384 1.31946 52.5384 1.95262 52.9289 2.34315L58.5858 8L52.9289 13.6569C52.5384 14.0474 52.5384 14.6805 52.9289 15.0711C53.3195 15.4616 53.9526 15.4616 54.3431 15.0711L60.7071 8.70711ZM0 9H60V7H0V9Z' fill='black'/%3E%3C/svg%3E");
	/* background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='155' height='16' viewBox='0 0 155 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M154.707 8.70711C155.098 8.31658 155.098 7.68342 154.707 7.29289L148.343 0.928932C147.953 0.538408 147.319 0.538408 146.929 0.928932C146.538 1.31946 146.538 1.95262 146.929 2.34315L152.586 8L146.929 13.6569C146.538 14.0474 146.538 14.6805 146.929 15.0711C147.319 15.4616 147.953 15.4616 148.343 15.0711L154.707 8.70711ZM0 9H154V7H0V9Z' fill='black'/%3E%3C/svg%3E"); */
}

.mm-col-2-list .mm-col-2-item-title .text {
	flex: 0 0 auto;
	max-width: 100%;
}

.mm-col-2-list .mm-col-2-item-subtitle {
	font-size: 14px;
	font-family: "Gotham";
	font-weight: normal;
	color: var(--text-color);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	-webkit-transition: transform .3s ease;
	transition: transform .3s ease;
	display: none;
}

.mm-col-2-list .mm-col-2-item-subtitle .arrow {
	flex: 0 0 auto;
	max-width: 100%;
}

.mm-col-2-list .mm-col-2-item-subtitle .arrow span {
	display: block;
	height: 16px;
	width: 0;
	transition: all 300ms ease;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='155' height='16' viewBox='0 0 155 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M154.707 8.70711C155.098 8.31658 155.098 7.68342 154.707 7.29289L148.343 0.928932C147.953 0.538408 147.319 0.538408 146.929 0.928932C146.538 1.31946 146.538 1.95262 146.929 2.34315L152.586 8L146.929 13.6569C146.538 14.0474 146.538 14.6805 146.929 15.0711C147.319 15.4616 147.953 15.4616 148.343 15.0711L154.707 8.70711ZM0 9H154V7H0V9Z' fill='black'/%3E%3C/svg%3E");
}

.mm-col-2-list .mm-col-2-item-subtitle .sep {
	width: 0;
	transition: all 300ms ease;
}

.mm-col-2-list .mm-col-2-item-subtitle .text {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	font-weight: 300;
}

/* .mm-col-2-list .mm-col-2-item-subtitle .text {
	margin-left: 10px;
} */

.no-touchevents .mm-col-2-list a:hover {
	background-color: #f2f2f2;
}

/* .no-touchevents .mm-col-2-list a:hover .mm-col-2-item-subtitle .arrow span {
	width: 70px;
}

.no-touchevents .mm-col-2-list a:hover .mm-col-2-item-subtitle .sep {
	width: 10px;
} */


.no-touchevents .mm-col-2-list a:hover .mm-col-2-item-title .arrow span {
	/* width: 60px; */
	transform: scaleX(100%);
}


.mm-col-3-wrapper {
	color: var(--text-color);
	text-decoration: none;
}

.mm-col-3-label {
	text-transform: uppercase;
	font-size: 14px;
	font-family: "Gotham";
	font-weight: 500;
	margin-bottom: 30px;
}

.mm-col-3-img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.mm-col-3-title {
	font-size: 24px;
	font-family: "Gotham";
	font-weight: 500;
	margin-bottom: 10px;
}

.mm-col-3-text {
	font-size: 14px;
	font-family: "Gotham";
	font-weight: normal;
	margin-bottom: 20px;
}

.mm-col-3-link-label {
	font-size: 14px;
	color: var(--new-joelle-color);
}

.mm-col-3-review {
	display: none;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 10px;
}

.mm-col-3-review-small {
	width: 100%;
	display: block;
	height: auto;
	margin-bottom: 15px;
}

/* .mm-col-3-review>* {
	flex: 0 0 50%;
	max-width: 50%;
} */

.mm-col-3-review img {
	width: 100%;
	display: none;
	height: auto;
}


.mm-col-3-review-content p {
	font-size: 14px;
	font-family: "Gotham";
	font-weight: normal;
	margin-bottom: 15px;
}

.mm-col-3-review-item {
	background-color: #fff;
	padding-top: 10px;
	padding-left: 15px;
	margin-bottom: 3px;
	border-radius: 2px;
	padding-bottom: 15px;
}

.mm-col-3-review-item span:first-child {
	text-transform: uppercase;
	font-size: 16px;
	font-family: "Gotham";
	font-weight: 500;
	display: block;
}

.mm-col-3-review-item span:nth-child(2) {
	font-size: 36px;
	line-height: 1.1;
	display: block;
}

.mm-col-3-review-item span:nth-child(3) {
	text-transform: uppercase;
	font-size: 12px;
	display: block;
}



.mm-col-4-figure {
	position: relative;
	width: 100%;
	margin: 0 0 20px;
}

.mm-col-4-figure::before {
	content: '';
	display: block;
	padding-bottom: 56.25%;
}

.mm-col-4-img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mm-col-4-label {
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 10px;
	letter-spacing: 4px;
}

.mm-col-4-label a,
.mm-col-4-title a {
	color: inherit;
	text-decoration: none;
}


.mm-col-4-title {
	font-size: 21px;
	font-family: "Gotham";
	font-weight: 500;
	margin-bottom: 10px;
}

.mm-col-4-link-label {
	font-size: 16px;
	color: var(--new-joelle-color);
	/* text-decoration: underline; */
	position: relative;
}



.mm-col-4-link-label::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--new-joelle-color);
	-webkit-transition: width 250ms ease 0s;
	transition: width 250ms ease 0s;
}

.no-touchevents .mm-col-4-post-item>a:hover .mm-col-4-link-label::before {
	width: 100%;
}

@media (max-width: 991px) {
	.mega-menu-inner {
		height: calc(100vh - 85px);
		overflow: auto;
		background-color: #fafafa;
	}

	.mm-col-1-pro {
		position: relative;
		background-color: #fff;
		padding: 40px 30px 70px 30px;
	}

	.mm-col-1-pro::before {
		content: '';
		position: absolute;
		bottom: 20px;
		left: 30px;
		right: 30px;
		height: 1px;
		background-color: #eee;
	}

	.mm-col-1-pro .mm-col-1-label {
		display: none;
	}

	.mm-col-1-pro .mm-col-1-title {
		font-size: 26px;
	}

	.mm-col-2-list {
		background-color: #fff;
	}

	.mm-col-2-list a {
		position: relative;
		padding-right: 60px;
	}

	.mm-col-2-list a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 30px;
		width: 30px;
		height: 18px;
		margin-top: -10px;
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='19' viewBox='0 0 30 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.7274 0.81707L20.5445 -2.28882e-05L30 9.45507L20.5445 18.9102L19.7274 18.0931L27.7819 10.039L0 10.039L0 8.87133L27.7819 8.87133L19.7274 0.81707Z' fill='%2303080A'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	.mm-col-3-wrapper {
		display: block;
		background-color: #fafafa;
		padding: 40px 30px;
	}

	.mm-col-3:not(.mm-col-3-pro) .mm-col-3-label {
		display: none;
	}

	.mm-col-3-img {
		display: none;
	}

	.mm-col-1-blog {
		background-color: #fff;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.mm-col-1-blog a {
		display: block;
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 30px;
		padding-right: 30px;
	}

	.mm-col-4-posts {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.mm-col-4-post-item {
		padding-left: 30px;
		padding-right: 30px;
		margin-bottom: 20px;
	}

	.mm-col-4-post-item:last-child {
		margin-bottom: 0;
	}

	.mm-col-4-figure {
		display: none
	}
}


@media (min-width: 576px) {

	.mm-col-1-blog li {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 992px) {
	.mm-col-1 {
		width: 100%;
		flex: 0 0 25%;
		max-width: 25%;
		padding-left: 30px;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.mm-col-2 {
		width: 100%;
		flex: 0 0 50%;
		max-width: 50%;

		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.mm-col-2-list {
		padding-top: 0;
		padding-bottom: 0;
	}

	.mm-col-2-list a {
		padding: 15px;
		border-radius: 2px;
		-webkit-transition: background-color .3s ease;
		transition: background-color .3s ease;
	}

	.mm-col-2-list .mm-col-2-item-title {
		margin-bottom: 5px;
	}

	.mm-col-2-list .mm-col-2-item-subtitle {
		display: flex;
	}

	.mm-col-3 {
		background-color: #FAFAFA;
		width: 100%;
		flex: 0 0 25%;
		max-width: 25%;
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.mm-col-4 {
		background-color: #FAFAFA;
		width: 100%;
		flex: 0 0 75%;
		max-width: 75%;
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
		padding-top: 30px;
	}


	.mm-col-1-blog li {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}


	.mm-col-4-posts {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		margin-left: -10px;
		margin-right: -10px;
	}

	.mm-col-4-post-item {
		flex: 0 0 25%;
		max-width: 25%;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (min-width: 1200px) {
	.mm-col-1 {
		padding-left: 50px;
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.mm-col-1 .button-outline {
		padding-left: 30px;
		padding-right: 30px;
	}

	.mm-col-2 {
		padding-left: 50px;
		padding-right: 50px;
		padding-bottom: 50px;
		padding-top: 50px;
	}

	/* .no-touchevents .mm-col-2-list a:hover .mm-col-2-item-subtitle .arrow span {
		width: 150px;
	} */

	.mm-col-2-list a {
		padding: 25px 20px;
	}

	.mm-col-3 {
		padding-left: 50px;
		padding-right: 50px;
		padding-bottom: 50px;
		padding-top: 70px;
	}

	.mm-col-3-label {
		margin-bottom: 40px;
	}

	.mm-col-3-img {
		margin-bottom: 40px;
	}

	.mm-col-3-title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.mm-col-3-text {
		margin-bottom: 30px;
	}


	.mm-col-4 {
		padding-left: 50px;
		padding-right: 50px;
		padding-bottom: 50px;
		padding-top: 50px;
	}



	.mm-col-4-figure {
		margin-bottom: 40px;
	}

	.mm-col-4-label {
		letter-spacing: 6px;
		margin-bottom: 15px;
	}

	.mm-col-4-title {
		font-size: 26px;
		margin-bottom: 15px;
	}
}

@media (min-width: 1500px) {
	.mm-col-1 {
		flex: 0 0 450px;
		max-width: 450px;
	}

	.mm-col-1-blog {
		margin-left: -15px;
	}

	.mm-col-1-blog li {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
		padding-right: 30px;
	}

	.mm-col-1-blog-categories .arrow span {
		height: 16px;
		width: 60px;
	}

	.mm-col-1-blog a {
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
	}

	.mm-col-2 {
		flex: 0 0 calc(100% - 900px);
		max-width: calc(100% - 900px);
	}

	.mm-col-3 {

		flex: 0 0 450px;
		max-width: 450px;
	}


	.mm-col-4 {
		flex: 0 0 calc(100% - 450px);
		max-width: calc(100% - 450px);
	}

	.mm-col-3-review-small {
		display: none;
	}

	.mm-col-3-review {
		display: flex;
	}

	.mm-col-3-review>* {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.mm-col-3-review img {
		display: block;
	}

	.mm-col-3-review-content {
		padding-left: 10px;
	}

	.mm-col-3-review-content p {
		margin-left: 10px;
	}

	.mm-col-3-review-item span:nth-child(2) {
		font-size: 44px;
	}
}



.banner-affiliazioni-aperte {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 110;
}

.banner-affiliazioni-aperte a {
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--new-joelle-color);
	text-decoration: none;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.banner-affiliazioni-aperte .title {
	font-size: 12px;
	color: var(--white);
	font-family: 'Gotham';
	font-weight: normal;
	text-align: center;
}

.banner-affiliazioni-aperte .title span {
	font-family: 'Gotham';
	font-weight: 500;
}


@media (min-width: 992px) {
	.banner-affiliazioni-aperte .title {
		font-size: 14px;
	}
}