sections in bootstrap colliding with each other
Solution 1:
I took a deep look on your website. Your problem is not the margin. It's the owl carousels. Their position is absolute so they goes over other elements
section.carousel-section .container-fluid {
overflow: hidden;
position: absolute;
}
This should be position:relative;