.section-menu
{
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-menu ul
{
	padding-right: 25px;
	list-style: none;
}

.section-menu a
{
	display: block;
	position: relative;
	height: 25px;
	color: white;
	font-size: 12px;
	white-space: nowrap;
	transition: all 0.5s
}

.section-menu a::after
{
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	background-color: white;
	box-shadow: 0 0 0 4px transparent;
	transition: all 0.3s ease;
}

.section-menu a:hover::after
{
	background-color: transparent;
	box-shadow: 0 0 0 4px white;
}

.section-menu a span
{
	position: absolute;
	right: 25px;
	text-align: right;
	opacity: 0;
	transition: all 0.3s ease;
}

.section-menu a:hover span
{
	opacity: 1;
}
