/* ==========================
   FONTS
   ========================== */
:root {
  --font-general: "Titillium Web", sans-serif;
  --color-primary: #000;
}
body {
	margin: 0;
	background-color: #FFF;
	padding-top:0;
/* SCROLL TO TOP */
}
#scrollTopBtn {
	display:none;
	position: fixed;
	bottom: 40px;
	right: 30px;
	z-index: 999;
	background-color:#D9AE07;
	color: #fff;
	border: none;
	border-radius:10px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	opacity: 0;               /* nascosto di base */
	visibility: hidden;       /* non cliccabile */
	transform: scale(0.8);    /* leggermente più piccolo */
	transition: all 0.6s linear;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
#scrollTopBtn.show {
	opacity: 1;
	visibility: visible;
	transform: scale(1); /* effetto morbido di “zoom in” */
}
#scrollTopBtn i {
	font-size: 1.2em;
	line-height: 50px;
}

#scrollTopBtn:hover {
	background-color: #FEC800;
	transform: scale(1.1);
}
/* CONTAINER */
.gridContainer, .gridContainerMid,  .gridContainerFull {
	width:100%;
	margin:0 auto;
	padding:0;
/* CONTAINER */

/* HEADER */
}
#fullheader  {
	display:block;
	width:100%;
	position:fixed;
	min-height:auto;
	margin:0 auto;
	padding:0;
	background:#FFF;
	z-index: 999; /* sopra hero */
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	background: linear-gradient(to right, rgba(18, 28, 34, 0.95), rgba(18, 18, 18, 0.95));
/*    backdrop-filter: blur(3px);*/
	box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* ombretta sotto */
}
#header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
}
/* LOGO */
#header .logo img {
    height: 50px;
}
/* ===== BUTTON HAMBURGER ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.35s ease;
}
/* Animazione X */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
	transform: scaleX(0);
	 visibility: hidden;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
/* Mostra hamburger */
.menu-toggle {
	display: flex;
}
/* Nasconde il menu fuori schermo a sinistra */
#header nav {
    position: fixed;
    top: 74px;
    left: -100%;           /* invece di right */
    width: 100%;
    height: calc(100vh - 74px);
	background: linear-gradient(to right, rgba(18, 28, 34, 0.98), rgba(18, 18, 18, 0.98));
    backdrop-filter: blur(3px);
    padding-top: 20px;
    padding-left: 0;
    transition: left 0.35s ease;  /* anima left invece di right */
    z-index: 1000;
}
/* Quando il menu è aperto */
#header nav.open {
    left: 0;                /* entra da sinistra */	
}
#header nav ul {
	font-family: var(--font-general);
	flex-direction: column;
	gap: 20px;
	padding-left:5%;
}
#header nav ul li a {
	position: relative;
	font-family: var(--font-general);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight:300;
    font-size: 1.53em; /*20px */
    letter-spacing: 1px;
	line-height:45px;
	transition: color 0.25s ease, transform 0.25s ease
}
/* Underline animato dal centro con width */
#header nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;              /* parte dal centro */
    bottom: -2px;
    height: 1px;
    background-color:#FEC800;
    width: 0;               /* inizialmente invisibile */
    transform: translateX(-50%); /* centra la linea */
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1); /* morbido */
}
/* Hover + active */
#header nav ul li a:hover,
#header nav ul li a.active {
    color: #FEC800;
    transform: translateY(-2px); /* lift */
}
#header nav ul li a:hover::after,
#header nav ul li a.active::after {
    width: 100%; /* si estende completamente dal centro */
}	
/* Voci menu inizialmente fuori a sinistra e invisibili */
#header nav ul li {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
/* Quando il menu è aperto: voci entrano da sinistra */
#header nav.open ul li {
    opacity: 1;
    transform: translateX(0);
}
/* Ritardo progressivo per effetto cascata */
#header nav.open ul li:nth-child(1) { transition-delay: 0.15s; }
#header nav.open ul li:nth-child(2) { transition-delay: 0.30s; }
#header nav.open ul li:nth-child(3) { transition-delay: 0.45s; }
#header nav.open ul li:nth-child(4) { transition-delay: 0.60s; }
#header nav.open ul li:nth-child(5) { transition-delay: 0.75s; 
/* Aggiungi altri li:nth-child() se hai più voci */
/* ===== BUTTON HAMBURGER ===== */	

}
/* PARTNERS */
.partners {
  width: 90%;
  padding: 30px 0;
  margin: 0 auto;
  background: #FFF;
  position: relative; /* Necessario per la posizione assoluta del gradiente */
  overflow: hidden; /* Nascondi qualsiasi parte oltre il bordo */
}
/* Titolo della sezione */
.partners-title {
	display:inline-block;
	width:100%;
	min-height:20px;
	margin-left:auto;
	margin-right:auto;
	text-align: center; /* Centra il titolo orizzontalmente */
	margin-top:0;
	margin-bottom: 30px; /* Spazio sotto il titolo */
}
/* Titolo sezione */
.partners-title h2 {
	position: relative;
    font-family: var(--font-general);
    font-size: 2.61em; /* 34px */
	line-height:34px;
	font-weight:400;
    color: #121A20;
	margin: 0 auto;
}
/* Separatore titolo */
.partners-title h2::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin: 10px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente piÃ¹ elegante */
}
/* Aggiungi un effetto sfumato (blur) molto più delicato ai bordi */
.partners::before, .partners::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none; /* Evita che il gradiente interferisca con l'interazione */
	z-index: 1;
}
.partners::after {
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 100%);
}
/* Contenitore swiper */
.partners .swiper {
	overflow: hidden;
}
.partners .swiper-wrapper {
	display: flex;
	align-items: center; /* Centra verticalmente i contenuti */
}
.partners .swiper-slide {
	display: flex;
	align-items: center; /* Centra verticalmente il logo */
 	justify-content: center; /* Centra orizzontalmente */
	width: auto; /* Lascia che la larghezza si adatti */
	height: 100px; /* altezza uniforme del logo */
}
/* Loghi */
.partners img {
	max-height: 50px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}
