.header-menu-wrapper .header-logo .site_logo {
	height: 60px;
	width: 150px;
}
.header-menu-wrapper .header-logo .site_logo img {
	max-width: 100%;
}
.header-mobile .site_logo {
	height: 50px;
	width: 130px;
}
.header-mobile .site_logo img {
	max-width: 100%;
}
.dashboard-card{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	height:170px;
	padding:20px;
	background:#fff;
	border:1px solid #dee2e6;
	border-radius:16px;
	box-shadow:0 .125rem .25rem rgba(0,0,0,.05);
	transition:.25s;
	color:#212529;
	text-align:center;
}

.dashboard-card:hover{
	transform:translateY(-5px);
	border-color:var(--bs-primary);
	box-shadow:0 1rem 2rem rgba(13,110,253,.15);
	color:var(--bs-primary);
}

.dashboard-card i{
	font-size:3rem;
	color:var(--bs-primary);
	margin-bottom:15px;
}

.dashboard-card span{
	font-weight:600;
	line-height:1.3;
}

.page-links {
	display: flex;
	flex-wrap: wrap;
	gap:10px;
	margin-bottom:20px;
}