.testimonies-subitems-list {
	position: relative;
	overflow: hidden;
}
.testimonies-subitems-list .testimonies-slider {
	display: flex;
	transition: transform 0.5s ease;
}
.testimonies-subitems-list .testimonies-subitem {
	flex: 0 0 100%;
	text-align: center;
}
.testimonies-subitems-list .testimonies-testimony{
	margin: 0 auto 1em auto;
	max-width: 60%;
	text-align: center;
}
.testimonies-subitems-list .testimonies-testimony p{
	margin: 0;
}
.testimonies-subitems-list .testimonies-image{
	margin: 0 auto;
	overflow: hidden;
	border-radius: 50%;
	max-width: 64px;
	border: 5px solid #CCC;
}
.testimonies-subitems-list .testimonies-image img{
	max-width: 100%;
	aspect-ratio: 1 / 1;
}
.testimonies-subitems-list .active {
	opacity: 1;
}
.testimonies-subitems-list .arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-decoration: none;
}
.testimonies-subitems-list .arrow:hover {
	text-decoration: none;
}
.testimonies-subitems-list .prev {
	left: 10px;
}
.testimonies-subitems-list .next {
	right: 10px;
}
.testimonies-subitems-list .arrows .arrow {
	cursor: pointer;
}
.testimonies-subitems-list .bullets {
	text-align: center;
	margin-top: 10px;
}
.testimonies-subitems-list .bullets .bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #CCC;
	border-radius: 50%;
	cursor: pointer;
	margin: 0 5px;
}
.testimonies-subitems-list .bullets .bullet.active{
	background-color: #333;
}

@media (max-width: 768px) {
	.testimonies-subitems-list .testimonies-testimony{
		max-width: 80%;
	}
}