/*** CSS by Luigi Astarita @ JAM Studio ***/
/* Copyright 2026 JAM Studio */

@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');

/* Variabili  */

:root {
	--c-base: #242730;
	--c-grigiobg: #F3F3F3;
	--c-rossojam: #EF3340;
	--br-1: 20px;
	--br-2: 10px;
	--br-3: 5px;
	--c-azzurro: #0083E4;
	--c-verde: #4EBA00;
	--c-grigio: #606266;
}

@media (max-width: 575.98px) {
	html {
		font-size: 17px;
	}
}

body {
	font-family: "Red Hat Text", sans-serif;
	color: var(--c-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {}

a {
	color: var(--c-azzurro);
	text-decoration: none;
	transition: color .2s;
}

a:hover {
	color: var(--c-blu);
}

p {
	margin-bottom: 0;
}

.console {
	display: none;
}

@supports (corner-shape:squircle) {

	body *,
	.btn {
		corner-shape: squircle;
		--br-1: 30px;
		--br-2: 20px;
		--br-3: 10px;
	}
}

/* Limite animazioni */

#visibles {
	position: fixed;
	bottom: 50px;
	width: 100%;
	height: 1px;
	z-index: 1000;
	display: block;
}

@media (max-width: 575.98px) {
	#visibles {
		bottom: 50px;
	}
}

/*** Header ***/

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	z-index: 10;
	padding: 0;
}

.navbar .container {
	background: rgba(255, 255, 255, .8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: var(--br-1);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .8) inset, 0 0 20px rgba(255, 255, 255, .9) inset, 0 15px 30px rgba(0, 0, 0, .2);
	align-items: stretch;
	position: relative;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 4px;
	margin: 1rem auto;
	width: calc(100% - 2rem) !important;
	max-width: 1600px;
}

.navbar-nav {
	height: 100%;
	padding: 4px 0;
}

.navbar-brand {
	padding: .6rem;
	color: var(--c-base);
	font-family: "Funnel Display", sans-serif;
	font-weight: 700;
}

.navbar-brand img {
	width: 80px;
	height: auto;
}

.navbar-brand svg {
	width: 40px;
	height: auto;
}

.navbar-brand svg:last-of-type {
	width: 100px;
	height: auto;
}

.nav-link {
	color: var(--c-base);
	font-weight: 600;
	padding: .5rem 1rem calc(.5rem + 2px) !important;
	font-size: 1rem;
	transition: transform .2s, border-radius .2s, background .2s, color .2s, box-shadow .2s;
	font-family: "Funnel Display", sans-serif;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	border-radius: 22px;
}

.navbar .nav-item:not(:last-of-type) .nav-link.active {
	color: var(--c-rossojam) !important;
	font-weight: 700;
}

.nav-link:hover {
	background: rgba(0, 0, 0, .05);
	color: var(--c-base);
}

.navbar .nav-item:last-of-type .nav-link {
	background: var(--c-base);
	border-radius: 22px;
	padding: .7rem 1.5rem calc(.7rem + 2px) !important;
	color: #FFF;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.navbar .nav-item:last-of-type .nav-link.active {
	background: var(--c-rossojam);
}

.navbar .nav-item:last-of-type .nav-link:hover {
	background: var(--c-rossojam);
	box-shadow: 0 10px 30px rgba(239, 51, 64, .7);
}

@media (min-width: 576px) {
	.navbar .nav-item:last-of-type .nav-link:hover {
		padding: 0 1.5rem 2px !important;
		transform: scale(1.2);
		border-radius: 14px;
	}
}

.navbar .nav-item:last-of-type .nav-link svg {
	margin: 3px 6px 0 0;
}

.navbar-toggler {
	box-shadow: none !important;
	padding: .25rem 1.25rem;
}

.whatsapp {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	display: block;
	width: 67px;
	height: 67px;
	border-radius: 40px;
	background: var(--c-base);
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform .2s, background .2s;
	corner-shape: round;
}

.whatsapp:hover {
	transform: scale(1.2);
	background: #25D366;
}

/*** Home ***/

/* Hero */

.hero {
	width: 100%;
	/* height: 100vh; */
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	padding: 8rem 1rem;
}

.herobg {
	display: block;
	content: "";
	width: 80%;
	height: 80%;
	transform: translate(-50%, -50%) scale(1.4);
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	background: radial-gradient(closest-side, var(--after-color) 0%, var(--after-color2) 100%);
}

.herobg-1 {
	--after-color: rgba(251, 143, 143, 1);
	--after-color2: rgba(246, 207, 207, 0);
	/* animation: herobg-1 15s infinite;
	animation-timing-function: linear; */
	top: 0;
	left: 0;
}

