@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/*
	Theme Name: Digitalia
	Theme URI: https://www.digitalia.srl/
	Description: Web Agency
	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
\*------------------------------------*/

/*

.playfair-display-<uniquifier> {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: italic;
}

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/
:root {
	
	--black: #141414; 
	--white: #e0e0e0;
	--rose: #FD175B;
	/* --font-dm: "Inter", sans-serif; */
	--font-dm: "DM Sans", sans-serif;
	--font-playfair: "Playfair Display", serif;
}

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

/* html element 62.5% font-size for REM use */
/* GENERAL */
html,body {  
	margin:0;
	padding:0;
	background-color:var(--black);
	color:var(--white);
	font-family: var(--font-dm);
	font-weight: 400;
	font-size: 16px !important;
	line-height: 1.3;
	text-rendering:optimizeLegibility;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
}
body {
	overflow-y: scroll;
}
body.navmenu_open {
	overflow-y: hidden;
}
section {
	overflow: hidden;
}

.grecaptcha-badge {
	display: none;
}
.cf7-cf-turnstile {
	margin-top: 30px !important;
}
img {
	max-width:100%;
	width: 100%;
	height: auto;
	object-fit: cover;
	vertical-align: middle;
}
picture {
	display: grid;
}
.ios .parallax {
	background-attachment: scroll !important;
}
a {
	color: #959595;
	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,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{ 
	font-family: var(--font-dm);
	color:var(--white);
	padding:0;
	margin:0;
}

h1,.h1{
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1.1;
}

h1 strong{
	color: var(--rose);
	font-family: var(--font-playfair);
	font-weight: 500;
	font-style: italic;
}

h2,.h2{
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.1;
}

h2 strong{
	color: var(--rose);
	font-family: var(--font-playfair);
	font-weight: 400;
	font-style: italic;
}

h3,.h3{
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.1;
}



h3 strong{
	color: var(--rose);
	font-family: var(--font-playfair);
	font-weight: 500;
	font-style: italic;
}

h4,.h4{
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.1;
}

h4 strong{
	color: var(--rose);
	font-family: var(--font-playfair);
	font-weight: 500;
	font-style: italic;
}

.pt10{
	padding-top: 10px;
}

.mb10{
	margin-bottom:10px;
}

.pb10{
	padding-bottom: 10px;
}

.pb20{
	padding-bottom:20px;
}

.pt20{
	padding-top:20px;
}

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

.overflowvisible{
	overflow:visible;
}

.rose{
	color:var(--rose) !important;
}
.big{
	font-size: 1.25rem;   
}
.small{
	font-size: 0.9rem;	 
}

.playfair{
	font-family: var(--font-playfair);
	color: var(--rose);
}

.relative{
	position: relative;
}

.block{
	display: block;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 1px solid #fff;
	padding: 15px 45px;
	font-family: var(--font-dm);
	color: #fff;
	font-weight: 400;
	font-size: 1.1rem;
	transition: 0.3s;
}

.button:hover{
	background-color: var(--rose);
	border-color: var(--rose);
	transition: 0.3s;
}

.button-rose {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 1px solid #fff;
	padding: 15px 45px;
	font-family: var(--font-dm);
	color: #fff;
	font-weight: 400;
	font-size: 1.1rem;
}

.button_container{
	margin: 0 auto;
	margin-top: 30px;
	padding-top: 40px;
	display: inline;
}

.button-rose:hover {
	color: var(--rose);
	border: 1px solid var(--rose);
}

.button svg{
	margin-left: 10px;
	height: 14px;
	width: auto;
	transition: 0.2s;
}
.button:hover svg {
	transform: rotate(45deg);
	transition: 0.2s;
}

.container{
	width: 90%;
	margin: 0 auto;
}

.container-grey{
	width: 90%;
	margin: 0 auto;
	border-radius:10px;
	background: rgba(37, 44, 44, 0.4);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);		
}

#footer{
	position: relative;
}

#menu-menu-privacy li{
	margin-bottom:5px;
}

.arrow-button{
	width: 80px;
	height: 80px;
	position: relative;
	z-index: 20;
	display: block;
}

#footer .ellisse-01 {
	width: 200px;
	height: 200px;
	position: absolute;
	opacity: 0.6;
	animation: moveball01 5s ease-in-out infinite; /* Aggiunta dell'animazione */
	animation-direction: alternate;
}

#footer .ellisse-02 {
	width: 200px;
	height: 200px;
	position: absolute;
	opacity: 0.6;
	animation: moveball02 8s ease-in-out infinite; /* Aggiunta dell'animazione */
	animation-direction: alternate;
}


@keyframes moveball01 {
  0% {
	top: 5%;
	left: 5%;
  }
  100% {
	top: 15%;
	left: 10%;
  }
}

@keyframes moveball02 {
  0% {
	bottom: 0;
	right: 5%;
  }
  100% {
	bottom: 5%;
	right: 10%;
  }
}

@keyframes moveball03 {
  0% {
	top: 0;
	right: 5%;
  }
  100% {
	top: 5%;
	right: 10%;
  }
}

#footer .footer-container{
	width: 96%;
	margin: 0 auto;
	background: rgba(37, 44, 44, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
	border-radius: 40px;
    -webkit-backdrop-filter: blur(5px);
	/* border-top: 1px solid rgba(255,255,255,0.4); */
}


#footer .social svg{
	height: 23px;
	width: auto;
	margin-right: 20px;
	transition: 0.3s;
}

#footer .social svg:hover path{
	fill: var(--rose);
	transition: 0.3s;
}

#footer .logo-footer{
	width: 180px;
	height: auto;
}

#footer a{
	color: #bbb;
}

#footer h4{
	margin-top: 30px;
}

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


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

