@media ( min-width : 1920px) {
	
}

@media ( max-width : 1680px) {
	
}

@media ( max-width : 1480px) {
	
}

@media ( max-width : 1340px) {
	
}

@media ( max-width : 1280px) {
	
}

@media ( max-width : 1200px) {
	
}

@media ( max-width : 1024px) {

}

@media ( max-width : 768px) {	
	/* DISPLAY & ALIGNMENT */
	.flex {
		flex-direction: column;
	}
	.none-m {
		display: none !important;
	}
	.block-m {
		display: block !important;
	}
	.flex-m {
		display: flex !important;
	}
	
	.fd-r-m {
		flex-direction: row !important;
	}
	.fd-cr-m {
		flex-direction: column-reverse;
	}
	
	.ai-fs-m {
		align-items: flex-start !important;
	}
	.ai-c-m {
		align-items: center !important;
	}
	
	/* WIDTHS */
	.w-100-m {
		width: 100%;
	}
	.w-50-m {
		width: 50%;
	}
	
	/* HEIGHTS */
	.h-100 {
		height: auto;
	}
	.h-100-m {
		height: 100%;
	}

	/* TYPOGRAPHY */
	h1 br, .h1 br,
	h2 br, .h2 br,
	h3 br, .h3 br,
	h4 br, .h4 br,
	h5 br, .h5 br,
	h6 br, .h6 br,
	p br {
		display: none;
	}
	
	h1 {
		font-size: 60px;
		line-height: 60px;
	}
	h2, .h2 {
		font-size: 40px;
		line-height: 50px;
	}
	h3, .h3 {
		font-size: 30px;
		line-height: 36px;
	}
	h4, .h4 {
		font-size: 26px;
		line-height: 30px;
	}
	h5, .h5 {
		font-size: 20px;
		line-height: 24px;
	}
	
	p {
		font-size: 16px;
		line-height: 24px;
	}
	
	.ta-c-m {
		text-align: center;
	}
	
	/* COLUMNS */
	.grid[column-count="2"] {
	    grid-template-columns: repeat(1, 1fr);
	}
	.grid[column-count="3"],
	.grid[column-count="4"] {
	    grid-template-columns: repeat(2, 1fr);
	}
	.grid[column-count="5"],
	.grid[column-count="6"] {
	    grid-template-columns: repeat(3, 1fr);
	}
	.grid[column-count="7"],
	.grid[column-count="8"] {
	    grid-template-columns: repeat(4, 1fr);
	}
	
	/* BUTTON */
	.button {
		padding: 10px;
		font-size: 16px;
		line-height: 18px;
	}
}