.partners img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
 /* PARTNERS */
	
}
/* FOOTER */
#fullfooter {
	display:block;
	top: 0;
	left: 0;
	width:100%;
	min-height:auto;
	margin:0 auto;
	padding: 3.5em 0;
	position: relative;
}
.footer {
    background: linear-gradient(to right, #121C22, #1B2831);
    color: #ffffff;
    padding: 50px 20px;
}
.footer-container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-left {
    flex: 1;
    min-width: 280px;
}
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}
.footer-info p {
    margin: 6px 0;
	font-family: var(--font-general);
	font-size:1.38em; /*18px; */
	font-weight:300;
	line-height:24px;
}
.footer a {
    color: #FEC800;
    text-decoration: none;
    transition: 0.3s ease;
}
.footer a:hover {
    opacity: 0.8;
}
.footer-right {
    flex: 1;
    min-width: 280px;
    text-align: right;
}
.footer-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.footer-caption {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
}
.footer-social {
    margin-top: 25px;
}
.social-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.social-title {
    letter-spacing: 1px;
    margin: 0;
	font-family: var(--font-general);
	font-size:1.15em; /*15px; */
	font-weight:400;
	line-height:18px;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #FEC800;
    border-radius: 50%;
    color: #FEC800;
    transition: 0.3s ease;
}
.social-icons a:hover {
    background-color: #FEC800;
    color: #121C22;
}
.footer-affiliate {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.affiliate-text {
    font-size: 1.23em; /*16px*/
    font-weight: 300;
	font-family: var(--font-general);
}
.affiliate-logo {
    height: 41px;
    width: auto;
/* FOOTER */

/* FOOTER BOTTOM */  
} 
.footer-bottom {
	display:inline-block;
	width:90%;
	margin: 25px 5%;
	color: #1A2731;
	font-family: var(--font-general);
	font-size: 1.23em; /*16px */
	font-weight:300;
	line-height:24px;
} 
.footer-bottom-left {
	clear:both;
	float:left;
	display:block;
	width:100%;
	padding:auto;
	text-align:center;
} 
.footer-bottom-right {
	clear:none;
	float:left;
	display:block;
	width:100%;
	padding:auto;
	text-align:center;
}
.footer-bottom a {
	color: #000;
    line-height: 35px;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent; /* linea già presente ma invisibile */
    transition: 
	color 0.3s ease,
	transform 0.3s ease,
	border-color 0.3s ease;
}
.footer-bottom a:hover {
	color: #000;
	transform: translateY(-3px); /* si solleva */
}
.footer-bottom a span {
	color:#D99C07;
	font-size:1.38em;
}
.footer-bottom a:hover span {
	color:#D99C07;
/* FOOTER BOTTOM */
}
/* ==========================
   RESPONSIVE BREAKPOINTS
   ========================== */
/* Layout tablet portrait: da 480 px a 820 px. Eredita stili da: Layout mobile. */
@media only screen and (min-width: 480px ) {
body {
	padding-top:0; /* stessa altezza dell’header */
}
/* CONTAINER */
.gridContainer, .gridContainerMid, .gridContainerFull {
	width:100%;
	margin:0 auto;
	padding:0;
/* CONTAINER */
	
/* HEADER */
}
#fullheader  {
	display:block;
	width:100%;
	position:fixed;
	left:0;
	top:0;
	min-height:auto;
	margin:0 auto;
	padding:0;
	background:#FFF;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	background: linear-gradient(to right, rgba(18, 28, 34, 0.95), rgba(18, 18, 18, 0.95));
/*    backdrop-filter: blur(3px);*/
}
#header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
}
/*  LINGUE */
.lang-switch {
	position: fixed;
	top: 32px;          /* sopra il menu mobile */
	right: 100px;        /* allineato a destra */
	z-index: 1200;

/* PARTNERS */
}
.partners {
  width: 90%;
  padding: 40px 0;
  margin: 0 auto;
  background: #FFF;
  position: relative; /* Necessario per la posizione assoluta del gradiente */
  overflow: hidden; /* Nascondi qualsiasi parte oltre il bordo */
}
/* Titolo della sezione */
.partners-title {
	display:inline-block;
	width:100%;
	min-height:20px;
	margin-left:auto;
	margin-right:auto;
	text-align: center; /* Centra il titolo orizzontalmente */
	margin-top:0;
	margin-bottom: 30px; /* Spazio sotto il titolo */
}
/* Titolo sezione */
.partners-title h2 {
	position: relative;
    font-family: var(--font-general);
    font-size: 2.61em; /* 34px */
	line-height:34px;
	font-weight:400;
    color: #121A20;
	margin: 0 auto;
}
/* Separatore titolo */
.partners-title h2::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin: 15px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente piÃ¹ elegante */
}
/* Aggiungi un effetto sfumato (blur) molto più delicato ai bordi */
.partners::before, .partners::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none; /* Evita che il gradiente interferisca con l'interazione */
	z-index: 1;
}
.partners::after {
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 100%);
}
/* Contenitore swiper */
.partners .swiper {
	overflow: hidden;
}
.partners .swiper-wrapper {
	display: flex;
	align-items: center; /* Centra verticalmente i contenuti */
}
.partners .swiper-slide {
	display: flex;
	align-items: center; /* Centra verticalmente il logo */
 	justify-content: center; /* Centra orizzontalmente */
	width: auto; /* Lascia che la larghezza si adatti */
}
/* Loghi */
.partners img {
  max-height: 60px; /* Altezza massima 80px */
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.partners img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
 /* PARTNERS */

/* FOOTER BOTTOM */
} 
.footer-bottom {
	display:inline-block;
	width:90%;
	margin: auto 5%;
} 
.footer-bottom-left {
	clear:both;
	float:left;
	display:block;
	width:50%;
	padding:auto;
	text-align:left;
} 
.footer-bottom-right {
	clear:none;
	float:left;
	display:block;
	width:50%;
	padding:auto;
	text-align:right;
}
.footer-bottom a {
	color: #000;
    line-height: 50px;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent; /* linea già presente ma invisibile */
    transition: 
	color 0.3s ease,
	transform 0.3s ease,
	border-color 0.3s ease;
/* FOOTER BOTTOM */
}	
}
/* Layout landscape: da 820 px a 1024 px max.  Eredita stili da: Layout mobile e Layout tablet portrait */
@media only screen and (min-width: 820px ) {
body {
	padding-top:0; /* stessa altezza dell’header */
}
/* CONTAINER */
.gridContainer, .gridContainerMid  {
	width:100%;
	margin:0 auto;
	padding:0;
	max-width:1232px;
	min-width:768px;
}
#scrollTopBtn {
	display:block;
/* CONTAINER */	

/* HEADER */
}
#fullheader  {
	display:block;
	width:100%;
	position:fixed;
	top:0;
	left:0;
	min-height:auto;
	margin:0 auto;
	padding:0;
	background:#FFF;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	background: linear-gradient(to right, rgba(18, 28, 34, 0.95), rgba(18, 18, 18, 0.95));