/* SLIDE */
.slick-dots {
	position: absolute;
    right: 0;
    bottom: 5%;
    z-index: 1;
    width: 100%;
    text-align: center;
}
.slick-dots .slick-active {
    background-color: var(--rose);
	border-color: var(--rose);
}
.slick-dots li {
    display: inline-block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 50%;
    margin: 20px 5px 0;
    border: 1px solid #ddd;
}
.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: 43%;
	left: 3%;
	z-index: 1;
	outline: none;
	box-shadow: 0 0 10px rgba(0,0,0,0.45);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	background-size: cover;
}
.slick-next {
	background-image: url(img/header/right.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 43%;
	right: 3%;
	box-shadow: 0 0 10px rgba(0,0,0,0.45);
	border-radius: 50%;
	z-index: 1;
	outline: none;
	width: 30px;
	height: 30px;
	background-size: cover;
}
.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;
}
#team_digitalia .p2-fluid{
	padding-right:0;
	padding-left:0;
}
.elenco_clienti{
	width: 90%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
.single_cliente{
	width: 50%;
	margin-bottom:20px;
}

.single_cliente a{
	width: 73%;
	margin: 0 auto;
	display: block;
}

.slideshow-clienti .slick-track{
	display: flex;
	align-items: center;
}

#notfound h3{
	line-height: 1.5;
	font-size: 1.2rem;
}

#notfound .ellisse-02{
	position: absolute;
	bottom: -250px;
	right:0;
	width: 450px;
	height: 450px;
	opacity: 0.4;
}

/* FORM */
label {
	color:var(--white);
}

label a{
	text-decoration: underline;
	color:var(--white) !important;
	font-size: 1rem !important;
}
input {
	outline: none;
	padding: 5px;
	color: #ddd;
	height: 50px;
	margin-top: 20px;
	background-color: transparent;
	border:none;
	border-bottom: 1px solid #ddd;
	width: 100%;
}

textarea{
	outline: none;
	padding: 5px;
	color: #ddd;
	margin-top: 20px;
	background-color: transparent;
	border:none;
	border-bottom: 1px solid #ddd;
	width: 100%;
}
::placeholder {
	color: #5C5C5C;
}
.wpcf7-form .wpcf7-acceptance input {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #fff;
	background-color: transparent;
	padding: 6px;
	margin-bottom: 0;
	max-width: 6px;
	margin-right: 10px;
}
.wpcf7-form .wpcf7-acceptance input:checked {
	background-color: #ddd;
}
.wpcf7-form a {
	color: #000;
	text-transform: lowercase;
	font-size: 16px;
	text-decoration: underline;
}
span.wpcf7-list-item {
	margin: 0;
}
.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 1px solid #fff;
	padding: 15px 45px;
	height: 60px;
	font-family: var(--font-dm);
	color: #fff;
	width: 260px;
	margin-top: 50px;
	font-weight: 400;
	font-size: 1.2rem;
}
.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 !important;
	color: #fff !important;
	margin-left:0 !important;
	padding-left:0 !important;
}
/** 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: 25px;
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	border: none;
	outline: none;
	transition: 0.4s;
	border: 1px solid #ddd;
	border-radius: 20px;
	color:#ddd;
	transition: 0.3s;
}
.accordion::after {
	content: "+";
	color: #ddd;
	font-size: 23px;
	transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition: 0.3s;
}

.accordion.active, 
.accordion:hover {
	background-color: var(--rose);
	transition: 0.3s;
	border-color: var(--rose);
}
.accordions {
	margin-top: 20px;
}
.active::after {
	transform: rotateZ(45deg);
	-o-transform: rotateZ(45deg);
	-webkit-transform: rotateZ(45deg);
	-moz-transform: rotateZ(45deg);
	-ms-transform: rotateZ(45deg);
	transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
	padding: 0 20px;
	background-color: transparent;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	border-radius: 20px;
	margin: 15px auto;
	color: #fff;
	text-align: left;
	font-weight:400;
	line-height:1.5;
}
.panel p {
	margin: 20px auto 30px;
	line-height: 1.5;
}
/*------------------------------------*\
	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
\*------------------------------------*/



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

@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(1); /* Inizio normale */
		opacity: 1;          /* Opacità iniziale */
	}
	50% {
		transform: scale(1.1); /* Ingrandisce il pulsante */
		opacity: 0.85;         /* Cambia l'opacità a 0.7 */
	}
	100% {
		transform: scale(1); /* Torna alle dimensioni normali */
		opacity: 1;          /* Torna all'opacità normale */
	}
}

@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-02 {
	transform: translateY(50px);
	opacity: 0;
	transition: 1s all cubic-bezier(0.53, 0.03, 0.01, 0.46);
	transition-delay: 0.5s;
}
.fade-in-03 {
	transform: translateY(50px);
	opacity: 0;
	transition: 1s all cubic-bezier(0.53, 0.03, 0.01, 0.46);
	transition-delay: 1s;
}
.fade-in-04 {
	transform: translateY(50px);
	opacity: 0;
	transition: 1s all cubic-bezier(0.53, 0.03, 0.01, 0.46);
	transition-delay: 1.5s;
}
.fade-in.in-page,.fade-in-02.in-page,.fade-in-03.in-page,.fade-in-04.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.55);
}
.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;
}

/*--------------GDPR------------------*/
#gdpr{
	padding-top: 100px;
}

#gdpr h1{
	padding-bottom: 30px;
}
.page-template-template-gdpr h2 {
	padding-bottom: 20px;
	padding-top: 60px;
}
.page-template-template-gdpr p {
	max-width: 800px;
}
#cmplz-manage-consent .cmplz-manage-consent{
	font-size:13px;
}
#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: #111;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0px;
	left: 0px;
	z-index: 1000;
	user-select: none;
	pointer-events: none;
}

