#content {
    width: 88% !important;
}

/* tabs */

.title{
    line-height: 1.4;
    margin: 5% 0 !important;
    text-align: left !important;
}

.tabs-holder{
    display: flex;
    margin-bottom: 4%;
}

.tab{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-right: 45px;
    color: gray;
    cursor: pointer;
    font-weight: 600;
    transition-duration: 0.3s;
    white-space: nowrap;
}

.tab a{
    padding: 18px 9px;
    color: inherit;
    text-decoration: none;
}

.tab:hover{
    color: var(--black);
}

.tab-active{
    box-shadow: 0 3px 0 0 var(--black);
    color: var(--black);
}


/* tabs end */


.list-holder{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list-item{
    font-size: 95%;
    color: inherit;
    flex: 0 24%;
    margin: 1.5% 0;
}

.paginator{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7%;
}

.pagination-arrow-holder{
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 600;
    margin: 0 5px;
}

.pagination-arrow{
    width: 13px;
}

@media only screen and (max-width: 800px) {
    #content {
        width: 92% !important;
    }

     .title{
        margin: 8% 0 !important;
    }

    .tabs-holder{
        overflow-x: scroll;
        margin-bottom: 10%;
        padding: 3px 0;
    }

    .tab{
        margin-right: 18px;
    }

    .list-item{
        flex: 0 45%;
        margin: 3% 0;
    }

    .paginator{
        margin-top: 16%;
    }
}