/* code here */
.back-arrow-wrap {
  position: fixed;
  right: 40px;
  bottom: 15%;
  width: 40px;
  height: 40px;
  background: #7A7A7A;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 98;
  opacity: 0;
  transform: translateY(10px);
  transition: all 300ms ease-in-out;
  
}
.show-scroll-top{
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .back-arrow-wrap {
    right:25px;
  }
}