@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Open+Sans:wght@300;400&display=swap");
:root {
  --pink: #f564a9;
  --green: #0aa656;
  --rasinblack: #2d2a32;
  --richblack: #071013;
  --white: white;
  --grainbrow: #dfe0e2;
  --card_width: 250px;
  --card_border_radius: 16px;
  --row_increment: 10px;
  --card_medium: 33;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

.green {
  color: var(--green);
}

.pink {
  color: var(--pink);
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.3;
  background-color: var(--richblack);
  color: var(--grainbrow);
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--grainbrow);
}
a:hover {
  color: var(--pink);
}
a:active {
  color: var(--green);
}

img {
  width: 100%;
}

.btn {
  display: inline-block;
  margin-right: 1rem;
  font-weight: 800;
  padding: 0.8rem 2.5rem;
  border-radius: 5px;
  color: var(--grainbrow);
  cursor: pointer;
}
.btn__pink {
  background-color: var(--pink);
  border: 1px solid var(--pink);
}
.btn__pink:hover {
  background-color: transparent;
}
.btn__green {
  border: 1px solid var(--green);
  color: var(--green);
  background-color: transparent;
  text-transform: capitalize;
  font-weight: bold;
}
.btn__green:hover {
  background-color: var(--green);
  color: var(--grainbrow);
}

.bg-pink {
  background-color: var(--pink);
}

.bg-green {
  background-color: var(--green);
}

.red {
  color: rgb(136, 25, 25);
}

