/*
	Theme Name: Digitalia
	Theme URI: https://www.alburnasrl.com/
	Description: 
	Version: 1.4.3
	Author: Jacopo Zane
	Author URI: https://www.digitalia.srl
	Tags: HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
}
@font-face {
	font-family: 'Satoshi';
	src: url('font/Satoshi-Regular.ttf') format('opentype');
}
@font-face {
	font-family: 'Satoshi-Bold';
	src: url('font/Satoshi-Bold.ttf') format('opentype');
}
:root {
	--primary: #1F1F1F;
	--secondary: #907367;
	--tertiary: #3B443F;
	--quaternary: #F7F7F7;
	--white: #fff;
	--black: #1F1F1F;

	--border-radius: 10px;

	--font-primary: "Satoshi", sans-serif;
	--font-secondary: "Satoshi", sans-serif;

	--item-margin: 20px;
	--item-margin-xs: 10px;

	--space-xxs: 10px;
	--space-xs: 20px;
	--space-sm: 40px;
	--space-md: 60px;
	--space-lg: 80px;
	--space-xl: 100px;
	--space-xxl: 160px;
}

body {
	font-family: var(--font-secondary);
	background-color: #fff;
	-webkit-appearance: none;
	color: var(--primary);
}
body.navmenu_open {
	overflow-y: hidden;
}

/* clear */
.clear:before,
.clear:after {
    display:table;
}

aside {
	max-width: 100%;
}

.clear::after {
    clear:both;
}
.clear {
    *zoom:1;
}
.grecaptcha-badge {
	display: none;
}
img {
	max-width:100%;
	width: 100%;
	height: auto;
}
picture {
	display: grid;
}
.ios .parallax {
	background-attachment: scroll !important;
}
a {
	text-decoration:none;
	cursor: pointer;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}
ul {
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6,p {
	padding: 0;
	margin: 0;
	font-weight: normal;
}
h1 {
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}
strong, b {

}
.divider {
	
}
.pulsante {
	
}
.pulsante:hover {
	
}
.blocco {
	position: relative;
	overflow: hidden;
	display: flex;
}
.text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: center;
	flex-direction: column;
	background-color: rgba(0, 0, 0, 0.3);
	padding-left: 5%;
}
.container { min-width: 1100px; }

.subcontainer { width: 100%;
	padding-left: 5%;
	padding-right: 5%;
	margin: 0 auto; }

/* Flex */

.flex { display: flex; }

.flexcenter { align-items: center;
	justify-content: center; }

.row { flex-direction: row; }

.column { flex-direction: column; }

.row-reverse { flex-direction: row-reverse; }

.column-reverse { flex-direction: column-reverse; }

.wrap { flex-wrap: wrap; }

.space-between { justify-content: space-between; }

.justifycenter { justify-content: center; }

.alignstart { align-items: flex-start; }

.aligncenter { align-items: center; }

.alignend { align-items: flex-end; }

.justifystart { justify-content: flex-start; }

.justifyend { justify-content: flex-end; }

/* Img */

.obj-cover { object-fit: cover; }

.obj-contain { object-fit: contain; }

/* Margin */

.m0a { margin: 0 auto; }

.mla { margin-left: auto; }

.mra { margin-right: auto; }

.mta { margin-top: auto; }

.mba { margin-bottom: auto; }

/* Width */

.wh8 { width: 8.33333%; }

.wh16 { width: 16.66666%; }

.wh20 { width: 20%; }

.wh25 { width: 25%; }

.wh33 { width: 33.33333%; }

.wh40 { width: 40%; }

.wh50 { width: 50%; }

.wh60 { width: 60%; }

.wh66 { width: 66.66666%; }

.wh75 { width: 75%; }

.wh83 { width: 83.33333%; }

.wh90 { width: 90%; }

.wh100 { width: 100%; }

/* Font */

.regular { font-weight: 400; }

.medium { font-weight: 500; }

.semibold { font-weight: 600; }

.bold { font-weight: 700; }

.underline { text-decoration: underline; }

.italic { font-style: italic; }

.uppercase { text-transform: uppercase; }

.center { text-align: center; }

.right { text-align: right; }

.left { text-align: left; }

/* Heights */

.vh33 { height: 33.33333vh; }

.vh40 { height: 40vh; }

.vh50 { height: 50vh; }

.vh60 { height: 60vh; }

.vh66 { height: 66.66666vh; }

.vh80 { height: 80vh; }

.vh100 { height: 100vh; }

.h100 { height: 100%; }

