ul.list {
    list-style-type: square;
    column-count: 2;
    column-gap: 60px;
    column-fill: balance;
    max-width: fit-content;
    margin: 0 auto;
    margin-bottom: 10px;
    padding-left: 40px;
}
ul.list li {
    margin-bottom: 10px;
    padding-right: 20px;
  }

.testimonial-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}
.testimonial {
    width: 500px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    border-radius: 0 50px 0 50px;
    border: 3px solid #bdb096;
    background-color: white;
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8); */
    padding: 1rem;
}
.testimonial:nth-of-type(even) {
    border-radius: 50px 0 50px 0;
}

.modal-content {
    height: 525px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content__container {
    height: 100%;
}

@media screen and (max-width: 767px) {
    ul.list {
        column-count: 1;
    }
}






