/*-- margin Left And Right --*/ @for $i from 1 through $space-count { .mx-#{5 * $i} { margin-right: 5px *$i; margin-left: 5px *$i; } } /*-- margin Top And Bottom --*/ @for $i from 1 through $space-count { .my-#{5 * $i} { margin-top: 5px *$i; margin-bottom: 5px *$i; } } /*-- margin Top --*/ @for $i from 1 through $space-count { .mt-#{5 * $i} { margin-top: 5px *$i; } } /*-- margin Bottom --*/ @for $i from 1 through $space-count { .mb-#{5 * $i} { margin-bottom: 5px *$i; } } /*-- margin Left --*/ @for $i from 1 through $space-count { .ml-#{5 * $i} { margin-left: 5px *$i; } } /*-- margin Right --*/ @for $i from 1 through $space-count { .mr-#{5 * $i} { margin-right: 5px *$i; } } .m-12 { margin: 12px; } .mb-12 { margin-bottom: 12px; } .mt-32 { margin-top: 32px; } .mb-32 { margin-bottom: 32px; } .mb-res-60 { margin-bottom: unquote("clamp(2.5rem, 0.9786rem + 3.1696vw, 3.75rem)"); } .mb-60 { margin-bottom: 60px; } .mt-70 { margin-top: 70px; } .mt-n1 { margin-top: -.25rem; } .mt-n2{ margin-top: -.65rem; } .mt-n3 { margin-top: -0.8rem; } .mt-n4 { margin-top: -1.5rem; } .mt-n5 { margin-top: -3rem; } .mb-n1 { margin-bottom: -.25rem; } .mb-n2{ margin-bottom: -.6rem; } .mb-n3 { margin-bottom: -0.8rem; } .mb-n4 { margin-bottom: -1.5rem; } .mb-n5 { margin-bottom: -3rem; }