@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;0,800;1,300;1,400&display=swap");

:root {
  --pinkish: #dd05fa8f;
  --purplish: #4f02a2;
  --transi: #d9d9d9;

  --content-width: 1000px;
  --box-shadow:0 10px 4px 0 var(--purplish);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth !important;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #333;
}

::-webkit-scrollbar-thumb {
  background: var(--transi);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purplish);
}

i {
  font-size: 1.5rem;
}

body {
  position: relative;
}

@keyframes l7 {
  to {
    background-position: left;
  }
}

/*The animations*/
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 0.7s ease-in;
}

.active.fade-left {
  animation: fade-left 0.7s ease-in;
}

.active.fade-right {
  animation: fade-right 0.7s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.loading_screen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: white;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.loading_screen.loaded {
  margin-top: -100vh;
}

.loader {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  color: #0000;
  background: linear-gradient(90deg,
      var(--purplish) calc(50% + 0.5ch),
      var(--pinkish) 0) right/calc(200% + 1ch) 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: l7 2s infinite steps(11);
}

.loader:before {
  content: "Loading...";
}

.loading_bg {
  width: 100%;
  text-align: center;
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.loading_bg.loaded {
  display: none;
}

.loader2 {
  width: 50px;
  text-align: center;
  aspect-ratio: 1;
  display: grid;
  -webkit-mask: conic-gradient(from 15deg, #0000, #000);
  animation: l26 1s infinite steps(12);
}

.loader2,
.loader2:before,
.loader2:after {
  background: radial-gradient(closest-side at 50% 12.5%, #f03355 96%, #0000) 50% 0/20% 80% repeat-y,
    radial-gradient(closest-side at 12.5% 50%, #f03355 96%, #0000) 0 50%/80% 20% repeat-x;
}

.loader2:before,
.loader2:after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}

.loader2:after {
  transform: rotate(60deg);
}

@keyframes l26 {
  100% {
    transform: rotate(1turn);
  }
}

/* @keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.block {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
} */

#header {
  width: 100%;
}

#header .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#header .part_1:nth-child(1) {
  width: var(--content-width);
  display: flex;
  justify-content: space-between;
  align-items: center;

}

#header .part_1 .logo_part {
  height: 120px;
  width: 250px;
}

#header .part_1 .logo_part img {
  width: 100%;
  height: 100%;
}

#header .part_1 .menu_part #menu {
  display: flex;
  justify-content: space-between;
}

#header .part_1 .menu_part #menu li {
  list-style-type: none;
  padding: 0 1.5rem;
  position: relative;
}

#header .part_1 .menu_part #menu li a {
  text-decoration: none;
  font-weight: 800;
  color: black;
  font-size: 18px;
  position: relative;
  transition: 0.2s ease-in-out;
}

#header .part_1 .menu_part #menu li a::after {
  content: "";
  position: absolute;
  top: 120%;
  left: 0%;
  width: 0%;
  height: 2px;
  border-radius: 10px;
  background-color: var(--purplish);
  transition: 0.2s ease-in-out;
}

#header .part_1 .menu_part #menu li.active a::after {
  width: 100%;
}

#header .part_1 .menu_part #menu li.active ul.sub_menu li a::after {
  width: 0%;
}

#header .part_1 .menu_part #menu li a:hover:after {
  right: 50%;
  width: 100%;
}

#header .part_1 .menu_part #menu li a:hover,
#header .part_1 .menu_part #menu li.active a,
#header .part_1 .menu_part #menu li ul.sub_menu li a:hover {
  color: var(--purplish);
}

#header .part_1 .menu_part #menu li ul.sub_menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  width: calc(100% + 100px);
  height: 120px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 8px 8px;
  position: absolute;
  bottom: -7.9rem;
  left: 0;
  z-index: 100;
  transition: display 0.2s ease-in-out;
}

/* #header .part_1 .menu_part #menu li.p_submenu {
  border: 1px solid red;
} */
#header .part_1 .menu_part #menu li.p_submenu:hover ul.sub_menu {
  display: flex;
}

#header .part_1 .menu_part #menu li ul.sub_menu li a,
#header .part_1 .menu_part #menu li ul.sub_menu li.active a {
  color: white;
  transition: 0.2s ease-in-out;
}

