/* ==========================
   RESET + BASE
   ========================== */
:root {
  --color-primary: #8CA9E7;
 /* --font-main: 'Quicksand', sans-serif;*/
  --font-main: "Plus Jakarta Sans", sans-serif;
/* * { box-sizing: border-box;}*/
}
body, html {
	margin: 0;
	padding: 0;
	height: auto;
/*	background:#DDE3F0;*/
/*	background: linear-gradient(to bottom, #DDE3F0 0%, #DDE3F0 20%, transparent 100%);*/
	background: linear-gradient(to bottom, #DDE3F0 0%, #DDE3F0 35%, transparent 100%);
	font-family: var(--font-main);
	font-optical-sizing: auto;
	font-weight:200;
	font-style: normal;	
}
/* SCROLL TOP */
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:60px;
	right:30px;
	overflow:hidden;
	width:auto;
	height:auto;
	border:none;
	background-color:#274B7B;
	font-size:11px;
	font-weight:100;
	padding:12px 14px;
	color:#FFF;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border-radius: 50%;
	z-index:1001;
}
#toTop::before {
  content: "\f062"; /* Unicode per fa-arrow-up */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Necessario per solid icons */
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}
#toTop:hover {
	background-color:#333;
	bottom:70px;
}
#toTop {
	visibility:hidden;
/* SCROLL TOP */
}
body.no-scroll,
html.no-scroll {
  overflow: hidden;
  height: 100%;
/* CONTAINER */
}
.gridContainer, .gridContainerMid,  .gridContainerFull {
	width:100%;
	margin:0 auto;
	padding:0;
}
.lightgrey {
	background-color:#EFEFEF;
}
/* HEADER */
.gradient-fade-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
  z-index: 9;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.gradient-fade-top.active {
  opacity: 1;
}
header {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	box-sizing: border-box;
	top: 10px;
	left: 2%;
	width: 96%;
	padding: 0 2%;
	background: transparent;
	color:rgba(255, 255, 255, 0.8);
	border-radius:10px;
	transition: background-color 0.4s ease;
}
#header .logo, #header .logo a {
	color: white; /* di default bianco */
	transition: color 0.3s ease;
}

#header.scrolled .logo, #header.scrolled .logo a {
	color: black; /* quando scrolli diventa nero */
}
#header {
	color: white;
	transition: color 1.5s ease, background-color 3.5s ease;
	
}/* Cambia colore logo e link quando header ha sfondo bianco */
#header.scrolled {
	background-color:#efefef;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Ombra leggera e elegante */
	color: black;
}
/* CONTENITORE INTERNO */
.header-inner {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
header.scrolled .menu-toggle {
	color: #244673; /* oppure #244673 se vuoi blu */
}
/* Quando header ha sfondo bianco (scrolled), cambia colore ai link */
header.scrolled nav ul li a {
	color: #000; /* o #244673 se preferisci */
	font-weight: 500;
	transition: color 0.3s ease;
}
/* Quando header ha sfondo bianco (scrolled), cambia colore ai link */
header.scrolled nav ul li a:hover {
	color: #244673; /* o #244673 se preferisci */
}
header.scrolled nav ul li:last-child a {
	color: white;
	background-color: #4B6992;
}
nav ul li a.active {
  color: #244673 !important; /* <------------- active su voci di menu */
}
nav ul li a {
	transition: color 0.3s ease;
}
/* LOGO */
.logo {
/*	font-size: 4.61em; /* 60px */
	font-size: 1.53em; /* 20px */
	font-weight: 500;
	color: inherit;
	text-decoration: none;
	padding-bottom:5px;
	transition: color 0.2s ease;  
	font-variant: small-caps; /* TUTTO in small caps */
}

/* Ingrandisce le iniziali */
.logo .big {
	font-size: 1.53em; /* 20px  leggermente più grande */
}
/* Applica small-caps */
.logo .small {
	font-size: 1.38em;  /* 18px leggermente più piccolo per bilanciare */
}
nav.active ~ .logo {
	color: black;
}
/* ==== MENU TOGGLE ANIMATO ==== */
.menu-toggle {
	display: block;
	width: 30px;
	height: 22px;
	margin-right:1%;
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1100; /* sopra il nav mobile */
}
.menu-toggle span {
	position: absolute;
	left: 0;
	height: 3px;
	width: 100%;
	background: currentColor;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) {
	top: 0;
}
.menu-toggle span:nth-child(2) {
	top: 9px;
}
.menu-toggle span:nth-child(3) {
	bottom: 0;
}
/* Stato attivo: trasforma in X */
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg);
	bottom: auto;
	top: 9px;
}
/* MENU ITEMS */
nav {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,0.95);
	padding:0;
}

