.advantage-item {
	background-color: rgba(247, 248, 249, 1);
	padding: 30px;
	position: relative;
	height: 220px;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.advantage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.advantage-item > div {
	color:rgba(51, 51, 51, 1);
	line-height: 145%;
	font-size: 22px;
	position: relative;
	z-index: 1;
}

.advantage-item img {
	position: absolute;
	display: block;
	z-index: 0;
	top: 12px;
	right: 12px;
}
@media (max-width: 992px) {
	.advantage-item {
		height: 150px;
	}
	.advantage-item > div {
		font-size: 18px;
		line-height: 125%;
	}
	.advantage-item img {
		max-height: 100px;
		object-fit: contain;
		right: 0;
	}
}
@media (max-width: 767px) {
	.advantage-item {
		height: 120px;
	}
	.advantage-item > div {
		font-size: 16px;
	}
	.advantage-item img {
		max-height: 80px;
		object-fit: contain;
		right: 0;
	}
}