
.clients{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.frame{
    width: 16rem;
    height: 250px;
    margin: auto;
    box-shadow: 0px 0px 2px 2px rgba(133, 133, 133, 0.658);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.image-container{
    height: 80%;
    width: 80%;
    overflow: hidden;
}
.image-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
    transition: transform 0.5s;
}
.frame:hover .image-container img{
    transform: scale(1.1);
    cursor:-webkit-zoom-in;
    cursor: zoom-in;
}

.pagination{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-no{
    width: 25px;
    height: 25px;
    margin-left: 10px;
    margin-bottom: 20px;
    padding: 10px;
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.466);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
@media screen and (max-width:480px) {
    .clients{
        grid-template-columns: 1fr;
    }
}