.ny-box {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px;
	margin: 15px;
	box-shadow: 6px 6px 6px -8px black;
	border-radius: 8px;
	border: 1px solid #e9e9e9;
	transition: 0.3s ease-out;
	min-height: 150px;
	max-height: 150px;
}

.ny-box:hover {
	transform: scale(1.1);
}

.ny-box img {
	max-width: 100px;
	width: 100%;
}

.ny-box span {
	font-weight: bold;
}
/** TODO Provera 2025 -- Srediti boje*/
a.ny-brand-image-link:hover {
	color:var(--main-color, #0f172a);
}

.ny-image-brand {
	margin: 0 auto;
	max-width: 150px;
}

.ny-brand-grid {
	display: grid;
	gap: 10px;
	/* grid-template-columns: repeat(4, 1fr);*/
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}