#homeSearchBox {
    width: 100%;
}

#homeSearchBox .margin {
    min-height: 74vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#homeSearchBox .margin h1 {
    width: 92%;
    max-width: 600px;
    text-align: center;
    margin: 32px 0 64px 0;
    /* font-size: 1.8rem; */
    font-size: 32px;
}

#searchForm {
    width: 82%;
}

#searchForm .inputGroup {
    display: flex;
    flex-direction: row;
}

#btnShowAll {
    margin: 24px;
    padding: 2px 4px;
    text-decoration: none;
    color: var(--soft-black);;
    background: #fff;
    border-bottom: 1px solid #00000055;
    font-size: 0.9rem;
    transition: 0.5s;
}

#btnShowAll:hover {
    border-bottom: 1px solid #000;
    padding: 2px 24px;
}



#homeCategoriesBox {

}

#homeCategoriesBox .margin {
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

#homeCategoriesBox .margin ul {
    list-style-type: none;
    text-align: center;
    
}

#homeCategoriesBox .margin ul li {
    display: inline-block;
    margin: 8px;
    
}

#homeCategoriesBox .margin a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--soft-black);
    font-size: 14px;
    
}

#homeCategoriesBox .margin a i {
    margin-left: 8px;
}


@media (max-width: 992px) {

    

}


@media (max-width: 768px) {

    #homeSearchBox .margin {
        min-height: 64vh;

    }

    #searchForm {
        width: 98%;
    }

    #btnShowAll {
        margin: 32px 16px 16px 16px;
        font-size: .9rem;
    }

    #homeSearchBox .margin h1 {
        margin: 24px 0;
        font-size: 19px;
    }
    
}

@media (max-width: 576px) {


   

}