.promo-carousel {
	border-bottom: 1px solid #f5f5f5;
	padding-bottom: 0;
	overflow: hidden;
}
.promo-carousel .item-wrap {
	transform: translateX(0px);
	width: 400%;
	position: relative;
	white-space: nowrap;
	display: flex;
}
.item {
	background: #222;
	border-right: 1px solid #f5f5f5;
	text-align: center;
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
}
.item a {
	text-decoration: none;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	line-height: 1.4;
	height: 100%;
	padding: 10px 15px;
}
.item.active {
	background: #0062cc;
}
.item.active a {
	color: #fff;
}
 @media (min-width: 768px) {
.promo-carousel .item-wrap {
	width: 200%;
}
}
