.related-categories-widget .related-categories-wrapper .related-categories-list{
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.related-categories-widget{
    padding-bottom: 50px;
}
.related-categories-widget .related-categories-wrapper .title h3{
    font-family: "Archivo", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
    text-align: center;
    margin-bottom: 40px;
}
@media screen and (max-width:1000px) {
    .related-categories-widget .related-categories-wrapper .related-categories-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    
}
@media screen and (max-width:767px) {
    .related-categories-widget .related-categories-wrapper .related-categories-list{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        
        justify-items: center;
    }
    .related-categories-widget .related-categories-wrapper .title h3{
        font-size: 24px;
        margin-bottom: 20px;
    }
    

    
}