/* Style for the carousel container */
.carousel {
	display: block;
	max-width: 944px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

/* Style for the carousel images container */
.carousel-images {
	display: flex;
	transition: transform 0.5s ease-in-out;
	margin-top: 20px;
}

/* Style for the carousel images */
.carousel-image {
	width: 216px;
	height: auto;
	flex-shrink: 0;
	padding: 10px;
}

/* Style for the small carousel images */
.carousel-image-sm {
	width: 168px;
	height: auto;
	flex-shrink: 0;
	padding: 10px;
}

/* Style for the navigation arrows */
.carousel-arrow {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(217,36,53, 0.5);
	color: #fff;
	padding: 10px;
	border-radius: 50%;
	z-index: 1;
}

.carousel-arrow-left {
	left: 0px;
}

.carousel-arrow-right {
	right: 0px;
}