.card-content__testimonials{
	padding: 50px 50px 60px;
    box-shadow: 0px 9px 35px rgba(108, 111, 147, 0.10);
    border-radius: 8px;
	height: 250px;
	margin-bottom: 30px;
	background-color: #fff;
}
.image-content__testimonials {
    display: flex;
    align-items: center;
	column-gap: 30px;
}
.image-content__testimonials img{
	border: 1px solid #6C6F931A;
    border-radius: 100px;
	width: 100px;
	height: 100px;
	background-color: #fff;
}
.image-content__author{
	display: flex;
    flex-direction: column;
}
.image-content__author h3{
	font-size: 18px;
	font-weight: 800;
	margin: 0;
}
.image-content__author p{
	font-size: 16px;
	font-weight: 300;
	margin: 0;
}

.card-testimonial {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 45px;
}
.card-testimonial .card-testimonial__container-img {
	width: 40%;
	display: flex;
	justify-content: flex-end;
	position: relative;
}
.card-testimonial .card-testimonial__quote {
	position: absolute;
	bottom: 15px;
	right: 192px;
}
.card-testimonial .card-testimonial__container-content {
	width: 60%;
	font-family: Plus Jakarta Sans;
	font-size: 18px;
	line-height: 32px;
	padding-right: 100px;
}
.card-testimonial .card-testimonial__body {
	font-family: Plus Jakarta Sans;
	font-weight: 300;
	color: #1C1E2A; 
	margin: 0;
}
.card-testimonial .card-testimonial__author {
	font-weight: 500;
	color: #1463FF;
	font-size: 18px;
	line-height: 32px;
	margin: 0;
}
.card-testimonial .card-testimonial__img {
	background: #fff;
    border-radius: 50%;
    border: none;
    height: 250px;
    aspect-ratio: 1;
    object-fit: cover;
}
.card-testimonial .card-testimonial__logo-company {
	width: 170px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 20px;
}

@media(max-width: 768px) {
	.card-testimonial {
		flex-direction: column;
		gap: 40px;
	}
	.card-testimonial .card-testimonial__container-img {
		width: initial;
	}
	.card-testimonial .card-testimonial__container-content {
		width: initial;
		padding: 0;
		text-align: center;
	}
	.card-testimonial__body, 
	.card-testimonial .card-testimonial__author {
		text-align: left;
		font-size: 16px;
		line-height: 30px;
	}
}