@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background-color: white;
  box-sizing: border-box;
}

.top-bg {
  background-color: #3cb64b;
}
.top-bg .top-bg2 {
  margin-left: 1em;
}
.top-bg .top-bg2 .top-bg3 .top-bg4 {
  display: flex;
}
.top-bg .top-bg2 .top-bg3 .top-bg4 p {
  font-size: 12px;
  padding: 1em;
  color: white;
}

header {
  position: sticky;
  background-color: white;
  top: 0;
  width: 100%;
}
header .header-1 {
  margin-left: 1em;
  margin-right: 1em;
}
header .header-1 .header-2 {
  display: flex;
  justify-content: space-between;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 100%;
  align-content: center;
  align-items: center;
  /* Toggle menu icon */
}
header .header-1 .header-2 .logo {
  width: 100%;
  display: inline-block;
}
header .header-1 .header-2 .logo img {
  max-width: 200px;
}
header .header-1 .header-2 nav {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #f1f1f1;
  overflow: hidden;
  top: 0;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}
header .header-1 .header-2 nav .menu a {
  display: block;
  padding: 30px;
  color: #3cb64b;
  text-decoration: none;
}
header .header-1 .header-2 nav .menu a:hover {
  background-color: green;
}
header .header-1 .header-2 .hamb {
  cursor: pointer;
  float: right;
  padding: 40px 20px;
}
header .header-1 .header-2 .hamb-line {
  background-color: #3cb64b;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}
header .header-1 .header-2 .hamb-line::before,
header .header-1 .header-2 .hamb-line::after {
  background: #3cb64b;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
header .header-1 .header-2 .hamb-line::before {
  top: 5px;
}
header .header-1 .header-2 .hamb-line::after {
  top: -5px;
}
header .header-1 .header-2 .side-menu {
  display: none;
}
header .header-1 .header-2 .side-menu:checked ~ nav {
  max-height: 100%;
}
header .header-1 .header-2 .side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
header .header-1 .header-2 .side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
header .header-1 .header-2 .side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}
header .header-1 .header-2 .main-nav {
  width: 100%;
}
header .header-1 .header-2 .main-nav .menu {
  width: 100%;
  justify-content: right;
  float: right;
  list-style: none;
  display: flex;
  margin: auto;
}
header .header-1 .header-2 .main-nav .menu li a {
  text-decoration: none;
  color: black;
  margin-right: 20px;
}
header .header-1 .header-2 .main-nav .menu li a:hover {
  color: green;
  border-bottom: solid;
  transition: 0.05s;
}
header .header-1 .header-2 .main-nav .menu .current {
  font-weight: bold;
}
header .header-1 .header-2 .main-nav .menu .current a {
  color: #3cb64b;
  border-bottom: solid;
  transition: 0.05s;
}

.hero {
  background-image: url(/img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
}
.hero .hero-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.hero .hero-1 .hero-2 {
  padding-top: 4em;
}
.hero .hero-1 .hero-2 .hero-text {
  color: white;
}
.hero .hero-1 .hero-2 .hero-text .hero-text1 h1 {
  font-size: 6em;
  line-height: 1em;
  padding-bottom: 0.2em;
}
.hero .hero-1 .hero-2 .hero-text .hero-text1 p {
  padding-bottom: 1em;
  padding-top: 0.5em;
  width: 100%;
  font-size: 1.8em;
}
.hero .hero-1 .hero-2 .hero-text button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 3em 1em 3em;
  border-radius: 0.5em;
  cursor: pointer;
}
.hero .hero-1 .hero-2 .hero-text button a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.hero .hero-1 .hero-2 .hero-text button:hover {
  background-color: green;
}

.partners {
  background-color: #f1f1f1;
}
.partners .partner-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.partners .partner-1 .partner-2 {
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center;
}
.partners .partner-1 .partner-2 h2 {
  padding-bottom: 1em;
}
.partners .partner-1 .partner-2 .partner-img {
  width: 100%;
}
.partners .partner-1 .partner-2 .partner-img img {
  max-width: 40%;
  padding: 0.5em;
}

.about {
  padding-top: 2em;
  padding-bottom: 2em;
}
.about .about-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.about .about-1 .about-2 .about-text h2 {
  font-size: 3em;
  padding-bottom: 0.3em;
}
.about .about-1 .about-2 .about-text h2 span {
  color: #3cb64b;
}
.about .about-1 .about-2 .about-text p {
  line-height: 1.8em;
  padding-bottom: 2em;
  font-size: 15px;
}
.about .about-1 .about-2 .about-text button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 2em 1em 2em;
  border-radius: 0.5em;
  cursor: pointer;
  margin-top: 3em;
}
.about .about-1 .about-2 .about-text button a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.about .about-1 .about-2 .about-text button:hover {
  background-color: green;
}
.about .about-1 .about-2 .about-img {
  width: 100%;
  padding-top: 3em;
  padding-bottom: 4em;
}
.about .about-1 .about-2 .about-img img {
  max-width: 100%;
  border-radius: 0 0 200px 0;
}

