.rig {
    /* max-width:900px; */
    position: relative;
    margin:0 auto; /*center aligned*/
    margin-bottom: 100px;
    padding:0;
    font-size:0; /* Remember to change it back to normal font size if have captions */
    list-style:none;
    /* background-color:#000; */
}

ul.tab-grid.rig {
    margin-bottom: 30px;
}

.coll-content .rig {
    /* margin: 0 330px; */
    /* margin: 0 10px; */
    /* margin-left: 80px; */
}
.rig li {
    display: inline-block;
    /* display:inline; *//*for IE6 - IE7*/
    width: fit-content;
    vertical-align:middle;
    box-sizing: border-box;
    margin: 5px;
    padding:0;
    overflow: hidden;
    box-shadow: 4px 5px 20px 4px #0000002e;
}

li:not(.active-tab) {
    /* display: none; */
}

.tab-grid li {
    box-shadow: none;
}

.tab-grid li {
    width: auto;
    height: 45px !important;
    min-height: 45px !important;
}

/* The wrapper for each item */
li .rig-cell {
    /*margin:12px;
    box-shadow:0 0 6px rgba(0,0,0,0.3);*/
    display:block;
    position: relative;
    overflow:hidden;
    min-height: inherit;
    height: inherit;
}

/* If have the image layer */
.rig-img {
    display:block;
    width: 100%;
    height: auto;
    border:none;
    transform:scale(1);
    transition:all 1s;
    object-fit: cover;
    min-height: inherit;
    height: inherit;
}

.rig li:hover .rig-img {
    transform:scale(1.05);
}

/* If have the overlay layer */
.rig-overlay {
    position: absolute;
    display:block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #3DC0F1 no-repeat center 20%;
    background-size:50px 50px;
    opacity:0;
    filter:alpha(opacity=0);/*For IE6 - IE8*/
    transition:all 0.6s;
}
.rig li:hover .rig-overlay {
    opacity:0.8;
}

/* If have captions */
.rig-text {
    display:block;
    padding:0 30px;
    box-sizing:border-box;
    position:absolute;
    left:0;
    width:100%;
    text-align:center;
    text-transform:capitalize;
    font-size:18px;
    font-weight:bold;
    font-family: 'Oswald', sans-serif;
    font-weight:normal!important;
    top: 45%;
    color:white;
    opacity:0;
    filter:alpha(opacity=0);/*For older IE*/
    transform:translateY(-20px);
    transition:all .3s;
}
.rig li:hover .rig-text {
    transform:translateY(0px);
    opacity:0.9;
}

@media (max-width: 9000px) {
    .rig li {
         width: fit-content; 
        max-width: 315px;
        min-height: 125px;
        height: 170px;
    }
}

@media (max-width: 700px) {
    .rig li {
        width:fit-content;
    }
}

@media (max-width: 550px) {
    .rig li {
        width:fit-content;
    }
}
