/* Nav Link Scroll */
html {
    scroll-behavior: smooth;
  }
  /* Nav Link Scroll */
  
  /* Body */
  body {
    font-family: 'Urbanist', sans-serif;
  }
  /* End Body */
  
  /* Button Back To Top */
  .up-btn {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
    opacity: 0.7;
    background: #333;
    cursor: pointer;
    position: fixed;
    z-index: 2000;
    transition: all 0.4s ease-in-out;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    border-radius: 4px;
  }
  
  .up-btn.up-btn__hide {
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
  }
  
  .up-btn:hover {
    opacity: 1;
  }
  
  .up-btn.up-btn_circle {
    border-radius: 50%;
  }
  
  .up-btn__img {
    width: 100%;
    max-width: 100%;
  }
  /* End Button Back To Top */
  