/* ======= Facilities section ========= */
.product{
    width: 80%;
    margin: auto;
    text-align: center;
    /* padding-top: 100px; */
}
 .product-col{
    float:left;
    flex-basis: 21%;
    border-radius: 10px;
    /* margin-bottom: 5%; */
    margin: .5%;
    padding: 1%;
    text-align: left;
     /* border: 1px solid; */
    transition: .5s;
    background: #fff3f3;

}
.product-col:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,.2);
}

.product-col img{
    width: 100%;
    display: block;
    border-radius: 10px;
    max-width: 100px;
}
.product-col p{
    padding: 0;
}
.product-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
/* =====contribute====== */
.contribute{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.contribute h1{
    font-size: 36px;
    font-weight: 600;
}

.contribute p{
    /* color: #777; */
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    /* justify-content: space-between; */
}
.contribute-col{
  flex-basis: 31%;
  background: rgba(76, 175, 80, 0.14);/*#fff3f3;*/
  border-radius: 20px;
  margin: .5%;
  padding: 20px 5px;
  box-sizing: border-box;
  transition: .5s;
}
h3{
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}

.contribute-col:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,.2);
}
@media(max-width: 700px){
    .row{
      flex-direction: column;
    }
}