.rotation {
  height: 120px;
  aspect-ratio: 1;
  padding: 6px;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  mask: conic-gradient(#000 0 0) content-box exclude,conic-gradient(#000 0 0);
  filter: blur(12px);
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
.rotation:before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(#0000 35%,#FD175B,#0000 65%);
  animation: l1 1.5s linear infinite;
}

/* .loader img{
	position: absolute;
	width:50px;
	height:auto;
	top:50%;
	bottom: 50%;
	transform: translate(-50%,-50%);
	z-index:10000;
} */

@keyframes l1 {
  to {rotate: 1turn}
}
.pagina_caricata .loader {
	display: none;
}
/* main */
main {
	min-height: 640px;
}
/* wrapper */
.wrapper {
	width:100%;
	margin: 0 auto;
	max-width: 100vw;
	overflow: hidden;
	overflow-y: auto;
	opacity: 0.0;
	transition: opacity 0.46s ease;
}
.pagina_caricata .wrapper {
	opacity: 1;
}

/* header */

#header {
	position: fixed;
	top: 0;
	left:0;	
	z-index: 5;
	width:100%;
	/* visibility: hidden; */
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
}

#header::after{
	bottom:0;
	left:0;
	width:100%;
	opacity:0;
	height:1px;
	background-color:  #ececec14;
	content:"";
	position:absolute;
	z-index:0;
}

#header.show::after, #header.showfull::after{
	opacity:1;
}



#header .logo-header{
	width: 210px;
	margin-top: 0;
	display: flex;
	align-items: center;
	visibility: visible;
}

#header .logo-header .img-primaria{
	width: 16%;
	visibility: visible;
	transition: 0.3s;
	opacity: 1;
}

#header.showfull .logo-header .img-primaria{
	visibility: visible;
	opacity: 1;
	transition: 0.3s;
}

#header .logo-header .img-secondaria{
	width: 70%;
	margin-top: 15px;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
}

#header.showfull .logo-header .img-secondaria{
	visibility: visible;
	opacity: 1;
	transition: 0.3s;
}

#header.showfull {
	visibility: visible;
	background-color: transparent;
}

#header.show {
	visibility: visible;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
}

#img-sfondo-hero::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 35%;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(20,20,20,1) 100%);
}

#header.show .img-primaria{
	visibility: visible;
	transition: 0.3s;
	opacity: 1;
}


#about_digitalia .container-grey{
	padding:30px;
	
	margin: 0 auto;
}


#header .header-content{
	width:90%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}

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

.justify{
	text-align: justify; 
}

.z-index{
	position: relative;
	z-index:2;
}
/* nav */

.navigazione {
	width: 100%;
	position: absolute;
	padding: 100px 30px;
	text-align: left;
	right: -100%;
	visibility: hidden;
	top: 0;
	z-index: 3;
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	height: 100vh;
	transition: right 0.5s ease, visibility 0s 0.5s; /* Aggiunto effetto di transizione */
}

.navmenu_open .navigazione {
	right: 0;
	visibility: visible;
	transition: right 0.5s ease; /* Rimuove il delay per la visibilità */
}

.navigazione .social a{
	display: inline-block;
	margin-bottom: 15px;
}

.navigazione .menu-up{
	display: flex;
	justify-content: space-between;
}

.navigazione .menu-down{
	position: absolute;
	bottom: 100px;
	display: flex;
	justify-content: space-between;
	width: 90%;
}

.navigazione .menu-down .w50{
	width:50%;
}

.navigazione .menu-down a{
	font-size: 0.8rem;
}

.navmenu_open .navigazione {
	user-select: none;
	pointer-events: unset;
	opacity: 1.0;
}
.mobile .navmenu_close .navigazione { 
	opacity: 0.0;  
} 
.navigazione a {
	color: #fff;
	text-transform: uppercase;
	position: relative;
}

.navigazione .current_page_item a {
	position: relative;
	color:var(--rose);
}

#socialwall .arrow-button{
	display: none;
}

.navigazione ul li {
	padding-bottom: 20px;
	line-height: 1;
}

.navigazione ul li a{
	font-family: var(--font-playfair);
	font-size: 1.8rem;
	color: #fff;
	text-transform: capitalize;
	transition: 0.3s;
}

.navigazione ul li a:hover{
	text-decoration: none;
	color:var(--rose);
	transition: 0.3s;
}

/* closebutton */


.openclose{
	position: relative;
	z-index: 99;
	margin-top:5px;
}


.openclose svg{	
	width: 35px;
	height: auto;
}

/* open */

.openclose .open, .navmenu_close .openclose .open{
	display: block;
}

.navmenu_open .openclose .open{
	display:none;
}

/* .navmenu_open .header .openclose{
	position: absolute !important; 
	right: 6%;
	top: 40px;
	visibility: show;
} */

/* close */

.navmenu_open .openclose .close{
	display:block;
}
.openclose .close{
	display:none;
}

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

/* Margini */

.m-fluid {
	margin: clamp(1rem, 3vw, 2rem);
}

.mx-fluid {
	margin-left: clamp(1rem, 3vw, 2rem);
	margin-right: clamp(1rem, 3vw, 2rem);
}

.my-fluid {
	margin-top: clamp(1rem, 3vw, 2rem);
	margin-bottom: clamp(1rem, 3vw, 2rem);
}

.mt-fluid {
	margin-top: clamp(1rem, 3vw, 2rem);
}

.mb-fluid {
	margin-bottom: clamp(1rem, 3vw, 2rem);
}

.m2-fluid {
	margin: clamp(2rem, 6vw, 4rem);
}

.mt2-fluid {
	margin-top: clamp(2rem, 6vw, 4rem);
}

.mb2-fluid {
	margin-bottom: clamp(2rem, 6vw, 4rem);
}

.mx2-fluid {
	margin-left: clamp(2rem, 6vw, 4rem);
	margin-right: clamp(2rem, 6vw, 4rem);
}

