.links-title{
    width: 100%;
    border-bottom: 4px solid #EAE9E9;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.links-title h2{
    display: inline;
    font-size: 0.9rem;
    border-bottom: 4px solid #F00E0E;
    padding-bottom: 10px;
}
.links-content{
    width: 100%;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 20px;
    padding-bottom: 0;
}
.links-content ul{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.links-content ul li{
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
    background: #FAFAFA url(../images/link-arrow-gray.svg) no-repeat 95% center;
    height: 50px;
    border-radius: 4px;
    padding: 0 15px;
    box-sizing: border-box;line-height: 50px;
    cursor: pointer;
    box-sizing: border-box;
}
.links-content ul li a{
    display: block;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.links-content ul li:nth-of-type(4n){
    margin-right: 0;
}
.links-content ul li:hover{
    background: #F00E0E url(../images/link-arrow-white.svg) no-repeat 95% center;
}
.links-content ul li:hover a{
    color: #fff;
}

@media(max-width:1024px){
    .links-content ul li{width: 49%;}
    .links-content ul li:nth-of-type(2n){
        margin-right: 0;
    }
}
@media(max-width:550px){
    .links-content ul li{width: 100%;margin-right: 0 !important;}
    .links-content{padding: 10px;}
    .links-content ul{margin-top: 10px;}
}
