@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-family: "Roboto", sans-serif;
}

* a {
  text-decoration: none;
  text-transform: capitalize;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 100;
}

* li {
  list-style: none;
  font-weight: 100;
}

* section {
  width: 100%;
  padding: 3.5rem 4rem;
}

@media (max-width: 400px) {
  * section {
    padding: 2rem;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 100%;
}

h1,
h2,
h3,
h4 {
  color: rgba(21, 21, 22, 0.9333333333);
}

h1 {
  padding: 0 0 2rem;
  font-size: 3vw;
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

p {
  font-size: 1rem;
  color: #121212;
  padding: 1rem 0;
  line-height: 22px;
}

button,
a,
li,
i,
span {
  cursor: pointer;
  transition: 0.4s;
}

li {
  font-weight: 500;
}

.btn {
  width: 170px;
  height: 45px;
  border: none;
  background: rgba(26, 186, 235, 0.8588235294);
  color: #ffffff;
  transition: 0.5s;
  margin: 2rem 0.3rem;
  text-transform: uppercase;
  border-radius: 3px;
}

.btn_yellow {
  background: #eaea31;
  color: #121212;
}

button:hover {
  border: 1px solid rgba(26, 186, 235, 0.8588235294);
  background: none;
  color: #121212;
}

.btn_yellow:hover {
  border: 1px solid #eaea31;
  background: none;
  color: #ffffff !important;
}

.inner {
  margin-top: 2rem;
}

.flex_box {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

#more {
  display: none;
}

.donate,
.joinUs {
  position: fixed;
  right: 0;
  top: 40%;
  width: 150px;
  height: 45px;
  text-align: center;
  background-color: rgb(172, 24, 73);
  text-shadow: 0 1px 2px #121212;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
  border-radius: 0.2rem;
  letter-spacing: 5px;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 12px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  -webkit-animation: move 0.9s ease-in-out forwards;
          animation: move 0.9s ease-in-out forwards;
  z-index: 1000;
}
@media (max-width: 767px) {
  .donate,
.joinUs {
    width: 120px;
    height: 40px;
    padding-top: 1.2rem;
  }
}
@media (max-width: 460px) {
  .donate,
.joinUs {
    width: 100px;
    height: 35px;
    font-size: 1.2rem;
  }
}

.joinUs {
  top: 52%;
  background-color: rgb(78, 28, 125);
}
@media (max-width: 360px) {
  .joinUs {
    top: 47%;
  }
}

@-webkit-keyframes move {
  from {
    right: -20%;
  }
  to {
    right: 0;
  }
}

@keyframes move {
  from {
    right: -20%;
  }
  to {
    right: 0;
  }
}
.joinUs {
  -webkit-animation: mymove 1.1s ease-in-out forwards;
          animation: mymove 1.1s ease-in-out forwards;
}

@-webkit-keyframes mymove {
  from {
    right: -20%;
  }
  to {
    right: 0;
  }
}

@keyframes mymove {
  from {
    right: -20%;
  }
  to {
    right: 0;
  }
}
.donate:hover,
.joinUs:hover {
  letter-spacing: 2px;
  background-color: rgba(89, 151, 187, 0.4941176471);
}

#home {
  z-index: 99;
  background: linear-gradient(rgba(7, 3, 19, 0.308), rgba(3, 1, 10, 0.327)), url(../img/6.jpg) no-repeat scroll center top;
  background-size: cover;
  padding: 27% 0%;
  margin-top: -135px;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  #home {
    background-position: center;
  }
}
#home .text_area {
  flex-direction: column;
  position: relative;
  width: 64%;
  margin: 0 auto;
  margin-top: -5px;
  text-align: center;
}
@media (max-width: 1000px) {
  #home .text_area {
    margin-top: 40px;
  }
}
#home .text_area span {
  color: #eaea31;
  font-size: 2rem;
  text-transform: uppercase;
  text-shadow: 0px 6px 2px rgb(16, 15, 15);
  text-align: center;
}
#home .text_area h1 {
  font-size: 2.8rem;
  color: #ffffff;
  padding: 1.5rem 1.5rem 1rem;
}
#home .text_area p {
  color: #ffffff;
}
#home .text_area .btn {
  width: 110px;
  background: none;
  justify-content: center;
  border-bottom: 0.5px solid #eaea31;
  font-weight: bold;
  transition: 0.5s;
}
#home .text_area .btn:hover {
  color: #ffffff;
  width: 180px;
  letter-spacing: 3px;
  border: 0.5px solid #eaea31;
  color: rgba(26, 186, 235, 0.8588235294);
}