/*    backdrop-filter: blur(3px);*/
}
#header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;	
	
/* PARTNERS */
}
.partners {
  width: 90%;
  padding: 50px 0;
  margin: 0 auto;
  background: #FFF;
  position: relative; /* Necessario per la posizione assoluta del gradiente */
  overflow: hidden; /* Nascondi qualsiasi parte oltre il bordo */
}
/* Titolo della sezione */
.partners-title {
	display:inline-block;
	width:100%;
	min-height:20px;
	margin-left:auto;
	margin-right:auto;
	text-align: center; /* Centra il titolo orizzontalmente */
	margin-top:0;
	margin-bottom: 30px; /* Spazio sotto il titolo */
}
/* Titolo sezione */
.partners-title h2 {
	position: relative;
    font-family: var(--font-general);
    font-size: 2.76em; /* 36px */
	line-height:36px;
	font-weight:300;
    color: #121A20;
	margin: 0 auto;
}
/* Separatore titolo */
.partners-title h2::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin: 20px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente piÃ¹ elegante */
}
/* Aggiungi un effetto sfumato (blur) molto più delicato ai bordi */
.partners::before, .partners::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none; /* Evita che il gradiente interferisca con l'interazione */
	z-index: 1;
}
.partners::after {
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 100%);
}
/* Contenitore swiper */
.partners .swiper {
	overflow: hidden;
}
.partners .swiper-wrapper {
	display: flex;
	align-items: center; /* Centra verticalmente i contenuti */
}
.partners .swiper-slide {
	display: flex;
	align-items: center; /* Centra verticalmente il logo */
 	justify-content: center; /* Centra orizzontalmente */
	width: auto; /* Lascia che la larghezza si adatti */
}
/* Loghi */
.partners img {
  max-height: 70px; /* Altezza massima 80px */
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
 }
