.scroll-up-1 {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 25px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    transition: all 0.4s ease-in-out;
  }

  .scroll-up-1::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f176";
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    color:#A6A182;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 0.4s ease-in-out;
  }

  .scroll-up-1 svg path {
    fill: none;
  }

  .scroll-up-1 svg.scroll-circle path {
    stroke: #A6A182;
    stroke-width: 4px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
  }

  .scroll-up-1.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