.h50 { height: 50%; }

/* Divisori */

.space-xxs { padding: var(--space-xxs); }

.space-xs { padding: var(--space-xs); }

.space-sm { padding: var(--space-sm); }

.space-md, .space { padding: var(--space-md); }

.space-lg { padding: var(--space-lg); }

.space-xl { padding: var(--space-xl); }

.space-xxl { padding: var(--space-xxl); }

.p-xxs { padding: var(--space-xxs); }

.p-xs { padding: var(--space-xs); }

.p-sm { padding: var(--space-sm); }

.p-md { padding: var(--space-md); }

.p-lg { padding: var(--space-lg); }

.p-xl { padding: var(--space-xl); }

.p-xxl { padding: var(--space-xxl); }

.py-xxs { padding-top: var(--space-xxs);
	padding-bottom: var(--space-xxs); }

.py-xs { padding-top: var(--space-xs);
	padding-bottom: var(--space-xs); }

.py-sm { padding-top: var(--space-sm);
	padding-bottom: var(--space-sm); }

.py-md { padding-top: var(--space-md);
	padding-bottom: var(--space-md); }

.py-lg { padding-top: var(--space-lg);
	padding-bottom: var(--space-lg); }

.py-xl { padding-top: var(--space-xl);
	padding-bottom: var(--space-xl); }

.py-xxl { padding-top: var(--space-xxl);
	padding-bottom: var(--space-xxl); }

.px-xs {
	padding-right: var(--space-xs);
	padding-left: var(--space-xs);
}

.px-md {
	padding-right: var(--space-md);
	padding-left: var(--space-md);
}

.pb-xxs { padding-bottom: var(--space-xxs); }

.pb-xs { padding-bottom: var(--space-xs); }

.pb-sm { padding-bottom: var(--space-sm); }

.pb-md { padding-bottom: var(--space-md); }

.pb-lg { padding-bottom: var(--space-lg); }

.pb-xl { padding-bottom: var(--space-xl); }

.pb-xxl { padding-bottom: var(--space-xxl); }

.pt-xxs { padding-top: var(--space-xxs); }

.pt-xs { padding-top: var(--space-xs); }

.pt-sm { padding-top: var(--space-sm); }

.pt-md { padding-top: var(--space-md); }

.pt-lg { padding-top: var(--space-lg); }

.pt-xl { padding-top: var(--space-xl); }

.pt-xxl { padding-top: var(--space-xxl); }

/* Position */

.p-rel { position: relative; }

.p-abs { position: absolute; }

/* Other */

.padding-right-5 { padding-right: 5%; }

.padding-left-5 { padding-left: 5%; }

.padding-left { padding-left: 50px; }

.padding-right { padding-right: 50px; }

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

.padding-bottom { padding-bottom: 50px; }

.bg-center { background-position: center;
	background-size: cover; }

.overflow-hidden { overflow: hidden; }

.border-radius-50 { border-radius: 50%; }

.border-radius { border-radius: var(--border-radius); }

.grecaptcha-badge { visibility: hidden !important; }

.item-margin-bottom {
	margin-bottom: var(--item-margin);
}

.item-margin-bottom-xs {
	margin-bottom: var(--item-margin-xs);
}

/* Grid */

.grid {
	display: grid;
	gap: 40px;
}

.col-2 { grid-template-columns: repeat(2, 1fr); }

.col-3 { grid-template-columns: repeat(3, 1fr); }

.col-4 { grid-template-columns: repeat(4, 1fr); }

.col-5 { grid-template-columns: repeat(5, 1fr); }

.col-6 { grid-template-columns: repeat(6, 1fr); }

.gap-0 { gap: 0; }

.gap-xxs { gap: var(--space-xxs); }

.gap-xs { gap: var(--space-xs); }

.gap-sm { gap: var(--space-sm); }

.gap-md { gap: var(--space-md); }

.gap-lg { gap: var(--space-lg); }

.gap-xl { gap: var(--space-xl); }

.gap-xxl { gap: var(--space-xxl); }

/* Titoli e Paragrafi */

h1 {
	text-transform: unset !important;
	font-family: var(--font-primary);
	font-size: clamp(1.8rem, 3vw, 3.8rem);
	line-height: clamp(1.8rem, 3.2vw, 4rem);
}

h2 {
	text-transform: unset !important;
	font-family: var(--font-primary);
	font-size: clamp(1.8rem, 3vw, 3.8rem);
	line-height: clamp(1.8rem, 3.2vw, 4rem);
}

