.home-sidebar {
  position: fixed;
  z-index: 2;
  right: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: end;
  padding-right: 40px;
}
.home-sidebar > a {
  --svg-width: 18px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  clip-path: polygon(calc(100% - var(--svg-width)) 0%, calc(100% - var(--svg-width)) 100%, 100% 100%, 100% 0%);
  transition: clip-path 0.3s;
}
.home-sidebar > a > p {
  color: var(--color-secondary-1);
  flex-shrink: 0;
}
.home-sidebar > a > svg {
  flex-shrink: 0;
  transform: translateY(-2px);
}
.home-sidebar > a > svg > * {
  transition: fill 0.3s, opacity 0.3s;
}
.home-sidebar > a:hover > svg > .back, .home-sidebar > a.active > svg > .back {
  opacity: 0.2;
}
.home-sidebar > a:hover > svg > .front, .home-sidebar > a.active > svg > .front {
  fill: white;
}
.home-sidebar > a.active {
  clip-path: polygon(0 0%, 0 100%, 100% 100%, 100% 0%);
}

@media screen and (width < 768px) {
  .home-sidebar {
    padding-right: 12px;
  }
}