.mission {
  padding-bottom: 3em;
}
.mission .mission-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.mission .mission-1 .mission-2 .mission-3 {
  text-align: left;
}
.mission .mission-1 .mission-2 .mission-3 .m-1 {
  background-color: #f79521;
  height: 200px;
  padding: 1em;
  max-width: 300px;
  margin: auto;
}
.mission .mission-1 .mission-2 .mission-3 .m-1 h3 {
  font-size: 1.8em;
  color: white;
  padding-bottom: 1em;
}
.mission .mission-1 .mission-2 .mission-3 .m-1 p {
  width: 80%;
  margin: auto;
  color: white;
}
.mission .mission-1 .mission-2 .mission-3 .m-2 {
  background-color: #f7bb21;
  height: 200px;
  padding: 1em;
  max-width: 300px;
  margin: auto;
}
.mission .mission-1 .mission-2 .mission-3 .m-2 h3 {
  font-size: 1.8em;
  color: white;
  padding-bottom: 1em;
}
.mission .mission-1 .mission-2 .mission-3 .m-2 p {
  width: 80%;
  margin: auto;
  color: white;
}
.mission .mission-1 .mission-2 .mission-3 .m-3 {
  background-color: #f77b21;
  height: 200px;
  padding: 1em;
  max-width: 300px;
  margin: auto;
}
.mission .mission-1 .mission-2 .mission-3 .m-3 h3 {
  font-size: 1.8em;
  color: white;
  padding-bottom: 1em;
}
.mission .mission-1 .mission-2 .mission-3 .m-3 ul {
  padding-left: 1em;
}
.mission .mission-1 .mission-2 .mission-3 .m-3 ul li {
  color: white;
  padding-bottom: 1em;
}
.mission .mission-1 .mission-2 .mission-3 .m-3 p {
  width: 80%;
  margin: auto;
  color: white;
}

.sensitize {
  background-image: url(/img/image_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 4em;
  padding-bottom: 4em;
}
.sensitize .sen-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.sensitize .sen-1 .sen-2 .s-2 {
  padding-bottom: 1em;
}
.sensitize .sen-1 .sen-2 .s-2 .s-1 {
  border: #3cb64b;
  border-style: solid;
  border-width: 1px;
  background-color: none;
  padding: 1em;
  margin: auto;
}
.sensitize .sen-1 .sen-2 .s-2 .s-1:hover {
  background-color: rgba(60, 182, 74, 0.3764705882);
}
.sensitize .sen-1 .sen-2 .s-2 .s-1 .icon {
  max-width: 100%;
  padding-top: 1em;
  padding-bottom: 0.5em;
}
.sensitize .sen-1 .sen-2 .s-2 .s-1 .icon img {
  max-width: 20%;
}
.sensitize .sen-1 .sen-2 .s-2 .s-1 h3 {
  font-size: 1.7em;
  padding-bottom: 0.5em;
}
.sensitize .sen-1 .sen-2 .s-2 .s-1 p {
  font-size: 15px;
  line-height: 1.5em;
}

.slide {
  margin-top: 2em;
  margin-bottom: 2em;
}
.slide .slide-1 {
  width: 100%;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  cursor: grab;
}
.slide .slide-1 .item {
  min-width: 350px;
}
.slide .slide-1 .item img {
  max-width: 100%;
}

.donate {
  background-color: #f1f1f1;
  padding-top: 2em;
  padding-bottom: 2em;
}
.donate .don-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.donate .don-1 .don-2 {
  text-align: center;
}
.donate .don-1 .don-2 .don-text p {
  font-size: 15px;
  padding-bottom: 2em;
}
.donate .don-1 .don-2 button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 3em 1em 3em;
  border-radius: 0.5em;
  cursor: pointer;
}
.donate .don-1 .don-2 button a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.donate .don-1 .don-2 button:hover {
  background-color: green;
}