h3 {
	text-transform: unset !important;
	font-family: var(--font-primary);
	font-size: clamp(1.2rem, 3vw, 2rem);
	line-height: clamp(1.2rem, 3vw, 2rem);
}

p {
	font-family: var(--font-secondary);
	font-weight: 300;
	font-size: clamp(0.8rem, 1.1vw, 0.9rem);
	line-height: clamp(1.5rem, 2vw, 1.4rem);
}

ul li {
	font-size: clamp(0.8rem, 1.1vw, 0.9rem);
	line-height: clamp(1.2rem, 1.6vw, 1.4rem);
}

p.pre-title {
	font-family: var(--font-primary);
	text-transform: uppercase;
	font-size: clamp(0.8rem, 1.1vw, 0.9rem);;
	letter-spacing: 0.05em;
}

a { font-size: clamp(0.8rem, 1.1vw, 0.9rem); }

strong {
	font-weight: 700;
}

/* Colors */

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

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

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

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

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

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

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

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

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

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

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

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

/* Pulsanti */

.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(0.7rem, 1.2vw, 0.8rem);
	font-weight: 600;
	border-radius: var(--border-radius);
	padding: 12px 20px;
	transition: all 0.4s;
	width: max-content;
	height: max-content;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--secondary);
	color: var(--black);
	cursor: pointer;
	border: 1px solid transparent;
}

.button:hover {
	background: var(--primary);
	color: var(--white);
}

/* Overlay */

.overlay {
	top: 0;
	background: rgba(0,0,0,0.5);
	bottom: 0;
	left: 0;
	z-index: 10;
	right: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s linear;
	margin: auto; }

.overlay-sm { background: rgba(0,0,0,0.3); }

.overlay-lg { background: rgba(0,0,0,0.7); }

/* Responsive */

.none-desktop { display: none; }

.none-sm { display: flex; }

/* Vimeo */

.vimeo-wrapper { position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.vimeo-wrapper iframe { position: absolute;
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Img fit */

.img-fit {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 100%;
}

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

/* Img Hover */

.squared {
	aspect-ratio: 1;
}

.img-hover-container {
	overflow: hidden;
}

.img-hover-container img {
	transform: scale(1);
	transition: all 0.6s ease;
}

.img-hover-container:hover img {
	transform: scale(1.03);
}

.img-hover-container:hover .button {
	color: var(--white);
	background: transparent;
	border: 1px solid var(--secondary);
}

/* Elements */

.slick-track { height: 100%; }

.slick-track div { height: 100%; }

.sticky-wrapper {
    height: 100%;
}

.sticky-section {
	height: 100vh;
	flex-grow: 1;
	align-self: start;
	bottom: auto;
	overflow: auto;
	position: sticky;
	top: 0;
	left: 0;
}

#selected-works {
	position: relative;
	z-index: 1;
}

.works-section {
	grid-template-columns: 1fr 2fr;
	gap: var(--space-sm);
}

.works-section h3 { text-decoration: underline; }

/* Servizi */

.works-container {
	width: 100%;
	display: flex;
	align-items: center;
}

.works-container li {
	position: relative;
	z-index: 10;
	width: 100%;
	margin-bottom: 10px;
}

.works-container li:last-child { margin-bottom: 0; }

.works-container li .works-link {
	width: 100%;
	display: flex;
	z-index: 10;
}

/* Stato normale */
.works-container h3 {
	font-weight: 400 !important;
	text-decoration: underline;
	line-height: clamp(3rem, 5vw, 4rem);
	z-index: 10;
	display: inline-block;
	position: relative;
	transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover fuori immagine */

.works-container li .works-link > img {
	z-index: 10;
}

.hover-reveal {
	position: absolute;
	width: 65%;
	height: auto;
	top: 50%;
	pointer-events: none;
	overflow: hidden;
	opacity: 0;
	transition: all .5s ease-out;
}

.hover-reveal img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	transition: all .4s ease-out;
}

/* go up button */
.up-button {
	position: fixed;
	bottom: 5%;
	right: 2%;
	display: none;
	z-index: 2;
	background-color: #333;
	color: #fff;
	font-size: 20px;
	padding: 5px 10px;
	border: none;
}
.scroll .up-button {
	display: block;
}

/* bottone filtro */
.btn-filtro {
	display: inline-block;
	margin-right: 5px;
	font-size: 18px;
	padding: 10px 5px;
	background-color: #fff;
	border: 1px solid #999;
	cursor: pointer;
	user-select: none;
}
.btn-filtro.active {
	background-color: #999;
}

/* spinner */
spinner {
	display: inline-block;
	width: 80px;
	height: 80px;
}
spinner::after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #fd175b;
	border-color: #fd175b transparent #fd175b transparent;
	animation: dg_loader_animation 1.2s linear infinite;
}

