/* Fonts
================================*/
@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		url('../fonts/poppins-v20-latin/poppins-v20-latin-regular.woff2') format('woff2'),
		url('../fonts/poppins-v20-latin/poppins-v20-latin-regular.woff') format('woff');
}

@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: local(''),
		url('../fonts/poppins-v20-latin/poppins-v20-latin-500.woff2') format('woff2'),
		url('../fonts/poppins-v20-latin/poppins-v20-latin-500.woff') format('woff');
}

@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: local(''),
		url('../fonts/poppins-v20-latin/poppins-v20-latin-600.woff2') format('woff2'),
		url('../fonts/poppins-v20-latin/poppins-v20-latin-600.woff') format('woff');
}
/*
================================*/


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

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	background-color: #ffffff;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

figure {
	margin: 0;
}

img,
svg {
	vertical-align: middle;
}

table {
	caption-side: bottom;
	border-collapse: collapse;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
	border-width: 0;
	border-style: solid;
	border-color: inherit;
}

label {
	display: inline-block;
}

button {
	border-radius: 0;
}

button:focus:not(:focus-visible) {
	outline: 0;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

textarea {
	resize: vertical;
}

iframe {
	border: 0;
}

address {
	font-style: normal;
}

:active,
:focus {
	outline: 0;
}

[hidden] {
	display: none !important;
}
/*
================================*/


/* Global setting
================================*/
:root {
	--color-primary: #5b5c62;
	--color-secondary: #344257;
	--color-tertiary: #d49372;
	--color-quaternary: #212A37;
	--color-quinary: #f8f8f8;
	--color-black: #12171F;
	--color-link-primary: #212A37;
	--color-link-secondary: #d49372;
	--font-family-primary: 'Poppins', sans-serif;
	--font-family-secondary: 'Poppins', sans-serif;
	--font-size-primary: 0.9375rem;
	--font-weight-primary: 400;
	--font-weight-secondary: 500;
	--font-weight-tertiary: 600;
	--letter-spacing-primary: 0.025em;
	--letter-spacing-secondary: 0.025em;
	--transition-primary: 0.3s ease;
	--transition-secondary: 0.6s cubic-bezier(0.33,1,0.68,1);
}

body {
	color: var(--color-primary);
	font-family: var(--font-family-primary);
	font-size: var(--font-size-primary);
	font-weight: var(--font-weight-primary);
	line-height: 1.6;
	letter-spacing: var(--letter-spacing-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 1.25em 0 0.5em 0;
	color: var(--color-secondary);
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-secondary);
	text-transform: none;
	line-height: calc(1.6em + ((var(--font-size-primary) - 1em) / 2));
	letter-spacing: var(--letter-spacing-secondary);
}

h1 {
	font-size: clamp(1.4375rem, 2.166666666666667vw, 1.625rem); /* 23-26 */
}

h2 {
	font-size: clamp(1.3125rem, 2vw, 1.5rem); /* 21-24 */
}

h3 {
	font-size: clamp(1.21875rem, 1.833333333333333vw, 1.375rem); /* 19.5-22 */
}

h4 {
	font-size: clamp(1.09375rem, 1.666666666666667vw, 1.25rem); /* 17.5-20 */
}

h5 {
	font-size: clamp(1rem, 1.5vw, 1.125rem); /* 16-18 */
}

h6 {
	font-size: clamp(0.875rem, 1.5vw, 1rem); /* 14-16 */
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
	margin-bottom: 0;
}

p,
ul,
ol,
dl,
address {
	margin: 0 0 0.9375rem 0;
}

ul,
ol {
	padding-left: 1.875rem;
}

	ul ul,
	ol ol,
	ul ol,
	ol ul {
		margin-top: 0.9375rem;
	}

dd {
	margin: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
address:last-child {
	margin-bottom: 0;
}

blockquote {
	margin: 1.25rem 0;
	border-left: 3px solid var(--color-tertiary);
	padding-left: 1.875rem;
    font-style: italic;
}

blockquote:first-child {
	margin-top: 0;
}

blockquote:last-child {
	margin-bottom: 0;
}

	blockquote cite {
		font-weight: var(--font-weight-secondary);
	}

strong,
b {
	color: var(--color-secondary);
	font-weight: var(--font-weight-secondary);
}

h1 strong,
h1 b,
h2 strong,
h2 b,
h3 strong,
h3 b,
h4 strong,
h4 b,
h5 strong,
h5 b,
h6 strong,
h6 b {
	font-weight: var(--font-weight-tertiary);
}

a {
	color: var(--color-link-primary);
	text-decoration: underline;
	transition: color var(--transition-primary);
}

a strong {
	color: var(--color-link-primary);
	transition: color var(--transition-primary);
}

a:hover,
a:focus,
a:hover strong,
a:focus strong {
	color: var(--color-link-secondary);
}

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

hr {
	height: 1px;
	border: 0;
	background-color: #efefef;
	margin-top: 1.875rem;
	margin-bottom: 1.875rem;
}

::-moz-selection {
    color: #ffffff;
    background-color: var(--color-tertiary);
}

::selection {
    color: #ffffff;
    background-color: var(--color-tertiary);
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.7;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 0.7;
}

::placeholder {
	color: inherit;
	opacity: 0.7;
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.medium {
	font-weight: 500;
}

.semi-bold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

@media (min-width: 2000px) {
	.container-fluid {
		max-width: 2000px;
		margin-right: auto;
		margin-left: auto;
	}
}
/*
================================*/


/* Global style
================================*/

/* Title
================*/
.title-1 {
	font-size: clamp(1.75rem, 2.666666666666667vw, 2rem);   /* 28-32 */
	text-transform: uppercase;
}

.title-2 {
	font-size: clamp(1.5625rem, 2.333333333333333vw, 1.75rem);  /* 25-28 */
	text-transform: uppercase;
}

.title-3 {
	font-size: clamp(1.4375rem, 2.083333333333333vw, 1.5625rem); /* 23-25 */
	text-transform: uppercase;
}

.title-4 {
	font-size: clamp(1.25rem, 1.833333333333333vw, 1.375rem); /* 20-22 */
}
/*
================*/

/* Text
================*/
.text-italic {
	font-style: italic;
}

.text-lowercase {
    text-transform: lowercase;
}

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

.text-capitalize {
    text-transform: capitalize;
}

.text-underline {
    text-decoration: underline;
}

.text-1 {
	font-size: clamp(1.125rem, 1.666666666666667vw, 1.25rem); /* 18-20 */
}

.text-2 {
	font-size: clamp(1.0625rem, 1.5vw, 1.125rem); /* 17-18 */
}
/*
================*/

/* Button
================*/
.button-1,
.button-2,
.button-3 {
	display: inline-block;
	border-width: 2px;
	border-style: solid;
	padding: 0.625rem 2.75rem;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: var(--font-weight-secondary);
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: var(--letter-spacing-primary);
	cursor: pointer;
	transition: all var(--transition-primary);
}

.button-1 {
	border-color: var(--color-tertiary);
	background-color: var(--color-tertiary);
	color: #ffffff;
}

.button-1:hover,
.button-1:focus {
	border-color: var(--color-secondary);
	background-color: var(--color-secondary);
	color: #ffffff;
	text-decoration: none;
}

.button-2 {
	border-color: var(--color-secondary);
	background-color: var(--color-secondary);
	color: #ffffff;
}

.button-2:hover,
.button-2:focus {
	border-color: var(--color-tertiary);
	background-color: var(--color-tertiary);
	color: #ffffff;
	text-decoration: none;
}

.button-3 {
	border-color: #ffffff;
	background-color: #ffffff;
	color: var(--color-secondary);
}

.button-3:hover,
.button-3:focus {
	border-color: var(--color-tertiary);
	background-color: var(--color-tertiary);
	color: #ffffff;
	text-decoration: none;
}
/*
================*/

/* Border
================*/
.border {
	border: 1px solid #e5e5e5;
}

.border-t {
	border-top: 1px solid #e5e5e5;
}

.border-b {
	border-bottom: 1px solid #e5e5e5;
}
/*
================*/

/* Background color
================*/
.bg-color-white {
	background-color: #ffffff;
}

.bg-color-black {
	background-color: var(--color-black);
}

.bg-color-secondary {
	background-color: var(--color-secondary);
}

.bg-color-tertiary {
	background-color: var(--color-tertiary);
}

.bg-color-quaternary {
	background-color: var(--color-quaternary);
}

.bg-color-quinary {
	background-color: var(--color-quinary);
}
/*
================*/

/* Color
================*/
.white {
	color: #ffffff;
}

a.white {
	color: #ffffff;
}

a.white:hover {
	text-decoration: none;
}

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

.primary {
	color: var(--color-primary);
}

.secondary {
	color: var(--color-secondary);
}

.tertiary {
	color: var(--color-tertiary);
}

a.tertiary {
	color: var(--color-tertiary);
}

a.tertiary:hover {
	color: #ffffff;
}
/*
================*/

/* Link
================*/
.link-2 {
	color: var(--color-primary);
	text-decoration: none;
}

.link-2:hover {
	color: var(--color-link-primary);
}
/*
================*/

/* List
================*/
.list > li + li {
	margin-top: 0.75rem;
}
/*
================*/

/* More
================*/
/*
================*/

/* Figure hover
================*/
.figure-hover {
	position: relative;
	overflow: hidden;
}

	.figure-hover > a {
		display: block;
		position: relative;
		text-decoration: none;
	}

	.figure-hover > a::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(255,255,255,0.5);
		z-index: 1;
		opacity: 0;
		transition: all var(--transition-secondary);
	}

	.figure-hover > a:hover::before {
		opacity: 1;
	}

		.figure-hover > a > img {
			transform: scale(1.025);
			transition: transform var(--transition-secondary);
		}

		.figure-hover > a:hover > img {
			transform: scale(1.025) translateX(1%);
		}

.transform-none {
	transform: none !important;
}
/*
================*/

/* Overlay
================*/
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(33,42,55,0.9);
	z-index: 1000;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s cubic-bezier(0.77,0,0.175,1), visibility 0s 0.7s;
}

.overlay.open {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.7s cubic-bezier(0.77,0,0.175,1), visibility 0s 0s;
}
/*
================*/

/* Panel
================*/
.panel {
	position: fixed;
	top: 0;
	bottom: 0;
	left: -90%;
	width: 90%;
	background-color: #ffffff;
	overflow-y: auto;
	z-index: 1000;
	visibility: hidden;
	transition: left 0.7s cubic-bezier(0.77,0,0.175,1), visibility 0s 0.7s;
}

.panel.open {
	left: 0;
	visibility: visible;
	transition: left 0.7s cubic-bezier(0.77,0,0.175,1), visibility 0s 0s;
}

	.panel-close {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
		height: 4.375rem;
		border-bottom: 1px solid #e5e5e5;
		padding: 0 1.875rem;
		cursor: pointer;
	}

		.panel-close button {
			display: inline-block;
			width: 1.875rem;
			height: 1.875rem;
			border-radius: 50%;
			border: none;
			padding: 0;
			background-color: transparent;
			text-align: center;
			color: var(--color-secondary);
			font-family: 'icomoon';
			font-size: 1rem;
			font-weight: normal;
			text-decoration: none;
			line-height: 1.875rem;
			cursor: pointer;
			transition: all var(--transition-primary);
		}

		.panel-close button:hover {
			color: var(--color-tertiary);
		}

		.panel-close button::before {
			content: "\b095";
		}

	.panel-element {
		padding: 0 1.875rem;
	}

		.panel-plus {
			display: flex;
			justify-content: center;
			align-items: center;
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			width: 1.875rem;
			border: none;
			padding: 0;
			background-color: transparent;
			text-align: center;
			color: var(--color-secondary);
			font-family: 'icomoon';
			font-size: 0.875rem;
			font-weight: normal;
			cursor: pointer;
			transition: color var(--transition-primary);
		}

		.panel-plus:hover {
			color: var(--color-tertiary);
		}

		.panel-plus::after {
			content: "\b076";
		}

@media (min-width: 400px) {
	.panel {
		left: -75%;
		width: 75%;
	}
}

@media (min-width: 576px) {
	.panel {
		left: -450px;
		width: 450px;
	}
}
/*
================*/

/* Screen reader text
================*/
.screen-reader-text {
	width: 1px;
	height: 1px;
	position: absolute;
	clip: rect(1px,1px,1px,1px);
	clip-path: inset(50%);
	border: 0;
	margin: -1px;
	padding: 0;
	word-wrap: normal !important;
	overflow: hidden;
}
/*
================*/

/* Masonry
================*/
.masonry-image {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.25rem;
}

	.masonry-image .image-item > a {
		display: block;
		position: relative;
		padding: 62.5% 0; /* 4.5 */
		text-decoration: none;
		overflow: hidden;
	}

		.masonry-image .image-img {
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
		}

			.masonry-image .image-img img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				transform: scale(1.025);
				transition: transform var(--transition-secondary);
			}

			.masonry-image .image-item:hover .image-img img {
				transform: scale(1.025) translateX(1%);
			}

	.masonry-image .image-caption {
		position: absolute;
		right: 1.25rem;
		bottom: 1.25rem;
		left: 1.25rem;
		z-index: 2;
	}

		.masonry-image .image-caption > div {
			padding: 0.9375rem 1.25rem;
			background-color: #ffffff;
			transition: transform var(--transition-secondary);
		}

		.masonry-image .image-item:hover .image-caption > div {
			transform: translateX(-1%);
		}

			.masonry-image .image-caption h2 {
				margin: 0 0 0.25em 0;
				color: var(--color-secondary);
				font-size: clamp(1.125rem, 1.666666666666667vw, 1.25rem);  /* 18-20 */
			}

			.masonry-image .image-caption p {
				color: var(--color-secondary);
				font-size: 0.75rem;
				text-transform: uppercase;
				transition: color var(--transition-primary);
			}

			.masonry-image .image-item:hover .image-caption p {
				color: var(--color-tertiary);
			}