nav.active {
	display: flex;
}
nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
nav ul li a {
	color: inherit;
	text-decoration: none;
	font-size: 1.076em;
	text-transform: uppercase;
	font-weight: 400;
	transition: color 0.3s ease;
}
nav ul li:last-child a {
	background-color: #4B6992;
	padding: 8px 20px;
	border-radius: 4px;
	color: white;
	font-weight: 700;
}
nav ul li:last-child a:hover {
	background-color: #1b3554;
}
nav.active a {
    color: black;  /* tutti i link diventano neri */
}
nav.active ul li:last-child a {
	color: white;  /* ultimo “pulsante” resta bianco su sfondo blu */
    background-color: #4B6992;
}
/* se vuoi il logo cambi colore quando menu aperto: */
header .logo {
/* default magari è bianco */
	color: white;
}
/* ma se nav è attivo, logo nero: */
nav.active ~ .logo,
/* oppure se header riceve classe menu-open: */
header.menu-open .logo {
	color: white;
/* NAV MOBILE (chiuso) */
}
nav {
	position: absolute;
	top: 112%;
	left: 0;
	width: 96%;
	background: rgba(255,255,255,1);
	padding: 0 2%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
	display: flex;
	border-radius:8px;
	flex-direction: column;
}
/* NAV MOBILE (aperto) */
nav.active {
	max-height: 100vh;
	height:auto;
	padding: 20px 2%;
	padding-bottom:25px;
	overflow-y:auto;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ombra sotto */
/* HERO */
}  
.hero {
	position: relative;
	height: 40vh;
	overflow: hidden;
}
.hero video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
.hero .content {
	position: relative;
	z-index: 1;
	color: white;
	font-size: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	display:none; /* lo nascondo momentaneamente */
}
.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.0); /* opacità regolabile */
	z-index: 1;
}
/* ABOUT US */ 
.section-about {
	position:relative;
	width:86%;
	margin:0 7%;
	padding-top:40px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
/*	background: white;*/
	display: flex;
	justify-content: center;
}
.section-about > * {
	position: relative;
	z-index: 1;
}
/* Immagine decorativa */
.section-about::after {
	content: "";
	position: absolute;
	bottom: 0; /* --> per compensare il padding bottom della .section-about */
	right: 0; /* --> per compensare il padding right della .section-about */
	width: 120px; /* Regolabile */
	height: 140px;
	background-image: url('../images/grafico.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom right;
	opacity: 0.2; /* Opzionale per effetto decorativo */
	pointer-events: none;
	z-index: 0;
}
.about-inner {
	width: 100%;
}
.section-about h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: left;
}
.about-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0;
}
.section-about p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:36px;
	color: #333333;
	margin-bottom:40px;
	text-align: left;
}
.about-extra-text p {
	font-size: 1.38em;/*18px */
	line-height:34px;
	margin-bottom: 10px;
	font-weight: 600;
}
.check-list {
	list-style: none;
	padding-left: 0;
	padding-right:auto;
	font-size: 1.38em;/*18px */
	line-height:26px;
	font-weight: 500;
	color: #333;
}
.check-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px; /* vertical alignment tweak */
	width: 20px;
	height: 16px;
	background-image: url('../images/check.png'); /* cambia con il tuo path */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
/* PORFOLIO */
#fullportfolio  {
	display:block;
	width:80%;
	min-height:auto;
	margin:0 auto;
	padding:0;
/*	background:#C0CAD8;*/
	z-index: 999; /* sopra hero */
}
.investment-portfolio {
	color: #333;
	width:94%;
	margin:0 3%;
	padding-top:40px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	overflow: hidden;
}
/* CONTENITORE CENTRATO PER H2 E PARAGRAFO */
.content-wrapper {
	width:90%;
	text-align: center;
	margin: 0 auto;
	padding: 0 5%;
}
/* TITOLO */
.investment-portfolio h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	text-transform: uppercase;
	margin-top:0;
	color: #264B7A;
	margin-bottom: 15px;
}
/* LINEA ORO SOTTO IL TITOLO */
.divider {
  height: 3px;
  width: 80px;
  background-color: #B58E00;
  margin: 0 auto 30px auto;
}
/* PARAGRAFO */
.investment-portfolio p {
  font-size: 1.84em; /*24px*/
  line-height:24px;
  font-weight:400;
 /*max-width: 1232px;*/
  margin: 0 auto 60px auto;
}
/* BOARD OF DIRECTORS */
#fullboard  {
	display:block;
	width:100%;
	min-height:auto;
	margin:0 auto;
	padding:0;
} 
.section-board {
	position:relative;
	width:86%;
	margin:0 7%;
	padding-top:40px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-board > * {
	position: relative;
	z-index: 1;
}
.board-inner {
	width: 100%;
}
.section-board h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: right;
}
.board-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0 15px auto; /* auto a sinistra => spinge a destra */
}
.section-board p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:36px;
	color: #333333;
	margin-bottom:40px;
	text-align: right;
}
/* TEAM */ 	
#team-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.card {
	box-sizing: border-box;
	position:relative;
	display: flex;
	background: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 40px;
	width:96%;
	margin-right:4%;
	border-radius: 8px;
}
.tab {
	position: absolute;
	display: block;
	width: 100px;
	height: 40px;
	background-color: #244673;
	top: -15px;
	right: -4%;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
	color: white;
	text-align: center;
	line-height: 40px;
	color: white;
	padding: 0 10px;
	font-weight: bold;
	font-size: 14px;
}
.tab i {
	font-size: 18px;
	color: white;
}
.card.reverse .tab {
	top:-15px;
	left: -4%;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
/* AMINAZIONE TAB */
}
.tab, .card.reverse .tab {
	transition: border-radius 0.4s ease, background-color 0.3s ease;
}
.tab:hover {
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
	background-color: #3b5d99;
}
.card.reverse .tab:hover {
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	background-color: #3b5d99;
/* AMINAZIONE TAB */
}
.card-text {
	overflow: hidden;
	width: 100%;
}
.media-block {
	float: left;
	width: 260px;
	margin: 0 40px 20px 0;
	text-align: left;
}
.card.reverse .media-block {
	float: right;
	margin: 0 0 10px 40px;
	text-align: right; 
}
.card.reverse .media-block img {
	border-radius: 4px !important;
}
.card.reverse {
	margin-right: 0;
	margin-left: 4%;
}
.media-block h3 {
	font-size: 1.53em; /* 20px */
	line-height: 22px;
	font-weight: 600;
	color: #244672;
	margin: 0 0 5px 0;
}
.media-block h4 {
	font-size: 1.38em; /* 18px */
	line-height: 20px;
	font-weight: 400;
	color: #B58E00;
	margin: 0 0 15px 0;
}
.media-block img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.4s ease;
	border-radius: 4px;
}
.media-block img:hover {
	filter: grayscale(0%);
}
.margine {
	display:block;
	width:100%;
	height:70px;
}
.card-text p {
	font-size: 1.38em;/*18px */
	line-height: 26px;
	font-weight: 400;
	color: #333;
	margin-top: 0;
	margin-bottom:1em;
	padding-top:0;
	padding-bottom: 0;
	text-align: justify;
}
.card.reverse .card-text p {
	text-align:  justify;
/* CONTACT */ 
}
.section-contact {
	position:relative;
	width:90%;
	margin:0 10%;
	margin-left:10%;
	margin-right:0;
	padding-top:40px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-contact > * {
	position: relative;
	z-index: 1;
}
.contact-inner {
	width: 100%;
}
.section-contact h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: left;
}
.contact-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0;
}
.section-contact p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:34px;
	color: #333333;
	margin-bottom:40px;
	text-align: left;
}
ul.check-list-contact {
	list-style: none;
	padding-left: 0;
	margin-top: 40px;
	padding-right: 15%;
	font-size: 2.15em; /* 28px */
	line-height: 36px;
	font-weight: 400;
	color: #333;
}
ul.check-list-contact li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 40px;
	text-transform: uppercase;
}
ul.check-list-contact li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 23px;
	height: 18px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
