i.fa-lg {
  font-size: 30px;
  display: inline-block;
  background: #007bff;
  color: #fff;
  line-height: 1;
  padding: 9px 8px;
  margin-right: 10px;
  margin-bottom: 20px;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

i.fa-lg:hover {
  background: #0067d5;
  color: #fff;
}

i.fa-star, i.fa-star-o{
  color:#ffc107;
}

.project-cards {
  font-family: 'Nunito', sans-serif;
  /* padding: 50px; */
}

.project-cards {
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}


.card{
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
    padding: 14px 80px 18px 36px;
    cursor: pointer;
}

.card-without-img{
  padding: 18px 36px 18px 36px;
}

.card:hover{
     transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.card h3{
  font-weight: 600;
  font-size: 24px;
}

.card img{
  position: absolute;
  top: 20px;
  right: 15px;
  max-height: 120px;
}

.card{
    background-repeat: no-repeat;
    background-position: right;
    background-size: 80px;
}

@media(max-width: 990px){
  .card{
    margin: 0px;
    margin-bottom: 20px;
  }
}