.path-frontpage{
    display:none;
}
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Background color */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
  }
  
  #loading-content {
    width:80%;
    text-align: center;
  }

  div#loading-img img {
    width: 100%;
    max-width: 350px;
  }
  
  #loading-bar {
    width: 0;
    height: 5px;
    background-color: #50487F; /* Change the color as needed */
    margin-top: 20px;
    animation: loading 3s linear forwards; /* Add animation */
  }
  
  @keyframes loading {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  
  #location-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999998;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splash-container {
  text-align: center;
}

.splash-logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.splash-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.splash-btn {
  padding: 12px 24px;
  background-color: #50487F;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.splash-btn-2 {
  padding: 12px 24px;
  background-color: #f0680d;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .splash-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .splash-btn,
  .splash-btn-2 {
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-sizing: border-box;
  }
}

  