.cotnainer-widget-sazura{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.item-category{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding:20px;
    background-color: #F7F9F7;
    border-radius: 3px;
    width: calc(100% / 3 - 50px);
    box-sizing: content-box;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
}
.item-category:hover{
    scale: 1.03;
    background-color: #dbfadb;
}
.image-category{
    width: 120px;
    height: 120px;
}
.image-category img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.name-category h3{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin: 0px !important;
    padding: 0px !important;
}
.arrow-link{
    position: absolute;
    right: 20px;
    bottom: 10px;
    rotate: 40deg;
    font-size: 21px;
    color: #000;
}

@media (max-width: 800px){
    .item-category{
        width: calc(100% / 2 - 50px);
    }
}

@media (max-width: 500px){
    .item-category{
        width: 100%;
    }
}