.sitemap-group {
    position: relative;
}
.sitemap-group+.sitemap-group {
    margin-top: 50px;
}

.sitemap-title-row {
    position: relative;
    border-bottom: 1px solid rgba(var(--custom-rgb-color-black),1) !important;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

ul.sitemap-menu-group,
ul.sitemap-menu-group>li {
    position: relative;
    /* list-style: none; */
    padding: 0;
    margin: 0;
}
ul.sitemap-menu-group {
    display: flex;flex-wrap: wrap;
    margin-left: 20px;
}
ul.sitemap-menu-group>li {
    width: calc(100% / 3);
}
ul.sitemap-menu-group .this-menu {
    position: relative;
    color: rgba(var(--custom-rgb-color-black),1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
ul.sitemap-menu-group .this-menu:hover {
    color: rgba(var(--custom-rgb-color-primary),1);
}

/* xxl */
@media (min-width: 1400px) {}

/* xxl - 1 */
@media (min-width:1500px) and (max-width: 1599.98px) {}

/* xxl - 2 */
@media (min-width: 1400px) and (max-width: 1499.98px) {}

/* xl */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* lg */
@media (min-width: 992px) and (max-width: 1199.98px) {}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {

.sitemap-group+.sitemap-group {
    margin-top: 30px;
}    
.sitemap-title-row {
    padding-bottom: 15px;
    margin-bottom: 15px;
}
ul.sitemap-menu-group>li {
    width: calc(100% / 2);
}

}

/* sm - xs */
@media (max-width: 767.98px) {

.sitemap-group+.sitemap-group {
    margin-top: 30px;
}    
.sitemap-title-row {
    padding-bottom: 15px;
    margin-bottom: 15px;
}
ul.sitemap-menu-group>li {
    width: calc(100% / 2);
}

}

/* sm */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* xs */
@media (max-width: 575.98px) {}

/* xs custom */
@media (max-width: 399.98px) {

ul.sitemap-menu-group>li {
    width: 100%;
}

}
