/**
* 2007-2021 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-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/

.featuredCat{
    margin-bottom: 30px;
}
.featuredCatCont{
    margin-bottom: 30px;
}
.featuredCatCont.odd{
    width: 25%;
}
.featuredCatCont.even{
    width: 35%;
}
.featuredCatCont{
    position: relative;
    overflow: hidden;
}
.featuredCatCont .category_name{
    color:#C9C0C1;
}
.featuredCatCont .category_name span{
    font-size: 28px;
    color:#FFF;

}
@media (min-width: 992px) {
    .homeCatCont {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        align-items: center;
    }
    .featuredCatCont:before{
        transition: background-color 250ms ease-in-out;
        content: "";
        display: block;
        background-color: rgba(0,0,0,0.6);
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        z-index: 1;
    }
    .featuredCatCont .featuredCatHover{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        transition: bottom 250ms ease-in-out;
        color: #FFF;
        z-index: 2;
        padding: 10px;
        text-align: center;
        text-transform: uppercase;
    }
}
@media (min-width: 1200px) {
    .featuredCatCont:before{
        background-color: rgba(0,0,0,0);
    }
    .featuredCatCont:hover:before{
        transition: background-color 250ms ease-in-out;
        background-color: rgba(0,0,0,0.6);
    }
    .featuredCatCont .featuredCatHover{
        bottom: -100%;
    }
    .featuredCatCont:hover .featuredCatHover{
        bottom: 0;
        transition: bottom 250ms ease-in-out;
    }
}
@media (max-width: 1199.98px) {
    .featuredCatCont .category_name span{
        font-size: 24px;    
    }

}
@media (max-width: 991.98px) {
    .homeCatCont{
        display: flex;
        flex-wrap: wrap;
    }
    .featuredCatCont.odd,.featuredCatCont.even{        
        width:50%;
    }
    .featuredCatCont .category_name span{
        font-size: 26px;    
    }
    .homeCatCont .slick-list{
        overflow: visible;
    } 
    .featuredCatCont{
        padding: 0 10px;
        margin-bottom: 15px;
    }
    .featuredCatCont:before{
        transition: background-color 250ms ease-in-out;
        content: "";
        display: block;
        width: calc(100% - 20px);
        height: 100%;
        left: 10px;
        top: 0;
        position: absolute;
        z-index: 1;
        background-color: rgba(0,0,0,.6);
    }
    .featuredCatCont .featuredCatHover{
        position: absolute;
        width: calc(100% - 20px);
        height: 100%;
        left: 10px;
        bottom: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        transition: bottom 250ms ease-in-out;
        color: #FFF;
        z-index: 2;
        padding: 10px;
        text-align: center;
        text-transform: uppercase;
    }
    .featuredCatCont .category_name span{
        font-size: 24px;    
    }
}
@media (max-width: 767.98px) {
    .homeCatCont{
        display: block;
        flex-wrap: wrap;
    }
}
@media (max-width: 575.98px) {
    .featuredCatCont .category_name span{
        font-size: 20px;    
    }
}