body {
  font-family: Arial;
}
a:focus {
  outline: none;
}
.work-sec{
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
}
.portfolioFilter {
  padding: 15px 0;
}
.portfolioFilter a {
  margin-right: 6px;
  color: #666;
  text-decoration: none;
  border: 1px solid #ccc;
  padding: 4px 15px;
  border-radius: 10px;
  display: inline-block;
}
.portfolioFilter a:hover{text-decoration: none;}
.portfolioFilter a:focus{text-decoration: none;}
.portfolioFilter a.current {
  background: #cd2122;
  border: 1px solid #cd2122;
  color: #f9f9f9;
}
.portfolioContainer{
  border: 1px solid transparent;
}
.isotope-item img {
  width:100%;
  height:100%;
}
.isotope-item {
  width: 100%;
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
}
.box{
  width: 22.53%;
  height: 250px;
  padding: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px 1px #dadada;
  margin-bottom: 20px;
  margin-right: 15px;
  margin-left: 15px;
  background-color: #fff;
  float: left;
}
.box img{
  width: 100%;
  height: 100%;
  transition: all 0.5s ease 0s;
}
.box:hover img{
  opacity: 0.3;
}
.box .boxContent{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 4px solid rgba(255, 255, 255, 0.10);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  z-index: 1;
  transition: all 0.25s ease 0s;
}
.box:hover .boxContent{
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  left: 0;
}
.box .boxContent a{
	color:#fff;
}
.box .boxContent p{
	font-size: 14px;line-height: 28px;
}
.box .title{
  display: inline-block;
  font-size: 20px;
  color: #fff;
  line-height: 45px;
  border-bottom: solid 1px #cd2122;
  margin: 0;
  padding-bottom: 20px;
}
.box .post{
  display: block;
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  padding: 8px 0 15px;
  font-weight: 500;
  line-height: 28px;
  text-align:justify;
}
@media only screen and (max-width: 990px){
  .box{ margin-bottom: 20px;width: 100%;margin-left:0; }

}