* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #1d1c1b;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
a {
  font-family: 'Noto Kufi Arabic', sans-serif;
}

.Img {
  text-align: center;
  margin-top: 150px;
}

.Img img {
  width: 300px;
  max-width: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 0 0.75rem rgb(20, 67, 220));
}

.textAbout {
  margin-top: 50px;
  text-align: center;
}

.textAbout h1 {
  color: white;
  text-align: center;
  font-size: 50px;
  margin-top: 10px;
}

.textAbout p {
  text-align: center;
  color: white;
  font-size: 20px;
  margin-top: 10px;
}

.textAbout a {
  color: #ff0000;
}

hr {
  margin: 30px auto;
  width: 50%;
  max-width: 100%;
}

.textDon {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 30px;
}

.textDon h2 {
  color: white;
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
}

.textDon p {
  color: white;
  text-align: center;
  font-size: 20px;
  padding: 0 20px;
}

.textDon a {
  color: #00eeff;
}

form {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 100px;
}

header {
  min-height: 50vh;
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), #1d1c1b), url(/assets/img/About/About-Hero.jpg); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top;
  background-size: cover;
}

.contA {
  width: 50%;
  max-width: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  user-select: none;
}

.rowA {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 30px;
  margin: auto;
}

.cardA {
  padding: 10px 20px;
  position: relative;
  text-align: center;
  background-color: #23272A;
  border-radius: 10px;
  overflow: hidden;
}

.cardA img {
  width: 100px;
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, .25)) drop-shadow(0px 2px 4px rgba(0, 0, 0, .35));
  pointer-events: none;
}

.cardA h2 {
  color: white;
}

@media only screen and (max-width: 1500px) {
  .contA {
    width: 60%;
  }

  .cardA img {
    width: 60px;
  }

  .cardA h2 {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 1300px) {
  .cardA h2 {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 1100px) {
  .contA {
    width: 60%;
  }

  .rowA {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 10px;
  }

  .cardA img {
    width: 60px;
  }

  .cardA h2 {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 900px) {
  .rowA {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 10px;
  }
}

@media only screen and (max-width: 600px) {
  .contA {
    width: 60%;
  }

  .rowA {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 10px;
  }

  .cardA img {
    width: 100px;
  }

  .cardA h2 {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 400px) {
  .contA {
    width: 80%;
  }

  .cardA h2 {
    font-size: 1rem;
  }
}

.Donate {
  display: flex;
  justify-content: center;
  align-items: center;
}