*:root{
    --blue-clr: #1523ff;
    --naive-clr: #1d3673;
    --red-clr: #ff2a15;
    --gld-clr: #eac13b;
    --txt-clr: #ffffff;
    --txt-clr-: #ffffff;
    --bg-clr-: #212121;
    --bg-clr: #212121;
}
.count .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 50vh;
	background-color: var(--txt-clr);
	padding: 0 50px;
}
.content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
}
.box {
	width: calc(25% - 30px);
	background-color: var(--bg-clr);
	border-radius: 5px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-direction: column;
	color: var(--txt-clr);
	border-bottom: 10px solid var(--blue-clr);
}


.box .text{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

.box .icon {
	font-size: 45px;
	color: var(--blue-clr);
	margin-bottom: 15px;
}
.red .icon{
	color: var(--red-clr);
}

.box .num {
	font-size: 41px;
}

.line{
    width: 100%;
    height: 2.5px;
    background: var(--gld-clr);
}
