  * {

      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  .nav-bar {
      width: 100vw;
      height: 30px;
      box-shadow: 0px 0px 20px 15px rgb(36, 36, 36);
      /* border:1px solid red; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(45deg, rgb(228, 221, 165), rgb(45, 11, 11));
      /* position:fixed; */
  }

  .ngo-logo {
      width: 150px;
      height: 100%;
      /* border:1px solid black; */
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
      /* transition:all 6s  linear ; */
      animation: logoo 1s ease forwards;


  }

  @keyframes logoo {
      from {
          /* opacity:0; */
          transform: translateX(-100%);
      }

      to {
          /* opacity:1; */
          transform: translateX(0);

      }
  }

  .ngo-logo img {
      width: 30px;
      height: 30px;
      border-radius: 50%;


  }


  #ngo-name {
      font-family: cursive;
      font-size: 26px;
  }

  .donate-bar {
      width: 300px;
      height: 100%;
      display: flex;
      justify-content: space-around;
      align-items: center;

  }

  .donate-bar div {

      font-size: 13px;
      font-family: sans-serif;
      margin-right: 20px;

  }

  .donate-bar a {
      text-decoration: none;
      color: white;

  }

  .donate {
      background-color: rgb(34, 160, 17);
      padding: 7px;
      border-radius: 5px;
  }

  .donate:hover {
      background-color: chartreuse;
  }

  .donate-image {
      width: 100%;
      height: 450px;
      /* border:1px solid red; */
      background: linear-gradient(rgb(65, 65, 39), white);
      display: flex;
      align-items: center;
      justify-content: center;
      /* display:flex; */
      overflow: hidden;
      margin-top: 5px;
      /* box-shadow:0px 0px 5px black ; */

  }

  .swiper {
      width: 80%;
      height: fit-content;
      box-shadow: 0px 0px 10px rgb(35, 34, 34);

  }

  .swiper-slide img {
      width: 100%;
      height: 450px;


  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
      color: white;
  }

  .swiper .swiper-pagination-bullet-active {
      background: white
  }

  #about-us-page {
      width: 100vw;
      height: 700px;
      /* border:1px solid red; */
      margin-top: 30px;
      overflow: hidden;
      background-color: rgb(228, 179, 114);


  }

  .about-container {
      /* border:1px solid black; */
      width: 90%;

      display: flex;
      overflow: hidden;
      margin: auto;
      justify-content: center;
      align-items: center;
      margin-top: 28px;
      background: linear-gradient(45deg, rgb(222, 176, 59), rgb(213, 210, 210));



  }

  .about-container>.about-left {

      /* border:1px solid blue; */
      width: 60%;

      line-height: 30px;



  }

  /* @media (max-width:891px)
          {
             .about-container>.about-left{
                 line-height: 10px;
             }
          } */
  .about-container>.about-right {
      /* border:1px solid black; */
      width: 30%;
      height: 300px;
      margin: auto;
      margin-bottom: 300px;
      overflow: hidden;


  }

  .about-left h3 {
      color: black;
      font-family: sans-serif;
      font-size: 20px;
  }

  #about-us-page h2 {
      font-size: 50px;
      margin-left: 20px;
      font-family: monospace;
      color: rgb(16, 49, 16);

  }

  #about-us-page p {
      font-size: 14px
  }

  .about-right {
      border-radius: 2px;
      box-shadow: 0px 0px 10px black;
      /* transition:all 5s 1s ease;  */


  }

  .about-right:hover {
      width: 33%;
      height: 330px;
      box-shadow: 0px 0px 20px black;



  }

  @media only screen and (max-width:600px) {


      .about-container>.about-left {
          width: 90%;

          /* font-size: 3px; */
          line-height: 15px;

      }

      .about-left h3 {


          font-size: 13px;
      }

      #about-us-page h2 {
          font-size: 25px;

      }

      #about-us-page p {
          font-size: 12px
      }


  }