.vid {
  margin-top: 2em;
  margin-bottom: 2em;
}
.vid .vid-1 .vid-2 .vid-3 {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}
.vid .vid-1 .vid-2 .vid-3 .vid-4 {
  width: 83%;
}
.vid .vid-1 .vid-2 .vid-3 .vid-4 iframe {
  min-width: 512px;
}

footer {
  background-color: #3cb64b;
  padding-top: 2em;
  padding-bottom: 2em;
}
footer .f-1 {
  margin-left: 1em;
  margin-right: 1em;
}
footer .f-1 .f-2 .f-3 {
  padding-bottom: 3em;
}
footer .f-1 .f-2 .f-3 .con-1 {
  color: white;
  padding-bottom: 3em;
}
footer .f-1 .f-2 .f-3 .con-1 .f-img {
  width: 100%;
  padding-bottom: 1em;
}
footer .f-1 .f-2 .f-3 .con-1 .f-img img {
  max-width: 50%;
}
footer .f-1 .f-2 .f-3 .con-1 p {
  font-size: 15px;
}
footer .f-1 .f-2 .f-3 .con-2 {
  color: white;
  padding-bottom: 2em;
}
footer .f-1 .f-2 .f-3 .con-2 h2 {
  font-size: 30px;
  padding-bottom: 0.2em;
}
footer .f-1 .f-2 .f-3 .con-2 p {
  font-size: 15px;
  padding-bottom: 1.5em;
}
footer .f-1 .f-2 .f-3 .con-2 a:hover {
  opacity: 0.5;
}
footer .f-1 .f-2 .f-3 .con-2 img {
  padding-bottom: 1em;
  padding-top: 1em;
}
footer .f-1 .f-2 .f-3 .con-2 .social-hand {
  width: 100%;
  display: flex;
  padding-top: 1em;
}
footer .f-1 .f-2 .f-3 .con-2 .social-hand a img {
  width: 40px;
  margin-right: 1em;
}
footer .f-1 .f-2 .f-3 .con-3 {
  color: white;
}
footer .f-1 .f-2 .f-3 .con-3 h2 {
  font-size: 30px;
  padding-bottom: 0.1em;
}
footer .f-1 .f-2 .f-3 .con-3 a {
  text-decoration: none;
  color: white;
  display: block;
  padding-top: 0.5em;
}
footer .f-1 .f-2 .copy {
  display: flex;
  color: white;
  justify-content: space-evenly;
}
footer .f-1 .f-2 .copy p {
  font-size: 12px;
}
footer .f-1 .f-2 .copy p a {
  text-decoration: none;
  color: black;
}

.title {
  background-image: url(/img/body-img.jpg);
  min-height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.title .t-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.title .t-1 .t-2 {
  text-align: center;
  color: white;
  padding-top: 2em;
}
.title .t-1 .t-2 h2 {
  font-size: 2em;
  padding-bottom: 0.5em;
}
.title .t-1 .t-2 p {
  font-size: 15px;
}

.prog {
  padding-top: 4em;
}
.prog .p-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.prog .p-1 .book-word {
  padding-top: 2em;
  padding-bottom: 4em;
}
.prog .p-1 .book-word p {
  font-size: 15px;
  padding-bottom: 1em;
  line-height: 1.5em;
}
.prog .p-1 .book-word p img {
  max-width: 50%;
}
.prog .p-1 .book-word button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 2em 1em 2em;
  margin-top: 2em;
  border-radius: 0.5em;
  cursor: pointer;
}
.prog .p-1 .book-word button a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.prog .p-1 .book-word button:hover {
  background-color: green;
}
.prog .p-1 .p-2 {
  padding-bottom: 2em;
}
.prog .p-1 .p-2 .p-3 {
  padding-bottom: 2em;
}
.prog .p-1 .p-2 .p-3 .p-img {
  width: 100%;
}
.prog .p-1 .p-2 .p-3 .p-img #leftbox {
  border-radius: 50px 0 0 0;
}
.prog .p-1 .p-2 .p-3 .p-img #rightbox {
  border-radius: 0 50px 0 0;
}
.prog .p-1 .p-2 .p-3 .p-img #leftbox2 {
  border-radius: 0 0 0 50px;
}
.prog .p-1 .p-2 .p-3 .p-img #rightbox2 {
  border-radius: 0 0 50px 0;
}
.prog .p-1 .p-2 .p-3 .p-img img {
  max-width: 100%;
}
.prog .p-1 .p-2 .p-3 .text {
  padding-top: 1em;
  width: 80%;
  margin: auto;
  padding-bottom: 2em;
}
.prog .p-1 .p-2 .p-3 .text h2 {
  padding-bottom: 0.5em;
}
.prog .p-1 .p-2 .p-3 .text p {
  font-size: 15px;
  line-height: 1.5em;
}
.prog .p-1 .p-2 .p-3 .text button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 2em 1em 2em;
  border-radius: 0.5em;
  cursor: pointer;
  margin-top: 2em;
}
.prog .p-1 .p-2 .p-3 .text button a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.prog .p-1 .p-2 .p-3 .text button:hover {
  background-color: green;
}
.prog .p-1 .p-2 .p-3 button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 2em 1em 2em;
  border-radius: 0.5em;
  cursor: pointer;
}
.prog .p-1 .p-2 .p-3 button a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.prog .p-1 .p-2 .p-3 button:hover {
  background-color: green;
}

