@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
	--background-color: #000;
	--default-color: rgba(255, 255, 255, .8);
	--heading-color: #e0e9f2;
	--accent-color: #d83089;
	--surface-color: #151515;
	--contrast-color: #fff;
}

:root {
	--color-primary: #d83089;
	--accent-color: #d83089;
	--color-secondary: #6c757d;
	--color-success: #198754;
	--color-danger: #dc3545;
	--color-warning: #ffc107;
	--color-info: #0dcaf0;
	--color-light: #f8f9fa;
	--color-dark: #212529;
	--color-text: #333;
	--color-heading: #111;
	--color-link: var(--color-primary);
	--color-link-hover: #0b5ed7;
	--btn-bg: var(--color-primary);
	--btn-text: #fff;
	--btn-bg-hover: #0b5ed7;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body, html {
	margin: 0;
	padding: 0;
	position: relative;
	background-color: var(--primary-bg);
	background-color: #000;
	font-family: "Poppins", sans-serif;
	font-family: "Roboto", sans-serif;
	min-height: 100vh;
}

.divider-horizontal {
	height: 1px;
	width: 100%;
	max-width: 600px;
	margin: 0px auto;
	margin: auto;
	background: linear-gradient(to right, transparent, #fff, transparent);
	z-index: 1;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.light-mode .nav-link, .light-mode .logo {
	color: #000;
	fill: #000;
}

h2 {
	color: #fff;
}

a {
	text-decoration: none;
}

.dark-mode .nav-link, .dark-mode .logo {
	color: #fff;
	fill: #fff;
}

.section {
	padding: 60px 0;
	z-index: 10;
}

.educational, #divider, .phygital, .services, footer {
	background-color: #151515 !important;
}

.background-video {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: -1;
}

@media (min-aspect-ratio: 16/9) {}

@media (max-aspect-ratio: 4/3) {}

#main-container {
	position: relative;
	padding: 0;
}
/* HEADER */
header {
	height: auto;
	padding: 10px 0 0 0;
}

header.sticky-top {
	background: var(--primary-bg);
	background-color: #000 !important;
	transition: all .3s ease;
}

header.sticky-header {
	padding-top: 15px !important;
	height: auto;
	opacity: .97;
	background-color: rgba(0, 0, 0, .2) !important;
}

header #logo {
	max-width: 150px;
	width: 100%;
}

header #logo .cls-1 {
	fill: var(--color-primary);
}

header #logo .cls-2 {
	fill: #1d1d1b;
}

header.light-mode #logo .cls-1 {
	fill: var(--color-primary);
}

header.light-mode #logo .cls-2 {
	fill: #fff;
}

header.dark-mode #logo .cls-1 {
	fill: var(--color-primary);
}

header.dark-mode #logo .cls-2 {
	fill: #1d1d1b;
}

#logo .cls-1, #logo .cls-2 {
	stroke-width: 0px;
}

header .header-container {
	width: 100%;
}

header .nav-bar {
	min-height: 4.375em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
}

header ul {
	margin-bottom: 0;
}
/* menu */
.nav-menu {
	position: fixed;
	left: -100%;
	flex-direction: column;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: 750ms;
	padding-left: 0;
}

@media (min-width: 768px) {
	.nav-menu {
		position: static;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 1em;
		width: auto;
	}
}

.nav-item {
	margin: 1em 10px;
}

header li {
	list-style: none;
	color: #fff;
}

header.light-mode .nav-link {
	color: #fff !important;
}

header.dark-mode .nav-link {
	color: var(--color-primary) !important;
}