#introduction {
  text-align: center;
  background-color: rgba(28, 28, 28, 0);
  background: none;
}
@media (max-width: 1000px) {
  #introduction {
    padding: 2rem 1rem;
  }
}
#introduction .inner {
  text-align: left;
  align-items: flex-start;
}
#introduction .inner h3 {
  font-size: 1.5rem;
  color: #14212d;
}
#introduction .inner p {
  font-size: 1rem;
}
#introduction .inner .introduction_left {
  width: 62%;
  overflow: hidden;
  flex-direction: column;
  /*responsive*/
}
@media (max-width: 1000px) {
  #introduction .inner .introduction_left {
    width: 75%;
  }
}
@media (max-width: 850px) {
  #introduction .inner .introduction_left {
    width: 100%;
  }
}
#introduction .inner .introduction_left .box_g {
  position: relative;
}
#introduction .inner .introduction_left .box_g .img_box {
  width: 100%;
  cursor: pointer;
  transition: 0.2s;
}
#introduction .inner .introduction_left .box_g .img_box img {
  width: 100%;
}
#introduction .inner .introduction_left .box_g .para {
  position: absolute;
  bottom: 0;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.709);
  padding: 1.5rem;
}
@media (max-width: 600px) {
  #introduction .inner .introduction_left .box_g .para {
    padding: 0.7rem 1rem;
  }
}
#introduction .inner .introduction_left .box_g .para p {
  color: #ffffff;
}
@media (max-width: 460px) {
  #introduction .inner .introduction_left .box_g .para p {
    line-height: 15px;
  }
}
#introduction .inner .introduction_left .box_g .para #myBtn {
  width: 100px;
  border: none;
  padding: 7px;
  margin: 0 auto;
  float: right;
}
@media (max-width: 600px) {
  #introduction .inner .introduction_left .box_g .para #myBtn {
    width: 70px;
    padding: 4px;
    font-size: 0.8rem;
  }
}
#introduction .inner .introduction_left .box_g .para #myBtn:hover {
  border: 1px solid #ffffff;
  color: #ffffff;
}
#introduction .inner .introduction_left .box_g .para:hover {
  background-color: rgba(0, 0, 0, 0.895);
}
#introduction .inner .introduction_left #legal {
  justify-content: space-between;
  background-color: #a19c9c;
  width: 100%;
  padding: 2rem;
  margin: 3.5rem 0;
  z-index: 99;
  background: linear-gradient(rgba(7, 3, 19, 0.694), rgba(3, 1, 10, 0.707)), url(../img/legal\ status.png) no-repeat scroll center top;
  background-size: cover;
  background-attachment: fixed;
}
#introduction .inner .introduction_left #legal h3 {
  color: #eaea31;
}
#introduction .inner .introduction_left #legal li {
  padding: 1rem 0;
  font-size: 0.8rem;
  transition: 0.5s;
  text-shadow: rgba(0, 0, 0, 0.351) 0px 10px 28px, rgba(0, 0, 0, 0.363) 0px 10px 10px;
  color: #ffffff;
}
#introduction .inner .introduction_left #legal li:hover {
  color: rgba(26, 186, 235, 0.8588235294);
}
#introduction .inner .introduction_left .objective {
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin-bottom: 2.3rem;
}
#introduction .inner .introduction_left .objective .owl-carousel {
  width: 100%;
}
#introduction .inner .introduction_left .objective .owl-carousel .item {
  width: 100%;
  cursor: -webkit-grab;
  cursor: grab;
  background-color: #000;
  border-left: 14px solid rgba(26, 186, 235, 0.8588235294);
  overflow: hidden;
}
#introduction .inner .introduction_left .objective .owl-carousel .item img {
  width: 100%;
  opacity: 0.9;
  transition: 0.5s;
}
#introduction .inner .introduction_left .objective .owl-carousel .item li {
  color: #ffffff;
  font-size: 1.1rem;
  z-index: 1;
  margin-top: -20%;
  position: absolute;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.603);
}
#introduction .inner .introduction_left .objective .owl-carousel .item:hover img {
  opacity: 0.5;
}
#introduction .inner .introduction_left .table {
  width: 100%;
  border-collapse: collapse;
}
#introduction .inner .introduction_left .table td,
#introduction .inner .introduction_left .table th {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
}
#introduction .inner .introduction_left .table tr:hover {
  background-color: rgba(178, 245, 246, 0.7803921569);
  cursor: pointer;
  transition: 0.5s;
}
#introduction .inner .introduction_left .table th {
  background-color: rgba(26, 186, 235, 0.8588235294);
  color: #ffffff;
}
#introduction .inner .introduction_left .table tbody tr:nth-child(even) {
  background-color: rgba(220, 230, 241, 0.7019607843);
}
#introduction .inner .introduction_left .table tbody tr:nth-child(even):hover {
  background-color: rgba(237, 237, 199, 0.81);
}
@media (max-width: 500px) {
  #introduction .inner .introduction_left .table thead {
    display: none;
  }
  #introduction .inner .introduction_left .table,