.my2-fluid {
	margin-top: clamp(2rem, 6vw, 4rem);
	margin-bottom: clamp(2rem, 6vw, 4rem);
}

/* Padding */

.p-fluid {
	padding: clamp(1rem, 3vw, 2rem);
}

.pl-fluid{
	padding-left: clamp(1rem, 3vw, 2rem);
}

.px-fluid {
	padding-left: clamp(1rem, 3vw, 2rem);
	padding-right: clamp(1rem, 3vw, 2rem);
}

.py-fluid {
	padding-top: clamp(1rem, 3vw, 2rem);
	padding-bottom: clamp(1rem, 3vw, 2rem);
}

.pt-fluid {
	padding-top: clamp(1rem, 3vw, 2rem);
}

.pb-fluid {
	padding-bottom: clamp(1rem, 3vw, 2rem);
}

.p2-fluid {
	padding: clamp(2rem, 6vw, 4rem);
}

.px2-fluid {
	padding-left: clamp(2rem, 6vw, 4rem);
	padding-right: clamp(2rem, 6vw, 4rem);
}

.py2-fluid {
	padding-top: clamp(2rem, 6vw, 4rem);
	padding-bottom: clamp(2rem, 6vw, 4rem);
}

.pt2-fluid {
	padding-top: clamp(2rem, 6vw, 4rem);
}

.pb2-fluid {
	padding-bottom: clamp(2rem, 6vw, 4rem);
}

.pb4-fluid {
	padding-bottom: clamp(4rem, 9vw, 6rem);
}


/* LENIS */
/* html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
} */


/* PROPERTIES */

#hero_digitalia{
	height: 70vh;
	display: flex;
	flex-wrap: wrap;
	align-content: end;
}

.hero_intro{
	padding-bottom:50px;
}

#img-sfondo-hero {
	background-repeat: no-repeat; 
	background-position: center; 
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.1);
}

#hero_digitalia .down-arrow{
	display: none;
}

#notfound{
	padding-top:100px;
}

.certificazioni img{
	height:auto; 
	width: 60px;
	margin-right:20px;
	margin-bottom: 10px;
}

.w30 {
	width: 100%;
	text-align: left;
}

.w40 {
	width: 100%;
	text-align: left;
}

.w50 {
	width: 100%;
	text-align: left;
}

.w60 {
	width: 90%;
	text-align: left;
}

.ml5{
	margin-left:5px;
}

#casestudy .w60{
	width:100%;
}

#casestudy .w40{
	width:100%;
	padding-left:0;
	padding-top: 30px;
}

#casestudy .obiettivi{
	padding-top: 20px;
}

#serviziaggiuntivi .w50{
	padding-left:0;
	padding-top: 30px;
}

#serviziaggiuntivi .w50 .button{
	margin-bottom:20px;
}

.pb30{
	padding-bottom:30px;
}

.mb5{
	margin-bottom:5px;
}

.uppercase{
	text-transform: uppercase;
}

.error{
	color: var(--rose);
}

.border-bottom{
	border-bottom: 1px solid #E3E3E3;
}

.border-top{
	border-top: 1px solid rgba(227, 227, 227, 0.4);
}

.opacity{
	color: #999;
}

.opacity p strong{
	color: #ddd;
	font-weight: 500;
}

#breadcrumbs, #breadcrumbs a{
	font-family: var(--font-playfair);
	color: var(--rose);
	/* font-style: italic; */
}

#breadcrumbs a{
	text-decoration: underline;
}

#metodo_digitalia span{
	font-family: var(--font-playfair);
	color: var(--rose);
	font-size: 1.5rem;
	display: inline-block;
}

#hero-interna{
	height: 70vh;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: start;
}

#hero-interna h1{
	opacity: 0.45;
}

#hero-interna .title-hero-interna{
	position: absolute;
	bottom: 100px;
	font-weight: 600;
	right: 5%;
	color: #fff;
	opacity: 0.6;
}
.pagination{
	padding-top:20px;
	padding-bottom:20px;
}
.pagination h2{
	display: none;
}

.pagination a, .pagination span{
	margin-left:10px;
	margin-right:10px;
}

.pagination .current{
	color: var(--rose);
}
#hero-interna .container{
	padding-bottom: 50px;
}

.elenco_servizi_home .servizio:hover h2, .elenco_servizi_home .servizio:hover p{
	color: var(--black) !important;
	transition: 0.4s;
}

#hero-interna .ellisse-02{
	position: absolute;
	right: -80px;
	bottom: 40%;
	width: 300px;
	height: 300px;
	opacity: 0.15;
}

#hero-interna .ellisse-topleft {
	position: absolute;
	left: -80px;
	top: 20%;
	width: 300px;
	height: 300px;
	opacity: 0.3;
}

#about_digitalia .ellisse-topleft {
	position: absolute;
	left: -80px;
	top: 0;
	width: 300px;
	height: 300px;
	opacity: 0.3;
}

#about_digitalia{
	overflow: visible;
}

.single-recensione{
	border: 1px solid #ddd;
	padding: 50px;
	border-radius: 45px;
	height: 450px;
}

.slideshow-recensioni .slick-slide img{
	width: auto !important;
	height: 12px !important;
}

.slideshow-recensioni .slick-dots{
	bottom: 108%;
	text-align: right;
	right:4%;
}

.slideshow-recensioni .slick-slide{
	margin-right: 15px;
	margin-left: 15px;
}

.rounded-img{
	border-radius: 20px;
	overflow: hidden;
}

.singolo-servizio .img-servizio, #articoli_blog .img-articolo{
	position:relative;
	overflow:hidden;
	display: block;
	transition: 0.5s;
}

.aspect-ratio img{
	height:45vh;
}

#single_news .px2-fluid{
	padding-left:0;
	padding-right:0;
}


.elenco_team .slick-slide{
	margin-left:15px;
	margin-right:15px;
}

