@import url('./cdn/bootstrap.min.css');
@import url('./main.css');
@import url('./blocks/header.css');
@import url('./blocks/footer.css');

.page-title {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}
.site_map_list {
    list-style-type: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 -0.75rem 2.5rem;
}
.site_map_list li {
    padding: 0.25rem 0.75rem;
}
.site_map_list a {
    color: var(--Black_titles, #191A26);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}
.site_map_list a:hover {
    color: var(--Red, #C11D1D);
}
.site_map_nav {
    margin: 2.5rem auto;
}
.site_map_nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 0;
}
.site_map_nav a, 
.site_map_nav span {
    color: var(--Grey_middle, #838587);
    border: 1px solid var(--Grey_middle, #838587);
    border-radius: 4px;
    font-weight: 600;
    line-height: 1;
    padding: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 1.5rem;
    height: 1.5rem;
    transition: color 0.15s ease, border 0.15s ease;
    margin: 0 0.375rem;
}
.site_map_nav a svg {
    width: 0.625rem;
    height: auto;
    fill: currentColor;
}
.site_map_nav a:hover,
.site_map_nav .current {
    color: var(--Black_titles, #191A26);
    border: 1px solid var(--Black_titles, #191A26);
}
@media screen and ( min-width: 576px ) {
    .site_map_list {
        column-count: 2;
    }
}
@media screen and ( min-width: 992px ) {
    .page-title {
        font-size: 2rem;
    }
    .site_map_list {
        font-size: 1.25rem;
    }
    .site_map_nav a, 
    .site_map_nav span {
        min-width: 2.25rem;
        height: 2.25rem;
    }
    .site_map_nav a svg {
        width: 1rem;
    }
    .site_map_list {
        column-count: 3;
    }
}
/* @media screen and ( min-width: 1400px ) {
    .site_map_list {
        column-count: 4;
    }
} */