.testimonial-slider {
	width: 100%;
}

.pdm-testimonial-slider .testimonial-window {
	background-color: #f4f6f9;
	padding: 48px 56px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	position: relative;
}

.pdm-testimonial-slider .testimonial-window .quote-mark {
	width: 40px;
	height: 48px;
	background-image: url('../img/testimonial-quote.png');
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: -20px;
}

.testimonial-slider__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.testimonial-slider__track {
	display: flex;
	align-items: flex-start;
	transition: transform 500ms ease;
	will-change: transform;
}

.testimonial-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	box-sizing: border-box;
}

.testimonial-slider__quote {
	margin-bottom: 2rem;
}

.testimonial-slider__attribution {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.testimonial-slider__title {
	font-size: 0.875rem;
}

.testimonial-slider__name {
	font-weight: 700;
}

.testimonial-slider__industry {
	font-size: 0.875rem;
}

.testimonial-slider__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

button.testimonial-slider__bullet {
	appearance: none;
	border: 0;
	width: 0.625rem;
	height: 0.625rem;
	padding: 0;
	border-radius: 999px;
	background: #cbd5e0;
	cursor: pointer;
	transition:
		width 250ms ease,
		background-color 250ms ease;
}

button.testimonial-slider__bullet:hover {
	background: #1d6fe8;
}
button.testimonial-slider__bullet.is-active {
	width: 2rem;
	background: #1d6fe8;
}



.testimonial-slider__quote p {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: italic;
	font-size: 20px;
	color: #2D3748;
}

.testimonial-slider__initial {
	display: inline-block;
	border-radius: 30px;
	padding: 4px 14px;
	background-color: #1d6fe8;
	color: #fff;
}

.testimonial-slider__title {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #071628;
}

.testimonial-slider__industry {
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #718096;
	margin-top: -14px;
}





@media (max-width: 767px) {
	.testimonial-slider__quote {
		margin-bottom: 1.5rem;
	}

	.testimonial-slider__nav {
		margin-top: 1rem;
	}
}