@media (min-width: 420px) {
	.masonry-image .image-caption > div {
		display: inline-block;
		min-width: 60%;
	}
}

@media (min-width: 576px) {
	.masonry-image {
		grid-template-columns: repeat(2, 1fr);
	}

		.masonry-image .image-item:nth-child(2n+4) {
			margin-top: -25%;
		}

			.masonry-image .image-item:nth-child(1) > a,
			.masonry-image .image-item:nth-last-child(1) > a {
				padding: 75% 0; /* 2.3 */
			}

			.masonry-image .image-caption > div {
					min-width: 80%;
				}
}

@media (min-width: 768px) {
	.masonry-image {
		gap: 1.875rem;
	}

		.masonry-image .image-caption {
			right: 1.875rem;
			bottom: 1.875rem;
			left: 1.875rem;
		}

			.masonry-image .image-caption > div {
				padding: 1.25rem 1.875rem;
			}
}

@media (min-width: 992px) {
	.masonry-image {
		grid-template-columns: repeat(3, 1fr);
	}

		.masonry-image .image-item:nth-child(2n+4) {
			margin-top: 0;
		}

		.masonry-image .image-item:nth-child(3n+5) {
			margin-top: -25%;
		}

			.masonry-image .image-item:nth-last-child(1) > a {
				padding: 62.5% 0; /* 4.5 */
			}

			.masonry-image .image-item:nth-child(3) > a,
			.masonry-image .image-item:nth-last-child(2) > a {
				padding: 75% 0; /* 2.3 */
			}
}
/*
================*/