#header .hero_part {
  background: rgba(0, 0, 0, 0.2) linear-gradient(to right, var(--pinkish), var(--purplish));
  width: 100%;
  min-height: 600px;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-blend-mode: darken;
  color: white;
  padding: 10rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade 1s both;
  transition: all 0.5s linear;
}

#header .hero_part.pagers {
  min-height: 300px;
  background-image: linear-gradient(to right, var(--pinkish), var(--purplish));
}

.hero_part .container {
  width: var(--content-width);
}

.arrow-left,
.arrow-right {
  background: transparent;
  position: absolute;
  top: 40%;
  width: 4em;
  height: 4em;
  border: 1px solid var(--purplish);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  z-index: 2;
}

.arrow-left:hover,
.arrow-right:hover {
  background: var(--purplish);
  color: #fff;
}

.arrow-left {
  left: 1em;
}

.arrow-right {
  right: 1em;
}

.image-fade {
  animation: Fade 0.5s ease-in-out;
}

@keyframes Fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#header .hero_part .part_1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#header .hero_part .part_1 h1 {
  text-align: center;
  color: white;
  font-size: 18px;
  width: 50%;
  line-height: 1.8rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 1rem;
}

#header .hero_part.pagers .part_1 h1 {
  background-color: transparent;
  font-size: 3em;
  line-height: 1.2;
  width: var(--content-width);
  text-shadow: 6px 0px purple;
}

#header .hero_part.pagers .part_1 h1.activity_title{
  font-size: 3.5em;
  line-height: 1.5em;
}

#header .hero_part .part_1 button {
  margin-top: 1.5rem;
}

.btn {
  background-color: transparent;
  border: 1px solid var(--purplish);
  padding: 0.5rem 1.5rem;
  color: var(--purplish);
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0.15rem;
  transition: 0.2s ease-in-out;
}

.btn:hover,
.btn.back_btn {
  background-color: var(--purplish);
  color: white;
}

.back_btn:hover {
  background-color: transparent;
  color: var(--purplish);
}

.btn1 {
  background-color: var(--purplish);
  color: white;
}

.btn1:hover {
  background-color: transparent;
}

#header .hero_part .part_1 .btn {
  color: white;
}

#header .hero_part .part_2 {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--content-width);
}

#header .hero_part .part_2 a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  text-decoration: none transparent;
  transition: 0.2s ease-in-out;
}

#header .hero_part .part_2 a:hover {
  text-decoration: underline var(--purplish) 3px;
}

/* Section_1 */

#section_1 {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  width: var(--content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 2rem;
}

.title_part h2 {
  font-weight: 700;
  font-size: 30px;
  color: var(--purplish);
}

#section_1 .text_part {
  margin-top: 1rem;
}

#section_1 .text_part p {
  font-size: 15px;
}

#section_1 .button_part {
  margin-top: 1rem;
}

/*section_2*/

#section_2 {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  background-color: var(--pinkish);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#section_2 .container {
  width: var(--content-width);
  text-align: center;
}

#section_2 .title_part h2 {
  color: black;
}

#section_2 .box_part {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  grid-gap: 2rem;
}

.box {
  height: 250px;
  text-align: left;
  padding: 2rem;
  /* background-color: rgba(255, 255, 255, 0.4); */
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}

.box:hover {
  box-shadow: 0 10px 4px 0 var(--purplish);
}

#section_2 .box_part .box h3 {
  font-size: 20px;
  font-weight: 700;
}

#section_2 .box_part .box p {
  margin-top: 1.5rem;
  color: rgb(191, 191, 191);
  font-size: 18px;
}

#section_2 .box_part .box ul {
  margin-top: 1rem;
  width: 100%;
}

#section_2 .box_part .box ul li {
  padding: 0.5rem;
  color: rgb(230, 227, 227);
  text-align: left;
  list-style-type: none;
}

#section_2 .box_part .box i {
  font-size: 14px;
  color: rgb(191, 191, 191);
}

#section_2 .button_part {
  margin-top: 1.5rem;
}

/* section_3*/