ul.check-list-contact li span {
	display: block;
	font-size: 22px;
	line-height: 1.23em; /*16px */
	text-transform: none; /* niente maiuscole qui */
	margin-top: 6px;
	color: #333;
}
.contact-icons {
	position: absolute;
	bottom: 0px;
	right:auto;
	left:5%;
	display: flex;
	gap: 15px;
	z-index: 1;
}
.contact-icons a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #244673; /* sfondo blu */
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.contact-icons a:hover {
	background-color: #b58e00; /* cambio colore al hover */
	transform: scale(1.1);
}
.contact-icons i {
	color: white; /* icona bianca */
	font-size: 24px;
	transition: color 0.3s ease;
}
.contact-icons a:hover i {
	color: #fff; /* resta bianca oppure cambia se vuoi */
}
#fullother  {
	display:block;
	width:100%;
	min-height:auto;
	margin:0 auto;
	padding:0;
} 
/* OTHER INFORMATION */ 
.section-other {
	position:relative;
	width:80%;
	margin:0 10%;
	padding-top:40px;
	padding-left:0;
	padding-right:0;
	padding-bottom:70px;
	display: flex;
	justify-content: center;
}
.section-other > * {
	position: relative;
	z-index: 1;
}
.other-inner {
	max-width: 2100px;
	width: 100%;
}
.section-other h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: right;
}
.other-underline {
	width: 100px;
	height: 4px;
	background-color: #B58E00;
	margin: 20px 0 20px auto; /* margine automatico a sinistra */
}
.section-other p {
	font-size: 2em; /*26px;*/
	font-weight:400;
	line-height:40px;
	color: #333333;
	margin-bottom:50px;
	text-align: left;
}
/* ✅ Stile base, si applica SEMPRE, anche su mobile */
ul.check-list-other {
	list-style: none;
	padding: 0;
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr; /* 1 colonna anche su mobile */
	gap: 40px;
	font-size: 2.15em;
	line-height: 36px;
	font-weight: 400;
	color: #333;
}
ul.check-list-other li {
	position: relative;
	text-transform: uppercase;
	padding-right: 35px; /* spazio per icona a destra */
	text-align: right; /* ✅ sempre allineato a destra */
}

ul.check-list-other li::before {
	content: "";
	position: absolute;
	right: 0;
	top: 6px;
	width: 25px;
	height: 20px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

ul.check-list-other li span {
	display: block;
	font-size: 22px;
	line-height: 1.5em;
	text-transform: none;
	margin-top: 6px;
	color: #333;
	text-align: right; /* ✅ sempre allineato a destra */
}
/* FOOTER*/
#fullfooter  {
	display:block;
	width:100%;
	min-height:auto;
	margin:0 auto;
	padding:0;
/*	background:#C0CAD8;*/
	z-index: 999; /* sopra hero */
}
 /* FOOTER */
.frosted-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	padding: 1rem 2rem;
	z-index: 959;
	backdrop-filter: blur(12px);
}
.site-footer {
	position:fixed;
	flex-direction: column; /* va su una colonna sola  */
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	bottom:10px;
	left: 2%;
	right:2%;
	width: 96%;
	padding:1% 2%;
	background-color:#efefef;
	border-radius:10px;
	z-index:1000;
	height: auto;
}
.site-footer a {
    margin: 3px 0;    /* spazio verticale tra i link */
    text-align: center;
	font-size: 1.0em;/* 13px*/
	color:#666;!important;
	font-weight:300;!important;
    opacity: 1 !important;
    filter: none !important;
	text-decoration: none;
	transition: color 0.3s ease;
}
.site-footer a:hover {
	text-decoration: none;
	color:#274B7B;
}
/* ==========================
   RESPONSIVE BREAKPOINTS
   ========================== */
/* Layout tablet portrait: da 480 px a 820 px. Eredita stili da: Layout mobile. */
@media only screen and (min-width: 480px ) {
/* * { box-sizing: border-box;}*/
/* CONTAINER */
.gridContainer, .gridContainerMid, .gridContainerFull {
	width:100%;
	margin:0 auto;
	padding:0;
}
/* LOGO */
.logo {
/*	font-size: 4.61em; /* 60px */
	font-size: 1.84em; /* 24px */
	font-weight: 500;
	color: inherit;
	text-decoration: none;
	padding-bottom:5px;
	transition: color 0.2s ease;  
	font-variant: small-caps; /* TUTTO in small caps */
}

/* Ingrandisce le iniziali */
.logo .big {
	font-size: 1.69em;  /* 22px  leggermente più grande */
}
/* Applica small-caps */
.logo .small {
	font-size: 1.38em;  /* 18px leggermente più piccolo per bilanciare */
}
nav.active ~ .logo {
	color: black;
/* HERO */
}  
.hero {
	position: relative;
	height: 50vh;
	overflow: hidden;
}
.hero video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
/* ABOUT US */ 
.section-about {
	position:relative;
	width:86%;
	margin:0 7%;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-about > * {
	position: relative;
	z-index: 1;
}
/* Immagine decorativa */
.section-about::after {
	content: "";
	position: absolute;
	bottom: 50px; /* --> per compensare il padding bottom della .section-about */
	right: 0; /* --> per compensare il padding right della .section-about */
	width: 140px; /* Regolabile */
	height: 163px;
	background-position: bottom right;
	opacity: 0.5; /* Opzionale per effetto decorativo */
	pointer-events: none;
	z-index: 0;
}
.about-inner {
	width: 100%;
}
.section-about h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: left;
}
.about-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0;
}
.section-about p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:36px;
	color: #333333;
	margin-bottom:40px;
	text-align: left;
}
.about-extra-text p {
	font-size: 1.38em;/*18px */
	line-height:34px;
	margin-bottom: 10px;
	font-weight: 600;
}
.check-list {
	list-style: none;
	padding-left: 0;
	padding-right:auto;
	font-size: 1.38em;/*18px */
	line-height:26px;
	font-weight: 500;
	color: #333;
}
.check-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px; /* vertical alignment tweak */
	width: 20px;
	height: 16px;
	background-image: url('../images/check.png'); /* cambia con il tuo path */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