#introduction .inner .introduction_left .table tbody,
#introduction .inner .introduction_left .table tr,
#introduction .inner .introduction_left .table td {
    display: block;
    width: 100%;
  }
  #introduction .inner .introduction_left .table tr {
    margin-bottom: 15px;
    transition: 1s;
  }
  #introduction .inner .introduction_left .table td {
    text-align: right;
    padding-left: 50%;
    text-align: right;
    position: relative;
  }
  #introduction .inner .introduction_left .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
}
#introduction .inner .introduction_left .notebox {
  background-color: rgba(89, 151, 187, 0.4941176471);
  padding: 1.2rem;
  margin: 2rem 0rem;
}
#introduction .inner .introduction_left .notebox p {
  font-weight: 500;
  font-size: 0.9rem;
}
#introduction .inner .introduction_right {
  width: 33%;
}
@media (max-width: 1000px) {
  #introduction .inner .introduction_right {
    width: 25%;
  }
}
@media (max-width: 850px) {
  #introduction .inner .introduction_right {
    width: 100%;
  }
}
#introduction .inner .introduction_right p {
  font-size: 1rem;
  font-weight: 600;
}
#introduction .inner .introduction_right img {
  width: 100%;
}
#introduction .inner .introduction_right .box_m,
#introduction .inner .introduction_right .box_v,
#introduction .inner .introduction_right .box_HR {
  text-align: center;
  flex: 1 1 300px;
  margin: 15px;
  padding: 30px;
  flex: 1 1 220px;
  flex-direction: column;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 1s;
  background-color: gray;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 28px, rgba(0, 0, 0, 0.12) 0px 10px 10px;
}
#introduction .inner .introduction_right .box_v {
  background-color: rgba(95, 235, 254, 0.793);
}
#introduction .inner .introduction_right .box_m {
  background-color: rgba(83, 247, 247, 0.8);
}
#introduction .inner .introduction_right .box_HR {
  background-color: rgba(95, 224, 252, 0.8156862745);
}
#introduction .inner .introduction_right .box_v:hover,
#introduction .inner .introduction_right .box_m:hover,
#introduction .inner .introduction_right .box_HR:hover {
  box-shadow: none;
  transition: 0.5s;
}