#section_3 {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, 0.4) url("../images/slideshow/img14.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  background-blend-mode: multiply;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#section_3 .container {
  width: var(--content-width);
  text-align: center;
}

#section_3 .feed_content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
}

#section_3 .feed_content .feed_part,
#section_3 .feed_content .x-feed {
  margin-top: 2rem;
  min-height: 500px;
  width: 45%;
  background-color: rgba(0, 0, 0, 0.5);
}

#section_3 .container .title_part h2 {
  color: white;
}

/* section_4 */
#section_4 {
  margin-top: 2rem;
  padding: 1.5rem 1rem;

  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#section_4 .container {
  width: var(--content-width);
  text-align: center;
}

.custom-swiper {
  /* border: 1px solid red; */
  margin-top: 2rem;
  overflow: hidden;
}

.custom-swiper .txt_part {
  -webkit-user-select: text;
  /* Safari */
  -moz-user-select: text;
  /* Firefox */
  -ms-user-select: text;
  /* Internet Explorer/Edge */
  user-select: text;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera, and Firefox */
}

.custom-swiper .txt_part {
  position: relative;
  z-index: 10;
}

.custom-swiper .swiper-button-prev,
.custom-swiper .swiper-button-next {
  display: none;
  z-index: 5;
  margin-top: 15rem;
}

/* .custom-swiper .swiper-button-prev {
  left: 15rem;
} */
.custom-swiper [class^="swiper-button-"] {
  color: var(--purplish);
  width: 5px;
}

.custom-swiper .swiper-pagination {
  position: relative;
}

.custom-swiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--purplish);
  margin-top: 4rem !important;
}

.custom-swiper [class^="swiper-button-"]::after {
  width: 50px;
}

.swiper-container {
  padding: 1rem;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}


.activity_box {
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  background: var(--pinkish);
  color: #333;
  border-radius: 8px;

  transition: all 0.3s ease-in-out;
}

.activity_box.achievements {
  height: 100%;
  width: 100%;
}

.activity_box .img_part {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  height: 300px;
  transition: all 0.3s ease-in-out;
}

.activity_box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  transition: all 0.5s ease-in-out;
}

.activity_box img:hover {
  transform: scale(1.2);
}

.activity_box:hover {
  box-shadow: var(--box-shadow);
}

.activity_box .txt_part {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.activity_box p {
  overflow-wrap: break-word;
      font-size: 0.95rem;
}

.activity_box .txt_part p:nth-child(1) {
  font-size: small;
}

.activity_box .txt_part h3 {
  font-family: var(--header-font2);
  color: var(--main-color);
  font-size: 1.2rem;
}

/* section_5 */

#section_5 {
  margin-top: 2rem;
  padding: 1.5rem 1rem;

  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#section_5 .container {
  width: var(--content-width);
  text-align: center;
}

/* #section_5 .partners {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 2rem;
} */

.circle_logo .swiper-slide {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100px;
  width: 100px;
}

.circle_logo img {
  width: 100%;
  height: 100%;
}

/*      About Page      */

#WhoWeAre {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  grid-gap: 2rem;
  width: var(--content-width);
}

#WhoWeAre .part_1 {
  align-self: flex-start;
  width: 100%;
  position: relative;
}

#WhoWeAre h2 {
  font-weight: 700;
  font-size: 30px;
  color: var(--purplish);
}

#WhoWeAre p {
  margin-top: 0.5rem;
  line-height: 2rem;
  
}

#WhoWeAre .part_1 p {
  text-align: justify;
}
#WhoWeAre .part_1 ol.key {
  margin-top: 0.5rem;
  margin-left: 2rem;
}

#WhoWeAre .part_1 ol.key li {
  padding: 0.5rem;
}

#WhoWeAre .part_1a{
    width: 50%;
}

.about_slider {
    width: 70%;
    height: 58%;
    position: absolute;
    right: 0;
    bottom: -3%;
}

.about_slider .slide_img img {
  border-radius: 8px;
}

#WhoWeAre .part_2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.box.box2 {
  background-color: var(--pinkish);
  height: 100%;
}

.box2 h3 {
  font-weight: 800;
  color: var(--purplish);
}

