.ismv3-intro-banner {
    background-image: url(../../images/banners/Sitemap.webp);
    background-position: center;
    background-size: cover;
    height: 25vh;
}

.ism-sitemap__info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
}

.ism-sitemap__info_head {
    /* border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--dark-blue); */
    padding: 0.75rem 0;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-weight: 550;
    font-size: 1.25rem;
    width: fit-content;
}

.ism-sitemap__info_content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
}

.ism-sitemap__info_item {
    position: relative;
    color: var(--dark-text);
    display: block;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .ism-sitemap__info_item:after {
        content: "\f0b2";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0px;
        top: 0px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
