#index-bloc-deco{
    height: 450px;
    position:relative;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-color: #FFF;
}
#headEdito {
    text-transform:uppercase;font-size:37px; position:absolute; top:40px; left:50px; font-weight: normal; text-shadow: 1px 1px 4px rgb(0,0,0,0.30)
}
#txtEdito{
    font-size:15px; position: absolute; bottom:32px; left: 50px; width:700px;text-shadow: 1px 1px 4px rgb(0,0,0,0.50);
}

#catBlockListing * {
    box-sizing: border-box;
}

#catBlockListing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px 10px;
    margin-bottom: 10px;
}

#catBlockListing div.subcat {
    border-radius: 7px;
    height: 305px;
    margin: 0;
    color: #FFF;
    opacity: 0.956;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    cursor: pointer;
}

#catBlockListing div.subcat:hover {
    opacity: 1;
}

#catBlockListing .subcatpanel {
    background: rgba(0, 0, 0, .7);
    width: 100%;
    position: absolute;
    left: 0;
    transform: translateY(252px);
    border-radius: 0 0 7px 7px;
}

#catBlockListing div.subcat:hover .subcatpanel {
    transform: none;
    bottom: 0;
}

a.subcat-title {
    font-size: 22px;
    text-transform: uppercase;
    color: #FFF;
    display: block;
    line-height: 23px;
    text-decoration: none;
    padding: 15px 0;
    text-align: center;
}

#catBlockListing ul.subcat-links {
    list-style: none;
    margin: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 15px;
}

#catBlockListing div.subcat:hover ul.subcat-links {
    max-height: 240px;
    margin: 10px 0 15px 0;
    transition: all .25s ease-in-out;
}

#catBlockListing ul.subcat-links li {
    margin: 0;
    display: block;
    padding-right: 20px;
}

#catBlockListing ul.subcat-links li.nocats {
    display: none;
}

#catBlockListing ul.subcat-links li a {
    font-size: 14px;
    line-height: 15px;
    padding: 2px 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    color: #FFF;
    text-decoration: none;
}

#catBlockListing ul.subcat-links li a:hover, a.subcat-title:hover {
    background-color: rgba(255, 255, 255, 0.125);
    border-radius: 5px;
}

.supersepa {
    margin: 30px 0;
}
ul.catPanel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

ul.catPanel li {
    background-color: var(--anthracite-dark-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 21px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

ul.catPanel li a {
    text-decoration: none !important;
}

ul.catPanel li:hover {
    background-color: var(--anthracite-color);
}

