/* Sitemap CSS */

h1.page-title__title {
	font-family: "Filson Pro";
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: 0.4px;
    color: #AC182E;
    text-align: center;
    padding: 29px 0;
}


.sitemap__container {
    background: #FCDFDB;
}

.sitemap__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 550px;
    margin: 0 auto;
    padding: 64px 69px;
}

.sitemap__section, .sitemap__section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sitemap__section ul {
    padding: 0 0 0 24px;
}

.sitemap__heading, .sitemap__subsection  {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sitemap__heading > a {
    font-family: "Filson Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px;
    color: #6D0020;
}

.sitemap__subitem > a {
    font-family: "Filson Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #333;
}

@media screen and (max-width: 992px) {

    .sitemap__wrapper {
        padding: 64px 16px;
    }

    h1.page-title__title {
        font-size: 30px;
        line-height: 34px;
        letter-spacing: 0.3px;
        padding: 33.5px 0;
    }

}