
@-webkit-keyframes SVGTX {
    0% {
      stroke-dashoffset: 2500;
      fill: transparent;
    }
    100% {
      stroke-dashoffset: 0;
      stroke-width: 1;
      fill: #fff;
    }
  }
  
  @keyframes SVGTX {
    0% {
      stroke-dashoffset: 2500;
      fill: transparent;
    }
    100% {
      stroke-dashoffset: 0;
      stroke-width: 1;
      fill: #fff;
    }
  }
  .ar-service-item-8 {
    z-index: 1;
    overflow: hidden;
    margin-bottom: 25px;
    padding: 45px 30px;
    border-radius: 6px;
    background-color: #0d0c0c;
  }
  .ar-service-item-8 .inner-icon {
    margin-bottom: 35px;
  }
  .ar-service-item-8 .inner-icon svg path {
    fill-opacity: 1;
    stroke: #afafaf;
    fill: #afafaf;
    stroke-width: 1;
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
  }
  .ar-service-item-8 .inner-text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 10px;
    text-transform: uppercase;
  }
  .ar-service-item-8 .decor {
    z-index: -1;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #000;
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .ar-service-item-8:hover .decor {
    width: 325%;
    height: 962.5px;
  }
  .ar-service-item-8:hover .inner-icon svg path {
    -webkit-animation: SVGTX 8s ease;
            animation: SVGTX 8s ease;
  }