#best-categories{
    background: #fff;
    padding:100px 0;
}
#best-categories .flex-row{
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.best-item-category{
    background-color: #f0f0f2;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 10px;
    text-align: center;
    display: flex
;
    justify-content: center;
    transition: all linear 0.15s;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}
.best-item-category:hover{
    background-color: #FFC439;
    color: #000;
    border: 1px solid #FFC439;
}

.best-item-category a{
    position: unset !important;
    font-weight: 700;
    font-size: 0.875rem;
}

.best-item-category a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    background-color: transparent;
}

.best-item-category > div {
    align-self: center;
}

.best-item-category .txt {
    font-weight: 600;
}


.best-item-category .img img{
    width: 100%;
}
.bestcategory-body{
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.bestcategory-body img{width: 60px;}

.popular-categories-header h3{
    text-align: center;
   
    font-weight: 900;

    padding: 5px;
    margin-bottom: 30px;
    
 
 
  
    font-weight: 700;
    letter-spacing: -1px;
    color: #192a53;
    font-size: 35px;
}

@media (max-width: 640px) {
    .best-item-category{
        width: 140px;
        height: 140px;
    }

    .bestcategory-body img{
        width: 40px;
    }

    .best-item-category .txt{
        font-size: 13px;
    }

    #best-categories{
        padding:50px 0;
    }

    .popular-categories-header h3{
        font-size: 25px;
    }
}