.hn-testimonials-carousel .slick-track {
	display: flex;
}

.hn-testimonials-carousel .slick-list {
	margin: 0 -10px;
}

.hn-testimonials-carousel .slick-arrow {
	width: 40px;
	height: 40px;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 0;
}

.hn-testimonials-carousel .slick-arrow:hover, .hn-testimonials-carousel .slick-arrow:focus {
	background-color: #0d92f4;
}

.hn-testimonials-carousel .slick-prev {
	z-index: 9;
}

.hn-testimonials-carousel .slick-prev svg {
	transform: scaleX(-1);
}

.hn-testimonial-item {
    box-sizing: border-box;
    text-align: center;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 100px -60px;
	margin: 35px 17px;
	border-radius: 24px;
	border: 2px solid #0d94f400;
	transition: 0.3s;
	position: relative;
}

.hn-testimonial-item:hover {
	border: 2px solid #0D92F4;
}

.hn-testimonial-item a img {
    width: 100%;
    border-radius: 24px 24px 0 0;
    margin-bottom: 10px;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.hn-testimonial-play {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -350%);
    background: #00000057;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hn-testimonial-play svg {
	width: 20px;
	height: 20px;
}

.hn-testimonial-item .hn-testimonials-avatar {
    width: 25%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin-top: -18%;
    border: 5px solid #fff;
    box-sizing: content-box;
}

.hn-customer-name {
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}

.hn-testimonial-text {
    font-size: 15px;
	font-weight: 500;
    line-height: 1.6;
    color: #555;
	padding: 5px 10px 10px;
	text-align: justify;
}

.hn-testimonial-text p {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 120px;
}

.hn-testimonial-link {
    display: inline-block;
    background: #fba834;
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hn-testimonial-link:hover {
	background: #e48b10;
    color: #fff;
}