.tile-image-box-wrapper {
	padding: 24px;
	border-radius: 16px;
	transition: box-shadow 0.3s ease-in, background 0.3s ease-in;
}

.tile-image-box-wrapper .img-wrapper {
	height: 40px;
	width: 40px;
	margin-bottom: 16px;
}

.tile-image-box-wrapper .img-wrapper img{
	height: 100%;
	width: 100%;
	object-fit: contain;
	display: block;
}

.tile-image-box-wrapper .content-box {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tile-image-box-wrapper .content-box .tile-heading {
	margin: 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27.9px;
    /*color: #000000;*/
    color: #A0917C;
}

.tile-image-box-wrapper .content-box .tile-description {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 25.6px;
	color: #4f4f4f;
}

.tile-image-box-wrapper:hover {
	background: #ffffff;
	box-shadow: 0 5px 10px -2px rgba(13, 13, 18, 0.04), 0 4px 8px -1px rgba(13, 13, 18, 0.02);
}