/**
* 2007-2025 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-2025 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.
*/
#reassurance_fullace{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 80px 0;
}
#reassurance_fullace .item_ressurance{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 15px 5px;
    min-height: 120px;
    width: 230px;
}
#reassurance_fullace .item_ressurance *{
    user-select: none;
}
#reassurance_fullace .item_ressurance .picto{
    width: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
#reassurance_fullace .item_ressurance .picto img{
    width: 100%;
    height: auto;
}
#reassurance_fullace .item_ressurance:hover .picto{
    width: 50px;
}
#reassurance_fullace .item_ressurance .text_rea{
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}
#reassurance_fullace .item_ressurance .text_rea .highlight{
    transition: 0.3s ease-in-out;
}
#reassurance_fullace .item_ressurance:hover .text_rea .highlight{
    color: #b69864;
}
#reassurance_fullace .item_ressurance:hover .text_rea{
    font-weight: 600;
}
#reassurance_fullace .item_ressurance .picto{
    width: 0%;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
#reassurance_fullace .item_ressurance::before{
    content: "";
    position: absolute;
    border-top: 4px solid #b69864;
    border-right: 4px solid #b69864;
    transform: skew(-40deg);
    z-index: 99;
    transition: height 0.1s,transform 0.1s 0.1s,border 0.1s 0.1s,width 0.1s 0.1s ;
    width: 50%;
    height: 0%;
    top: 0;
    left: 0;
}
#reassurance_fullace .item_ressurance::after{
    content: "";
    position: absolute;
    border-bottom: 4px solid #b69864;
    transform: skew(-40deg);
    z-index: 99;
    transition: height 0.1s,transform 0.1s 0.1s,border 0.1s 0.1s,width 0.1s 0.1s ;
    width: 50%;
    height: 0%;
    bottom: 0;
    right: 0;
}
#reassurance_fullace .item_ressurance:hover::before{
    transform: skew(0);
    width: 100%;  
    height: 100%;
    border-top: 2px solid #b69864;
    border-right: 2px solid #b69864;
    transition: transform 0.1s,border 0.1s, width 0.1s, height 0.1s 0.1s;
}
#reassurance_fullace .item_ressurance:hover::after{
    transform: skew(0);
    width: 100%;  
    height: 100%;
    border-bottom: 2px solid #b69864;
    border-left: 2px solid #b69864;
    transition: transform 0.1s,border 0.1s, width 0.1s, height 0.1s 0.1s;
}
@media (max-width : 946px){
    #reassurance_fullace{
        justify-content: center;
        row-gap: 30px;
    }
    #reassurance_fullace .item_ressurance::before{
        transform: skew(0);
        width: 100%;  
        height: 100%;
        border-top: 2px solid #b69864;
        border-right: 2px solid #b69864;
        transition: transform 0.1s,border 0.1s, width 0.1s, height 0.1s 0.1s;
    }
    #reassurance_fullace .item_ressurance::after{
        transform: skew(0);
        width: 100%;  
        height: 100%;
        border-bottom: 2px solid #b69864;
        border-left: 2px solid #b69864;
        transition: transform 0.1s,border 0.1s, width 0.1s, height 0.1s 0.1s;
    }
}