.partners img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
 /* PARTNERS */

/* FOOTER BOTTOM */
} 
.footer-bottom {
	display:inline-block;
	width:90%;
	margin: auto 5%;
} 
.footer-bottom-left {
	clear:both;
	float:left;
	display:block;
	padding:auto;
	width:50%;
	text-align:left;
} 
.footer-bottom-right {
	clear:none;
	float:left;
	display:block;
	padding:auto;
	width:50%;
	text-align:right;
}
.footer-bottom a {
	color: #000;
    line-height: 60px;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent; /* linea già presente ma invisibile */
    transition: 
	color 0.3s ease,
	transform 0.3s ease,
	border-color 0.3s ease;
/* FOOTER BOTTOM */
}
}
/* Layout desktop: da 1024 px a superiori. Eredita stili da: Layout tablet landscape */
@media only screen and (min-width: 1024px ) {
body {
  padding-top:0; /* stessa altezza dell’header */
}
/* CONTAINER */
.gridContainer {
	width:100%;
	margin:0 auto;
	padding:0;
	max-width:1232px;
	min-width:768px;
}
.gridContainerMid {
	width:100%;
	margin:0 auto;
	padding:0;
	max-width:1920px;
}
.gridContainerFull {
	width:100%;
	margin:0 auto;
	padding:0;
/*	max-width:1920px;*/
	min-width:768px;
/* CONTAINER */

/* HEADER */
}
#fullheader  {
	display:block;
	top: 0;
	left: 0;
	width:100%;
	position:fixed;
	min-height:auto;
	margin:0 auto;
	padding:0;
	background:#FFF;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	background: linear-gradient(to right, rgba(18, 28, 34, 0.95), rgba(18, 18, 18, 0.95));
 /*   backdrop-filter: blur(3px);*/
}
#header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
}
/* LOGO */
#header .logo img {
    height: 50px;
}
/* ===== BUTTON HAMBURGER ===== */
.menu-toggle {
    display: none;
}


