/**
* 2007-2018 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2018 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.categoryHome{
    margin-bottom: 50px
}

.hookhome .categoryHome-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, max-content));
    justify-content: center;
    grid-column-gap: 36px;
}

.categoryHome-content .info h4 {
    font-size: 17px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    margin-top: 25px;
}
.category-image img {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
}

.categoryHome .titleHome h3{
    font-size: 35px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    text-align: center;
    color: #000;
    margin-top: 50px;
}
.homeCategory-body {
    width: 60%;
    margin: auto;
}
.homeCategory-body > div {
    margin: 10px 0px;
}
.homeCategory-body a {
    font-size: 15px;
    font-weight: 400;
    color: #353535;
}
.categoryHome.container.hookcategory {
    position: relative;
}
.hookcategory ul.categoryHome-content {
    padding: 0px 30px 0px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 100px;
}
.hookcategory ul.categoryHome-content{
    position: relative;
    display: flex;
    scroll-snap-type: x mandatory;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    margin-bottom: -35px;
    padding-left: 97px;
}
.hookcategory ul.categoryHome-content li{
    max-width: calc( 100% / 7);
    margin-right: 25px;
    margin-bottom: 5px;
    width: 100%;
    line-height: 1.2;
    order: 1;
    scroll-snap-align: start;
    scroll-behavior: smooth;
    color: #616161;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
}
.categoryHome.container.hookcategory {
    padding: 0px 30px 0px;
    overflow: hidden;
    margin-bottom: 55px;
    min-height: 100px;
}
.categoryHome.container.hookcategory ul li .info h4 {
    color: #282959;
    font-size: 17px;
    font-weight: 300;
    text-transform: initial;
    padding-top: 20px;
}
.categoryHome .h2 {
    margin: 2.5rem 0;
    font-weight: 500;
    text-align: center;
}

@media(max-width: 992px){
    .hookcategory ul.categoryHome-content li {
        max-width: calc( calc(100% - 0px)/5);
    }
}

@media (max-width: 767px) {
    .categoryHome-content, .hookhome .categoryHome-content {
        grid-template-columns: repeat(2, minmax(0, max-content));
        margin-left: calc((-50vw) + 50%);
        width: 100vw;
        padding-left: 15px;
    }
    .categoryHome .titleHome {
        font-size: 22px;
    }
    .hookcategory ul.categoryHome-content li {
        max-width: calc(100% /4);
        margin-right: 15px;
    }
    .hookcategory ul.categoryHome-content{
        padding: 0px
    }
    .hookcategory .arrows{
        display: none
    }
    .categoryHome.container.hookcategory{
        padding: 0px;
        min-height: auto;
        overflow: initial;
        margin: 20px 0 50px;
    }
    .categoryHome.container.hookcategory ul li .info h4{
        font-size:13px;
    }
    .categoryHome-content .info h4{
    font-size: 15px;
}
}