/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

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

:root {
  --grey: #EAEAEA;
  --grey-medium: #5B5956;  
  --grey-strong: #403C3A;
  --turquoise-light: #C6DFE3;
  --turquoise: #1BA3B1;
  --turquoise-medium: #00838E;
  --turquoise-strong: #01636B;
  --white: #FFFFFF;

  --Spacing-XS: 8px;
  --Spacing-S: 12px;
  --Spacing-M: 16px;
  --Spacing-L: 24px;
  --Spacing-XL: 32px;
  --Spacing-2XL: 48px;
  --Spacing-3XL: 64px;
  --Spacing-4XL: 80px;
  --Spacing-5XL: 96px;

  --fs-XS: 12px;
  --fs-S: 14px;
  --fs-M: 16px;
  --fs-2M: 18px;
  --fs-L: 24px;
  --fs-XL: 36px;
  --fs-2XL: 48px;
  --fs-3XL: 64px;

  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

html {
  color: var(--grey-medium);
  font-size: 1em;
  line-height: 1.5;
	scroll-behavior: smooth;
}
body {
  font-family: "Raleway";
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

ul, ol {
  list-style-type: none;
}

/* ==========================================================================
   Author's custom styles
   ============== */

a {
  color: var(--grey-medium);
  text-decoration: none;
}
.text-link-turquoise {
  color: var(--turquoise);
  transition: all 0.3s;
}
.text-link-turquoise:hover {
  color: #75B9C3;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-full {
  width: 100%;
  height: auto;
}
.fw-bold {
  font-weight: 700!important;
}
.fw-bolder {
  font-weight: 600!important;
}
.mb {
  margin-bottom: 24px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 12px;
}
.pb-1 {
  padding-bottom: 8px;
}
.gap-5XL {
  gap: var(--Spacing-5XL)!important;
}
.radius {
  border-radius: 8px;
}
.bg-grey {
  background-color: var(--grey);
}
.bg-turquoise {
  background-color: var(--turquoise-light);
}
.color-turquoise {
  color: var(--turquoise);
}
.color-turquoise-strong {
  color: var(--turquoise-strong);
}
.color-grey {
  color: var(--grey);
}
.color-grey-medium {
  color: var(--grey-medium);
}
.title-18 {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--grey-strong);  
}
.title-24 {
  font-size: 1.5rem;
  line-height: 2.0625rem;
  font-weight: 600;
}
.text-28 {
  font-size: 1.65rem;
  line-height: 1;
}
.title-36 {
  font-size: 1.5rem;
  line-height: 2.0625rem;
  font-weight: 500;
}
.sect-subtitle {
  margin-top: var(--Spacing-XL);
  padding: var(--Spacing-L) 0;
  border-top: 1px solid #B6B5B4;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: var(--Spacing-XS);  
}
.sect-subtitle h4 {
  flex: 1 1 100%;
}
.text,
.text-16 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--grey-medium);
}
.btn {
  font-size: 14px;
  line-height: 21px;
  color: var(--white);
  font-weight: 700;
  padding: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1BA3B1;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #75B9C3;
}
.btn:focus {
  background-color: #01636B;
}
.table-01 {
  margin-top: 25px;
  border: 1px solid #B6B5B4;
  border-radius: 4px;
}
.table-01 td p {
  margin-top: 0;
}
.table-01 th,
.table-01 td {
  vertical-align: middle;
  padding: 8px 16px;
}
.table-01 th {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  background-color: var(--turquoise);
  color: var(--white);
}
.table-01 td {
  text-align: center;
  border-bottom: 1px solid #B6B5B4;
}
.table-01 tr:last-child td {
  border-bottom: none;
}
.table-01 tr td:first-child p {
  font-weight: 600;
}
@media (min-width: 48rem) {
  .sect-subtitle {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .mb {
    margin-bottom: 48px;
  }
  .mb-1 {
    margin-bottom: 24px;
  }
  .radius {
    border-radius: 12px;
  }
  .box-01 {
    padding: 64px;
    border-radius: 12px;
  }
  .box-02 {
    padding: 64px;
  }
  .title-24 {
    font-size: 1.5rem;
    line-height: 2.0625rem;  
  }
  .title-36 {
    font-size: 2.25rem;
    line-height: 3.375rem;
  }
  .text {
    font-size: 1.375rem;
    line-height: 2.0625rem;
  }
  .text-16 {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--grey-medium);
  }  
}

   
/*** LAYOUT ***/
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px;
  border-top: 8px solid var(--turquoise, #1BA3B1);
}
header {
  display: flex;
  padding-bottom: var(--Spacing-3XL, 64px);
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.header--text h1 {
  display: flex;
  align-items: center;
  gap: var(--Spacing-M, 16px);
  align-self: stretch;
  color: var(--grey-strong, var(--grey-strong, #403C3A));
  font-variant-numeric: lining-nums proportional-nums;
  font-size: clamp(var(--fs-L), 4vw, var(--fs-3XL));
  line-height: clamp(1.4, 1, 1.8);
  font-weight: 600;  
  text-transform: uppercase;
}
.header--text h1 span {
  display: flex;
  padding: clamp(var(--Spacing-S, 8px), 4vw, var(--Spacing-S, 12px));
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background-color: var(--turquoise, #1BA3B1);
  color: var(--white, #FFF);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 3rem;
  font-size: clamp(24px, 2.5vw, 3rem);
  line-height: clamp(1rem, 2.5vw, 2.125rem);
  font-weight: 600;  
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: flex-start;
  overflow: auto;
}
nav ul {
  display: flex;
  gap: var(--Spacing-XL, 32px);
  height: var(--Spacing-3XL, 64px);
  justify-content: center;
  align-items: center;
}
nav ul a {
  color: var(--grey-strong, var(--grey-strong, #403C3A));
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}
.hero--img {
  width: 100%;
}
.hero--img img {
  display: flex;
  height: clamp(400px, 50vh, 600px);
  aspect-ratio: 152/75;
  border-radius: var(--Spacing-M, 16px);
  object-fit: cover;
}
footer {
  display: flex;
  flex-direction: column;
  gap: var(--Spacing-L);
  margin-top: var(--Spacing-3XL, 64px);
  padding: 0 var(--Spacing-M, 16px) var(--Spacing-L, 24px) var(--Spacing-M, 16px);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.footer-list {
  display: flex;
  align-items: center;
  gap: var(--Spacing-L, 24px);
}
.footer-list a {
  color: var(--grey-strong, #403C3A);
  font-size: var(--fs-M);
  font-weight: 600;
  line-height: 1.5;
}
.btn-download {
  display: flex;
  padding: var(--Spacing-S, 12px) var(--Spacing-L, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-XS, 8px);
  border-radius: var(--Spacing-2XL, 48px);
  background: var(--grey-strong, #403C3A);
  color: var(--white);
  font-family: var(--Font-family-Link, Raleway);
  font-size: var(--fs-S, 14px);
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.btn-download::before {
  content: '';
  background-image: url(../img/icons/ico_file_download.svg);
  background-size: contain;
  width: 20px;
  height: 20px;
}
.text-btn {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 48rem) {
  nav ul {
    gap: var(--Spacing-L, 24px);
  }
  .container {
    padding: 28px var(--Spacing-XL, 32px);
  }
  footer {
    flex-direction: row;
    margin-top: var(--Spacing-3XL, 64px);
    padding: 0 var(--Spacing-XL, 32px) var(--Spacing-L, 24px) var(--Spacing-XL, 32px);
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
  }
  .text-btn {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 87.5rem) {
  nav {
    /*overflow: hidden;*/
  }
}

.section-wrapper {
  margin-top: var(--Spacing-2XL);
  width: 100%;
  border-radius: 16px;
  padding: var(--Spacing-L);
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 11;
  position: relative;
  margin-bottom: var(--Spacing-L);
}
.section-label {
  display: inline-flex;
  padding: 0 clamp(var(--Spacing-S, 8px), 4vw, var(--Spacing-S, 8px));
  align-items: center;
  border-radius: 4px;
  background-color: var(--turquoise, #1BA3B1);
  color: var(--white, #FFF);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;  
  text-transform: uppercase;
}
.section-title {
  color: var(--grey-strong, var(--grey-strong, #403C3A));
  font-size: var(--fs-L, 24px);
  font-weight: 600;
  line-height: 2rem;
}
.section-header p {
  font-weight: 500;
  color: var(--grey-strong);
  margin-top: var(--Spacing-L);
}

.cifre-layout {
  position: relative;
  z-index: 11;
}
.cifre-sedi {
  display: flex;
  padding: var(--Spacing-XL, 32px) 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.cifre-sedi li {
  position: relative;
  color: var(--grey-strong, var(--grey-strong, #403C3A));
  font-size: .875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  padding-left: 30px;
}
.cifre-sedi li::before {
  content: '';
  width: 12px;
  height: 12px;
  display: flex;
  background-color: var(--turquoise);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 9999px;
}
.cifre-box-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: var(--Spacing-XL, 32px);
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  gap: 16px;
  align-self: stretch;
  flex-wrap: wrap;
  position: relative;
  z-index: 12;
}
.cifre-box {
  display: flex;  
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  gap: var(--Spacing-M, 16px);
  padding: var(--Spacing-XL, 32px);
  border-radius: 8px;
  background: var(--white, #FFF);
  box-shadow: 0 129.412px 36.765px 0 rgba(0, 0, 0, 0.00), 0 82.353px 32.353px 0 rgba(0, 0, 0, 0.01), 0 47.059px 27.941px 0 rgba(0, 0, 0, 0.05), 0 20.588px 20.588px 0 rgba(0, 0, 0, 0.09), 0 5.882px 11.765px 0 rgba(0, 0, 0, 0.10);
}
/*.cifre-box {
  display: none;
}*/
.cifre-box > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cifre-numero {
  color: var(--grey-strong);
  font-size: clamp(var(--fs-2XL), 4vw, var(--fs-3XL));
  font-weight: 600;
  line-height: 1;  
}
.legenda {
  font-size: var(--fs-XS);  
  margin-top: var(--Spacing-M);
  position: relative;
  z-index: 999;
}

.section-map {
  position: relative;
}
.map-cnt {
  position: relative;
  width: calc(100% + calc(2 * var(--Spacing-L)));
  padding: var(--Spacing-XL) 0;
  margin-left: calc(var(--Spacing-L) * -1);
  overflow: hidden;
}
.map {
  text-align: center;
  margin: 0 auto;
  position: relative; /* necessario per il posizionamento assoluto delle label */
}
.map > svg {
  width: 130%;
  height: auto; 
}
/* Overlay labels (sostituzione foreignObject per compatibilitÃ  Safari) */
.nation-labels-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.nation-labels-overlay .nation-label {
  position: absolute;
  width: 180px;
  pointer-events: none;
}
.map-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 205px;
  padding: 24px;
  row-gap: 32px;
  margin-right: 12px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1), 0px 14px 14px 0px rgba(0, 0, 0, 0.09), 0px 32px 19px 0px rgba(0, 0, 0, 0.05), 0px 56px 22px 0px rgba(0, 0, 0, 0.01), 0px 88px 25px 0px rgba(0, 0, 0, 0);
  border-radius: 8px;
}
.map-info .number {  
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3.375rem;
  color: var(--turquoise-medium);
  display: block;
}
.map-info .text {
  font-size: .875rem;
  line-height: 1.3125rem;
  color: var(--grey-medium);
}
.map-info .legenda {
  font-size: .875rem;
  line-height: 1.3125rem;
  font-weight: 500;
  color: #969492;
}
.nation-dtl {
  display: none;
}
.headquarter {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.3125rem;
  color: var(--turquoise-medium);
  position: relative;
}
.headquarter::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 5px;
  background: url(../img/icons/ico-headquarter.svg) no-repeat center;
  background-size: contain;
}
.headquarter.hide-icon-head::before {
  display: none;
}
.address {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.3125rem;
  color: var(--grey-medium);
}
a path {
  pointer-events: auto;
  transition: fill 0.4s;
}
.nation:hover path.nazioneMap {
  fill: var(--turquoise);
  opacity: 0.7;
  stroke: #75b9c4;
  stroke-width: 1px;
  transition: fill 0.4s;
  z-index: 999;
  position: relative;
}
.nation.active path.nazioneMap,
.nation:active path.nazioneMap {
  fill: #FFFFFF;
  stroke: #75b9c4;
  stroke-width: 1px;
  transition: fill 0.4s;
  fill-opacity: 1;
}
/* focus da tastiera */
.nation:focus .nazioneMap,
.nation:focus-visible .nazioneMap {
  fill: #ffffff;
  fill-opacity: 1;
}
path.nazioneMap {
  position: relative;
  z-index: 14;
}
.nation-marker {
  pointer-events: none;
}
.circlemap-outer {
  animation: pulse 1.5s infinite; /* Animazione che dura 1 secondo e si ripete all'infinito */
  transform-origin: center;     /* Assicurati che il punto di origine della trasformazione sia al centro del cerchio */
}
/* Il cerchio interno resta fisso */
.circlemap-inner {
  pointer-events: none;
}
.nation.active .circlemap,
.nation:hover .circlemap {
  display: none!important;
}
.nation.active .headquarterMap,
.nation:hover .headquarterMap {
  fill: #A3CDD4;
  stroke: #FFFFFF;  
}
.headquarterMap {
  z-index: 15;
  position: relative;
}
@keyframes pulse {
  0% {
      opacity: 1;               /* OpacitÃ  completa */
  }
  25% {
      opacity: 0.8;             /* OpacitÃ  ridotta a metÃ  */
  }
  50% {
    opacity: 0;             /* OpacitÃ  ridotta a metÃ  */
  }
  75% {
    opacity: 0.8;             /* OpacitÃ  ridotta a metÃ  */
  }
    100% {
        opacity: 1;               /* Torna all'opacitÃ  completa */
    }
}
.nation {
  z-index: 9999;
  position: relative;
}
.map-hover {
  position: absolute;
  z-index: 999;  
  display: none;
}
.map-hover.active {
  display: block;
}
.nation-info {
  z-index: 99999;
  fill: var(--grey-strong);
  font-size: 24px;
  font-weight: 600;
  pointer-events: none; /* importantissimo */
  text-anchor: middle;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
}
.nation-info-head {
  display: flex;
  gap: 10px;  
  margin-bottom: 4px;
  align-items: center;
}
.nation-flag {
  width: 28px;
  height: auto;
}
.flag-cnt {
  display: flex;
  gap: 8px;
}
.nation-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  margin-bottom: 4px;
}
.nation-info .name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
}
.nation-row .num {
  font-size: 18px;
  font-weight: 600;
}
.nation-row .label {
  font-size: 12px;
  opacity: 0.9;
}

/* Tablet: riduzione font label mappa */
@media (min-width: 48rem) and (max-width: 74.99rem) {
  .nation-labels-overlay .nation-label {
    width: 130px;
  }
  .nation-info .name {
    font-size: 11px;
  }
  .nation-row .num {
    font-size: 14px;
  }
  .nation-row .label {
    font-size: 10px;
  }
  .nation-info-head {
    margin-bottom: 2px;
  }
  .nation-row {
    gap: 4px;
    margin-bottom: 2px;
  }
  .nation-flag {
    width: 20px;
  }
}

@media (min-width: 48rem) {
  .section-wrapper {
    margin-top: var(--Spacing-3XL);
    width: 100%;
    border-radius: 16px;
    padding: var(--Spacing-XL);
  }
  .map-cnt {
    position: absolute;
    width: clamp(400px, 55vw, 900px);
    padding: 0;
    top: 0;
    right: 0;
    z-index: 12;
    border-top-right-radius: 16px;
  }
  .map > svg {
    width: 100%;    
  }
}
@media (min-width: 75rem) {
  .map-wrap {
    flex-direction: row; 
  }
  .map {
    text-align: center;
    margin: 0 auto;
  }
  .cifre-sedi {
    padding: var(--Spacing-4XL, 80px) 0 var(--Spacing-5XL, 96px) 0;
  }
  .cifre-box-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-top: var(--Spacing-5XL, 96px);
  }
}

.news-grid {
  display: grid;
  margin-top: var(--Spacing-M);
}
.bg-grey .news-grid > div:not(:first-child, :nth-child(2)) {
  border-top: 1px solid #B6B5B4;
}
.bg-turquoise .news-grid > div:not(:first-child, :nth-child(2)) {
  border-top: 1px solid #75B9C3;
}
.news-grid--box {
  display: flex;
  gap: var(--Spacing-M);
  align-items: start;
  padding: var(--Spacing-M) 0;
  position: relative;
  overflow: hidden;
}
.news-grid--box .news-grid-img {
  flex: 1 0 auto;
  position: relative;
}
.news-grid--box .news-grid-img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: clamp(80px, 15vw, 132px);
  border-radius: 8px;
}
.news-grid--box > div:not(.news-grid-img) {
  flex: 0 1 100%;
}
.news-grid--box > div h4 {
  font-size: clamp(var(--fs-M), 2.5vw, var(--fs-2M));
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.news-grid--box:hover > div h4 {
  color: var(--turquoise-medium);
}
.news-grid--box > div p {
  font-size: var(--fs-S);  
}
/* pseudo-elemento freccia */
.news-grid--box.has-modal .news-grid-img::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../img/icons/ico_arrow_right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.8;
}

/* hover â‡’ bounce */
.news-grid--box .news-grid-img:hover::before {
  animation: arrowBounce 0.6s ease;
}

@keyframes arrowBounce {
  0% {
    transform: translate(-50%, -50%) translateX(0);
  }

  30% {
    transform: translate(-50%, -50%) translateX(12px);
  }

  55% {
    transform: translate(-50%, -50%) translateX(-6px);
  }

  75% {
    transform: translate(-50%, -50%) translateX(4px);
  }

  100% {
    transform: translate(-50%, -50%) translateX(0);
  }
}

@media (min-width: 75rem) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--Spacing-S);
    margin-top: var(--Spacing-XS);
  }
  .news-grid--box {
    align-items: center;
    padding: var(--Spacing-L) var(--Spacing-XL) var(--Spacing-L) 0;
  }
}

.news-info {
  display: none;
}
.news-info {
  width: 100%;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  margin: 0;
  padding: 32px 24px;
  background-color: #FAFAFA;
  border-radius: 16px 16px 0 0;
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: 0;  
  transition: bottom 0.5s ease-in-out;
}
.news-info--inner {
  color: var(--grey-strong);
  display: flex;
  flex-direction: column;
}
.news-info--head {
  margin-bottom: var(--Spacing-2XL);
}
.news-img-wrap {
  display: flex;
  align-items: center;
  border-radius: 8px;
}
.news-img-wrap img {
  height: auto;
  max-height: 100%;
  aspect-ratio: 256 / 155;
  object-fit: cover;
  border-radius: 8px;
}
.news-info h3 {
  font-size: var(--fs-L);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--Spacing-XS);
}
.news-info p {
  margin-top: var(--Spacing-M);
  font-weight: 500;
}
.hide-news {
  bottom: -100%;
}
.show-news {
  bottom: 0;
}

.brand-info {
  display: none;
}
.brand-info {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 32px 24px;
  background-color: #FAFAFA;
  border-radius: 16px 16px 0 0;
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: 0;  
  transition: bottom 0.5s ease-in-out;
}
.brand-info--inner {
  color: var(--grey-medium);
  display: flex;
  flex-direction: column;
}
.brand-info--head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #EAEAEA;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  height: 60px;
  margin-bottom: 12px;
}
.brand-logo-wrap img {
  height: auto;
  max-height: 100%;
}
.brand-info--close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
.hide-brand {
  bottom: -100%;
}
.show-brand {
  bottom: 0;
}
#mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  z-index: 9999;
}
/* Fade-in class */
#mask.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
}
@media (min-width: 1200px) {
  .hide-news {
    right: -640px;    
    left: auto;
    bottom: auto;
    top: 0;
  }
  .show-news {
    right: 0!important;
    bottom: auto;
    top: 0;
    left: auto;
  }
  .news-info {
    width: 100%;
    max-width: 640px;
    margin: 0;
    padding: var(--Spacing-3XL);
    border-radius: 8px 0 0 8px;
    right: -640px;
    transition: right 0.5s ease-in-out;
  }
  .news-info--inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  } 
  .hide-brand {
    right: -640px;    
    left: auto;
    bottom: auto;
    top: 0;
  }
  .show-brand {
    right: 0!important;
    bottom: auto;
    top: 0;
    left: auto;
  }
  .brand-info {
    width: 100%;
    max-width: 640px;
    height: 100%;
    margin: 0;
    padding: 112px 64px 64px;
    border-radius: 12px 0 0 12px;
    right: -640px;
    transition: right 0.5s ease-in-out;
  }
  .brand-info--close {
    top: 64px;
    right: 64px;
  }
  .brand-info--inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  .brand-logo-wrap {
    height: 80px;
  } 
}

.btns-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 48px 0 36px;
}
@media (min-width: 1200px) {
  .btns-wrapper {
    flex-direction: row;
    margin: 32px 0 16px;
    align-items: center;
    justify-content: space-evenly;
  } 
}
.swiper-news {
  width: calc(100% + 48px);
  height: 155px;
  padding: 0;  
  margin-top: var(--Spacing-XL);
}
.swiper-news .swiper-news-item {
  background-color: #FAFAFA;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}
.swiper-buttons {
  display: flex;
  gap: var(--Spacing-M);
  position: relative;
}
.swiper-custom-prev,
.swiper-custom-next {
  width: 40px;
  height: 40px;
  display: flex;
}
.swiper-custom-prev {
  background: url(../img/icons/ico_swiper_left.svg) no-repeat;
}
.swiper-custom-next {
  background: url(../img/icons/ico_swiper_right.svg) no-repeat;
}
.swiper-custom-prev:hover {
  background-image: url(../img/icons/ico_swiper_left_hover.svg);
}
.swiper-custom-prev.swiper-button-disabled {
  background-image: url(../img/icons/ico_swiper_left_disabled.svg);
}
.swiper-custom-next:hover {
  background-image: url(../img/icons/ico_swiper_right_hover.svg);
}
.swiper-custom-next.swiper-button-disabled {
  background-image: url(../img/icons/ico_swiper_right_disabled.svg);
}
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}
/* Quando il bottone Ã¨ disabilitato */
.swiper-button-disabled svg path {
  fill: #969492 !important; /* colore per disabled */
  cursor: default;
  opacity: .5;
}

.swiper-buttons.swiper-buttons-news {
  padding: 16px 0;
}
.swiper-buttons.swiper-buttons-news .swiper-news-next {
  display: block;
  height: 24px;
  width: 24px;
}
.swiper-buttons.swiper-buttons-news .swiper-news-prev {
  display: block;
  height: 24px;
  width: 24px;
}
.swiper-kpi {
  width: calc(100% + calc(var(--Spacing-L) * 2));
  padding: 0 var(--Spacing-L) var(--Spacing-L);
  height: auto;
  margin-top: 24px;
  left: -24px;
}
.swiper-kpi .swiper-slide {
  display: flex; 
  height: auto;
}
.swiper-item {
  color: var(--grey-medium);
  padding: var(--Spacing-M);
  border-radius: 8px;
  background-color: #FAFAFA;
  box-shadow: 0px 88px 25px 0px rgba(0, 0, 0, 0.00), 0px 56px 22px 0px rgba(0, 0, 0, 0.01), 0px 32px 19px 0px rgba(0, 0, 0, 0.05), 0px 14px 14px 0px rgba(0, 0, 0, 0.09), 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}
.swiper-kpi .swiper-item {  
  gap: var(--Spacing-M);
}
.swiper-kpi .swiper-item .title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--turquoise-medium);
  text-transform: uppercase;
}
.swiper-kpi .swiper-item .value {
  display: flex;
  align-items: center;
  gap: var(--Spacing-M);
}
.swiper-kpi .swiper-item .value .text {
  font-size: clamp(var(--fs-L), 4vw, var(--fs-2XL));
  font-weight: 600;
}
.swiper-kpi .swiper-item p {
  font-size: var(--fs-M);
  font-weight: 500;
  color: var(--turquoise-medium);
}
.swiper-kpi .swiper-item .swiper-kpi-head {
  display: flex;
  margin-bottom: 24px;
  gap: 10px;
}
.swiper-kpi .swiper-item .logo-kpi {
  width: auto;
  height: 40px;
  position: absolute;
  right: 5px;
  top: 5px;
}
.swiper-kpi-head--img {
  flex: 0 0 30%;
}
.swiper-kpi-head--img img {
  border-radius: 5px;
}
.swiper-kpi .swiper-item .swiper-kpi-head--text p {
  color: var(--grey-strong);
}
.swiper-kpi .swiper-item .swiper-kpi-head--text p.title-18 {
  font-weight: 600;
}
.swiper-kpi .swiper-item .swiper-kpi-head--text p.legenda {
  margin-top: 8px;
  font-size: 12px;
}
.swiper-results {
  width: calc(100% + calc(var(--Spacing-L) * 2));
  padding: 0 var(--Spacing-L) var(--Spacing-3XL) var(--Spacing-L);
  height: auto;
  left: -24px;
}
.swiper-results .swiper-item .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--Spacing-M);
}
.swiper-results .swiper-item .title label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--turquoise-medium);
  text-transform: uppercase;
}
.swiper-results .swiper-item .arrow {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../img/icons/ico_arrow_right_swiper-item.svg) no-repeat center;
  display: inline-block;
}
.swiper-results .swiper-item .arrow:hover {
  background-image: url(../img/icons/ico_arrow_right_swiper-item_hover.svg);
}
.swiper-results .swiper-item .values {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: var(--Spacing-M);
  border-top: 1px solid #EAEAEA;
  padding: var(--Spacing-L) 0;
}
.swiper-results .swiper-item .values > div:nth-child(2) {
  display: flex;
  justify-content: end;
  align-items: self-end;
  flex-direction: column;
  flex: 1 1 auto;
}
.swiper-results .swiper-item .values .value {
  font-size: clamp(var(--fs-XL), 2.8vw, var(--fs-2XL));
  font-weight: 600;
  line-height: 1;
  color: var(--grey-strong);
  display: inline-block;
  text-align: end;
  margin-bottom: var(--Spacing-XS);
}
.swiper-results .swiper-item .values .value {
  color: var(--grey-medium);
  font-weight: 600;
  display: inline-block;
  text-align: end;
}
.swiper-results .swiper-item .flags {
  flex: 0 0 20%;
}
.swiper-results .swiper-item .flags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.swiper-tab .swiper-slide img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (min-width: 75rem) {
  .swiper-news {
    width: calc(100% + 48px);
    height: 210px;
    margin-top: var(--Spacing-2XL);
  }
  .swiper-results {
    width: calc(100% + calc(var(--Spacing-XL) * 2));
    padding: 0 var(--Spacing-XL) var(--Spacing-2XL);
    left: -32px;
  }
  .swiper-kpi {
    width: calc(100% + calc(var(--Spacing-XL) * 2));
    padding: 0 var(--Spacing-XL) var(--Spacing-2XL);
    margin-top: 0;
    left: -32px;
  }
  .swiper-item {
    padding: var(--Spacing-XL);
    height: 100%;
  }
}
@media (min-width: 87.5rem) {
  .swiper-results .swiper-item .flags {
    flex: 0 0 17%;
  }
}

