.thumb{
    
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
    grid-auto-rows: 0px;
    grid-gap: 1px;
    
    position: relative;
    left: 0px;
    top:0;
    width: 100%;
    height: auto;
    background-color: var(--lGray);
    padding-bottom: 200px;
    box-shadow: 0 5px 10px #555;
    z-index: 2;
}
.thumbBg{
    position: fixed;
    left: 50%;
    top: 200px;
    opacity: 0.5;
}

.box{
    width: calc(100% - 20px);
    padding: 0 0 20px 0;
    height: max-content;
    position: relative;
    float: left;
    cursor: pointer;
}

/*—————————————————————————————————*/
.boxBtn .content:hover{
    border-radius: 10px;
    transition: all .5s ease-In;
    z-index: 2000;
    box-shadow: 0px 0px 50px gray;
    -webkit-box-shadow: 0px 0px 50px gray;
}

/*—————————————————————————————————*/
.blank{
    height: 0px;
}
.content{
    width: 100%;
    padding: 10px 10px 20px 10px;
    height: auto !important;
    background-color: white;
    position: relative;
    overflow: hidden;
    transition: all .5s ease-In;
}

.b1 .content, .b2 .content{
    margin-top: 0px !important;
}
.b1 .boxDescription{
    font-weight: 600;
}
.b1 .boxDescription span{
    font-weight: 300;
}
.b2 .content{
    padding-bottom: 5px;
}

.b2 .boxTitle{
    font-weight: 600;
    color: white;
    position: absolute;
    bottom: 60px;
    left: 20px;
}
.b2 .boxDescription{
    font-weight: 300;
    color: white;
    position: absolute;
    bottom: 40px;
    left: 20px;
}

.add .content{
    background-color: red;
    height: calc(35vw - 20px) !important;
    width: calc(100% + 20px);
    padding: 0;
    
}
.add .content img{
    margin: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hirdetes{
    position: relative;
    top:-10px;
    left: 50%;
    display: block;
    margin-left: -42px;
}
.boxCat{
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: black;
    border-radius: 5px;
    color: white;
    padding: 5px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.boxImg{
    width: calc(100% + 20px);
    margin: -10px ;
}
.boxImg img{
    width: 100%;
   /* margin: -10px ;*/
}
.boxTitle{
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}
.boxDescription{
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

@media screen and (max-width:800px) {
    .box{
        width: calc(100% - 30px);
        margin-left: 5px;
    }
    .boxDescription{
        font-size: 16px;
        padding-right: 30px;
    }
    .thumbBg{
        top: 0px;
    }
}