#partner {
  background: linear-gradient(rgba(7, 3, 19, 0.775), rgba(3, 1, 10, 0.5)), url(../img/partner.jpg) no-repeat scroll center top;
  background-size: cover;
  padding: 5% 7%;
  background-attachment: fixed;
}
#partner h1 {
  color: #ffffff;
}
#partner li {
  color: rgba(167, 166, 166, 0.953);
  padding: 1rem;
  font-size: 1.2rem;
}
#partner li:hover {
  color: #ffffff;
}

#footer {
  width: 100%;
  background-color: #14212d;
}
#footer .footer_left,
#footer .footer_right {
  width: 45%;
  align-items: flex-start;
}
#footer .footer_left h3,
#footer .footer_right h3 {
  color: #ffffff;
  margin-bottom: 2rem;
}
#footer .footer_left li,
#footer .footer_right li {
  font-size: 0.7rem;
  color: rgba(167, 166, 166, 0.953);
  padding: 0 0 0.5rem;
}
#footer .footer_left li:hover,
#footer .footer_right li:hover {
  color: #18bbf6;
}
#footer .footer_left .foot_mission {
  width: 45%;
}
#footer .footer_left .foot_links {
  width: 45%;
}
@media (max-width: 1000px) {
  #footer .footer_right {
    margin-top: 5rem;
  }
}
#footer .footer_right .foot_gallery {
  width: 37%;
}
#footer .footer_right .foot_gallery h3 {
  width: 100%;
}
#footer .footer_right .foot_gallery img {
  width: 100%;
}
#footer .footer_right .foot_contact {
  width: 47%;
  flex-direction: column;
}
#footer .footer_right .foot_contact h3 {
  width: 100%;
  padding-left: 5%;
}
#footer .footer_right .foot_contact .foot_contact_inner {
  width: 100%;
  flex-direction: column;
  padding-left: 1rem;
}
#footer .footer_right .foot_contact .foot_contact_inner a {
  width: 100%;
}
#footer .footer_right .foot_contact .foot_contact_inner a .fa {
  background-color: rgba(26, 186, 235, 0.8588235294);
  padding: 0.5rem;
  border-radius: 50%;
}
#footer .footer_right .foot_contact .foot_contact_inner a .fa:hover {
  background-color: grey;
}
#footer .footer_right .foot_contact .foot_contact_inner a span {
  color: rgba(26, 186, 235, 0.8588235294);
  text-transform: capitalize;
}
#footer .footer_right .foot_contact .foot_contact_inner li {
  font-weight: 400;
  font-size: 0.8rem;
  padding: 0.3rem;
  padding-bottom: 5%;
  padding-left: 12%;
}
@media (max-width: 1000px) {
  #footer .footer_right .foot_contact .foot_contact_inner li {
    padding-left: 5%;
  }
}
#footer .footer_right .foot_contact .foot_contact_inner li:hover {
  color: #ffffff;
}

.copyright_sec {
  text-align: center;
  background-color: #0c151d;
  padding: 2rem 0;
}
.copyright_sec h3 {
  color: #ffffff;
  font-size: 0.9rem;
}
.copyright_sec h3 a {
  color: rgba(167, 166, 166, 0.953);
  text-transform: capitalize;
}
.copyright_sec h3 a:hover {
  color: #18bbf6;
}
.copyright_sec .fa-heart {
  color: rgba(26, 186, 235, 0.8588235294);
}

.to_top {
  position: fixed;
  right: 2%;
  bottom: 2%;
  font-size: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  background-color: #c90a0a;
  border-radius: 5%;
  z-index: 1000;
  width: 35px;
  height: 35px;
  justify-content: center;
}
.to_top .fa-angle-up {
  color: #fdeeeb;
  transition: all 1s;
}

