.sitemap_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 32px;
}

.sitemap_wrapper .sec_1 {
    flex-basis: 33.33%;
    width: 33.33%;
}

.sitemap_wrapper .sec_2 {
    flex-basis: 66.66%;
    width: 66.66%;
}
.sitemap_list ul li a,
.otherinfo ul li a,
.sitemap_list .heading{
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    
}
.sitemap_list .heading,
.sitemap_list .subhead a{
    pointer-events: none;
}
/* Sitemaplist */
.sitemap_list .subhead{
    font-size: var(--fs-12);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


hr.sitemap_divider {
    margin-top: 42px;
    margin-bottom: 42px;
}

.sitemap_list ul {
    padding: 0px 16px;
    border-left: 0.5px solid var(--Primary, #373534);
    margin-top: 16px;
    margin-bottom: 16px;
}

.sitemap_list ul li:first-child {
    padding-top: 0px;
}

.sitemap_list ul li {
    padding-top: 12px;

}

.sitemap_list ul li a {
    color: var(--color-night-black);
    text-decoration: underline;
}

.sitemap_list .subhead {
    color: var(--color-primary);
    padding-top: 16px;
    opacity: 0.6;
}

.sitemap_list_wrapper {
    display: flex;
    flex-direction: unset;
    flex-wrap: wrap;
}

.sitemap_list_wrapper .sitemap_list {
    width: 24%;
    flex-basis: 24%;
}

.sitemap {
    display: flex;
    flex-direction: row;
    margin-bottom: 77px;
}


.sitemap .sitemap_list_wrapper {
    width: 100%;
}

.sitemap .otherinfo {
    width: 20%;
}

.sitemap .otherinfo ul li {
    margin-bottom: 26px;
}

.sitemap .otherinfo ul li a {
    font-weight: 700;
}

.sitemap .otherinfo ul li a,
.sitemap a {
    color: var(--color-night-black);
}


@media (max-width: 900px) {
    .sitemap_wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .sitemap_list_wrapper .sitemap_list {
        width: 50%;
        flex-basis: 50%;
        margin-bottom: 60px;
    }
    .sitemap_wrapper .sec_1 {
        flex-basis: 100%;
        width: 100%;
    }
    
    .sitemap_wrapper .sec_2 {
        flex-basis: 100%;
        width: 100%;
    }

}


@media (max-width: 600px) {
    .sitemap {
        flex-direction: column;
        margin-top: 32px;
    }

    .sitemap_list_wrapper .sitemap_list {
        width: 100%;
        flex-basis: 100%;
    }

    .sitemap .otherinfo{
        width: 100%;
    }
    hr.sitemap_divider {
        display: none;
    }

    
}