﻿/* CONCIERGERIE */

.list-conciergerie {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px;
    align-self: stretch;
    flex-wrap: wrap;
}

.list-conciergerie .li-conciergerie {
    display: flex;
    width: calc(50% - 20px);
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.list-conciergerie .li-conciergerie .img-conciergerie {
    object-fit: cover;
    height: 300px;
    width: 100%;
    border-radius: 10px;
}
.wrap-conciergerie-item {

}

/* BLOC HAUT */
.bloc-haut-conciergerie {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.bloc-haut-conciergerie-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.conciergerie-title-type-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

.conciergerie-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.conciergerie-title-wrap h3 {
   color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.bloc-distance-oi {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bloc-distance-oi img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.bloc-distance-oi span {
    color: var(--color-black);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

/* BLOC BAS */
.bloc-bas-conciergerie {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
}

.bloc-bas-conciergerie .price span {
    color: var(--color-black);
    text-align: right;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}
.bloc-bas-conciergerie .price strong {
    color: var(--color-black);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
    .bloc-bas-conciergerie .btn-see-offer {
        display: flex;
        height: 30px;
        padding: 5px 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 5px;
        border-width: 0.25px;
        border-style: solid;
        border-color: var(--MAIN-COLOR);
        background: #FFF;
    }
.bloc-bas-conciergerie .btn-see-offer span {
    color: var(--MAIN-COLOR);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 768px) {

    .list-conciergerie {
        flex-direction: column;
    }

    .list-conciergerie .li-conciergerie {
        width: 100%
    }

}