/* PORFOLIO */
#fullportfolio  {
	display:block;
	width:80%;
	min-height:auto;
	margin:0 auto;
	padding:0;
	z-index: 999; /* sopra hero */
}
.investment-portfolio {
	width:90%;
	margin:0 5%;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	overflow: hidden;
}

/* CONTENITORE CENTRATO PER H2 E PARAGRAFO */
.content-wrapper {
	width:96%;
	text-align: center;
	margin: 0 auto;
	padding: 0 2%;
}

/* TITOLO */
.investment-portfolio h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	text-transform: uppercase;
	margin-top:0;
	margin-bottom: 15px;
}

/* LINEA ORO SOTTO IL TITOLO */
.divider {
  height: 3px;
  width: 80px;
  background-color: #B58E00;
  margin: 0 auto 30px auto;
}

/* PARAGRAFO */
.investment-portfolio p {
  font-size: 1.84em; /*24px*/
  line-height:24px;
  font-weight:400;
 /*max-width: 1232px;*/
  margin: 0 auto 60px auto;
}
/* BOARD OF DIRECTORS */ 
.section-board {
	position:relative;
	width:86%;
	margin:0 7%;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-board > * {
	position: relative;
	z-index: 1;
}
.board-inner {
	width: 100%;
}
.section-board h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: right;
}
.board-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0 15px auto; /* auto a sinistra => spinge a destra */
}
.section-board p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:36px;
	color: #333333;
	margin-bottom:40px;
	text-align: right;
/* TEAM */ 	
}
#team-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.card {
	box-sizing: border-box;
	position:relative;
	display: flex;
	background: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 40px;
	width:96%;
	margin-right:4%;
	border-radius: 8px;
}
.tab {
	position: absolute;
	display: block;
	width: 100px;
	height: 40px;
	background-color: #244673;
	top: 25px;
	right: -4%;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
	color: white;
	text-align: center;
	line-height: 40px;
	color: white;
	padding: 0 10px;
	font-weight: bold;
	font-size: 14px;
}
.tab i {
	font-size: 18px;
	color: white;
}
.card.reverse .tab {
	top:25px;
	left: -4%;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
}
.card-text {
	overflow: hidden;
	width: 100%;
}
.media-block {
	float: left;
	width: 260px;
	margin: 0 40px 20px 0;
	text-align: left;
}
.card.reverse .media-block {
	float: right;
	margin: 0 0 10px 40px;
	text-align: right; 
}
.card.reverse {
	margin-right: 0;
	margin-left: 4%;
}
.media-block h3 {
	font-size: 1.69em; /* 22px */
	line-height: 22px;
	font-weight: 600;
	color: #244672;
	margin: 0 0 5px 0;
}
.media-block h4 {
	font-size: 1.53em; /* 20px */
	line-height: 22px;
	font-weight: 400;
	color: #B58E00;
	margin: 0 0 15px 0;
}
.media-block img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.4s ease;
	border-radius: 4px;
}
.media-block img:hover {
	filter: grayscale(0%);
}
.margine {
	display:block;
	width:100%;
	height:70px;
}
.card-text p {
	font-size: 1.38em;/*18px */
	line-height: 26px;
	font-weight: 400;
	color: #333;
	margin-top: 0;
	margin-bottom:1em;
	padding-top:0;
	padding-bottom: 0;
	text-align: justify;
}
.card.reverse .card-text p {
	text-align: justify;
	
/* CONTACT */ 
}
.section-contact {
	position:relative;
	width:90%;
	margin:0 10%;
	margin-left:10%;
	margin-right:0;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-contact > * {
	position: relative;
	z-index: 1;
}
.contact-inner {
	width: 100%;
}
.section-contact h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: left;
}
.contact-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0;
}
.section-contact p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:34px;
	color: #333333;
	margin-bottom:40px;
	text-align: left;
}
ul.check-list-contact {
	list-style: none;
	padding-left: 0;
	margin-top: 40px;
	padding-right: 15%;
	font-size: 2.15em; /* 28px */
	line-height: 36px;
	font-weight: 400;
	color: #333;
}
ul.check-list-contact li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 40px;
	text-transform: uppercase;

}
ul.check-list-contact li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 23px;
	height: 18px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
ul.check-list-contact li span {
	display: block;
	font-size: 22px;
	line-height: 1.23em; /*16px */
	text-transform: none; /* niente maiuscole qui */
	margin-top: 6px;
	color: #333;
}
.contact-icons {
	position: absolute;
	bottom: 0px;
	right:10%;
	display: flex;
	gap: 15px;
	z-index: 1;
}
.contact-icons a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #244673; /* sfondo blu */
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.contact-icons a:hover {
	background-color: #b58e00; /* cambio colore al hover */
	transform: scale(1.1);
}
.contact-icons i {
	color: white; /* icona bianca */
	font-size: 24px;
	transition: color 0.3s ease;
}
.contact-icons a:hover i {
	color: #fff; /* resta bianca oppure cambia se vuoi */
/* FOOTER */	

/* FOOTER */
}
.frosted-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	padding: 1rem 2rem;
	z-index: 959;
	backdrop-filter: blur(12px);
}
.site-footer {
	position:fixed;
	bottom:10px;
	left: 2%;
	right:2%;
	width: 96%;
	padding:0 2%;
	background-color:#efefef;
	border-radius:10px;
	z-index: 1000;
	height: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	box-sizing: border-box;
	flex-direction: row; /*torna su 2 colonne */
}
.site-footer a {
	font-size: 1.0em;/* 13px*/
	color:#666;!important;
	font-weight:300;!important;
    opacity: 1 !important;
    filter: none !important;
	text-decoration: none;
	transition: color 0.3s ease;
}
.site-footer a:hover {
	text-decoration: none;
	color:#274B7B;
}
}
/* 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 ) {
/* ========== BASE ========== */
/* TOP */
#toTop {
	visibility:visible; 
