/******************** preloader ******************/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white-color);
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .preloader h1 {
    font-family: var(--heading-font); }
  .preloader .preload-progress {
    width: 250px;
    height: 8px;
    border-radius: 30px; }
    .preloader .preload-progress span {
      width: 100%;
      height: 100%;
      display: inline-block;
      border-radius: 30px;
      background-color: var(--primary-color);
      -webkit-animation: 6s loading;
      animation: 6s loading; }
