#sitemap {
    background: #fff;
    max-width: 980px;
    margin: 50px auto;
    padding: 5px;
    font: 1rem "Poppins", sans-serif;
}

div.section {
    overflow: hidden;
    width: 100%;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    padding-top: 50px;
}

div.section div {
    display: inline-block;
    border: #214071 solid 1px;
    border-radius: 5px;
    width: 30%;
    min-width: 300px;
    max-width: 99%;
    margin: 16px 1%;
    padding: 12px;
    background: #fff;
    box-shadow: 0 3px 3px #666;
}

div.section div:before {
    display: block;
    content: "";
    position: relative;
    left: 50%;
    width: 1px;
    height: 32px;
    margin: -44px 0 12px 4px;
    background: #ccc;
}

div.section div:hover {
    box-shadow: 0px 3px 3px 1px #666;
}

div.section p {
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    margin-top: -50px;
}

div.section p:after {
    display: block;
    content: "";
    position: relative;
    width: 67.5%;
    max-width: 656px;
    height: 1px;
    box-sizing: border-box;
    margin: -14px auto 0 auto;
    background: #ccc;
}

div.section p a {
    margin: 0 auto;
    float: none;
    color: #214071;
}

div.section a {
    color: #214071;
}

div.section p a:after {
    display: block;
    content: "";
    position: relative;
    left: 50%;
    width: 1px;
    height: 32px;
    background: #ccc;
}

div.PageBreak {
    margin-top: 16px;
}

div.PageBreak span {
    font-weight: bold;
}

div.footerinfo {
    margin-top: 16px;
    color: #666;
    font-size: 12px;
    text-align: right;
}

div.footerinfo * {
    font-size: 12px;
}

@media only screen and (max-width:900px) {
    div.section div {
        min-width: 250px;
    }
}

@media only screen and (max-width:800px) {
    div.section div {
        width: 50%;
    }

    div.section {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (max-width:500px) {
    div.section div {
        width: 100%;
    }

    div.section {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    div.section p:after,
    div.section p a:after {
        display: none;
    }
}