.direc {
  padding: 2rem 1rem;
  background: #f9f9f9;
}

.d-1 {
  max-width: 1200px;
  margin: 0 auto;
}

.d-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.d-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1rem;
  text-align: center;
}

.my-img img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.text h4 {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 0.5rem;
}

.text p {
  font-size: 0.95rem;
  color: #333;
}

.donate {
  background-color: white;
}
.donate .donate-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.donate .donate-1 .donate-2 h1 {
  font-size: 3em;
  line-height: 1em;
  padding-bottom: 1em;
}
.donate .donate-1 .donate-2 .donate-3 .donate-text {
  padding-top: 2em;
}
.donate .donate-1 .donate-2 .donate-3 .donate-text button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 3em 1em 3em;
  border-radius: 0.5em;
  cursor: pointer;
}
.donate .donate-1 .donate-2 .donate-3 .donate-text button a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.donate .donate-1 .donate-2 .donate-3 .donate-text button:hover {
  background-color: green;
}
.donate .donate-1 .donate-2 .donate-3 .donate-text .donate-list {
  padding-bottom: 2em;
}
.donate .donate-1 .donate-2 .donate-3 .donate-text .donate-list li {
  padding-bottom: 1em;
}
.donate .donate-1 .donate-2 .donate-3 .donate-text .donate-list2 {
  padding-top: 1em;
}
.donate .donate-1 .donate-2 .donate-3 .donate-text .donate-list2 li {
  padding-bottom: 1em;
}
.donate .donate-1 .donate-2 .donate-3 p {
  font-size: 15px;
  line-height: 1.5em;
  padding-top: 1em;
}
.donate .donate-1 .donate-2 hr {
  padding: 0.1em;
  background-color: #3cb64b;
  border: none;
  margin-top: 2em;
  margin-bottom: 2em;
}
.donate .donate-1 .donate-2 .donate-4 {
  padding-top: 1.5em;
}
.donate .donate-1 .donate-2 .donate-4 .donate-5 p {
  font-size: 15px;
  line-height: 1.5em;
  padding-bottom: 1.5em;
}
.donate .donate-1 .donate-2 .donate-4 .donate-5 h3 {
  padding-bottom: 1em;
}
.donate .donate-1 .donate-2 .donate-4 .donate-5 li {
  padding-bottom: 1em;
}
.donate .donate-1 .donate-2 .videos {
  width: 100%;
  margin: auto;
  text-align: center;
  padding-top: 4em;
  padding-bottom: 4em;
}
.donate .donate-1 .donate-2 .videos iframe {
  max-width: 100%;
  margin: auto;
}

.form-container {
  padding-top: 4em;
  padding-bottom: 4em;
}
.form-container .form-1 {
  margin-left: 1em;
  margin-right: 1em;
}
.form-container .form-1 .form-2 form input {
  width: 100%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
  border: none;
  border-style: solid;
  border-width: 1px;
  border-color: #3cb64b;
  padding-left: 0.5em;
}
.form-container .form-1 .form-2 form textarea {
  width: 100%;
  height: 200px;
  border: none;
  border-style: solid;
  border-width: 1px;
  border-color: #3cb64b;
}
.form-container .form-1 .form-2 form button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 3em 1em 3em;
  border-radius: 0.5em;
  cursor: pointer;
  margin-top: 2em;
  color: white;
}
.form-container .form-1 .form-2 form button:hover {
  background-color: green;
}

