.make-btndiv
{
    display: flex;
    gap: 5px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}
.make-btnDesign
{
    border: 1px solid var(--secondary-color);
    padding: 10px 25px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    margin: 5px 4px 4px 0;
}
.make-btnDesign:hover{
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: var(--primary-color);
}
.btn-active{
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    background-color: var(--primary-color);
}
.makeboxImg
{
    height: 250px;
    width: 250px;
    padding: 4px;
    /* border-radius: 5px; */
    object-fit: contain;
    transition: .3s ease-in-out;
}
.makeboxImg:hover{
    transform: scale(1.1);
}
.makeboxImg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.allimgBox
{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.sets .hide,.sets .pophide
{
    width:0%;
    opacity:0;
}
/* open modal type start*/
.openDiv {
    width: 100%;
    height: 100vh;
    background: #000000e7;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    z-index: 9999;
}
.imgPreview {
    width: 70%;
    object-fit: scale-down;
    max-height: 40vw;
    height: auto;
}
.prevButton,
.nextButton {
    transition: 1s linear;
    padding: 10px 35px;
    font-size: 18px;
    border: none;
    color: white;
    background: #0005;
    border-radius: 10px;
    border: 1px solid white;
    margin: 10px;
}
.prevButton:hover,
.nextButton:hover {
    background: #fff;
    color: black;
}
.closeBtn {
    width: 40px;
    height: 40px;
    position: absolute;
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    right: 25px;
    top: 25px;
    color:var(--primary-color);
    transition: 0.5s linear;
    padding: 8px;
    border-radius:100%;
    background:var(--secondary-color);
    border: none;
}
.closeBtn:hover {
    cursor: pointer;
    background: white;
    color: black;
    outline: 2px solid #000;
}
/* open modal type end */
.allimgBox .certificate img{
    object-fit: contain;
    border: 0;
}
.allimgBox .staff img{
    object-fit: contain;
    border: 0;
}
@media(max-width:767px)
{
    .makeboxImg
    {
        width: 235px;
        height: 235px;
    }
}
@media(max-width:575px)
{
    .makeboxImg
    {
        width: 200px;
        height: 200px;
    }
}

@media(max-width:470px)
{
    .makeboxImg
    {
        width: 125px;
        height: 125px;
    }
    .imgPreview
    {
        max-height: 80vw;
    }
}