/* Menu */

.menu-container {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: end;
}


/*------------------------------------*\
    ELEMENTI
\*------------------------------------*/

/* SLIDE */
.slick-dots {
	position: absolute;
    right: 0;
    bottom: 5%;
    z-index: 1;
    width: 100%;
    text-align: center;
}
.slick-dots .slick-active {
    background-color: #ff5028;
}
.slick-dots li {
    display: inline-block;
    width: 8px;
    height: 8px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 50%;
    margin: 20px 5px 0;
    border: 1px solid #ff5028;
}
.slick-dots button {
	color: transparent;
	background-color: transparent;
	display: contents;
}
.slick-prev {
	background-image: url(img/header/left.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	left: 0;
	z-index: 1;
	outline: none;
	width: 20px;
	height: 30px;
}
.slick-next {
	background-image: url(img/header/right.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	right: 0;
	z-index: 1;
	outline: none;
	width: 20px;
	height: 30px;
}
.slide-contatore .slick-dots li {
	border: none;
	width: auto;
	height: auto;
	display: none;
}
.slide-contatore .slick-dots .slick-active {
	background-color: transparent;
	color: #fff;
	display: block;
    width: fit-content;
}
.slide-contatore .slick-dots a {
	color: #fff;
	font-size: 14px;
}

/* FORM */
label {
	
}
input,
textarea {
	outline: none;
	padding: 5px;
	color: #000;
	height: 40px;
	margin-top: 20px;
	background-color: #fff;
	border: 1px solid #000;
	width: 100%;
}
::placeholder {
	color: #000;
}
.wpcf7-form .wpcf7-acceptance input {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #000;
	background-color: transparent;
	padding: 6px;
	margin-bottom: 0;
	max-width: 6px;
}
.wpcf7-form .wpcf7-acceptance input:checked {
	background-color: #000;
}
.wpcf7-form a {
	color: #000;
	text-transform: lowercase;
	font-size: 16px;
	text-decoration: underline;
}
span.wpcf7-list-item {
	margin: 0;
}
.wpcf7-submit {
	margin-top: 20px;
	border: 1px solid #000;
	background-color: #000;
	color: #fff;
	padding: 0 50px;
    height: 40px;
    line-height: 35px;
    margin-bottom: 0;
    max-width: 150px;
    text-transform: uppercase;
}
.wpcf7-submit:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}
div.wpcf7-response-output {
	padding: 0;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	border: none;
	color: #000;
}
/** TABS **/

.tabulator {
    position: relative;
    margin: 10px 0px;
}
.tabulator header,
.tabulator content {
    position: relative;
}

.tabulator header {
    background: unset;
    padding: 0;
    margin: 0;
}
.tabulator button {
    background-color: white;
    border: 2px solid grey;
    color: grey;
    border-radius: 5px 5px 0px 0px;
    border-bottom: 0px;
    position: relative;
    top: 2px;
    margin-right: 1px;
}

.tabulator tab {
    width: 100%;
    display: block;
    background-color: white;
    border: 2px solid black;
    display: none;
    padding: 10px;
}

.tabulator tab.active {
    display: block;
}
.tabulator button.active {
    z-index: 2;
    font-weight: 750;
    border-color: black;
    color: black;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	background-color: transparent;
	cursor: pointer;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 100%;
	border: none;
	outline: none;
	transition: 0.4s;
	border-bottom: 1px solid #9A9A9A;
}
.accordion-icon {
	color: #f7c231;
	font-size: 24px;
	transition: transform 0.3s ease;
}
.accordion.active, 
.accordion:hover {
	
}
.accordions {
	margin-top: 30px;
}

.accordion h2 {
	display: flex;
	text-transform: unset;
	justify-content: space-between;
}

.accordion h2 span {
	display: flex;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	color: var(--black);
	text-align: left;
}
.panel p {
	margin: 30px auto 0;
}

.panel a { text-decoration: underline; }

.panel a:hover { text-decoration: unset; }
/*------------------------------------*\
	LIGHTBOX
\*------------------------------------*/

.lightbox-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
}
.lightbox-wrapper[aria-visible="true"] {
    display: flex;
}
.lightbox-wrapper img {
    max-width: 100%;
}
.lightbox-wrapper .lightbox-background {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.72);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.lightbox-wrapper.striped .lightbox-background {
    background: repeating-linear-gradient(
        45deg,
        rgba(0,0,0,0.66),
        rgba(0,0,0,0.66) 10px,
        rgba(0,0,0,0.64) 10px,
        rgba(0,0,0,0.64) 20px
    );
}
.lightbox-wrapper .lightbox-container {
    width: calc(100% - 40px);
    height: auto;
    z-index: 10;
    position: relative;
    color: white;
    user-select: none;
    pointer-events: none;
}
.lightbox-wrapper .lightbox-content {
    width: 100%;
    max-width: 550px;
    height: auto;
    z-index: 10;
    margin: 0 auto;
}
.lightbox-wrapper .lightbox-content * {
    margin: 0;
    padding: 0;
}
.lightbox-arrows {
    position: absolute;
    top: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}
