midhat
Hi
Both are 2 different section so space of each item could not be identical.
By default its divided in 2 sections items.
In template.css file here /templates/ja_atoms/local/css/template.css
.acm-features.style-1 .row + .row {
margin-top: 32px;
}
change it with
.acm-features.style-1 .row {
margin-top: 32px;
}
to add same space .
And add this code in custom css
@media(max-width:468px){
.acm-features.style-1 .item-inner {
margin-top: 34px;
}}
Remove the older code suggested in this thread .