.to_top:hover {
  background-color: rgba(89, 151, 187, 0.4941176471);
}

@-webkit-keyframes myAnimation {
  0% {
    transform: translateY(9px);
    opacity: 0;
  }
  5% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-9px);
    opacity: 0;
  }
}

@keyframes myAnimation {
  0% {
    transform: translateY(9px);
    opacity: 0;
  }
  5% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-9px);
    opacity: 0;
  }
}
.to_top:hover .fa-angle-up {
  -webkit-animation: 0;
          animation: 0;
}

.to_top.active {
  bottom: 2rem;
  pointer-events: auto;
  opacity: 1;
}

@media (max-width: 1045px) {
  html {
    font-size: 90%;
  }

  #home {
    margin-top: -10px;
  }
}
@media (max-width: 1000px) {
  #about {
    justify-content: center;
  }
  #about img {
    width: 80%;
  }
  #about .about_right {
    width: 100%;
    height: auto;
    padding: 4rem 5rem;
    margin-left: 0;
    justify-content: center;
    text-align: center;
  }
  #about .about_right p {
    padding-top: 2rem;
  }

  #footer #subscribe {
    margin: 0 auto;
    text-align: center;
  }
  #footer #subscribe h2 {
    color: #ffffff;
    width: 100%;
  }
  #footer #subscribe .input_side {
    width: 100%;
  }
  #footer #subscribe .input_side .btn {
    width: 115px;
  }
  #footer .footer_left,
#footer .footer_right {
    width: 100%;
    justify-content: space-around;
  }
}
@media (max-width: 768px) {
  * section {
    padding: 2rem 1rem;
  }

  html {
    font-size: 80%;
  }

  #home .text_area {
    width: 85%;
  }

  #footer #subscribe .input_side input {
    width: 100%;
    margin-top: 2rem;
  }
  #footer #subscribe .input_side .btn {
    width: 50%;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 70%;
  }

  #home .text_area .btn_area {
    flex-direction: column;
  }
  #home .text_area .btn_area .btn {
    margin: 0.5rem;
  }

  #about .about_right {
    padding: 0.5rem;
    box-shadow: none;
  }

  #footer .footer_left h3,
#footer .footer_right h3 {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  #footer .footer_left {
    margin-top: 4rem;
  }
  #footer .footer_left .foot_mission,
#footer .footer_left .foot_links {
    width: 100%;
  }
  #footer .footer_right {
    margin-top: 2rem;
  }
  #footer .footer_right .foot_gallery,
#footer .footer_right .foot_contact {
    width: 100%;
  }
  #footer .footer_right .foot_contact {
    justify-content: left;
  }
  #footer .footer_right .foot_contact h3 {
    padding-left: 0;
  }
  #footer .footer_right .foot_contact .icon {
    flex-direction: column;
    width: 15%;
  }

  .copyright_sec h3 {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}
@media (max-width: 460px) {
  html {
    font-size: 55%;
  }
}
.contact_home {
  background: linear-gradient(rgba(7, 3, 19, 0.625), rgba(3, 1, 10, 0.54)), url(../img/bg2.png) no-repeat scroll center top !important;
  background-size: cover !important;
}

