/* Swiper Testimonial Card CSS */
.testimonial-slider {
  
	overflow: hidden;
}


.testimonial-card {
    background: #faf8f3;
    border-radius: 12px;
    padding: 50px;
   
}

.testimonial-content {
    display: flex;
    max-width: 100%;
    align-items: center;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
	letter-spacing: -1px;
    color: #616866;
}

.testimonial-author {
    width: 570px;
}
	.testimonial-desc {
    width: 936px;
}
.author-image {
    width: 133px;
    height: 133px !important;
    border-radius: 50% !important;
    object-fit: cover;
    margin-right: 15px;
}
.author-info {
    display: flex;
    flex-direction: column;
	gap: 5px;
}

.author-name {
    font-size: 20px;
    color: #3B4443;
    margin: 0;
}

.author-role {
    font-size: 16px;
    color: #616866;
}

.testimonial-arrow-next {
    position: absolute;
    right: 50%;
    top: 86%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
}
	.testimonial-arrow-prev {
    position: absolute;
    left: 39%;
    top: 86%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
}
	.testimonial-arrow-next::after {
    content: '\2192';
    font-size: 22px;
}
		.testimonial-arrow-prev::after {
    content: '\2190';
    font-size: 22px;
}
.testimonial-arrow-next, .testimonial-arrow-prev {
    color: #ccc;
}
	
	@media (max-width: 768px) {

	.testimonial-content {
    flex-direction: column;
}
		.testimonial-card {
			padding: 70px 20px;
		}
		.testimonial-author, .testimonial-desc {
    width: 100%;
}
.testimonial-arrow-next, .testimonial-arrow-prev {
			top: 94%;
		}
		.testimonial-arrow-next {
			right: 40%;
		}
		
  .testimonial-author {
    text-align: center;
    margin-bottom: 60px;
}
	}