/* TOP */
/* CONTAINER */
}
.gridContainer,
.gridContainerMid {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	max-width: 1232px;
	min-width: 768px;
}
/* ========== HEADER ========== */
/* HEADER */
.gradient-fade-top {
	height:70px;
}
header {
	position: fixed;
	top: 20px;
	left: 1%;
	width: 98%;
	padding: 10px 2%;
	background: transparent;
	color:rgba(255, 255, 255, 0.8);
	border-radius:10px;
	z-index: 1000;
	transition: background-color 0.4s ease;
}

/* CONTENITORE INTERNO */
.header-inner {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
/* LOGO */
.logo {
/*	font-size: 4.61em; /* 60px */
	font-size: 1.84em; /* 24px */
	font-weight: 500;
	color: inherit;
	text-decoration: none;
	padding-bottom:5px;
	transition: color 0.2s ease;  
	font-variant: small-caps; /* TUTTO in small caps */
}

/* Ingrandisce le iniziali */
.logo .big {
	font-size: 1.69em;  /* 22px  leggermente più grande */
}

/* Applica small-caps */
.logo .small {
	font-size: 1.38em;  /* 18px leggermente più piccolo per bilanciare */
}	
nav.active ~ .logo {
	color: black;
}
/* MENU TOGGLE (solo mobile) */
/* ==== MENU TOGGLE ANIMATO ==== */
.menu-toggle {
	display: block;
	width: 30px;
	height: 22px;
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1100; /* sopra il nav mobile */
}
.menu-toggle span {
	position: absolute;
	left: 0;
	height: 3px;
	width: 100%;
	background: currentColor;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) {
 	top: 0;
}
.menu-toggle span:nth-child(2) {
	top: 9px;
}
.menu-toggle span:nth-child(3) {
	bottom: 0;
}
/* Stato attivo: trasforma in X */
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg);
	bottom: auto;
	top: 9px;
}
/* MENU ITEMS */
nav {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	width: 96%;
	background: rgba(255,255,255,0.95);
	padding:0;
}
nav.active {
	display: flex;
}
nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
nav ul li a {
	color: inherit;
	text-decoration: none;
	font-size: 1.076em;
	text-transform: uppercase;
	font-weight: 400;
	transition: color 0.2s ease;
}
nav ul li:last-child a {
	padding: 8px 20px;
	border-radius: 4px;
	color: white;
	font-weight: 700;
}
nav ul li:last-child a:hover {
	background-color: #1b3554;
}
nav.active a {
    color: black;  /* tutti i link diventano neri */
}
/* se vuoi il logo cambi colore quando menu aperto: */
header .logo {
/* default magari è bianco */
    color: white;
}
/* ma se nav è attivo, logo nero: */
nav.active ~ .logo,
/* oppure se header riceve classe menu-open: */
header.menu-open .logo {
   color: white;
/* NAV MOBILE (chiuso) */
}
nav {
	position: absolute;
  	top: 100%;
	left: 0;
	width: 96%;
	background: rgba(255,255,255,0.95);
	padding: 0 2%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
	display: flex;
	flex-direction: column;
}
/* NAV MOBILE (aperto) */
nav.active {
	max-height: 100vh;
	height:auto;
	padding: 20px 2%;
	padding-bottom:25px;
	overflow-y:auto;
} 	
/* HERO */ 
.hero {
	position: relative;
	height: 70vh;
	overflow: hidden;
}
/* ABOUT US */ 
.section-about {
	position:relative;
	width:86%;
	margin:0 7%;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-about > * {
	position: relative;
	z-index: 1;
}
/* Immagine decorativa */
.section-about::after {
	content: "";
	position: absolute;
	bottom: 50px; /* --> per compensare il padding bottom della .section-about */
	right: 0; /* --> per compensare il padding right della .section-about */
	width: 140px; /* Regolabile */
	height: 163px;
	background-position: bottom right;
	opacity: 0.8; /* Opzionale per effetto decorativo */
	pointer-events: none;
	z-index: 0;
}
.about-inner {
	width: 100%;
}
.section-about h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: left;
}
.about-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0;
}
.section-about p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:36px;
	color: #333333;
	margin-bottom:40px;
	text-align: left;
}
.about-extra-text p {
	font-size: 1.38em;/*18px */
	line-height:34px;
	margin-bottom: 10px;
	font-weight: 600;
}
.check-list {
	list-style: none;
	padding-left: 0;
	padding-right:220px;
	font-size: 1.38em;/*18px */
	line-height:26px;
	font-weight: 500;
	color: #333;
}
.check-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px; /* vertical alignment tweak */
	width: 20px;
	height: 16px;
	background-image: url('../images/check.png'); /* cambia con il tuo path */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
/* PORFOLIO */
#fullportfolio  {
	display:block;
	width:80%;
	min-height:auto;
	margin:0 auto;
	padding:0;
	z-index: 999; /* sopra hero */
	/*background: linear-gradient(to bottom, #244673 0%, #79A5BA 50%, white 100%);*/
}
.investment-portfolio {
	width:90%;
	margin:0 5%;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	overflow: hidden;
}

/* CONTENITORE CENTRATO PER H2 E PARAGRAFO */
.content-wrapper {
	width:96%;
	text-align: center;
	margin: 0 auto;
	padding: 0 2%;
}

/* TITOLO */
.investment-portfolio h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	text-transform: uppercase;
	margin-top:0;
	margin-bottom: 15px;
}

/* LINEA ORO SOTTO IL TITOLO */
.divider {
  height: 3px;
  width: 80px;
  background-color: #B58E00;
  margin: 0 auto 30px auto;
}

/* PARAGRAFO */
.investment-portfolio p {
  font-size: 1.84em; /*24px*/
  line-height:24px;
  font-weight:400;
 /*max-width: 1232px;*/
  margin: 0 auto 60px auto;
}
/* BOARD OF DIRECTORS */ 
.section-board {
	position:relative;
	width:86%;
	margin:0 7%;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-board > * {
	position: relative;
	z-index: 1;
}
.board-inner {
	width: 100%;
}
.section-board h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: right;
}
.board-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0 15px auto; /* auto a sinistra => spinge a destra */
}
.section-board p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:36px;
	color: #333333;
	margin-bottom:40px;
	text-align: right;
