* {
	box-sizing: border-box;
}
.row-swip-grid {
	display: -ms-flexbox; /* IE10 */
	display: flex;
	-ms-flex-wrap: wrap; /* IE10 */
	flex-wrap: wrap;
	margin-top: 100px;
	margin-bottom: 120px;
	padding: 0 1px;  /* Boarder padding L  R */
}
.row-swip-grid-two {
	display: -ms-flexbox; /* IE10 */
	display: flex;
	-ms-flex-wrap: wrap; /* IE10 */
	flex-wrap: wrap;
	margin-top: 60px;
	margin-bottom: 60px;
	padding: 0 1px;  /* Boarder padding L  R */
}
.j-row-img {
  width: 100%;
  height: auto;
  border: 0px;
}
.j-row-img:hover {
	filter:brightness(80%) saturate(1.0) ;
}
.header {
	text-align: center;
	padding: 32px;
}
/* Create four equal columns that sits next to each other */
.column-swip-grid {
	-ms-flex: 25%; /* IE10 */
	flex: 25%;
	max-width: 25%;
	padding: 0 1px; /* Boarder padding L  R */
}
.column-swip-grid img {
	margin-top: 2px; /* Boarder padding top */
	vertical-align: middle;
	width: 100%;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1180px) {
.column-swip-grid {
	-ms-flex: 25%;
	flex: 25%;
	max-width: 25%;
}
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column-swip-grid {
	-ms-flex: 50%;
	flex: 50%;
	max-width: 50%;
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column-swip-grid {
	-ms-flex: 100%;
	flex: 100%;
	max-width: 100%;
}
}