:root {
    --surface-color: #fff;
    --curve: 40;
}
.section-three .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 5vw;
    padding: 0;
    list-style-type: none;
  }
  
  .section-three .card {
    position: relative;
    display: block;
    height: 100%;  
    border-radius: calc(var(--curve) * 1px);
    overflow: hidden;
    text-decoration: none;
    border:none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  
  .section-three .card__image {      
    width: 100%;
    height: 300px;
  }
  
  .section-three .card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;      
    border-radius: calc(var(--curve) * 1px);    
    background-color: var(--surface-color);      
    transform: translateY(100%);
    transition: .2s ease-in-out;
  }
  
.section-three .card:hover .card__overlay {
    transform: translateY(0);
  }
  
  .section-three .card__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2em;
    padding: 2em;
    border-radius: calc(var(--curve) * 1px) 0 0 0;    
    background-color: var(--surface-color);
    transform: translateY(-100%);
    transition: .2s ease-in-out;
  }
  
  .section-three .card__arc {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 100%;
    right: 0;      
    z-index: 1;
  }
  
  .section-three .card__arc path {
    fill: var(--surface-color);
    /* d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z"); */
  }       
  
  .section-three .card:hover .card__header {
    transform: translateY(0);
  }
  
  .section-three .card__thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;      
    border-radius: 50%;      
  }
  
  .section-three .card__title {
    font-size: 1em;
    margin: 0 0 .3em;
    color: #3c98ff;
  }
  
  .section-three .card__tagline {
    display: block;
    margin: 1em 0;
    /* font-family: "MockFlowFont";   */
    font-size: .8em; 
    color: #3c98ff;  
  }
  
  .section-three .card__status {
    font-size: .8em;
    color: #3c98ff;
  }
  
  .section-three  .card__description {
    padding: 0 2em 2em;
    margin: 0;
    font-weight: 600 !important;
    color: #3c98ff;
    /* font-family: "MockFlowFont";    */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }  

  @media(max-width:768px){
    .section-three .section-heading3{
      font-size: 20px;
    }
    .section-three p{
      font-size: 12px;
      font-weight: 100;
    }
    .section-three .card__image {
      height: 200px;
    }
  }