.shadow-img{
	box-shadow: 3px 0 15px rgba(255,255,255,0.05);
}

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

.elenco_servizi_home .servizio .image_fade{
	display: none;
}

#servizi-digitalia #elenco_servizi{
	padding-top: 50px;
}

#singolo-servizio-digitalia #presentazione strong{
	color: var(--white);
	font-weight: 400;
}

.overflowvisible{
	overflow: visible;
}

#obiettivi .bigtitle{
	display: none;	
}

.fasi .single_fase{
	margin-right:20px;
}
.elenco_servizi_home .servizio{
	background-color: transparent;
	transition: 0.3s;
	position: relative;
	display: inline-block;
	width:100%;	
	transition: 0.4s;
}

.elenco_servizi_home .servizio::after{
	background-color: var(--rose);
	transition: 0.2s;
	content: "";
	width: 110%;
	height: 102%;
	top:-1%;
	left: -5%;
	position: absolute;
	opacity: 0;
	border-radius: 20px;
	z-index:2;
}

#single_news h1{
	color: var(--rose);
	font-family: var(--font-playfair);	
	font-style: italic;
	font-size: 2rem;
}

.single .single-content h2{
	font-size: 1.25rem;
	margin-bottom: 30px;
	color: var(--rose);
	
	font-weight:400;
	
}

.single .single-content h3{
	font-size: 1.2rem;
	
	
	margin-bottom: 20px;
	color: var(--rose);
	font-weight:400;
}

.single p{
	margin-bottom: 20px;
	color: #ddd;
}

.single br{
	display: none;
}

.single ol{
	list-style: inside;
	list-style-type: lower-alpha;
}


.single .single-content ul{
	list-style: inside;
	list-style-type: square;
}

#about_digitalia .servizio h2{
	font-size: 1.4rem;
	padding-bottom: 10px;
	color:var(--white);
}

.progetto {
	padding:30px;
	background-color: #262626;
	border: 1px solid #5C5C5C;
	border-radius: 20px;
}

.elenco_progetti .slick-slide{
	margin-left: 15px;
	margin-right: 15px;
}

/* .progetto .progetto-text .dettagli{
	padding-bottom: 30px;
	
} */

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

.progetto .progetto-text {
	
	display: block;
}

.circle {
	display: none;
}

.circle-text {
	display: none;
}

#bread-servizio{
	display: flex;	
}
#singolo-servizio-digitalia .anchorbutton{
	background-color: transparent;
	padding:0;
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	border-radius:0;
	font-size:16px;
	display: block;
	color: rgba(255,255,255,0.3);
	margin-bottom: 10px;
}
.elenco_servizi_home{
	margin-top: 30px;
}
#about_digitalia .servizio .px-fluid{
	padding-left:0;
	padding-right:0;
}

.elenco_servizi_home .servizio:hover::after{
	opacity:1;
	transition: 0.2s;
}

.m-auto{
	margin: 0 auto;
}


.overlay{
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.55);
	position: absolute;
	top: 0;
	left:0;
}

.overlay-light{
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.25);
	position: absolute;
	top: 0;
	left:0;
}

#hero-interna .bigtitle{
	color: rgba(203, 203, 203, 0.2);
	letter-spacing: 0;
}
.bigtitle{
	font-size: 3.5rem;
	color: rgb(36 36 36);
	line-height:0.9;
	font-family: var(--font-dm);
	font-weight: 800;
}

#form_di_contatto .bigtitle{
	display: none;
}


#socialwall .bigtitle{
	display: none;
}

#domande_frequenti {
	background-color: rgba(253,23,91,0.29);
}

#singolo-servizio-digitalia #presentazione {
	padding-top: 50px;
}

.sezione-sfondo{
	height: 500px;
	min-height: 35vh;
	background-size:cover;
	background-position: center;
}
#elenco_contatti .w30:not(:last-of-type) {
	margin-bottom: 50px;
}

/* LANDING */

.page-template-template-landing .no-mobile{
	display: none;
}

#landing_digitalia h1{
	padding-top:40px;
}

#landing_digitalia .rose-background{
	background-color: var(--rose);
}

#landing_digitalia .container-vantaggi{
	min-height: 100%;
	height: 100%;
}
#landing_digitalia #vantaggi .singolo-servizio{
	border-radius: 20px;
	background: rgba(37, 44, 44, 0.4);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	min-height: 100%;
	height: 100%;
	backdrop-filter: blur(5px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px;
	margin-bottom: 25px;
	width:100%;
}

#landing_digitalia #vantaggi .bigtitle{
	right:0;
	top: -20px;
	position: absolute;
	z-index:0;
	color: rgba(0,0,0,0.6);
}

#landing_digitalia #domande_frequenti_landing .bigtitle{
	left:-5%;
	bottom: -10%;
	position: absolute;
	z-index:0;
	color: rgba(0,0,0,0.6);
}

#landing_digitalia #fasi_di_lavoro .h2 strong{
	color: var(--rose);
	font-family: var(--font-playfair);
}

#landing_digitalia .anchor-link{
	margin-top: 30px;
}

#landing_digitalia #fasi_di_lavoro .fase-singola{
	color: #818181;
	font-size: 22px;
}

#landing_digitalia .big{
	font-size: 1.3rem;
}

#landing_digitalia #cta strong{
	color: var(--white);
	font-family: var(--font-playfair);
}

#landing_digitalia #cta .button{
	border:1px solid var(--white);
	background-color: var(--white);
	color:var(--rose);
}

#landing_digitalia #cta .button:hover{
	background-color: transparent;
	color: var(--white);
}

#landing_digitalia #fasi_di_lavoro .fase-singola:hover{
	color: #fff;
	
}
.page-template-template-landing #form_di_contatto {
	width:100% !important;
	border-radius: 60px 60px 0 0 !important;
}

