/*
	==========================================
	 Stats Bar Widget
	==========================================
*/
.stats-bar {
	background-color: rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	margin: 40px auto;
	max-width: 960px;
	overflow: hidden;
}

.stats-bar__inner {
	display: flex;
	justify-content: center;
	align-items: stretch;
}

.stats-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 28px 24px;
	text-align: center;
	cursor: default;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
}

.stats-bar__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(31, 84, 137, 0.12);
	z-index: 2;
}

.stats-bar__item--border {
	border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stats-bar__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: rgba(31, 84, 137, 0.08);
	color: #1f5489;
	font-size: 18px;
	flex-shrink: 0;
	margin-bottom: 10px;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.stats-bar__item:hover .stats-bar__icon {
	background-color: rgba(31, 84, 137, 0.15);
	transform: scale(1.1);
}

.stats-bar__text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stats-bar__value {
	font-family: "Heebo", sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: #1e205a;
	line-height: 1.2;
	transition: font-weight 0.2s ease, letter-spacing 0.2s ease;
}

.stats-bar__item:hover .stats-bar__value {
	font-weight: 800;
	letter-spacing: 0.02em;
}

.stats-bar__label {
	font-family: Lato, sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-top: 6px;
	transition: color 0.2s ease;
}

.stats-bar__item:hover .stats-bar__label {
	color: #1f5489;
}


/*
	==========================================
	 Responsive
	==========================================
*/
@media screen and (max-width: 992px) {
	.stats-bar {
		margin: 30px 15px;
		border-radius: 10px;
	}

	.stats-bar__inner {
		flex-wrap: wrap;
	}

	.stats-bar__item {
		flex: 0 0 33.333%;
		padding: 22px 16px;
	}

	.stats-bar__item--border {
		border-right: none;
	}

	.stats-bar__item:not(:last-child) {
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}
}

@media screen and (max-width: 576px) {
	.stats-bar {
		margin: 20px 10px;
		border-radius: 8px;
	}

	.stats-bar__item {
		flex: 0 0 50%;
		padding: 20px 12px;
	}

	.stats-bar__value {
		font-size: 22px;
	}

	.stats-bar__label {
		font-size: 10px;
		letter-spacing: 1px;
	}

	.stats-bar__icon {
		width: 36px;
		height: 36px;
		font-size: 15px;
	}
}