
.card-container {
    margin: 10px;
    /* border: 1px solid black; */
    padding: 0px;
    height: 550px;
    
 
 
  }

  .card-image {
    height: 200px;
    width: 100%;
    /* border: 1px solid black; */
    border-radius: 10px;
    
  }

  .card-content {
    padding: 15px;
    text-align: justify;
  }

  .card-title {
    margin-top: 0;
    padding:5px;
    text-align:center;
    white-space: nowrap;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    font-size:16px;
  }

  .card-text {
    margin-bottom: 10px;
    font-size:14px;
  }

  .card-duration {
    font-weight: 400;
  }

  .card-button {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 10px;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    background-color: #04AA6D;
    transition-duration: 0.1s;
 

  }

  .card-button::before {
    content: attr(data-initial-text);
    font-weight: bolder;
  }

  .card-button:hover::before {
    content: attr(data-hover-text);
    font-weight: bolder;
  }

  .card-button:hover {
    background-color: black;
    color: white;
    font-weight: bolder;
  }
