/**
===============================
        Project Infographic CSS
===============================
**/
.masonrybg {
  background-color: #f0f0f0;
}
.masonryinside { /* Masonry container */
  -webkit-column-count: 4;
  -moz-column-count:4;
  column-count: 4;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  margin: 1.5em;
  padding: 0;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
  font-size: .85em;
}
.masonry-item {
  display: inline-block;
  background: #fff;
  padding: 1em;
  margin: 0 0 1.5em;
  width: 100%;
  -webkit-transition:1s ease all;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: 2px 4px 10px #ccc;
  border-radius: 5px;
  height: 100%;
}
.masonry-item img{
  width:100%;
  height: 100%;
}

.masonry-itemtext {  
  color: #c8203f;
  padding: 10px 0px 2px 0px;
  text-align: left;
}

.masonry-itemtext a {
    color: #c8203f;
    font-size: 17px;
    line-height:24px;
}
.masonry-itemtext1 {
  font-size: 14px;
  color: #c8203f;
  padding: 12px 0px;
  text-align: left;
  line-height:22px;
}
.masonry-itemtext2 {
  font-size: 16px;
  color: #c8203f;
  padding-bottom:8px;
  text-align: left;
}
.masonry-itemtext span {
  color:  #858483;
}

.colorblack {
  color: #000;
}
.f13 {
    font-size:13px;
}

@media only screen and (max-width: 320px) {
  .masonryinside {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

@media only screen and (min-width: 321px) and (max-width: 768px){
  .masonryinside {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px){
  .masonryinside {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}
@media only screen and (min-width: 1201px) {
  .masonryinside {
    -moz-column-count:4;
    -webkit-column-count:4;
    column-count:4;
  }
}