#OurDonors {
  padding: 1.5rem 1rem;

  /* margin-bottom: 2rem; */
  /* min-height: 400px; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#OurDonors .container {
  width: var(--content-width);
  text-align: center;
}

#OurDonors .doners {
  margin-top: 1rem;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.doner_box {
  max-width: 200px;
  max-height: 200px;
  background-color: rgba(0, 0, 0, 0.5);
}

.doner_box img {
  width: 100%;
  height: 100%;
}

.box.box2 .arrange {
  display: flex;
  align-items: center;
  grid-gap: 2rem;
}

.box.box2 .box ol {
  margin-top: 1rem;
}

.box.box2 ol li {
  list-style-type: none;
  padding: 0.1rem 0;
  color: white;
}

#about_5 {
  margin-top: 1rem;
  padding: 1.5rem 1rem;

  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about_5 .container {
  width: var(--content-width);
  text-align: center;
}

#about_5 .box_part {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  grid-gap: 2rem;
}

#about_5 .box.box2 {
  background-color: var(--pinkish);
  height: 150px;
}

#OurAnnualReport {
  margin-top: 1rem;
  padding: 1.5rem 1rem;

  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#OurAnnualReport .container {
  width: var(--content-width);
}

#OurAnnualReport .container .title_part {
  display: flex;
  justify-content: space-evenly;
}

/*      Programmes Page      */

#programmes_1 {
  padding: 1.5rem 1rem;
}

#programmes_1 .title h2 {
  font-weight: 700;
  font-size: 30px;
  color: var(--purplish);
}

#programmes_2 .box_part {
  padding: 1.5rem 1rem;
  width: var(--content-width);
  display: flex;
  flex-direction: column;

  gap: 1rem;
}

#programmes_2 .box_part .box_p {
  background-color: var(--pinkish);
  display: flex;
  justify-content: center;
  gap: 1rem;
  height: 300px;
  border-radius: 8px;
}

#programmes_2 .box_part .box_p.even {
  flex-direction: row-reverse;
}

.box_p .img_part {
  flex-basis: 50%;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}

.box_p.even .img_part {
  border-radius: 0 8px 8px 0;
}

.box_p .img_part img {
  width: 100%;
  height: 100%;
  transition: all 0.5s linear;
}

.box_p .img_part img:hover {
  transform: scale(1.2);
}

.box_p .txt_part {
  flex-basis: 50%;
  padding: 1rem 0.5rem;
  line-height: 2rem;
  color: white;
}

.box_p .txt_part h3 {
  font-weight: 800;
  color: var(--purplish);
}

.box_p .txt_part i {
  font-size: 14px;
  color: var(--purplish);
}

.box_p .txt_part p {
  margin-top: 1rem;
}

#programmes_2 .box_part .box,
#gallery_2 .box_part .box {
  background-color: var(--pinkish);
}

/* Gallery Page */
#gallery_2 {
  /* border: 1px solid red; */
  width: var(--content-width);
  margin-bottom: 2rem;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

#gallery_2 .box_part {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.activity_box.gallery {
  height: 100%;
}

.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination a {
  color: #333;
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid #ccc;
  margin: 0 4px;
  border-radius: 4px;
}

.pagination a.active {
  background-color: var(--purplish);
  color: white;
  border: 1px solid var(--purplish);
}

/* Activity Blog Page */
#activity_1 {
  padding: 1.5rem 1rem;
  display: flex;
  width: var(--content-width);
  justify-content: space-between;
  align-items: center;
}

#activity_1 .back {

  color: var(--purplish);
  text-align: left;
}

/* #activity_1 .back h2{
  font-weight: 700;
  font-size: 30px;
} */
#activity_2 {
  /* border: 1px solid red; */
  width: var(--content-width);
  margin-bottom: 2rem;
  /* min-height: 700px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

#activity_2 .box_part {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;

}


/*     Contact Page      */

#contact_1 {
  padding: 1.5rem 1rem;
}

#contact_1 .title h2 {
  font-weight: 700;
  font-size: 30px;
  color: var(--purplish);
}

#contact_2 {
  width: var(--content-width);
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;

  grid-gap: 2rem;
}

form div {
  margin-top: 0.5rem;
}

