.feedback {
    position: relative;
    height: 100vh; /* occupa tutto lo schermo */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#feedback-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .feedback-card-double{
    position: absolute;
    border-radius: 20px;
    width: 300px;
    height: 400px;
    margin-right: 2rem;
    padding-top: 50px;
    flex-shrink: 0;
    text-align: center;
    transform-origin: center;
    background: #fff;
    top: 0;  
    -webkit-box-shadow: 12px 12px 0px 0px #000000; 
box-shadow: 12px 12px 0px 0px #000000;
border: solid black 3px;
}

.feedback-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 2rem;
}

.feedback-scroll-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.feedback-carousel-track {
    display: flex;
    align-items: center; /* centra verticalmente gli elementi */
    will-change: transform;
    height: 100%;
}
  
  .feedback-card {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    width: 300px;
    height: 400px;
    margin-right: 2rem;
    position: relative;
    padding-top: 50px;
    flex-shrink: 0;
    text-align: center;
    transform-origin: center;
    z-index: 2;
    opacity: .35;
  }
  
  .feedback-card-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #000;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .feedback-card-title,
  .feedback-card-paragraph {
    color: #000;
    margin: 1rem;
    padding: 1rem;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    padding: 0 10px;
  }

/* .ending-space {
    height: 100vh; /* o di più, a seconda delle necessità
    background: white; /* per evitare sovrapposizione visiva
} */