.report {
  margin-left: 1em;
  margin-right: 1em;
  padding-top: 3em;
}
.report .report-2 .partner-logo {
  padding-bottom: 3em;
}
.report .report-2 .partner-logo img {
  max-width: 40%;
}
.report .report-2 .report-3 {
  padding-bottom: 2em;
}
.report .report-2 .report-3 .report-text {
  margin: auto;
}
.report .report-2 .report-3 .report-text h1 {
  padding-bottom: 1em;
  font-size: 2.5rem;
}
.report .report-2 .report-3 .report-text p {
  width: 100%;
  margin: auto;
  margin-bottom: 2em;
}
.report .report-2 .report-3 .report-text p a {
  text-decoration: none;
  color: #3cb64b;
  font-size: 1em;
}
.report .report-2 .report-3 .report-text .m-t {
  padding-top: 4em;
}
.report .report-2 .report-3 .report-text button {
  padding: 1em 2em;
  background-color: #f77b21;
  border: none;
  border-radius: 1em;
}
.report .report-2 .report-3 .report-text button a {
  color: #f1f1f1;
}
.report .report-2 .report-3 .report-text button :hover {
  color: #f7bb21;
}
.report .report-2 .report-3 .report-text h3 {
  padding-bottom: 2em;
  width: 100%;
  margin: auto;
}
.report .report-2 .report-3 .report-text ul li {
  padding-bottom: 1em;
  line-height: 1.5em;
  width: 90%;
  margin: auto;
}
.report .report-2 .form-container {
  background-color: rgb(230, 228, 228);
}
.report .report-2 .form-container form label {
  width: 100%;
  display: block;
  margin-bottom: 0.5em;
  font-size: 15px;
}
.report .report-2 .form-container form select {
  width: 100%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border: none;
  border-style: solid;
  border-color: #3cb64b;
  border-width: 0.001em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-bottom: 3em;
}
.report .report-2 .form-container form select option {
  background-color: white;
}
.report .report-2 .support2 {
  padding-top: 2em;
}
.report .report-2 .support2 .support {
  margin-top: 1em;
  margin-bottom: 4em;
}
.report .report-2 .support2 .support .support-text {
  padding-bottom: 1em;
  padding-top: 1em;
}
.report .report-2 .support2 .support .support-text a {
  text-decoration: none;
  color: #f77b21;
}

@media only screen and (min-width: 1200px) {
  .report-text {
    width: 60%;
  }
  .report-text h1 {
    padding-bottom: 1em;
    font-size: 2.5rem;
    text-align: center;
  }
  .report-text p {
    width: 100%;
    margin: auto;
    text-align: justify;
    margin-bottom: 3em;
  }
  .report-text h3 {
    text-align: center;
    padding-bottom: 2em;
    width: 100%;
    margin: auto;
  }
  .report-text ul li {
    padding-bottom: 1em;
    line-height: 1.5em;
    width: 60%;
    margin: auto;
  }
  .support2 h2 {
    width: 60%;
    text-align: center;
    margin: auto;
  }
  .support {
    display: flex;
    justify-content: space-evenly;
  }
  .support-text {
    text-align: center;
  }
  h3 {
    width: 60%;
    margin: auto;
    text-align: center;
  }
  .partner-logo {
    width: 60%;
    margin: auto;
  }
  .partner-logo img {
    padding-left: 30%;
  }
}
.thanks {
  padding-top: 4em;
  padding-bottom: 4em;
}
.thanks .thanks-1 {
  margin-left: 1em;
  margin-right: 1em;
  text-align: center;
}
.thanks .thanks-1 .thanks-2 h2 {
  padding-bottom: 1em;
}
.thanks .thanks-1 .thanks-2 button {
  background-color: #3cb64b;
  border: none;
  padding: 1em 3em 1em 3em;
  border-radius: 0.5em;
  cursor: pointer;
  margin-top: 2em;
  color: white;
}
.thanks .thanks-1 .thanks-2 button a {
  color: #f1f1f1;
  text-decoration: none;
}
.thanks .thanks-1 .thanks-2 button:hover {
  background-color: green;
}

