/* ====================== Scroll Top ====================== */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1305d4;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  z-index: 100;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover{
  background: #ffffff;
  color: #1305d4;
  transform: scale(1.2);
}

#scrollTopBtn.show {
  display: block;
}