.nav-link {
	display: block;
	padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
	font-size: var(--bs-nav-link-font-size);
	font-weight: var(--bs-nav-link-font-weight);
	color: var(--bs-nav-link-color);
	text-decoration: none;
	background: 0 0;
	border: 0;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

header .nav-link {
	color: #fff !important;
}

header .nav-link {
	transition: 400ms ease;
}

.nav-item {
	position: relative;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 25px;
	letter-spacing: -.13px;
	text-decoration: none;
	margin-left: 2.5rem;
	transition: all .5s ease;
}

.nav-item:hover {
	color: var(--color-primary);
}

.nav-item::after {
	content: "";
	position: absolute;
	bottom: -.3rem;
	left: 50%;
	width: 0;
	height: .15rem;
	transform: translateX(-50%);
	background-color: var(--color-primary);
	transition: all .5s ease;
}

.nav-item:hover:after {
	width: 100%;
}

.hamburger {
	cursor: pointer;
	transition: all .5s ease-in-out 500ms;
	position: fixed;
	right: 50px;
	top: 25px;
	z-index: 99999999;
}

.hamburger.active {
	top: 10px;
	right: 10px;
}

.bar {
	display: block;
	background-color: #fff;
	width: 24px;
	height: 2px;
	margin: 6px auto;
	transition: all 300ms ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
	opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
	.hamburger {
		display: none;
	}
}

.nav-menu.active {
	top: 0;
	left: 0;
	background-color: rgba(38, 38, 38, .85);
}

.nav-menu.active .nav-item:nth-child(1) {
	padding-top: 35px;
}

.contentMessage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.contentMessage h1 {
	font-size: clamp(3rem, 10vw, 8rem);
	font-weight: 600;
	-webkit-text-stroke: 2px rgba(168, 239, 255, 1);
	color: transparent;
	transition: all .5s ease;
}
/* FINE HEADER */
.btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 50px;
	border-radius: 5px;
	background: transparent;
	overflow: hidden;
	transition: all .3s ease-in;
}

.btn:hover {
	transform: translateY(5px);
}

.light::before {
	content: "";
	position: absolute;
	background-image: conic-gradient(transparent 10deg, rgba(168, 239, 255, 1), 90deg, transparent 170deg);
	width: 200%;
	height: 500%;
	animation: rotate 3s linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

.light:after {
	content: "Explore";
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 170px;
	height: 40px;
	background: rgba(255, 255, 255, .2);
	backdrop-filter: blur(35px);
	-webkit-backdrop-filter: blur(35px);
	color: #fff;
	font-size: clamp(.9rem, 3vw, 1.2rem);
	border-radius: 5px;
}

.isDesktop .hero.mobile {
	visibility: hidden;
	opacity: 0;
	height: 0;
	display: none;
}

.isMobile .hero.desktop {
	display: none;
}

.isMobile .hero.mobile {
	visibility: visible;
	opacity: 1;
	display: block;
}
/* SECTION HERO */
.vh-minus-header {}

.my-dvh {
	height: 100 dvh;
}

.section.hero {
	background-color: #151515;
	background-color: #000;
	color: #fff;
	overflow: hidden;
	position: relative;
	padding: 0;
}

.section.hero {
	width: 100%;
	min-height: calc(100vh - 100px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.section.hero .stack {
	display: grid;
}

.section.hero .flow, .section.hero .overlay {
	grid-area: 1/1;
}

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

.section.hero .overlay {
	z-index: 0;
	pointer-events: none;
}

.section.hero .animation-container {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
}

.section.hero h1 {
	margin: 0;
	line-height: 1.1;
	font-weight: 300;
}

.section.hero .subtitle {
	margin-bottom: 4vh;
	opacity: .85;
}

.section.hero .viewport {
	position: relative;
	overflow: hidden;
}

.section.hero .word {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 4.5rem !important;
	line-height: 1;
	font-weight: 800;
}

.section.hero .after-words {
	margin-top: 6vh;
	font-size: clamp(1.25rem, 4vw, 3rem);
	opacity: .9;
}

.section.hero h1.word, .section.hero h1.after-words {
	font-weight: 900;
	margin: 0;
}

.section.hero h1.after-words {
	font-size: 4.5rem !important;
}

:root {
	--size: 800px;
	--color: 216, 48, 137;
	--bloom-ms: 900ms;
	--overshoot: 1.06;
}

.light-demo_anim {}

.light-bloom {
	position: relative;
	width: var(--size);
	height: var(--size);
}

.light-bloom::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%) scale(0);
	transform-origin: 50% 50%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .95) 0%, rgba(var(--color), .85) 18%, rgba(var(--color), .55) 45%, rgba(var(--color), .22) 70%, rgba(var(--color), 0) 100%);
	filter: blur(2px);
	animation: bloomPerceivedLinear var(--bloom-ms) linear forwards;
}

