/**
 * RESET
 * Reference: http://meyerweb.com/eric/tools/css/reset/
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}



ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

code, pre, samp {
}

/**
 * BASIC TYPE
 */

img, video {
  width: 100%;
  vertical-align: middle;
}
/*
p:not(:last-child) {
  margin: 0 0 1em;
}
*/




/**
 * BOX HACKING
 

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


.masonry-wrapper {
		 box-sizing: border-box;

  margin-top:50px;
  padding: 1.5em;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.masonry {
  display: grid;
  grid-template-columns: repeat(1, minmax(100px,1fr));
  grid-gap: 50px;
  grid-auto-rows: 0;
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .masonry {
    grid-template-columns: repeat(2, minmax(100px,1fr));
  }
}
@media only screen and (min-width: 1024px) {
	

	
	
  .masonry {
    grid-template-columns: repeat(2, minmax(100px,1fr));
  }
}
.masonry-item {
  /* filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .1));
  transition: filter .25s ease-in-out; */
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}
.masonry-item:hover {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .2));
}
.masonry-content {
  overflow: hidden;
  padding-bottom: 3px;
	float: left;
}
.masonry-content.padding-title{
  padding-top:1.5rem
}
.masonry-item {
  color: #111111;
  background-color: #ffffff;
}
.masonry-title, .masonry-description {
  margin: 0;
}
.masonry-title {
  padding: 0.5rem 1.5rem 1.5rem;
}
.masonry-content.padding-title .masonry-title{
   padding: 0rem 1.5rem 1.5rem;
}

.masonry-description {
	padding: 0 1.5rem 1.5rem; 	
}
.masonry-content img{
	margin-bottom:1.5rem;
}

.masonry-footer a {
  color: currentColor;
}
.masonry-footer:hover, .masonry-footer:active, .masonry-footer:focus {
  opacity: .75;
}

@media (max-width: 1000px)  {
	/* Mobile Styles  */
		.masonry-wrapper {
  margin-top:30px;
  padding: 0px;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
	
}
