.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 70px;
  width: 55px;
  height: 55px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  border-radius: 50%;
  border: none;
  background: none;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-10px);
}
.scroll-to-top circle {
  fill: #2563eb;
}
.scroll-to-top:hover circle {
  fill: #1235a6;
}

.scroll-to-top path {
  fill: #ffffff;
}
.scroll-to-top:hover path {
  fill: #ffffff;
}
@media (max-width: 767px) {
  .scroll-to-top {
    right: 15px;
    bottom: 15px;
    width: 35px;
    height: 35px;
  }
}
