/*Тут пишем кастомные стили*/

.site-map__columns{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: -20px;
}
.site-map__column{
	flex: 0 0 33.33333%;
	padding: 20px;
}
.site-map__header .site-map__link{
	font-size: 24px;
}
.site-map__list{
	padding-left: 8px;
}
.site-map__item,
.site-map__subitem{
	padding-top: 10px;
}
.site-map__text{
	font-size: 24px;
	color: #006666;
}
.site-map__subitem{
	padding-left: 8px;
}
.site-map__link{
	text-decoration: none;
	position: relative;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	line-height: 1.3;
	display: inline-block;


	background: linear-gradient(to right, #d70000, #d70000 50%, #006666 50%);
	background-clip: text;
	transition: background-position 275ms ease;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
}
.site-map__link::after{
	content: '';
	position: absolute;
	bottom: 0px;
	left: -100%;
	width: 100%;
	height: 2px;
	background: #006666;
	transition: all 0.3s ease 0s;
}
.site-map__link:hover{
	background-position: 0 100%;
}
.site-map__link:hover:after{
	left: 0;
	background: #d70000;
}
.mainContent__style_secondary{
	clear: initial;
}