/*==================================================
                    SITEMAP
==================================================*/

.block-sitemap{

    margin:50px 0;

}

.sitemap-modern,
.sitemap-modern ul{

    margin:0;
    padding:0;
    list-style:none;

}

.sitemap-modern>li{

    position:relative;

    margin-bottom:16px;
    padding:18px 22px;

    background:#fff;

    border:1px solid #dbeaf7;
    border-radius:18px;

    box-shadow:0 10px 28px rgba(37,131,216,.08);

    transition:.3s;

}

.sitemap-modern>li:hover{

    transform:translateY(-3px);

    border-color:#54b8f4;

    box-shadow:0 18px 36px rgba(37,131,216,.15);

}

.sitemap-modern>li>a{

    display:block;

    padding-right:35px;

    color:#17324d;

    font-size:20px;
    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.sitemap-modern>li>a:hover{

    color:#2583d8;

}

.sitemap-modern>li>a::before{

    content:"";

    display:inline-block;

    width:10px;
    height:10px;

    margin-right:12px;

    border-radius:50%;

    background:#2583d8;

    vertical-align:middle;

}

/*--------------------------
        Подразделы
---------------------------*/

.sitemap-modern .sitemap__list-sub{

    margin-top:18px;
    margin-left:22px;

    border-left:2px solid #d7ebfb;

    padding-left:22px;

}

.sitemap-modern .sitemap__list-sub li{

    position:relative;

    margin:10px 0;

}

.sitemap-modern .sitemap__list-sub li::before{

    content:"";

    position:absolute;

    left:-30px;
    top:13px;

    width:16px;
    height:2px;

    background:#d7ebfb;

}

.sitemap-modern .sitemap__list-sub a{

    display:block;

    color:#5b6f84;

    font-size:16px;

    text-decoration:none;

    transition:.25s;

}

.sitemap-modern .sitemap__list-sub a:hover{

    color:#2583d8;

    padding-left:8px;

}

/*--------------------------
    Кнопка раскрытия
---------------------------*/

.sitemap-modern .subControlJs{

    position:absolute;

    right:18px;
    top:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    width:34px;
    height:34px;

    border-radius:50%;

    background:#eef7ff;

    color:#2583d8;

    cursor:pointer;

    transition:.3s;

}

.sitemap-modern .subControlJs:hover{

    background:#2583d8;
    color:#fff;

}

.sitemap-modern .subControlJs.active{

    transform:rotate(90deg);

}

/*--------------------------
        Адаптив
---------------------------*/

@media(max-width:768px){

    .sitemap-modern>li{

        padding:16px;

    }

    .sitemap-modern>li>a{

        font-size:18px;

    }

    .sitemap-modern .sitemap__list-sub{

        margin-left:10px;
        padding-left:16px;

    }

}