/**
 * Theme Name:AR Production
 * Theme URI:https://www.anilraj.com.np
 * Author: Anil Raj
 * Author URI: https://www.anilraj.com.np
 * Description:Theme Descriptions
 * Version: 1.0
 * Text Domain: AR Production
 * License:GNU 1.0
*/
//Mixin itself
@mixin clearfix() {
  &::after {
    display: block;
    content: "";
    clear: both;
  }
}

// Usage as a mixin
.element {
  @include clearfix;
}
