.nbody-hero__wrapper{ 
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-template-rows: 1fr;
	gap: 10px;
@media (max-width: 1100px){
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
}

.nitems-hero__wrapper{
max-width: 100%;
width: 100%;
max-height: 160px;
justify-content: center;
background-color:#fff;
border:.125rem solid #5abb43;
-webkit-transition:-webkit-box-shadow .3s ease;
transition:-webkit-box-shadow .3s ease;
transition:box-shadow .3s ease;
transition:box-shadow .3s ease,
-webkit-box-shadow .3s ease;
@media (max-width: 1100px){
	max-width: 25%;
}
}

.items-hero__wrapper:hover{
cursor: pointer;
transition: all 0.3s ease 0s;
}

.nitems-hero__title{
color:#5abb43;
text-align:center;
font-size:0.8rem;
line-height:1.3;
font-weight:600
}