#loading h6{
    color: #474747;
    position: absolute;
    top:52%;
    left:45%
  }
  #loading span{
    color: #1565c0;
  }
  #loading i{
    color:black;
    font-style:normal;
    font-weight:50;
    font-size: 15px;
  }
  #loading{
    height: 100% !important;
    background-image: radial-gradient(circle farthest-corner at center, #ffffff 0%, #ffffff 100%);
  }
.loader {
    position: absolute;
    top: calc(43%);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
  }
  
  .inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;  
  }
  
  .inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid #1565c0;;
  }
  
  .inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid #1565c0;;
  }
  .inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #1565c0;
  }
  
  @keyframes rotate-one {
    0% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
  }
  
  @keyframes rotate-two {
    0% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
  }
  
  @keyframes rotate-three {
    0% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
  }

  @media  (max-width:320px){
    #loading h6{
        position: absolute;
        top:53%;
        left:28%
    }
  }
  @media (min-width:321px) and (max-width:440px){
    #loading h6{
        position: absolute;
        top:53%;
        left:28%
    }
  }
  @media (min-width:440px) and (max-width:576px){
    #loading h6{
        position: absolute;
        top:52%;
        left:32%
    }
  }
  @media (min-width:576px) and (max-width:768px){
    .loader {
        position: absolute;
        top: calc(43%);
        left: calc(40%);
    }    
    #loading h6{
        position: absolute;
        top:52%;
        left:32%
    }
  }
  @media (min-width:768px) and (max-width:992px){
    .loader {
        position: absolute;
        top: calc(43%);
        left: calc(40%);
    }    
    #loading h6{
        position: absolute;
        top:53%;
        left:32%
    }
  }
  @media (min-width:992px) and (max-width:1024px){
    .loader {
        position: absolute;
        top: calc(43%);
        left: calc(42%);
    }    
    #loading h6{
        position: absolute;
        top:53%;
        left:38%
    }
  }
  @media (min-width:1024px) and (max-width:1100px){
    .loader {
        position: absolute;
        top: calc(43%);
        left: calc(43.2%);
    }    
    #loading h6{
        position: absolute;
        top:53%;
        left:40%
    }
  }

