.coeur-container {
    width: 100%;
    min-height: 580px;
    height: 100vh;
    max-height: 873px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@media screen and (max-width: 500px) {
    .coeur-container {
        min-height: auto;
    }
}

.coeur-title-container {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}
.coeur-title-content {
    width: calc(100% - 20px);
    max-width: 1360px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.coeur-line {
    height: 2px;
    min-width: 20px;
    width: 40%;
    max-width: 250px;

    background-color: var(--main-blue);
}
.coeur-title {
    font-family: "Source Sans Pro";
    font-size: 50px;
    font-style: normal;
    font-weight: 300;
    line-height: 63px;
    text-align: center;
    color: #2B5C73;
    text-transform: uppercase;

    margin: 0;
}
@media screen and (max-width: 400px) {
    .coeur-title {
        font-size: 40px;
        line-height: 50px;
    }
}
@media screen and (max-width: 350px) {
    .coeur-title {
        font-size: 30px;
        line-height: 40px;
    }
}
@media screen and (max-width: 270px) {
    .coeur-title {
        font-size: 20px;
        line-height: 30px;
    }
}
.coeur-title b {
    color: var(--variant-blue-02);
    font-weight: bold;
}
.coeur-title span {
    white-space: nowrap;
}

.coeur-list-container {
    height: 360px;
    width: 80%;
    max-width: 1580px;

    margin-top: 80px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.coeur-arrow {
    height: 35px;
}
.coeur-arrow.left {
    margin-right: 25px;
}
.coeur-arrow.right {
    margin-left: 25px;
}
.coeur-carousel {
    height: 100%;
    flex-grow: 1;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.coeur-list-item {
    height: 100%;
    width: 300px!important;

    margin: 0 20px!important;

    background-color: #F4F7F8;
}
.coeur-list-item:hover {
    cursor: pointer;
}
.coeur-list-item > * {
    width: 100%;
}
.coeur-list-item-title-container {
    height: 45px;

    background-color: #2B5C73;

    display: flex;
    justify-content: center;
    align-items: center;
}
.coeur-list-item-title {
    margin: 0;

    color: white;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 20px;
    font-weight: 400;
}
.coeur-list-item-image {
    height: calc(100% - 160px);

    display: flex;
    justify-content: center;
    align-items: center;

    overflow-x: hidden;
    overflow-y: hidden;
}
.coeur-list-item-image .fake-image {
    width: 100%;
    height: 100%;
    transition: background-size 0.3s;

    background: url("../../../img/bien/default.jpg") no-repeat center center;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
}
.coeur-list-item:hover .coeur-list-item-image .fake-image {
    -webkit-background-size: 110%;
    -moz-background-size: 110%;
    -o-background-size: 110%;
    background-size: 110%;

    cursor: pointer;
}
.coeur-list-item-infos {
    height: 115px;

    padding-left: 15px;

    display: flex;
    justify-content: center;
    flex-direction: column;
}
.coeur-list-item-infos p {
    margin: 0;

    text-transform: uppercase;
    font-family: "Source Sans Pro";
    color: #2B5C73;
}
.coeur-list-item-info-ville {
    font-size: 20px;
}
.coeur-list-item-info-categories {
    font-size: 13px;
    font-weight: bold;
    line-height: 20px;
}
.coeur-list-item-info-prix {
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
}

/* Library Splide */

.splide {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}
.splide li.splide__slide {
    height: 10rem;

    margin-right: 2rem;
    width: calc(((100% + 2rem) / 4) - 2rem)!important;
}
@media screen and (max-width: 1500px) {
    .splide li.splide__slide {
        width: calc(((100% + 2rem) / 3) - 2rem)!important;
    }
}
@media screen and (max-width: 1100px) {
    .splide li.splide__slide {
        width: calc(((100% + 2rem) / 2) - 2rem)!important;
    }
}
@media screen and (max-width: 750px) {
    .splide li.splide__slide {
        width: calc(((100% + 2rem) / 1) - 2rem)!important;
    }
}