@keyframes herobg-1 {
	0% {
		top: 0;
		left: 0;
	}

	25% {
		top: 0;
		left: 100%;
	}

	50% {
		top: 100%;
		left: 100%;
	}

	75% {
		top: 100%;
		left: 0;
	}

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

.herobg-2 {
	--after-color: rgba(138, 222, 252, 1);
	--after-color2: rgba(138, 222, 252, 0);
	/* animation: herobg-2 15s infinite;
	animation-timing-function: linear; */
	top: 0;
	left: 100%;
}

@keyframes herobg-2 {
	0% {
		top: 0;
		left: 100%;
	}

	25% {
		top: 100%;
		left: 100%;
	}

	50% {
		top: 100%;
		left: 0;
	}

	75% {
		top: 0;
		left: 0;
	}

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

.herobg-3 {
	--after-color: rgba(153, 215, 107, 1);
	--after-color2: rgba(153, 215, 107, 0);
	/* animation: herobg-3 15s infinite;
	animation-timing-function: linear; */
	top: 100%;
	left: 100%;
}

@keyframes herobg-3 {
	0% {
		top: 100%;
		left: 100%;
	}

	25% {
		top: 100%;
		left: 0;
	}

	50% {
		top: 0;
		left: 0;
	}

	75% {
		top: 0;
		left: 100%;
	}

	100% {
		top: 100%;
		left: 100%;
	}
}

.herobg-4 {
	--after-color: rgba(246, 197, 118, 1);
	--after-color2: rgba(246, 197, 118, 0);
	/* animation: herobg-4 15s infinite;
	animation-timing-function: linear; */
	top: 100%;
	left: 0;
}

@keyframes herobg-4 {
	0% {
		top: 100%;
		left: 0;
	}

	25% {
		top: 0;
		left: 0;
	}

	50% {
		top: 0;
		left: 100%;
	}

	75% {
		top: 100%;
		left: 100%;
	}

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

.hero-home .titolo {
	font-family: "Funnel Display", sans-serif;
	font-size: clamp(2.3rem, 5vw, 5rem);
	text-align: center;
	max-width: 80%;
	line-height: 90%;
	font-weight: 800;
	margin-bottom: 1.3rem;
	position: relative;
	z-index: 2;
}

@media (max-width: 575.98px) {
	.hero-home .titolo {
		max-width: 90%;
		line-height: 100%;
	}
}

.hero-home .titolo b {
	font-weight: 800;
	background: -webkit-linear-gradient(180deg, rgba(78, 186, 0, 1) 20%, rgba(6, 179, 255, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	position: relative;
	transition: transform .5s;
}

/* .hero-home .titolo b:hover {
	animation: crescere 3s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: backwards;
}

@keyframes crescere {
	0% {
		transform: scale(1);
	}

	70% {
		transform: scale(50);
	}

	100% {
		transform: scale(1);
	}
} */

.hero-home p {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	text-align: center;
	max-width: 70%;
	line-height: 140%;
	color: rgba(0, 0, 0, .5);
	position: relative;
	z-index: 1;
	margin-bottom: 1.5rem;
}

@media (max-width: 575.98px) {
	.hero-home p {
		max-width: 90%;
	}
}

.hero-home p a {
	color: var(--c-base);
	border-bottom: 3px dotted rgba(0, 0, 0, .2);
	font-weight: 600;
}

.hero-home p a:hover {
	color: var(--c-azzurro);
	border-bottom: 3px dotted var(--c-azzurro);
}

.hero-home small {
	font-size: clamp(1rem, 2vw, 1.2rem);
	text-align: center;
	max-width: 70%;
	line-height: 140%;
	color: var(--c-rossojam);
	position: relative;
	z-index: 1;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: .5rem;
}

.hero .btns {
	position: relative;
	z-index: 1;
	padding-top: 1rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.hero .btn {
	font-weight: 700;
	font-size: 1.2rem;
	font-size: clamp(1.1rem, 1.2vw, 1.2rem);
	padding: 1.2rem 2rem;
	border: none;
	display: inline-flex;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
	margin: .5rem;
	border-radius: var(--br-1);
	transition: transform .2s, background .2s, color .2s, box-shadow .2s;
	font-family: "Funnel Display", sans-serif;
}

.hero .btn:hover {
	transform: scale(1.1);
}

.hero .btn svg {
	margin-left: 1rem;
}

.hero .btn svg * {
	stroke: var(--c-rossojam);
}

.hero .btn-primary {
	background: var(--c-base);
}

.hero .btn-light:hover {
	background: var(--c-base);
	color: #FFF;
}

.hero .btn-primary:hover svg *,
.hero .btn-light:hover svg * {
	stroke: #FFF;
}

/* Testo scorrevole */

.trust-cont {
	overflow: hidden;
	width: 100%;
	height: 295px;
	margin: -147.5px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.trust-jam {
	overflow: hidden;
	width: 104%;
	height: 95px;
	display: flex;
	align-items: center;
	background: #02394F;
	background: linear-gradient(90deg, rgba(2, 57, 79, 1) 0%, rgba(0, 0, 0, 1) 100%);
	transform: rotate(-2deg);
	margin-left: -2%;
}

.trust-jam .rail {
	display: flex;
	height: 95px;
}

.trust-jam .rail span {
	white-space: nowrap;
	font-weight: 900;
	line-height: 100%;
	margin: 0 4rem 0 0;
	color: #FFF;
	display: flex;
	align-items: center;
	font-family: "Funnel Display", sans-serif;
	font-size: 5rem;
}

.trust-jam .rail span strong {
	font-family: "Funnel Display", sans-serif;
	font-size: clamp(2.5rem, 4vw, 5rem);
	padding-right: 1rem;
	display: flex;
	align-items: center;
	padding-bottom: 2px;
}

.trust-jam .rail span:nth-of-type(1) strong,
.trust-jam .rail span:nth-of-type(5) strong {
	background: -webkit-linear-gradient(-45deg, rgba(186, 0, 152, 1) 20%, rgba(6, 179, 255, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.trust-jam .rail span:nth-of-type(2) strong,
.trust-jam .rail span:nth-of-type(6) strong {
	background: -webkit-linear-gradient(-45deg, rgba(248, 204, 12, 1) 20%, rgba(96, 229, 9, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.trust-jam .rail span:nth-of-type(3) strong,
.trust-jam .rail span:nth-of-type(7) strong {
	background: -webkit-linear-gradient(-45deg, rgba(33, 61, 199, 1) 20%, rgba(10, 136, 253, 1) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.trust-jam .rail span strong img {
	width: 100px;
	height: auto;
}

.trust-jam .rail span em {
	font-style: normal;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	display: inline-block;
	padding-bottom: 6px;
}

/* Elementi standard */

.section {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10rem 0;
	overflow: hidden;
	text-align: center;
	position: relative;
	--before-color: rgba(156, 219, 248, 1);
	--before-color2: rgba(156, 219, 248, 0);
	--after-color: rgba(187, 187, 187, 1);
	--after-color2: rgba(187, 187, 187, 0);
}

.section::before,
.section::after {
	display: block;
	content: "";
	width: 100%;
	height: 400px;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 0;
}

.section::before {
	top: -200px;
	background: radial-gradient(closest-side, var(--before-color) 0%, var(--before-color2) 100%);
}

.section::after {
	bottom: -200px;
	background: radial-gradient(closest-side, var(--after-color) 0%, var(--after-color2) 100%);
}

.section-content {
	position: relative;
	z-index: 1;
}

.section2 {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10rem 0;
	margin: -8rem 0;
	overflow: hidden;
	text-align: center;
	position: relative;
	--before-color: #02394F;
	--before-color2: #061B25;
	z-index: 1;
}

.section2::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 3rem;
	bottom: 3rem;
	z-index: 0;
	transform: rotate(2deg) scaleX(1.2);
	background: linear-gradient(90deg, var(--before-color) 0%, var(--before-color2) 100%);
}

.section2.animated::before {
	animation: section2 1s;
	animation-fill-mode: both;
}

@keyframes section2 {
	0% {
		top: 50%;
		bottom: 50%;
		transform: rotate(0) scaleX(1.2);
	}

	100% {
		top: 5rem;
		bottom: 5rem;
		transform: rotate(2deg) scaleX(1.2);
	}
}

.section2rev::before {
	animation: section2rev 1s;
	animation-fill-mode: both;
}

@keyframes section2rev {
	0% {
		top: 50%;
		bottom: 50%;
		transform: rotate(0) scaleX(1.2);
	}

	100% {
		top: 5rem;
		bottom: 5rem;
		transform: rotate(-2deg) scaleX(1.2);
	}
}

.intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
}

.animated .intro {
	animation: section2intro 1s;
	animation-fill-mode: both;
	animation-delay: .5s;
}

@keyframes section2intro {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: lowercase;
	font-size: 1.2rem;
	color: #FFF;
	line-height: 100%;
	background: var(--c-rossojam);
	border-radius: 20px;
	font-weight: 500;
	padding: .4rem 2rem .5rem;
	font-family: "Funnel Display", sans-serif;
}

.titolo {
	font-weight: 800;
	color: var(--c-base);
	display: block;
	margin: .5rem auto;
	font-size: clamp(2rem, 2.8vw, 2.8rem);
	font-family: "Funnel Display", sans-serif;
	text-align: center;
	max-width: 1000px;
	line-height: 100%;
}

.titolo-small {
	font-size: clamp(1.5rem, 2.5vw, 3rem);
}

.section2 .titolo {
	color: #FFF;
	font-weight: 600;
	font-size: clamp(1.2rem, 2vw, 2rem);
	font-size: clamp(2rem, 2.5vw, 2.5rem);
}

.section2 .titolo-small {
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}

.sottotitolo {
	display: block;
	font-size: 1.1rem;
	margin: 0 auto;
	color: var(--c-base);
	max-width: 1000px;
	line-height: 130%;
	text-align: center;
}

.sottotitolo p:not(:last-of-type) {
	margin-bottom: 1rem;
}

.section2 .sottotitolo {
	color: rgba(255, 255, 255, .6);
}

.btn-more {
	font-weight: 600;
	font-size: 1.2rem;
	padding: 1.1rem 3rem;
	border: none;
	display: inline-flex;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
	border-radius: 10px;
	transition: transform .2s, background .2s, color .2s, box-shadow .2s;
	font-family: "Funnel Display", sans-serif;
	line-height: 110%;
}

.btn-more:hover {
	transform: scale(1.1);
}

.btn-more svg {
	margin-left: 1rem;
}

.btn-more svg * {
	stroke: var(--c-rossojam);
	transition: stroke .2s;
}

.btn-more:not(.btn-light):hover svg * {
	stroke: #FFF;
}

/* Servizi */

.servizi {
	--before-color: rgba(156, 219, 248, .7);
	--before-color2: rgba(156, 219, 248, 0);
	--after-color: rgba(187, 187, 187, 0);
	--after-color2: rgba(187, 187, 187, 0);
}

.servizi .sottotitolo {
	max-width: 600px;
}

.servizi-core {
	display: flex;
	padding-top: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.servizio {
	border-radius: var(--br-1);
	margin: 1rem;
	max-width: 430px;
	transition: transform 1s, opacity 1s;
	transform: translateY(300px) scale(.05);
	opacity: 0;
	background: var(--c-grigiobg);
	padding-bottom: 1rem;
}

.show .servizio {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.servizio:hover {
	transform: translateY(0) scale(1.1);
	transition: transform .2s, opacity .2s;
}

.servizio div {
	padding: 2rem;
	border-radius: var(--br-1);
	margin-bottom: 1rem;
}

.servizio-siti-web div {}

.servizio-software-su-misura div {
	transition-delay: .2s;
}

.servizio-consulenza-web div {
	transition-delay: .4s;
}

.servizio-siti-web div {
	background: url(../images/siti-web-bg.jpg) center /100%;
}

.servizio-software-su-misura div {
	background: url(../images/software-su-misura-bg.jpg) center /100%;
}

.servizio-consulenza-web div {
	background: url(../images/consulenza-strategica-bg.jpg) center /100%;
}

.servizio>div>svg {
	margin: 0 0 1rem;
	transform: scale(.05);
	opacity: 0;
	transition: transform 1.5s, opacity .5s;
	transition-delay: .2s;
}

.show .servizio>div>svg {
	transform: scale(1);
	opacity: 1;
}

.servizio strong {
	font-family: "Funnel Display", sans-serif;
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	line-height: 100%;
	margin-bottom: .5rem;
	display: block;
	opacity: 0;
	transition: opacity 1s;
	transition-delay: .3s;
	color: #FFF;
}

.show .servizio strong {
	opacity: 1;
}

.servizio p {
	color: rgba(255, 255, 255, .7);
	line-height: 130%;
	opacity: 0;
	transition: opacity 1s;
	transition-delay: .6s;
}

.show .servizio p {
	opacity: 1;
}

.servizio b {
	width: 100%;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-base);
	opacity: 0;
	transition: opacity 1s;
	transition-delay: .9s;
}

.show .servizio b {
	opacity: 1;
}

.servizio b svg {
	margin-left: .5rem;
}

.servizio b svg * {
	stroke: var(--c-base);
}

.altri-servizi {
	display: flex;
	justify-content: center;
}

.tutti-i-servizi {
	border-radius: var(--br-1);
	margin: 1rem;
	padding: 2rem 2rem 0;
	max-width: 430px;
	transition: transform 1s, opacity 1s;
	transform: translateY(300px) scale(.05);
	opacity: 0;
	background: var(--c-grigiobg);
	transition-delay: .9s;
}

.show .tutti-i-servizi {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.tutti-i-servizi strong {
	font-family: "Funnel Display", sans-serif;
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	line-height: 100%;
	margin-bottom: .5rem;
	display: block;
}

.tutti-i-servizi p {
	color: var(--c-base);
	line-height: 130%;
	margin-bottom: 1rem;
}

.tutti-i-servizi .btn-more {
	margin: .5rem .5rem -2rem;
}

/* Tecnologie */

.tecnologie ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.tecnologie ul li {
	padding: 1rem 1.5rem 0;
	animation: marchi 1s;
	animation-fill-mode: both;
}

@keyframes marchi {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.tecnologie ul li:nth-of-type(1) {
	animation-delay: 1.5s;
}

.tecnologie ul li:nth-of-type(2) {
	animation-delay: 1.6s;
}

.tecnologie ul li:nth-of-type(3) {
	animation-delay: 1.7s;
}

.tecnologie ul li:nth-of-type(4) {
	animation-delay: 1.8s;
}

.tecnologie ul li:nth-of-type(5) {
	animation-delay: 1.9s;
}

.tecnologie ul li:nth-of-type(6) {
	animation-delay: 2s;
}

.tecnologie ul li:nth-of-type(7) {
	animation-delay: 2.1s;
}

.tecnologie ul li:nth-of-type(8) {
	animation-delay: 2.2s;
}

.tecnologie ul li:nth-of-type(9) {
	animation-delay: 2.3s;
}

.tecnologie ul li:nth-of-type(10) {
	animation-delay: 2.4s;
}

/* Portfolio */

.portfolio {
	margin-top: -10rem;
	--before-color: #004561;
	--before-color2: #061B25;
}

.intro-portfolio {
	align-items: flex-start;
}

.portfolio .titolo {
	font-size: clamp(2rem, 3vw, 3rem);
	text-align: left;
	margin-left: 0;
}

.portfolio .sottotitolo {
	text-align: left;
	margin: 0 0 3rem;
}

@media (max-width: 575.98px) {
	.portfolio .sottotitolo {
		text-align: left;
		margin: 0 0 1rem;
	}
}

.portfolio .section-content {
	width: 100%;
}

.intro-portfolio {
	max-width: 1300px;
	margin: auto;
}

.project {
	background: #FFF;
	border-radius: var(--br-1);
	overflow: hidden;
	display: flex;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
	flex-direction: column;
}

.portfolio-splide .project {
	margin: 0 1rem 4rem;
}

.portfolio .project {
	max-width: 640px;
	width: calc(100% - 2rem) !important;
}

.project-image {
	width: 40%;
	width: 100%;
	height: 300px;
	position: relative;
}

.project-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	transform: scale(1.01);
}

.project-image span {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	padding: .4rem 1rem;
	color: #FFF;
	font-weight: 600;
	background: rgba(0, 0, 0, .3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--br-2);
	font-size: .9rem;
}

.project-description {
	width: 60%;
	width: 100%;
	text-align: left;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
}

.project-description strong {
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	margin-top: auto;
	font-family: "Funnel Display", sans-serif;
}

.project-description p {
	margin-bottom: .5rem;
	line-height: 130%;
	display: block;
}

.project-description a {
	font-family: "Funnel Display", sans-serif;
	font-weight: 800;
	color: var(--c-base);
	display: flex;
	align-items: center;
	gap: .4rem;
}

.project-description a svg {
	width: 14px;
	height: auto;
}

.project-description a svg * {
	stroke: var(--c-rossojam);
}

.portfolio-splide .splide__arrows {
	position: absolute;
	bottom: 0;
	left: 1rem;
	width: 110px;
	height: 50px;
}

.portfolio-splide .splide__arrow {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, .1);
}

.splide__arrow svg {
	display: none;
}

.splide__arrow::before {
	content: "";
	background: url(../images/icons/more.svg) no-repeat center;
	display: block;
	width: 50px;
	height: 50px;
}

.splide__arrow--prev {
	left: 0;
}

.splide__arrow--prev::before {
	transform: rotate(180deg);
}

.splide__arrow--next {
	right: 0;
}

.portfolio-more {
	text-align: right;
	padding: 0 1rem;
}

.portfolio .btn-more {
	background: #FFF;
	color: var(--c-base);
	transform: translateY(-50px);
	border-radius: var(--br-1);
}

@media (max-width: 575.98px) {
	.portfolio .btn-more {
		padding: .65rem 1.5rem;
	}
}

/* integrazioni */

.integrazioni {
	--after-color: rgba(235, 245, 234, 1);
	--after-color2: rgba(235, 245, 234, 0);
}

.integrazioni::after {
	background: #CB2DF4;
	background: linear-gradient(90deg, rgba(203, 45, 244, 1) 0%, rgba(251, 45, 81, 1) 15%, rgba(253, 126, 7, 1) 32%, rgba(243, 205, 0, 1) 50%, rgba(119, 223, 17, 1) 68%, rgba(28, 227, 243, 1) 84%, rgba(2, 62, 255, 1) 100%);
	filter: blur(100px);
	bottom: -350px;
}

.partners {
	max-width: 1200px;
	margin: 0 auto;
}

.partners ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	justify-content: center;
	gap: 0 2rem;
}

@media (max-width: 575.98px) {
	.partners ul {
		gap: 0;
	}
}

.partners ul li {
	width: 200px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 575.98px) {
	.partners ul li {
		width: 50%;
		padding: 0;
	}
}

.partners ul li::after {
	width: 1px;
	height: 100%;
	content: "";
	border-right: 1px solid rgba(0, 0, 0, .1);
	display: block;
	height: 80%;
	position: absolute;
	right: -1rem;
}

@media (max-width: 575.98px) {
	.partners ul li::after {
		right: 0;
	}
}

.partners ul li img {
	width: 100%;
	height: auto;
	/* filter: grayscale(1); */
	transform: scale(.9);
}

/* AI */

.ai {
	--before-color: rgba(6, 28, 37, 1);
	--before-color2: rgba(2, 2, 4, 1);
	padding: 7rem 0;
}

.intro-ai {
	display: flex;
	flex-direction: row;
}

@media (max-width: 575.98px) {
	.intro-ai {
		flex-direction: column;
	}
}

.intro-ai div h2 {
	text-align: left;
}

.intro-ai .titolo {
	text-align: left;
}

.intro-ai .sottotitolo {
	text-align: left;
}

.ai-icon {
	position: relative;
}

.ai .ai-glow {
	position: absolute;
	top: 0;
	left: 0;
	animation: glow 7s infinite;
}

@keyframes glow {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}

	75% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/* Assistenza */

.assistenza {
	--after-color: rgba(156, 219, 248, 1);
	--after-color2: rgba(156, 219, 248, 0);
}

.assistenza::before {
	background: #CB2DF4;
	background: linear-gradient(90deg, rgba(203, 45, 244, 1) 0%, rgba(251, 45, 81, 1) 15%, rgba(253, 126, 7, 1) 32%, rgba(243, 205, 0, 1) 50%, rgba(119, 223, 17, 1) 68%, rgba(28, 227, 243, 1) 84%, rgba(2, 62, 255, 1) 100%);
	filter: blur(100px);
	top: -350px;
}

.assistenza::after {
	bottom: -250px;
}

.assistenza .sottotitolo {
	max-width: 800px;
}

.servizi-assistenza {
	background: rgba(0, 0, 0, .1);
	border-radius: var(--br-1);
	padding: 2rem;
	max-width: 1200px;
	margin: 1rem auto;
}

@media (max-width: 575.98px) {
	.servizi-assistenza {
		padding: 1.2rem 1.5rem;
		margin: 1rem;
	}
}

.servizi-assistenza img {
	float: left;
	margin: -7rem -2rem -1rem -3rem;
}

.servizi-assistenza ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

.servizi-assistenza ul li {
	display: inline;
	font-weight: 700;
	font-size: 1.3rem;
	text-align: center;
	line-height: 180%;
}

@media (max-width: 575.98px) {
	.servizi-assistenza ul li {
		display: block;
		font-size: 1.1rem;
		text-align: left;
		padding-left: 1rem;
		position: relative;
		line-height: 130%;
		margin-bottom: 1rem;
		font-weight: 600;
	}
}

.servizi-assistenza ul li::before {
	display: inline-block;
	content: "●";
	padding: 0 1rem;
	color: var(--c-verde);
}

@media (max-width: 575.98px) {
	.servizi-assistenza ul li::before {
		padding: 0;
		position: absolute;
		left: 0;
	}
}

@media (min-width: 576px) {
	.servizi-assistenza ul li:first-of-type::before {
		display: none;
	}
}

.assistenza .btn-more {
	margin-bottom: -4rem;
}

@media (max-width: 575.98px) {
	.assistenza .btn-more {
		padding: 1.1rem 1.5rem;
	}
}

/* Chi siamo */

.chi-siamo::before {
	transform: rotate(-2deg) scaleX(1.2) !important;
	background: radial-gradient(circle, var(--before-color) 0%, var(--before-color2) 100%);
}

@media (min-width: 576px) {
	.intro-chi-siamo {
		transform: rotate(-2deg);
	}
}

.percorso {
	display: flex;
	align-items: center;
	background: url(../images/stash.webp) repeat-x center;
	background-size: auto 4px;
}

@media (max-width: 575.98px) {
	.percorso {
		background-size: 12px 4px;
	}
}

.percorso b {
	color: #FFF;
	border: 4px solid #FFF;
	border-radius: 40px;
	padding: 1rem 1.5rem;
	font-size: 2rem;
	line-height: 100%;
	background: var(--before-color);
}

@media (max-width: 575.98px) {
	.percorso b {
		font-size: 1.4rem;
		margin-right: 2rem;
	}
}

.percorso .eyebrow {
	margin: 0 6rem;
}

@media (max-width: 575.98px) {
	.percorso .eyebrow {
		display: none;
	}
}

.percorso svg {
	margin-left: 2rem;
	margin-top: -1px;
}

@media (max-width: 575.98px) {
	.percorso svg {
		margin-left: 0;
	}
}

/* Contattaci */

.contattaci::after {
	background: #CB2DF4;
	background: linear-gradient(90deg, rgba(203, 45, 244, 1) 0%, rgba(251, 45, 81, 1) 15%, rgba(253, 126, 7, 1) 32%, rgba(243, 205, 0, 1) 50%, rgba(119, 223, 17, 1) 68%, rgba(28, 227, 243, 1) 84%, rgba(2, 62, 255, 1) 100%);
	filter: blur(100px);
	bottom: -350px;
}

.quick-contacts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.quick-contacts a {
	display: inline-block;
	color: var(--c-base);
	padding: 0 0 1rem;
}

.quick-contacts a i {
	background: var(--c-base);
	border-radius: 50px;
	vertical-align: middle;
	margin-right: .5rem;
	width: 52px;
	height: 52px;
	display: inline-flex;
	justify-content: center;
	align-content: center;
	padding: .8rem;
}

.quick-contacts a img {
	width: 32px;
	height: auto;
}

.quick-contacts span {
	display: inline-flex;
	flex-direction: column;
	text-align: left;
	align-items: flex-start;
	justify-content: center;
	vertical-align: middle;
	line-height: 120%;
}

.quick-contacts span label {
	font-size: .9rem;
}

.quick-contacts span strong {
	font-size: 1.1rem;
}

.contattaci form {
	background: var(--c-grigiobg);
	background: #EFEFEF;
	border-radius: var(--br-1);
	padding: 3rem 3rem 0;
	position: relative;
	max-width: 840px;
	width: 100%;
	margin: 1rem auto 3rem;
	text-align: left;
}

@media (max-width: 575.98px) {
	.contattaci form {
		padding: 1.5rem 1.5rem 0;
		width: calc(100% - 2rem);
	}
}

.contattaci form .form-label {
	margin-bottom: 0;
	padding-left: .3rem;
}

.contattaci form .form-control {
	border-radius: 0;
	padding: .8rem;
	border-color: #DEDEDE;
}

.contattaci form .btn-more {
	margin: 0 auto -2rem;
	display: block;
}

/*** Footer ***/

.footer {}

.footer::before {
	bottom: -5rem;
	transform: rotate(-2deg) scaleX(1.2);
}

.footer-brand {
	margin-bottom: 1rem;
	display: block;
	text-align: center;
}

.footer-brand svg {
	width: 60px;
	height: auto;
	display: block;
	margin: auto;
}

.footer-brand svg:last-of-type {
	width: 120px;
	margin-top: .75rem;
}

@media (max-width: 575.98px) {
	.footer-brand svg {
		width: 40px;
	}

	.footer-brand svg:last-of-type {
		width: 100px;
		margin-top: .5rem;
	}
}

.footer-brand svg:last-of-type * {
	fill: #FFF;
}

.footer-nav {
	display: flex;
	flex-direction: row;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	padding: 1rem;
	margin: 0;
	justify-content: center;
	list-style: none;
	flex-wrap: wrap;
}

@media (max-width: 575.98px) {
	.footer-nav {
		border-bottom: none;
		padding: 0 1rem;
	}
}

@media (max-width: 575.98px) {
	.footer-nav .nav-item {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, .2);
	}
}

.footer-nav .nav-link {
	color: rgba(255, 255, 255, .85);
	transition: color .2s;
	text-align: center;
}

.footer-nav .nav-link:hover {
	color: rgba(255, 255, 255, 1);
}

.footer-nav .nav-link.active {
	color: var(--c-rossojam);
}

.footer-nav:last-of-type .nav-link {
	color: rgba(255, 255, 255, .5);
	transition: color .2s;
}

.footer-nav:last-of-type .nav-link:hover {
	color: rgba(255, 255, 255, 1);
}

.footer-nav .nav-link.active {
	box-shadow: none;
}

.footer-address {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	padding: 1rem;
	color: rgba(255, 255, 255, .5);
}

@media (max-width: 575.98px) {
	.footer-address {
		padding: .5rem 0;
		margin: 0 1rem;
	}
}

.footer-address a {
	color: rgba(255, 255, 255, .5);
	transition: color .2s;
}

.footer-address a svg * {
	stroke: rgba(255, 255, 255, 1);
	opacity: .7;
	transition: stroke .2s, opacity .2s;
}

.footer-address:hover a {
	color: rgba(255, 255, 255, 1);
}

.footer-address:hover a svg * {
	stroke: rgba(255, 255, 255, 1);
	opacity: 1;
}

.footer-copyright {
	color: rgba(255, 255, 255, .5);
	padding: 1rem;
	margin-bottom: 0;
}

@media (max-width: 575.98px) {
	.footer-copyright {
		padding: .5rem 1rem;
	}
}

#dati-societari .modal-body {
	padding: 0;
	color: #FFF;
	background: transparent;
}

#dati-societari .modal-body a {
	color: #FFF;
}

/*** Modali ***/


.modal {
	--br-modal: 7px;
}

.modal-content {
	/* background: rgba(0, 0, 0, .2); */
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 2px solid rgba(255, 255, 255, .3);
	border-radius: 20px;
	box-shadow: 0 0 20px 5px rgba(255, 255, 255, .2) inset, 0 10px 40px rgba(0, 0, 0, .3);
	position: relative;
	overflow: visible !important;
}

.modal-header {
	border: none;
	color: #FFF;
	position: relative;
}

.modal-content::before {
	width: 100%;
	height: 2px;
	content: "";
	display: block;
	background: #ffffff;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .6) 40%, rgba(255, 255, 255, .6) 60%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	top: -2px;
	left: 0;
}

.modal-body {
	background: rgba(255, 255, 255, 1);
	margin: 0 1rem;
	border-radius: var(--br-modal);
	padding: .5rem;
}

.modal-body .card {
	margin: 0;
}

.modal-footer {
	border: none;
}

.modal-footer .btn {
	border-radius: var(--br-modal);
	font-weight: 700;
	padding: .75rem 1.5rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
	border: 2px solid rgba(255, 255, 255, .2);
}

/*** Animazioni ***/

.animated {}

.animated *,
.animated *::before {
	animation-play-state: paused !important;
	animation-fill-mode: both !important;
}

.animated.show *,
.animated.show *::before {
	animation-play-state: running !important;
}

.del-1 {
	animation-delay: .1s !important;
}

.del-2 {
	animation-delay: .2s !important;
}

.del-3 {
	animation-delay: .3s !important;
}

.del-4 {
	animation-delay: .4s !important;
}

.del-5 {
	animation-delay: .5s !important;
}

.del-6 {
	animation-delay: .6s !important;
}

.del-7 {
	animation-delay: .7s !important;
}

.del-8 {
	animation-delay: .8s !important;
}

.del-9 {
	animation-delay: .9s !important;
}

.del-10 {
	animation-delay: 1s !important;
}

.del-11 {
	animation-delay: 1.1s !important;
}

.fade-in {
	animation: fade-in 1s;
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fade-left {
	animation: fade-left 1s;
}

@keyframes fade-left {
	0% {
		opacity: 0;
		transform: translateX(-500px);
	}

	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}

.fade-right {
	animation: fade-right 1s;
}

@keyframes fade-right {
	0% {
		opacity: 0;
		transform: translateX(500px);
	}

	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}

.fade-bottom {
	animation: fade-bottom 1s;
}

@keyframes fade-bottom {
	0% {
		opacity: 0;
		transform: translateY(300px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

.fade-top {
	animation: fade-top 1s;
}

@keyframes fade-top {
	0% {
		opacity: 0;
		transform: translateY(-300px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

.fade-flip {
	animation: fade-flip 1s;
	transform-style: preserve-3d;
	perspective: 1000px;
}

@keyframes fade-flip {
	0% {
		opacity: 0;
	}

	99% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

.fade-zoom-in {
	animation: fade-zoom-in 1s;
}

@keyframes fade-zoom-in {
	0% {
		opacity: 0;
		transform: scale(.1);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.border-in {
	position: relative;
}

.border-in::before {
	position: absolute;
	content: "";
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	animation: border-in 1s;
}

@keyframes border-in {
	0% {
		border: 1000px solid #FFF;
	}

	100% {
		border: 0px solid #FFF;
	}
}

/*** Pagina Portfolio ***/

.hero-progetto {
	height: 90vh;
	min-height: 90vh;
}

@media (max-width: 767.98px) {
	.hero-progetto {
		height: 70vh;
		min-height: 70vh;
	}
}

.hero-cliente {
	background: center;
	background-size: cover;
}

.intro-progetto {
	background: #FFF;
	margin-top: -4rem;
	position: relative;
	z-index: 1;
	padding: 0 3rem;
	border-radius: var(--br-1);
	box-shadow: -20px -20px 50px rgba(0, 0, 0, .2);
}

@media (max-width: 767.98px) {
	.intro-progetto {
		padding: 0 1rem;
		margin-top: -1rem;
	}
}

.intro-progetto .intro {
	justify-content: flex-start;
	align-items: flex-start;
	animation: none;
}

.intro-progetto .eyebrow {
	margin: -1rem 0 1rem;
}

.intro-progetto .titolo {
	margin: .3rem 0 1rem;
}

.foto-progetto {
	padding: 0;
}

@media (min-width: 992px) {
	.foto-progetto {
		position: relative;
		min-height: 0;
	}

	.project-splide {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		overflow: hidden;
	}

	.project-splide .splide {
		height: 100%;
	}

	.project-splide .splide__track {
		height: 100%;
	}

	.project-splide .splide__list {
		height: 100%;
	}
}

.project-splide .splide__slide {
	overflow: hidden;
}

.project-splide .splide__slide a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.project-splide .splide__slide a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 991.98px) {
	.project-splide {
		position: relative;
		width: 100%;
		height: auto;
	}

	.project-splide .splide {
		height: auto;
	}

	.project-splide .splide__track {
		height: auto;
	}

	.project-splide .splide__slide {
		aspect-ratio: 4 / 3;
	}

}

@media (max-width: 575.98px) {
	.project-splide .splide__slide {
		aspect-ratio: 4 / 3;
	}
}

.project-splide .splide__arrows {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50px;
	z-index: 2;
}

.project-splide .splide__arrow {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, .1);
	opacity: 1;
}

.project-splide .splide__arrow--prev {
	right: 0;
	bottom: 50%;
	top: auto;
	left: auto;
	transform: rotate(90deg);
}

@media (max-width: 575.98px) {
	.project-splide .splide__arrow--prev {
		right: 50px;
		bottom: auto;
		top: 0;
		left: auto;
		transform: rotate(0);
	}
}

.project-splide .splide__arrow--next {
	right: 0;
	top: 50%;
	left: auto;
	bottom: auto;
	transform: rotate(90deg);
}

@media (max-width: 575.98px) {
	.project-splide .splide__arrow--next {
		right: 0;
		top: 0;
		left: auto;
		bottom: auto;
		transform: rotate(0);
	}
}

.project-splide .splide__arrow--prev,
.project-splide .splide__arrow--next {
	background: rgba(255, 255, 255, .7);
	border-radius: 0;
	backdrop-filter: blur(10px);
}

.project-splide .splide__arrow::before {
	content: "";
	background: url(../images/icons/more2.svg) no-repeat center;
	display: block;
	width: 50px;
	height: 50px;
}

.info-progetto {
	padding: 0;
	list-style: none;
	margin-bottom: .5rem;
}

.info-progetto li {
	display: flex;
	background: rgba(0, 0, 0, .03);
	border-radius: var(--br-1);
	margin-bottom: .6rem;
	font-size: .9rem;
}

.info-progetto li label {
	display: inline-block;
	padding: .8rem 0;
	text-align: center;
	width: 120px;
	font-weight: 500;
}

.info-progetto li strong,
.info-progetto li a {
	display: inline-flex;
	padding: .8rem 1rem;
	background: rgba(0, 0, 0, .03);
	color: var(--c-base);
	font-weight: 400;
	width: calc(100% - 120px);
	border-radius: 0 var(--br-1) var(--br-1) 0;
	align-items: center;
	transition: background .2s, color .2s, border-radius .2s;
}

.info-progetto li a:hover {
	background: var(--c-rossojam);
	color: #FFF;
	border-radius: var(--br-1);
}

.info-progetto li a svg {
	margin-left: auto;
	transform: rotate(-45deg) scale(.9);
}

.info-progetto li a svg * {
	stroke: var(--c-rossojam);
	transition: stroke .2s;
}

.info-progetto li a:hover svg * {
	stroke: #FFF;
}

.intro-progetto .sottotitolo {
	text-align: left;
}

.intro-progetto .sottotitolo p {
	margin-bottom: 1rem;
	color: var(--c-grigio);
	font-size: .95rem;
}

.intro-progetto h2 {
	margin-bottom: .5rem;
	font-size: 1.4rem;
	font-weight: 500;
	font-family: "Funnel Display", sans-serif;
}

.features-progetto ul {
	padding: 0;
	list-style: none;
	margin-bottom: 8rem;
}

@media (max-width: 575.98px) {
	.features-progetto ul {
		margin-bottom: 2rem;
	}
}

.features-progetto li {
	padding: 0 0 0 1.4rem;
	background: url(../images/icons/more4.svg) left center no-repeat;
	font-size: .9rem;
	font-weight: 500;
}

.cliente {
	padding-bottom: 11rem;
}

@media (max-width: 575.98px) {
	.cliente2 {
		margin-top: -4rem;
		padding-top: 6rem;
	}
}

.cliente::before {
	transform: rotate(-2deg) scaleX(1.2) !important;
	margin-bottom: 2rem;
}

.cliente ul {
	padding: 3rem 0 0;
	list-style: none;
	margin-bottom: -7rem;
}

.cliente ul li {
	display: inline-block;
	margin: -.7rem;
	width: 150px;
}

.cliente ul.foto-cliente-1 li {
	max-width: calc(100% / 1);
}

.cliente ul.foto-cliente-2 li {
	max-width: calc(100% / 2);
}

.cliente ul.foto-cliente-3 li {
	max-width: calc(100% / 3);
}

.cliente ul.foto-cliente-4 li {
	max-width: calc(100% / 4);
}

.cliente ul.foto-cliente-5 li {
	max-width: calc(100% / 5);
}

.cliente ul li img {
	border-radius: 200px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .4);
	border: 3px solid #FFF;
	width: 100%;
	height: auto;
}

.esigenza {
	--before-color: rgba(0, 0, 0, .15);
	--before-color2: rgba(0, 0, 0, 0);
	--after-color: rgba(0, 0, 0, .0);
	--after-color2: rgba(0, 0, 0, 0);
	padding-top: 10rem;
}

.cosa-abbiamo-realizzato ul {
	padding: 1rem 0 0;
	list-style: none;
	display: flex;
	gap: 1.5rem;
	max-width: 1100px;
	flex-wrap: wrap;
}

@media (max-width: 767.98px) {
	.cosa-abbiamo-realizzato ul {
		gap: 1rem;
	}
}

.cosa-abbiamo-realizzato ul li {
	padding: 1.5rem 1.8rem;
	background: var(--c-grigiobg);
	border-radius: var(--br-1);
	text-align: left;
	width: calc(50% - .75rem);
	font-size: .95rem;
	line-height: 140%;
	color: var(--c-grigio);
}

@media (max-width: 767.98px) {
	.cosa-abbiamo-realizzato ul li {
		width: 100%;
	}
}

.cosa-abbiamo-realizzato ul li strong {
	display: block;
	margin-bottom: .3rem;
	font-size: 1.4rem;
	font-weight: 500;
	font-family: "Funnel Display", sans-serif;
	color: var(--c-base);
}

/*** Siti web & e-commerce ***/

.hero-w .eyebrow {
	margin-bottom: .5rem;
	font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.hero-w .titolo {
	color: #FFF;
	font-size: clamp(1.8rem, 3vw, 4.5rem);
	margin: 0 auto .3rem;
	line-height: 95%;
}

.hero-w .sottotitolo p {
	color: rgba(255, 255, 255, .85);
	font-style: italic;
	font-size: 1.2rem;
	font-size: clamp(1.1rem, 1.2vw, 1.2rem);
	line-height: 130%;
}

.section-siti-web {
	--before-color: rgba(0, 0, 0, 0);
	--before-color2: rgba(0, 0, 0, 0);
	--after-color: rgba(0, 0, 0, .0);
	--after-color2: rgba(0, 0, 0, 0);
}

.section-siti-web::after {
	background: #CB2DF4;
	background: linear-gradient(90deg, rgba(203, 45, 244, 1) 0%, rgba(251, 45, 81, 1) 15%, rgba(253, 126, 7, 1) 32%, rgba(243, 205, 0, 1) 50%, rgba(119, 223, 17, 1) 68%, rgba(28, 227, 243, 1) 84%, rgba(2, 62, 255, 1) 100%);
	filter: blur(100px);
	bottom: -350px;
}

.features ul {
	padding: 2rem 0;
	list-style: none;
	display: flex;
	gap: 1.5rem;
	max-width: 1100px;
	flex-wrap: wrap;
}

@media (max-width: 575.98px) {
	.features ul {
		gap: 1rem;
	}
}

.features ul li {
	padding: 1.5rem 1.8rem;
	background: rgba(0, 0, 0, .03);
	border-radius: var(--br-1);
	text-align: left;
	width: calc(50% - .75rem);
	font-size: .95rem;
	line-height: 140%;
	color: var(--c-grigio);
	display: flex;
	justify-content: space-between;
	border: 2px solid rgba(255, 255, 255, .7);
}

@media (max-width: 575.98px) {
	.features ul li {
		width: 100%;
	}
}

.features ul li div {
	width: calc(100% - 85px);
}

.features ul li strong {
	display: block;
	margin-bottom: .3rem;
	font-size: 1.4rem;
	font-weight: 500;
	font-family: "Funnel Display", sans-serif;
	color: var(--c-base);
}

.features ul li p {
	font-size: .9rem;
	line-height: 130%;
}

.metodo-siti ul {
	padding: 1rem 0 0;
	list-style: none;
	display: flex;
	gap: 1.5rem;
	max-width: 1100px;
	flex-wrap: wrap;
}

@media (max-width: 575.98px) {
	.metodo-siti ul {
		gap: 1rem;
	}
}

.metodo-siti ul li {
	padding: 1.5rem 1.8rem;
	background: rgba(255, 255, 255, .1);
	border-radius: var(--br-1);
	text-align: left;
	width: calc(50% - .75rem);
	font-size: .95rem;
	line-height: 140%;
	color: rgba(255, 255, 255, .6);
	border: 2px solid rgba(255, 255, 255, .1);
}

@media (max-width: 575.98px) {
	.metodo-siti ul li {
		width: 100%;
	}
}

.metodo-siti ul li strong {
	display: block;
	margin-bottom: .3rem;
	font-size: 1.4rem;
	font-weight: 500;
	font-family: "Funnel Display", sans-serif;
	color: #FFF;
}

.metodo-siti ul li p {
	font-size: .9rem;
	line-height: 130%;
}

.percorso ul {
	padding: 1rem 0 0;
	list-style: none;
	display: flex;
	gap: 1.5rem;
	max-width: 1100px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 575.98px) {
	.percorso ul {
		gap: 1rem;
	}
}

.percorso ul li {
	padding: 1.5rem 1.8rem;
	background: rgba(255, 255, 255, .1);
	border-radius: var(--br-1);
	text-align: left;
	width: calc(60% - .75rem);
	font-size: .95rem;
	line-height: 140%;
	color: rgba(255, 255, 255, .6);
	border: 2px solid rgba(255, 255, 255, .1);
}

@media (max-width: 575.98px) {
	.percorso ul li {
		width: 100%;
	}
}

.percorso ul li strong {
	display: block;
	margin-bottom: .3rem;
	font-size: 1.4rem;
	font-weight: 500;
	font-family: "Funnel Display", sans-serif;
	color: #FFF;
}

.percorso ul li p {
	font-size: .9rem;
	line-height: 130%;
}

/* Portfolio */

.section-progetti {
	--before-color: rgba(0, 0, 0, 0);
	--before-color2: rgba(0, 0, 0, 0);
}

.portfolio-lista {
	list-style: none;
}

.portfolio-lista .project {
	padding: 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
	height: 100%;
}

@media (max-width: 767.98px) {
	.portfolio-lista .project {
		/* margin: 0 0 2rem; */
	}
}

.portfolio-lista .project-description {
	padding-top: 1rem;
}

.alert-danger {
	background: var(--c-rossojam);
	color: #FFF;
	border: none;
}

.grecaptcha-badge {
	display: none !important;
}