.nc-testimonial-wrap {
	background: var(--nc-blue);
	padding: 70px 20px;
	font-family: "Poppins", sans-serif;
}

.nc-card {
	position: relative;
	background: var(--nc-card);
	border-radius: 22px;
	padding: 60px 40px 40px;
	text-align: center;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
	max-width: 900px;
	margin: 0 auto;
}

.nc-avatar {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.nc-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-quote-left, .nc-quote-right {
	position: absolute;
	font-size: 26px;
	color: #bbb;
	background: #f3f4f6;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nc-quote-left {
	top: 20px;
	left: 20px;
}

.nc-quote-right {
	bottom: 20px;
	right: 20px;
}

.nc-card p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--nc-text);
	margin: 20px 0;
}

.nc-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
	flex-wrap: wrap;
}

.nc-name {
	font-weight: 800;
	color: var(--nc-dark);
}

.nc-role {
	color: var(--nc-sub);
	font-size: 14px;
}

.nc-stars {
	color: var(--nc-star);
	font-size: 18px;
	letter-spacing: 2px;
}

.swiper-pagination {
	margin-top: 20px;
	position: static;
	text-align: center;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cbd5e1;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--nc-star);
}

@media (max-width:640px) {
	.nc-card {
		padding: 60px 20px 30px;
	}
	
	.nc-card p {
		font-size: 16px;
	}
}