    .pace {
      pointer-events: none;
      user-select: none;
      z-index: 2000;
      position: fixed;
      margin: auto;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 400px;
      border: 0px;
      height: 1px;
      overflow: hidden;
      background: #f4f4f4;
    }

    .pace .pace-progress {
      box-sizing: border-box;
      transform: translate3d(0, 0, 0);
      max-width: 400px;
      position: fixed;
      z-index: 2000;
      display: block;
      position: absolute;
      top: 0;
      right: 100%;
      height: 100%;
      width: 100%;
      background: #707070;
    }

    .pace.pace-inactive {
      display: none;
    }

    #preloader {
      width: 100%;
      height: 100vh;
      background: #fff;
      overflow: hidden;
      position: fixed;
      transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
      z-index: 2000;
    }

    .p {
      position: absolute;
      top: 37%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #707070;
      font-size: 1.4rem;
      font-weight: 700;
      animation: jump 1.5s infinite;
      animation-duration: 2s;
    }

    @media screen and (max-width:480px) {
      .p {
        width: 80%;
        text-align: center;
      }
    }

    #preloader {
      z-index: 1000;
    }

    #preloader .p img {
      width: 70px;
      height: 70px;

    }

    /* 
    @-webkit-keyframes jump {
      0% {
        transform: translate(-30px, 0px);
      }

      50% {
        transform: translate(-30px, 30px);
      }

      100% {
        transform: translate(-30px, 0px);
      }
    } */

    #preloader .title {
      width: 70px;
      height: 70px;
      position: absolute;
      top: 42%;
      left: 50%;
      transform: translate(-50%, -50%);

    }

    #preloader .title path {
      fill: transparent;
      stroke-width: 1;
      stroke: #707070;
    }

    #preloader .title rect {
      fill: transparent;
      stroke-width: 2;
      stroke: #707070;
    }

    #preloader .title.logo path {
      stroke-dasharray: 160;
      stroke-dashoffset: 0;
      animation: animation_logo 2s linear forwards;
    }

    #preloader .title.logo rect {
      stroke-dasharray: 160;
      stroke-dashoffset: 0;
      animation: animation_logo 2s linear forwards;
    }

    @keyframes animation_logo {
      0% {
        stroke-dashoffset: 0;
      }

      40% {
        stroke-dashoffset: 160;

      }

      80% {
        stroke-dashoffset: 320;
        fill: transparent;
      }

      100% {
        stroke-dashoffset: 320;
        fill: #C1291C;
        stroke: #fff;


      }
    }