/* Website: src/app/static/css/pages/pitchdeck/slides/slide7.css v1.0 */

#slide-7 {
    box-sizing: border-box;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    height: 300px;
    justify-content: space-around;
    align-items: stretch;
}

#uplift-image {
    padding-top: 20px;
}

.testimonial {
    width: 45%;
    margin: 10px;
    padding: 20px;
    padding-top: 40px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.testimonial-item img {
    width: 200px;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.4;
    flex-grow: 1;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.testimonial-navigation button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.5em;
}

@media (max-width: 600px) {
    .testimonial-container {
        flex-direction: column;
    }
    .testimonial {
        width: 90%;
        margin: 10px auto;
    }
}
