/* Sitemap ====================================================================*/
ul{
    margin: 0;
    padding: 0;
}
ul,li {
    list-style: none;
}
.sitemap{
    max-width: 1000px;
    margin: 0 auto;
}
.sitemap .row {
    margin-bottom: 30px;
}

.sitemap [class^="layout-"] {
    background: #F1F1F1;
}

.sitemap [class^="layout-"] a {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    color: #252525;
}

.sitemap [class^="layout-"] a:before {
    content: '';
    margin-right: 8px;
    font-family: FontAwesome;
}

.sitemap .layout-head {
    background: #2363af;
}

.sitemap .layout-head a {
    color: #fff;
}

.sitemap .layout-head a:before {
    display: none;
}

.sitemap .layout-1 {
    background: #d8d7e7;
}

.sitemap .layout-1 a {
    font-size: 15px;
    color: #252525;
}

.sitemap .layout-1 a:before {
    content: '\f0da';
    color: #2a8eff;
    background: transparent;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.sitemap .layout-2 a {
    color: #029777;
    font-size: 15px;
    padding: 10px 10px 0 10px;
}

.sitemap .layout-2 a:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #BABABA;
    border-radius: 100%;
}

.sitemap .layout-3 a {
    color: #252525;
    font-size: 15px;
    padding: 10px 10px 0 10px;
}

.sitemap .layout-3 a:before {
    width: 2px;
    height: 2px;
    background: #BABABA;
    border-radius: 100%;
}

.sitemap .layout-3 .layout-end {
    background: #fafafa;
}

.sitemap .layout-end {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.sitemap .layout-end .list-end {
    width: calc(100% / 4 - 25px);
    padding: 10px 15px 10px 10px;
}

.sitemap .layout-end a {
    font-size: 14px;
    color: #252525;
}

.sitemap .layout-end a:before {
    content: '';
    width: 2px;
    height: 2px;
    background: #BABABA;
    border-radius: 100%;
}

@media all and (max-width: 992px) {
    .sitemap .layout-end .list-end {
        width: calc(50% - 25px);
    }
}

@media all and (max-width: 375px) {
    .sitemap .layout-end .list-end {
        width: 100%;
    }
}