/* Wp
================*/
.wpcf7-form .inputs br {
	display: none;
}

.wpcf7-form label {
	display: block;
	width: 100%;
	margin: 0 0 0.375rem 0;
	color: var(--color-secondary);
	font-size: inherit;
	font-weight: var(--font-weight-secondary)
}

.wpcf7-form input[type="date"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="password"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="text"],
.wpcf7-form select,
.wpcf7-form textarea {
	display: block;
	width: 100%;
	border: 1px solid #e5e5e5;
	padding: 0 0.9375rem;
	background-color: #ffffff;
	color: inherit;
	font-size: inherit;
}

.wpcf7-form input[type="date"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="file"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="password"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="text"],
.wpcf7-form select {
	height: 2.5rem;
}

.wpcf7-form select {
	padding-right: 2.375rem;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='1024' viewBox='0 0 640 1024' fill='%23333333'%3E%3Cpath d='M303 695.6l-296-293.6c-9.4-9.4-9.4-24.6 0-34l39.6-39.6c9.4-9.4 24.6-9.4 34 0l239.4 237 239.4-237c9.4-9.4 24.6-9.4 34 0l39.6 39.6c9.4 9.4 9.4 24.6 0 34l-296 293.6c-9.4 9.4-24.6 9.4-34 0z'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center right 0.9375rem;
	background-size: 0.5rem auto;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.wpcf7-form textarea {
	padding: 0.625rem 0.9375rem;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0 0.375rem 0 0;
}

.wpcf7-form .wpcf7-not-valid-tip {
	margin-top: 0.375rem;
	font-size: 0.8125em;
}
/*
================*/
/*
================================*/


/* Admin bar
================================*/
#wpadminbar {
    position: absolute !important;
	z-index: 500 !important;
}

