/* donate start */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    font-family: "Baloo 2", sans-serif;
    color: navy;
  
  }
  
  .modal-content {
    background-color: #18e729;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    
  }
  
  .close {
    color: #ffffff;
    position: absolute;
    right: 25px;
    font-size: 41px;
    top: 4px;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  
  .modal h2{
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 16px;
    font-weight: bolder;
  }
  
  #qrtext{
    text-align: center;
  }
  
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select {
    padding: 8px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  input[type="file"] {
    margin-top: 16px;
  }
  
  .qr{
      height: 200px;
      width: 90%;
      margin: auto;
  }
  
  input[type="submit"] {
    margin-top: 24px;
    padding: 8px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #45a049;
  }
  
  
  
  @media (max-width: 600px) {
    .modal-content {
      width: 90%;
    }
  
  }
  
  @media (max-width: 426px) {
    .modal-content {
      width: 80%;
    }
  
    .close {
      right: 9px;
    top: 6px;
    font-size: 37px;
    }
  }
  /* donate end */
  
  
  #scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #1c8ffb;
    color: white;
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
  }
  
  #scrollToTopBtn:hover {
    background-color: #ffa500;
  }




  /* navbar css */
  .navbar {
    background-color: #1b961b;
    }
    
    #logo-img {
      width: 60px;
      height: 60px;
      background-color: white;
      border-radius: 50%;
    }
    
    #logo-img:hover{
      transform: scale(1.3);
      rotate: 360deg;
      transition: all 0.7s ease-in-out 0.2s;
    }
    
    #mynavbar ul li {
      margin-right: 20px;
      white-space: nowrap;
    }
    #mynavbar ul div {
      margin-right: 0;
    }
    
    
    
    #mynavbar ul li a {
      color: white;
      font-size: 20px;
      font-weight: 500;
    }
    @media (max-width:769px) {
      #mynavbar ul li a{
        font-size: 16px;
      }
    }
    
    #mynavbar ul li a {
      position: relative;
    }
    
    #mynavbar ul li a:after {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 0%;
      content: '.';
      color: transparent;
      background: #ffeeee;
      height: 1px;
    }
    
    
    #mynavbar ul li a {
      transition: all 2s;
    }
    
    #mynavbar ul li a:after {
      text-align: left;
      content: '.';
      margin: 0;
      opacity: 0;
    }
    #mynavbar ul li a:hover {
      color: #fff;
      z-index: 1;
    }
    #mynavbar ul li a:hover:after {
      z-index: -10;
      animation: fill 1s forwards;
      -webkit-animation: fill 1s forwards;
      -moz-animation: fill 1s forwards;
      opacity: 1;
    }
    
    
    /* Keyframes */
    @-webkit-keyframes fill {
      0% {
        width: 0%;
        height: 1px;
      }
      50% {
        width: 100%;
        height: 1px;
      }
      100% {
        width: 100%;
        height: 100%;
        background: #fecc39;
      }
    }
    
        
    .navbar-text {
      color: rgb(255, 255, 255);
      font-weight: 600;
      margin: auto;
      font-size: 20px;
    }
    
    @media (max-width:400px) {
      #logo-img{
        width: 40px;
        height: 40px;
      }
      #text-ngo{
        font-size: 14px;
      }
    }
    
    #btn {
      background-color: #ffa500;;
      color: white;
      font-weight: 800;
    }