.card .col-lg-3 mb-3 img{
    
    height: 150px;
    height: auto;
}

@media(max-width:992px){
    
    .card img{        
        margin-top: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
}
@media(max-width:576px){
    .card{
        width: 90%;
        display: block;
        /* margin-bottom: 25px; */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 150px;
    }
    
}
.card{
  transition:0.5s;
  cursor:default;
    
}
.card-title{  
  font-size:15px;
  transition:1s;
  cursor:pointer;
  text-align: center;
}
.card-title i{  
  font-size:15px;
  transition:1s;
  cursor:pointer;
  color:#ffa710
}
.card-title i:hover{
  transform: scale(1.25) rotate(100deg); 
  color:#18d4ca;
  
}
.card:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}
.card-text{
  height:auto;
  text-align: justify;
}

.card::before, .card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 0, 1);
  transition: transform .3s ease-out 0s;
  background: rgba(255, 255, 255, 0.1);
  content: '';
  pointer-events: none;
}
.card::before {
  transform-origin: left top;
}
.card::after {
  transform-origin: right bottom;
}
.card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
  transform: scale3d(1, 1, 1);
}