#wp-admin-bar-new-content {
	display: none;
}

@media (min-width: 782px) {
	#wpadminbar #wp-admin-bar-my-account > a {
		display: flex;
		align-items: center;
	}

		#wpadminbar #wp-admin-bar-my-account > a > .display-name {
			max-width: 100px;
			margin-left: 4px;
			text-overflow: ellipsis;
			overflow: hidden;
			white-space: nowrap;
		}

		#wpadminbar #wp-admin-bar-my-account.with-avatar > a > img {
			margin-top: 0;
		}
}
/*
================================*/


/* Header area
================================*/

/* Header
========================*/
.header {
	background-color: #ffffff;
}

.header.fixed {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 500;
	transform: translateY(-100%);
}

.header.fixed.scroll-down {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

.header.fixed.scroll-up {
	box-shadow: 0 1px 0 0 #e5e5e5;
	transform: translateY(0);
	transition: box-shadow 0s ease-in-out 0s, transform 0.3s ease-in-out;
}

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

/* Header logo
================*/
.header-logo a {
	display: flex;
	height: 4.375rem;
	text-decoration: none;
}

	.header-logo img {
		width: auto;
		height: 1.5rem;
		margin: auto 0;
	}

@media (min-width: 992px) {
	.header-logo a {
		height: 5rem;
	}
}

@media (min-width: 1200px) {
	.header-logo img {
		height: 1.875rem;
	}
}
/*
================*/

/* Header nav
================*/
.header-nav {
	display: none;
}

@media (min-width: 992px) {
	.header-nav {
		display: block;
	}

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

		.header-nav li {
			position: relative;
		}

		.header-nav a {
			display: inline-block;
			position: relative;
			text-decoration: none;
		}

		.header-nav > ul {
			display: flex;
			flex-wrap: wrap;
			margin-right: -1.25rem;
		}

			.header-nav > ul > li::before {
				content: "";
				position: absolute;
				right: 0;
				bottom: 25%;
				left: 0;
				width: 0;
				height: 2px;
				margin-right: auto;
				margin-left: auto;
				background-color: var(--color-secondary);
				transition: width var(--transition-primary);
			}

			.header-nav > ul > li.current-menu-item::before,
			.header-nav > ul > li.current_page_item::before,
			.header-nav > ul > li.current-menu-ancestor::before,
			.header-nav > ul > li.current-page-ancestor::before,
			.header-nav > ul > li.current-post-ancestor::before,
			.header-nav > ul > li.current_page_parent::before {
				width: 1.25rem;
			}

			.header-nav > ul > li:hover::before {
				width: 1.25rem;
			}

				.header-nav > ul > li > a {
					padding: 0 1.25rem;
					color: var(--color-secondary);
					font-size: 0.875rem;
					font-weight: var(--font-weight-secondary);
					text-transform: uppercase;
					line-height: 5rem;
					transition: color var(--transition-primary);
				}

				.header-nav > ul > li.menu-item-has-children > a::after {
					content: "\b089";
					margin-left: 0.375rem;
					font-family: 'icomoon';
					font-size: 0.75rem;
					font-weight: normal;
					font-style: normal;
					line-height: 1;
				}

		/* Livello 2 e 3 */
		.header-nav > ul > li > ul.sub-menu,
		.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu {
			position: absolute;
			width: 12.5rem;
			border: 1px solid #e5e5e5;
			padding: 0.9375rem 0;
			background-color: #ffffff;
			z-index: 50;
			opacity: 0;
			visibility: hidden;
			transition: all var(--transition-primary);
		}

			.header-nav > ul > li > ul.sub-menu > li + li,
			.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li + li {
				margin-top: 1px;
			}

				.header-nav > ul > li > ul.sub-menu > li > a,
				.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li > a {
					display: block;
					padding: 0.625rem 1.25rem;
					background-color: rgba(0,0,0,0);
					color: var(--color-primary);
					font-size: 0.8125rem;
					font-weight: var(--font-weight-secondary);
					text-transform: uppercase;
					transition: all var(--transition-primary);
				}

				.header-nav > ul > li > ul.sub-menu > li.current-menu-item > a,
				.header-nav > ul > li > ul.sub-menu > li.current_page_item > a,
				.header-nav > ul > li > ul.sub-menu > li.current-menu-ancestor > a,
				.header-nav > ul > li > ul.sub-menu > li.current-page-ancestor > a,
				.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li.current-menu-item > a,
				.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li.current_page_item > a,
				.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li.current-menu-ancestor > a,
				.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li.current-page-ancestor > a {
					background-color: var(--color-secondary);
					color: #ffffff;
				}

				.header-nav > ul > li > ul.sub-menu > li:hover > a,
				.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li:hover > a {
					background-color: var(--color-secondary);
					color: #ffffff;
				}
		/* */

		/* Livello 2 */
		.header-nav > ul > li > ul.sub-menu {
			top: 100%;
			left: calc(50% - 6.25rem);
			transform: translateY(0.9375rem);
			transition-delay: 0s;
		}

		.header-nav > ul > li:hover > ul.sub-menu {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
			transition-delay: 0.3s;
		}

			.header-nav > ul > li > ul.sub-menu > li.menu-item-has-children > a {
				padding-right: 2.125rem;
			}

			.header-nav > ul > li > ul.sub-menu > li.menu-item-has-children > a::after {
				content: "\b088";
				position: absolute;
				top: 50%;
				right: 1.25rem;
				font-family: 'icomoon';
				font-size: 0.75rem;
				font-weight: normal;
				font-style: normal;
				transform: translateY(-50%);
			}
		/* */

		/* Livello 3 */
		.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu {
			top: 0;
			right: 100%;
			transform: translateX(0.9375rem);
		}

		.header-nav > ul > li > ul.sub-menu > li:hover > ul.sub-menu {
			opacity: 1;
			visibility: visible;
			transform: translateX(0);
		}
		/* */

		/* Livello 4 */
		.header-nav > ul > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
			display: none;
		}
		/* */
}
/*
================*/

