section.selection-biens {
    display: flex;
    align-items: center;
    margin-bottom: 85px;
    position: relative;
    padding-bottom: 45px;
    max-width: 1400px;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 757px) {
    section.selection-biens {
        margin-bottom: 30px;
        padding-bottom: 0;
    }
}

section.selection-biens .row {
    width: 100% !important;
}

.chaque-bien {
    position: relative;
    padding-bottom: 45px;
    height: 100%;
}

.chaque-bien-column {
    margin-bottom: 20px !important;
}

.chaque-bien .images-bien {
    position: relative;
    margin-bottom: 15px;
    height: 280px;
    overflow: hidden;
}

.chaque-bien .images-bien .owl-images-bien .owl-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--red);
    opacity: 0;
    z-index: 2;
    transition: var(--transition);
}

.chaque-bien .images-bien .owl-images-bien .owl-item:hover::before {
    opacity: 0.3;
    transition: var(--transition);
}

.chaque-bien .images-bien .owl-images-bien,
.chaque-bien .images-bien .owl-listing-bien,
.chaque-bien .images-bien .owl-images-bien .owl-stage-outer,
.chaque-bien .images-bien .owl-listing-bien .owl-stage-outer,
.chaque-bien .images-bien .owl-images-bien .owl-stage-outer .owl-stage,
.chaque-bien .images-bien .owl-listing-bien .owl-stage-outer .owl-stage,
.chaque-bien .images-bien .owl-images-bien .owl-stage-outer .owl-stage .owl-item,
.chaque-bien .images-bien .owl-listing-bien .owl-stage-outer .owl-stage .owl-item {
    height: 100%;
}

.chaque-bien .images-bien .owl-images-bien img,
.chaque-bien .images-bien .owl-listing-bien img {
    object-fit: cover;
    height: 100%;
}

.chaque-bien .images-bien .owl-images-bien .owl-dots,
.chaque-bien .images-bien .owl-listing-bien .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.chaque-bien .images-bien .owl-images-bien .owl-dots .owl-dot,
.chaque-bien .images-bien .owl-listing-bien .owl-dots .owl-dot {
    margin: 5px;
    padding: 5px;
}

.chaque-bien .images-bien .owl-images-bien .owl-dots button span,
.chaque-bien .images-bien .owl-listing-bien .owl-dots button span {
    width: 8px;
    height: 8px;
    background-color: var(--white);
    opacity: 0.5;
    margin: 0;
}

.chaque-bien .images-bien .owl-images-bien .owl-dots .owl-dot.active span,
.chaque-bien .images-bien .owl-listing-bien .owl-dots .owl-dot.active span {
    background-color: var(--white);
    opacity: 1;
}

.chaque-bien .images-bien .transaction {
    position: absolute;
    top: 13px;
    z-index: 1;
    left: 13px;
    text-transform: uppercase;
    font-size: 12px;
    background-color: var(--red);
    padding: 8px 25px;
    color: var(--white);
    letter-spacing: 1px;
}

.chaque-bien .images-bien .full-screen-images-bien {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(0 0 0 / 40%);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.chaque-bien .images-bien .full-screen-images-bien.open {
    opacity: 1;
    pointer-events: inherit;
    transition: var(--transition);
}

.chaque-bien .images-bien .full-screen-images-bien .full-screen-owl-images-bien {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chaque-bien .images-bien .full-screen-images-bien .closeCross {
    position: fixed;
    top: 55px;
    right: 60px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.chaque-bien .images-bien .full-screen-images-bien .closeCross span {
    width: 100%;
    position: absolute;
    height: 1px;
    background-color: var(--white);
    transform: rotate(45deg);
}

.chaque-bien .images-bien .full-screen-images-bien .closeCross span:last-child {
    transform: rotate(-45deg);
}

.chaque-bien .images-bien .full-screen-images-bien .full-screen-owl-images-bien .owl-stage-outer {
    height: 500px;
}

.chaque-bien .images-bien .full-screen-images-bien .full-screen-owl-images-bien .owl-stage-outer .owl-stage,
.chaque-bien .images-bien .full-screen-images-bien .full-screen-owl-images-bien .owl-stage-outer .owl-stage .owl-item {
    height: 100%;
}

.chaque-bien .images-bien .full-screen-images-bien .full-screen-owl-images-bien .owl-stage-outer .owl-stage .owl-item img {
    object-fit: contain;
    height: 100%;
}

.chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav.none {
    display: none;
}

.chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav .customPrevBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    z-index: 1;
    left: 20%;
    transform: rotate(180deg);
}

.chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav .customNextBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    z-index: 1;
    right: 20%;
}

@media (max-width:1200px) {
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-owl-images-detail {
        width: 70%;
    }
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav .customPrevBtn {
        left: 10%;
    }
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav .customNextBtn {
        right: 10%;
    }
}

@media (max-width:991px) {
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-owl-images-detail {
        width: 80%;
    }
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav .customPrevBtn {
        left: 5%;
    }
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav .customNextBtn {
        right: 5%;
    }
}

@media (max-width:767px) {
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-owl-images-detail {
        width: 95%;
    }
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav .customPrevBtn {
        display: none;
    }
    .chaque-bien .images-bien .full-screen-images-bien .full-screen-images-bien-custom-nav .customNextBtn {
        display: none;
    }
}

.chaque-bien a {
    text-align: left;
}

.chaque-bien a h4 {
    color: var(--red);
    margin-bottom: 10px;
}

.chaque-bien a .ville-surface {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.chaque-bien a .ville-surface .ville {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.chaque-bien a .ville-surface .ville svg {
    fill: var(--red);
    margin-right: 5px;
}

.chaque-bien a .ville-surface .surface {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.chaque-bien a .ville-surface .surface svg {
    fill: var(--red);
    margin-right: 5px;
}

.chaque-bien a p {
    margin-bottom: 25px;
}

.chaque-bien .cta-contact {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.chaque-bien .cta-contact .call-back,
.chaque-bien .cta-contact .contact {
    border: 1px solid var(--brown);
    padding: 12px 20px;
    width: 44%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chaque-bien .cta-contact .arrow {
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    left: 100%;
    width: 50px;
    top: -1px;
    height: calc(100% + 2px);
}

.chaque-bien .cta-contact .arrow svg {
    fill: var(--white);
    transform: translateX(0);
    transition: var(--transition);
}

.chaque-bien .cta-contact:hover .arrow svg {
    transform: translateX(2px);
    transition: var(--transition);
}

@media (max-width: 1206px) {
    .chaque-bien .cta-contact .call-back,
    .chaque-bien .cta-contact .contact {
        font-size: 10px;
    }
    /* section.selection-biens .chaque-bien .cta-contact .arrow {
        height: 42px;
    } */
}