.sitemap-menu-container {
    margin-top: 100px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sitemap-menu-wrap {
    position: relative;
    width: 50%;
    padding-left: 110px;
    color: #616161;
    margin-bottom: 170px;
    min-height: 135px;
}

.sitemap-menu-wrap::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 70px;
    height: 100%;
    background: #E4E4E4;
}

.sitemap-menu-wrap:hover::before {
    background: #B7F64F;
}

.sitemap-menu-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    pointer-events: none;
}

.sitemap-menu-wrap.company::after {
    left: 27px;
    background-image: url('/img/sitemap_company.png');
    width: 73px;
    height: 73px;
}

.sitemap-menu-wrap.review::after {
    left: 27px;
    background-image: url('/img/sitemap_review.png');
    width: 73px;
    height: 73px;
}

.sitemap-menu-wrap.bus::after {
    left: 0;
    background-image: url('/img/sitemap_bus.png');
    width: 70px;
    height: 76px;
}

.sitemap-menu-wrap.estimate::after {
    left: 27px;
    background-image: url('/img/sitemap_estimate.png');
    width: 73px;
    height: 73px;
}

.sitemap-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.sitemap-menu {
    padding: 0;
    font-size: 1.25rem;
}

.sitemap-menu li {
    margin-bottom: .8rem;
}

@media (max-width: 768px) {
    .wrapper {
        max-width: 100%;
        margin: 0 auto 50px;
    }

    .sitemap-menu-container {
        margin-top: 50px;
        padding: 0 1rem;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .sitemap-menu-wrap {
        width: 100%;
        padding-left: 90px;
        margin-bottom: 50px;
        min-height: 135px;
    }

    .sitemap-menu-wrap:last-of-type {
        margin-bottom: 20px;
    }

    .sitemap-title {
        font-size: 1.5rem;
    }

    .sitemap-menu {
        margin-bottom: 0;
        font-size: 1rem;
    }

    .sitemap-menu li:last-child {
        margin-bottom: .2rem;
    }
}