@keyframes bloomLinear {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0);
	}
	
	10% {
		opacity: .2;
	}
	
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.light-bloom::before {
		animation: none;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes bloomPerceivedLinear {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 0;
	}
	
	25% {
		transform: translate(-50%, -50%) scale(.5);
		opacity: .6;
	}
	
	50% {
		transform: translate(-50%, -50%) scale(.707);
		opacity: .85;
	}
	
	75% {
		transform: translate(-50%, -50%) scale(.866);
		opacity: .95;
	}
	
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
}
.hero-carousel {
	font-size: 4rem;
	font-weight: 800;
	color: white;
	gap: .5rem;
}

.viewport {
	position: relative;
	overflow: hidden;
	height: 1em;
	min-width: 180px;
}

.word {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.headline {
	white-space: nowrap;
	overflow: hidden;
}

.animated-word-wrapper {
	display: inline-block;
	position: relative;
	overflow: hidden;
	vertical-align: bottom;
}

.animated-word {
	display: block;
	will-change: transform;
}

@media (min-width: 768px) {
	h1.headline {
		font-size: 5rem !important;
	}
}

@media (min-width: 992px) {
	h1.headline {
		font-size: 5rem !important;
	}
}

@media (min-width: 1200px) {
	h1.headline {
		font-size: 6rem !important;
	}
}

@media (min-width: 1400px) {
	h1.headline {
		font-size: 7rem !important;
	}
}

.light-points {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.light {
	position: absolute;
	width: 80px;
	height: 80px;
	opacity: .6;
	transform: translate(0, 0);
	transition: transform .2s ease-out;
	animation: pulse 3s ease-in-out infinite;
	will-change: transform;
}

.light.small {
	width: 30px;
	height: 30px;
}

.light.medium {
	width: 40px;
	height: 40px;
}

.star-1 {
	top: 3%;
	left: 20%;
	animation-delay: 0s;
}

.star-2 {
	top: 40%;
	left: 80%;
	animation-delay: .5s;
}

.star-3 {
	top: 50%;
	left: 30%;
	animation-delay: 1s;
}

.star-4 {
	top: 5%;
	left: 90%;
	animation-delay: 1.5s;
}

.star-5 {
	top: 25%;
	left: 50%;
	animation-delay: 2s;
}

@keyframes pulse {
	0%, 100% {
		opacity: .3;
	}
	
	50% {
		opacity: .8;
	}
}
/* FINE HERO */
/* VIDEO REEL */
.video-section {
	position: relative;
	height: 100 dvh;
	min-height: 100vh;
	overflow: hidden;
}

.video-section .internal-background-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	pointer-events: none;
}

.video-section .overlay-content {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	height: 100%;
	padding: 2rem;
	color: #fff;
	text-align: center;
}

.video-section .overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	color: #fff;
	background-color: rgba(0, 0, 0, .4);
}

.fucsia {
	color: #d83089;
}

.separator.normal {
	height: 25px;
}

.separator.big {
	height: 50px;
}

.separator.small {
	height: 10px;
}

.hero-title {
	font-weight: 900;
	margin: 0 0 1rem 0;
	font-size: 4.5rem;
	color: #fff;
}

.hero-subtitle {
	font-weight: 700;
	text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5);
	max-width: 75ch;
	margin: 0;
}