/* Header nav fixed toggle
================*/
.header-nav-fixed-toggle {
	display: flex;
	width: 2.5rem;
	height: 4.375rem;
	margin-right: -0.5625rem;
	padding: 0 0.5625rem;
	cursor: pointer;
}

	.header-nav-fixed-toggle button {
		position: relative;
		width: 100%;
		height: 30px;
		border: none;
		margin: auto 0;
		padding: 0;
		background-color: transparent;
		cursor: pointer;
	}

		.header-nav-fixed-toggle span {
			display: block;
			position: absolute;
			left: 0;
			width: 100%;
			height: 2px;
			background-color: var(--color-secondary);
			transition: all var(--transition-primary);
		}

		.header-nav-fixed-toggle span:nth-child(1) {
			top: 6px;
		}

		.header-nav-fixed-toggle span:nth-child(2) {
			top: 14px;
			right: 0;
			left: auto;
			width: 75%;
		}

		.header-nav-fixed-toggle span:nth-child(3) {
			top: 22px;
		}

		.header-nav-fixed-toggle.active span:nth-child(2) {
			width: 100%;
		}

		.header-nav-fixed-toggle:hover span:nth-child(2) {
			width: 100%;
		}

@media (min-width: 992px) {
	.header-nav-fixed-toggle {
		display: none;
	}
}
/*
================*/
/*
========================*/
/*
================================*/


