.row_realisations {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}

.row_realisations .item {
    width: 33.33333334%;
    padding: 0 25px;
    margin-bottom: 50px;
    position: relative;
    height: 550px;
}

.row_realisations .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.row_realisations .item .bottom_rea {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 35px 30px;
    background: rgb(26 28 29 / 60%);
}

.row_realisations .item .bottom_rea .ladate {
    color: white;
    font-size: 20px;
}

.row_realisations .item .bottom_rea .title-article {
    font-size: 18px;
    color: white;
    font-weight: bold;
    line-height: 22px;
    width: calc(100% - 200px);
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.title_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.img_rea {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.title_btn a.btn_basic {
    background: transparent;
    color: white;
    opacity: 0;
    text-decoration: none;
}

.row_realisations .item:hover .title_btn a.btn_basic {
    opacity: 1;
}

.row_realisations .item:hover a.btn_basic {
    background: white;
    color: #5B6665;
    border-color: white;
}

.title_btn a.btn_basic i {
    margin-left: 10px;
}

.row_realisations .item:hover .img_rea img {
    transform: scale(1.2);
}

.title_btn a.btn_basic i {
    margin-left: 10px;
}

.row_realisations .item .img_rea:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.row_realisations .item:hover .img_rea:after {
    width: 100%;
}