.tp-testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tp-testimonial-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
}

.tp-read-more {
    color: #0073aa;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

.tp-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tp-popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.tp-close-popup {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
}
.testimonial-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.testimonial_titleBox {
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
}
.testimonial-item {
    background: white;
    box-shadow: 0 4px 20px 0 #d3d3d352;
    padding: 35px;
}
.testimonial_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: auto;
}
.testimonial_name {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: 24px;
    margin: 0;
}
.testimonial-item .read-more-btn {
    padding: 0;
    background: none;
    color: #70B6CF;
    font-weight: 400;
    font-size: 17px;
}
.testimonial-popup {
    position: fixed;
    background: #00000063;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-popup .popup-content{
	background: white;
	width: 54%;
    padding: 40px;
/*     box-shadow: 0 0 21px 0 #e7e7e7bf; */
    height: 480px;
    overflow-y: auto;
	position:relative;
}
.testimonial-popup .close-btn {
    position: absolute;
    right: 20px;
	top:16px;
    height: 40px;
    width: 40px;
    background: black;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    line-height: normal;
    font-weight: 200;
	cursor:pointer;
}
@media (max-width:767px){
	.testimonial-list {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
    }
	.testimonial-popup{
		width:100%;
		padding:25px;
	}
	.testimonial-popup .popup-content{
		width:100%;
	}
	.testimonial-popup .close-btn{
		right:20px;
	}
}