.footer {
    width: 100%;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around; */
}

.footer__body {
    width: 100%;
    max-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.footer__body .company a img {
    max-width: 100%;
}

.footer__body .sitemap {
    width: auto;
    max-width: 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.2rem;
    -webkit-box-flex: 0.4;
    -ms-flex: 0.4 1 auto;
    flex: 0.4 1 auto;
}

.footer__body .sitemap__list {
    position: relative;
    width: auto;
    max-width: 20rem;
    -webkit-box-flex: 0.4;
    -ms-flex: 0.4 1 auto;
    flex: 0.4 1 auto;
    padding: 0 5px;
    border-right: none;
    white-space: nowrap;
}

.footer__body .sitemap__item {
    max-width: 16rem;
    position: relative;
}

.footer__body ul.sitemap__list:after {
    position: absolute;
    flex:0 1 0;
    width: 0;
    /* max-width:2px; */
    content: "";
    height: 118px;
    border-right: solid 2px #FFFFFF;
    top: 0px;
    right: 0px;
}

.footer__body .company {
    float: none;
    font-size: 1.0rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    max-width: 25rem;
    position: absolute;
    top:0;
    right: 0;
}

@media (max-width: 896px) {
    .footer__body .sitemap__item {
        position: unset;
    }

    .footer__body .company {
        position:unset;
    }
}



@media screen and (max-width: 559px) {
    .footer__body .sitemap {
        display: none;
    }
}