/* Google Font CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: #f1f1f1;
}

div.header h3 {
  padding: 10px;
  height: 50px;
  color: rgb(9, 80, 9);
}

/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 8px;
  background: #ccc;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 8px;
  background: rgb(9, 80, 9);
  width: 0%;
}

div.wico_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  background: rgb(237, 248, 248);
  padding: 20px;
}

div.wico_container .heading {
  font-size: xx-large;
  font-weight: bold;
  color: rgb(9, 80, 9);
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 40%;
}

div.wico_content {
  font-size: medium;
  display: inline-flex;
  flex-wrap: wrap;
  width: 40%;
}

div.all_cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: auto;
}

.flip-card {
  background-color: transparent;
  width: 302px;
  height: 302px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
  margin: 10px;
  border-radius: 20px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%; /* Safari ya dav ayaro*/
  backface-visibility: hidden;
  border-radius: 20px;
}

div.flip-card-back h3 {
  color: rgba(220, 253, 220, 0.781);
  padding: 5px;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}
.flip-card-front img {
  border-radius: 20px;
}

/* Style the back side */
.flip-card-back {
  background: rgba(63, 126, 63, 0.918);
  color: white;
  transform: rotateY(180deg);
}

.container {
  display: flex;
  justify-content: center;
  justify-items: center;
  width: 100%;
  background: rgb(237, 248, 248);
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  height: auto;
  margin-top: 10%;
}

.container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.content .left-side .details {
  margin: 14px;
  text-align: center;
}

.content .left-side .details i {
  font-size: 30px;
  color: rgb(9, 80, 9);
  margin-bottom: 10px;
}

.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

.container .content .right-side {
  width: 75%;
  margin-left: 75px;
}

.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: rgb(9, 80, 9);
}

.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.right-side .message-box {
  min-height: 110px;
}

.right-side .input-box textarea {
  padding-top: 6px;
}

.right-side .button {
  display: inline-block;
  margin-top: 18px;
}

.right-side .button input[type=button] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgb(9, 80, 9);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type=button]:hover {
  background: rgb(5, 75, 5);
}

@media (max-width: 950px) {
  .container {
    width: auto;
    padding: 30px 40px 40px 35px;
  }
  .container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}
@media (max-width: 820px) {
  .container {
    height: 100%;
  }
  .container .content {
    flex-direction: column-reverse;
  }
  .container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .container .content .left-side::before {
    display: none;
  }
  .container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}
div.head_h1 {
  text-align: center;
  padding: 20px;
}

.board_container {
  display: flex;
  justify-content: space-evenly;
}

.card {
  width: 300px;
  margin: 20px;
  background: whitesmoke;
  border-radius: 10px;
}

.card-image img {
  width: 100%;
}

.body p {
  text-align: center;
  margin: 20px;
}

.body h1 {
  text-align: center;
  margin: 20px;
  color: rgb(9, 80, 9);
}

.card-footer {
  text-align: center;
  margin: 20px;
}

div.wico_donation {
  background: linear-gradient(to left, rgba(243, 241, 241, 0.774), rgba(255, 255, 255, 0.822)), url(../images/tree2.jpg);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background-size: cover;
  backface-visibility: visible;
  background-attachment: fixed;
}

div.donation_text {
  width: 100%;
  font-size: xx-large;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(16, 48, 16, 0.89);
}

.contact_encloser {
  display: flex;
  flex-direction: column;
}

div.donation_content {
  display: flex;
  justify-content: center;
  justify-items: center;
  margin: auto;
  font-weight: bold;
  align-items: center;
  width: 50%;
  text-align: justify;
  color: rgba(16, 48, 16, 0.89);
}

div.donate_now {
  display: flex;
  width: 100%;
  justify-content: center;
}

div.donate_now a {
  background: rgb(66, 218, 66);
  padding: 10px;
  color: white;
  text-decoration: none;
}

@media (max-width: 1024px) {
  div.wico_container {
    flex-direction: column;
    background: linear-gradient(to bottom, rgb(237, 248, 248), rgba(245, 244, 244, 0.493));
  }
  div.wico_container .heading {
    font-size: 25px;
    padding: 20px;
    flex-direction: column;
    width: 100%;
  }
  .board_container {
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }
  div.wico_content {
    font-size: small;
    text-align: justify;
    justify-content: center;
    width: 80%;
  }
  div.head_h1 {
    font-size: 10px;
    margin: auto;
    padding: 20px;
  }
  .card {
    width: 90%;
  }
  div.wico_donation {
    background-position: center center;
  }
  div.donation_text {
    text-align: center;
  }
  div.donation_content {
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=News.css.map */