Hi there,
looks like the justify space between is working on desktop.
For tablet and mobile, change this CSS:
@media (max-width: 1024px) {
.inside-footer-widgets {
flex-direction: column;
justify-content: center;
}
}
to:
@media (max-width: 1024px) {
.inside-footer-widgets {
flex-direction: column;
align-items: center;
}
}
Thing to note with flex is the justify and align are relative to the flex-direction.
So when you switch to flex-direction: column; you actually use align to justify the items, because the flow has changed 🙂