#links_list{
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.link_item{
    padding: 20px;
    width: 400px;
    height: 200px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
    -webkit-box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
    -moz-box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
}
.link_icon_container{
    width: 15%;
    height: 100%;
    float: left;
}
.link_infos_container{
    width:80%;
    height: 100%;
    float: left;

    padding-left: 5%;
}
.link_title{
    margin-left: 20px;
    font-size: 14px;
    color: #1C263E;
}
.link_description{
    color: #999999;
    font-size: 12px;
}