/* Sitemap ====================================================================*/
.sitemap .row {
    margin-bottom: 30px;
}

.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: #506a85;
}

.sitemap .layout-head a {
    color: #fff;
}

.sitemap .layout-head a:before {
    display: none;
}

.sitemap .layout-1 {
    background: #d4d4d4;
}

.sitemap .layout-1 a {
    font-size: 15px;
    color: #252525;
}

.sitemap .layout-1 a:before {
    content: '\f0da';
    color: #0EB391;
    background: transparent;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.sitemap .layout-2 {
    padding: 0 10px;
}

.sitemap .layout-2 a {
    color: #029777;
    font-size: 15px;
}

.sitemap .layout-2 a:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #BABABA;
    border-radius: 100%;
}

.sitemap .layout-end {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 10px;
}

.sitemap .layout-end a {
    font-size: 14px;
    color: #252525;
    width: calc(100% / 4 - 25px);
    padding: 10px 15px 10px 10px;
}

.sitemap .layout-end a:before {
    content: '';
    width: 2px;
    height: 2px;
    background: #BABABA;
    border-radius: 100%;
}

@media only screen and (max-width: 992px) {
    .sitemap .layout-end a {
        width: calc(50% - 25px);
    }
}

@media only screen and (max-width: 375px) {
    .sitemap .layout-end a {
        width: 100%;
    }
}