.lightbox-arrows.left {
    left: 0px;
}
.lightbox-arrows.right {
    right: 0px;
}
.lightbox-wrapper .lightbox-header {
    text-align: right;
}
.lightbox-wrapper .lightbox-header .close {
	max-width: 30px;
}
.lightbox-wrapper .lightbox-body {
    background-color: #000;
    border-radius: 2px;
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.67);
    margin: 10px 0px;
    overflow: hidden;
    color: #fff;
}
.lightbox-wrapper i.fa {
    cursor: pointer;
    position: relative;
}
.lightbox-wrapper .lightbox-popup {
    padding: 15px;
}
.lightbox-wrapper .lightbox-footer {
    display: none;
}
.lightbox-wrapper .lightbox-footer-sx {
    width: calc(100% - 90px);
    font-size: 1.2em;
}
.lightbox-wrapper .lightbox-footer-dx {
    width: 90px;
    text-align: right;
}
.lightbox-wrapper .lightbox-footer h6 {
    font-weight: 400;
    font-size: 14px;
}
.lightbox-wrapper .lightbox-footer h5 {
	color: #fff;
	font-size: 16px;
}
.lightbox-wrapper .lightbox-footer-dx h5{
    font-weight: 200;
    font-size: 14px;
    color: #fff;
}
.lightbox-wrapper .lightbox-container h5,
.lightbox-wrapper .lightbox-container h3,
.lightbox-wrapper .lightbox-container h6,
.lightbox-wrapper .lightbox-container img,
.lightbox-wrapper .lightbox-container i.fa {
    pointer-events: initial;
    color: #fff;
}	
.lightbox-wrapper .lightbox-container img {
	display: block;
}
.lightbox-wrapper.singolo .lightbox-arrows,
.lightbox-wrapper.singolo .lightbox-footer-dx h5 {
    display: none;
}
.lightbox-wrapper .lightbox-container a {
    color: inherit;
    text-decoration: none;
}
.lightbox-wrapper .lightbox-container .hover {
	padding: 10px;
}
.lightbox-wrapper .close {
	cursor: pointer;
}
.lightbox-wrapper .next, 
.lightbox-wrapper .prev {
	width: 30px;
}

/*------------------------------------*\
	ANIMAZIONI
\*------------------------------------*/

.zoom {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
}
.zoom:hover {
	transition-duration: 2s;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
}
.szoom {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
}
.szoom:hover {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(0.9,0.9);
	-webkit-transform: scale(0.9,0.9);
	-o-transform: scale(0.9,0.9);
	-ms-transform: scale(0.9,0.9);
	-moz-transform: scale(0.9,0.9);
}

.rotation {
	transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8;
	-o-transition-duration: 0.8s;
}
.rotation:hover {
	transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-webkit-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8;
	-o-transition-duration: 0.8s;
}
.rotation-inverse {
	animation-name: rotation-inverse;
	-webkit-animation: rotation-inverse;
	-ms-animation-name: rotation-inverse;
	-moz-animation-name: rotation-inverse;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 6s;
	-webkit-animation-duration: 6s;
	-ms-animation-duration: 6s;
	-moz-animation-duration: 6s;
}
.lampeggio {
	position: fixed;
	max-width: 50px;
	bottom: 2%;
	right: 2%;
	opacity: 0;
	animation-name: lampeggio;
	-webkit-animation: lampeggio;
	-ms-animation-name: lampeggio;
	-moz-animation-name: lampeggio;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation-duration: 3s;
	-ms-animation-duration: 3s;
	-moz-animation-duration: 3s;
}
.pulsazione {
	animation-name: pulsazione;
	-webkit-animation: pulsazione;
	-ms-animation-name: pulsazione;
	-moz-animation-name: pulsazione;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 5s;
	-webkit-animation-duration: 5s;
	-ms-animation-duration: 5s;
	-moz-animation-duration: 5s;
}