/* Hero area
================================*/
.hero {
	position: relative;
	min-height: 18.75rem;
	background-color: var(--color-secondary);
}

	.hero-img {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.hero-img::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: url('../../images/logo-icon-white.svg') center no-repeat;
		background-size: auto 80%;
		opacity: 0.15;
	}

		.hero-img img {
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

@media (min-width: 992px) {
	.hero {
		padding: 15% 0;
	}
}
/*
================================*/


/* Headline area
================================*/
.headline-area {
	position: relative;
	background: url('../../images/headline/headline-default.webp') center center no-repeat;
	background-size: cover;
}

.headline-area::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255,255,255,0.8);
}

	.headline > div {
		position: relative;
		z-index: 1;
	}

	.headline {
		padding-top: clamp(2.5rem, 4.166666666666667vw, 3.125rem); /* 40-50 */
		padding-bottom: clamp(2.5rem, 4.166666666666667vw, 3.125rem); /* 40-50 */
		text-align: center;
	}

		.headline-title h1,
		.headline-title h2 {
			display: inline-block;
			padding: 0 0.25em;
			background-color: rgba(255,255,255,0.5);
			font-size: clamp(1.5625rem, 2.666666666666667vw, 2rem);   /* 25-32 */
			font-weight: var(--font-weight-secondary);
			text-transform: uppercase;
		}
/*
================================*/


/* Content area
================================*/

/* Content
================*/
.content {
	padding: 3.75rem 0;
}

.content-home-page .content,
.content-html-page .content {
	padding: 0;
}
/*
================*/

/* Content archive
================*/
/*
================*/

/* Content single
================*/
/*
================*/

/* Sidebar
================*/
.sidebar {
	padding: 2.5rem 1.875rem;
	background-color: var(--color-quinary);
}

	.sidebar-widget + .sidebar-widget {
		margin-top: 1.875rem;
	}

		.sidebar-widget h2 {
			margin-bottom: 0.625em;
			color: var(--color-secondary);
			font-size: 1.375rem;
			text-transform: uppercase;
		}

		.sidebar-widget ul {
			margin: 0;
			padding: 0;
			list-style: none;
		}

			.sidebar-widget ul > li > a {
				display: inline-block;
				position: relative;
				padding: 0.375rem 0 0.375rem 1rem;
				color: var(--color-secondary);
				text-decoration: none;
				word-break: break-word;
			}

			.sidebar-widget ul > li > a:hover {
				color: var(--color-tertiary);
			}

			.sidebar-widget ul > li > a[aria-current='page'] {
				color: var(--color-tertiary);
				font-weight: var(--font-weight-secondary);
			}

			.sidebar-widget ul > li > a::before {
				content: "";
				position: absolute;
				top: 0.9375rem;
				left: 0;
				width: 0.375rem;
				height:  0.375rem;
				border-radius: 50%;
				background-color: var(--color-tertiary);
			}

			.sidebar-widget ul ul {
				margin-left: 1.125rem;
			}
