.menu-toggle {
    position: fixed;
    top: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    color: back;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s;
  }

  .menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 24px;
    opacity: 0;
    transition: bottom 0.5s, opacity 0.5s;
    z-index: 1000;
  }

  .menu a {
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 2em;
    transition: color 0.3s;
  }

  .menu a:hover {
    color: #e53838;
  }

  .menu.open {
    bottom: 0;
    opacity: 1;
  }

  .menu-toggle.close {
    transform: rotate(45deg);
    font-size: 3rem ;
    color: white;
  }


/* BOTTONE INFO PROGETTI */
  .info-icon-container {
    position: relative;
    display: inline-block;
  }
  
  .info-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .info-text {
    visibility: hidden;
    opacity: 0;
    width: 300px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .info-icon-container:hover .info-text {
    visibility: visible;
    opacity: 1;
  }

  @media (max-width: 768px) {
    .info-text{
      width: 150px;
      font-size: 10px;
    }
  }