@media (prefers-reduced-motion: reduce) {
	.background-video {
		animation: none;
	}
}
/* FINE VIDEO REEL */
/* SEZION MENU BOXES */
.box-hover {
	position: relative;
	cursor: pointer;
}

.box-hover .highlight-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #d83089 0%, transparent 70%);
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, .9) 0%, rgba(var(--color), .65) 25%, rgba(var(--color), 0) 55%, rgba(var(--color), 0) 80%, rgba(var(--color), 0) 100%);
	filter: blur(2px);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	opacity: 0;
	transition: opacity .3s ease;
	z-index: 0;
}

.box-hover:hover .highlight-circle {
	opacity: 1;
}

.box-hover h1 {
	position: relative;
	z-index: 1;
	font-size: 3.4rem;
	font-weight: bold;
	text-transform: uppercase;
}

.divider-vertical {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}

.fade-top {
	height: 15%;
	width: 1px;
	background: linear-gradient(to bottom, transparent, white);
}

.line-core {
	flex: 1;
	width: 1px;
	background-color: white;
}

.fade-bottom {
	height: 15%;
	width: 1px;
	background: linear-gradient(to top, transparent, white);
}
/* FINE MENU BOX */
/* EVENTS BOX EDU/PHY */
section.educational {
	background-color: #151515 !important;
	overflow: hidden;
}

.text-highlight {
	color: #e60d7e;
	font-weight: 500;
}

@media (max-width: 767px) {
	.pe-md-4, .ps-md-4 {
		padding: 0 !important;
	}
}

.image-wrapper {
	position: relative;
	overflow: hidden;
}

.image-wrapper img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.image-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left, transparent 0%, #000 100%);
	pointer-events: none;
	border-radius: 5px;
}

.overlay-title {
	position: absolute;
	top: 10px;
	left: 10px;
	color: white;
	z-index: 2;
	font-size: 1.25rem;
}
section.phygital {
	overflow: hidden;
}

.isDesktop section.phygital .container {
	max-width: 1000px;
}

.isDesktop section.phygital .container {
	max-width: 1000px;
}

@media (max-width: 1024px) {
	section.phygital .container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

.text-highlight {
	color: #e60d7e;
	font-weight: 500;
}

@media (max-width: 767px) {
	.pe-md-4, .ps-md-4 {
		padding: 0 !important;
	}
}

.image-wrapper {
	position: relative;
	overflow: hidden;
}

.image-wrapper img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.image-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left, transparent 0%, #000 100%);
	pointer-events: none;
	border-radius: 5px;
}

