body {
	text-align: center;
    font-family: Arial;
	box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* The Masonry Container */
.masonry {
  margin: 1.5em auto;
  -webkit-column-gap: 1.5em;
  -moz-column-gap: 1.5em;
  column-gap: 1.5em;
}

img {
	border-radius: 10px;
	max-width: 100%;
	height: auto;
}

.masonry .masonry-item {
	/* margin: 0 0 1.5em; */
	padding: 0 0 1.5em;
	width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

a img {
	-webkit-transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-ms-transition: opacity .15s ease-in-out;
	-o-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;
}

a img:hover {
	opacity: 0.8;
}

/* Masonry on large screens */
@media only screen and (min-width: 1024px) {
  .masonry { column-count: 4; }
  .masonry-5 { column-count: 5; }
  .masonry-3 { column-count: 3; width: 80%;}
  .masonry-2 { column-count: 2; width: 50%;}
}

/* Masonry on medium-sized screens */
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .masonry { column-count: 3; }
  .masonry-5 { column-count: 4; }
  .masonry-3 { column-count: 2; width: 80%;}
  .masonry-2 { column-count: 2; width: 80%;}
}

/* Masonry on small screens */
@media only screen and (max-width: 767px) and (min-width: 540px) {
  .masonry { column-count: 2; }
  .masonry-5 { column-count: 3; }
  .masonry-3 { column-count: 2; width: 100%;}
  .masonry-2 { column-count: 2; width: 100%;}
}

.separator {
	display: block;
	text-align: center;
	overflow: hidden;
	white-space: nowrap; 
	margin-top: 1em;
	margin-bottom: 1em;
    width: 100%;
}

.separator > span {
	position: relative;
	display: inline-block;

	background: silver;
	height: 30px;
	width: 30px;
	border-radius: 30px;
	font-size: 1.5em;
	line-height: 30px;
}

.separator > span:before,
.separator > span:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 9999px;
	height: 1px;
	background: silver;
}

.separator > span:before {
	right: 100%;
	margin-right: 15px;
}

.separator > span:after {
	left: 100%;
	margin-left: 15px;
}


.separator {
	display: none;
}

.text {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

/* Masonry on large screens */
@media only screen and (min-width: 1024px) {
  .text { width: 50%; }
}

/* Masonry on medium-sized screens */
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .text { width: 70%; }
}

/* Masonry on small screens */
@media only screen and (max-width: 767px) and (min-width: 540px) {
  .text { width: 100%; }
}