/* iconWithNumber.css */
.icon-with-number-wrapper {
	margin-bottom: 0!important;
}

.icon-with-number-wrapper .icon-with-number {
	display: flex;
	align-items: flex-start;
}

.icon-with-number-wrapper .icon {
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #333333;
	border-radius: 16px;
	margin-right: 12px;
	transform: translateY(5px);
	flex-shrink: 0;
}

.icon-with-number-wrapper .number {
	font-size: 38px;
	line-height: 50px;
	font-weight: 900;
	letter-spacing: -0.76px;
	color: #333333;
}

.icon-with-number-wrapper .description {
	font-size: 18px;
	line-height: 26px;
	letter-spacing: -0.36px;
	color: #333333;
}

@media only screen and (max-width: 768px) {
	.icon-with-number-wrapper .icon-with-number {
		margin-bottom: 25px;
	}

	.icon-with-number-wrapper .icon {
		width: 55px;
		height: 55px;
		border-radius: 12px;
		margin-right: 15px;
		transform: translateY(5px);
	}

	.icon-with-number-wrapper .number {
		font-size: 30px;
		line-height: 39px;
		letter-spacing: -0.6px;
	}

	.icon-with-number-wrapper .description {
		font-size: 16px;
		line-height: 21px;
		letter-spacing: -0.32px;
	}
}
/* iconWithNumber.css end */