html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #666666;
  line-height: 1.6;
  overflow-x: hidden;
}

figcaption {
  margin: 6px 0 0 0;
  text-align: center;
  line-height: 1.1;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  z-index: 9999;
}

#loader_line {
  width: 0;
  height: 100%;
  margin: auto;
  background-color: rgba(121, 150, 62, 0.4509803922);
  animation: moveLoader 0.4s linear infinite;
}

@keyframes moveLoader {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.display_block {
  display: block;
}

.text_center {
  text-align: center;
}

.display_grid {
  display: grid;
  gap: 1rem;
}
.display_grid.auto1 {
  grid-template-columns: auto;
}
.display_grid.auto2 {
  grid-template-columns: auto auto;
}
.display_grid.auto3 {
  grid-template-columns: auto auto auto;
}
.display_grid.auto4 {
  grid-template-columns: auto auto auto auto;
}
.display_grid.auto5 {
  grid-template-columns: auto auto auto auto auto;
}
.display_grid.auto6 {
  grid-template-columns: auto auto auto auto auto auto;
}
.display_grid.auto7 {
  grid-template-columns: auto auto auto auto auto auto auto;
}
.display_grid.auto8 {
  grid-template-columns: auto auto auto auto auto auto auto auto;
}
.display_grid.c1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.display_grid.c2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.display_grid.c3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.display_grid.c4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.display_grid.c5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.display_grid.c6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.display_grid.c7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.display_grid.c8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.display_grid.auto_auto {
  grid-template-columns: auto auto;
}
.display_grid.auto_auto_auto {
  grid-template-columns: auto auto auto;
}
.display_grid.auto_auto_auto_auto {
  grid-template-columns: auto auto auto auto;
}
.display_grid.auto_auto_auto_auto_auto {
  grid-template-columns: auto auto auto auto auto;
}
@media (max-width: 768px) {
  .display_grid {
    gap: 0.6rem;
  }
  .display_grid.auto_auto_auto {
    grid-template-columns: auto auto;
  }
  .display_grid.auto_auto_auto_auto {
    grid-template-columns: auto auto auto;
  }
  .display_grid.auto_auto_auto_auto_auto {
    grid-template-columns: auto auto auto;
  }
}
@media (max-width: 480px) {
  .display_grid.auto_auto {
    grid-template-columns: auto;
  }
  .display_grid.auto_auto_auto {
    grid-template-columns: auto;
  }
  .display_grid.auto_auto_auto_auto {
    grid-template-columns: auto;
  }
  .display_grid.auto_auto_auto_auto_auto {
    grid-template-columns: auto auto;
  }
}

.display_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.display_flex.center_center {
  justify-content: center;
}
.display_flex.left_center {
  justify-content: left;
}
.display_flex.text_align_left {
  text-align: left;
}
.display_flex.right_center {
  justify-content: right;
}
.display_flex.text_align_right {
  text-align: right;
}
.display_flex.top_right {
  justify-content: right;
}
.display_flex.center_top {
  justify-content: center;
  align-items: start;
}
.display_flex.center_bottom {
  justify-content: center;
  align-items: bottom;
}
.display_flex.left_top {
  justify-content: left;
  align-items: start;
}
.display_flex.left_bottom {
  justify-content: left;
  align-items: bottom;
}
.display_flex.right_top {
  justify-content: right;
  align-items: start;
}
.display_flex.right_bottom {
  justify-content: right;
  align-items: end;
}

.gap0 {
  gap: 0;
}

.gap01 {
  gap: 0.1rem;
}

.gap02 {
  gap: 0.2rem;
}

.gap03 {
  gap: 0.3rem;
}

.gap04 {
  gap: 0.4rem;
}

.gap05 {
  gap: 0.5rem;
}

.gap06 {
  gap: 0.6rem;
}

.gap07 {
  gap: 0.7rem;
}

.gap08 {
  gap: 0.8rem;
}

.gap1 {
  gap: 1rem;
}

.gap15 {
  gap: 1.5rem;
}

.gap2 {
  gap: 2rem;
}

.gap25 {
  gap: 2.5rem;
}

.gap3 {
  gap: 3rem;
}

.gap35 {
  gap: 3.5rem;
}

.gap4 {
  gap: 4rem;
}

.gap45 {
  gap: 4.5rem;
}

.gap5 {
  gap: 5rem;
}

.column_gap0 {
  grid-column-gap: 0;
}

.column_gap01 {
  grid-column-gap: 0.1rem;
}

.column_gap02 {
  grid-column-gap: 0.2rem;
}

.column_gap03 {
  grid-column-gap: 0.3rem;
}

.column_gap04 {
  grid-column-gap: 0.4rem;
}

.column_gap05 {
  grid-column-gap: 0.5rem;
}

.column_gap06 {
  grid-column-gap: 0.6rem;
}

.column_gap07 {
  grid-column-gap: 0.7rem;
}

.column_gap08 {
  grid-column-gap: 0.8rem;
}

.column_gap1 {
  grid-column-gap: 1rem;
}

.column_gap15 {
  grid-column-gap: 1.5rem;
}

.column_gap2 {
  grid-column-gap: 2rem;
}

.column_gap25 {
  grid-column-gap: 2.5rem;
}

.column_gap3 {
  grid-column-gap: 3rem;
}

.column_gap35 {
  grid-column-gap: 3.5rem;
}

.column_gap4 {
  grid-column-gap: 4rem;
}

.column_gap45 {
  grid-column-gap: 4.5rem;
}

.column_gap5 {
  grid-column-gap: 5rem;
}

.row_gap0 {
  grid-row-gap: 0;
}

.row_gap01 {
  grid-row-gap: 0.1rem;
}

.row_gap02 {
  grid-row-gap: 0.2rem;
}

.row_gap03 {
  grid-row-gap: 0.3rem;
}

.row_gap04 {
  grid-row-gap: 0.4rem;
}

.row_gap05 {
  grid-row-gap: 0.5rem;
}

.row_gap06 {
  grid-row-gap: 0.6rem;
}

.row_gap07 {
  grid-row-gap: 0.7rem;
}

.row_gap08 {
  grid-row-gap: 0.8rem;
}

.row_gap1 {
  grid-row-gap: 1rem;
}

.row_gap15 {
  grid-row-gap: 1.5rem;
}

.row_gap2 {
  grid-row-gap: 2rem;
}

.row_gap25 {
  grid-row-gap: 2.5rem;
}

.row_gap3 {
  grid-row-gap: 3rem;
}

.row_gap35 {
  grid-row-gap: 3.5rem;
}

.row_gap4 {
  grid-row-gap: 4rem;
}

.row_gap45 {
  grid-row-gap: 4.5rem;
}

.row_gap5 {
  grid-row-gap: 5rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.section_padding {
  padding: 60px 15px;
}
.section_padding.big {
  padding: 80px 15px;
}
.section_padding.big_bottom {
  padding: 40px 15px 80px 15px;
}
.section_padding.bigger {
  padding: 120px 15px;
}
.section_padding.bigger_bottom {
  padding: 80px 15px 120px 15px;
}
.section_padding.much_bigger {
  padding: 150px 15px;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
}
.btn.primary {
  background: #78933d;
  color: #ffffff;
}
.btn.primary:hover {
  background: #de7f27;
  border-color: #de7f27;
}
.btn.outline {
  border: 1px solid #95b94c;
  color: #78933d;
}
.btn.outline:hover {
  background: #de7f27;
  border-color: #de7f27;
  color: #ffffff;
}
.btn.bigger {
  padding: 18px 30px;
}
.btn.with_icon svg {
  display: inline;
  width: 20px;
  margin: 0 3px 0 0;
  vertical-align: -6px;
  fill: #ffffff;
}

.form_input {
  padding: 15px;
  border: 1px solid #eaeaea;
}
.form_input:focus {
  border-color: #95b94c;
}
.form_input.flex {
  flex: 1;
}
.form_input.textarea {
  height: 150px;
}

.tagline {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #78933d;
}

.section_title {
  font-size: 32px;
  color: #222222;
  margin-bottom: 26px;
  font-weight: 700;
  color: #666666;
}
.section_title.bigger_bottom {
  margin-bottom: 50px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  position: relative;
  width: 100%;
  padding: 6px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(34, 34, 34, 0.05);
  z-index: 10;
  transition: 0.3s;
}
.nav.transparent {
  position: absolute;
  background: rgba(209, 209, 209, 0.03);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #ffffff;
}
.nav.transparent .menu .lang_switcher .wrapper_lang_switcher .lang_dropdown .one_lang .text {
  color: #666666;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .logo {
  font-size: 24px;
  font-weight: 800;
}
.nav .logo span {
  color: #78933d;
}
.nav .logo a img {
  height: 50px;
}
.nav .menu {
  display: flex;
  gap: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.nav .menu a:hover {
  color: #78933d;
}
.nav .menu .active {
  position: relative;
  color: #78933d;
}
.nav .menu .active::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(120, 147, 61, 0.231372549);
  bottom: -20px;
}
.nav .btn {
  padding: 10px 20px;
}

.mobile_nav {
  display: none;
}

.lang_switcher {
  position: relative;
  display: inline-block;
  margin: 0 0 0 4px;
}
.lang_switcher .wrapper_lang_switcher {
  position: relative;
}
.lang_switcher .wrapper_lang_switcher .selected_language {
  margin: 2.88px 0 0 0;
  padding: 2px;
  cursor: pointer;
  gap: 6.4px;
  display: grid;
  grid-template-columns: 1.134em auto;
}
.lang_switcher .wrapper_lang_switcher .selected_language .flag img {
  width: 100%;
}
.lang_switcher .wrapper_lang_switcher .selected_language .text {
  color: #aaa;
}
.lang_switcher .wrapper_lang_switcher .selected_language .text .dropdown_arrow svg {
  width: 1.25rem;
  fill: #aaa;
  transform: rotate(90deg);
}
.lang_switcher .wrapper_lang_switcher .lang_dropdown {
  position: absolute;
  top: 100%;
  left: -0.5rem;
  width: 120px;
  padding: 5px;
  background: #fff;
  border: 1px solid #f4f4f4;
  box-shadow: 0rem 10px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.lang_switcher .wrapper_lang_switcher .lang_dropdown .one_lang {
  padding: 3px 4px 3px 8px;
  display: grid;
  gap: 6.4px;
  grid-template-columns: 18px auto;
  cursor: pointer;
}
.lang_switcher .wrapper_lang_switcher .lang_dropdown .one_lang:hover {
  background: #f4f4f4;
}
.lang_switcher .wrapper_lang_switcher .lang_dropdown .one_lang .flag img {
  width: 100%;
}
.lang_switcher .wrapper_lang_switcher .lang_dropdown .one_lang .text {
  font-size: 13px;
}

.feedback_popup {
  position: relative;
  width: 100%;
  margin: 20px 0 0 0;
  z-index: 5;
}
.feedback_popup .wrapper_feedback {
  position: relative;
  padding: 10px 30px 15px 10px;
  background: #13972f;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}
.feedback_popup .wrapper_feedback.warning {
  background: #de7f27;
}
.feedback_popup .wrapper_feedback.warning .close_btn_popup {
  background: #de7f27;
}
.feedback_popup .wrapper_feedback.error {
  background: #b93333;
}
.feedback_popup .wrapper_feedback.error .close_btn_popup {
  background: #b93333;
}

.close_btn_popup {
  position: absolute;
  top: 2px;
  right: 2px;
  margin-right: 0;
  width: 28px;
  height: 28px;
  padding: 0px;
  background: #13972f;
  cursor: pointer;
  z-index: 21;
}
.close_btn_popup svg {
  width: 100%;
  fill: #eee;
}
.close_btn_popup:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}
.close_btn_popup:hover svg {
  fill: #de7f27;
}
.close_btn_popup.white {
  background: #fff;
  /* box-shadow: -0px 8px 10px rgba(0, 0, 0, .05); */
}
.close_btn_popup.white svg {
  fill: #bbb;
}
.close_btn_popup.white:hover {
  background: #78933d;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}
.close_btn_popup.white:hover svg {
  fill: #fff;
}

.hero {
  height: 720px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../media/images/home-small-gred-drc.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.hero h1 {
  font-size: 48px;
  margin: 20px 0 40px 0;
  font-weight: 800;
  line-height: 1.4;
}
.hero h1 span {
  font-size: 40px;
}
.hero .video_link {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pillars_grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -60px;
  z-index: 10;
}
.pillars_grid .pillar_box {
  background: #ffffff;
  padding: 30px 40px 45px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.pillars_grid .pillar_box .num {
  font-size: 40px;
  font-weight: 800;
  color: #78933d;
  opacity: 0.3;
}
.pillars_grid .pillar_box h2 {
  margin: 16px 0;
  font-size: 18px;
  text-transform: uppercase;
}

.feature_overlap {
  display: flex;
  gap: 60px;
  align-items: center;
}
.feature_overlap .images {
  flex: 1;
  position: relative;
}
.feature_overlap .images .img_2 {
  position: absolute;
  bottom: -30px;
  left: -30px;
  border: 10px solid #ffffff;
  width: 60%;
}
.feature_overlap .images.limited_height img {
  width: 100%;
  max-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature_overlap .content {
  flex: 1;
}

.checklist {
  margin: 0 0 10px 0;
}
.checklist svg {
  width: 20px;
  fill: #666666;
  vertical-align: -5px;
}

.cta_video_bg {
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../../media/images/donate-gred-drc.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0%;
  background-attachment: fixed;
  text-align: center;
  color: #ffffff;
}
.cta_video_bg .play_btn {
  font-size: 60px;
}
.cta_video_bg .play_btn svg {
  width: 100px;
  fill: #78933d;
}

.logos_bar {
  display: flex;
  justify-content: space-between;
  opacity: 0.5;
  filter: grayscale(100%);
  padding: 40px 0;
}

.services_grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
.services_grid .s_card {
  overflow: hidden;
  background: #fafafa;
  border: 1px solid #f0f0f0;
}
.services_grid .s_card img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  cursor: pointer;
}
.services_grid .s_card .inner {
  padding: 30px;
}
.services_grid .s_card .inner h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.services_grid .s_card .inner .btn {
  margin: 20px 0 0 0;
  padding: 5px 15px;
  font-size: 14px;
}

.testimonials {
  background: #f4f4f4;
  text-align: center;
}
.testimonials .t_grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}
.testimonials .t_grid .t_box {
  background: #fff;
  padding: 30px 20px 30px 20px;
}
.testimonials .t_grid .t_box .icon svg {
  width: 60px;
  fill: #78933d;
}
.testimonials .t_grid .t_box h4 {
  padding: 0 0 10px 0;
  font-size: 30px;
  color: #666666;
}
.testimonials .t_grid .t_box p {
  font-style: italic;
  font-size: 20px;
}

.map_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.map_section .info {
  background: #f4f4f4;
  padding: 80px 100px;
}
.map_section iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 400px;
}

footer {
  background: #181818;
  background: linear-gradient(rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.91)), url("../../media/images/contact-gred-drc.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0 30px;
  font-size: 14px;
  color: #888;
}
footer .f_grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}
footer .f_grid a:hover {
  color: #de7f27;
}
footer h4 {
  margin-bottom: 25px;
  font-size: 20px;
  color: #ffffff;
}
footer li {
  margin-bottom: 10px;
}
footer .socials {
  display: flex;
  gap: 20px;
  font-size: 18px;
}
footer .socials .one_social {
  cursor: pointer;
}
footer .socials .one_social:hover svg {
  fill: #78933d;
}
footer .socials .one_social svg {
  width: 40px;
  fill: #f4f4f4;
}
footer .copyright_credit {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #222;
}
footer .copyright_credit a {
  color: #78933d;
}
footer .copyright_credit a:hover {
  color: #de7f27;
}

.donation_hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../../media/images/home-gred-drc.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 40%;
  padding: 80px 0;
  text-align: center;
}
.donation_hero h1 {
  font-size: 40px;
  line-height: 1.2;
  color: white;
}
.donation_hero p {
  max-width: 700px;
  margin: 20px auto 0 auto;
  color: #ffffff;
}

.donation_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .donation_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.payment_methods .method_item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.payment_methods .method_item:last-child {
  border-bottom: none;
}
.payment_methods .method_item .icon {
  font-size: 30px;
  color: #78933d;
  min-width: 30px;
}
.payment_methods .method_item .icon svg {
  width: 30px;
  fill: #78933d;
}
.payment_methods .method_item h4 {
  color: #222222;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 16px;
}
.payment_methods .method_item p {
  font-size: 16px;
  margin-bottom: 5px;
}

.pledge_form_container {
  padding: 40px;
  background: #fafafa;
  border: 1px solid #eee;
}
.pledge_form_container .pledge_form .form_group {
  margin-bottom: 20px;
}
.pledge_form_container .pledge_form .form_group label {
  display: block;
  margin-bottom: 8px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222222;
}
.pledge_form_container .pledge_form .form_group input, .pledge_form_container .pledge_form .form_group select, .pledge_form_container .pledge_form .form_group textarea {
  width: 100%;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 14px;
}
.pledge_form_container .pledge_form .form_group input:focus, .pledge_form_container .pledge_form .form_group select:focus, .pledge_form_container .pledge_form .form_group textarea:focus {
  border-color: #78933d;
  outline: none;
}
.pledge_form_container .pledge_form .form_group textarea {
  height: 100px;
  resize: vertical;
}
.pledge_form_container .pledge_form .form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.nothing_to_show {
  padding: 100px 20px;
  text-align: center;
}
.nothing_to_show h1 {
  font-size: 45px;
}
.nothing_to_show p {
  margin: 20px 0 40px 0;
  font-size: 20px;
}

.gray_bg {
  background: #f4f4f4;
}

.boxed {
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
}
.boxed.p_top_20 {
  padding: 20px 10px;
}
.boxed.p_top_40 {
  padding: 40px 10px;
}

.gallery .one_image img {
  display: block;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.paragraph {
  padding: 0 20px 30px 20px;
  font-size: 18px;
}
.paragraph.big_padding {
  padding: 80px 20px 30px 20px;
}

.details_grid .one_detail_grid {
  padding: 30px 40px;
  background: #fafafa;
}
.details_grid .one_detail_grid .number_icon {
  font-size: 40px;
  font-weight: 600;
  color: #78933d;
}
.details_grid .one_detail_grid .text {
  margin: 10px 0;
  font-size: 18px;
}

.expected_impact {
  position: relative;
  font-size: 22px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0%;
  background-attachment: fixed;
  line-height: 2;
  color: #ffffff;
}
.expected_impact .wrapper {
  padding: 60px 20px 70px 20px;
  position: relative;
  z-index: 2;
}
.expected_impact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .pillars_grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }
  .services_grid, .testimonials .t_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map_section .info {
    padding: 60px;
  }
}
@media (max-width: 768px) {
  .section_padding {
    padding: 40px 15px;
  }
  .section_padding.big {
    padding: 60px 15px;
  }
  .section_padding.bigger {
    padding: 80px 15px;
  }
  .nav .menu {
    display: none;
    gap: 15px;
  }
  .mobile_nav {
    position: fixed;
    display: flex;
    justify-content: space-around;
    bottom: 0;
    width: 100%;
    padding: 5px 0 0 0;
    background: #ffffff;
    height: 65px;
    font-size: 14px;
    z-index: 1000;
  }
  .mobile_nav .active {
    font-weight: 600;
    color: #78933d;
  }
  .mobile_nav .active .icon svg {
    fill: #78933d;
  }
  .mobile_nav .icon svg {
    display: block;
    width: 25px;
    margin: auto;
    fill: #666666;
  }
  .hero {
    height: auto;
    padding: 180px 0 120px 0;
  }
  .hero h1 {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .pillars_grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .pillars_grid .pillar_box {
    padding: 30px;
  }
  .feature_overlap {
    flex-direction: column;
    gap: 30px;
  }
  .feature_overlap .images {
    width: 100%;
  }
  .feature_overlap .images .img_2 {
    position: relative;
    left: 0;
    bottom: 0;
    margin: -40px auto 0;
    width: 70%;
  }
  .services_grid, .testimonials .t_grid {
    grid-template-columns: 1fr;
  }
  .map_section {
    grid-template-columns: 1fr;
  }
  .map_section .info {
    padding: 40px 20px;
  }
  .map_section iframe {
    height: 350px;
  }
  .donation_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer .f_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 180px 20px 80px 20px;
  }
  .hero h1 {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .bigger_bottom {
    padding: 60px 15px 100px 15px !important;
  }
  .section_title {
    font-size: 26px;
  }
  .nav .btn {
    width: unset !important;
    padding: 8px 20px !important;
  }
  .hero_btns a {
    margin: 0 0 20px 0;
  }
  .pledge_form_container {
    padding: 25px 20px;
  }
  .pledge_form_container .pledge_form .form_row {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 60px 0 120px 0;
  }
  footer .f_grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer .socials {
    justify-content: space-around;
  }
  footer .copyright_credit {
    margin-top: 40px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */