.sitemap-container{
    padding: 80px 0 60px 0;
    margin-top:60px;
}
.sitemap-container .filter-wrapper{
    display: flex;
    gap:10px;
    justify-content: space-between;
    margin-bottom:26px;
}
.sitemap-container .filter-wrapper .sort-wrapper{
    display: flex;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
.sitemap-container .filter-wrapper .sort-wrapper .custom-select{
    background: transparent;
    border: 1px solid #e5e5e5;
    height: calc(1.5em + 0.5rem*2 + 2px);
    padding: 0.5rem 1rem;
    font-size: 14px;
}
.sitemap-container .filter-wrapper .sort-wrapper .custom-select:focus{
    box-shadow: none;
}
.sitemap-container .filter-wrapper .search-wrapper .search-bar--lg {
    position: relative;
}
.sitemap-container .filter-wrapper .search-wrapper .search-bar--lg .form-control{
    min-width: 260px;
    font-size: 14px;
}
.sitemap-container .filter-wrapper .search-wrapper .search-bar--lg .search-btn{
    position: absolute;
    right: 10px;
    top: 10px;
    border: 0;
    background: transparent;
    padding: 0;
    color: #bcbcbc;
    font-size: 14px;
}
.masonry-container {
    column-count: 3;
    column-gap: 1em;

}
.masonry-container  .masonry-item h2{
  font-size:22px;
}
.masonry-container  .masonry-item .level .service-title{
    font-size: 16px;
    font-weight: 500;
}
.masonry-container  .masonry-item .level.level-2{
    position: relative;
}
.masonry-container  .masonry-item .level.level-2::before{
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left:0;
    color:rgba(255, 68, 68, 0.6);
    font-size:18px;
    top:2px;
}
.masonry-container  .masonry-item .level.level-2 a{
    font-size:14px;

}
.masonry-container  .masonry-item .level .show-more-less .show-more{
 font-size: 13px;
 color:#f44;
 text-decoration: underline;
}
.masonry-container  .masonry-item .level .show-more-less .show-less{
    font-size: 13px;
    color:#f44;
    text-decoration: underline;
}
.masonry-item {
    display: inline-block;
    background: #fff;
    margin-bottom: 1em;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}

.masonry-item h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 0.5em;
}

.level {
    padding-left: 20px;
}

.level-1 {
    border-left: 2px solid rgba(255, 68, 68, 0.874);
    margin: 10px 0;
}

.level-2 {
    margin: 10px 0;
}

.level-3 {
    border-left: 4px solid #ffc107;
    margin: 10px 0;
}

a, span, p {
    display: block;
    padding: 5px 0;
}

a {
    text-decoration: none;
    color: #00f;
}
@media (max-width:992px){
    .sitemap-container{
        padding: 100px 0 60px 0;
    }
    .masonry-container{
        column-count: 2;
    column-gap: 16px; 
    }
}
@media (max-width:768px){
    .sitemap-container{
    padding: 60px 0 50px 0;
}
.sitemap-container .filter-wrapper .search-wrapper .search-bar--lg .form-control{
    min-width: auto;
}
}
@media (max-width:576px){
    .masonry-container{
        column-count: 1;

        
    }
    .sitemap-container .filter-wrapper{
        flex-direction: column-reverse;
        gap:16px;
    }
    .sitemap-container .filter-wrapper .sort-wrapper{
        font-weight: 500;
    }
    .sitemap-container .filter-wrapper .sort-wrapper .custom-select{
        width: auto;
        border: none;
        padding: 0;
    }
    .sitemap-container .filter-wrapper .search-wrapper .search-bar--lg .search-btn{
        position: absolute;
        right: 4px;
        top: 3px;
        border: 0;
        color: #ffffff;
        font-size: 14px;
        background: #f44;
        padding: 6px 7px;
        border-radius: 4px;
    }
}