.bottom_fixed_menu {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.5rem 2rem;
	padding: 0;
	margin: 0;
}

.bottom_fixed_menu li a {
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: inherit;
	color: var(--theme-color-grey);
}

.bottom_fixed_menu li a:hover {
	color: var(--theme-skit-color);
}

.bottom_fixed_menu li a:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 50%;
	width: 0;
	height: 1px;
	background: currentColor;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.bottom_fixed_menu li a:hover:after {
	left: 0;
	width: 100%;
}