#container {
  background-color: #ffffff;
  width: 80%;
  margin: 50px auto;
  padding: 3rem 2rem 1rem;
  flex-direction: column;
  box-shadow: rgba(147, 145, 145, 0.4) 10px 10px 15px 3px, rgba(117, 115, 115, 0.4) 10px 4px 6px -10px;
}
@media (max-width: 767px) {
  #container {
    width: 90%;
  }
}
#container h1 {
  padding-bottom: 1.5rem;
  text-align: center;
}
#container form input,
#container form textarea {
  width: 100%;
  margin: 0.5rem 0 1.5rem;
  padding: 0.7rem;
  resize: none;
}
#container form .btn {
  margin: auto;
}
#container form .name_field,
#container form .contact_field {
  width: 100%;
}
#container form .name_field input,
#container form .contact_field input {
  width: 49%;
}
@media (max-width: 767px) {
  #container form .name_field input,
#container form .contact_field input {
    width: 100%;
  }
}
#container form input::-moz-placeholder, #container form textarea::-moz-placeholder {
  font-size: 1em;
  color: #14212d;
  opacity: 0.7;
}
#container form input:-ms-input-placeholder, #container form textarea:-ms-input-placeholder {
  font-size: 1em;
  color: #14212d;
  opacity: 0.7;
}
#container form input::placeholder,
#container form textarea::placeholder {
  font-size: 1em;
  color: #14212d;
  opacity: 0.7;
}
#container form input:focus,
#container form textarea:focus {
  outline: none !important;
  border-color: rgba(26, 186, 235, 0.8588235294);
  box-shadow: 0 0 10px rgba(26, 186, 235, 0.8588235294);
}

.map {
  border: 7px solid #14212d;
  width: 80%;
  padding: 0;
  margin: 0 auto 2rem;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .map {
    width: 95%;
  }
}
.map iframe {
  width: 100%;
  opacity: 0.8;
  transition: 0.4s;
}
.map iframe:hover {
  opacity: 1;
  transform: scale(1.1);
}

.areaOO {
  background: linear-gradient(rgba(7, 3, 19, 0.537), rgba(3, 1, 10, 0.42)), url(../img/5.jpeg) no-repeat scroll center top !important;
  background-size: cover !important;
}

.area {
  background-color: rgba(207, 222, 143, 0.853);
  flex-direction: column;
  justify-content: center;
}
.area h1 {
  text-decoration: underline;
}
.area h3 {
  color: rgba(26, 186, 235, 0.8588235294);
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}
.area p {
  width: 75%;
  text-align: center;
  font-weight: 600;
}
.area iframe {
  border: 2px solid #14212d;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 12px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: 1.5s;
}
.area iframe:hover {
  box-shadow: none;
  transition: 1.5s;
  opacity: 0.7;
}

.initiative_home {
  background: linear-gradient(rgba(7, 3, 19, 0.313), rgba(3, 1, 10, 0.287)), url(../img/4.jpeg) no-repeat scroll center top !important;
  background-size: cover !important;
}
@media (max-width: 767px) {
  .initiative_home {
    background-position: center bottom !important;
    padding: 75% 0% 27% !important;
  }
}
@media (max-width: 767px) {
  .initiative_home .text_area {
    margin-top: -100px !important;
  }
}

h2 {
  width: 100%;
  padding-bottom: 2rem;
  text-decoration: underline;
}

h3 {
  color: #18bbf6;
  font-weight: bold;
  font-size: 1.3rem;
  width: 100%;
}

