/* sitemap.css */
/*--------------------------------------*/

#sitemap {
    margin-top: 120px;
    margin-bottom: 90px;
    font-size: 16px;
}

#sitemap .inner {
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#sitemap h2 {
    margin-bottom: 2em;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #0096d2;
}

#sitemap ul {
    margin-bottom: 3em;
}

#sitemap ul li {
    margin-bottom: 0.5em;
    margin-left: 1.5em;
    padding-left: 0.5em;
    list-style-type: disc;
}

#sitemap ul li::marker {
  color: #0096d2;
}

#sitemap ul li a {
    display: inline;
    font-size: 16px;
    font-weight: 500;
    color: #0096d2;
    text-decoration: none;
    text-decoration-color: rgba(0, 150, 210, 1);
    transition: all .3s ease;
}

#sitemap ul li a:hover {
    color: #eb9929;
    text-decoration-color: #eb9929;
}

#sitemap h3 {
    margin-bottom: 1em;
    font-size: 20px;
    font-weight: 700;
    color: #0096d2;
    border-bottom: 2px solid #0096d2;
    padding-bottom: 0.5em;
}


@media only screen and (max-width: 750px) {
    #sitemap {
        margin-top: 20vw;
        margin-bottom: 16vw;
        font-size: 3.6vw;
    }
    
    #sitemap h2 {
        font-size: 6.3vw;
        margin-bottom: 4vw;
    }
    
    #sitemap h3 {
        font-size: 4.8vw;
    }
    
    #sitemap ul li a {
        font-size: 3.6vw;
    }
}