@media only screen and (min-width: 680px) {
  .hero {
    height: 400px;
  }
  .hero .hero-1 .hero-2 {
    padding-top: 5em;
  }
  .partners .partner-1 .partner-2 .partner-img img {
    max-width: 13%;
  }
  .mission .mission-1 .mission-2 .mission-3 {
    display: flex;
  }
  .mission .mission-1 .mission-2 .mission-3 .m-1 {
    min-height: 240px;
  }
  .mission .mission-1 .mission-2 .mission-3 .m-1 p {
    width: 100%;
  }
  .mission .mission-1 .mission-2 .mission-3 .m-2 {
    min-height: 240px;
  }
  .mission .mission-1 .mission-2 .mission-3 .m-2 p {
    width: 100%;
  }
  .mission .mission-1 .mission-2 .mission-3 .m-3 {
    min-height: 240px;
  }
  .mission .mission-1 .mission-2 .mission-3 .m-3 p {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  header .header-1 .header-2 {
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
  }
  header .header-1 .header-2 .header-logo {
    width: 50%;
  }
  header .header-1 .header-2 .header-logo img {
    max-width: 270px;
  }
  .hero {
    height: 450px;
  }
  .hero .hero-1 .hero-2 .hero-text .hero-text1 {
    max-width: 70%;
  }
  .about {
    padding-top: 4em;
    padding-bottom: 4em;
  }
  .about .about-1 .about-2 {
    display: flex;
  }
  .about .about-1 .about-2 .about-text {
    width: 100%;
    padding-right: 1em;
  }
  .about .about-1 .about-2 .about-img {
    width: 50%;
    padding-top: 0;
  }
  .mission .mission-1 .mission-2 .mission-3 .m1 {
    max-height: 200px;
  }
  .sensitize .sen-1 .sen-2 {
    display: flex;
    text-align: center;
  }
  .sensitize .sen-1 .sen-2 .s-2 {
    width: 100%;
  }
  .sensitize .sen-1 .sen-2 .s-2 .s-1 {
    width: 80%;
    height: 300px;
  }
  .sensitize .sen-1 .sen-2 .s-2 .s-1 .icon {
    min-width: 100%;
  }
  .sensitize .sen-1 .sen-2 .s-2 .s-1 h3 {
    font-size: 20px;
  }
  footer .f-1 .f-2 .f-3 {
    display: flex;
    justify-content: space-between;
  }
  footer .f-1 .f-2 .f-3 .con-1 {
    width: 100%;
    padding-right: 1em;
    padding-bottom: 0;
  }
  footer .f-1 .f-2 .f-3 .con-1 p {
    font-size: 15px;
  }
  footer .f-1 .f-2 .f-3 .con-2 {
    width: 100%;
    padding-right: 1em;
    padding-bottom: 0;
  }
  footer .f-1 .f-2 .f-3 .con-3 {
    width: 100%;
  }
  .form-2 {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .form-2 .form-3 {
    width: 80%;
    padding-left: 3em;
    padding-right: 3em;
  }
  .form-2 .form-3 h1 {
    font-size: 4em;
    line-height: 1em;
    padding-bottom: 30px;
  }
  .form-2 .form-3 p {
    font-size: 25px;
    margin-bottom: 2em;
  }
  .form-2 .form-3 button {
    background-color: #3cb64b;
    border: none;
    padding: 1em 3em 1em 3em;
    border-radius: 0.5em;
    cursor: pointer;
  }
  .form-2 .form-3 button a {
    color: white;
    text-decoration: none;
    font-size: 15px;
  }
  .form-2 form {
    width: 100%;
    padding-left: 3em;
    padding-right: 3em;
    background-color: #f1f1f1;
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
@media only screen and (min-width: 1024px) {
  .form-2 {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .form-2 .form-3 {
    width: 80%;
    padding-left: 3em;
    padding-right: 3em;
  }
  .form-2 .form-3 h1 {
    font-size: 4em;
    line-height: 1em;
    padding-bottom: 30px;
  }
  .form-2 .form-3 p {
    font-size: 25px;
    margin-bottom: 2em;
  }
  .form-2 .form-3 button {
    background-color: #3cb64b;
    border: none;
    padding: 1em 3em 1em 3em;
    border-radius: 0.5em;
    cursor: pointer;
  }
  .form-2 .form-3 button a {
    color: white;
    text-decoration: none;
    font-size: 15px;
  }
  .form-2 form {
    width: 100%;
    padding-left: 3em;
    padding-right: 3em;
    background-color: #f1f1f1;
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .header-2 {
    margin: auto;
  }
}
@media only screen and (min-width: 1519px) {
  .top-bg3 {
    width: 1200px;
    margin: auto;
  }
  .header-2 {
    width: 1200px;
    margin: auto;
  }
  header .header-1 .header-2 {
    width: 1200px;
    margin: auto;
  }
  header .header-1 .header-2 .header-logo {
    width: 100%;
  }
  header .header-1 .header-2 .header-logo img {
    width: 50%;
  }
  .hero {
    height: 100vh;
  }
  .hero-2 {
    width: 1200px;
    margin: auto;
  }
  .hero-text1 {
    padding-top: 4em;
    width: 40%;
  }
  .about-2 {
    width: 1200px;
    margin: auto;
  }
  .about-2 .about-text {
    margin-right: 3em;
  }
  .mission-2 {
    width: 1200px;
    margin: auto;
  }
  .mission-2 .mission-3 {
    margin: auto;
  }
  .mission-2 .mission-3 .m-1 {
    margin: 0;
    min-width: 370px;
  }
  .mission-2 .mission-3 .m-2 {
    margin: 0;
    min-width: 370px;
  }
  .mission-2 .mission-3 .m-3 {
    margin: 0;
    min-width: 370px;
  }
  .sen-2 {
    width: 1200px;
    margin: auto;
  }
  .donate {
    height: 180px;
  }
  .donate .don-2 {
    padding-top: 2em;
    width: 50%;
    margin: auto;
  }
  .donate .don-2 .don-text p {
    line-height: 2em;
  }
  .f-3 {
    width: 1200px;
    margin: auto;
  }
  footer {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  footer .f-1 .f-2 .f-3 .con-1 {
    width: 90%;
  }
  footer .f-1 .f-2 .f-3 .con-2 {
    width: 90%;
    padding-left: 6em;
  }
  footer .f-1 .f-2 .f-3 .con-3 {
    width: 90%;
  }
  .vid-3 {
    width: 100%;
  }
  .vid-4 {
    min-width: 512px;
  }
  .vid-4 iframe {
    width: 100%;
  }
  .title .t-1 .t-2 {
    width: 1200px;
    margin: auto;
  }
  .title .t-1 .t-2 p {
    max-width: 50%;
    margin: auto;
  }
  .prog .p-1 .book-word {
    width: 1200px;
    margin: auto;
  }
  .prog .p-1 .p-2 {
    width: 1200px;
    margin: auto;
    display: flex;
  }
  .prog .p-1 .p-2 .p-3 {
    width: 100%;
  }
  #img1 {
    border-radius: 0 0 0 50px;
  }
  #img2 {
    border-radius: 0 0 50px 0;
  }
  .donate {
    height: -moz-max-content;
    height: max-content;
  }
  .donate .donate-1 .donate-2 {
    width: 1200px;
    margin: auto;
  }
  .donate-3 {
    display: flex;
    padding-bottom: 2em;
    padding-top: 2em;
  }
  .donate-3 .donate-img {
    width: 100%;
  }
  .donate-3 .donate-img img {
    max-width: 90%;
  }
  .donate-4 {
    display: flex;
  }
  .donate-4 .donate-5 {
    width: 100%;
    padding: 1em;
  }
  .form-2 {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .form-2 .form-3 {
    width: 80%;
    padding-left: 3em;
    padding-right: 3em;
  }
  .form-2 .form-3 h1 {
    font-size: 4em;
    line-height: 1em;
    padding-bottom: 30px;
  }
  .form-2 .form-3 p {
    font-size: 25px;
    margin-bottom: 2em;
  }
  .form-2 .form-3 button {
    background-color: #3cb64b;
    border: none;
    padding: 1em 3em 1em 3em;
    border-radius: 0.5em;
    cursor: pointer;
  }
  .form-2 .form-3 button a {
    color: white;
    text-decoration: none;
    font-size: 15px;
  }
  .form-2 form {
    width: 100%;
    padding-left: 3em;
    padding-right: 3em;
    background-color: #f1f1f1;
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .report-3 {
    margin: auto;
    width: 1200px;
  }
  .form-2 form {
    max-width: 50%;
    margin: auto;
  }
  .thanks-2 {
    width: 1200px;
    margin: auto;
  }
}
@media only screen and (max-width: 944px) {
  .donate-img {
    display: none;
  }
  .form-3 {
    display: none;
  }
  .form-2 {
    width: 80%;
    margin: auto;
  }
}
@media only screen and (max-width: 1140px) {
  .form-3 {
    display: none;
  }
}
@media only screen and (min-width: 1140px) {
  .title .t-1 .t-2 {
    width: 1200px;
    margin: auto;
  }
  .title .t-1 .t-2 p {
    max-width: 50%;
    margin: auto;
  }
  .prog .p-1 .p-2 {
    width: 1200px;
    margin: auto;
    display: flex;
  }
  .prog .p-1 .p-2 .p-3 {
    width: 100%;
    padding: 0.5em;
  }
  .prog .p-1 .p-2 .p-3 .text {
    width: 100%;
    margin: 0;
  }
  #img1 {
    border-radius: 0 0 0 50px;
  }
  #img2 {
    border-radius: 0 0 50px 0;
  }
  .donate {
    height: -moz-max-content;
    height: max-content;
  }
  .donate .donate-1 .donate-2 {
    width: 1200px;
    margin: auto;
  }
  .donate-3 {
    display: flex;
    padding-bottom: 2em;
    padding-top: 2em;
  }
  .donate-3 .donate-img {
    width: 100%;
  }
  .donate-3 .donate-img img {
    max-width: 90%;
  }
  .donate-4 {
    display: flex;
  }
  .donate-4 .donate-5 {
    width: 100%;
    padding: 1em;
  }
  .form-2 {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .form-2 .form-3 {
    width: 80%;
    padding-left: 3em;
    padding-right: 3em;
  }
  .form-2 .form-3 h1 {
    font-size: 4em;
    line-height: 1em;
    padding-bottom: 30px;
  }
  .form-2 .form-3 p {
    font-size: 25px;
    margin-bottom: 2em;
  }
  .form-2 .form-3 button {
    background-color: #3cb64b;
    border: none;
    padding: 1em 3em 1em 3em;
    border-radius: 0.5em;
    cursor: pointer;
  }
  .form-2 .form-3 button a {
    color: white;
    text-decoration: none;
    font-size: 15px;
  }
  .form-2 form {
    width: 100%;
    padding-left: 3em;
    padding-right: 3em;
    background-color: #f1f1f1;
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
@media only screen and (max-width: 738px) {
  .title .t-1 .t-2 {
    width: 100%;
    margin: auto;
  }
  .title .t-1 .t-2 p {
    max-width: 100%;
    margin: auto;
  }
  .prog .p-1 .p-2 {
    width: 100%;
    margin: auto;
    display: block;
  }
  .prog .p-1 .p-2 .p-3 {
    width: 100%;
    padding: 0.5em;
  }
  .prog .p-1 .p-2 .p-3 .text {
    width: 100%;
    margin: 0;
  }
  #img1 {
    border-radius: 0 0 0 50px;
  }
  #img2 {
    border-radius: 0 0 50px 0;
  }
}
@media only screen and (min-width: 904px) {
  .title .t-1 .t-2 {
    width: 80%;
    margin: auto;
  }
  .title .t-1 .t-2 p {
    max-width: 60%;
    margin: auto;
  }
  .prog .p-1 .p-2 {
    width: 80%;
    margin: auto;
    display: flex;
  }
  .prog .p-1 .p-2 .p-3 {
    width: 80%;
    padding: 0.5em;
  }
  .prog .p-1 .p-2 .p-3 .text {
    width: 90%;
    margin: 0;
  }
  #img1 {
    border-radius: 0 0 0 50px;
  }
  #img2 {
    border-radius: 0 0 50px 0;
  }
  .donate {
    height: -moz-max-content;
    height: max-content;
  }
  .donate .donate-1 .donate-2 {
    width: 100% px;
    margin: auto;
  }
  .donate-3 {
    display: flex;
    padding-bottom: 2em;
    padding-top: 2em;
  }
  .donate-3 .donate-img {
    width: 100%;
  }
  .donate-3 .donate-img img {
    max-width: 90%;
  }
  .donate-3 .donate-text {
    width: 100%;
  }
  .donate-4 {
    display: flex;
  }
  .donate-4 .donate-5 {
    width: 100%;
    padding: 1em;
  }
}
/* Responsiveness */
@media (min-width: 768px) {
  .nav {
    max-height: none;
    top: 0;
    position: relative;
    float: right;
    width: -moz-fit-content;
    width: fit-content;
  }
  .menu li {
    float: left;
  }
  .menu a:hover {
    background-color: transparent;
    color: forestgreen;
  }
  .hamb {
    display: none;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}
/* Larger screens: grid layout */
@media (min-width: 768px) {
  .d-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .d-3 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .d-2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .d-3 {
    padding: 2rem 1.5rem;
  }
  .my-img img {
    width: 140px;
    height: 140px;
  }
}
.donate-list {
  list-style: none;
}

.donate-list li strong {
  color: #3cb64b;
  font-weight: 700;
  margin-right: 0.25em;
  padding-bottom: 1em;
}

/* Tablet view */
@media (min-width: 600px) {
  .donate-list li {
    padding-bottom: 1em;
  }
}
/* Desktop view */
@media (min-width: 900px) {
  .donate-list li {
    max-width: 100%;
    margin-bottom: 0;
    padding-bottom: 1em;
  }
}/*# sourceMappingURL=main.css.map */