
    video {
        max-width: 100%;
    }
    @media (max-width: 767px){
        .new_card{
            margin-bottom: 100px;
            margin-top: 100px;
        }
}

 .container1 {
            max-width: 80rem;
            width: 100%;
            padding: 4rem 2rem;
            margin: 0 auto;
        }

        .main .container1 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .card {
            height: 280px; 
             border:none;
            color: black;
            border-radius: 4px;
            margin: 6px;
            background: white;
            box-shadow: 0px 0px 12px 2px #acb3b3;
        }

        .card:hover {
            box-shadow: 0px 0px 12px 2px #7ddee5;
        }

        .card image {
            position: relative;
            display: block;
            width: 100%;
            padding-top: 70%;
            background: white;


        }
       .card img {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media only screen and (max-width: 600px) {

            .main .container1 {
                display: grid;
                grid-template-columns: 1fr;
                grid-gap: 1rem;
            }
        }