.sidebar {
  flex: 0 0 14.5625rem;
  width: 14.5625rem;
  background: white;
}
.sidebar-header {
  width: 100%;
  height: 7.5rem;
  background: #B11116;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar-header:before {
  content: "";
  position: absolute;
  width: calc(50vw - 50rem);
  height: 100%;
  right: 100%;
  top: 0;
  background: #B11116;
}
.sidebar-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
}
.sidebar-nav {
  width: 100%;
}
.sidebar-menu {
  margin: 0;
  padding: 0.625rem 0 0;
  list-style: none;
}
.sidebar-menu-item {
  border-bottom: 0.0625rem solid transparent;
}
.sidebar-menu-item a {
  display: block;
  padding: 0.75rem 0;
  font-size: var(--f8);
  font-weight: 400;
  line-height: var(--l8);
  color: #505050;
  text-decoration: none;
  transition: all 0.3s;
}
.sidebar-menu-item a:hover {
  color: #B11116;
}
.sidebar-menu-item.is-active {
  border-bottom: 0.125rem solid #B11116;
}
.sidebar-menu-item.is-active a {
  color: #B11116;
  font-weight: 500;
}

@media only screen and (max-width: 1599px) and (min-width: 1280px) {
  .sidebar {
    flex: 0 0 14.5%;
    width: 14.5%;
  }
  .sidebar-header {
    height: 5.625rem;
  }
  .sidebar-header:before {
    width: 2.5rem;
  }
  .sidebar-header h2 {
    font-size: 1.5rem;
  }
  .sidebar-menu-item a {
    padding: 0.625rem 0;
  }
  .sidebar-menu-item.is-active {
    border-bottom-width: 0.125rem;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sidebar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar {
    display: none;
  }
}