.sidebar {
    padding: 2rem 4rem;
    background-color: #fff;
}

.sidebar h2,
.sidebar ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #333;
}

.sidebar h2 {
    font-weight: 600;
    margin: 0;
}

.sidebar ul li a {
    font-weight: 400;
    text-decoration: none;
    outline: none;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 350ms cubic-bezier(.25,.8,.25,1);
}

.sidebar ul li a:hover {
    content: '';
    background: url('../images/pointer-hover.png');
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: 2.85rem;
    overflow-x: hidden;
    white-space: nowrap;
}

.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar ul li {
    display: flex;
    justify-content: space-between;
}

.sidebar h2,
.sidebar ul li {
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    min-height: 5rem;
}

.sidebar h2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #383838;
}

.sidebar ul li:before,
.sidebar ul li:last-child:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #383838;
}

.sidebar ul li:last-child:after {
    bottom: 0;
}

.sidebar ul li:before {
    top: 0;
}

@media only screen and (max-width: 960px) {
    .sidebar {
        padding: 5rem 1.5rem;
    }
}