@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

/* Scroll button styling */
.scroll-up-btn {
    position: fixed;
    height: 50px;
    width: 47px;
    /* background: crimson; */
    background: var(--orange);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    z-index: 999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .scroll-up-btn.show {
    opacity: 1;
    pointer-events: auto;
    bottom: 30px;
  }
  
  /* Fade In & Fade Out Elements on Scroll Start */
  .fadein {
    opacity: 0.5;
  }
  .showme {
    transition: opacity 0.1s ease;
    opacity: 1 !important;
  }