.destination {
  /* background: linear-gradient(to right,#c9fc68,#33d2b3,#21a330); */

  h3 {
    font: 700 50px/28px "Yatra One";
    font-size: Clamp(50px, 2vw, 20px);
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    text-align: center;
    line-height: 1;
    padding-bottom: 27px;
    border-bottom: 2px solid #82bc23;
    position: relative;

    &::after {
      content: "";
      width: 382px;
      height: 5px;
      position: absolute;
      left: 0;
      right: 0;
      bottom: -3px;
      margin: auto;
      background: #6c9005;
      border-left: 3px solid transparent;
      border-right: 3px solid transparent;
    }
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
    gap: 20px !important;

    div {
      border-radius: 5px;
      height: 300px;
      &:hover p{
        padding: 10px 50px;
        padding-top: 60px;
  
      }
    }

    p {
      position: relative;
      top: 68%;
      bottom: 0;
      background:linear-gradient(to top,rgba(255, 0, 0, 0.422), rgba(245, 72, 72, 0.333),rgba(255, 0, 0, 0.179), rgba(255, 0, 0, 0));
      padding: 10px 30px;
      padding-top: 60px;
      margin: 0px;
      color: #fff;
      text-transform: capitalize;
      font-weight: 600;
      font-size: Clamp(18px, 2vw, 16px);
      border-radius: 0px 0px 5px 5px;
      transition: .5s ease-out;
    }

    p:hover {
      padding: 10px 50px;
      padding-top: 60px;

    }

    .cpur {
      background-image: url("/assests/section2/chandrapur.webp");
      background-size: cover;
      background-position: center;
    }

    .ngpur {
      background-image: url("/assests/section2/nagpur.webp");
      background-size: cover;
      background-position: center;
    }

    .wadasa {
      background-image: url("/assests/section2/wadsa.webp");
      background-size: cover;
      background-position: center;
    }

    .gad {
      background-image: url("/assests/section2/gadchiroli.webp");
      background-size: cover;
      background-position: center;
    }
  }

  @media only screen and(max-width:425px) {
    .grid div {
      width: 200px !important;
    }
  }
}