.fixed-btn {
  display: flex;
  align-items: center;
  text-align: center;
  position: fixed;
  z-index: 100;
  width: 7rem;
  height: 7rem;
  right: 1rem;
  top: calc(85vh - 2rem);
  border-radius: 50%;
  background-color: rgba(var(--accent-color), 0.90);
  color: var(--color-white);
  box-shadow: 0 -10px 25px 0 rgba(0, 0, 0, 0.10), 0 -5px 10px 0 rgba(0, 0, 0, 0.08), 0 20px 25px 0 rgba(0, 0, 0, 0.10), 0 10px 10px 0 rgba(0, 0, 0, 0.08);
  margin-left: auto;
  
  @media (width >= 1024px) {
    right: calc((100vw - 1160px) / 2);
  }
}