body {
  margin: 0;
  padding: 0;
}


/* loader 2 css start  */


.site_loader {
  background-color: rgb(201 0 0 / 79%) !important;
  height: 100vh !important;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site_loader h1 {
    position: relative;
    color: hsla(0,0%,100%,.3);
    font: 900 800% Baskerville, sans-serif;	
    margin:0;
  }
  .site_loader h1:before {
    content: attr(data-content);
    position: absolute;
    overflow: hidden;
    max-width: 4em;
    color: white;
    animation: loading 1s linear infinite;
  }


  @keyframes loading {
    from { max-width: 0; }
  }
  
  /* loader 2 css end */


/* loader 3 css start */


.site-loader-2 {
  background-color:rgb(252 177 52 / 79%) !important;
  height:100vh;
  position: absolute;
  width: 100%;
}
.site-loader-2 h1 {font-size:80px}

.site-loader-2 h1 {
  font-family: 'Montserrat', sans-serif;;
  font-weight: bold;
  cursor: default;
  position: absolute;
  color:#fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  margin: auto;
  display: block;
  text-align: center;
}
 
.site-loader-2 h1 span {
  position: relative;
  top: 0px;
  display: inline-block;
  -webkit-animation: bounce 0.3s ease infinite alternate;
  font-size: 80px;
  color: #fff;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #ccc, 0 3px 0 #ccc, 0 4px 0 #ccc,
    0 5px 0 #ccc, 0 6px 0 transparent, 0 7px 0 transparent, 0 8px 0 transparent,
    0 9px 0 transparent, 0 10px 10px rgba(0, 0, 0, 0.4);
}

.site-loader-2 h1 span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
}

.site-loader-2 h1 span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
}


@-webkit-keyframes bounce {
  100% {
    top: -20px;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #ccc, 0 3px 0 #ccc, 0 4px 0 #ccc,
      0 5px 0 #ccc, 0 6px 0 #ccc, 0 7px 0 #ccc, 0 8px 0 #ccc, 0 9px 0 #ccc,
      0 50px 25px rgba(0, 0, 0, 0.2);
  }
}


/* loader 3 css end */


  

#splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
}

#splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-spinner {
  animation: rotate 2s linear infinite;
  margin-left: calc(100vw - 100%);
  width: 50px;
  height: 50px;
}

.splash-spinner .path {
  stroke: #5d78ff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}