header .header__inner nav {
  position: fixed;
  width: 100vw;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  z-index: 2;
}
header .header__inner nav .nav__logo {
  width: 12rem;
}
header .header__inner nav .nav__logo .logo_image {
  width: inherit;
}
header .header__inner nav .nav__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header__inner nav .nav__menu .menu-btn {
  display: none;
}
header .header__inner nav .nav__menu .menu-icon {
  position: relative;
  padding: 26px 10px;
  cursor: pointer;
  z-index: 10;
  display: none;
}
header .header__inner nav .nav__menu .menu-icon__line {
  display: block;
  position: relative;
  background: var(--white);
  height: 2px;
  width: 20px;
  border-radius: 4px;
}
header .header__inner nav .nav__menu .menu-icon__line::before, header .header__inner nav .nav__menu .menu-icon__line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: var(--white);
  transition: background 0.8s ease;
}
header .header__inner nav .nav__menu .menu-icon__line::before {
  transform: translateY(-5px);
}
header .header__inner nav .nav__menu .menu-icon__line::after {
  transform: translateY(5px);
}
header .header__inner nav .nav__menu .menu_items {
  display: flex;
  justify-content: space-evenly;
  padding: 0 1rem;
}
header .header__inner nav .nav__menu .menu_items .menu_item {
  margin: 0 2rem;
}
header .header__inner div.hero {
  height: 80vh;
  display: flex;
  justify-content: flex-start;
  padding-left: 5rem;
  align-items: center;
  position: relative;
}
header .header__inner div.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: inset 0px 0px 0px var(--richblack);
}
header .header__inner div.hero__inner {
  width: 500px;
  z-index: 1;
}
header .header__inner div.hero__inner .content div.text {
  padding: 2rem 0;
}
header .header__inner div.hero__inner .content div.text h1 {
  font-size: 3rem;
  font-weight: 800;
}
header .header__inner div.hero__inner .content div.text h2 {
  font-size: 1rem;
  line-height: 2;
}
header .header__inner div.main {
  width: 100%;
  height: 600px;
  position: relative;
  margin: auto;
  /* Caption text */
  /* Fading animation */
}
header .header__inner div.main__slides {
  display: none;
  height: 100%;
}
header .header__inner div.main__slides img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 100%;
     object-position: 80% 100%;
}
header .header__inner div.main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
header .header__inner div.main__content {
  background-color: rgba(29, 28, 28, 0.8);
  color: #f2f2f2;
  padding: 1rem;
  border-radius: 1rem;
  position: absolute;
  top: 25%;
  left: 5%;
  width: 500px;
  z-index: 1;
}
header .header__inner div.main__content .content h1 {
  font-size: 3rem;
  font-weight: 800;
}
header .header__inner div.main__content .content h2 {
  font-size: 1rem;
  line-height: 2;
}
header .header__inner div.main__content .content .main_buttons {
  margin: 2rem 0 0;
}
header .header__inner div.main .fade {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
header .header__inner .scrolled {
  height: 5rem;
  background: var(--rasinblack);
  transition: 1s ease-out;
}

section .content__inner {
  width: 90%;
  margin: 2rem auto;
}
section .content__inner h3 {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 50px;
  position: relative;
}
section .content__inner h3::before {
  content: "";
  position: absolute;
  bottom: 0%;
  width: 5rem;
  height: 3px;
  background: var(--pink);
  border-radius: 20px;
}
section .content__inner .core_values {
  display: flex;
  justify-content: center;
  align-items: center;
}
section .content__inner .core_values > div {
  box-shadow: 0.01rem 0.01rem 0.2rem 0.1rem var(--rasinblack);
  margin: 1rem;
  width: 300px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section .content__inner .core_values > div > div {
  margin: 0.5rem;
}
section .content__inner .core_values > div > div.text p {
  font-size: 1rem;
  font-weight: 700;
}
section .content__inner .vision_mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  padding: 5rem 0;
  width: 100%;
}
section .content__inner .vision_mission div.mission, section .content__inner .vision_mission div.vision {
  box-shadow: 0.01rem 0.01rem 0.2rem 0.1rem var(--rasinblack);
  width: 80%;
  margin: 0 auto;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.5s ease-in;
}
section .content__inner .vision_mission div.mission:hover, section .content__inner .vision_mission div.vision:hover {
  background-color: var(--rasinblack);
}
section .content__inner .vision_mission div.mission-statement, section .content__inner .vision_mission div.vision-statement {
  line-height: 1.6rem;
}
section .content__inner .objectives {
  padding: 5rem 0;
  width: 100%;
}
section .content__inner .objectives ol {
  width: 90%;
  margin: 0 auto;
}
section .content__inner .objectives ol li {
  margin: 0 0 20px;
  font-size: 1.5rem;
}
section .content__inner .about {
  padding: 5rem 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
section .content__inner .about__image {
  border: 1px solid white;
  border-radius: 0 20% 0 20%;
  flex-basis: 40%;
  margin: 0 auto;
}
section .content__inner .about__image img {
  width: 100%;
}
section .content__inner .about__content {
  flex-basis: 50%;
  padding: 0 6rem 4rem 0;
  font-weight: 400;
}
section .content__inner .about__content .about_text {
  margin-bottom: 2.5rem;
}
section .content__inner .about__content .about_text p {
  line-height: 1.6;
  margin: 0.5rem 0;
}
section .content__inner .about__content a {
  display: inline-block;
}
section .content__inner .events__main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
section .content__inner .events__main .event {
  border: 1px solid var(--rasinblack);
  width: 500px;
  height: 300px;
  margin: 0 0.5rem;
}
section .content__inner .events__main .event__image {
  border: 1px solid var(--rasinblack);
}
section .content__inner .events__main .event__image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
section .content__inner .events__main .event__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}
section .content__inner .events__main .event__details h4 {
  color: var(--green);
}
section .content__inner .events__main .event__details i {
  color: var(--pink);
}
section .content__inner .events__button {
  text-align: right;
}
section .content__inner .volunteer {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 6rem auto;
}
section .content__inner .volunteer h3 {
  padding: 0;
  margin: 0;
  font-size: 2.5rem;
}
section .content__inner .volunteer h3::before {
  display: none;
}
section .content__inner .volunteer p {
  margin: 2rem 0 4rem;
}
section .content__inner .volunteer div.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
section .content__inner .gallery {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
}
section .content__inner .gallery__images {
  margin-bottom: 3rem;
  border: 1px solid var(--rasinblack);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
section .content__inner .gallery__images .images img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20% 20%;
     object-position: 20% 20%;
}
section .content__inner .gallery__button {
  text-align: right;
}
section .content__inner .contact {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  justify-content: space-between;
  align-items: center;
}
section .content__inner .contact__form {
  width: 100%;
}
section .content__inner .contact__form .form-item {
  width: 100%;
  margin: 0.8rem 0;
}
section .content__inner .contact__form .form-item input {
  margin-top: 0.5rem;
}
section .content__inner .contact__form .form-item input,
section .content__inner .contact__form .form-item textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  outline: none;
}
section .content__inner .contact__map {
  width: 100%;
}
section .content__inner .contact__map .mapouter {
  position: relative;
  text-align: right;
  height: 25rem;
  width: 100%;
  padding: 2rem 0 0 0;
}
section .content__inner .contact__map .mapouter .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 100%;
  width: 100%;
}
section .content__inner .contact__map .mapouter .gmap_canvas iframe {
  height: 100%;
  width: 100%;
}
section .content__inner .volunteer_form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem 0;
}
section .content__inner .volunteer_form form .form-item {
  margin: 0.8rem 0;
}
section .content__inner .volunteer_form form .form-item input,
section .content__inner .volunteer_form form .form-item textarea {
  width: 100%;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
}
section .content__inner .volunteer_form form .form-btn {
  text-align: right;
}
section .content__inner .donate {
  margin-bottom: 3rem;
  width: 100%;
}
section .content__inner .donate__card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
section .content__inner .donate__card .card-container__inner {
  width: 300px;
  height: 350px;
  border: 1px solid var(--pink);
  background-color: var(--rasinblack);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 1rem auto;
}
section .content__inner .donate__card .card-container__inner .card-head h4 {
  text-transform: uppercase;
}
section .content__inner .donate__card .card-container__inner .card-list__item {
  margin-bottom: 0.5rem;
}
section .content__inner .donate__card .card-container__inner .card-footer {
  width: 100%;
}
section .content__inner .donate__card .card-container__inner .card-footer a {
  display: block;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 3;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--rasinblack);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.gallerySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: black;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  background-color: rgba(124, 31, 31, 0.8);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

