.icon-box-overlay-wrapper {
	position: relative;
	padding: 40px;
	text-align: center;
	overflow: hidden;
	transition: all 0.3s ease;
	background-color: #f9f9f9;
	border-radius: 8px;
}

.icon-box-overlay-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.icon-box-overlay-wrapper:hover .icon-box-overlay-bg {
	opacity: 1;
}

.icon-box-overlay-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.icon-box-overlay-wrapper:hover::before {
	opacity: 1;
}

.icon-box-overlay-content {
	position: relative;
	z-index: 3;
}

.icon-box-overlay-icon {
	margin-bottom: 20px;
}

.icon-box-overlay-icon i,
.icon-box-overlay-icon svg,
.icon-box-overlay-title,
.icon-box-overlay-desc {
	transition: all 0.3s ease;
}

.icon-box-overlay-title {
	margin-bottom: 15px;
	margin-top: 0;
}

.icon-box-overlay-desc {
	margin: 0;
}