/**
 * Module HomeImageBlock
 *
 * @author    Empty
 * @copyright 2007-2016 PrestaShop SA
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

#container-homeimageblock {
    width: 100%;
    margin-bottom: 7rem;
}

    #homeimageblock {
        margin: 0 auto;
    }

        #homeimageblock li {
            list-style-type: none;
            position: relative;
        }

#homeimageblock li img {
                height: auto !important;
                max-width: 100%;
            }



#homeimageblock .item .item-content{
    position: absolute;
    bottom: 40px;
    left: 40px;
     -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; 
    
}
#homeimageblock *{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; 
    
    position: relative;
}

#homeimageblock .btn-more{
    opacity: 0;
    left: -20px
}
#homeimageblock .item{
    
}
#homeimageblock .item:hover .btn-more{

    opacity: 1;
    left: 0
}


#homeimageblock .item h2{
font-size: 36px;
    font-weight: bold;
    color: #000;
    font-family: 'Montserrat', sans-serif;
   
}

#homeimageblock .item p{
    font-size: 16px;
    font-style: italic;
    color: #fff;
    text-shadow: 0 1px 2px #888;
    margin-bottom: -20px
}
#homeimageblock .item:hover img{
opacity: 0.2
}
#homeimageblock li:hover .item-content h2{
   
    color: #c799ae;
}
#homeimageblock li:hover .item-content p{
    text-shadow: none;
    color: #7d7d7d;
    margin-bottom: 20px
}


