/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #000d22;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #50AE32;
  /* fallback */
}
/* layer skin */
.dynamic-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  /* NON -1 */
  pointer-events: none;
  /* il wrapper non prende click */
}
/* il link della skin prende click (anche se è vuoto) */
.dynamic-bg a {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: auto;
  /* riattiva click SOLO sull’anchor */
  background: transparent;
}
/* tutto il sito sopra la skin (così non blocchi i menu) */
.layout-container,
.site-header,
.sticky-nav,
.site-content,
.footer,
.slim-footer-banner {
  position: relative;
  z-index: 2;
}
.dynamic-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-content {
  width: 100%;
}
/* ===== HEADER STYLES ===== */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
/* Top Menu */
.top-menu-desktop {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem clamp(1rem, 5vw, 7.75rem);
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  align-self: stretch;
  width: 100%;
  background-color: #F5F2ED;
  border-bottom: 1px solid #000d221a;
}
/* Main Navigation */
.main-nav-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: #F5F2ED;
  padding: 0.2rem clamp(1rem, 5vw, 7.75rem);
  border-bottom: 1px solid #000d221a;
}
.sticky-nav {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.progress-bar {
  width: 0;
  height: 0.25rem;
  border: 0;
  background: #50AE32;
  transition: width 0.1s linear;
  flex-shrink: 0;
}
.progress-bar-container {
  display: flex;
  height: 0.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
  background: #D1D1D1;
  backdrop-filter: blur(6.79570436px);
}
.top-menu-mobile,
.mobile-menu-secondary,
.mobile-menu {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
/* ===== PAGE WRAPPER ===== */
.page-wrapper {
  display: flex;
  width: 100%;
  padding: 0 clamp(1rem, 5vw, 11.875rem);
  flex-direction: column;
  align-items: center;
  background: transparent;
  /* IMPORTANTISSIMO */
}
.layout-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F5F2ED;
}
/* Info Banner */
.info-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #000d22;
  padding: 0.5rem clamp(1rem, 5vw, 7.75rem);
}
.info-banner p {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #F5F2ED;
}
.menu-link {
  font-size: 0.75rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.menu-link:hover {
  opacity: 0.7;
}
.site-nav {
  display: flex;
  padding: 0.75rem;
  align-items: center;
  gap: 3.75rem;
  align-self: stretch;
  flex-wrap: wrap;
}
.site-logo {
  width: 4.0625rem;
  height: 3rem;
  aspect-ratio: 65/48;
}
.primary-menu {
  display: flex;
  padding: 0.75rem 0;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000d22;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.nav-item:hover {
  opacity: 0.7;
}
.hero-section {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  max-width: 100%;
  padding: 2.5rem clamp(1rem, 5vw, 7.75rem);
}
.hero-section--with-sidebar {
  width: 100%;
  position: relative;
  display: grid;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  color: #4A4A4A;
  grid-template-columns: minmax(0, 1fr) clamp(18rem, 28%, 20.5rem);
}
.hero-section--with-sidebar .main-content {
  min-width: 0;
}
.hero-section--with-sidebar .sidebar {
  min-width: 0;
  width: 100%;
  align-items: stretch;
}
.hero {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1 0 0;
  max-width: 100%;
  width: 100%;
}
.card-hero {
  width: 100%;
  flex: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.card-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}
.card-frame-title {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000d22;
}
.card-hero-img {
  width: 100%;
  object-fit: cover;
}
.card-description {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  color: #4A4A4A;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4375rem;
  align-self: stretch;
}
.cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1 0 0;
}
.card-hero-small {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.card-hero-small-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1 0 0;
}
.card-hero-small-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}
.card-hero-small-header-title {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.ui-divider {
  width: 1.875rem;
  height: 0.0625rem;
  opacity: 0.1;
  background: #000d22;
}
.ui-tag {
  display: flex;
  padding: 0.25rem 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #000d22;
  color: #000d22;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.card-hero-small-description {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #4A4A4A;
  align-self: stretch;
}
.card-hero-small-img {
  width: 9.5rem;
  height: 9.625rem;
  object-fit: cover;
  display: block;
}
.card-hero-small-btn {
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000d22;
  border: 1px solid #000d22;
  transition: all 0.2s ease;
}
.card-hero-small-btn:hover {
  background-color: #000d22;
  color: #F5F2ED;
}
.key-factors {
  width: 100%;
  background-color: #ECE7DF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem clamp(1rem, 5vw, 7.75rem);
  box-sizing: border-box;
  gap: 5rem;
  text-align: left;
  color: #50AE32;
}
/* HEADER */
.key-factors__header {
  width: 100%;
  max-width: 42.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.key-factors__section-label {
  height: 1.375rem;
  display: flex;
  align-items: center;
}
.key-factors__section-label-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.green {
  color: #50AE32;
}
.ui-label-generic {
  color: #000d22;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* distanza tra quadratino e testo */
  letter-spacing: 0.04em;
}
.ui-label-generic-black {
  color: #000d22;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* distanza tra quadratino e testo */
  letter-spacing: 0.04em;
  color: #FFF;
}
.ui-label-generic::before,
.ui-label-generic-black::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #50AE32;
  border-radius: 2px;
  /* leggermente stondato come nel mockup */
  box-sizing: border-box;
}
.key-factors__section-text {
  font-weight: 500;
  color: #000d22;
  font-size: 0.875rem;
}
/* INTRO */
.key-factors__intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.key-factors__intro-title {
  font-weight: 700;
  font-size: 2rem;
  color: #000d22;
}
.key-factors__intro-description {
  align-self: stretch;
  font-size: 1rem;
  line-height: 1.438rem;
  color: #4A4A4A;
}
/* LISTA */
.key-factors__list {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  font-size: 1rem;
  color: #000d22;
}
/* ITEM */
.key-factors__item {
  width: auto;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.key-factors__item-icon {
  width: 2.875rem;
  height: 2.875rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.key-factors__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.key-factors__item-title {
  font-weight: 700;
  text-transform: uppercase;
}
.key-factors__item-description {
  align-self: stretch;
  font-size: 0.875rem;
  color: #4A4A4A;
}
.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  min-width: 0;
}
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.sidebar-adv {
  display: flex;
  padding-bottom: 1rem;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-adv-label {
  font-size: 0.75rem;
  color: #4A4A4A;
  text-align: center;
}
.sidebar-img {
  width: 100%;
  height: 18.75rem;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}
.sidebar-eventi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
}
.sidebar-eventi__section {
  display: flex;
  height: 1.375rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.sidebar-eventi__link-label {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000d22;
  text-align: left;
}
.sidebar-eventi__link-label_mobile {
  display: none;
}
.sidebar-eventi__link-event-label {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000d22;
}
.label__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  /* spessore tratto */
  background: currentColor;
  transform: translateY(-50%);
}
.label__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.42em;
  /* dimensione punta */
  height: 0.42em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.label__arrow {
  position: relative;
  display: inline-block;
  width: 0.6em;
  /* lunghezza freccia */
  height: 0.9em;
  /* “area” per la punta */
  transform: translateY(0.08em);
  /* micro allineamento ottico */
  margin-left: 0.6em;
}
.sidebar-eventi__link-event-label-black {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000d22;
  color: #F5F2ED;
}
.sidebar-eventi__link-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #000d22;
}
.sidebar-eventi__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  align-self: stretch;
}
.sidebar-eventi__list-info-card {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  box-sizing: border-box;
  gap: 1rem;
  text-align: left;
  font-size: 0.75rem;
}
.sidebar-eventi__list-info-card-black {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  box-sizing: border-box;
  gap: 1rem;
  text-align: left;
  font-size: 0.75rem;
  color: #F5F2ED;
  background-color: #000d22;
}
.sidebar-eventi__list-tag-title {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.sidebar-eventi__list-event-title {
  align-self: stretch;
  position: relative;
  font-size: 1.25rem;
}
.sidebar-eventi__list-card-event {
  align-self: stretch;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sidebar-eventi__list-card-event-inner {
  gap: 1rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  isolation: isolate;
}
.sidebar-eventi__list-card-event-inner-black {
  gap: 1rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  isolation: isolate;
  gap: 0;
}
.sidebar-eventi__list-collaboration-img {
  height: 1.063rem;
  width: 4.063rem;
  position: relative;
}
.sidebar-eventi__list-card-event-content {
  align-self: stretch;
  position: relative;
  font-size: 0.875rem;
  color: #D1D1D1;
}
.sidebar-eventi__list-tag-collaboration {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-eventi__list-card-small {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.sidebar-eventi__list-card-small-black {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  color: #F5F2ED;
}
.sidebar-eventi__list-card-event-img {
  width: 100%;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}
.sidebar-eventi__list-card-event-chips-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border: 1px solid #000d22;
}
.sidebar-eventi__list-card-event-chips-inner-black {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border: 1px solid #000d22;
  border: 1px solid #F5F2ED;
}
.sidebar-eventi__list-card-event-chips-inner-text {
  position: relative;
  font-size: 0.75rem;
  text-align: left;
}
.sidebar-eventi__list-card-event-chips-inner-text-black {
  position: relative;
  font-size: 0.75rem;
  text-align: left;
  color: #F5F2ED;
}
.sidebar-eventi__list-card-event-chips {
  margin: 0 !important;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: #000d22;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  z-index: 1;
}
.ui-divider-big {
  width: 6.25rem;
  height: 0.0625rem;
  flex-shrink: 0;
  opacity: 0.1;
  background: #000d22;
}
.ui-divider-tight {
  margin-bottom: -1rem;
}
.event-card-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.event-card {
  display: flex;
  align-items: flex-start;
}
.event-card-img,
.sidebar-img {
  width: 15rem;
  object-fit: cover;
  display: block;
  height: 9.625rem;
  flex-shrink: 0;
}
.sidebar-eventi__list-tag-content {
  color: #4A4A4A;
}
.event-card-frame {
  display: flex;
  padding: 0 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 0 0;
  color: #000d22;
}
.event-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}
.event-card-header .card-hero-small-header-title {
  font-size: 1.25rem;
}
.event-card-frame-black {
  display: flex;
  padding: 0 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 0 0;
  color: #000d22;
  padding: 1rem;
  background: #000d22;
}
.event-card-frame-black .card-hero-small-header-title {
  color: #F5F2ED;
}
.event-card-frame-black .card-hero-small-description {
  color: #D1D1D1;
}
.event-card-frame-black .key-factors__section-text {
  color: #F5F2ED;
}
.event-card-frame-black .ui-tag {
  border: 1px solid #F5F2ED;
  color: #F5F2ED;
}
.event-card-frame-black .ui-divider {
  background: #F5F2ED;
}
.ui-tag-light {
  display: flex;
  padding: 0.25rem 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #000d22;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #F5F2ED;
  color: #000d22;
}
.tags-container {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ui-divider-full {
  height: 0.0625rem;
  align-self: stretch;
  opacity: 0.1;
  background: #000d22;
}
.img-report {
  display: flex;
  height: 15.5625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  align-self: stretch;
  background: url("https://static.vecteezy.com/system/resources/thumbnails/057/068/323/small/single-fresh-red-strawberry-on-table-green-background-food-fruit-sweet-macro-juicy-plant-image-photo.jpg") lightgray -4.808px -1.917px / 100.707% 101.282% no-repeat;
}
.box-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}
.box-newsletter-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.box-newsletter-header-pretitle {
  color: #4A4A4A;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4375rem;
  align-self: stretch;
}
.box-newsletter-header-title {
  color: #000d22;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.box-newsletter-form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  align-self: stretch;
}
.box-newsletter-input-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}
.box-newsletter-input-content {
  display: flex;
  height: 3.0625rem;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
  flex: 1 0 0;
  border: 1px solid #757575;
  background: #FFF;
}
.box-newsletter-input-name {
  align-self: stretch;
  color: #4A4A4A;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.box-newsletter-input-placeholder {
  color: #757575;
  align-self: stretch;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
}
.box-newsletter-btn {
  display: flex;
  width: 8.125rem;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #000d22;
  color: #F5F2ED;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.box-newsletter-description {
  align-self: stretch;
  color: #4A4A4A;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer {
  display: flex;
  padding: 2.5rem clamp(1rem, 5vw, 7.75rem);
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  background: #F5F2ED;
  width: 100%;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.footer-description {
  color: #4A4A4A;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 20.5rem;
}
.footer-description p {
  padding-bottom: 0.5em;
}
.footer-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 31.5rem;
}
.footer-info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.footer-links-container {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.75rem 1.5rem;
  align-self: stretch;
  flex-wrap: wrap;
}
.footer-link {
  width: 9.5rem;
  color: #000d22;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-box-title {
  color: #000d22;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer-end-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.footer-end-description {
  color: #000d22;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.video-section {
  width: 100%;
  background-color: #000d22;
  color: #FFF;
  padding: 2.5rem clamp(1rem, 5vw, 7.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}
.video-section__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000d22;
  border-radius: 8px;
}
.video-section__poster {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: block;
}
.video-section__poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-section__poster-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}
.video-section__poster-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #FFF;
}
.video-section__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* rail */
.video-section__rail {
  width: 100%;
}
.video-section__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.25rem;
}
.video-section__track::-webkit-scrollbar {
  height: 6px;
}
.video-section__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
.video-section__main-video,
.video-section__card-container,
.video-section__section,
.navigations {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.video-section__section {
  height: 1.375rem;
  display: flex;
  align-items: center;
}
.video-section__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-section__main-video {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  font-size: 2rem;
  color: #F5F2ED;
  gap: 1.5rem;
}
.video-section__main-video-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1 0 0;
}
.video-section__main-video-title {
  width: 100%;
  max-width: 48rem;
  position: relative;
  display: inline-block;
}
.video-section__main-video-description {
  width: 100%;
  position: relative;
  font-size: 1rem;
  line-height: 1.438rem;
  display: inline-block;
}
.video-section__main-video-img-container {
  align-self: stretch;
  height: 38.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
}
.video-section__generic-video-img-preview {
  width: 100%;
  height: clamp(220px, 40vw, 520px);
  object-fit: cover;
}
.video-section__card-container {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #F5F2ED;
  flex-wrap: wrap;
}
.video-section__card {
  flex: 0 0 auto;
  display: flex;
  gap: 1rem;
  min-width: 320px;
  text-align: left;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.video-section__card.is-active {
  outline: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 0.5rem;
}
.video-section__card-description {
  font-size: 0.75rem;
  color: #D1D1D1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.video-section__card-description {
  word-break: break-word;
}
.video-section__card-img-container {
  width: 132px;
  height: 82px;
  padding: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
}
.video-section__card-img-container .video-section__generic-video-img-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section__card-content {
  width: 11.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.video-section__card-title {
  align-self: stretch;
  position: relative;
}
.video-section__card-description {
  align-self: stretch;
  position: relative;
  font-size: 0.75rem;
  color: #D1D1D1;
}
.video-section__track {
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge legacy */
}
.video-section__track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}
.navigations {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.5rem;
}
/* bottone cerchio */
.nav-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #FFF;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
}
/* la "V" della freccia */
.nav-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  /* default: centrata + rotazione base */
  transform: translate(-50%, -50%) rotate(45deg);
}
/* sinistra */
.nav-arrow--prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.news-full-width-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem clamp(1rem, 5vw, 7.75rem);
  box-sizing: border-box;
  gap: 1.5rem;
  text-align: left;
  font-size: 0.875rem;
}
.news-full-width-img {
  height: 17.813rem;
  width: 31.5rem;
  position: relative;
  object-fit: cover;
}
.news-full-width-img-description {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
.slim-footer-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: #F5F2ED;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #A8D59B;
}
.img-adv {
  width: 18.75rem;
  height: 18.75rem;
  object-fit: cover;
}
.slim-footer-banner-content {
  width: 100%;
  max-width: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.slim-footer-banner-text {
  color: #000d22;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.card-hero-project {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
}
.card-hero-project-header {
  display: flex;
  width: 42.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 100%;
}
.card-hero-project-title-descirption-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.card-hero-project-title-descirption-wrapper .card-description {
  max-width: 100%;
}
.card-hero-project-img {
  width: 64.5rem;
  height: 22rem;
  object-fit: cover;
}
.hero-section-project {
  background: #ECE7DF;
}
.body-static-text {
  color: #000d22;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4375rem;
  /* 143.75% */
  align-self: stretch;
}
.body-static-text p {
  margin-block-start: 1em;
  margin-block-end: 1em;
}
.body-static-text a {
  text-decoration: underline;
  color: #50ae32;
}
.static-page-adv-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
}
.static-page-adv-img {
  width: 29.25rem;
  height: 3.75rem;
  object-fit: cover;
  flex-shrink: 0;
}
.static-page-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
}
.static-page-img {
  height: 22.125rem;
  align-self: stretch;
  object-fit: cover;
}
.sidebar-adv-long {
  display: flex;
  width: 20.5rem;
  height: 39.875rem;
  padding-bottom: 1rem;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.img-adv-long {
  width: 18.75rem;
  height: 37.5rem;
  object-fit: cover;
}
.sidebar-btn-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
}
.sidebar-btn-container-border-bottom {
  border-bottom: 1px solid #000d221a;
  padding-bottom: 2rem;
}
.sidebar-btn-container-title {
  color: #000d22;
  align-self: stretch;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.sidebar-eventi__list-info-card-two-col {
  padding: 0 1rem 0 0;
}
.sidebar-eventi__list-two-col {
  gap: 1.5rem;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cards-two-col-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.two-col-more-gap {
  align-items: flex-start;
  align-content: flex-start;
  gap: 2rem 1.5rem;
  align-self: stretch;
  flex-wrap: wrap;
}
.card-hero-article-img {
  height: 29.625rem;
  align-self: stretch;
  object-fit: cover;
}
.hero-video {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-video-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  max-width: 100%;
  padding: 2.5rem clamp(1rem, 5vw, 7.75rem);
  background: #000d22;
}
.hero-video-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  max-width: 100%;
  padding: 2.5rem clamp(1rem, 5vw, 7.75rem);
  flex-direction: column;
  background: #00173D;
}
.hero-video-intro .ui-tag {
  color: #F5F2ED;
  border: 1px solid #F5F2ED;
}
.img-show-video {
  height: 100%;
}
.hero-video-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.hero-video-title {
  color: #F5F2ED;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: stretch;
}
.hero-video-description {
  color: #D1D1D1;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2rem;
  /* 136.364% */
  align-self: stretch;
}
.hero-video-info {
  display: flex;
  width: 42.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-video-text-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1 0 0;
  color: #F5F2ED;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.hero-video-sponsor {
  color: #F5F2ED;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-video-sponsor-img {
  width: 3.5rem;
  height: 1.125rem;
  object-fit: cover;
}
.container-img-show-video {
  align-self: stretch;
  height: 38.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
  padding: 0;
}
.container-img-show-video {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.container-img-show-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}
.paywall-container {
  display: flex;
  width: 100%;
  padding: 8.5rem clamp(1rem, 5vw, 7.75rem) 2.5rem clamp(1rem, 5vw, 7.75rem);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(180deg, #ECE7DF 0%, #ECE7DF 13.57%);
  backdrop-filter: blur(6px);
}
.paywall-title-description-container {
  display: flex;
  width: 37.5rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.paywall-title {
  color: #000d22;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.paywall-description {
  color: #000d22;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4375rem;
  /* 143.75% */
  align-self: stretch;
}
.paywall-cards-container {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.paywall-card {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border: 1px solid #D1D1D1;
  background: #F5F2ED;
}
.paywall-card-title-description-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.paywall-card-title {
  color: #000d22;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.paywall-card-description {
  width: 15rem;
  color: #000d22;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.paywall-cta {
  border: 1px solid #000d22;
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  color: #000d22;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.paywall-cta-black {
  border: 1px solid #000d22;
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  color: #000d22;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #000d22;
  color: #F5F2ED;
  border: 0;
}
.paywall-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.paywall-li-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.paywall-li-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  color: #000d22;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.paywall-card-info-description {
  width: 15rem;
  color: #000d22;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: auto;
}
.paywall-card-right {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #D1D1D1;
  background: #F5F2ED;
  align-items: center;
  gap: 3rem;
  align-self: stretch;
}
.label__check::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1em;
  height: 1em;
  border: 2px solid #50AE32;
  /* verde */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}
.label__check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.25em;
  height: 0.5em;
  border-right: 2px solid #50AE32;
  border-bottom: 2px solid #50AE32;
  transform: translate(-65%, -60%) rotate(45deg);
}
.label__check {
  position: relative;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
}
.paywall-notes {
  display: flex;
  width: 42.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.paywall-notes-text {
  color: #000d22;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: stretch;
}
.paywall-payment-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  color: #000d22;
  text-align: center;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.paywall-payment-list-container {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}
.paywall-payment-list-container svg {
  width: 1.375rem;
  height: 0.875rem;
}
.icon-user {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-user__fill {
  fill: currentColor;
  stroke: none;
}
.icon-menu {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}
.main-content-article {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
}
.card-large-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.card-large {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.card-large-img {
  height: 14.5rem;
  align-self: stretch;
  width: 100%;
  object-fit: cover;
}
.card-large-info {
  display: flex;
  padding-top: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
}
.card-large-title-tag-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}
.card-large-title {
  color: #000d22;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: stretch;
}
.filter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.filter-btn-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.filter-title-container {
  display: flex;
  height: 1.375rem;
  align-items: center;
}
.filter-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000d22;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
/* =========================
   BASE MIXINS
========================= */
/* =========================
   COLOR VARIANTS
========================= */
/* =========================
   BUTTONS
========================= */
.btn-login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  background: none;
  color: #000d22;
  border: 1px solid #000d22;
}
.btn-login:hover {
  background: #000d22;
  color: #F5F2ED;
}
.btn-black {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  width: 15.375rem;
  background: #000d22;
  color: #F5F2ED;
  border: 1px solid #000d22;
}
.btn-black:hover {
  background: #F5F2ED;
  color: #000d22;
}
.btn-black-hug {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  width: 15.375rem;
  background: #000d22;
  color: #F5F2ED;
  border: 1px solid #000d22;
  width: auto;
}
.btn-black-hug:hover {
  background: #F5F2ED;
  color: #000d22;
}
.btn-light {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  background: none;
  color: #000d22;
  border: 1px solid #000d22;
}
.btn-light:hover {
  background: #000d22;
  color: #F5F2ED;
}
/* =========================
   HERO / CARDS
========================= */
.card-hero-small-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  align-self: stretch;
  background: none;
  color: #000d22;
  border: 1px solid #000d22;
}
.card-hero-small-btn:hover {
  background: #000d22;
  color: #F5F2ED;
}
/* =========================
   SIDEBAR
========================= */
.btn-sidebar-full {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  align-self: stretch;
}
.btn-black-sidebar-full {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  align-self: stretch;
  background: #000d22;
  color: #F5F2ED;
  border: 1px solid #000d22;
  cursor: pointer;
}
.btn-black-sidebar-full:hover {
  background: #F5F2ED;
  color: #000d22;
}
.btn-black-sidebar-full:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-light-sidebar-full {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  align-self: stretch;
  background: none;
  color: #000d22;
  border: 1px solid #000d22;
}
.btn-light-sidebar-full:hover {
  background: #000d22;
  color: #F5F2ED;
}
/* =========================
   NEWSLETTER
========================= */
.box-newsletter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  transition: all 0.2s ease;
  background: #000d22;
  color: #F5F2ED;
  border: 1px solid #000d22;
  width: 8.125rem;
}
.box-newsletter-btn:hover {
  background: #F5F2ED;
  color: #000d22;
}
/* =========================
   FILTER
========================= */
.filter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  transition: all 0.2s ease;
  height: 3.0625rem;
  background: none;
  color: #000d22;
  border: 1px solid #000d22;
}
.filter-btn:hover {
  background: #000d22;
  color: #F5F2ED;
}
.filter-btn-active {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  transition: all 0.2s ease;
  height: 3.0625rem;
  background: none;
  color: #000d22;
  background: #000d22;
  color: #F5F2ED;
  border: 1px solid #000d22;
}
.filter-btn-active:hover {
  background: #000d22;
  color: #F5F2ED;
}
.filter-btn-active:hover {
  background: #F5F2ED;
  color: #000d22;
}
.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-light.is-loading {
  pointer-events: none;
  opacity: 0.6;
}
/* Modale wrapper */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
/* Stato aperto */
.modal.is-open {
  display: flex;
}
.is-hidden {
  display: none !important;
}
/* Overlay */
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
/* Box modale */
.modal-box {
  display: flex;
  width: 28.8125rem;
  padding: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  background: #ECE7DF;
  z-index: 2;
}
.modal-frame {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  align-self: stretch;
  width: 100%;
}
.modal-title-descrption-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  width: 100%;
}
.modal-description {
  color: #000d22;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
}
.modal-title {
  flex: 1 0 0;
  color: #000d22;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
/* Bottone chiusura */
.modal-close {
  color: #000d22;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375rem;
}
.modal-input-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.modal-input-content-container {
  display: flex;
  width: 100%;
  height: 3.0625rem;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
  border: 1px solid #757575;
  background: #FFF;
}
.modal-input-content-container-big {
  display: flex;
  width: 100%;
  height: 3.0625rem;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
  border: 1px solid #757575;
  background: #FFF;
  height: 6.25rem;
  justify-content: normal;
}
.modal-input-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  align-self: stretch;
}
.modal-input-name {
  align-self: stretch;
  color: #4A4A4A;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.modal-input {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #757575;
  background: transparent;
  outline: none;
  font-family: inherit;
}
.modal-input-textarea {
  resize: none;
  height: 100%;
  min-height: 4.5rem;
}
.modal-input::placeholder {
  color: #757575;
  opacity: 0.8;
  font-family: inherit;
}
.modal-two-input-container {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  align-self: stretch;
}
.modal-input-prefix {
  cursor: pointer;
  caret-color: transparent;
}
.modal-box-privacy-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.modal-box-privacy-title {
  color: #000d22;
  align-self: stretch;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.8;
}
.modal-box-privacy-checkbox-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
}
.modal-box-privacy-checkbox {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
}
.modal-privacy-checkbox-input {
  height: 1rem;
  accent-color: #000d22;
  cursor: pointer;
}
.modal-privacy-checkbox-label {
  color: #000d22;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
  font-size: 0.75rem;
}
/* CHART */
.chart-home-container {
  width: 100%;
}
.chart-home {
  width: 100%;
  height: auto;
  background-color: white;
}
.chart-title {
  font-size: 16px;
  font-weight: 600;
  fill: #4A4A4A;
}
.chart-source {
  font-size: 11px;
  fill: #777;
}
.chart-grid line {
  stroke: #e6e6e6;
  stroke-width: 1;
}
.chart-xlabels text,
.chart-ylabels text {
  font-size: 11px;
  fill: #777;
}
/* Line */
.chart-line {
  fill: none;
  stroke: #4CAF50;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.chart-home-container.is-visible .chart-line {
  animation: draw 1.4s ease-out forwards;
}
/* Dots */
.chart-dots circle {
  fill: #4CAF50;
  opacity: 0;
  transform-origin: center;
}
.chart-home-container.is-visible .chart-dots circle {
  animation: pop 0.25s ease-out forwards;
}
.chart-dots circle:nth-child(1) {
  animation-delay: 0.2s;
}
.chart-dots circle:nth-child(2) {
  animation-delay: 0.45s;
}
.chart-dots circle:nth-child(3) {
  animation-delay: 0.75s;
}
.chart-dots circle:nth-child(4) {
  animation-delay: 1.05s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.language-switch {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 4px;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  box-sizing: border-box;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 14px;
  border: 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: #2f356d;
  transition: background 0.2s ease;
}
.lang-btn:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.lang-btn:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.lang-btn.active {
  background: #8fb233;
}
.lang-btn:hover {
  text-decoration: none;
  color: #ffffff;
}
.lang-btn:not(.active):hover {
  background: #3b4387;
}
.lang-btn:focus {
  outline: none;
}
.article-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
}
.article-share-link {
  margin: 0;
}
.article-translate-menu {
  margin-left: auto;
}
.article-translate-menu .language-switch {
  margin-top: 0;
}
.logos-benefit {
  display: flex;
  gap: 10px;
  margin-top: 2em;
}
.logos-benefit > a,
.logos-benefit > img {
  flex: 1;
}
.logos-benefit img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .top-menu-desktop {
    display: none;
  }
  .main-nav-desktop {
    display: none;
  }
  .top-menu-mobile,
  .mobile-menu-secondary,
  .mobile-menu {
    opacity: 1;
    height: auto;
    overflow: visible;
  }
  .top-menu-mobile-icon-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .user-mini-menu {
    position: relative;
    display: flex;
    align-items: center;
  }
  .user-mini-menu__trigger {
    cursor: pointer;
  }
  .user-mini-menu__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: none;
    padding: 0.75rem;
    background: #F5F2ED;
    border: 1px solid #000d221a;
    border-radius: 0.5rem;
    z-index: 200;
  }
  .user-mini-menu__dropdown.is-open {
    display: block;
  }
  .top-menu-mobile {
    display: flex;
    width: 100%;
    padding: 0.75rem 1rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000d221a;
    background: #F5F2ED;
  }
  .mobile-menu {
    display: none;
    padding: 2.5rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    align-self: stretch;
    border-bottom: 1px solid #000d221a;
    background: #F5F2ED;
  }
  .mobile-menu-secondary {
    display: none;
    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    background: #F5F2ED;
  }
  .mobile-menu-secondary-title {
    align-self: stretch;
    color: #000d22;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }
  .site-header.menu-open {
    height: 100vh;
  }
  .site-header.menu-open .mobile-menu {
    display: flex;
  }
  .site-header.menu-open .mobile-menu-secondary {
    display: flex;
  }
  .site-header.menu-open .info-banner {
    opacity: 0;
    height: 0;
    overflow: hidden;
  }
  .slim-footer-banner.menu-open {
    opacity: 0;
    height: 0;
    overflow: hidden;
  }
  .menu-mobile-toggle {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .menu-mobile-toggle .icon-menu line {
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-box: fill-box;
    transform-origin: center;
  }
  /* STATO OPEN */
  .site-header.menu-open .icon-menu line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-header.menu-open .icon-menu line:nth-child(2) {
    opacity: 0;
  }
  .site-header.menu-open .icon-menu line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-menu__title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: #000d22;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .info-banner {
    display: flex;
    padding: 0.5rem 1rem;
    align-items: center;
    align-self: stretch;
    transition: opacity 0.25s ease, height 0.25s ease;
  }
  .info-banner p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    flex: 1 0 0;
  }
  .main-content {
    width: 100%;
  }
  .page-wrapper {
    background: none;
    padding: 0;
  }
  .layout-container {
    align-items: center;
    max-width: 767px;
  }
  .hero-section {
    padding: 0 1rem;
  }
  .hero {
    width: 100%;
    flex-direction: column;
  }
  .card-frame-title {
    font-size: 1.5rem;
  }
  .card-hero {
    width: 100%;
  }
  .btn-black,
  .btn-black-hug,
  .btn-light {
    width: 100%;
    align-self: stretch;
  }
  .cards {
    align-self: stretch;
    gap: 2rem;
  }
  .card-hero-small {
    width: 100%;
  }
  .card-hero-small-img {
    height: 7.3125rem;
    width: 7.25rem;
  }
  .site-content {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .key-factors {
    gap: 2rem;
    align-self: stretch;
    padding: 2rem 1rem;
  }
  .key-factors__header {
    align-self: stretch;
    gap: 1rem;
    width: 100%;
  }
  .key-factors__intro-title {
    font-size: 1.5rem;
  }
  .key-factors__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    align-self: stretch;
  }
  .key-factors__item-icon {
    width: 2.875rem;
    height: 2.875rem;
    flex-shrink: 0;
    aspect-ratio: 1/1;
  }
  .hero-section--with-sidebar {
    width: 100%;
    flex-direction: column;
    display: flex;
    gap: 2rem;
  }
  .hero-section--with-sidebar-reverse {
    flex-direction: column-reverse;
  }
  .event-card-container {
    width: 100%;
    gap: 1.5rem;
  }
  .event-card {
    width: 100%;
    gap: 1rem;
  }
  .event-card-img {
    width: 7.25rem;
    height: 7.3125rem;
    flex-shrink: 0;
  }
  .event-card-frame {
    gap: 0.75rem;
  }
  .event-card-header .card-hero-small-header-title {
    font-size: 1rem;
  }
  .card-hero-small-description {
    display: none;
  }
  .event-card-black {
    gap: 0;
  }
  .event-card-frame-black {
    padding: 1rem 1rem 1rem 2rem;
  }
  .img-report {
    height: 7.8125rem;
  }
  .box-newsletter {
    gap: 1.5rem;
  }
  .box-newsletter-header {
    gap: 0.25rem;
  }
  .box-newsletter-header-title {
    font-size: 1.5rem;
  }
  .box-newsletter-input-container {
    flex-direction: column;
  }
  .box-newsletter-input-content {
    width: 100%;
  }
  .box-newsletter-btn {
    width: 100%;
    align-self: stretch;
  }
  .img-adv {
    width: 18.75rem;
    height: 18.75rem;
  }
  .sidebar-adv-long {
    width: 100%;
    height: auto;
  }
  .img-adv-long {
    width: 100%;
    height: auto;
  }
  .static-page-img {
    width: 100%;
    height: auto;
  }
  .sidebar-eventi__list {
    gap: 1.5rem;
  }
  .sidebar-eventi__list-card-small-black {
    width: 100%;
  }
  .sidebar-eventi__list-card-event-inner-black,
  .sidebar-eventi__list-card-event-inner {
    flex-direction: row;
  }
  .sidebar-eventi__list-info-card {
    padding: 0 1rem 0 0;
    flex: 1 0 0;
    gap: 0.75rem;
  }
  .sidebar-eventi__list-card-event-img {
    width: 7.25rem;
    height: 7.3125rem;
    flex-shrink: 0;
  }
  .sidebar-eventi__list-card-event-chips {
    display: none;
  }
  .sidebar-eventi__list-info-card-black {
    gap: 0.75rem;
  }
  .sidebar-eventi__list-event-title {
    font-size: 1rem;
  }
  .sidebar-eventi__list-tag-content {
    display: none;
  }
  .footer {
    padding: 1.5rem 1rem;
    border-top: 1px solid #000d221a;
  }
  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer-frame {
    align-self: stretch;
    width: 100%;
  }
  .footer-end-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .sidebar-eventi__list-tag-content-light,
  .sidebar-eventi__list-tag-content {
    display: none;
  }
  .video-section {
    padding: 2.5rem 1rem;
  }
  .video-section__main-video-title {
    font-size: 1.5rem;
  }
  .video-section__main-video-img-container {
    height: 12.75rem;
    padding: 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  .video-section__main-video-description {
    display: none;
  }
  .navigations {
    display: none;
  }
  .video-section__card {
    justify-content: center;
    align-items: flex-start;
  }
  .news-full-width-container {
    padding: 0 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .news-full-width-img-description {
    flex-direction: column;
  }
  .news-full-width-img {
    align-self: stretch;
    width: 100%;
  }
  .slim-footer-banner {
    padding: 1rem;
    align-items: center;
    gap: 1rem;
    flex-direction: row;
  }
  .slim-footer-banner-content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1 0 0;
    padding: 0;
  }
  .sidebar-eventi__link-label {
    display: none;
  }
  .sidebar-eventi__link-label_mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .card-hero-project-header {
    width: 100%;
  }
  .card-hero-project-img {
    width: 100%;
    height: auto;
  }
  .sidebar-eventi__list-two-col {
    grid-template-columns: 1fr;
  }
  .sidebar-eventi__list-two-col .sidebar-eventi__list-card-event-inner-black,
  .sidebar-eventi__list-two-col .sidebar-eventi__list-card-event-inner {
    flex-direction: column;
  }
  .sidebar-eventi__list-two-col .sidebar-eventi__list-card-event-img {
    width: 100%;
    height: auto;
  }
  .card-hero-article-img {
    height: 10.25rem;
    width: 100%;
    align-self: stretch;
  }
  .hero-video-header {
    padding: 1rem;
  }
  .img-show-video {
    width: 100%;
    height: auto;
  }
  .hero-video-intro {
    padding: 1.5rem 1rem;
  }
  .hero-video-title {
    font-size: 1.5rem;
  }
  .hero-video-description {
    font-size: 1rem;
  }
  .hero-video-info {
    width: 100%;
  }
  .container-img-show-video {
    height: auto;
    width: 100%;
  }
  .paywall-container {
    padding: 8.5rem 1rem 2.5rem 1rem;
    gap: 1.5rem;
  }
  .paywall-title-description-container {
    align-self: stretch;
    width: 100%;
  }
  .paywall-title {
    font-size: 1.5rem;
  }
  .paywall-cards-container {
    flex-direction: column;
    align-self: stretch;
  }
  .paywall-card,
  .paywall-card-right {
    gap: 2rem;
  }
  .paywall-notes {
    align-self: stretch;
    width: 100%;
  }
  .hero-section-project {
    padding: 1.5rem 1rem;
    margin-top: -2rem;
  }
  .card-large-img {
    height: 10.25rem;
  }
  .main-content-article {
    gap: 2rem;
  }
  .filter-btn-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .card-description {
    max-width: 100%;
  }
  .modal-box {
    width: 21.5rem;
    height: 33.40938rem;
    overflow: scroll;
  }
}

