#content{
 

 
  max-height: 180px;
  overflow: hidden;
  -webkit-transition:max-height 0.7s;
  -moz- transition:max-height 0.7s;
  transition: max-height 0.7s;

}
#content.open{
  max-height: 1000px;
   -webkit-transition:max-height 0.7s;
  -moz- transition:max-height 0.7s;
  transition: max-height 0.7s;
}
.fade {
  background: -webkit-linear-gradient(top, rgba(100, 100, 100, 0) 0%, #fff 95%);
  background: linear-gradient(to bottom, rgba(100, 100, 100, 0) 0%, #fff 95%);
  height: 100px;
  margin-top: -100px;
  position: relative;
}
#showMore{
  background: #1748be;
  color:#fff;
 
  display: block;
  width:85%;
  font-size:18px;
  text-transform: uppercase;
  padding:6px;
  text-align: center;
  margin:10px auto;
  cursor: pointer;


}