footer {
  background-color: var(--rasinblack);
  width: 100%;
}
footer .footer__inner {
  padding: 5rem 2rem;
}
footer .footer__inner h4 {
  color: var(--green);
}
footer .footer__inner .content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
footer .footer__inner .content .logo {
  width: 12rem;
}
footer .footer__inner .content .social a {
  display: inline-block;
  margin-top: 0.7rem;
}
footer .footer__inner .content .social a i {
  width: 2rem;
}
footer .footer__inner .content .useful-links .useful-link {
  margin: 0.5rem 0;
}
footer .footer__inner .content .footer_contact a {
  display: block;
}
footer .footer__inner .content .footer_contact .contact_list {
  margin: 0.5rem 0;
}
footer .copyright {
  text-align: center;
  padding: 0.3rem 0 0.5rem;
}
footer .copyright hr {
  width: 95%;
  margin: 0 auto;
  border: 1px dotted var(--richblack);
}

.eventModal {
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
  padding: 3rem 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(45, 42, 50, 0.9);
}
.eventModal__body {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 60vh;
  max-width: 1200px;
}
.eventModal__body .event-text {
  margin-bottom: 1rem;
}
.eventModal__body .event-images-video, .eventModal__body .event-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.eventModal__body .event-images-video img, .eventModal__body .event-images img {
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid green;
}
.eventModal__body .event-images-video img,
.eventModal__body .event-images-video iframe, .eventModal__body .event-images img,
.eventModal__body .event-images iframe {
  height: 100%;
  width: 100%;
}
.eventModal__body .event-btn {
  margin-top: 1rem;
}

