.banner {
    position: relative;
    height: 400px;
    text-align: center;
    background: url(../images/contact_banner.png) no-repeat center top / cover;
}
.banner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.content {
    padding: 50px 0;
    background-color: #f5f6f7;
}
.list-group {
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}
.list-group .list-name {
    height: 46px;
    line-height: 46px;
    padding-left: 20px;
    color: white;
    font-size: 16px;
    background: #e60012 url(../images/compliance_icon.png) no-repeat 98% center;
    font-weight:bold;
}
.list-content li {
    height: 45px;
    padding: 0 30px 0 12px;
    line-height: 45px;
    background-color: white;
    overflow: hidden;
    border-bottom: #f8f8f9 solid 1px;
}
.list-content li:last-of-type {
    border: none;
}
.list-content li .pull-left {
    width: 70%;
    font-size: 14px;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.list-content li .pull-left a{ color:black;}
.list-content li .pull-left a:hover { color: #343c5c; }
.list-content li .pull-right { width: 30%; font-size: 14px; color: #989898; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; text-align: right; }
.list-content li em {
    font-size: 16px;
    margin-right: 5px;
    color: #d3d1d1;
}
@media screen and (max-width: 1025px) {
    .banner {
        height: 200px;
    }
    .banner img {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .list-content li {
        padding: 0 10px;
    }
}