/* breadcrumbs */

.cakes {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: var(--gap-small);
}

.breadcrumbs {
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: normal;
}

.breadcrumb-list {
	padding: 0;
	margin: 0 0 0.2rem 0;
}

.breadcrumbs ol {
	margin-bottom: 0;
}

.breadcrumbs li {
	display: inline-block;
	padding-bottom: 0;
}

.breadcrumb-link {
	background-color: transparent;
	padding: 0.2rem !important;
	text-decoration: underline;
	color: white;
	line-height: 160%;
	/* 22.4px */
}

.breadcrumb-link:hover{
	color: var(--accent);
}

.breadcrumb-separator {
	padding: 0 0.2rem 0 0.3rem;
}

.breadcrumb-separator::after {
	content: '/';
}

/* topnav */

.topnav{
	display: none;
	gap:40px;
}

@media (min-width: 992px) {
	.topnav{
		display: flex;
	}
}

.topnav a{
	color: var(--white, #FFF);
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	text-decoration: none;
}

.topnav a:hover{
	color: var(--accent);
	text-decoration: underline;
}