/* Common style area */
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap");

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  transition: 0.5s;
}

.main {
  max-width: 1180px;
  margin: 0 auto;
}

.donate-btn {
  border: none;
  padding: 20px 16px;
  background-color: #ff5959;
  border-radius: 5px;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  transition: 0.5s;
  border: 2px solid #ff5959;
}
.donate-btn:hover {
  transition: 0.5s;
  background-color: transparent;
  color: #ff5959;
}
/* Banner section  */
.header {
  background-repeat: no-repeat;
  background-position: center;
  height: 1000px;
  padding: 175px 0;

  background: linear-gradient(
      rgba(18, 18, 18, 0),
      rgba(7, 0, 0, 0.5),
      rgb(0, 0, 0)
    ),
    url("../images/donation3.jpg");

  background-size: cover;
  margin-bottom: 130px;
}

.banner {
  text-align: center;
  align-content: center;
}

.banner-title {
  color: white;
  font-size: 4rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.banner-details {
  color: white;
  font-size: 1.2rem;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* donate today section */

.donate-today {
  text-align: center;
  margin-bottom: 130px;
}

.donate-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.donate-details {
  font-size: 1.2rem;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 50px;
  color: #707070;
}

.donate-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
}

.donate-box {
  font-size: 2rem;
  padding: 45px 25px;
  box-shadow: 1px 1px 10px #eeeeee;
  border-radius: 5px;
  color: #707070;
  font-weight: 700;
  background-color: #fafafa;
  transition: 0.5s;
  border: 2px solid #fafafa;
}

.donate-box:hover {
  border: 2px solid #ff5959;
  background-color: #ffeeee;
  color: #ff5959;
}

.donate-amount {
  font-size: 1.2rem;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #dadada;
  padding-bottom: 10px;
  width: 50%;
  margin-bottom: 20px;
  text-align: center;
}
input:focus {
  outline: none;
}

input::placeholder {
  color: #b3b3b3;
}

/* donation plan section */
.donation-plan {
  margin-bottom: 100px;
}
.donate-texts {
  text-align: center;
}
.donate-plan-title {
  font-size: 3rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 20px;
}
.donate-plan-details {
  font-size: 1.2rem;
  color: #707070;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.plan-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.plan-box-1,
.plan-box-2,
.plan-box-3 {
  align-content: center;
  padding: 60px 25px;
  height: 360px;
  width: 350px;
  border-radius: 5px;
  background-color: rgba(79, 157, 166, 0.1);
}
.plan-box-2 {
  background-color: rgba(255, 89, 89, 0.1);
}
.plan-box-3 {
  background-color: rgba(255, 244, 214, 1);
}

.box-title {
  margin: 30px 0px 18px 0;
}
.box-details {
  line-height: 25px;
}
/* contribution section */

.contribution-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  gap: 80px;
}
.contribute-texts {
  text-align: left;
  width: 60%;
}
.contribute-title {
  font-size: 3rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 20px;
}
.contribute-details {
  font-size: 1.2rem;
  color: #707070;
  line-height: 30px;
  margin-bottom: 50px;
}
.contribute-img > img {
  height: 450px;
  width: 90%;
  border-radius: 10px;
}
/* get updates section */

.get-updates {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.get-title {
  font-size: 3rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 20px;
}

.get-details {
  font-size: 1.2rem;
  color: #707070;
  margin-bottom: 50px;
}

.mail-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff4d6;
  border-radius: 5px;
  height: 200px;
  width: 100%;
  padding: 70px 180px;
}
.subscribe-btn {
  border-radius: 0px 5px 5px 0px;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 40px;
  border: 1px solid #ff5959;
}
.subscribe-btn:hover {
  background-color: #c9c9c9;
}
.mail {
  font-size: 1rem;
  height: 48px;
  padding: 14px 16px;
  border: none;
  border-radius: 5px 0px 0px 5px;
  background-color: #c9c9c9;
}
.mail::placeholder {
  color: white;
}
/* footer section */

.footer {
  height: 180px;
  background-color: #0b0d17;
  padding: 40px;
  text-align: center;
}

.footer-title {
  color: #ff5959;
}
.footer-details {
  color: #d8d8d8;
}