.page-template-template-landing .footer-container{
	width: 100% !important;
	margin: 0 auto;
	background: rgba(37, 44, 44, 0.4);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	border-radius: 0 !important;
	-webkit-backdrop-filter: blur(5px);
	border-top: 1px solid rgba(255,255,255,0.4);
}

.page-template-template-landing .container-btns-landing{
	display: flex;
	align-items:center;
}

.page-template-template-landing .wpcf7-submit{
	margin-top:30px;
	margin-bottom:30px;
}

.page-template-template-landing .button-landing-header{
	background-color:#ffffff;
	display:flex;
	border-radius: 50%;
	height: 53px;
	width:53px;
	align-items:center;
	justify-content:center;
	margin-left:7px;
	padding:15px;
	animation: pulsazione 3s infinite; /* Aggiunta dell'animazione */
}

#landing_digitalia .anchor-link a{
	border-bottom:1px solid rgba(255,255,255,0.2);
	padding-bottom:10px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#landing_digitalia .anchor-link a:hover{
	color: var(--white);
}

#landing_digitalia .anchor-link a line, #landing_digitalia .anchor-link a path{
	stroke: #959595;
	transition:0.2s;
}

#landing_digitalia .anchor-link a:hover line, #landing_digitalia .anchor-link a:hover path{
	transition:0.2s;
	stroke: #fff;
}