/* ===== MENU DESKTOP ===== */
#header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    padding-top: 0 !important;
}

#header nav ul li {
    opacity: 1 !important;           
    transform: translateX(0) !important; 
    transition: none !important;      
}

/* Link menu */
#header nav ul li a {
    position: relative;               /* necessario per ::after */
    font-family: var(--font-general);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.15em; 
    letter-spacing: 1px;
    transition: color 0.25s ease, transform 0.25s ease;
}

/* Underline animato dal centro con width */
#header nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;              /* parte dal centro */
    bottom: -2px;
    height: 1px;
    background-color:#FEC800;
    width: 0;               /* inizialmente invisibile */
    transform: translateX(-50%); /* centra la linea */
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1); /* morbido */
}

/* Hover + active */
#header nav ul li a:hover,
#header nav ul li a.active {
    color: #FEC800;
    transform: translateY(-2px); /* lift */
}

#header nav ul li a:hover::after,
#header nav ul li a.active::after {
    width: 100%; /* si estende completamente dal centro */
}
#header nav {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    background: none;
    padding-top: 0;
    transition: none;
}
#header nav.open {
    right: auto; /* irrilevante ma per sicurezza */
}
#header nav ul {
    flex-direction: row;
    padding-left: 0;
    gap: 25px;
}

/* PARTNERS */
.partners {
  width: 90%;
  padding: 60px 0;
  margin: 0 auto;
  background: #FFF;
  position: relative; /* Necessario per la posizione assoluta del gradiente */
  overflow: hidden; /* Nascondi qualsiasi parte oltre il bordo */
}
/* Titolo della sezione */
.partners-title {
	display:inline-block;
	width:100%;
	min-height:20px;
	margin-left:auto;
	margin-right:auto;
	text-align: center; /* Centra il titolo orizzontalmente */
	margin-top:0;
	margin-bottom: 30px; /* Spazio sotto il titolo */
}
/* Titolo sezione */
.partners-title h2 {
	position: relative;
    font-family: var(--font-general);
    font-size: 3.07em; /* 40px */
	line-height:40px;
	font-weight:300;
    color: #121A20;
	margin: 0 auto;
}
/* Separatore titolo */
.partners-title h2::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin: 20px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente piÃ¹ elegante */
}
/* Aggiungi un effetto sfumato (blur) molto più delicato ai bordi */
.partners::before, .partners::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none; /* Evita che il gradiente interferisca con l'interazione */
	z-index: 1;
}
.partners::after {
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 100%);
}
/* Contenitore swiper */
.partners .swiper {
	overflow: hidden;
}
.partners .swiper-wrapper {
	display: flex;
	align-items: center; /* Centra verticalmente i contenuti */
}
.partners .swiper-slide {
	display: flex;
	align-items: center; /* Centra verticalmente il logo */
 	justify-content: center; /* Centra orizzontalmente */
	width: auto; /* Lascia che la larghezza si adatti */
}
/* Loghi */
.partners img {
  max-height: 70px; /* Altezza massima 80px */
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
 }
.partners img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
/* PARTNERS */

/* FOOTER BOTTOM */  
} 
.footer-bottom {
	display:inline-block;
	width:88%;
	margin: auto 6%;
} 
.footer-bottom-left {
	clear:both;
	float:left;
	display:block;
	width:50%;
	padding:auto;
	text-align:left;
} 
.footer-bottom-right {
	clear:none;
	float:left;
	display:block;
	width:50%;
	padding:auto;
	text-align:right;
}
.footer-bottom a {
	color: #000;
    line-height: 70px;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent; /* linea già presente ma invisibile */
    transition: 
	color 0.3s ease,
	transform 0.3s ease,
	border-color 0.3s ease;
/* FOOTER BOTTOM */
}
}