form div input,
form div textarea {
  background-color: transparent;
  border: 1px solid var(--purplish);
  border-radius: 3px;
  padding: 0.5rem 0.4rem;
  min-width: 500px;
  transition: 0.2s ease-in-out;
}

form div textarea {
  width: 100%;
  height: 100px;
  resize: none;
}

form div input:focus,
form div textarea:focus,
form div input:valid,
form div textarea:valid {
  outline: none;
  border: 1px solid var(--pinkish);
}

#contact_2 .address {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#contact_2 .address_part {
  margin-right: auto;
  height: 57%;
  width: 100%;
}

.address ul li {
  list-style-type: none;
  padding: 0.2rem 0;
}

.social_media {
  margin-top: 2rem;
  align-self: center;
}

.social_media ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.social_media ul li a i {
  font-size: 3em;
}

#contact_2 .btn1:hover {
  color: black;
}

/* footer */

#footer {
  padding: 1.5rem 1rem;
  padding-bottom: 1rem;
  background-color: var(--pinkish);
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#footer .container,
#map_part {
  width: var(--content-width);
}

#footer .part_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#footer .part_1 div:first-child {
  flex-basis: 200px;
}

#footer .part_1 .button_part {
  flex-basis: 280px;
}

#footer .part_1 ul li {
  list-style-type: none;
  padding: 0.3rem 0;
}

hr {
  margin-top: 1rem;
  color: var(--purplish);
  /* Some browsers use this */
  background-color: var(--purplish);
  /* Works if width is set */
  height: 2px;
  border: none;
}

#footer a {
  text-decoration: none;
  color: black;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s ease-in-out;
}

#footer a:hover {
  color: var(--purplish);
}

#footer .part_2 {
  text-align: center;
}

#footer .part_2 small {
  font-size: 10px;
}

#footer .part_2 small a {
  font-size: 10px;
}

/* Donate Box */

#donate_box {
  position: fixed;
  top: 20%;
  background: white;
  padding: 2rem;
  width: 50%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-gap: 2rem;
  border-radius: 6px;
  box-shadow: 400px 1px 10px 3000px rgb(0 0 0 / 70%);
  z-index: 1000 !important;
  animation: fade 0.8s both;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#donate_box p {
  line-height: 1.5rem;
}

#donate_box .part_2 {
  width: 100%;
  display: flex;
  justify-content: center;
  grid-gap: 2rem;
}

#donate_box .box {
  background: var(--pinkish);
  width: 100%;
  height: 100px;
  padding: 1rem;
  text-align: center;
}

#donate_box .box h2 {
  font-size: 18px;
  color: var(--purplish);
}

#donate_box .box p {
  font-size: 20px;
  letter-spacing: 0.2rem;
  font-weight: 700;
}

#donate_box .box p strong {
  font-size: 2rem;

}

#donate_box .box p:nth-child(2) {
  margin-top: 1rem;
}

.menu_btn {
  display: none;
}

.close_btn {
  display: none;
}


