#masthead > div > div:nth-child(3) > ul {
	justify-content: center !important;
}

#masthead > div > div:nth-child(3) > ul li {
	margin-right: 12px;
}
#masthead > div > div:nth-child(3) > ul li:last-child {
	margin-right: 0;
}
#masthead > div > div:nth-child(3) > ul > li > a {
	position: relative;
    padding: 8px 24px;
	font-size: 15px;
	color: #000;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}
#masthead > div > div:nth-child(3) > ul > li > a:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	border-radius: 99999px;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	background-color: var(--fs-color-primary);
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease;
}
#masthead > div > div:nth-child(3) > ul > li:hover > a,
#masthead > div > div:nth-child(3) > ul > li.current_page_item > a{
	color: #FFF;
}
#masthead > div > div:nth-child(3) > ul > li:hover > a:after,
#masthead > div > div:nth-child(3) > ul > li.current_page_item > a:after{
	width: 200%;
	height: 200%;
	opacity: 1;
	visibility: inherit;
	transition: all 0.6s ease;
}
.box-right a{
	display: flex;
	align-items: center;
	gap: 10px;
}
.box-right a img {
	width: 30px;
}
.box-right a span {
	color: var(--fs-color-primary);
	font-size: 25px;
	font-weight: 700;
}
.box-right p {
	margin: 0;
	text-align: right;
    font-weight: 600;
}