.match-making-profile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.mm-profile--image {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.mm-profile--image > img {
    filter: blur(6px);
}
.match-making-profile .mm-profile--name {
    display: flex;
    align-items: flex-end;
    font-weight: 600;
    font-size: 20px;
}
.mm-profile--name > .mm-profile--city {
    font-size: 14px;
    font-weight: normal;
    transform: translateY(-5px);
    color: var(--global-palette2);
    font-family: var(--e-global-typography-text-font-family);
}
.mm-profile--content p {
    margin-bottom: 10px;
}
.mm-profile--tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.mm-profile--tags > .mm-profile--tag {
    background-color: var(--e-global-color-kadence7);
    color: var(--e-global-color-kadence3);
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 99px;
    padding: 0 10px;
}
.match-making-profiles,
.qb-swiper-testimonials {
    position: relative;
    padding-inline-start: 70px;
    padding-inline-end: 70px;
}
.match-making-profiles .swiper-button-next,
.match-making-profiles .swiper-button-prev {
    color: var(--global-palette1);
    font-size: 24px;
    margin-top: -80px;
}
.qb-swiper-testimonials .swiper-button-next,
.qb-swiper-testimonials .swiper-button-prev {
    color: var(--global-palette1);
    font-size: 24px;
}
.match-making-profiles .swiper-button-next,
.qb-swiper-testimonials .swiper-button-next {
    right: 0px;
}
.match-making-profiles .swiper-button-prev,
.qb-swiper-testimonials .swiper-button-prev {
    left: 0px;
}
.match-making-profiles .swiper-button-next:after,
.match-making-profiles .swiper-button-prev:after,
.qb-swiper-testimonials .swiper-button-next:after,
.qb-swiper-testimonials .swiper-button-prev:after {
    color: currentColor;
    font-size: inherit;
}
.testimonial-item {
    display: flex;
    align-items: center;
    overflow: hidden;    
}
.testimonial-item .mm-testimonial--image {
    width: 100%;
    max-width: 400px;
}
.testimonial-item .mm-testimonial--image > img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.testimonial-item .mm-testimonial--content {
    display: flex;
    flex-direction: column;
    padding: 40px;
	min-height: 315px;	
    background-color: #fff;
	border-radius: 6px 25px 6px 25px;
	border: 1px solid #3b4a3f;
}
.mm-testimonial--content > .mm-testimonial--name {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}
.mm-testimonial--content > .mm-testimonial--name .mm-testimonial--city {
    color: var(--global-palette4);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
	.match-making-profiles,
.qb-swiper-testimonials {
    padding-inline-start: 35px;
    padding-inline-end: 35px;
}
	.testimonial-item .mm-testimonial--content {
		padding: 25px;
	}
}