.lt-01 {
  list-style: disc;
  list-style-position: outside;
  padding: 0;
  margin: 0 0 0 20px; 
}
.lt-01 li {
  margin: 8px 0;
}

.lt-brevetti {
  display: grid;
  grid-template-rows: repeat(2, auto);
  column-gap: var(--Spacing-L);
  /*grid-auto-flow: column;*/
  margin-top: var(--Spacing-XL);
}
.lt-brevetti li {
  border-bottom: 1px solid #A3CDD4;
  padding: 4px 0;
}
.lt-brevetti .new-tag {
  font-size: var(--fs-S);
  line-height: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 4px 8px;
  background-color: var(--turquoise);
  border-radius: 4px;
  display: inline-flex;
}
.lt-brevetti li > div {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lt-brevetti li.new > div {
  padding: 4px;
  background: var(--white);
  border-radius: 8px;  
}
.lt-brevetti .year {
  font-size: var(--fs-S);
  line-height: 18px;
  font-weight: 500;
  color: var(--turquoise);
  padding: 4px 8px;
  border: 1px solid var(--turquoise);
  background-color: var(--white);
  border-radius: 4px;  
  display: inline-flex;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
/*.lt-brevetti li:hover .year {
  color: var(--white);
  background-color: var(--turquoise);
}*/
.lt-brevetti .name {
  font-weight: 500;
  color: var(--grey-strong);  
  display: inline-flex;
  padding-left: 5px;
  transition: transform 0.3s ease;
}
/*.lt-brevetti li:hover .name {
  transform: translateX(5px);
}
.lt-brevetti li.new:hover .year {
  transform: translateX(5px);
}
.lt-brevetti li.new:hover .name {
  transform: translateX(10px);
}*/
@media (min-width: 992px) {
  .lt-brevetti {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .lt-brevetti {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }
}

/* Tabs */
.tab-wrapper {
  padding: var(--Spacing-M) 0 0;
}
.tabs {
  display: flex;
  padding-bottom: 14px;
  margin-bottom: 30px;    
  width: 100%;    
  position: relative;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* scroll fluido su iOS */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE / Edge legacy */
}
.tabs::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, iOS */
}
.tabs::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 1px;
    background: var(--turquoise);
}
.tab {
    cursor: pointer;
    padding: 10px 40px 10px 0;
    font-size: 17px;
    color:#333;
    position: relative;
}
.tab span {
  color: var(--grey-strong);
  font-size: var(--fs-M);
  font-weight: 700;
  display: block;
}
.tab label {
  color: var(--turquoise-medium);
  font-size: var(--fs-S);
  font-weight: 700;
  display: block;
}
.tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 10px;
}
.tab::after:hover {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 3px;
    background: var(--turquoise);
    border-radius: 10px;
}

