.liste-villages .liste-grid {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.liste-villages .liste__item {
    max-width: 250px;
    padding: 10px;
}

.liste-village__item {
    border: #a5a5a5 1px solid;
    overflow-x: hidden;
    cursor: pointer;
}

.liste-village__item--image {
    position: relative;
}

.liste-village__item--image:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    content: '';
    background-color: #ffffff;
    transform-origin: 100% 100%; /* Définit l'encrange du transform en bas à droite*/
    transform: skewX(93deg); /*incline le bloc sur l'axe X de 93deg */
}

.liste-village__item--url {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: -10px;
    text-align: center;
}

.liste-village__item--url .btn--rounded {
    height: 79px;
    width: 79px;
    padding-top: 28px;
    font-size: 6rem;
    line-height: 2.1rem;
    transition: opacity .3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.liste-village__item--image:hover .btn--rounded {
    opacity: .86;
    pointer-events: auto;
}

.liste-village__item--content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 85px;
    padding: 0 16px;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 2.1rem;
}
