#capCards .container  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin: 20px auto;
}

#capCards .container .heading { 
    /* background-color: black; */
    width: 100%;
    padding: 15px 5px;
 }

#capCards .card { 
    display: flex;
    height: 450px;
    width: 320px;
    /* flex-shrink: 0; */
    margin: 20px 5px;
    border-radius: 10px;
    transition: 300ms;
    padding: 15px 5px;
}

#capCards .card:hover {
    transform: translateY(-4px); 
    /* box-shadow: 0 10px 20px rgba(0,0,0, 0.2); */
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    cursor: default;

}

#capCards .card .cover{
  margin: 20px;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#capCards .card .cover img{
    width: 72px;
    margin: auto;
  }

#capCards .card .description{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px;
    height: 60%;
  }
#capCards .card .description p {
  font-size: 14px;
  text-align: center;
}
  
#capCards .card .description a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C00812;
    color: rgb(255, 255, 255);
    text-decoration: none;
    height: 40px;
    margin: 10px auto;
    width: 218px;
    border-radius: 5px;
    
  }
#capCards .card .cover h2 {
    font-size: 24px;
    color: black;
}
    
#capCards .card  i {
  height: 90px;
  font-size: 72px;
  color: #C00812;
  width: 100%;
}




