/* Sitemap ====================================================================*/
.sitemap .row {
    margin-bottom: 30px;
}

.sitemap [class^="layout-"] a {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    color: #58B2DC;
}

.sitemap [class^="layout-"] a:before {
    content: '';
    margin-right: 8px;
    font-family: FontAwesome;
}

.sitemap .layout-head {
    background-image: linear-gradient(to right bottom, #0062ac, 70%,#58B2DC);
    border-radius: 2px;
}
.sitemap .layout-head:hover {
    background-image: linear-gradient(to right bottom, #0062ac, 40%,#58B2DC);
    border-radius: 2px;
}

.sitemap .layout-head a {
    color: #fff;
}

.sitemap .layout-head a:before {
    display: none;
}

.sitemap .layout-1 {
    background: #e5e5e5;
    border-radius: 1px;
}

.sitemap .layout-1 a {
    font-size: 15px;
    color: #0062ac;
}

.sitemap .layout-1 a:before {
    content: '\f0da';
    color: #0062ac;
    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: #0B346E;
    font-size: 15px;
}

.sitemap .layout-2 a:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #BABABA;
    border-radius: 100%;
}
.sitemap .layout-3 a{
    padding-left: 30px;
}
/* .sitemap .layout-end a{
    padding-left: 32px;
} */
.sitemap .layout-end {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 10px;
}

.sitemap .layout-end a {
    font-size: 14px;
    color: #f39800;
    /* width: calc(100% / 4 - 25px); */
    padding: 8px 15px 8px 40px;
}

.sitemap .layout-end a:before {
    content: '';
    width: 3px;
    height: 3px;
    background: #BABABA;
    border-radius: 100%;
}

@media only screen and (max-width: 992px) {
    .sitemap .layout-end a {
        width: 100%;
    }
}

@media only screen and (max-width: 375px) {
    .sitemap .layout-end a {
        width: 100%;
    }
}