::before,
::after {
  box-sizing: border-box;
  margin: 0;
}
* {
  font-family: "Poppins", sans-serif;
}
body {
  margin: 0;
  overflow-x: hidden; /* Hide horizontal scrollbar */
}

.loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: #000000;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.disappear {
  animation: vanish 1s forwards;
}
@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* donate background */
.donate-bg {
  background-image: url(/assets/images/donate-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: grid;
  place-items: center;
  height: 80vh;
  position: relative;
}
.donate-bg > * {
  text-align: center;
  font-weight: 600;
  font-size: 3.5rem;
  color: #fff;
  position: relative;
  padding-inline: 5%;
  z-index: 2;
}
.donate-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.donate-bg span {
  display: block;
  text-align: center;
  color: #15a2d7;
  font-weight: 600;
  font-size: 2rem;
}
/* .donate-header {
  font-weight: 700;
  font-size: 7rem;
  color: #15A2D7;
  text-align: center;
} */
.donate-bg p {
  font-weight: 700;
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.2rem;
}

.donate-form-container {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  place-items: top;
  width: 50%;
  margin: auto;
  padding-block: 2rem;
  gap: 2rem;
}
.donate-wrap {
  background-color: #fbfbf9;
}
.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
h2 {
  text-align: center;
  font-size: 2rem;
}
h3 {
  font-weight: 700;
  font-size: 2rem;
}
.donate-text {
  text-align: center;
}
.contact-details {
  width: 100%;
}
.contact-details p {
  font-weight: 600;
}
.contact-details img {
  width: 100%;
}

.contact-form {
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  margin-bottom: 2rem;
  width: 100%;
  padding-block: 1rem;
  outline: none;
  border: none;
  background: transparent;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
  border-radius: 0.3rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  padding-left: 0.5rem;
}
.contact-form label {
  font-size: 1.2rem;
  font-weight: 600;
}

.address-container,
.phone-container,
.email-container {
  text-align: center;
  margin-block-end: 2rem;
}
#send-btn {
  background-color: whitesmoke;
  padding-block: 0.8rem;
  font-weight: 600;
  font-size: 1rem;
  color: #15a2d7;
  border: 2px solid #15a2d7;
  cursor: pointer;
  transition: 200ms ease-out;
}
#send-btn:hover {
  background-color: #15a2d7;
  color: white;
}

#message {
  padding-bottom: 10rem;
}

.brand,
.about-header,
.reach {
  font-size: 1.5rem;
  font-weight: 600;
}

.brand,
.about-header,
.reach {
  color: #15a2d7;
}
@media (max-width: 1200px) {
  .donate-cont {
    padding-block: 3rem;
  }

  .donate-bg p {
    font-size: 2rem;
  }
  .donate-cont span {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .donate-form-container {
    grid-template-columns: 1fr;
    width: 90%;
  }
}
