@charset "utf-8";

/* CSS Document */
.testimonials-section {
	position: relative;
	padding: 120px 0;
	background: linear-gradient(135deg,
			rgba(189, 170, 213, .85),
			rgba(238, 219, 236, .65)),
		url('../img/startseite/bg-kundenstimmen.jpg');
	background-size: cover;
	background-position: center;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header span {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2px;
}

.section-header h2 {
	font-size: 58px;
	color: #2a1640;
	margin-top: 10px;
}

.title-divider {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 25px;
}

.title-divider span {
	width: 120px;
	height: 2px;
	background: #ffffff;
}

.title-divider i {
	color: #ffffff;
	font-size: 22px;
}

.testimonial-card {
	background: #fff;
	border-radius: 30px;
	display: grid;
	grid-template-columns: 350px 1fr;
	overflow: hidden;
	max-width: 1200px;
	margin: auto;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.testimonial-left {
	padding: 60px 40px;
	text-align: center;
	border-right: 1px solid #eee;
}

.testimonial-left img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 25px;
	border: 6px solid #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.testimonial-left h3 {
	font-size: 30px;
	margin-bottom: 10px;
}

.company {
	color: #ff4fc7;
	margin-bottom: 25px;
}

#customer-company {
  font-size: 20px;
  line-height: 1.3;
}

.stars {
	color: #ffb300;
	font-size: 28px;
}

.testimonial-right {
	padding: 70px;
	position: relative;
}

.quote-icon {
	font-size: 70px;
	color: #c03da0;
	margin-bottom: 20px;
}

.testimonial-right h3 {
	font-size: 32px;
	line-height: 1.2;
	color: #23153a;
	margin-bottom: 25px;
}

.testimonial-right p {
	font-size: 18px;
	line-height: 160%;
	color: #444;
	max-width: 700px;
}

.btn-testimonial {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
	padding: 16px 34px;
	border-radius: 60px;
	background: linear-gradient(135deg,
			#ff4fc7,
			#a63cf6);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.quote-bg {
	position: absolute;
	right: 50px;
	bottom: 30px;
	font-size: 120px;
	color: #f5d7ea;
}

.testimonial-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
	margin-top: 40px;
}

.testimonial-nav button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .8);
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.dots {
	display: flex;
	gap: 14px;
}

.dots span {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	opacity: .4;
}

.dots .active {
	opacity: 1;
	background: #ff4fc7;
}

.testimonial-benefits {
	max-width: 1350px;
	margin: 50px auto 0;
	background: #fff;
	border-radius: 25px;
	padding: 35px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.benefit-item {
	display: flex;
	gap: 20px;
	align-items: center;
}

.benefit-item i {
	font-size: 38px;
	color: #ff4fc7;
}

.benefit-item strong {
	display: block;
	color: #23153a;
	margin-bottom: 5px;
}

.benefit-item span {
	color: #666;
}

/* Animation */
.testimonial-card {
	transition: opacity .45s ease, transform .45s ease;
}

.testimonial-card.fade-out {
	opacity: 0;
	transform: translateY(20px);
}

.testimonial-card.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.testimonial-left img{
    transition: transform .5s ease, opacity .5s ease;
}

.fade-out img{
    transform:scale(.9);
    opacity:.4;
}

.fade-in img{
    transform:scale(1);
    opacity:1;
}

@media(max-width:992px) {
	.testimonial-card {
		grid-template-columns: 1fr;
	}

	.testimonial-left {
		border-right: none;
		border-bottom: 1px solid #eee;
	}

	.testimonial-right {
		padding: 40px;
	}

	.testimonial-right h3 {
		font-size: 36px;
	}

	.section-header h2 {
		font-size: 48px;
	}

	.testimonial-benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:768px) {
	.testimonial-benefits {
		grid-template-columns: 1fr;
	}

	.testimonial-right h3 {
		font-size: 30px;
	}

	.testimonial-right p {
		font-size: 18px;
	}

	.section-header h2 {
		font-size: 36px;
	}
}