.grid-sass {
&__wrapper {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
&__item {
width: calc(100% / 3);
@include breakpoint-down('tabM') {
width: 100%;
margin-bottom: 23px;
display: flex;
justify-content: center;
&:last-of-type {
margin-bottom: 0;
}
}
}
}