/* Floating container */
    .social-banner {
        position: fixed;
        top: 50%;
        left: -20vw;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        z-index: 1000;
        transition: left .5s linear;
    }
    .social-banner.active{
        left: 0;
    }

    /* Social media links */
    .social-banner a {
        display: block;
        padding: 12px;
        text-align: center;
        color: white;
        font-size: 20px;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
    }

    /* Individual colors */
    .facebook { background: #3b5998; }
    .twitter { background: #1da1f2; }
    .instagram { background: #e4405f; }
    .linkedin { background: #0077b5; }
    .youtube { background: #ff0000; }
    .whatsapp { background: #25D366; }

    /* Hover effect */
    .social-banner a:hover {
        padding-left: 20px;
        opacity: 0.85;
    }
    
    
/* Media Screens */

@media (max-width: 800px) {
  :root {
    --content-width: 100%;
  }

  #header .part_1 .menu_part #menu {
    display: none;
  }

  .menu_btn {
    display: flex;
    font-size: 2rem;
    margin: 0 0.5rem 0 0;
  }

  .close_btn {
    margin: 1.5rem 0.5rem 0rem 12rem;
  }

  #header .part_1 .menu_part #menu {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -1000px;
    min-height: 100vh;
    width: 60%;
    box-shadow: 0 15px 10px 500px rgb(0 0 0 / 40%);
    z-index: 9999;
    transition: all 0.5s ease-in-out;
  }

  #header .part_1 .menu_part #menu.opened {
    right: 0;
    transition: all 0.5s ease-in-out;
  }

  #header .part_1 .menu_part #menu li {
    margin-top: 3rem;
  }

  #header .part_1 .menu_part #menu li:nth-child(1) {
    margin-top: 5.5rem;
  }

  #header .part_1 .menu_part #menu li ul.sub_menu {
    gap: 0.5rem;
    width: 100%;
    height: 120px;
    position: relative;
    bottom: -1rem;
    left: 0rem;
  }

  #header .part_1 .menu_part #menu li ul.sub_menu li {
    margin-top: 0;
    padding: 0 0.5rem;
  }

  #header .part_1 .menu_part #menu li ul.sub_menu li a {
    font-size: 16px;
  }

  .arrow-left,
  .arrow-right {
    top: 50%;
    width: 2em;
    height: 2em;
  }

  #header .hero_part .part_1 h1 {
    width: 100%;
  }

  #header .hero_part.pagers .part_1 h1 {
    font-size: 2em;
  }

  #header .hero_part .part_2 {
    flex-direction: column;
    gap: 1rem;
  }

  #section_1,
  #section_3,
  #section_3 .feed_part,
  #section_3 .feed_content .feed_part,
  #section_3 .feed_content .x-feed {
    width: 100%;
  }

  #section_3 .feed_content {
    flex-direction: column;
  }

  #section_1 .text_part p {
    text-align: center;
  }

  #section_2 .box_part {
    flex-direction: column;
  }

  #footer .part_1 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    grid-gap: 2rem;
  }

  /*   About Page   */
  
  .about_slider {
    width: 100%;
    height: 50%;
    position: relative;
    bottom: 0;
}
  #WhoWeAre,
  #OurDonors,
  #WhoWeAre .part_1 {
    width: 100%;
  }

  #WhoWeAre,
  #OurDonors .box_part {
    flex-direction: column;
    gap: 2rem;
  }

  #OurDonors .box_part .box {
    width: 100%;
  }

  #OurDonors .doners {
    flex-wrap: nowrap;
    min-height: 100px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  #OurDonor .doners::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .doner_box {
    min-width: 200px;
    min-height: 50px;
  }

  .box {
    width: 100%;
    height: 100%;
  }
  
  #donate_box .box p strong {
  font-size: 1.5rem;

}

  #about_5 .box_part {
    flex-direction: column;
  }

  #OurAnnualReport .container .title_part {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #programmes_2 .box_part .box_p {
    flex-direction: column;
    height: 100%;
  }

  #programmes_2 .box_part .box_p.even {
    flex-direction: column;
    height: 100%;
  }

  .box_p .img_part {
    border-radius: 8px;
  }

  .box_p.even .img_part {
    border-radius: 8px;
  }

  form div input,
  form div textarea {
    min-width: 100%;
  }

  #activity_1{
    flex-direction: column;
    gap: 1rem;
  }
  
  #contact_2 {
    flex-direction: column;
    width: 100%;
    grid-gap: 2rem;
  }

  .form_part {
    width: 100%;
    flex-basis: 50px;
  }

  #footer .container {
    text-align: center;
  }

  #footer .part_1 {
    width: 100%;
  }

  #footer .part_1 div:first-child {
    flex-basis: 50px;
  }

  #footer .part_1 .button_part {
    flex-basis: 50px;
  }

  #donate_box {
    position: absolute;
    top: calc(100% - 45%);
    width: 90%;

    grid-gap: 1rem;
    text-align: center;
  }

  #donate_box.init {
    position: absolute;
    top: 2%;
    width: 90%;

    grid-gap: 1rem;
    text-align: center;
  }

  #donate_box .box {
    width: 100%;
  }

  #donate_box .box p {
    font-size: 18px;
  }

  #donate_box .part_2 {
    flex-direction: column;
  }
  
   .social-banner a {
            font-size: 16px;
            padding: 10px;
        }
}