#domande_frequenti_landing .w60{
	width:100%;
	margin-top:30px;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:768px) {
	
}
@media only screen and (min-width:1024px) {
	html,body{
		font-size: 18px !important;
	}
	
	
	h1,.h1{
		font-size: 4rem;
		font-weight: 500;
		line-height: 1.1;
	}
	
	h2,.h2{
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1.1;
	}
	
	h3,.h3{
		font-size: 1.8rem;
		font-weight: 500;
		line-height: 1.1;
	}
	
	.big{
		font-size: 1.45rem;   
	}
	
	#header .logo-header{
		width: 250px;
		margin-top: 0;
		display: flex;
		align-items: center;
	}
	
	.navigazione {
		width: 50%;
		position: absolute;
		padding: 100px;
		text-align: left;
		right: -50%;
		visibility: hidden;
		top: 0;
		z-index: 3;
		background: rgba(0, 0, 0, 0.55);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		height: 100vh;
		transition: right 0.5s ease, visibility 0s 0.5s; /* Aggiunto effetto di transizione */
	}
	
	.navigazione ul li a{
		font-size: 3rem;
	}
	
	.navigazione .menu-down{
		left: 100px;
		display: block;
		// justify-content: space-between; 
	
	}
	
	.navigazione .menu-down .w50{
		width:100%;
	}
	
	.page-template-template-home h1,.page-template-template-home .h1{
		font-size: 5.5rem;
		font-weight: 500;
		line-height: 0.9;
	}
		
	.d-flex{
		display: flex;
	}
	
	.d-inline-flex{
		display: inline-flex;
	}
	
	.align-items-start{
		align-items: start;
	}
	.justify-content-between{
		justify-content: space-between;
	}
	
	.justify-content-start{
		justify-content: start;
	}
	
	.justify-content-end{
		justify-content: end;
	}
	
	.flex-wrap{
		flex-wrap: wrap;
	}
	.justify-content-center{
		justify-content: center;
	}
	.align-items-center{
		align-items: center;
	}
	.flex-column{
		flex-direction: column;
	}
	.touch .parallax {
		background-attachment: scroll !important;
	}
	
	#hero-interna{
		height: 100vh;
		align-items:end;
	}
	
	#hero-interna .container{
		padding-bottom: 80px;
	}
	
	#hero-singolo-servizio {
		
		display: flex;
		position: relative;
		align-items: end;
		justify-content: start;
	}
	
	#hero-interna .ellisse-02{
		position: absolute;
		right: -80px;
		bottom: -40px;
		width: 600px;
		height: 600px;
		opacity: 0.3;
	}
	
	#team_digitalia .p2-fluid{
		padding: clamp(2rem, 6vw, 4rem);
	}
	
	#hero-interna .ellisse-topleft {
		position: absolute;
		right: -80px;
		top: -40px;
		width: 600px;
		height: 600px;
		opacity: 0.3;
	}
	
	#about_digitalia .container-grey{
		padding:100px;
		
		margin: 0 auto;
	}
	#about_digitalia .ellisse-topleft {
		position: absolute;
		right: -80px;
		top: -5%;
		width: 600px;
		height: 600px;
		opacity: 0.3;
	}
	
	.openclose svg{	
		width: 55px;
		height: auto;
	}
	
	.arrow-button{
		width: 150px;
		height: 150px;
		position: relative;
		z-index: 20;
		display: block;
	}
	
	.w10{
		width:10%;
	}
	.w20{
		width:20%;
	}
	
	.w25{
		width:25%;
	}
	
	.w30{
		width:30%;
	}
	
	.w32{
		width:31%;
	}
	
	.w33{
		width:33%;
	}
	
	.w35{
		width: 35%;
	}
	
	.w40{
		width: 40%;
	}
	
	.w45{
		width: 44%;
	}
	
	.w50{
		width: 48%;
	}
	
	.w60{
		width: 58%;
	}
	
	.w70{
		width: 70%;
	}
	
	.w80{
		width: 80%;
	}
	.h80{
		height: 80vh;
	}
		
	.pt30{
		padding-top:30px;
	}
	
	.pt40{
		padding-top:40px;
	}
	
	.pb30{
		padding-bottom:30px;
	}
	
	.mb20{
		margin-bottom:20px;
	}
	
	
	.pr50{
		padding-right:50px;
	}
	
	.ml10{
		margin-right:10px;
	}
	.margin-left{
		margin-left: auto;
	}
	
	.negative-margin-top{
		margin-top: -120px;
	}
	
	.container-grey{
		width: 90%;
		margin: 0 auto;
		border-radius:60px;
		background: rgba(37, 44, 44, 0.4);
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(7.2px);
		-webkit-backdrop-filter: blur(7.2px);		
	}
	
	#singolo-servizio-digitalia .anchorbutton {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 30px;
		background-color: #252C2C;
		border: 1px solid #252C2C;
		padding: 15px 45px;
		font-family: var(--font-dm);
		color: #fff;
		font-weight: 400;
		font-size: 1.1rem;
		margin-right: 10px;
	}
		
	#about_digitalia .servizio h2{
		font-size: 1.4rem;
		padding-bottom: 0;
		color:#999;
	}
	
	#about_digitalia .servizio .px-fluid{
		padding-left: clamp(1rem, 3vw, 2rem);
		padding-right: clamp(1rem, 3vw, 2rem);
	}
	
	.elenco_progetti .slick-dots{
		bottom: -5%;
	}
	
	.progetto img{
		border-radius: 14px;
	}
	
	.elenco_progetti .progetto .image-container{
		position: relative;
		display: inline-block;
		transition: 0.3s;
		aspect-ratio: 5 / 4;
		width:100%;
		overflow:hidden;
	}
	
	.elenco_progetti .progetto .image-container img{
		object-fit: cover;
		height:100%;
	}
	
	.elenco_clienti{
		width: 1140px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	#gdpr,#notfound{
		padding-top: 30px;
	}
	
	.single_cliente{
		width: 25%;
		margin-bottom:20px;
	}
	
	.elenco_servizi_home .servizio .image_fade{
		display: block;
		width: 0px;
		height: 120px;	
		border-radius: 10px;
		visibility: hidden;
		transition: 1s cubic-bezier(0.5, 0, 0.5, 1);
	}
	
	.elenco_servizi_home{
		margin-top: 0;
	}
	
	.elenco_servizi_home .servizio:hover .image_fade{
		width: 200px;
		visibility: inherit;
		transition: 1s;
		display: block;
		margin-right: 20px;
	}
	
	
	.elenco_progetti .image-container::after{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.4);
		opacity:1;
		transition: 0.3s;
		border-radius: 14px;
	}
	
	.fasi .single_fase{
		margin-right:50px;
	}
	
	.elenco_progetti .image-container:hover::after{
		opacity:0 !important;
		transition: 0.3s;
	}
	.hover-image {
		max-width: 100%;
		height: auto;
	}
	
	#casestudy .w60{
		width:60%;
	}
	
	#casestudy .w40{
		width:40%;
		padding-left:50px;
		padding-top: 0;
	}
	
	#casestudy .obiettivi{
		padding-top: 0;
	}
	
	#serviziaggiuntivi .w50{
		padding-left:50px;
		padding-top: 0;
	}
	
	#serviziaggiuntivi .w50 .button{
		margin-bottom:20px;
	}
	

	
	.circle {
		position: absolute;
		width: 90px;
		height: 90px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.9);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
		pointer-events: none;
		transform: translate(-50%, -50%);
		display: none; 
		justify-content: center; 
		align-items: center; 
	}
	
	.circle-text {
		font-size: 14px; 
		color: black;
		display: block;
	}
	
	#metodo_digitalia .red-line{
		position: absolute;
		top: 30px;
		left:0;
		width: 100%;
		height: 1px;
		background-color: rgba(253, 23, 91, 0.2);
	}
	
	
	.down-arrow .arrow-svg .Linea_2 {
		transition: y2 0.3s ease;
	}
	
	#hero_digitalia{
		flex-wrap: nowrap;
		height:100vh;
		align-items:start;
	}
	
	#servizi-digitalia #elenco_servizi{
		overflow: visible;
		padding-top: 0;
		
	}
	
	.hero_intro{
		padding-bottom:0;
	}
	
	#servizi-digitalia .singolo-servizio {
		width: 100%;
		transition: 0.3s;
		display: flex;
		flex-direction: column;
	}
	
	#servizi-digitalia .smallservizio{
		height:800px;
	}
	
	#servizi-digitalia .bigservizio{
		height: 1000px;
	}
	
	#servizi-digitalia .prima_colonna {
		top: -60px;		
		position: relative;
	}
	
	.singolo-servizio .img-servizio img, #articoli_blog .img-articolo img{
		transition: 0.5s;
	}
	.singolo-servizio .img-servizio:hover img, #articoli_blog .img-articolo:hover img{
		transform: scale(1.05);
		transition: 0.5s;
	}
	
	.sezione-sfondo{
		height: 750px;
		min-height: 55vh;
	}
	
	.sezione-sfondo{
		background-attachment: fixed;
		background-size:cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	#footer .ellisse-01 {
		width: 400px;
		height: 400px;
		position: absolute;
		opacity: 0.6;
		animation: moveball01 5s ease-in-out infinite; /* Aggiunta dell'animazione */
		animation-direction: alternate;
	}
	
	#footer .ellisse-02 {
		width: 400px;
		height: 400px;
		position: absolute;
		opacity: 0.6;
		animation: moveball02 8s ease-in-out infinite; /* Aggiunta dell'animazione */
		animation-direction: alternate;
	}
	
	#metodo_digitalia .container-grey{
		padding:100px;
	}
	
	
	#metodo_digitalia span{
		font-size: 2rem;
		padding-top: 0;
	}
	
	#singolo-servizio-digitalia #presentazione {
		padding-top: 0;
	}
	
	#cmplz-manage-consent .cmplz-manage-consent{
		font-size:16px;
	}
	/* .singolo-servizio .img-servizio::after{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		opacity: 0;
		height: 100%;
		background-color: rgba(0,0,0,0.4);
		transition: 0.3s;
		display: none;
		z-index: 3;
	}
	
	.singolo-servizio .img-servizio:hover::after{
		opacity: 1;
		transition: 0.3s;
		display: block;
	} */
	
	#single_news .px2-fluid{
		padding-left: clamp(2rem, 6vw, 4rem);
		padding-right: clamp(2rem, 6vw, 4rem);
	}
	
	#single_news h1{
		font-size: 3rem;
	}
	
	
	.single .single-content h2{
		font-size: 1.75rem;
		margin-bottom: 30px;
		color: var(--rose);
		font-weight:400;
		padding-top:30px;
	}
	
	.single .single-content h3{
		font-size: 1.3rem;
		margin-bottom: 20px;
		color: var(--rose);
		font-weight:400;
	}
	
	.single p{
		margin-bottom: 20px;
		color: #ddd;
	}
	
	.single br{
		display: none;
	}
	
	.single ol{
		list-style: inside;
		list-style-type: lower-alpha;
	}
	
	#obiettivi .bigtitle{
		display: block;
		position: absolute;
		top: -170px;
		left: 0;
		
	}
	
	.single .single-content ul{
		list-style: inside;
		list-style-type: square;
	}
	
	#notfound h3{
		font-size: 1.8rem;
	}
	
	#notfound .ellisse-02{
		position: absolute;
		bottom: 0;
		right:0;
		width: 450px;
		height: 450px;
		opacity: 0.4;
	}
	
	#notfound .notfound-image{
		position: absolute;
		bottom: 0;
		right:0;
		width: 450px;
		height: auto;
	}
	
	#hero_digitalia .down-arrow{
		position: absolute;
		bottom: 120px;
		right:0;
		width: 120px;
		height: 120px;
		border: 1px solid #fff;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: 0.3s;
	}
	
	#hero_digitalia .down-arrow:hover{
		box-shadow: 0 0 30px rgba(255,255,255,0.3);
		transition: 0.3s;
	}
	
	#hero-interna .bigtitle{
		
		letter-spacing: -10px;
	}
	
	.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: 5%;
		z-index: 1;
		outline: none;
		box-shadow: 0 0 10px rgba(0,0,0,0.45);
		border-radius: 50%;
		width: 50px;
		height: 50px;
		background-size: cover;
	}
	.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: 5%;
		box-shadow: 0 0 10px rgba(0,0,0,0.45);
		border-radius: 50%;
		z-index: 1;
		outline: none;
		width: 50px;
		height: 50px;
		background-size: cover;
	}
	
	#hero_digitalia .down-arrow svg{
		height: 40px;
		width: auto;
	}
	
	
	.bigtitle{		
		font-size: 13rem;
		color: rgb(36 36 36);
		line-height:0.9;
		font-family: var(--font-dm);
		font-weight: 700;
		letter-spacing: -13px;
	}
	
	#form_di_contatto, #socialwall{
		overflow: visible;
	}
	
	#form_di_contatto .bigtitle{
		display: block;
		position: absolute;
		top: 3%;
		left:-15%;
	}
	
	#socialwall .bigtitle{
		display: block;
		position: absolute;
		top: -100px;
		right:-9%;
	}
	
	#footer .logo-footer{
		width: 250px;
		height: auto;
	}
	
	#elenco_contatti h3{
		font-family: var(--font-playfair);
		font-style: italic;
	}
	
	#footer h4{
		margin-top: 0;
	}
	
	#elenco_contatti a{
		margin-bottom:0;
	}
	
	.grecaptcha-badge{
		display: none !important;
	}
	.page-template-page-contatti .grecaptcha-badge{
		display: flex !important;
	}
	.certificazioni img{
		width:120px; 
		margin-right:20px;
		margin-bottom:0;
		height: auto;
	}
	
	.certificazioni img.one{
		margin-left:10px;
	}
	#cmplz-manage-consent .cmplz-show{
		font-size: 12px !important;
		padding-top: 5px !important;
		padding-bottom: 5px !important;
		height: 35px !important;
	}
	#landing_digitalia .anchor-link{
		margin-top: 0;
	}
	
	.page-template-template-landing .no-mobile{
		display: inline-block;
	}
	
	.page-template-template-landing .no-desktop{
		display: none;
	}
	#landing_digitalia .container-vantaggi{
		min-height: 100%;
	}
	
	#landing_digitalia #vantaggi .singolo-servizio{
		width:32%;
	}
	
	#landing_digitalia h1{
		padding-top:0;
	}
	
	#domande_frequenti_landing .w60{
		width:60%;
		margin-top: 0;
	}

}
@media only screen and (min-width:1280px) {
	.parallax {
		background-attachment: fixed !important;
	}
	.logo img {
	    max-width: 200px;
	}
	
	.navigazione .menu-down{
		left: 100px;		
		width:90%;
	
	}
	.navigazione .menu-down .w50{
		width:45%;
	}	
}
@media only screen and (min-width:1800px) {

	.progetto .progetto-text{
		padding-bottom: 0;
		display: flex;
		justify-content: space-between;
	}
	
	.progetto .button{
		padding-left:45px;
		padding-right:45px;
	}
	
	#about_digitalia .servizio h2{
		font-size: 2.5rem;
		padding-bottom: 0;
		color:#999;
	}
	
	.navigazione .menu-down{
		/* left: 100px; */
		display: flex;
		justify-content: space-between;
		width:83%;
	
	}
	.navigazione .menu-down .w50{
		width:50%;
	}
	#socialwall .arrow-button{
		position: absolute;
		bottom: 0;
		right:0;
		width: 120px;
		height: 120px;
		border: 1px solid var(--rose);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: 0.3s;
	}
	
	#socialwall .arrow-button:hover{
		box-shadow: 0 0 30px rgba(253, 23, 91, 0.3);
		transition: 0.3s;
	}
	
	#socialwall .arrow-button svg{
		height: 20px;
		width: auto;
	}
	
}

