footer {
    color: var(--black-color);
	font-size: 14px;
}
footer a{
    color: var(--black-color);
}
footer a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}
.logo-footer {
    margin-bottom: -22px;
	max-width: 250px
}
.footer-content {
    border-radius: 40px 40px 0 0;
}
.footer-social a:hover {
    text-decoration: none;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 12px;
    opacity: 0.3;
}

/*#menu-footer-menu-gdpr {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-bottom: 0;
}*/

#menu-footer-menu-gdpr li {
    width: 100% !important;
    float: left;
    display: block;
    margin-bottom: 8px;
}

.menu-multicol {
  list-style: none;
  padding: 0;
  margin: 0;

  -webkit-columns: 3; /* prima i prefissi */
  -moz-columns: 3;
  columns: 3;         /* poi la proprietà standard */
}

#menu-footer-menu-gdpr a::before {
    content: "•";
    position: relative;
    left: -10px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    top: 2px;
    opacity: 0.5;
}

  #menu-footer-menu-gdpr a {
    display: inline-block !important;
    font-weight: normal;
	color: var(--white-color);
    text-decoration: none !important;
    transition: opacity 0.3s ease !important;
  }

  #menu-footer-menu-gdpr a:hover {
    opacity: 0.5 !important;              /* opaco al 50% */
  }


    .fixed-box {
      position: fixed;
      bottom: 20px;
      right: -20px;
      width: 350px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 0px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      overflow: hidden;
      transition: transform 0.3s ease;
      z-index: 1000;
    }
    .fixed-box:hover {
      transform: translateX(-40px);
    }
    .fixed-box .row {
      align-items: center;
      margin: 0;
    }
    .fixed-box .content {
      padding: 0 0 0 15px;
      text-align: left;
    }
.fixed-box .btn {
    margin-top: 8px;
    border-radius: 0;
    font-size: 12px;
    background-color: var(--primary-color);
    border: 0;
}
.fixed-box p {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
}  
	  
    .image-wrapper {
      position: relative;
      height: 100%;
      overflow: hidden;
    }
    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Maschera di sfumatura da bianco opaco (a sinistra) a trasparente (a destra) */
    .image-wrapper::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 40%);
      pointer-events: none;
    }