.content {
    max-width: none;
}
.links-list {
    margin: -30px -10px 0;
}
.links-list .item {
    width: 25%;
    padding: 0 10px;
}
.links-list .item a {
    margin: 30px auto 0;
    max-width: 320px;
}
.links-list .pic {
    margin-bottom: 6px;
    position: relative;
}
.links-list .website{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 15%;
    text-align: center;
    background: rgba(27, 27, 27, 0.75);
    color: #EBE7E3;
    text-decoration: underline;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.links-list a:hover .website{
    opacity: 1;
}
.links-list .title {
    color: #646464;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
}


@media screen and (max-width: 1000px) {
    .links-list .item {
        width: 33.33%;
    }
}
@media screen and (max-width: 767px) {
    .links-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 520px) {
    .links-list .item {
        width: auto;
        float: none;
    }
}