/*
================*/

/* Pagination
================*/
.navigation.pagination {
	display: table;
	margin: 3.75rem auto 0 auto;
}

	.navigation.pagination .nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.625rem;
	}

		.navigation.pagination .nav-links .page-numbers {
			width: 2.5rem;
			height: 2.5rem;
			border-radius: 50%;
			border: none;
			background-color: var(--color-quinary);
			text-align: center;
			color: var(--color-secondary);
			font-size: 0.875rem;
			font-weight: normal;
			text-decoration: none;
			line-height: 2.5rem;
			letter-spacing: 0;
			transition: all var(--transition-primary);
		}

		.navigation.pagination .nav-links .page-numbers.current,
		.navigation.pagination .nav-links .page-numbers:hover {
			background-color: var(--color-tertiary);
			color: #ffffff;
		}

		.navigation.pagination .nav-links .prev.page-numbers,
		.navigation.pagination .nav-links .next.page-numbers {
			font-size: 0;
		}

		.navigation.pagination .nav-links .prev.page-numbers::before,
		.navigation.pagination .nav-links .next.page-numbers::before {
			margin: auto;
			font-family: 'icomoon';
			font-size: 0.75rem;
			font-weight: normal;
		}

		.navigation.pagination .nav-links .prev.page-numbers::before {
			content: "\b090";
		}

		.navigation.pagination .nav-links .next.page-numbers::before {
			content: "\b088";
		}
/*
================*/
/*
================================*/


/* Blog, archive, single, sidebar, pagination
================================*/

/* Global
================*/
/*
================*/

/* Blog, archive
================*/
/*
================*/

/* Single
================*/
/*
================*/

/* Sidebar
================*/
/*
================*/

/* Pagination
================*/
/*
================*/
/*
================================*/


/* Post type
================================*/

/* Global
================*/
.grid-product .product-title {
	font-size: clamp(1rem, 1.5vw, 1.125rem);  /* 16-18 */
}

.grid-product .product-title,
.grid-product .product-excerpt {
	display: none;
}
/*
================*/

/* Archive, taxonomy
================*/
/*
================*/

/* Single
================*/
/*
================*/

/* Sidebar
================*/
/*
================*/

/* Pagination
================*/
/*
================*/
/*
================================*/


/* Home
================================*/
/*
================================*/


/* Altre pagine
================================*/
body.page-id-3 .content {
	overflow-wrap: break-word;
}
/*
================================*/


/* Footer area
================================*/
.footer-title {
	margin-bottom: 0.5em;
	color: #ffffff;
	font-size: 1.25rem;
	text-transform: uppercase;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 0.9375rem;
}

	.footer-social > li > a {
		display: block;
		width: 2.125rem;
		height: 2.125rem;
		border-radius: 50%;
		padding: 0;
		background-color: rgba(255,255,255,0.1);
		text-align: center;
		color: #ffffff;
		font-size: 0.8125rem;
		line-height: 2.125rem;
		transition: all var(--transition-primary);
	}

	.footer-social > li > a:hover {
		background-color: var(--color-tertiary);
	}

.footer-list ul > li > a,
.footer-list ul > li > span {
	padding: 0.375rem 0;
	color: #ffffff;
	word-break: break-word;
}

.footer-list ul > li > span {
	display: inline-block;
}

.footer-list ul > li > a:hover {
	color: var(--color-tertiary);
}

.footer-list ul > li.address > span::before,
.footer-list ul > li.phone > a::before,
.footer-list ul > li.email > a::before {
	margin-right: 0.75rem;
	color: #ffffff;
	font-family: 'icomoon';
	font-weight: normal;
	font-style: normal;
}

.footer-list ul > li.address > span::before {
	content: "\b001";
}

.footer-list ul > li.phone > a::before {
	content: "\b002";
}

.footer-list ul > li.email > a::before {
	content: "\b006";
}

@media (min-width: 576px) {
	.footer-social {
		justify-content: flex-start;
	}

	.footer-list ul > li.address,
	.footer-list ul > li.phone,
	.footer-list ul > li.email {
		position: relative;
	}

		.footer-list ul > li.address > span,
		.footer-list ul > li.phone > a,
		.footer-list ul > li.email > a {
			margin-left: 1.375rem;
		}

		.footer-list ul > li.address > span::before,
		.footer-list ul > li.phone > a::before,
		.footer-list ul > li.email > a::before {
			position: absolute;
			top: 0;
			left: 0;
			width: 1.375rem;
			margin-right: 0;
			padding: 0.375rem 0;
		}
}

