﻿body {
}

.Hadding-sitemap {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 72px;
    margin-bottom: 30px !important;
}
.text-sitemap {
    font-size: 1.375rem;
    line-height: 32px;
}
.site-memu-titlle {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 30px;
}
.site-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    list-style-type: none;
    align-items:center;
}
@media (max-width: 991.98px) {
    .site-links {
        grid-template-columns: repeat(3, 1fr); /* 1 column on smaller screens */
    }
}
@media (max-width: 767.98px) {
     .site-links {
        grid-template-columns: repeat(2, 1fr); /* 1 column on smaller screens */
    }
}

@media  (max-width: 575.98px) {
    .site-links {
        grid-template-columns: repeat(1, 1fr); /* 1 column on smaller screens */
    }
}

.subsite-each-list {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 24px;
    margin-right: 5px;
    text-decoration: none;
    list-style-type: none;
}
.subsite-each-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px; /* Size of the red square */
    height: 10px;
    background-color: red;
}

    .subsite-each-list li {
        list-style-type: none !important;

    }
.subsite-each-list > a {
    font-size: 15px;
}

    .subsite-each-list a {
        display: block;
        text-decoration: none; /* Remove underline from links */
        color: inherit; /* Use inherited text color */
    }