.pager{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:12px;
	margin:60px 0;
}

.pager a{
	display:flex;
	align-items:center;
	justify-content:center;

	width:44px;
	height:44px;

	border-radius:50%;
	background:#fff;

	color:#57B46A;
	font-weight:700;

	border:2px solid #57B46A;

	transition:.25s;
}

.pager a:hover{
	background:#57B46A;
	color:#fff;
}

.pager .is-current{
	background:#57B46A;
	color:#fff;
}