#progress_sec .progress {
  width: 50%;
}
@media (max-width: 1000px) {
  #progress_sec .progress {
    width: 100%;
  }
}
#progress_sec .progress p {
  font-weight: 500;
  text-align: justify;
}
#progress_sec img {
  width: 45%;
}
@media (max-width: 1000px) {
  #progress_sec img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#progress_sec .imp_facts h3 {
  color: rgb(219, 59, 59);
  padding-bottom: 1rem;
}
#progress_sec .imp_facts .basic_facts,
#progress_sec .imp_facts .activity {
  width: 45%;
  margin: 2rem 0;
  height: auto;
  border: 1px solid rgba(26, 186, 235, 0.8588235294);
  padding: 1.5rem;
  background-color: rgba(248, 255, 219, 0.7137254902);
}
@media (max-width: 1000px) {
  #progress_sec .imp_facts .basic_facts,
#progress_sec .imp_facts .activity {
    width: 100%;
  }
}
#progress_sec .imp_facts .basic_facts li,
#progress_sec .imp_facts .activity li {
  padding: 0.4rem 0;
  font-size: 2.5vh;
  font-size: 1rem;
  text-shadow: 0 1px 1px #121212;
}
#progress_sec .imp_facts .activity {
  width: 50%;
}
@media (max-width: 1000px) {
  #progress_sec .imp_facts .activity {
    width: 100%;
  }
}
#progress_sec .imp_facts li:hover {
  color: grey;
}
#progress_sec .success_story {
  flex-direction: row;
}
#progress_sec .success_story h3 {
  width: 100%;
  color: #000;
  padding-bottom: 1rem;
}
#progress_sec .success_story img {
  width: 28%;
  height: 250px;
  transition: 0.2s;
  border: 2.5px solid #121212;
  opacity: 0.8;
}
@media (max-width: 900px) {
  #progress_sec .success_story img {
    width: 100%;
    height: auto;
  }
}
#progress_sec .success_story img:hover {
  transform: scale(1.1);
  opacity: 1;
}
#progress_sec .success_story p {
  width: 40%;
  text-align: justify;
}
@media (max-width: 900px) {
  #progress_sec .success_story p {
    width: 100%;
    font-size: 1rem;
  }
}

.impact {
  width: 100%;
  margin: 0 auto;
  background-color: rgba(89, 151, 187, 0.4941176471);
  padding: 1.5rem;
  margin: 2.5rem 0;
}
.impact li {
  padding: 0.4rem;
}

#covid_relief {
  background-color: rgba(187, 186, 186, 0.549);
  align-items: flex-start;
}
#covid_relief p {
  width: 55%;
  text-align: justify;
}
@media (max-width: 900px) {
  #covid_relief p {
    width: 100%;
  }
}
#covid_relief p img {
  width: 100%;
  height: 200px;
}
#covid_relief img {
  width: 40%;
}
@media (max-width: 900px) {
  #covid_relief img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#covid_relief .covid2 {
  flex-direction: row;
  align-items: flex-start;
  margin-top: 25px;
}
#covid_relief .covid2 p {
  width: 25%;
  line-height: 1.8;
}
@media (max-width: 900px) {
  #covid_relief .covid2 p {
    width: 100%;
  }
}
#covid_relief .covid2 .image,
#covid_relief .covid2 .image2 {
  width: 33%;
  padding: 10%;
  background-image: url("../img/24.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 900px) {
  #covid_relief .covid2 .image,
#covid_relief .covid2 .image2 {
    width: 49%;
    padding: 20%;
  }
}
#covid_relief .covid2 .image2 {
  background-image: url("../img/25.JPG");
}

.industrial_training p {
  width: 50%;
  line-height: 1.7;
  text-align: justify;
}
@media (max-width: 900px) {
  .industrial_training p {
    width: 100%;
  }
}
.industrial_training img {
  width: 45%;
  height: 400px;
}
@media (max-width: 900px) {
  .industrial_training img {
    width: 100%;
    height: auto;
  }
}

.donate_home {
  background: linear-gradient(rgba(7, 3, 19, 0.568), rgba(3, 1, 10, 0.548)), url(../img/bg5.jpg) no-repeat scroll center top !important;
  background-size: cover !important;
}

.active2 {
  background-color: rgba(26, 186, 235, 0.8588235294);
}