/* TEAM */ 	
}
#team-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.card {
	box-sizing: border-box;
	position:relative;
	display: flex;
	background: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 40px;
	width:96%;
	margin-right:4%;
	border-radius: 8px;
}
.tab {
	position: absolute;
	display: block;
	width: 100px;
	height: 40px;
	background-color: #244673;
	top: 25px;
	right: -4%;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
	color: white;
	text-align: center;
	line-height: 40px;
	color: white;
	padding: 0 10px;
	font-weight: bold;
	font-size: 14px;
}
.tab i {
	font-size: 18px;
	color: white;
}
.card.reverse .tab {
	top:25px;
	left: -4%;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
}
.card-text {
	overflow: hidden;
	width: 100%;
}
.media-block {
	float: left;
	width: 300px;
	margin: 0 40px 20px 0;
	text-align: left;
}
.card.reverse .media-block {
	float: right;
	margin: 0 0 10px 40px;
	text-align: right; 
}
.card.reverse {
	margin-right: 0;
	margin-left: 4%;
}
.media-block h3 {
	font-size: 1.69em; /* 22px */
	line-height: 22px;
	font-weight: 600;
	color: #244672;
	margin: 0 0 5px 0;
}
.media-block h4 {
	font-size: 1.53em; /* 20px */
	line-height: 22px;
	font-weight: 400;
	color: #B58E00;
	margin: 0 0 15px 0;
}
.media-block img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.4s ease;
	border-radius: 4px;
}
.media-block img:hover {
	filter: grayscale(0%);
}
.margine {
	display:block;
	width:100%;
	height:70px;
}
.card-text p {
	font-size: 1.38em;/*18px */
	line-height: 26px;
	font-weight: 400;
	color: #333;
	margin-top: 0;
	margin-bottom:1em;
	padding-top:0;
	padding-bottom: 0;
	text-align: justify;
}
.card.reverse .card-text p {
	text-align: justify;
	
/* CONTACT */ 
}
.section-contact {
	position:relative;
	width:80%;
	margin:0 10%;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-contact > * {
	position: relative;
	z-index: 1;
}
.contact-inner {
	width: 100%;
}
.section-contact h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: left;
}
.contact-underline {
	width: 80px;
	height: 3px;
	background-color: #B58E00;
	margin: 15px 0;
}
.section-contact p {
	font-size: 1.81em; /*24px;*/
	font-weight:400;
	line-height:34px;
	color: #333333;
	margin-bottom:40px;
	text-align: left;
}
ul.check-list-contact {
	list-style: none;
	padding-left: 0;
	margin-top: 40px;
	padding-right:0;
	font-size: 2.15em; /* 28px */
	line-height: 36px;
	font-weight: 400;
	color: #333;
}
ul.check-list-contact li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 40px;
	text-transform: uppercase;
}
ul.check-list-contact li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 23px;
	height: 18px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
ul.check-list-contact li span {
	display: block;
	font-size: 22px;
	line-height: 1.23em; /*16px */
	text-transform: none; /* niente maiuscole qui */
	margin-top: 6px;
	color: #333;
}
.contact-icons {
	position: absolute;
	bottom: 60px;
	left:auto;
	right:70px;
	display: flex;
	gap: 15px;
	z-index: 1;
}
.contact-icons a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #244673; /* sfondo blu */
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.contact-icons a:hover {
	background-color: #b58e00; /* cambio colore al hover */
	transform: scale(1.1);
}
.contact-icons i {
	color: white; /* icona bianca */
	font-size: 24px;
	transition: color 0.3s ease;
}
.contact-icons a:hover i {
	color: #fff; /* resta bianca oppure cambia se vuoi */
}
/* OTHER INFORMATION */ 
.section-other {
	position:relative;
	width:80%;
	margin:0 10%;
	padding-top:50px;
	padding-left:0;
	padding-right:0;
	padding-bottom:70px;
	display: flex;
	justify-content: center;
}
.section-other > * {
	position: relative;
	z-index: 1;
}
.other-inner {
	max-width: 2100px;
	width: 100%;
}
.section-other h2 {
	font-size: 3.46em; /* 45px */
	line-height:45px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: right;
}
.other-underline {
	width: 100px;
	height: 4px;
	background-color: #B58E00;
	margin: 20px 0 20px auto; /* margine automatico a sinistra */
}
.section-other p {
	font-size: 2em; /*26px;*/
	font-weight:400;
	line-height:40px;
	color: #333333;
	margin-bottom:50px;
	text-align: left;
}	
ul.check-list-other {
	list-style: none;
	padding-left: 0;
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 80px; /* spazio tra righe e colonne */
	font-size: 2.15em; /* 28px */
	line-height: 36px;
	font-weight: 400;
	color: #333;
	padding-right: 0;
}

ul.check-list-other li {
	position: relative;
	text-transform: uppercase;
}

/* Colonna sinistra (odd) */
ul.check-list-other li:nth-child(odd) {
	text-align: left;
	padding-left: 30px;
}

/* Colonna destra (even) */
ul.check-list-other li:nth-child(even) {
	text-align: right;
	padding-right: 35px;
}

/* Check icon - posizione per colonna sinistra */
ul.check-list-other li:nth-child(odd)::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 23px;
	height: 18px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Check icon - posizione per colonna destra */