@keyframes rotation-inverse {
	0% {transform: rotateZ(0);}
	25% {transform: rotateZ(-90deg);}
	50% {transform: rotateZ(-180deg);}
	75% {transform: rotateZ(-270deg);}
	100% {transform: rotateZ(-360deg);}
}

@keyframes lampeggio {
	0% {opacity:0;}
	25% {opacity:0.5;}
	50% {opacity:1;}
	75% {opacity:0.5;}
	100% {opacity:0;}
}

@keyframes pulsazione {
	0% {transform: scale(0.5,0.5);}
	25% {transform: scale(0.65,0.65);}
	50% {transform: scale(0.75,0.75);}
	75% {transform: scale(0.65,0.65);}
	100% {transform: scale(0.5,0.5);}
}

@keyframes dg_loader_animation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/* Animations */

/* Fade */
.fade {
    opacity: 0;
    transition: 1.7s all cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.fade.in-page {
    opacity: 1;
}
.fade-in {
    transform: translateY(50px);
    opacity: 0;
    transition: 1s all cubic-bezier(0.53, 0.03, 0.01, 0.46);
}
.fade-in.delay-200 {
	transition-delay: 200ms;
}
.fade-in.delay-400 {
	transition-delay: 400ms;
}
.fade.delay-200 {
	transition-delay: 200ms;
}
.fade.delay-400 {
	transition-delay: 400ms;
}

.fade-in.in-page {
    transform: translateY(0);
    opacity: 1;
}

.reveal-from-left img, .reveal-from-left .overlay, .reveal-all.reveal-from-left * {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    transition: 1.7s all cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-from-left.in-page img, .reveal-from-left.in-page .overlay, .reveal-all.reveal-from-left.in-page * {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-from-right img, .reveal-from-right .overlay {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: 1.7s all cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-from-right.in-page img, .reveal-from-right.in-page .overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
/* --------------------- POPUP INFORMATIVO ------------------------------ */
.popup-info {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
.popup-info .overlay {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}
.popup-info .popup {
    width: 100%;
    max-width: 400px;
    display: block;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    height: fit-content;
}
.popup-info .popup h2 {
    margin-top: 0;
}
.popup-info .popup button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/*--------------BLOG------------------*/
.pagina-del-blog {
	display: flex;
}
.pagina-del-blog > main {
	width: 70%;
}
.pagina-del-blog > aside.sidebar {
	width: 30%;
}
/*--------------GDPR------------------*/
.page-template-template-gdpr h2 {
	padding-bottom: 20px;
	padding-top: 60px;
}
.page-template-template-gdpr p {
	max-width: 800px;
}
#cmplz-document, 
.editor-styles-wrapper .cmplz-unlinked-mode {
	max-width: 100% !important;
}
#cmplz-cookies-overview .cmplz-dropdown summary div, 
#cmplz-document .cmplz-dropdown summary div,
#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header {
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
#cmplz-cookies-overview .cmplz-dropdown summary div input[data-category="functional"], #cmplz-document .cmplz-dropdown summary div input[data-category="functional"], .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown summary div input[data-category="functional"] {
	width: 5% !important;
}
.page-template-template-gdpr input[type=checkbox], .page-template-template-gdpr input[type=radio] {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #000;
	background-color: transparent;
	padding: 6px;
	margin: 0;
	max-width: 6px;
	margin-right: 10px;
}
.page-template-template-gdpr input[type=checkbox]:checked, .page-template-template-gdpr input[type=radio]:checked {
	background-color: #000;
}
.page-template-template-gdpr label {
	padding: 0;
	width: 25%;
	text-align: left;
}
#cmplz-cookies-overview .cmplz-dropdown summary div h3, #cmplz-document .cmplz-dropdown summary div h3, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown summary div h3 {
	width: 50%;
}
#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div p, #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div p, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div p {
	width: 15%;
	text-align: left;
}
.cmplz-category-title{
	width: 80%;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------

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


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* page loader*/
loader {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0px;
	left: 0px;
	z-index: -1;
	user-select: none;
	pointer-events: none;
}
.pagina_caricata loader {
	display: none;
}
/* main */
main {
	min-height: 640px;
}
/* wrapper */
.wrapper {
	width:100%;
	margin: 0 auto;
	max-width: 100vw;
	opacity: 0.0;
	transition: opacity 0.46s ease;
}
.pagina_caricata .wrapper {
	opacity: 1;
}
.content {
	max-width:1600px;
	width:90%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {
	transition: all 1s linear;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	z-index: 5;
}
.header-widget-area {
	position: absolute;
	top: 0;
	right: 5%;
	z-index: 2;
}
.wpml-ls-legacy-list-horizontal {
	padding: 0;
}
.wpml-ls-legacy-list-horizontal a {
	padding: 10px 0 0;
}
.wpml-ls-current-language {
	padding-right: 5px !important;
}
/* logo */
.logo {
	position: relative;
	z-index: 1;
	width: 40%;
	padding-top: 30vh;
	padding-left: 5%;
	padding-bottom: var(--space-xs);
}
/* nav */
.nav {
	height: 100vh;
	user-select: none;
	pointer-events: none;
	display: flex;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 21;
	transition: opacity 0.7s linear;
	opacity: 0;
}
.navmenu_open .nav {
	user-select: none;
	pointer-events: unset;
	opacity: 1.0;
}

	.mobile .navmenu_close .nav {
		opacity: 0.0;
	}

	.menu-item a {
		font-size: clamp(1.8rem, 3vw, 3.8rem);
		line-height: clamp(1.2rem, 2.4vw, 3.3rem);
		color: #000;
		text-transform: none;
	}

	.nav a {
		color: #000;
	}

	.nav a:hover {
		color: var(--secondary);
	}

	.nav .current_page_item a {
		color: var(--secondary);
		font-weight: bold;
	}

	.nav ul {
		list-style-type: none;
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.nav ul li {
		padding: 15px 0;
		line-height: 1;
	}

	/* closebutton */

	.openclose {
		position: fixed;
		top: 5%;
		right: 5%;
		z-index: 90;
		cursor: pointer;
		display: block;
	}

	.navmenu_open .openclose {
		display: flex;
	}

	.openclose .iconbar {
		height: 2px;
		width: 20px;
		background-color: #fff;
		display: block;
		margin: 5px 0;
		transition-duration: 1s;
		-webkit-transition-duration: 1s;
		-o-transition-duration: 1s;
		-moz-transition-duration: 1s;
		-ms-transition-duration: 1s;
	}

	.openclose img {
		width: 20px;
	}

	.openclose .uno {
		width: 15px;
	}

	.openclose .tre {
		width: 12px;
	}

	.openclose:hover .uno {
		width: 20px;
	}

	.openclose:hover .tre {
		width: 20px;
	}

	/** MEGA MENU **/

	.sub-menu {
		display: none;
	}

	nav.nav ul .mega-menu {
		width: 100%;
		position: absolute;
		left: 0px;
		top: 100%;
		display: flex;
		background-color: #141414;
		color: white;
		padding: 20px;
		opacity: 0.0;
		transition: opacity 0.68s ease, color 0.68s ease;
		pointer-events: none;
	}

	.pagina-mobile nav.nav ul .mega-menu {
		top: 0;
		height: 100vh;
		flex-direction: column;
		padding-top: 150px;
	}

	nav .mega-left picture {
		display: block;
	}

	nav.nav.show-mega ul .mega-menu picture img {
		width: 100%;
		display: block;
		max-width: unset;
		margin: 0;
	}

	nav.show-mega ul .mega-menu.open {
		display: flex;
		opacity: 1.0;
		z-index: 1;
		pointer-events: initial;
	}

	nav ul .mega-menu .mega-left {
		width: 40%;
		padding: 20px;
	}

	nav ul .mega-menu .mega-right {
		width: 60%;
		padding: 20px;
	}

	.pagina-mobile nav ul .mega-menu .mega-left {
		width: 100%;
		position: relative;
		transition: left 0.68s ease;
		left: 100vw;
	}

	.pagina-mobile nav ul .mega-menu .mega-right {
		width: 100%;
		transition: left 0.68s ease;
		left: 100vw;
	}

	.pagina-mobile nav ul .mega-menu.open .mega-left {
		left: 0vw;
		display: none;
	}

	.pagina-mobile nav ul .mega-menu.open .mega-right {
		left: 0vw;
	}

	.nav ul .mega-menu ul.sub-menu {
		display: grid;
		grid-template-columns: 1fr;
	}

	.nav ul .mega-menu.open ul.sub-menu {
		display: grid;
	}


	/* footer */

	.footer {
		text-align: left;
	}

	.footer > div {
		width: 100%;
		padding: 30px 0;
	}

	/*------------------------------------*\
        PAGES
    \*------------------------------------*/


	/*--------------COMIGN SOON------------------*/

	.coming-soon .footer-container {
		display: none;
	}

	.coming-soon .footer {
		display: none;
	}

	.coming-soon .openclose,
	.coming-soon .nav {
		display: none;
	}

	#coming .row-1 {
		position: relative;
	}

	#coming .row-1 .image {
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		width: 100%;
		height: 100vh;
	}

	#coming .text img {
		max-width: 140px;
		opacity: 0.8;
	}

	#coming .text div {
		display: flex;
		align-items: center
	}

	#coming h1 {
		color: #fff;
		padding-left: 20px;
		line-height: 1.2;
	}

	#coming h2 {
		line-height: 1.2;
		color: #fff;
		font-size: 40px;
		padding-top: 30px;
	}

	#coming .text p {
		color: #fff;
		font-size: 16px;
		padding: 30px 0 60px;
	}

	#coming .social {
		position: absolute;
		top: 20px;
		right: 5%;
		z-index: 10;
	}

	#coming .social a {
		text-transform: uppercase;
		font-family: Satoshi-Medium;
		font-size: 16px;
	}

	#coming .dati {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 3;
		padding: 10px 5%;
	}

	#coming .dati div {
		padding-top: 10px;
	}

	#coming .dati h3 {
		color: #fff;
		font-size: 16px;
	}

	#coming .dati a,
	#coming .dati p {
		color: #fff;
		font-size: 16px;
	}

	#coming .dati .copy p {
		font-size: 14px;
	}