#donation {
  background-color: rgba(19, 57, 134, 0.8078431373);
  padding: 6rem 4rem;
}
#donation h1 {
  width: 100%;
  color: #ffffff;
  text-shadow: rgba(0, 0, 0, 0.461) 0px 10px 28px, rgba(0, 0, 0, 0.447) 0px 10px 10px;
}
#donation .img_area {
  width: 45%;
  box-shadow: rgba(0, 0, 0, 0.461) 0px 10px 28px, rgba(0, 0, 0, 0.447) 0px 10px 10px;
}
@media (max-width: 1000px) {
  #donation .img_area {
    width: 100%;
  }
}
#donation .img_area img {
  width: 100%;
}
#donation .img_area p {
  padding: 2rem;
  color: #ffffff;
}
#donation .img_area p i {
  color: #eaea31;
  font-size: 0.9rem;
}
#donation .donate_details {
  width: 50%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 2rem 2.3rem;
  box-shadow: rgba(0, 0, 0, 0.446) 0px 10px 28px, rgba(0, 0, 0, 0.484) 0px 10px 10px;
}
@media (max-width: 1000px) {
  #donation .donate_details {
    width: 100%;
    margin-top: 2rem;
  }
}
#donation .donate_details li {
  padding: 0.9rem 0;
}
#donation .donate_details strong {
  color: #102b7d;
  text-shadow: 0 1px 1px #000;
}
#donation .donate_details h3 {
  padding-bottom: 1.2rem;
  text-shadow: 0 1px 1px #000;
  font-size: 1.7rem;
}
#donation .donate_details h4 {
  font-size: 0.9rem;
  color: rgba(221, 60, 60, 0.81);
}
#donation .donate_details h4 a {
  color: #334e0c;
  font-weight: bold;
  text-transform: lowercase;
}

.navigation {
  height: 70px;
  background: #0f0202;
}
.navigation .nav-container {
  max-width: 1000px;
  margin: 0 auto;
}
.navigation .nav-container .logo {
  width: 10%;
}
.navigation .nav-container .logo img {
  width: 70px;
  height: 75px;
  margin-top: -38px;
}

nav {
  float: right;
  position: relative;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: -5%;
}
nav ul li {
  float: left;
  position: relative;
  margin-left: 2rem;
}
nav ul li a {
  font-size: 0.9rem;
  font-weight: normal;
  text-transform: capitalize;
  text-shadow: 0px 2px 2px #121212;
}
nav ul li a:hover {
  color: #eaea31;
}
nav ul li a:hover li {
  background-color: #164452;
}

.active {
  color: rgba(26, 186, 235, 0.8588235294);
}

.nav-dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  left: -85px;
  z-index: 2000;
  display: none;
  width: 240px;
  background-color: rgba(22, 68, 82, 0.6941176471);
  box-shadow: rgba(0, 0, 0, 0.351) 0px 10px 28px, rgba(0, 0, 0, 0.363) 0px 10px 10px;
}
.nav-dropdown li {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(245, 222, 179, 0.3333333333);
  margin-left: 0;
  width: 100%;
}
.nav-dropdown li:hover {
  background-color: #164452;
}
.nav-dropdown li:hover a {
  color: #eaea31;
}
.nav-dropdown .annual {
  border-bottom: none !important;
}
.nav-dropdown .annual a {
  color: #c92c49;
}
.nav-dropdown .annual:hover a {
  color: #eaea31;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
}

@media only screen and (max-width: 1000px) {
  .navigation {
    height: 80px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3000;
  }
  .navigation nav .nav-dropdown {
    margin-top: 0.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .navigation .nav-container .logo img {
    width: 70px;
    height: 55px;
    margin-top: -20%;
  }

  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
    margin-top: -60px;
  }
  nav .nav-dropdown {
    position: absolute;
    width: 95%;
    right: 0;
    left: 0;
    display: none;
    background-color: rgba(22, 68, 82, 0.9882352941);
  }
  nav .nav-dropdown li {
    margin-left: 0;
    width: 100%;
    padding: 0.1rem 0;
  }
  nav .nav-dropdown li:hover {
    background-color: rgba(89, 151, 187, 0.4941176471);
  }

  nav ul {
    display: none;
    margin-top: 4.5px;
    background-color: #121212;
  }

  nav ul li {
    float: none;
  }

  nav ul li a {
    padding: 15px;
    line-height: 40px;
    width: 100%;
  }

  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 33px;
  background: #fff8f8;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 1000px) {
  .nav-list {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */