.title_bloc {
    font-family: 'antonregular';
    font-weight: 300;
}
.button_homepageimage {
    margin-top: 15px;
    padding: 10px 15px;
    background: #fff;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    display: block;
    text-align: center;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
.button_homepageimage:hover {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.grid-0 .lt-bloc,
.grid-1 .lt-bloc {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;  
}

.grid-0 .lt-bloc:after,
.grid-1 .lt-bloc:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

@media screen and (max-width: 991px){
    .grid-0 .cat-col:nth-child(-n+2) .lt-bloc,
    .grid-1 .cat-col:nth-child(-n+2) .lt-bloc {
        margin-bottom: 15px;
    }   
}


.lt-grid-container-no-visible {
    display: none;
}
.lt-bloc {
    position: relative;
}
.item-content {
    padding: 15px;
    z-index: 2;
}
.item-title p {
    font-family: 'miracleregular';
    font-size: 1.75em;
    font-weight: 700;
    color: #fff;
    text-align:left;
}

.item-title p:last-of-type {
    margin-bottom: 0px;
}

.lt-bloc .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in 0s;
    z-index: 2;
}

.lt-bloc .img:after {
    content:'';
    display: block;
    width: 0;
    height: 0;
    background: rgba(255,255,255,.08);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.25s ease-in 0s;
    transform-origin: center center;
}

.lt-bloc:hover .img:after {
    width: 100%;
    height: 100%;
}
.item-text {
    color: #fff;
    text-align:left;
}
