.title{
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: 100px;
    font-weight: 700;
    color: #01A560;
}


  .wrapper {
      display: grid;
      place-content: center;
      /* height: 100vh; */
      margin: 20px 0px 20px 0px;
  }

  .card {
      height: 350px;
      width: 400px;
      position: relative;
      transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
      border-radius: 1em;
      overflow: hidden;
  }

  /*Image*/
  .card-image {
      height: 55%;
      width: 100%;
      position: absolute;
      top: 0;
      transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
      object-fit: cover;
  }

  /*Description */
  .card-description {
      display: flex;
      gap: 1em;
      flex-direction: column;
      background-color: #f5f5f5;
      height: 50%;
      width: 100%;
      position: absolute;
      bottom: 0;
      border-radius: 1em 1em 0 0;
      transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
      padding: 1rem;
  }

  /*Text*/
  .text-title {
      font-size: 18px;
      font-weight: 700;
  }

  .text-body {
      font-size: 14px;
      line-height: 150%;
  }


  /* Hover states */

  .card:hover .card-description {
      transform: translateY(100%);
  }

  .card:hover .card-image {
      height: 100%;
  }




  .img_box {
      flex: 0 0 45%;
      height: 400px;
      position: relative;
      border-radius: 15px;
  }

  .img_box img {
      position: absolute;
      left: 0;
      top: 0;
      display: none;
      width: 100%;
      height: 100%;
      border-radius: 15px;
  }

  .img_box img:nth-child(2) {
      opacity: 0;
      transition: all 0.3s ease-in-out;
  }

  .img_box:hover img:nth-child(2) {
      opacity: 1;
  }