.item_catehome {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    text-align: center;
    padding: 20px 10px;
    -webkit-transition: 0.5s all ease;
    transition: 0.2s all ease;
    border-radius: 10px;
    width: calc(100% / 4 - 12px);
    color: #000;
    background: #f3f5f7;
    border: 1px solid transparent;
}

.item_catehome:hover {
    background: #fff;
    border-color: #043379;
    box-shadow: 0 10px 30px rgba(14, 42, 166, 0.2);
    cursor: pointer;
    outline: 0 10px 30px rgba(14, 42, 166, 0.2);
}

.box_list.listcate_home.listcate_gap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.boxlist_ntdhome {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
}
.boxTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}
.boxTop .job_h2 {
    color: #474747;
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
    font-family: Roboto-Medium, sans-serif;
    text-transform: uppercase;
}
.pagination-controls {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.circle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #4c5bd4;
    background: #fff;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: 0px 0px 5px 0px #0000001a;
    padding: 0;
}

.txtname_cate {
    color: #474747;
    font-size: 16px;
    line-height: 19px;
    font-weight: bold;
}

.boxcontent_catehome {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.iconCate {
    width: 100px;
}
.circle-btn:hover:not(:disabled) {
    background: #4c5bd4;
}
.circle-btn:hover:not(:disabled) svg {
    fill: #FFF;
}
@media (max-width: 700px) {
    .item_catehome {
        width: calc(100% / 2 - 12px);
    }
}