.testimotionals {
    width:100px;
    height: 270px;
    display:inline-block;
    margin-left:10px;
    margin-top:10px
      
    }
    
    
    .testimotionals .card {
      
      position:relative;
      overflow:hidden;
      width:200px;
      height: 200px;
      margin:0 auto;
      background:#333;
      padding:20px;
      box-sizing:border-box;
      text-align:center;
      box-shadow:0 10px 40px rgba(0,0,0,.5)
    }
    .testimotionals .card .layer {
      z-index:1;
      position:absolute;
      top:calc(100% - 2px);
      height:100%;
      width:100%;
      left:0;
      background:linear-gradient(to left , orange, tomato);
      transition:0.5s;
      
    }
    
    .testimotionals .card .content {
      z-index:2; 
      position:relative;
    }
    
    .testimotionals .card:hover  .layer{
      top:0;
    }
    
    .testimotionals .card .content p {
      font-size:14px;
      line-height:24px;
      color:#fff;
      
    }
    .testimotionals .card .content .image {
      width:80px; height:80px;
      margin:0 auto;
      border-radius:50%;
      overflow:hidden;
      border: 4px solid white;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      
    }
    
    .testimotionals .card .conte nt .details h2 {
    font-size:18px;
    color:white;
    }
    /* .testimotionals .card .content .details h2 span {
    font-size:18px;
    color:purple;
      transition:0.5s;
    } */
    .testimotionals .card:hover .content .details h2 span {
      color:white;
      position:relative
    }
    