/* SCSS Imports */
/*VARIABLES*/
/*FONTS*/
@font-face {
  font-family: headerFont;
  src: url(../fonts/GothamBold.ttf);
}
@font-face {
  font-family: textFont;
  src: url(../fonts/GothamBook.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  position: relative;
}

::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #000000;
}

/*HTML CONTENT*/
h1 {
  font-family: textFont;
  font-size: 56px;
  font-weight: 600;
  line-height: 65px;
}

h2 {
  font-family: headerFont;
  font-size: 43px;
  font-weight: 700;
  line-height: 54px;
}

h3 {
  font-family: headerFont;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
}

p,
a {
  font-family: textFont;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

h6 {
  font-family: textFont;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.text-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

/* NAV MENUS AND FOOTER */
nav {
  width: 78%;
  min-height: 90px;
  margin: auto;
  position: absolute;
  top: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
nav .logos {
  height: -moz-fit-content;
  height: fit-content;
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logos .logo {
  height: 70px;
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .logos .divider {
  width: 2px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
nav .links {
  display: flex;
  align-items: center;
}
nav .links .page-links {
  display: flex;
}
nav .links .page-links a {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
nav .links .page-links a:last-of-type {
  margin-left: 0.5em;
}
nav .links .page-links a:hover {
  font-weight: 800;
  color: #d91f33;
}
nav .links .nav-btn {
  height: 50px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  margin-left: 1em;
  transition: all 0.3s ease-in;
  background: #d91f33;
}
nav .links .nav-btn img {
  width: 5%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
nav .links .nav-btn span {
  height: 100%;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  padding: 0 15px;
  white-space: nowrap;
  transition: all 0.3s ease-in;
}
nav .links .nav-btn:hover span {
  transform: scale(0.8);
}

footer {
  background: #1a1a1a;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container {
  width: 70%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container p {
  color: #918f8f;
  font-size: 16px;
}
footer .container a {
  color: #918f8f;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
footer .container a:hover {
  color: #d91f33;
  font-weight: 700;
}

/* CSS ANIMATIONS */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
/*GLOBAL CLASSES*/
section {
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  width: 92%;
}

/* GLOBAL CSS */
@media only screen and (max-width: 1024px) {
  nav {
    width: 80%;
    min-height: 90px;
    top: 0.5em;
  }
  nav .logos {
    width: 25%;
  }
  nav .logos .logo {
    height: 60px;
    width: 60px;
  }
  nav .logos .divider {
    height: 40px;
  }
  nav .links .page-links a {
    font-size: 18px;
  }
  nav .links .nav-btn {
    display: none;
  }
  footer {
    min-height: 100px;
  }
  footer .container {
    width: 80%;
  }
  footer .container a,
  footer .container p {
    font-size: 16px;
  }
  footer .container a:hover,
  footer .container p:hover {
    font-weight: 700;
  }
}
@media only screen and (max-width: 576px) {
  h1 {
    font-size: 45px;
    line-height: 52px;
  }
  h2 {
    font-size: 32px;
    line-height: 42px;
  }
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
  p,
  a {
    font-size: 16px;
    line-height: 24px;
  }
  h6 {
    font-size: 14px;
    line-height: 22px;
  }
  nav {
    width: 90%;
    min-height: 90px;
    top: 0.5em;
  }
  nav .logos {
    width: 35%;
  }
  nav .logos .logo {
    height: 45px;
    width: 45px;
  }
  nav .links .page-links a {
    font-size: 16px;
  }
  footer {
    min-height: 100px;
    padding: 1em 0;
  }
  footer .container {
    width: 80%;
    flex-wrap: wrap;
  }
  footer .container a,
  footer .container p {
    font-size: 16px;
  }
  footer .container a:hover,
  footer .container p:hover {
    font-weight: 700;
  }
}
.banner-placeholder {
  position: relative;
  max-width: 100vw;
  height: auto;
  background: url("../images/BANNER BG.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7em 0;
}
.banner-placeholder .vector {
  position: absolute;
}
.banner-placeholder .vect-main {
  top: 50%;
  left: 2em;
  transform: translateY(-50%);
  width: 85%;
  height: 90%;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 1;
}
.banner-placeholder .vect-secondary {
  top: 0;
  right: 8%;
  width: 120px;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 2;
}
.banner-placeholder .vect-1 {
  top: 2%;
  left: 5%;
  width: 200px;
  height: 100px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 2;
  transform: rotate(-10deg);
}
.banner-placeholder .vect-2 {
  bottom: 3%;
  left: 25%;
  width: auto;
  height: 70px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 2;
}
.banner-placeholder .vect-3 {
  top: 15%;
  left: 40%;
  width: auto;
  height: 90px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 6;
}
.banner-placeholder .vect-4 {
  bottom: 8%;
  left: 55%;
  width: 95px;
  height: 105px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 6;
}
.banner-placeholder .vect-5 {
  bottom: 10%;
  left: 70%;
  width: 70px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 6;
}
.banner-placeholder .vect-6 {
  top: 9%;
  left: 62%;
  width: 95px;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 6;
}
.banner-placeholder .vect-7 {
  top: 9%;
  left: 75%;
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 6;
}
.banner-placeholder .vect-8 {
  top: 6%;
  left: 72%;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 6;
}
.banner-placeholder .container {
  width: 95%;
  height: auto;
  margin-left: 5%;
  display: flex;
  align-items: center;
  z-index: 5;
}
.banner-placeholder .container .banner-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-placeholder .container .banner-content .logos {
  height: -moz-fit-content;
  height: fit-content;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-placeholder .container .banner-content .logos .logo {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner-placeholder .container .banner-content .logos .divider {
  width: 2px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-placeholder .container .banner-content .text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-placeholder .container .banner-content .text-content h1 {
  width: 90%;
  color: #f1f1f1;
  text-align: center;
  margin: 0.2em 0;
}
.banner-placeholder .container .banner-content .text-content p {
  width: 90%;
  color: #f1f1f1;
  text-align: center;
}
.banner-placeholder .container .banner-content .cta-buttons {
  width: 70%;
  height: auto;
  display: flex;
  margin-top: 2.5em;
}
.banner-placeholder .container .banner-content .cta-buttons .cta-btn {
  height: 50px;
  width: 50%;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.banner-placeholder .container .banner-content .cta-buttons .donate {
  background: #004d6d;
}
.banner-placeholder .container .banner-content .cta-buttons .donate img {
  width: 10%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-placeholder .container .banner-content .cta-buttons .donate span {
  height: 100%;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  transition: all 0.3s ease-in;
}
.banner-placeholder .container .banner-content .cta-buttons .donate:hover span {
  transform: scale(0.8);
}
.banner-placeholder .container .banner-content .cta-buttons .mpesa {
  background: #ffffff;
  justify-content: center;
  align-items: center;
}
.banner-placeholder .container .banner-content .cta-buttons .mpesa img {
  width: 80%;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in;
}
.banner-placeholder .container .banner-content .cta-buttons .mpesa:hover img {
  transform: scale(0.8);
}
.banner-placeholder .container .banner-content .account {
  display: flex;
  margin-top: 1.5em;
}
.banner-placeholder .container .banner-content .account .detail {
  display: block;
  width: auto;
}
.banner-placeholder .container .banner-content .account .detail p {
  color: #f1f1f1;
}
.banner-placeholder .container .banner-content .account .detail span {
  width: auto;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid #ffffff;
  margin-top: 0.5em;
}
.banner-placeholder .container .banner-content .account .detail:first-of-type {
  margin-right: 10px;
}
.banner-placeholder .container .banner-image {
  width: 60%;
  height: 100%;
}
.banner-placeholder .container .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

@media only screen and (max-width: 1024px) {
  .banner-placeholder {
    padding-top: 10em;
    padding-bottom: 7em;
  }
  .banner-placeholder .vect-main {
    bottom: 0;
    left: 1em;
    transform: translateY(-60%);
    width: 85%;
    height: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 1;
  }
  .banner-placeholder .vect-secondary {
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 2;
  }
  .banner-placeholder .vect-1 {
    top: 8%;
    left: 5%;
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 2;
  }
  .banner-placeholder .vect-2 {
    bottom: 3%;
    left: 10%;
    width: 100px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 2;
  }
  .banner-placeholder .vect-3 {
    top: 10%;
    left: 45%;
    width: 100px;
    height: 90px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner-placeholder .vect-4 {
    bottom: 8%;
    left: 55%;
    width: 60px;
    height: 60px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 6;
  }
  .banner-placeholder .vect-5 {
    bottom: 10%;
    left: 75%;
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 6;
  }
  .banner-placeholder .vect-6 {
    top: 10%;
    left: 80%;
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner-placeholder .vect-7 {
    top: 9%;
    left: 70%;
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner-placeholder .vect-8 {
    top: 8%;
    left: 65%;
    width: 15px;
    height: 15px;
  }
  .banner-placeholder .container {
    width: 80%;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .banner-placeholder .container .banner-content {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .banner-placeholder .container .banner-content .logos {
    height: -moz-fit-content;
    height: fit-content;
    width: 30%;
  }
  .banner-placeholder .container .banner-content .logos .logo {
    height: 70px;
    width: 70px;
  }
  .banner-placeholder .container .banner-content .logos .divider {
    height: 40px;
  }
  .banner-placeholder .container .banner-content .text-content {
    width: 100%;
    align-items: flex-start;
  }
  .banner-placeholder .container .banner-content .text-content h1 {
    width: 90%;
    text-align: left;
    margin: 0.2em 0;
  }
  .banner-placeholder .container .banner-content .text-content p {
    width: 90%;
    text-align: left;
  }
  .banner-placeholder .container .banner-content .cta-buttons {
    width: 70%;
    margin-top: 2em;
  }
  .banner-placeholder .container .banner-content .cta-buttons .cta-btn {
    height: 50px;
    width: 50%;
  }
  .banner-placeholder .container .banner-content .cta-buttons .donate img {
    width: 10%;
  }
  .banner-placeholder .container .banner-content .cta-buttons .donate span {
    width: 90%;
    font-size: 11px;
    line-height: 18px;
  }
  .banner-placeholder .container .banner-content .account {
    margin-top: 1em;
  }
  .banner-placeholder .container .banner-content .account .detail span {
    height: 50px;
    padding: 0 20px;
    margin-top: 0.5em;
  }
  .banner-placeholder .container .banner-content .account .detail span h6 {
    font-size: 11px;
  }
  .banner-placeholder .container .banner-content .account .detail:first-of-type {
    margin-right: 10px;
  }
  .banner-placeholder .container .banner-image {
    width: 100%;
    height: 400px;
    margin-top: 3em;
    display: flex;
    justify-content: flex-start;
  }
  .banner-placeholder .container .banner-image img {
    width: 70%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media only screen and (max-width: 576px) {
  .banner-placeholder {
    padding-top: 10em;
    padding-bottom: 7em;
  }
  .banner-placeholder .vect-main {
    bottom: 0;
    left: 1em;
    transform: translateY(-60%);
    width: 85%;
    height: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 1;
  }
  .banner-placeholder .vect-secondary {
    display: none;
  }
  .banner-placeholder .vect-1 {
    top: 2%;
    left: 5%;
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 2;
  }
  .banner-placeholder .vect-2 {
    bottom: 3%;
    left: 10%;
    width: 100px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 2;
  }
  .banner-placeholder .vect-3 {
    top: 8%;
    left: 40%;
    width: 100px;
    height: 90px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner-placeholder .vect-4 {
    bottom: 8%;
    left: 55%;
    width: 60px;
    height: 60px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 6;
  }
  .banner-placeholder .vect-5 {
    bottom: 10%;
    left: 75%;
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 6;
  }
  .banner-placeholder .vect-6 {
    top: 10%;
    left: 80%;
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner-placeholder .vect-7 {
    top: 9%;
    left: 70%;
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner-placeholder .vect-8 {
    top: 8%;
    left: 65%;
    width: 15px;
    height: 15px;
  }
  .banner-placeholder .container {
    width: 85%;
    height: auto;
    margin: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .banner-placeholder .container .banner-content {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .banner-placeholder .container .banner-content .logos {
    width: 37%;
  }
  .banner-placeholder .container .banner-content .logos .logo {
    height: 50px;
    width: 50px;
  }
  .banner-placeholder .container .banner-content .logos .divider {
    width: 2px;
    height: 30px;
  }
  .banner-placeholder .container .banner-content .text-content {
    width: 100%;
    align-items: flex-start;
  }
  .banner-placeholder .container .banner-content .text-content h1 {
    width: 100%;
    text-align: left;
    margin: 0.2em 0;
  }
  .banner-placeholder .container .banner-content .text-content p {
    width: 100%;
    text-align: left;
  }
  .banner-placeholder .container .banner-content .cta-buttons {
    width: 100%;
    margin-top: 2em;
  }
  .banner-placeholder .container .banner-content .cta-buttons .cta-btn {
    height: 50px;
    width: 50%;
  }
  .banner-placeholder .container .banner-content .cta-buttons .donate img {
    width: 10%;
  }
  .banner-placeholder .container .banner-content .cta-buttons .donate span {
    width: 90%;
    font-size: 11px;
    line-height: 18px;
  }
  .banner-placeholder .container .banner-content .cta-buttons .mpesa img {
    width: 80%;
    height: 30px;
  }
  .banner-placeholder .container .banner-content .account {
    margin-top: 1em;
  }
  .banner-placeholder .container .banner-content .account .detail span {
    width: auto;
    height: 50px;
    padding: 0 20px;
    margin-top: 0.5em;
  }
  .banner-placeholder .container .banner-content .account .detail span h6 {
    font-size: 11px;
  }
  .banner-placeholder .container .banner-image {
    width: 100%;
    height: 300px;
    margin-top: 1em;
  }
  .banner-placeholder .container .banner-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
/* PAGE IMPORTS */
.banner {
  position: relative;
  max-width: 100vw;
  height: auto;
  background: url("../images/BANNER BG.png") no-repeat top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10em;
  padding-bottom: 7em;
}
.banner .vector {
  position: absolute;
}
.banner .vect-main {
  bottom: 0%;
  left: 1em;
  width: 89%;
  height: 88%;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 1;
}
.banner .vect-secondary {
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 2;
}
.banner .vect-1 {
  top: 12%;
  left: 5%;
  width: 200px;
  height: 100px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 2;
}
.banner .vect-2 {
  bottom: 3%;
  left: 25%;
  width: auto;
  height: 70px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 2;
}
.banner .vect-3 {
  top: 15%;
  left: 40%;
  width: auto;
  height: 90px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 6;
}
.banner .vect-4 {
  bottom: 8%;
  left: 55%;
  width: 95px;
  height: 105px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 6;
}
.banner .vect-5 {
  bottom: 10%;
  left: 70%;
  width: 70px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 6;
}
.banner .vect-6 {
  top: 14%;
  left: 62%;
  width: 95px;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 6;
}
.banner .vect-7 {
  top: 13%;
  left: 74%;
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 6;
}
.banner .vect-8 {
  top: 12%;
  left: 71%;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 6;
}
.banner .container {
  width: 89%;
  height: auto;
  margin-left: 11%;
  display: flex;
  align-items: center;
  z-index: 5;
}
.banner .container .banner-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.banner .container .banner-content .text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 15%;
}
.banner .container .banner-content .text-content h2 {
  width: 100%;
  color: #f1f1f1;
  margin: 0.2em 0;
}
.banner .container .banner-content .text-content p {
  width: 85%;
  color: #f1f1f1;
}
.banner .container .banner-content .cta-buttons {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-top: 2.5em;
}
.banner .container .banner-content .cta-buttons .cta-btn {
  height: 50px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.banner .container .banner-content .cta-buttons .donate {
  background: #004d6d;
  width: 85% !important;
}
.banner .container .banner-content .cta-buttons .donate img {
  width: 5%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .container .banner-content .cta-buttons .donate span {
  height: 100%;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  padding: 0 0.5em;
  transition: all 0.3s ease-in;
}
.banner .container .banner-content .cta-buttons .donate:hover span {
  transform: scale(0.8);
}
.banner .container .banner-content .cta-buttons .mpesa {
  background: #ffffff;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}
.banner .container .banner-content .cta-buttons .mpesa img {
  width: 80%;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in;
}
.banner .container .banner-content .cta-buttons .mpesa:hover img {
  transform: scale(0.8);
}
.banner .container .banner-content .account {
  display: flex;
  margin-top: 1em;
}
.banner .container .banner-content .account .detail {
  display: block;
  width: auto;
}
.banner .container .banner-content .account .detail p {
  color: #f1f1f1;
}
.banner .container .banner-content .account .detail span {
  width: auto;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid #ffffff;
  margin-top: 0.5em;
}
.banner .container .banner-content .account .detail:first-of-type {
  margin-right: 10px;
}
.banner .container .banner-image {
  width: 60%;
  height: 100%;
}
.banner .container .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.about {
  position: relative;
  background: #fdf5e5;
  padding: 6em 0;
}
.about .vect-1 {
  position: absolute;
  top: 20%;
  left: 45%;
  width: 225px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .vect-2 {
  position: absolute;
  bottom: 12%;
  right: 15%;
  width: 100px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-gap: 8%;
}
.about .container .images-section {
  position: relative;
  height: 650px;
}
.about .container .images-section .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about .container .images-section .second-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: 2;
}
.about .container .images-section .h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 40%;
  z-index: 3;
}
.about .container .content-section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 15%;
}
.about .container .content-section p {
  color: #292929;
  width: 58%;
  margin-bottom: 2em;
}
.about .container .content-section .about-btn {
  height: 50px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in;
  background: #d91f33;
}
.about .container .content-section .about-btn img {
  width: 5%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .container .content-section .about-btn span {
  height: 100%;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease-in;
}
.about .container .content-section .about-btn:hover span {
  transform: scale(0.8);
}

.gallery {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6em 0;
  background: #fdf5e5;
}
.gallery .vect-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
.gallery .vect-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 300px;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 1;
}
.gallery .container {
  width: 70%;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.gallery .container * {
  z-index: 3;
}
.gallery .container h3 {
  width: 40%;
  color: #292929;
  text-align: center;
  margin-bottom: 1em;
}
.gallery .container .gallery-tabs {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery .container .gallery-tabs .tab-links {
  display: flex;
  align-items: center;
  margin-bottom: 2.5em;
}
.gallery .container .gallery-tabs .tab-links .tab-link {
  display: flex;
  align-items: center;
}
.gallery .container .gallery-tabs .tab-links .tab-link input[type=radio] {
  width: 25px;
  height: 25px;
  border: 2px solid #292929;
  background: #fdf5e5;
  accent-color: #292929;
  border-radius: 50%;
  cursor: pointer;
}
.gallery .container .gallery-tabs .tab-links .tab-link p {
  font-size: 22px;
  font-weight: 500;
  color: #292929;
  margin-left: 0.5em;
}
.gallery .container .gallery-tabs .tab-links .tab-link:first-of-type {
  margin-right: 1.5em;
}
.gallery .container .gallery-tabs .tab-content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
  overflow: hidden;
}
.gallery .container .gallery-tabs .images-tab {
  grid-template-columns: 1.5fr 1fr 1.5fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5em;
}
.gallery .container .gallery-tabs .images-tab img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px;
}
.gallery .container .gallery-tabs .images-tab img:nth-of-type(1) {
  grid-column-start: 1;
  grid-column-end: 2;
}
.gallery .container .gallery-tabs .images-tab img:nth-of-type(2) {
  grid-column-start: 2;
  grid-column-end: 4;
}
.gallery .container .gallery-tabs .images-tab img:nth-of-type(3) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.gallery .container .gallery-tabs .video-tab {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 1em;
  grid-row-gap: 2em;
}
.gallery .container .gallery-tabs .video-tab .video-link {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .container .gallery-tabs .video-tab .video-link .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 5em;
  border: 1px solid rgba(41, 41, 41, 0.2941176471);
}
.gallery .container .gallery-tabs .video-tab .video-link button {
  border: none;
  outline: none;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  z-index: 2;
  animation: pulse 1.5s infinite ease-in-out;
}
.gallery .container .gallery-tabs .video-tab .video-link button img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(1) {
  grid-column-start: 1;
  grid-column-end: 4;
  height: 400px;
}
.gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(2), .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(3), .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(4) {
  height: 200px;
}
.gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(2) {
  grid-column-start: 1;
  grid-column-end: 2;
}
.gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(3) {
  grid-column-start: 2;
  grid-column-end: 3;
}
.gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(4) {
  grid-column-start: 3;
  grid-column-end: 4;
}
.gallery .container .gallery-tabs .tab-content.active {
  display: grid;
}

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.video-popup .video-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
}
.video-popup .video-popup-content .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #d91f33;
  color: #fdf5e5;
  transition: all 0.3s ease-in;
}
.video-popup .video-popup-content .close-popup:hover {
  background: #292929;
}

.conversion {
  padding: 8em 0;
  background: #d91f33;
  position: relative;
}
.conversion .vect-1 {
  position: absolute;
  top: 6%;
  left: 25%;
  width: 250px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.conversion .vect-2 {
  position: absolute;
  bottom: 2%;
  left: 21%;
  width: 40%;
  height: 180px;
  -o-object-fit: fill;
     object-fit: fill;
}
.conversion .container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.conversion .container .images {
  height: 420px;
  width: 40%;
}
.conversion .container .images img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.conversion .container .content {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 3;
}
.conversion .container .content * {
  z-index: 3 !important;
}
.conversion .container .content .text-content h2 {
  width: 60%;
  font-family: textFont;
  color: #f1f1f1;
}
.conversion .container .content .cta-buttons {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-top: 2.5em;
}
.conversion .container .content .cta-buttons .cta-btn {
  height: 50px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}
.conversion .container .content .cta-buttons .donate {
  background: #004d6d;
  width: -moz-fit-content;
  width: fit-content;
}
.conversion .container .content .cta-buttons .donate img {
  width: 5%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.conversion .container .content .cta-buttons .donate span {
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease-in;
}
.conversion .container .content .cta-buttons .donate:hover span {
  transform: scale(0.8);
}
.conversion .container .content .cta-buttons .mpesa {
  background: #ffffff;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}
.conversion .container .content .cta-buttons .mpesa img {
  width: 80%;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in;
}
.conversion .container .content .cta-buttons .mpesa:hover img {
  transform: scale(0.8);
}
.conversion .container .content .account {
  display: flex;
  margin-top: 1em;
}
.conversion .container .content .account .detail {
  display: block;
  width: auto;
}
.conversion .container .content .account .detail p {
  color: #f1f1f1;
}
.conversion .container .content .account .detail span {
  width: auto;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid #ffffff;
  margin-top: 0.5em;
}
.conversion .container .content .account .detail:first-of-type {
  margin-right: 10px;
}

/*MEDIA QUERIES*/
@media only screen and (max-width: 1024px) {
  .banner {
    padding-top: 10em;
    padding-bottom: 7em;
  }
  .banner .vect-main {
    bottom: 0;
    left: 1em;
    transform: translateY(-50%);
    width: 85%;
    height: 50%;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 1;
  }
  .banner .vect-secondary {
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 2;
  }
  .banner .vect-1 {
    top: 12%;
    left: 5%;
    width: 200px;
    height: 100px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 2;
  }
  .banner .vect-2 {
    bottom: 3%;
    left: 25%;
    width: auto;
    height: 70px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 2;
  }
  .banner .vect-3 {
    top: 15%;
    left: 40%;
    width: auto;
    height: 90px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 6;
  }
  .banner .vect-4 {
    bottom: 8%;
    left: 55%;
    width: 95px;
    height: 105px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 6;
  }
  .banner .vect-5 {
    bottom: 10%;
    left: 70%;
    width: 70px;
    height: 120px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 6;
  }
  .banner .vect-6 {
    top: 14%;
    left: 62%;
    width: 95px;
    height: 105px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 6;
  }
  .banner .vect-7 {
    top: 13%;
    left: 74%;
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 6;
  }
  .banner .vect-8 {
    top: 12%;
    left: 71%;
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 6;
  }
  .banner .container {
    width: 80%;
    margin: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .banner .container .banner-content {
    width: 100%;
  }
  .banner .container .banner-content .text-content {
    width: 100%;
    padding-top: 15%;
  }
  .banner .container .banner-content .text-content h2 {
    width: 100%;
    margin: 0.2em 0;
  }
  .banner .container .banner-content .text-content p {
    width: 85%;
  }
  .banner .container .banner-content .cta-buttons {
    width: 100%;
    margin-top: 2.5em;
  }
  .banner .container .banner-content .cta-buttons .cta-btn {
    height: 50px;
  }
  .banner .container .banner-content .cta-buttons .donate {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .banner .container .banner-content .cta-buttons .donate img {
    width: 5%;
  }
  .banner .container .banner-content .cta-buttons .donate span {
    width: 95%;
    font-size: 13px;
    white-space: nowrap;
    padding: 0 25px;
  }
  .banner .container .banner-content .cta-buttons .mpesa {
    margin-top: 1em;
  }
  .banner .container .banner-content .cta-buttons .mpesa img {
    width: 80%;
    height: 30px;
  }
  .banner .container .banner-content .account {
    display: flex;
    margin-top: 1em;
  }
  .banner .container .banner-content .account .detail {
    display: block;
    width: auto;
  }
  .banner .container .banner-content .account .detail p {
    color: #f1f1f1;
  }
  .banner .container .banner-content .account .detail span {
    width: auto;
    height: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid #ffffff;
    margin-top: 0.5em;
  }
  .banner .container .banner-content .account .detail:first-of-type {
    margin-right: 10px;
  }
  .banner .container .banner-image {
    margin-top: 4em;
    width: 90%;
    height: 400px;
  }
  .banner .container .banner-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .about {
    padding: 6em 0;
  }
  .about .vect-1 {
    top: 20%;
    left: 45%;
    width: 225px;
    height: 70px;
  }
  .about .vect-2 {
    bottom: 12%;
    right: 15%;
    width: 100px;
    height: 90px;
  }
  .about .container {
    width: 80%;
    margin: auto;
    grid-template-columns: 100%;
    grid-gap: 8%;
  }
  .about .container .images-section {
    height: 500px;
  }
  .about .container .images-section .second-image {
    width: 80%;
    height: 80%;
  }
  .about .container .images-section .h3 {
    width: 40%;
  }
  .about .container .content-section {
    padding-bottom: 15%;
  }
  .about .container .content-section p {
    width: 58%;
    margin-bottom: 2em;
  }
  .about .container .content-section .about-btn {
    height: 50px;
  }
  .about .container .content-section .about-btn img {
    width: 5%;
  }
  .about .container .content-section .about-btn span {
    width: 95%;
    font-size: 14px;
    white-space: nowrap;
    padding: 0 20px;
  }
  .gallery {
    padding: 6em 0;
  }
  .gallery .vect-1 {
    width: 30%;
    height: 150px;
  }
  .gallery .vect-2 {
    width: 30%;
    height: 250px;
  }
  .gallery .container {
    width: 80%;
  }
  .gallery .container h3 {
    width: 60%;
    margin-bottom: 1em;
  }
  .gallery .container .gallery-tabs .tab-links {
    margin-bottom: 2.5em;
  }
  .gallery .container .gallery-tabs .tab-links .tab-link input[type=radio] {
    width: 25px;
    height: 25px;
  }
  .gallery .container .gallery-tabs .tab-links .tab-link p {
    font-size: 22px;
    margin-left: 0.5em;
  }
  .gallery .container .gallery-tabs .tab-links .tab-link:first-of-type {
    margin-right: 1.5em;
  }
  .gallery .container .gallery-tabs .images-tab {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 1.5em;
  }
  .gallery .container .gallery-tabs .images-tab img {
    height: 270px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 80px;
  }
  .gallery .container .gallery-tabs .images-tab img:nth-of-type(1) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .images-tab img:nth-of-type(2) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .gallery .container .gallery-tabs .images-tab img:nth-of-type(3) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .gallery .container .gallery-tabs .video-tab {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 1em;
    grid-row-gap: 2em;
  }
  .gallery .container .gallery-tabs .video-tab .video-link .main-img {
    border-radius: 5em;
  }
  .gallery .container .gallery-tabs .video-tab .video-link a img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(1) {
    grid-column-start: 1;
    grid-column-end: 4;
    height: 300px;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(2), .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(3), .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(4) {
    height: 150px;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(2) .main-img, .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(3) .main-img, .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(4) .main-img {
    border-radius: 3em;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(2) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(3) {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(4) {
    grid-column-start: 3;
    grid-column-end: 4;
  }
  .conversion {
    padding: 8em 0;
  }
  .conversion .vect-1 {
    top: 6%;
    left: 25%;
    width: 250px;
    height: 150px;
  }
  .conversion .vect-2 {
    bottom: 2%;
    left: 21%;
    width: 40%;
    height: 180px;
  }
  .conversion .container {
    width: 80%;
    margin: auto;
    flex-direction: column;
    align-items: center;
  }
  .conversion .container .images {
    width: 100%;
    height: 400px;
  }
  .conversion .container .content {
    width: 100%;
    margin-top: 2em;
  }
  .conversion .container .content .text-content h2 {
    width: 100%;
  }
  .conversion .container .content .cta-buttons {
    width: 100%;
    margin-top: 2.5em;
  }
  .conversion .container .content .cta-buttons .cta-btn {
    height: 50px;
  }
  .conversion .container .content .cta-buttons .donate img {
    width: 5%;
  }
  .conversion .container .content .cta-buttons .donate span {
    font-size: 13px;
    line-height: 24px;
    white-space: nowrap;
    padding: 0 20px;
  }
  .conversion .container .content .cta-buttons .mpesa {
    margin-top: 1em;
  }
  .conversion .container .content .cta-buttons .mpesa img {
    width: 80%;
    height: 30px;
  }
  .conversion .container .content .account {
    margin-top: 1em;
  }
  .conversion .container .content .account .detail p {
    color: #f1f1f1;
  }
  .conversion .container .content .account .detail span {
    height: 50px;
    padding: 0 20px;
    margin-top: 0.5em;
  }
}
@media only screen and (max-width: 576px) {
  .banner {
    padding-top: 10em;
    padding-bottom: 7em;
  }
  .banner .vect-main {
    bottom: 0;
    left: 1em;
    transform: translateY(-60%);
    width: 85%;
    height: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 1;
  }
  .banner .vect-secondary {
    display: none;
  }
  .banner .vect-1 {
    top: 8%;
    left: 5%;
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 2;
  }
  .banner .vect-2 {
    bottom: 3%;
    left: 10%;
    width: 100px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 2;
  }
  .banner .vect-3 {
    top: 10%;
    left: 45%;
    width: 100px;
    height: 90px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner .vect-4 {
    bottom: 8%;
    left: 55%;
    width: 60px;
    height: 60px;
    -o-object-fit: fill;
       object-fit: fill;
    z-index: 6;
  }
  .banner .vect-5 {
    bottom: 10%;
    left: 75%;
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 6;
  }
  .banner .vect-6 {
    top: 10%;
    left: 80%;
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner .vect-7 {
    top: 9%;
    left: 70%;
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .banner .vect-8 {
    top: 8%;
    left: 65%;
    width: 15px;
    height: 15px;
  }
  .banner .container {
    width: 80%;
    margin: auto;
    align-items: center;
  }
  .banner .container .banner-content {
    width: 100%;
  }
  .banner .container .banner-content .text-content {
    width: 100%;
  }
  .banner .container .banner-content .text-content h2 {
    width: 100%;
    margin: 0.2em 0;
  }
  .banner .container .banner-content .text-content p {
    width: 85%;
  }
  .banner .container .banner-content .cta-buttons {
    width: 100%;
    margin-top: 2em;
  }
  .banner .container .banner-content .cta-buttons .cta-btn {
    height: 50px;
  }
  .banner .container .banner-content .cta-buttons .donate {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .banner .container .banner-content .cta-buttons .donate img {
    width: 5%;
  }
  .banner .container .banner-content .cta-buttons .donate span {
    width: 95%;
    font-size: 11px;
    line-height: 18px;
    white-space: wrap;
    padding: 0 25px;
  }
  .banner .container .banner-content .cta-buttons .mpesa {
    width: 100%;
    margin-top: 1em;
  }
  .banner .container .banner-content .cta-buttons .mpesa img {
    width: 50%;
    height: 30px;
  }
  .banner .container .banner-content .account {
    display: flex;
    margin-top: 1em;
  }
  .banner .container .banner-content .account .detail {
    display: block;
    width: auto;
  }
  .banner .container .banner-content .account .detail p {
    color: #f1f1f1;
  }
  .banner .container .banner-content .account .detail span {
    width: auto;
    height: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid #ffffff;
    margin-top: 0.5em;
  }
  .banner .container .banner-content .account .detail span h6 {
    font-size: 11px;
    line-height: 18px;
  }
  .banner .container .banner-image {
    margin-top: 2em;
    width: 100%;
    height: 200px;
  }
  .banner .container .banner-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .about {
    padding: 6em 0;
  }
  .about .vect-1 {
    top: 1%;
    left: 10%;
    width: 100px;
    height: 70px;
  }
  .about .vect-2 {
    bottom: 18%;
    right: 5%;
    width: 50px;
    height: 50px;
  }
  .about .container {
    width: 80%;
    grid-gap: 8%;
  }
  .about .container .images-section {
    height: 300px;
  }
  .about .container .images-section .second-image {
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .about .container .images-section .h3 {
    width: 40%;
  }
  .about .container .content-section {
    padding-bottom: 10%;
  }
  .about .container .content-section p {
    width: 100%;
    margin-bottom: 2em;
  }
  .about .container .content-section .about-btn {
    height: 50px;
  }
  .about .container .content-section .about-btn img {
    width: 5%;
  }
  .about .container .content-section .about-btn span {
    width: 95%;
    font-size: 11px;
    line-height: 18px;
    white-space: wrap;
    padding: 0 20px;
  }
  .gallery {
    padding: 5em 0;
  }
  .gallery .vect-1 {
    width: 30%;
    height: 100px;
  }
  .gallery .vect-2 {
    width: 30%;
    height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .gallery .container {
    width: 80%;
  }
  .gallery .container h3 {
    width: 90%;
    margin-bottom: 1em;
  }
  .gallery .container .gallery-tabs .tab-content {
    overflow: visible;
  }
  .gallery .container .gallery-tabs .images-tab {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 1em;
  }
  .gallery .container .gallery-tabs .images-tab img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 2em;
  }
  .gallery .container .gallery-tabs .images-tab img:nth-of-type(1) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .images-tab img:nth-of-type(2) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .images-tab img:nth-of-type(3) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .images-tab img:nth-of-type(4) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .video-tab {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 1em !important;
  }
  .gallery .container .gallery-tabs .video-tab .video-link {
    height: 200px !important;
  }
  .gallery .container .gallery-tabs .video-tab .video-link .main-img {
    border-radius: 2em !important;
  }
  .gallery .container .gallery-tabs .video-tab .video-link a img {
    width: 35px;
    height: 35px;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(1) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(2) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(3) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .gallery .container .gallery-tabs .video-tab .video-link:nth-of-type(4) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .video-popup .video-popup-content {
    width: 85%;
    height: 250px;
  }
  .video-popup .video-popup-content .close-popup {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .conversion {
    padding: 6em 0;
  }
  .conversion .vect-1 {
    top: 2%;
    left: 25%;
    width: 150px;
    height: 100px;
  }
  .conversion .vect-2 {
    bottom: 1%;
    left: 20%;
    width: 40%;
    height: 70px;
  }
  .conversion .container {
    width: 80%;
  }
  .conversion .container .images {
    width: 100%;
    height: 300px;
  }
  .conversion .container .images img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .conversion .container .content {
    width: 100%;
    margin-top: 1em;
  }
  .conversion .container .content .text-content h2 {
    width: 100%;
  }
  .conversion .container .content .cta-buttons {
    width: 100%;
    margin-top: 2.5em;
  }
  .conversion .container .content .cta-buttons .cta-btn {
    height: 50px;
  }
  .conversion .container .content .cta-buttons .donate img {
    width: 5%;
  }
  .conversion .container .content .cta-buttons .donate span {
    font-size: 11px;
    line-height: 18px;
    white-space: wrap;
    padding: 0 20px;
  }
  .conversion .container .content .cta-buttons .mpesa {
    width: 100%;
    margin-top: 1em;
  }
  .conversion .container .content .cta-buttons .mpesa img {
    width: 50%;
    height: 30px;
  }
  .conversion .container .content .account {
    margin-top: 1em;
  }
  .conversion .container .content .account .detail p {
    color: #f1f1f1;
  }
  .conversion .container .content .account .detail span {
    height: 50px;
    padding: 0 20px;
    margin-top: 0.5em;
  }
  .conversion .container .content .account .detail span h6 {
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */