.tax-grid-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:14px 8px;
}

.tax-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.tax-grid-item{
    text-decoration:none;
    color:inherit;
}

.tax-grid-card{
    text-align:center;
    padding:6px 0;
}

.tax-grid-image-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    height:155px;
    width:100%;
}

.tax-grid-image{
    object-fit:contain;
    max-height:100%;
    width:auto;
    height:auto;
}

.tax-grid-name{
    font-size:15px;
    font-weight:700;
    margin-top:6px;
    color:#222;
    word-break:break-word;
    overflow-wrap:anywhere;
}

@media(max-width:1200px){
    .tax-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:991px){
    .tax-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .tax-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:480px){
    .tax-grid{
        grid-template-columns:repeat(3,1fr);
    }
}