/*--------------HOME------------------*/













/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

/* Responsive Tablet */
@media only screen and (min-width: 768px) and (max-width: 1100px) {

	:root {
		--space-xxs: 8px;
		--space-xs: 15px;
		--space-sm: 30px;
		--space-md: 40px;
		--space-lg: 60px;
		--space-xl: 70px;
		--space-xxl: 110px;
	}

	.container { min-width: 768px; }

	.subcontainer { width: 100%; }

	.none-desktop { display: flex; }

	.none-tablet { display: none; }

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

	.none-sm { display: flex; }

	.t-col { flex-direction: column; }

	.t-center { align-items: center;
		justify-content: center; }

	.wht50 { width: 50%; }

	.wht100 { width: 100%; }

	.vht50 { height: 50vh; }

	.col-2 { grid-template-columns: 1fr; }

	.col-3 { grid-template-columns: 1fr; }

	.col-4 { grid-template-columns: 1fr; }

	.col-5 { grid-template-columns: 1fr 1fr 1fr; }

	.col-6 { grid-template-columns: 1fr 1fr 1fr; }

	.col-3-t { grid-template-columns: repeat(3, 1fr); }

}

/* Responsive Mobile */

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

	:root {
		--space-xxs: 5px;
		--space-xs: 10px;
		--space-sm: 20px;
		--space-md: 30px;
		--space-lg: 40px;
		--space-xl: 50px;
		--space-xxl: 80px;
	}

	.container { min-width: 319px; }

	.subcontainer { width: 100%; }

	.sm-col { flex-direction: column; }

	.sm-col-reverse { flex-direction: column-reverse; }

	.column-reverse { flex-direction: column; }

	.whs100 { width: 100%; }

	.whs20 { width: 20%; }

	.whs50 { width: 50%; }

	.whs80 { width: 80%; }

	.whs90 { width: 90%; }

	.vhs50 { height: 50vh; }

	.one { order: 1; }

	.two { order: 2; }

	.three { order: 3; }

	.four { order: 4; }

	.five { order: 5; }

	.six { order: 6; }

	.none-desktop { display: flex; }

	.none-sm { display: none; }

	.hide-sm { display: none !important; }

	.col-2, .col-3, .col-4, .col-6 { grid-template-columns: 1fr; }

	.col-5 { grid-template-columns: 1fr 1fr; }

	.h-sm { height: unset; }

	p br { display: none; }

	.sticky-section {
		height: unset;
		position: static;
	}

	.nav { height: 100vh; }

	.menu-logo { height: unset; }

	.menu-container { flex-grow: 1; }

	.img-works { aspect-ratio: 16 / 9;
		padding: 0;
		height: unset; }

	.p-0 { padding: 0; }

	.px-md { padding-right: 0;
		padding-left: 0; }

	.p-sm {
		padding: 20px;
	}

	.vhsm { height: 50vh; }

	.single-works h1 { padding-top: 20px; }

}

