#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    justify-content: center;
    display: flex;
    background: #fff;
    z-index: 9999999;
    padding-top: 16%;
  }
  
  /* heart beat */
  .heartbeatloader {
    position: absolute;
    width: 10vmin;
    height: 10vmin;
    z-index: -2;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .svgdraw {
    top: 30%;
    left: 26%;
    position: absolute;
    width: 50%;
    height: 50%;
    color: #fff;
    transform: scale(1.4);
    z-index: 3;
  }
  
  .path {
    stroke: rgba(255, 255, 255, 0.95);
    stroke-width: 4;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
    animation: draw 1.5s infinite forwards normal linear;
    animation-delay: 0.1s;
    position: relative;
  }
  
  @keyframes draw {
    to {
      stroke-dashoffset: 0;
    }
  }
  .innercircle {
    position: absolute;
    top: 17%;
    left: 100.5%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 160%;
    height: auto;
    z-index: 1;
    opacity: 0.97;
    animation: innerbeat 1.5s infinite linear forwards;
  }
  
  .innercircle:before,
  .innercircle:after {
    position: absolute;
    content: "";
    left: 25%;
    top: 0;
    width: 25%;
    height: auto;
    padding-bottom: 40%;
    background: #00263A;
    border-radius: 50px 50px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
  }
  
  .innercircle:after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
  }
  
  @keyframes innerbeat {
    0% {
      transform: translate(-50%, -50%) scale(1.2);
    }
    10% {
      transform: translate(-50%, -50%) scale(1.2);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.3);
    }
    60% {
      transform: translate(-50%, -50%) scale(1.25);
    }
    75% {
      transform: translate(-50%, -50%) scale(1.3);
    }
  }
  .outercircle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #00263A;
    box-shadow: 0 0 30px 0px #fff;
    position: absolute;
    z-index: -1;
    opacity: 0.7;
    top: 0;
    left: 0;
    transform: scale(1.2);
    animation: outerbeat 1.5s infinite linear forwards;
  }
  
  @keyframes outerbeat {
    0% {
      transform: scale(1.2);
    }
    10% {
      transform: scale(1.2);
    }
    50% {
      transform: scale(1.3);
    }
    60% {
      transform: scale(1.25);
    }
    75% {
      transform: scale(1.3);
    }
  }