/* Box Container */
.content {
    width: 100%;
    display: none;
    animation: fade .3s ease-in-out;
}
.content.active {
    display: block;
}

@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Box Items */
.box-grid {
    display: flex;
    width: calc(100% + calc(var(--Spacing-L) * 2));
    padding: 0 var(--Spacing-L) var(--Spacing-3XL);
    margin-top: var(--Spacing-L);
    left: -24px;
}
.box-grid .box {
    background: white;
    height: auto;
    padding: var(--Spacing-L);
    border-radius: 8px;
    box-shadow: 0px 88px 25px 0px rgba(0, 0, 0, 0.00), 0px 56px 22px 0px rgba(0, 0, 0, 0.01), 0px 32px 19px 0px rgba(0, 0, 0, 0.05), 0px 14px 14px 0px rgba(0, 0, 0, 0.09), 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
}
.box-grid .box label {
    font-size: var(--fs-S);
    font-weight: 700;
    color: var(--turquoise-strong);
    background: #A3CDD4;    
    padding: 4px 8px;
    margin-bottom: 15px;
    border-radius: 4px;    
    display: inline-block;    
}
.box-grid .box ul {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0 0 0 20px;
  padding: 0;
}
.box-grid .box ul li {
  color: var(--grey-strong);
  font-weight: 500;
}
@media screen and (min-width: 75rem) {
  .box-grid .swiper-wrapper {
    gap: var(--Spacing-S);
  }  
  .box-grid .box {
    flex: 0 1 25%;  
  }
  .box-grid .swiper-wrapper .swiper-slide {
    height: initial;
  }
  .swiper-wrapper .swiper-slide {
    height: initial;
  }
    
}

.logos {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  padding: 0 0 var(--Spacing-XL) 0;
  row-gap: var(--Spacing-L);
  column-gap: var(--Spacing-3XL);
}
.logos > div {
  text-align: center;
}
.logos > div img {
  max-width: 120px;
  max-height: 75px;
}
.logos > div:hover {
  cursor: pointer;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}