.ahura_element_category_box
{
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 0 20px #434eb51a;
}
.ahura_element_category_box .info_section
{
    padding: 30px;
}
.ahura_element_category_box .info_section .description p
{
    margin-top: 25px;
}
.ahura_element_category_box .info_section .button
{
    border: 1px solid;
    display: inline-block;
    margin-top: 10px;
}
.ahura_element_category_box .items_section
{
    display: grid;
    grid-template-columns: 1fr;
}
.ahura_element_category_box .items_section .item
{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    border: 1px solid #f9f9f9;
    padding: 45px;
}
@media only screen and (min-width: 576px)
{
    .ahura_element_category_box .items_section
    {
        grid-template-columns: 1fr 1fr;
    }   
}
@media only screen and (min-width: 767px)
{
    .ahura_element_category_box
    {
        grid-template-columns: 1fr 2fr;
    }
}