.carousel-custom-ac  {
	padding: 0 12px;
}

.carousel-custom-ac figure {
	padding: 0 12px;
	height: 164px;
	text-align: center;
}

.carousel-custom-ac figure img {
    height: 100%;
    display: inline-block;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.8;
    transition: all .3s ease;
}

.carousel-custom-ac a:hover img {
    filter: grayscale(0);
    opacity: 1;
}


.carousel-custom-ac .slick-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin: 32px 0 0;
}

.carousel-custom-ac .slick-dots button {
	width: 24px;
	height: 24px;
	background: none;
	position: relative;
	border-radius: 24px;
	border: 1px solid transparent;
	transition: all .3s ease;
	font-size: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.carousel-custom-ac .slick-dots button:before {
	content: '';
	width: 6px;
	height: 6px;
	background: #cccccc;
	border-radius: 6px;
}

.carousel-custom-ac .slick-dots button:hover, .carousel-custom-ac .slick-dots li.slick-active button {
	border-color: #3593F4;
}

.carousel-custom-ac .slick-dots button:hover:before, .carousel-custom-ac .slick-dots li.slick-active button:before {
	background: #3593F4;
}