.widget-inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	margin: 32px auto 0;
}
.widget-item {
	border: 1.5px solid #EBEBEB;
	height: 180px;
	background: #FFFFFF;
	border-radius: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	transition: 0.4s ease;
}
.widget-item:hover {
	box-shadow: 0px 0px 44px 0px #0533E61A inset;
}
.widget-img {
	width: 75px;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (min-width: 576px) {
	.widget-inner {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (min-width: 992px) {
	.widget-inner {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 20px;
		grid-row-gap: 20px;
		margin: 48px auto 0;
	}
}
@media screen and (min-width: 1200px) {
	.widget-inner {
		grid-template-columns: repeat(5, 1fr);
	}
}
@media screen and (min-width: 1400px) {
	.widget-inner {
		max-width: 80%;
	}
}