/* The Modal (background) */
.payModal {
  display: none;
  position: fixed;
  z-index: 3;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--rasinblack);
  /* Modal Content */
}
.payModal-content {
  position: relative;
  background-color: #fefefe;
  color: var(--rasinblack);
  margin: auto;
  padding: 0.5rem;
  width: 90%;
  max-width: 1200px;
}
.payModal-content hr {
  width: 50%;
}
.payModal-content h3 {
  font-size: 2rem;
  color: var(--green);
  text-align: center;
}
.payModal-content .container {
  display: flex;
  justify-content: space-around;
}
.payModal-content .container h4 span {
  color: var(--pink);
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.countdown-wrapper {
  margin: 1rem 0 2rem;
}

.countdown {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.box {
  width: 5rem;
  height: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

@media screen and (min-width: 600px) {
  .box {
    width: 10rem;
    height: 10rem;
  }
}
.box .text {
  background-color: var(--green);
  border-radius: 0.4rem;
  display: block;
  width: 80%;
  position: relative;
  text-align: center;
  bottom: -10px;
  padding: 0.6em 0;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 0.3em;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.num {
  border: 0.1rem solid var(--white);
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0.5rem 0;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 0.4em;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 600px) {
  .box .text {
    font-size: 1rem;
  }
  .num {
    font-size: 2.5rem;
  }
}
.go-donate-btn {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.pledge-advert {
  margin: 1rem 0 2rem;
}

@media (min-width: 789px) {
  .pink-media-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
  }
}
/* Slideshow container */
.facts-container {
  max-width: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  margin: 1rem auto 2rem;
}

/* Hide the images by default */
.factSlides {
  display: none;
}

/* Next & previous buttons */
.facts-container .prev,
.facts-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Position the "next button" to the right */
.facts-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.facts-container .prev:hover,
.facts-container .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */
.facts-container .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.facts-container .active,
.facts-container .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.facts-container .fade {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.pledge-heading,
.facts-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.btn-pledge {
  display: flex;
  justify-content: end;
}

@-webkit-keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes openTop {
  0% {
    transform: translateY(-5) rotate(0deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes openTop {
  0% {
    transform: translateY(-5) rotate(0deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@-webkit-keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes openBottom {
  0% {
    transform: translateY(5) rotate(0deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes openBottom {
  0% {
    transform: translateY(5) rotate(0deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
/* Fading animation */
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 47.9375rem) {
  header .header__inner nav {
    padding: 0 1rem;
  }
  header .header__inner nav .nav__logo {
    width: 8rem;
  }
  header .header__inner nav .nav__logo .logo_image {
    width: inherit;
  }
  header .header__inner nav .nav__menu .menu-icon {
    display: block;
  }
  header .header__inner nav .nav__menu .menu_items {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    width: 100vw;
    height: 100vh;
    font-size: 1.5rem;
    padding: 3rem 0;
    background: var(--rasinblack);
    z-index: 1;
    transition: opacity 0.8s 0.5s, -webkit-clip-path 1s 0.5s;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s, -webkit-clip-path 1s 0.5s;
    -webkit-clip-path: circle(0px at top right);
            clip-path: circle(0px at top right);
  }
  header .header__inner nav .nav__menu .menu_items .menu_item {
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    text-align: center;
  }
  header .header__inner nav .nav__menu .menu_items .menu_item a {
    display: block;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu_items {
    opacity: 1;
    -webkit-clip-path: circle(100% at center);
            clip-path: circle(100% at center);
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu_items .menu_item {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu_items .menu_item:nth-of-type(1) {
    transition-delay: 0.6s;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu_items .menu_item:nth-of-type(2) {
    transition-delay: 0.7s;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu_items .menu_item:nth-of-type(3) {
    transition-delay: 0.8s;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu_items .menu_item:nth-of-type(4) {
    transition-delay: 0.9s;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu_items .menu_item:nth-of-type(5) {
    transition-delay: 1s;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    -webkit-animation: pulse 1s;
            animation: pulse 1s;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu-icon .menu-icon__line {
    -webkit-animation: openMid 0.8s forwards;
            animation: openMid 0.8s forwards;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    -webkit-animation: openTop 0.8s forwards;
            animation: openTop 0.8s forwards;
  }
  header .header__inner nav .nav__menu .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    -webkit-animation: openBottom 0.8s forwards;
            animation: openBottom 0.8s forwards;
  }
  header .header__inner div.hero__inner .content div.text {
    padding: 2rem 0;
  }
  header .header__inner div.hero__inner .content div.text h1 {
    font-size: 2rem;
    font-weight: 800;
  }
  header .header__inner div.hero__inner .content div.text h2 {
    font-size: 0.7rem;
    line-height: 2;
  }
  header .header__inner div.main {
    height: 500px;
    /* Caption text */
  }
  header .header__inner div.main__slides img {
    -o-object-position: center center;
       object-position: center center;
  }
  header .header__inner div.main__content {
    top: 30%;
    left: 3%;
    width: 300px;
  }
  header .header__inner div.main__content .content h1 {
    font-size: 2rem;
    font-weight: 800;
  }
  header .header__inner div.main__content .content h2 {
    font-size: 0.7rem;
    line-height: 2;
  }
  header .header__inner div.main__content .content .main_buttons {
    margin: 2rem 0 0;
  }
  section .content__inner h3 {
    font-size: 1.5rem;
    padding-bottom: 20px;
    margin-bottom: 25px;
    margin-top: 50px;
  }
  section .content__inner .core_values {
    flex-direction: column;
  }
  section .content__inner .about {
    padding-bottom: 0;
    flex-direction: column;
  }
  section .content__inner .about__content {
    padding: 0;
  }
  section .content__inner .objectives {
    padding: 1rem 0;
  }
  section .content__inner .objectives ol {
    width: 80%;
  }
  section .content__inner .objectives ol li {
    margin: 0 0 20px;
    font-size: 1rem;
  }
  section .content__inner .vision_mission {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }
  section .content__inner .vision_mission div.mission, section .content__inner .vision_mission div.vision {
    padding: 0 1rem 2rem;
    width: 100%;
    margin: 10px 0;
  }
  section .content__inner .events__main {
    flex-direction: column;
  }
  section .content__inner .events__main .event {
    border: 1px solid var(--white);
    width: 300px;
    height: 300px;
    margin: 1.5rem 0;
  }
  section .content__inner .volunteer h3 {
    font-size: 1.5rem;
  }
  section .content__inner .volunteer p {
    margin: 1.5rem 0 3rem;
    line-height: 1.6;
  }
  section .content__inner .gallery__images {
    grid-template-columns: 1fr;
  }
  section .content__inner .contact {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  section .content__inner .contact__form {
    width: 100%;
    margin-bottom: 2rem;
  }
  section .content__inner .contact__form .form-item {
    width: 100%;
  }
  section .content__inner .contact__map {
    width: 100%;
  }
  section .content__inner .contact__map .mapouter {
    height: 300px;
    width: 100%;
  }
  section .content__inner .donate {
    margin-bottom: 3rem;
    width: 100%;
  }
  section .content__inner .donate__card {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  }
  footer .footer__inner {
    padding: 3rem 2rem;
  }
  footer .footer__inner .content {
    flex-direction: column;
  }
  footer .footer__inner .content .logo {
    width: 12rem;
  }
  footer .footer__inner .content .social,
footer .footer__inner .content .useful-links,
footer .footer__inner .content .footer {
    margin: 2rem 0;
  }
  .btn {
    margin-right: 0.4rem;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-size: 0.7rem;
  }
  .eventModal {
    overflow: auto;
  }
  .eventModal__body .event-images-video, .eventModal__body .event-images {
    grid-template-columns: 1fr;
  }
  .eventModal__body .event-images-video img,
.eventModal__body .event-images-video iframe, .eventModal__body .event-images img,
.eventModal__body .event-images iframe {
    height: 100%;
  }
  .payModal {
    /* Modal Content */
  }
  .payModal-content h3 {
    font-size: 1rem;
    width: 95%;
    margin: 0 auto;
  }
  .payModal-content .container {
    display: flex;
    width: 95%;
    margin: 0 auto;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  header .header__inner nav {
    padding: 0 2rem;
  }
  header .header__inner nav .nav__menu .menu_items {
    padding: 0 0.5rem;
  }
  header .header__inner nav .nav__menu .menu_items .menu_item {
    margin: 0 1rem;
  }
  section .content__inner h3 {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  section .content__inner .core_values {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  section .content__inner .about__content {
    padding: 0 2rem 0 0;
    font-weight: 400;
  }
  section .content__inner .about__content .about_text {
    margin-bottom: 2.5rem;
  }
  section .content__inner .about__content .about_text p {
    line-height: 1.3rem;
    margin: 0.2rem 0;
  }
  section .content__inner .events__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  section .content__inner .events__main .event {
    width: 300px;
    height: 300px;
    margin: 1.5rem 0;
  }
  section .content__inner .donate {
    margin-bottom: 3rem;
    width: 100%;
  }
  section .content__inner .donate__card {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  footer .footer__inner {
    padding: 3rem 0 3rem 4rem;
  }
  footer .footer__inner .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  footer .footer__inner .content .social,
footer .footer__inner .content .useful-links,
footer .footer__inner .content .footer {
    margin: 2rem 0;
  }
}/*# sourceMappingURL=style.css.map */