body {
    background-color: #F3F3F3;
}


/*============================================section__articles============================================*/

.section__articles {
    margin: auto;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
}

.section__articles .bx__article {
    width: 300px;
    height: 480px;
    background-color: var(--lcv_white);
    color: #000000;
    text-decoration: none;
    margin: 1%;
}

.section__articles .bx__article {
    display: block;
    position: relative;
}

.section__articles .bx__article:before,
.section__articles .bx__article:after {
    position: absolute;
    content: "";
    transition: all .25s;
    z-index: 0;
}

.section__articles .bx__article:before {
    border-bottom: 3px solid var(--lcv_green);
    border-left: 3px solid var(--lcv_green);
    width: 10%;
    height: 33%;
    left: 0px;
    bottom: 0px;
}

.section__articles .bx__article:after {
    border-top: 3px solid var(--lcv_green);
    border-right: 3px solid var(--lcv_green);
    width: 10%;
    height: 33%;
    top: 0px;
    right: 0px;
}

.section__articles .bx__article:hover:before {
    width: 102%;
    height: 98%;
}

.section__articles .bx__article:hover:after {
    width: 102%;
    height: 98%;
}

.section__articles .bx__article img {
    width: 80%;
    margin: 0 10% 0 10%;
}

.section__articles .bx__article .title__article {
    padding: 3%;
    font-size: 22px;
    font-weight: 600;
    color: var(--lcv_white);
    background-color: var(--lcv_black);
}

.section__articles .bx__article .adjectif__article {
    margin-right: 3%;
    margin-left: 3%;
    padding-top: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--lcv_green);
}

.section__articles .bx__article .price__article {
    margin-right: 3%;
    margin-left: 3%;
    padding-top: 10px;
    font-size: 20px;
}

.section__articles .bx__article .price__article span {
    font-size: 10px;
    font-weight: 400;
    color: #000000;
}

.section__articles .bx__article .localisation__article {
    margin-right: 3%;
    margin-left: 3%;
    color: #888686;
    font-size: 12px;
    font-weight: 400;
}

.section__articles .bx__article .btn__type {
    /* On met la div bouton au milieu */
    text-align: center;
    margin: auto;
    position: absolute;
    bottom: 0;
    right: 75px;
    z-index: 2;
}

.section__articles .bx__article .btn__noirvert {
    /* On créé un bouton rectangulaire qui s'affiche en noir  */
    text-align: center;
    background: var(--lcv_black);
    color: #fff;
    padding: 12px;
    margin: 12px;
    text-decoration: none;
    font-size: 18px;
}

.section__articles .bx__article .btn__noirvert:hover {
    /* On fait en sorte qu'il s'affiche en vert lors du survol */
    background: var(--lcv_green) !important;
}

@media (min-width: 650px) and (max-width: 980px) {
    .section__articles {
        max-width: 700px;
    }
}

@media (max-width: 650px) {
    .section__articles {
        flex-direction: column;
    }
}