/*	24 COLUMN : RESPONSIVE GRID SYSTEM
	DEVELOPER : DENIS LEBLANC
	URL : http://responsive.gs
	VERSION : 3.0
	LICENSE : GPL & MIT */


/* 	SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	*behavior: url(/scripts/boxsizing.htc); 
	/*	If you need support for IE7 and lower make 
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill */
}


/*	MAIN CONTAINER 
	Set the width to whatever you want the width of your site to be. */
.container { 
	margin: 0 auto; 
}


/*	SELF CLEARING FLOATS - CLEARFIX METHOD */
.container:after,
.row:after, 
.col:after, 
.clr:after, 
.group:after { 
	content: ""; 
	display: table; 
	clear: both; 
}

/* 	DEFAULT ROW STYLES 
	Set bottom padding according to preference */
.row { padding-bottom: 0; }
			
								  
/* DEFAULT COLUMN STYLES */
.col {
    display: block;
    float: left;
    margin-left: 5%;
    width: 100%;
}

.no-gutters .col {
	margin-left: 0;
}

.col:first-child,
.col--first { 
	margin-left: 0; 
}

@media ( max-width : 650px ) {
    .col { 
        display: block;
        float: left;
        width: 100% !important;
        margin-left: 0;
    }
}


/*	COLUMN WIDTH ON DISPLAYS +768px 
	You might need to play with media queries here to suite your design. */

	.no-gutters .span_1 { width: 4.16666666667%; }
    .no-gutters .span_2 { width: 8.33333333333%; }
    .no-gutters .span_3 { width:12.5%; }
    .no-gutters .span_4 { width: 16.6666666667%; }
    .no-gutters .span_5 { width: 20.8333333333%; }
    .no-gutters .span_6 { width: 25%; }
    .no-gutters .span_7 { width: 29.1666666667%; }
    .no-gutters .span_8 { width: 33.3333333333%; }
    .no-gutters .span_9 { width: 37.5%; }
    .no-gutters .span_10 { width: 41.6666666667%; }
    .no-gutters .span_11 { width: 45.8333333333%; }
    .no-gutters .span_12 { width: 50%; }
    .no-gutters .span_13 { width: 54.1666666667%; }
    .no-gutters .span_14 { width: 58.3333333333%; }
    .no-gutters .span_15 { width: 62.5%; }
    .no-gutters .span_16 { width: 66.6666666667%; }
    .no-gutters .span_17 { width: 70.8333333333%; }
    .no-gutters .span_18 { width: 75%; }
    .no-gutters .span_19 { width: 79.1666666667%; }
    .no-gutters .span_20 { width: 83.3333333333%; }
    .no-gutters .span_21 { width: 87.5%; }
    .no-gutters .span_22 { width: 91.6666666667%; }
    .no-gutters .span_23 { width: 95.8333333333%; }
    .no-gutters .span_24 { width: 100%; }
    
    .span_1 { width: 0%; }
	.span_2 { width: 3.5%; }
	.span_3 { width: 7.75%; }
	.span_4 { width: 12.0%; }
	.span_5 { width: 16.25%; }
	.span_6 { width: 20.5%; }
	.span_7 { width: 24.75%; }
	.span_8 { width: 29.0%; }
	.span_9 { width: 33.25%; }
	.span_10 { width: 37.5%; }
	.span_11 { width: 41.75%; }
	.span_12 { width: 46.0%; }
	.span_13 { width: 50.25%; }
	.span_14 { width: 54.5%; }
	.span_15 { width: 58.75%; }
	.span_16 { width: 63.0%; }
	.span_17 { width: 67.25%; }
	.span_18 { width: 71.5%; }
	.span_19 { width: 75.75%; }
	.span_20 { width: 80.0%; }
	.span_21 { width: 84.25%; }
	.span_22 { width: 88.5%; }
	.span_23 { width: 92.75%; }
	.span_24 { width: 100%; }
