.information-sitemap {
	padding: 30px 0 112px;
}
.sitemap-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 10px;
}
.sitemap-wrapper > a {
	width: 100%;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color-1F1D1C);
	font-family: var(--mont-ff);
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	position: relative;
	background: var(--color-FFF);
}
.sitemap-wrapper > a:hover {
	color: var(--color-C9AD6F);
}
.sitemap-wrapper > a:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 0;
	height: 2px;
	background: var(--color-C9AD6F);
	transition: .3s;
}
.sitemap-wrapper > a:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: var(--color-E7E7E7);
	transition: .3s;
}
.sitemap-wrapper > a > svg {
	transition: .3s;
}
.sitemap-wrapper > a:not(.active) > svg {
	transform: rotate(180deg);
}
.sitemap-wrapper > a.active {
	box-shadow: 0px 4px 16.1px 0px rgba(0, 0, 0, 0.10);
}
.sitemap-wrapper > a.active:before {
	width: 100%;
}
.sitemap-wrapper > a.active:after {
	opacity: 0;
	visibility: hidden;
}
.sitemap-inner-list {
	padding: 30px 21px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
}
.sitemap-inner-list > a {
	color: var(--color-1F1D1C);
	font-family: var(--mont-ff);
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
}
.sitemap-inner-list > a:hover {
	color: var(--color-C9AD6F);
}
@media(min-width: 1100px) {
	.information-sitemap {
		padding: 1.563vw 0 5.833vw;
	}
	.sitemap-wrapper > a {
		padding: 0.781vw;
	}
	.sitemap-inner-list {
		padding: 1.563vw 1.094vw;
	}
}
@media(max-width: 1099.99px) {
	.information-sitemap {
		padding-bottom: 60px;
	}
}