#preloader {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: #ffffff;
      color: #134520;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 9999;
      transition: opacity 0.5s ease, visibility 0.5s;
    }

    #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .company-name {
      font-size: 25px;
      font-weight: bold;
	  font-family: Verdana, sans-serif;
      margin-bottom: 5px;
      letter-spacing: 1px;
    }
.employee {
      font-size: 15px;
	  font-family: Verdana, sans-serif;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }
    .loading-bar {
      position: relative;
      width: 1090px;
      height: 5px;
      background: #fff;
      border-radius: 5px;
      overflow: hidden;
    }

    .loading-bar::after {
      content: '';
      position: absolute;
      height: 100%;
      width: 0;
      background: #134520;
      animation: load 3s ease-in-out infinite;
    }

    @keyframes load {
      0% { width: 0%; left: 0; }
      50% { width: 100%; left: 0; }
      100% { width: 0%; left: 100%; }
    }