.overlay-title {
	position: absolute;
	top: 10px;
	left: 10px;
	color: white;
	z-index: 2;
	font-size: 1.25rem;
}
/* Contenitore principale: allinea i figli alla stessa altezza */
.event-item {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Colonna sinistra con l'icona */
.event-item-column-icon {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.isMobile .event-item-column-icon {
	margin-bottom: 20px !important;
}
.isMobile .odd .event-item-column-icon {
	margin-bottom: 0px !important;
	margin-top: 20px !important;
}

/* Centra l’icona verticalmente */
.event-item-column-icon .icon-circle {
  margin: auto;
}

/* Colonna destra con il testo */
.event-item-column-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

/* Titolo evidenziato */
.event-title {
  color: #e60d7e;
  font-weight: 800;
}

.event-item.alt {
	background-color: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	padding: 20px;
	transition: transform .3s ease, box-shadow .3s ease;
}

.event-item.alt:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

.event-item.alt .overlay-title {
	font-size: 1.2rem;
	color: #e60d7e;
	font-weight: bold;
	margin-bottom: 10px;
}

.event-item.alt .image-wrapper {
	position: relative;
	overflow: hidden;
	height: 180px;
	border-radius: 8px;
}

.event-item.alt .image-cover {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform .4s ease;
	z-index: 1;
}

.event-item.alt .image-wrapper:hover .image-cover {
	transform: scale(1.05);
}

.icon-circle {
	width: 100px;
	height: 100px;
	background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}

.isDesktop .icon-circle {
	width: 100%;
	height: 100%;
}

.icon-circle i {
	color: white;
	font-size: 3.2rem;
}

.event-item.alt {
	display: flex;
	/*align-items: center;*/
	flex-wrap: wrap;
}
/*.isMobile .event-item.alt {
	align-items: center !important;
	margin-bottom: 25px !important;
}*/

.icon-box {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.text-box {
	flex: 1;
	min-width: 0;
}

@media (max-width: 768px) {
	.event-item.alt {
		flex-direction: column;
		text-align: center;
	}
	
	.text-box {
		width: 100%;
		margin-left: 0 !important;
	}
}
/* FINE EVETS BOX EDU/PHY ver 1*/
/* SERVICES (box ver 2)*/
section#services {
	padding: 50px 0;
}

section#services h3 {
	color: #fff;
}

.services .service-card {
	padding: 40px 40px 40px 40px;
	margin-bottom: 30px;
	border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
	transition: all .3s ease;
}

.services .service-card .service-icon {
	margin-bottom: 25px;
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	width: 64px;
	height: 64px;
}

.services .service-card .service-icon i {
	font-size: 32px;
	color: var(--accent-color);
	transition: all .3s ease;
}

.services .service-card h3 {
	font-size: 28px;
	margin-bottom: 15px;
	font-weight: 700;
}

.services .service-card h3 a {
	color: var(--heading-color);
	transition: color .3s ease;
}

.services .service-card h3 a span {
	display: block;
}

.services .service-card h3 a:hover {
	color: var(--accent-color);
}

.services .service-card p {
	color: var(--default-color);
	transition: color .3s ease;
	margin-bottom: 0;
}

.services .service-card .card-action {
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all .3s ease;
}

.services .service-card .card-action i {
	font-size: 24px;
	color: var(--contrast-color);
	transition: transform .3s ease;
}

.services .service-card .card-action:hover i {
	transform: rotate(45deg);
}

.services .service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #1b262c;
	clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.services .service-card:hover {
	border-color: transparent;
}

.services .service-card:hover::before {
	opacity: 1;
	visibility: visible;
	background-color: #1b262c;
}

.services .service-card:hover h3 a {
	color: var(--accent-color);
}

.services .service-card:hover h3 a:hover {
	color: var(--accent-color);
}

.services .service-card:hover p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.services .service-card:hover .service-icon i {
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.services .service-card {
		padding: 150px 25px 25px;
	}
	
	.services .service-card h3 {
		font-size: 24px;
	}
	
	.services .service-card .service-icon {
		position: absolute;
		top: 40px;
		left: 25px;
	}
}

@media (max-width: 768px) {
	.services {
		padding: 70px 0 50px;
	}
}
/* fine services */
/* CLients */
section.clients {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0 0 0;
	scroll-margin-top: 100px;
	overflow: clip;
	background: #fff;
}

.clients .swiper-slide img {
	opacity: .5;
	transition: .3s;
	filter: grayscale(100);
	max-width: 70% !important;
}

.clients .swiper-slide img:hover {
	filter: none;
	opacity: 1;
}

.clients .swiper-wrapper {
	height: auto;
}

.clients .swiper-pagination {
	margin: 60px 0 30px 0;
	position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	opacity: 1;
	background-color: color-mix(in srgb, var(--default-color), transparent 80%);
	background-color: rgba(108, 117, 125, .24);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}
/* Fine CLients */
/* FAQ */
.faq h3 {
	color: #fff !important;
}

.faq p {
	font-size: 14px !important;
	color: #fff;
}

.section-title {
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	position: relative;
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: var(--accent-color);
	margin: 4px 10px;
}

.section-title div {
	color: var(--heading-color);
	margin: 0;
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--heading-font);
}