ul.check-list-other li:nth-child(even)::before {
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	width: 25px;
	height: 20px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Contenuto descrittivo */
ul.check-list-other li span {
	display: block;
	font-size: 22px;
	line-height: 1.5em;
	text-transform: none;
	margin-top: 6px;
	color: #333;
}
/* SPAN per colonna sinistra */
ul.check-list-other li:nth-child(odd) span {
	text-align: left;
}

/* SPAN per colonna destra */
ul.check-list-other li:nth-child(even) span {
	text-align: right;
/* FOOTER */
}
.frosted-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	padding: 1rem 2rem;
	z-index: 959;
	backdrop-filter: blur(12px);
}
.site-footer {
	position:fixed;
	bottom:10px;
	left: 1%;
	right:1%;
	width: 98%;
	padding:0 2%;
	background-color:#efefef;
	border-radius:15px;
	z-index: 1000;
	height: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;  
}
.site-footer a {
	font-size: 1.0em;/* 13px*/
	color:#666;!important;
	font-weight:300;!important;
    opacity: 1 !important;
    filter: none !important;
	text-decoration: none;
	transition: color 0.3s ease;
}
.site-footer a:hover {
	text-decoration: none;
	color:#274B7B;
}
}
/* DESKTOP STYLES */
@media only screen and (min-width: 1024px) {
/* HEADER */
.gradient-fade-top {
	height:70px;
}
header {
	position: fixed;
	top: 20px;
	left: 1%;
	width: 98%;
	background: transparent;
	color:rgba(255, 255, 255, 0.8);
	border-radius:20px;
	z-index: 1000;
	transition: background-color 0.4s ease;
}
/* CONTENITORE INTERNO */
.header-inner {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
/* LOGO */
.logo {
/*	font-size: 4.61em; /* 60px */
	font-size: 1.84em; /* 24px */
	font-weight: 600;
	color: inherit;
	text-decoration: none;
	padding-bottom:5px;
	transition: color 0.2s ease;  
	font-variant: small-caps; /* TUTTO in small caps */
}

/* Ingrandisce le iniziali */
.logo .big {
	font-size: 1.69em;  /* 22px  leggermente più grande */
}

/* Applica small-caps */
.logo .small {
	font-size: 1.38em;  /* 18px leggermente più piccolo per bilanciare */
}		
/* MENU/NAV */
.menu-toggle {
    display: none;
}
nav {
    display: flex !important;
    position: static;
    background: transparent;
    padding: 0;
    width: auto;
	max-height:none;
	overflow:visible;
	transition:none;
    margin-right: 0;
} 
nav ul {
    flex-direction: row;
    gap: 12px;
}
nav ul li a {
    font-size: 1.0em;
    font-weight: 500;
    text-transform: uppercase;
    color: inherit;
    text-decoration: none;
}
nav ul li:last-child a {
    color: white;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 4px;
}
nav ul li:last-child a:hover {
    background-color: #1b3554;
}
/* MENU APERTO SU MOBILE */
nav.active a {
	color: #000; /* o #244673 se vuoi blu */
	max-height:100vh;
	padding:20px 2%;
}
/* HERO */ 
.hero {
	position: relative;
	height: 60vh;
	overflow: hidden;
}
/* ABOUT US */ 
.section-about {
	position:relative;
	width:96%;
	margin:0 2%;
	padding-top:60px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-about > * {
	position: relative;
	z-index: 1;
}
/* Immagine decorativa */
.section-about::after {
	content: "";
	position: absolute;
	bottom: 60px; /* --> per compensare il padding bottom della .section-about */
	right: 0; /* --> per compensare il padding right della .section-about */
	width: 154px; /* Regolabile */
	height: 179px;
	background-position: bottom right;
	opacity: 0.8; /* Opzionale per effetto decorativo */
	pointer-events: none;
	z-index: 0;
}
.about-inner {
	max-width: 2100px;
	width: 100%;
}
.section-about h2 {
	font-size: 3.84em; /* 50px */
	line-height:50px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: left;
}
.about-underline {
	width: 100px;
	height: 4px;
	background-color: #B58E00;
	margin: 20px 0;
}
.section-about p {
	font-size: 2em; /*26px;*/
	font-weight:400;
	line-height:40px;
	color: #333333;
	margin-bottom:50px;
	text-align: left;
}
.about-extra-text p {
	font-size: 1.53em;/*20px */
	line-height:36px;
	margin-bottom: 10px;
	font-weight: 600;
}
.check-list {
	list-style: none;
	padding-left: 0;
	padding-right:220px;
	font-size: 1.53em;/*20px */
	line-height:28px;
	font-weight: 500;
	color: #333;
}
.check-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px; /* vertical alignment tweak */
	width: 25px;
	height: 20px;
	background-image: url('../images/check.png'); /* cambia con il tuo path */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
/* PORFOLIO */
#fullportfolio  {
	display:block;
	width:80%;
	min-height:auto;
	margin:0 auto;
	padding:0;
	z-index: 999; /* sopra hero */
}
.investment-portfolio {
	width:96%;
	margin:0 2%;
	padding-top:60px;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
	overflow: hidden;
}
/* CONTENITORE CENTRATO PER H2 E PARAGRAFO */
.content-wrapper {
	width:96%;
	text-align: center;
	margin: 0 auto;
	padding: 0 2%;
}
/* TITOLO */
.investment-portfolio h2 {
	font-size: 3.84em; /* 50px */
	line-height:50px;
	font-weight:500;
	text-transform: uppercase;
	margin-top:0;
	margin-bottom: 20px;
}
/* LINEA ORO SOTTO IL TITOLO */
.divider {
  height: 4px;
  width: 100px;
  background-color: #B58E00;
  margin: 0 auto 30px auto;
}
/* PARAGRAFO */
.investment-portfolio p {
  font-size: 2.0em; /*26px*/
  line-height:26px;
  font-weight:400;
 /*max-width: 1232px;*/
  margin: 0 auto 70px auto;
}
/* BOARD OF DIRECTORS */ 
.section-board {
	position:relative;
	width:96%;
	margin:0 2%;
	margin-bottom:0;
	padding:60px 0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-board > * {
	position: relative;
	z-index: 1;
}
.board-inner {
	max-width: 2100px;
	width: 100%;
}
.section-board h2 {
	font-size: 3.84em; /* 50px */
	line-height:50px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align:right;
}
.board-underline {
	width: 100px;
	height: 4px;
	background-color: #B58E00;
	margin: 20px 0 20px auto; /* auto a sinistra => spinge a destra */
}
.section-board p {
	font-size: 2em; /*26px;*/
	font-weight:400;
	line-height:40px;
	color: #333333;
	margin-bottom:50px;
	text-align: right;
	
/* TEAM */ 	
}
#team-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.card {
	box-sizing: border-box;
	position:relative;
	display: flex;
	background: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 40px;
	width:96%;
	margin-right:4%;
	border-radius: 8px;
}
.tab {
	position: absolute;
	display: block;
	width: 120px;
	height: 50px;
	background-color: #244673;
	top: 25px;
	right: -4%;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
	color: white;
	text-align: center;
	line-height: 50px;
	color: white;
	padding: 0 10px;
	font-weight: bold;
	font-size: 14px;
}
.tab i {
	font-size: 18px;
	color: white;
}
.card.reverse .tab {
	top:25px;
	left: -4%;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
}
.card-text {
	overflow: hidden;
	width: 100%;
}
.media-block {
	float: left;
	width: 300px;
	margin: 0 40px 20px 0;
	text-align: left;
}
.card.reverse .media-block {
	float: right;
	margin: 0 0 10px 40px;
	text-align: right; 
}
.card.reverse {
	margin-right: 0;
	margin-left: 4%;
}
.media-block h3 {
	font-size: 1.84em; /* 24px */
	line-height: 24px
	font-weight: 500;
	color: #244672;
	margin: 0 0 10px 0;
}
.media-block h4 {
	font-size: 1.69em; /* 22px */
	line-height: 22px;
	font-weight: 400;
	color: #B58E00;
	margin: 0 0 15px 0;
}
.media-block img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.4s ease;
	border-radius: 4px;
}
.media-block img:hover {
	filter: grayscale(0%);
}
.margine {
	display:block;
	width:100%;
	height:70px;
}
.card-text p {
	font-size: 1.53em;
	line-height: 28px;
	font-weight: 400;
	color: #333;
	margin-bottom:1em;
	margin-top: 0;
	padding-top:0;
	padding-bottom: 0;
	text-align: justify;
}
.card.reverse .card-text p {
	text-align: justify;
}

/* CONTACT */ 
.section-contact {
	position:relative;
	width:90%;
	margin:0 5%;
	margin-bottom:20px;
	padding:60px 0;
	padding-bottom:0;
	display: flex;
	justify-content: center;
}
.section-contact > * {
	position: relative;
	z-index: 1;
}
.contact-inner {
	max-width: 2100px;
	width: 100%;
}
.section-contact h2 {
	font-size: 3.84em; /* 50px */
	line-height:50px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: left;
}
.contact-underline {
	width: 100px;
	height: 4px;
	background-color: #B58E00;
	margin: 20px 0;
}
.section-contact p {
	font-size: 2em; /*26px;*/
	font-weight:400;
	line-height:40px;
	color: #333333;
	margin-bottom:50px;
	text-align: left;
}
ul.check-list-contact {
	list-style: none;
	padding-left: 0;
	margin-top: 40px;
	padding-right: 0;
	font-size: 2.30em; /*30px */
	line-height: 40px;
	font-weight: 400;
	color: #333;
}
ul.check-list-contact li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 40px;
	text-transform: uppercase;
}
ul.check-list-contact li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 25px;
	height: 20px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
