
.container .sardar{
 margin-top: 40px;
    text-align: center;
    padding: 20px;
}

 .container .sardar h5{

  font-size:22px;

  /* font-weight: bold; */

  color: var(--color1);

}

.container .sardar h2{

    font-size: 32px;

  font-weight: bold;

  margin-bottom: 20px;

  color: var(--color44);

}

        .sunita_gallery_img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            display: block;
        }

        /* Grid Wrapper */
        .grid-wrapper {
            margin: 10px 0px;
            display: grid;
            grid-gap: 10px;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            grid-auto-rows: 200px;
            grid-auto-flow: dense;
        }

        /* Center content inside grid items */
        .grid-wrapper > div {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* Size variations */
        .wide {
            grid-column: span 2;
        }
        .tall {
            grid-row: span 2;
        }
        .big {
            grid-column: span 2;
            grid-row: span 2;
        }
        .sunita_gallery_jana{
            cursor: pointer;
            overflow: hidden;
            position: relative;
            border-radius: 5px;
        }

        .sunita_gallery_jana::before{
            position: absolute;
            content: '';
            width: 0%;
            height: 0%;
            z-index: 88;
            transition: 1.2s;
            font-size: 60px;
            display: flex;
            font-weight: bold;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            color: white;
            background-color: rgba(0, 128, 128, 0.505);
        }
        .sunita_gallery_jana:hover::before{
            width: 100%;
             content: '+';
            height: 100%;
        }
        .sunita_gallery_jana::after{
            position: absolute;
            content: '';
            width: 0%;
            height: 0%;
            z-index: 89;
            transition: 1.2s;
            font-size: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            color: white;
            border: 3px dotted rgb(0,0,0,0);
            border-radius: 50%;
        }
        .sunita_gallery_jana:hover::after{
            width: 90px;
            border: 3px dotted #FDA31B;
            height: 90px;
            transition: 1.2s;
            animation: gallery_sunita 4s linear infinite;
        }
        @keyframes gallery_sunita{
            0%{
                transform: rotate(0deg);
            }
            100%{
                transform: rotate(360deg);
            }
        }
        .sunita_gallery_jana img{
              /* width: 100%; */

    transition: transform 500ms;

    transform: perspective(0px) rotateX(0deg) rotateY(0deg) scaleX(1) scaleY(1);

    transform-origin: center center;

  /* height: 100%; */
        }
        .sunita_gallery_jana:hover img{
transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scaleX(1.15) scaleY(1.15);
        }