.testimonials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    
}

.testimonials .mobile-view {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.testimonials .mobile-view p {
    margin: 0;
}

.testimonials .testimonial {
    background: center / cover no-repeat;
    height: 250px;
    width: 200px;
    cursor: pointer;
    position: relative;
}

.testimonial .overlay {
    display: none;
    height: 100%;
    width: 100%;
    background-color: rgba(0,100,181,0.7);
    position: relative;
}

.testimonial:hover .overlay {
    display: block;
}

.testimonial .overlay .testimonial-name {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 100%;
}

.testimonial .overlay .testimonial-content {
    max-height: calc(100% - 28.8px);
    overflow-y: auto;
}

.testimonial .overlay .testimonial-content p{
    padding: 5px;
    color: #fff;
    line-height: 22px;
    text-align: center;
    margin: 0;
    font-size: 15px;
}

.testimonials .mobile-view .read-story {
    display: block;
    padding: 4px 8px;
    border: 1px solid #fff;
    border-radius: 20px;
    text-align: center;
    width: 110px;
    margin: 5px auto 10px;
    font-size: 14px;
    color: white;
}

.testimonials .mobile-view .testimonial-name {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 456px) {
    .testimonials {
        justify-content:center
    }
    
    .testimonials .mobile-view {
        display: block;
    }

}









