.reach-bottom {
  position: fixed;
  bottom: 0;
  transform: translate( -50%, 300px);
  left: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  transition: 300ms;
}
.reach-bottom.show {
  transform: translate( -50%, 0);
}
.reach-bottom p {
  font-size: 14px;
  z-index: 2;
  position: absolute;
  right: 50%;
  top: 16px;
  transform: translateX(53%);
  color: white;
  text-align: center;
  cursor: pointer;
}
.reach-bottom svg {
  cursor: pointer;
  position: absolute;
  right: 50%;
  top: 0;
  transform: translateX(53%);
  width: 545px;
  height: 55px;
}