@media screen and (max-width: 1024px) {
  .scroll-to-top {
    display: none !important;
    overflow: hidden;
  }
}

@media screen and (min-width: 1025px) {
  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #09404982;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: block; /* Hide the button by default */
    z-index: 1000;
  }

  .scroll-to-top:hover {
    background-color: #094149;
  }
}
