/* Preloader Styles */
/* body {
    margin: 0;
    padding: 0;
    overflow: hidden;
  } */
  
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader {
    text-align: center;
    color: #fff;
  }
  
  .loading-circle {
    border: 4px solid #3498db; /* Loading spinner border color */
    border-top: 4px solid #f1c40f; /* Loading spinner top border color */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #3085b0;
    border-top: 5px solid #f1c40f;
    animation: spin 2s linear infinite;
  }
  
  #pre-image {
    animation: spinrev 2s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
.logo-header{
    height: 86px;
    width: 205px;
    background-color: #ffffff;
    border-radius: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .logooo {
    height: 85px;
    width: 205px;
    border-radius: 30px;
  }
  
  @keyframes spinrev {
    0% {
      transform: rotate(360deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  
  /* Style for the image inside the circle */
  .loader img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: block;
    margin: 10px auto;
  }

  