.footer {
	position: relative;
	padding: 3.75rem 0;
	background: url('../../images/footer.webp') center center no-repeat;
	background-size: cover;
	color: #ffffff;
	font-size: 0.875rem;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(33,42,55,0.9);
}

	.footer > div {
		position: relative;
		z-index: 1;
	}

.footer-2 {
	padding: 3.75rem 0;
	background-color: var(--color-secondary);
	background-size: cover;
	color: #ffffff;
	font-size: 0.875rem;
}

	.footer-2 ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.footer-2 a {
		display: inline-block;
		text-decoration: none;
	}

	.footer-2 p {
		padding: 0.375rem 0;
	}

.footer-3 {
	padding: 1.875rem 0;
	font-size: 0.875rem;
}

	.footer-3 .footer-col-2 a {
		display: inline-block;
		font-weight: var(--font-weight-secondary);
		text-decoration: none;
	}
/*
================================*/


/* Nav fixed area
================================*/
.nav-fixed {
	display: none;
}

	.nav-fixed-panel-element ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

		.nav-fixed-panel-element ul > li {
			position: relative;
		}

		.nav-fixed-panel-element ul > li + li {
			border-top: 1px solid #e5e5e5;
		}

			.nav-fixed-panel-element ul > li > a {
				display: block;
				margin-right: 2.5rem;
				padding: 1.125rem 0;
				color: var(--color-secondary);
				font-size: 0.87rem;
				font-weight: var(--font-weight-secondary);
				text-transform: uppercase;
				text-decoration: none;
			}

			.nav-fixed-panel-element ul > li.current-menu-item > a,
			.nav-fixed-panel-element ul > li.current_page_item > a,
			.nav-fixed-panel-element ul > li.current-menu-ancestor > a,
			.nav-fixed-panel-element ul > li.current-page-ancestor > a,
			.nav-fixed-panel-element ul > li.current-post-ancestor > a,
			.nav-fixed-panel-element ul > li.current_page_parent > a {
				color: var(--color-tertiary);
			}

			.nav-fixed-panel-element ul > li > a:hover {
				color: var(--color-tertiary);
			}
/*
================================*/


/* Cookie banner area
================================*/
.cookie-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
	padding: 2.5rem 0;
    background-color: rgba(33,42,55,0.97);
    color: #ffffff;
    font-size: 0.8125rem;
    z-index: 1500;
    opacity: 1;
    transition: opacity 1s ease;
}

.cookie-banner-area.invisible .cookie-banner {
	opacity: 0;
}

	.cookie-banner-text {
		text-align: justify;
	}

		.cookie-banner-text a {
			color: #ffffff;
			text-decoration: underline;
		}

		.cookie-banner-text a:hover {
			color: var(--color-tertiary);
		}

	.cookie-banner-button {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 1.875rem;
		margin: 1.875rem 0 0 0;
	}

		.cookie-banner-button a {
			display: inline-block;
			font-size: 0.75rem;
			font-weight: var(--font-weight-secondary);
			text-transform: uppercase;
			text-decoration: none;
			letter-spacing: var(--letter-spacing-primary);
			white-space: nowrap;
		}

		.cookie-banner-button-deny {
			color: #ffffff;
		}

		.cookie-banner-button-deny:hover {
			color: var(--color-tertiary);
		}

		.cookie-banner-button-accept {
			border: 2px solid #ffffff;
			padding: 0.4rem 1.875rem;
			background-color: transparent;
			color: #ffffff;
			transition: all var(--transition-primary);
		}

		.cookie-banner-button-accept:hover,
		.cookie-banner-button-accept:focus {
			border-color: var(--color-tertiary);
			background-color: var(--color-tertiary);
			color: #ffffff;
		}

@media (min-width: 348px) {
	.cookie-banner > div {
		padding-right: 1.875rem;
		padding-left: 1.875rem;
	}
}

@media (min-width: 768px) {
	.cookie-banner-wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

		.cookie-banner-text {
			flex-grow: 1;
			flex-basis: 0;
		}

		.cookie-banner-button {
			margin: 0 0 0 3.75rem;
		}
}

@media (min-width: 1200px) {
	.cookie-banner > div {
		padding-right: 2.5rem;
		padding-left: 2.5rem;
	}
}
/*
================================*/