/* ==========================================================================
   Set containers fixed sizes for >1600px, >1920px, >2560px
   Remove all if don't want to use big fixed sizes for all blocks
   You still can use cols with .container-fluid blocks
   ========================================================================== */

@media (min-width: 1400px) {
	.container {
		width: 1200px;
	}
}
@media (min-width: 1600px) {
	.container {
		width: 1530px;
	}
}
@media (min-width: 1920px) {
	.container {
		width: 1600px;
	}
}
