
.header .logo img { 
    max-height: 60px;
    margin-right: 8px;
    padding-right: 8px;
    border-right: 4px solid var(--accent-color);;
}

.logo_and_slogan{
    display: flex;
    flex-direction: column;
}
.slogan{
    text-align: right;
}

/* Nav whatsApp */
.whatsApp a i{
    color: #18d26e !important;
    transition: color 0.3s ease;
}

.whatsApp a:hover i {
    color: #ffffff !important;
  }

  /* The formSubmit error handling */
  .error-message {
    display: none;
  }

  /* Payment Getways for donations */
 

  .pricing-item {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 200px;
    box-shadow: 1px 3px 10px -1px rgba(0,0,0,0.75);
    padding: 20px;
    margin-bottom: 30px;
    overflow: hidden;
  }
  

/* media querries for small screens */
/* @media (max-width: 576px) { */
@media (max-width: 375px) {
  .sitename{
    font-size: 20px;
  }
  .header .logo h1 {
    font-size: 20px;
  }

  .header .logo img { 
    max-height: 40px;
    margin-right: 8px;
    padding-right: 8px;
    border-right: 4px solid var(--accent-color);;
}
.slogan{
  font-size: 10px;
  text-align: center;
}

/* The donation payment getways */
.payment-getway{
  margin-bottom: 30px;
}
}

/* For screens smaller tha 360px */
@media (max-width: 360px){

  .header .logo h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    color: var(--heading-color);
    border-left: none;
    padding-left: 2px;
}

  .header .logo img { 
    max-height: 40px;
    margin-right: 8px;
    padding-right: 8px;
    border-right: 4px solid var(--accent-color);
}
.slogan{
  font-size: 10px;
}
}


/* The preloader from chatGPT */
#preloader {
    position: fixed;
    z-index: 9999;
    background: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
  }



/* chatGPT preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* or match your site's background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  #preloader img {
    width: 100px; /* Adjust as needed */
    animation: zoomOut 1.2s ease-out forwards;
  }
  
  @keyframes zoomOut {
    0% {
      transform: scale(1.5);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  