
.card-footer{
    background: none;
     border-top: none;
      .media{
       img{
         border:solid 3px rgba(255,255,255,0.3);
       }
     }
   }
   



    /* nav area start */
    .navlink-clr .nav-item{
        font-size: .9rem;
    }
    .navlink-clr .nav-item .nav-link:hover {
        font-weight: 700;
    }
   .navlink-clr .nav-item:nth-child(1) .nav-link:hover {
      color: #FF0000;
    }
  .navlink-clr  .nav-item:nth-child(2) .nav-link:hover {
      color: rgb(0, 225, 255);
    }
   .navlink-clr .nav-item:nth-child(3) .nav-link:hover {
      color: #FF00B3;
    }
    .navlink-clr .nav-item:nth-child(4) .nav-link:hover {
      color: yellow;
    }
    .navlink-clr .nav-item:nth-child(5) .nav-link:hover {
      color: rgba(58, 178, 180, 1);
    }
    .navlink-clr .nav-item:nth-child(6) .nav-link:hover {
      color: #00FF00;
    }
    @media (max-width: 991.98px) {
      /* For small screens, set offcanvas height to auto */
      .offcanvas {
        height: fit-content !important;
      }
    }
     /* nav area end */



     /* footer
    */
    .footer {
        background-color: #151515;
        padding: 40px 0;
      }
      .container-footer {
          max-width: 1170px;
          margin: auto;
      }
      .footer-col-ul {
          list-style: none;
          padding: 0;
      }
      .footer-col {
          width: 25%;
          padding: 0 15px;
      }
      
      .footer-col h4 {
          font-size: 18px;
          color: #FFF;
          text-transform: capitalize;
          margin-bottom: 35px;
          font-weight: 500;
          position: relative;
      }
      
      .footer-col h4::before {
          content: "";
          position: absolute;
          left: 0;
          bottom: -10px;
          background-color: #E91E63;
          width: 90px;
          height: 2px;
      }
      
      .footer-col ul li:not(:last-child) {
          margin-bottom: 10px;
      }
      
      .footer-col ul li a {
          color: #DDD;
          display: block;
          font-size: 1rem;
          font-weight: 300;
          text-transform: capitalize;
          text-decoration: none;
          transition: all 0.3s ease;
      }
      
      .footer-col ul li a:hover {
          color: #FFF;
          padding-left: 7px;
      }
      
      .footer-col .social-links a {
          color: #FFF;
          background-color: rgba(255, 255, 255, 0.2);
          display: inline-block;
          height: 40px;
          width: 40px;
          border-radius: 50%;
          text-align: center;
          margin: 0 10px 10px 0;
          line-height: 40px;
          transition: all 0.5s ease;
      }
      
      .footer-col .social-links a:hover {
          color: #151515;
          background-color: #FFF;
      }
      
      @media(max-width: 767px) {
          .footer-col {
              width: 50%;
              margin-bottom: 30px;
          }
      }
      
      @media(max-width: 574px) {
          .footer-col {
              width: 100%;
          }
      }










      .container01 {
        padding: 85px 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* height: 100vh; */
      }
      
      .custom-card {
        margin: 10px;
        position: relative;
        width: 300px; /* Adjust as needed */
        height: 200px; /* Adjust as needed */
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      }
     
      .custom-card img {
        width: 100%;
        height: -webkit-fill-available;
        transition: transform 0.3s ease;
      }
      
      .custom-card:hover img {
        transform: scale(1.1);
      }
      
      .custom-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.9s ease;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      .custom-card:hover .custom-overlay {
        opacity: 1;
      }
      
      .custom-button {
        padding: 10px 20px;
        background-color: #fff;
        color: #333;
        text-decoration: none;
        border-radius: 5px;
        transition: transform 0.9s ease;
      }
      
      .custom-button:hover {
        transform: scale(1.1);
      }
      


      .card-container{
        height: 100vh;
        padding: 55px;
      }

      .card-text {
        position: absolute;
        bottom: -22px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 10px;
        box-sizing: border-box;
        font-size: 14px;
        line-height: 1.2;
      }
      


   