.faq .faq-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--heading-color);
}

.faq .faq-description {
	font-size: 1rem;
	color: var(--default-color);
	margin-bottom: 2rem;
}

.faq .faq-arrow {
	color: var(--accent-color);
}

.faq .faq-container .faq-item {
	background-color: var(--surface-color);
	position: relative;
	padding: 20px;
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
	margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin: 0 30px 0 0;
	transition: .3s;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.faq .faq-container .faq-item h3 .num {
	color: var(--accent-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: .3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: .3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
	color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
	color: var(--accent-color);
}

/* FAQ fine */
/* contatti */
.contact .contact-info-box {
	background-color: var(--surface-color);
	border-radius: 10px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
	padding: 25px;
	height: 100%;
	transition: transform .3s ease, box-shadow .3s ease;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.contact .contact-info-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.contact .contact-info-box .icon-box {
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	color: var(--accent-color);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
	font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
	margin-bottom: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	font-size: 15px;
	line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
	margin-bottom: 0;
}

.contact .map-section {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.contact .map-section iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.contact .form-container-overlap {
	position: relative;
	margin-top: -150px;
	margin-bottom: 60px;
	z-index: 10;
}

.contact .contact-form-wrapper {
	background-color: var(--surface-color);
	border-radius: 12px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
	padding: 40px;
}

.contact .contact-form-wrapper h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}

.contact .contact-form-wrapper h2:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
	margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
	position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 18px;
	z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
	top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
	top: 25px;
	transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
	border-radius: 8px;
	padding: 12px 15px 12px 45px;
	height: 3.5rem;
	color: var(--default-color);
	background-color: var(--surface-color);
	font-size: 15px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
	height: 180px;
	resize: none;
	padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
	background-color: var(--accent-color);
	border: none;
	color: var(--contrast-color);
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 8px;
	transition: all .3s ease;
	box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
	display: inline-block;
	width: auto;
}

.contact .contact-form-wrapper .btn-submit:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading, .contact .contact-form-wrapper .error-message, .contact .contact-form-wrapper .sent-message {
	margin-top: 10px;
	margin-bottom: 20px;
}

@media (max-width: 992px) {
	.contact .form-container-overlap {
		margin-top: -120px;
	}
	
	.contact .contact-form-wrapper {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.contact .contact-info-box {
		margin-bottom: 20px;
	}
	
	.contact .form-container-overlap {
		margin-top: -100px;
	}
	
	.contact .contact-form-wrapper {
		padding: 25px;
	}
	
	.contact .contact-form-wrapper h2 {
		font-size: 24px;
	}
	
	.contact .map-section {
		height: 450px;
	}
}

@media (max-width: 576px) {
	.contact .form-container-overlap {
		margin-top: -80px;
	}
	
	.contact .contact-form-wrapper {
		padding: 20px;
	}
	
	.contact .btn-submit {
		width: 100%;
	}
	
	.contact .map-section {
		height: 400px;
	}
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
	top: 28px;
}

.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #fff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

/* contatti fine */
/* FOOTER */
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	padding-bottom: 50px;
	position: relative;
}

.footer .footer-top {
	padding-top: 50px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
	line-height: 1;
	margin-bottom: 25px;
}

.footer .footer-about .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.footer .footer-about .logo span {
	color: var(--heading-color);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: var(--heading-font);
}

.footer .footer-about p {
	font-size: 14px;
	font-family: var(--heading-font);
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin-right: 10px;
	transition: .3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-links {
	margin-bottom: 30px;
}

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

.footer .footer-links ul i {
	padding-right: 2px;
	font-size: 12px;
	line-height: 0;
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	display: inline-block;
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-contact p {
	margin-bottom: 5px;
}

.footer .copyright {
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
	margin-bottom: 0;
}

.footer .credits {
	margin-top: 6px;
	font-size: 13px;
}

/* FOOTER FINE */

