.cardMain {
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0px 16px 50px 10px rgba(12, 12, 13, 0.07);
    background-color: var(--themeColor2);
  }
  
  .cardGrid {
    grid-template-columns: 250px 1fr;
  }
  
  .cardImgSec {
    border-radius: 20px;
    overflow: hidden;
  }
  
  .cardImgSec img {
    object-fit: cover;
  }
  
  .overImg {
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
  }
  
  .overImg img {
    height: 100%;
  }
  
  .percent {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 15px;
    background-color: var(--themeColor1);
    color: var(--paragraphColorWhite);
    font-weight: 600;
    border-radius: 15px;
  }
  
  .cardHead {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.416;
    margin-bottom: 10px;
    color: var(--headingColor1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  
  .cardPara {
    font-size: 15px;
    line-height: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  
  .progressBar progress {
    width: -webkit-fill-available;
  }
  
  .outerDiv {
    margin-top: 20px;
    width: -webkit-fill-available;
    background-color: white;
    border-radius: 8px;
    border: 0.5px solid #ddd;
    height: 8px;
    overflow: hidden;
  }
  
  .innerDiv {
    height: 100%;
    width: 0px;
    /* animation: progress 2s ease-in-out;
    animation-fill-mode: forwards; */
    background-color: var(--themeColor1);
  }
  
  @keyframes progress {
    0% {
      width: 0px;
    }
  
    100% {
      width: 85%;
    }
  }
  
  .greyPara {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    margin: 5px 0px;
  }
  
  .donatePara {
    font-size: 16px;
    color: var(--paragraphColorBlack);
    font-weight: 600;
  }
  
  .joinBtn {
    margin-top: 20px;
    cursor: pointer;
    width: 180px;
    padding: 10px 0px;
    font-size: 22px;
    background-color: var(--btnColor);
    border-radius: 40px;
    border: none;
    font-weight: 700;
    color: var(--btnTextColor);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--o1Font);
  }
  
  .joinBtn::after {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 5%;
    background: var(--btnHoverColor);
    content: "";
    z-index: -1;
    transition: 0.5s;
  }
  
  .joinBtn:hover::after {
    width: 100%;
  }
  
  .joinBtn:hover {
    color: var(--btnHoverTextColor);
  }
  
  @media only screen and (max-width: 1200px) {
  
    .cardSecMain .grid2 {
      grid-template-columns: 1fr 1fr;
    }
  
    .cardGrid {
      grid-template-columns: 1fr;
    }
  }
  
  @media only screen and (max-width: 680px) {
  
    .cardSecMain {
      padding: 20px 0px;
    }
  
    .abtSubHead {
      font-size: 30px;
      line-height: 40px;
    }
  
    .cardSecMain .grid2 {
      grid-template-columns: 1fr;
    }
  
    .cardGrid {
      grid-template-columns: 250px 1fr;
    }
  }
  
  @media only screen and (max-width: 680px) {
    .cardGrid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .cardInfoInner .grid2 {
      grid-template-columns: 1fr 1fr;
    }
  }