.breadcrumbs {
	display: flex;
	list-style: none;
	gap: 30px;
	flex-wrap:wrap;
	padding: 20px 0;
	margin-bottom: 0;
}
.breadcrumbs-item a, .breadcrumbs-item {
	font-size: 14px;
	color: white;
	font-family: var(--e-global-typography-primary-font-family), Raleway;
    font-weight: var(--e-global-typography-primary-font-weight);
	position: relative;
	color: #e3e3e3;
} 
.breadcrumbs-item::before {
	content: ">";
	color: white;
	position: absolute;
	right: -26px;
	top: 0;
	transform: translatex(-50%);
}
.breadcrumbs-item:last-child::before {
	display: none;
}
@media screen and (max-width: 600px) {
	.breadcrumbs {
		padding: 20px;
		gap: 10px;
	}
	.breadcrumbs-item {
		width: 100%;
	}
	.breadcrumbs-item::before {
		display: none;
	}
}