ul.check-list-contact li span {
	display: block;
	font-size: 22px;
	line-height: 1.5em;
	text-transform: none; /* niente maiuscole qui */
	margin-top: 6px;
	color: #333;
}
.contact-icons {
  position: absolute;
  bottom: 60px;
  right: 60px;
  display: flex;
  gap: 20px;
  z-index: 1;
}
.contact-icons a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #244673; /* sfondo blu */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.contact-icons a:hover {
  background-color: #b58e00; /* cambio colore al hover */
  transform: scale(1.1);
}
.contact-icons i {
  color: white; /* icona bianca */
  font-size: 24px;
  transition: color 0.3s ease;
}
.contact-icons a:hover i {
  color: #fff; /* resta bianca oppure cambia se vuoi */
  
/* OTHER INFORMATION */ 
}
.section-other {
	position:relative;
	width:90%;
	margin:0 5%;
	padding-top:60px;
	padding-left:0;
	padding-right:0;
	padding-bottom:155px;
	display: flex;
	justify-content: center;
}
.section-other > * {
	position: relative;
	z-index: 1;
}
.other-inner {
	max-width: 2100px;
	width: 100%;
}
.section-other h2 {
	font-size: 3.84em; /* 50px */
	line-height:50px;
	font-weight:500;
	color: #264B7A;
	margin: 0;
	text-transform: uppercase;
	text-align: right;
}
.other-underline {
	width: 100px;
	height: 4px;
	background-color: #B58E00;
	margin: 20px 0 20px auto; /* margine automatico a sinistra */
}
.section-other p {
	font-size: 2em; /*26px;*/
	font-weight:400;
	line-height:40px;
	color: #333333;
	margin-bottom:50px;
	text-align: left;
}	
ul.check-list-other {
	list-style: none;
	padding-left: 0;
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 80px; /* spazio tra righe e colonne */
	font-size: 2.3em; /* 30px */
	line-height: 40px;
	font-weight: 400;
	color: #333;
	padding-right: 0;
}
ul.check-list-other li {
	position: relative;
	text-transform: uppercase;
}

/* Colonna sinistra (odd) */
ul.check-list-other li:nth-child(odd) {
	text-align: left;
	padding-left: 30px;
}

/* Colonna destra (even) */
ul.check-list-other li:nth-child(even) {
	text-align: right;
	padding-right: 35px;
}

/* Check icon - posizione per colonna sinistra */
ul.check-list-other li:nth-child(odd)::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 25px;
	height: 20px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Check icon - posizione per colonna destra */
ul.check-list-other li:nth-child(even)::before {
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	width: 25px;
	height: 20px;
	background-image: url('../images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Contenuto descrittivo */
ul.check-list-other li span {
	display: block;
	font-size: 22px;
	line-height: 1.5em;
	text-transform: none;
	margin-top: 6px;
	color: #333;

/* FOOTER */
}
.frosted-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	padding: 1rem 2rem;
	z-index: 959;
	/* opacity:0.8;*/
	backdrop-filter: blur(12px);
	/* Sfondo sfumato dal bianco verso il trasparente (verso l’alto) */
	/*background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
}
.site-footer {
	position:fixed;
	bottom:10px;
	left: 1%;
	right:1%;
	width: 98%;
	padding:0 2%;
	background-color:#efefef;
	border-radius:20px;
	z-index: 1000;
	height: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;  
}
.site-footer a {
	font-size: 1.15em;/* 15px*/
	color:#666;!important;
	font-weight:300;!important;
    opacity: 1 !important;
    filter: none !important;
	text-decoration: none;
	transition: color 0.3s ease;
}
.site-footer a:hover {
	text-decoration: none;
	color:#274B7B;
}
}

