@import url(https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@400;500&display=swap);

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  transition-duration: 0.3s;
  list-style-type: none;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Lato", "Open Sans", sans-serif;
}

section {
  padding: 3em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Merriweather", serif !important;
}

p {
  color: #252525;
  font-size: 1em;
  line-height: 1.5;
}

.notification {
  padding: 10px;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.notification.success {
  color: rgb(49, 165, 49);
  border: 2px solid rgb(49, 165, 49);
}

.notification.error {
  color: rgb(207, 9, 9);
  border: 2px solid rgb(207, 9, 9);
}

.con {
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .con {
    width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .con {
    width: 90%;
  }
}
@media screen and (min-width: 1225px) {
  .con {
    width: 1200px;
  }
}
@media screen and (min-width: 1445px) {
  .con {
    width: 1300px;
  }
}
.btn {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 35px;
  position: relative;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  padding: 0 1em;
  transition-duration: 0.3s;
}
.btn span {
  position: relative;
  color: #fff;
  text-decoration: none;
  z-index: 2;
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.2);
  top: 100%;
  left: 50%;
  border-radius: 50% 50% 0 0;
  transform: translate(-50%, -100%);
  transition-duration: 0.3s;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
}
.btn:hover span {
  color: #fff;
  text-decoration: none;
}
.btn:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition-duration: 0.3s;
}
.btn.btn-pink {
  background-color: #FF3299;
}
.btn.btn-blue {
  background-color: #00FAFC;
}
.btn.btn-blue span {
  color: #252525;
}

.heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.heading.left {
  margin: 0;
}
.heading.left .top {
  margin: 0;
  padding: 0 0.5em 0 0;
}
.heading.left .top::before {
  display: none;
}
.heading .top {
  font-size: 1em;
  color: #FF3299;
  position: relative;
  text-transform: capitalize;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 0 0.5em;
}
.heading .top::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #FF3299;
  left: 0;
  top: calc(50% - 1px);
  transform: translate(-50px, 0);
}
@media screen and (min-width: 1225px) {
  .heading .top::before {
    width: 100px;
    transform: translate(-100px, 0);
  }
}
.heading .top::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #FF3299;
  right: 0;
  top: calc(50% - 1px);
  transform: translate(50px, 0);
}
@media screen and (min-width: 1225px) {
  .heading .top::after {
    width: 100px;
    transform: translate(100px, 0);
  }
}
.heading h2 {
  font-size: 1.2em;
  margin: 0;
  text-transform: capitalize;
  text-align: center;
}

header {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 6;
  background-color: #fff;
}
header.scroll nav .nav-sub .logo {
  border-radius: 0;
  position: initial;
  top: 0;
  height: 70px;
}
@media screen and (min-width: 1225px) {
  header {
    height: 70px;
  }
}
header .con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .con > span {
  display: flex;
  align-items: center;
}
header .con > span .logo {
  height: 40px;
  width: auto;
  margin-right: 1em;
}
@media screen and (min-width: 1225px) {
  header .con > span .logo {
    display: none;
  }
}
header .con > span .contact {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1225px) {
  header .con > span .contact {
    position: absolute;
    right: 0;
    background-color: #fff;
    z-index: 2;
  }
}
header .con > span .contact .icon {
  height: 20px;
  margin-right: 0.3em;
}
@media screen and (min-width: 1225px) {
  header .con > span .contact .icon {
    height: 40px;
  }
}
header .con > span .contact .info {
  display: grid;
  align-content: center;
}
header .con > span .contact .info span {
  font-size: 0.5em;
  color: #FF3299;
}
@media screen and (min-width: 1225px) {
  header .con > span .contact .info span {
    font-size: 0.7em;
  }
}
header .con > span .contact .info p {
  margin: 0;
  padding: 0;
  font-size: 0.7em;
  color: #252525;
}
@media screen and (min-width: 1225px) {
  header .con > span .contact .info p {
    font-size: 0.9em;
  }
}
header .con nav {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  width: 70%;
  height: 0;
  overflow-y: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1225px) {
  header .con nav {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, -50%);
    overflow-y: visible;
    height: 70px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 0;
  }
}
header .con nav.show {
  height: 70vh !important;
}
@media screen and (min-width: 768px) {
  header .con nav.show {
    width: 50%;
    height: 50vh;
  }
}
header .con .nav-sub {
  padding: 2em;
}
@media screen and (min-width: 1225px) {
  header .con .nav-sub {
    display: flex;
    padding: 0;
  }
}
header .con .nav-sub .logo {
  display: none;
}
@media screen and (min-width: 1225px) {
  header .con .nav-sub .logo {
    display: block;
    height: 150px;
    margin-right: 2em;
    background-color: #fff;
    padding: 0.5em;
    border-radius: 5px;
    position: relative;
    top: 3em;
  }
}
header .con .nav-sub ul {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1225px) {
  header .con .nav-sub ul {
    display: flex;
    align-items: center;
  }
}
header .con .nav-sub ul li {
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 1225px) {
  header .con .nav-sub ul li {
    margin-bottom: 0;
    margin: 0 0.5em;
  }
}
header .con .nav-sub ul li a {
  color: #252525;
  font-size: 1.1em;
}
@media screen and (min-width: 1225px) {
  header .con .nav-sub ul li a {
    font-size: 1em;
  }
}
header .con .nav-sub ul li a:hover {
  color: #FF3299;
  text-decoration: none;
}
header .toggler {
  width: 30px;
  height: 15px;
  position: relative;
}
@media screen and (min-width: 1225px) {
  header .toggler {
    display: none;
  }
}
header .toggler span {
  width: 100%;
  height: 2px;
  background-color: #252525;
  display: block;
  position: absolute;
  right: 0;
}
header .toggler span:nth-child(1) {
  top: 0;
}
header .toggler span:nth-child(2) {
  top: calc(50% - 1px);
}
header .toggler span:nth-child(3) {
  bottom: 0;
}
header .toggler.show span:nth-child(1) {
  top: 5px;
  transform: rotateZ(45deg);
  width: 70%;
}
header .toggler.show span:nth-child(2) {
  transform: scale(0);
}
header .toggler.show span:nth-child(3) {
  top: 5px;
  transform: rotateZ(-45deg);
  width: 70%;
}
header .abstract-bg {
  display: none;
}
@media screen and (min-width: 1225px) {
  header .abstract-bg {
    display: block;
    width: 15vw;
    height: 70px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: rgba(37, 37, 37, 0.6);
  opacity: 0;
}
@media screen and (min-width: 1225px) {
  .overlay {
    display: none;
  }
}
.overlay.show {
  z-index: 5;
  opacity: 1;
}

.cross-img {
  display: none;
}
@media screen and (min-width: 1225px) {
  .cross-img {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    width: 15vw;
  }
}

.page-content-wrapper {
  margin-top: 50px;
}
@media screen and (min-width: 1225px) {
  .page-content-wrapper {
    margin-top: 70px;
  }
}

.home-hero {
  width: 100%;
  height: auto;
  background-image: url(/images/vww-group-photo-1.jpeg);
  background-size: auto 50%;
  /* background-size: cover;
  background-position: center; */
  display: flex;
  align-items: center;
}

/* Use for content that should not be blurred */
.u-non-blurred {
  position: relative;
  z-index: 1;
}
.home-hero .con {

  /* background: radial-gradient(circle, rgba(25,25,25,1) 0%, rgba(25,25,25,0.9514006286108193) 0%, rgba(255, 255, 255, 0.041) 100%); */
  padding: 100px 0;
  text-align: center;
}

.home-hero .con .hero-blur {
  padding: 10px;
  background-color: #25252588;
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .home-hero .con .hero-blur {
    width: 90%;
  }
}

.home-hero .con > img {
  width: 30px;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .home-hero .con > img {
    width: 50px;
    margin-bottom: 1em;
  }
}
.home-hero .con h3 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1em;
  color: #00FAFC;
  padding: 0 1em;
  position: relative;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif !important;
}
@media screen and (min-width: 768px) {
  .home-hero .con h3 {
    font-size: 1.2em;
  }
}
.home-hero .con h3::after, .home-hero .con h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #FF3299;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .home-hero .con h3::after, .home-hero .con h3::before {
    width: 80px;
    height: 2px;
  }
}
.home-hero .con h3::before {
  left: -30px;
}
@media screen and (min-width: 768px) {
  .home-hero .con h3::before {
    left: -80px;
    height: 2px;
  }
}
.home-hero .con h3::after {
  right: -30px;
}
@media screen and (min-width: 768px) {
  .home-hero .con h3::after {
    right: -80px;
    height: 2px;
  }
}
.home-hero .con h1 {
  color: #fff;
  font-size: 2em;
  margin: 0.3em 0;
}
@media screen and (min-width: 768px) {
  .home-hero .con h1 {
    font-size: 3em;
  }
}
.home-hero .con p {
  color: #fff;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .home-hero .con p {
    width: 60%;
    margin: 2em auto;
    font-size: 1em;
  }
}
.home-hero .con .btn {
  margin: 0 auto;
}

.about-section {
  background-color: #EDFFFF;
  position: relative;
}
@media screen and (min-width: 1225px) {
  .about-section .con {
    display: flex;
  }
}
.about-section .con .about-number-img {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 2em;
  margin-bottom: 2em;
}
@media screen and (min-width: 1225px) {
  .about-section .con .about-number-img {
    padding-bottom: 0;
    right: 4em;
    width: 50%;
  }
}
.about-section .con .about-number-img > img {
  width: 85%;
  height: auto;
  position: relative;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .about-section .con .about-number-img > img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (min-width: 1225px) {
  .about-section .con .about-number-img > img {
    height: calc(100% - 4em);
    width: 85%;
  }
}
.about-section .con .about-number-img .numbers {
  background-color: #FF3299;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .about-section .con .about-number-img .numbers {
    width: 40%;
    padding: 2em 0;
  }
}
@media screen and (min-width: 1225px) {
  .about-section .con .about-number-img .numbers {
    padding: 5em 0;
  }
}
.about-section .con .about-number-img .numbers span {
  font-size: 1em;
}
.about-section .con .about-number-img .numbers p {
  margin: 0;
  color: #fff;
  font-size: 2em;
  font-weight: 600;
  font-family: "Merriweather", serif;
  line-height: 1em;
}
@media screen and (min-width: 1225px) {
  .about-section .con .about-number-img .numbers p {
    font-size: 3em;
  }
}
.about-section .con .about-img {
  width: 100%;
  margin-bottom: 2em;
}
@media screen and (min-width: 1225px) {
  .about-section .con .about-img {
    margin-bottom: 0;
  }
}
.about-section .con .about-img img {
  width: 100%;
}
@media screen and (min-width: 1225px) {
  .about-section .con .about-img img {
    width: 90%;
  }
}
@media screen and (min-width: 1225px) {
  .about-section .con .about-img {
    width: 50%;
    margin-bottom: 0;
  }
  .about-section .con .about-img img {
    width: 90%;
  }
}
@media screen and (min-width: 1225px) {
  .about-section .con .content {
    width: 50%;
  }
}
.about-section .con .content .heading .top {
  text-transform: uppercase;
}
.about-section .con .content .about-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2em;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .about-section .con .content .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-section .con .content .about-grid .about .icon {
  width: 40px;
  height: 40px;
  background-color: #FF3299;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1em;
  margin-bottom: 0.5em;
}
.about-section .con .content .about-grid .about h4 {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
}
.about-section .con .content .about-grid .about p {
  margin: 0.5em 0;
  font-size: 1em;
}
.about-section .abstract-bg {
  position: absolute;
  right: 0;
  bottom: 2em;
  width: 200px;
  display: none;
}
@media screen and (min-width: 1225px) {
  .about-section .abstract-bg {
    display: block;
    opacity: 0.5;
    width: calc((100vw - 1100px) / 2);
  }
}
@media screen and (min-width: 1445px) {
  .about-section .abstract-bg {
    width: calc((100vw - 1300px) / 2);
  }
}

.donate-section {
  background-image: url(/images/donate-bg.png?8318d228a8173878320cca946d4b5223);
  display: flex;
  align-items: center;
}
.donate-section .con {
  text-align: center;
  color: #fff;
}
.donate-section .con .icon {
  width: 40px;
  height: 40px;
  background-color: #00FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  border-radius: 50%;
  color: #252525;
  margin: 0 auto;
}
.donate-section .con p {
  font-size: 1.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .donate-section .con p {
    width: 70%;
    margin: 1em auto;
  }
}
@media screen and (min-width: 1225px) {
  .donate-section .con p {
    font-size: 1.5em;
    width: 50%;
  }
}
.donate-section .con > span {
  font-family: "Dancing Script", cursive;
  font-size: 1em;
}
.donate-section .con .btn {
  margin: 0 auto;
  margin-top: 1em;
}

.blog-card {
  width: 100%;
  box-shadow: 0px 0px 50px rgba(2, 2, 2, 0.06);
  background-color: #fff;
  border-radius: 7px;
}
.blog-card .top {
  position: relative;
}
.blog-card .top > img {
  width: 100%;
  height: 170px;
  border-radius: 7px 7px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-card .top .date {
  width: auto;
  height: auto;
  padding: 1em 0.5em;
  position: absolute;
  right: 1em;
  bottom: 0;
  background-color: #FF3299;
  border-radius: 10px 10px 0 10px;
  display: flex;
  text-align: center;
  margin-bottom: -1em;
}
.blog-card .top .date p {
  font-size: 1.5em;
  margin: 0;
  color: #fff;
  padding: 0;
  line-height: 0.7;
}
.blog-card .top .date span {
  margin: 0;
  padding: 0;
  line-height: 0.5;
  color: #fff;
}
.blog-card .content {
  padding: 1em;
  border-radius: 0 0 7px 7px;
}
.blog-card .content .name {
  font-size: 1.3em;
  color: #252525;
  font-family: "Merriweather", serif;
  margin: 0;
}
.blog-card .content p {
  margin: 0.5em 0;
  font-size: 1em;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .content .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
}
.blog-card .content .flex .read-more {
  color: #FF3299;
  border-bottom: 2px solid #FF3299;
}
.blog-card .content .flex .read-more:hover {
  text-decoration: none;
  color: #252525;
  border-color: #252525;
}
.blog-card .content .flex .comment {
  color: #252525;
}

.latest-blogs {
  background-color: #EDFFFF;
  position: relative;
}
.latest-blogs .con {
  margin-top: 2em;
}
@media screen and (min-width: 1225px) {
  .latest-blogs .con {
    width: calc(100% - (100vw - 1225px) / 2);
    margin-left: calc((100vw - 1225px) / 2);
  }
}
@media screen and (min-width: 1445px) {
  .latest-blogs .con {
    width: calc(100% - (100vw - 1445px) / 2);
    margin-left: calc((100vw - 1445px) / 2);
  }
}
.latest-blogs .con .slider-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 2em;
}
@media screen and (min-width: 1225px) {
  .latest-blogs .con .slider-nav {
    padding-right: calc((100vw - 1225px) / 2);
  }
}
.latest-blogs .con .slider-nav > a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background-color: #FF3299;
  border-radius: 50%;
}
.latest-blogs .con .slider-nav > a:first-child {
  margin-right: 0.5em;
}
.latest-blogs .con .slider-nav > a:hover {
  background-color: #8d9297;
}
.latest-blogs .abstract-bg {
  position: absolute;
  left: 0;
  top: 50%;
  display: none;
  display: none;
}
@media screen and (min-width: 1225px) {
  .latest-blogs .abstract-bg {
    width: calc((100vw - 1225px) / 2);
    display: block;
  }
}
@media screen and (min-width: 1445px) {
  .latest-blogs .abstract-bg {
    width: calc((100vw - 1445px) / 2);
    display: block;
  }
}

.home-gallery {
  width: 100%;
  background-color: #EDFFFF;
}
.home-gallery .gallery {
  margin-top: 2em;
  width: 100%;
  display: block;
  grid-template-areas: "img-1 img-1 img-2 img-2 img-3 img-3" "img-4 img-4 img-5 img-5 img-3 img-3" "img-6 img-6 img-6 img-6 img-6 img-6" "img-6 img-6 img-6 img-6 img-6 img-6";
  gap: 0.5em;
}
.home-gallery .gallery .img-con {
  width: 100%;
  position: relative;
  margin-bottom: 1em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .home-gallery .gallery .img-con {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1225px) {
  .home-gallery .gallery .img-con {
    margin-bottom: 0;
  }
}
.home-gallery .gallery .img-con img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
  border-radius: 10px;
}
.home-gallery .gallery .img-con .name {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: auto;
  background-color: #fff;
  color: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  padding: 1em 0.5em;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.home-gallery .gallery .img-con .icon-con {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.home-gallery .gallery .img-con .icon-con .icon {
  width: 40px;
  height: 40px;
  position: relative;
  transform: scale(0);
}
.home-gallery .gallery .img-con:hover .icon-con {
  background-color: rgba(37, 37, 37, 0.7);
}
.home-gallery .gallery .img-con:hover .icon-con .icon {
  transform: scale(1);
}
.home-gallery .gallery .img-con:hover .name {
  background-color: #FF3299;
  color: #fff;
}
.home-gallery .gallery .img-con:nth-child(1) {
  grid-area: img-1;
  height: 200px;
}
@media screen and (min-width: 1225px) {
  .home-gallery .gallery .img-con:nth-child(1) {
    height: 300px;
  }
}
.home-gallery .gallery .img-con:nth-child(2) {
  grid-area: img-2;
  height: 200px;
}
@media screen and (min-width: 1225px) {
  .home-gallery .gallery .img-con:nth-child(2) {
    height: 300px;
  }
}
.home-gallery .gallery .img-con:nth-child(3) {
  grid-area: img-3;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .home-gallery .gallery .img-con:nth-child(3) {
    height: calc(400px + 1em);
  }
}
@media screen and (min-width: 1225px) {
  .home-gallery .gallery .img-con:nth-child(3) {
    height: calc(600px + 1em);
  }
}
.home-gallery .gallery .img-con:nth-child(4) {
  grid-area: img-4;
  height: 200px;
}
@media screen and (min-width: 1225px) {
  .home-gallery .gallery .img-con:nth-child(4) {
    height: 300px;
  }
}
.home-gallery .gallery .img-con:nth-child(5) {
  grid-area: img-5;
  height: 200px;
}
@media screen and (min-width: 1225px) {
  .home-gallery .gallery .img-con:nth-child(5) {
    height: 300px;
  }
}
.home-gallery .gallery .img-con:nth-child(6) {
  grid-area: img-6;
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 1225px) {
  .home-gallery .gallery .img-con:nth-child(6) {
    height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (min-width: 768px) {
  .home-gallery .gallery {
    gap: 1em;
    display: grid;
  }
}
@media screen and (min-width: 1225px) {
  .home-gallery .gallery {
    gap: 1em;
    display: grid;
  }
}
.home-gallery .btn-center {
  display: flex;
  justify-content: center;
  margin-top: 2em;
  width: 100%;
}

section.home-event {
  width: 100%;
  height: auto;
  background-image: url(/images/home-event-bg.png?07ba53e97ece802bd0bab52ab2f9e79f);
  background-size: cover;
  background-position-y: top;
  background-position-x: left;
  padding: 5em 0;
  color: #fff;
}
@media screen and (min-width: 1225px) {
  section.home-event {
    background-position-y: center;
  }
}
section.home-event .con h1 {
  font-size: 2.5em;
  color: #fff;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  section.home-event .con h1 {
    width: 60%;
  }
}
@media screen and (min-width: 1225px) {
  section.home-event .con h1 {
    width: 50%;
  }
}
section.home-event .con p {
  color: #fff;
  font-size: 1em;
}
@media screen and (min-width: 768px) {
  section.home-event .con p {
    width: 60%;
  }
}
@media screen and (min-width: 1225px) {
  section.home-event .con p {
    width: 50%;
  }
}

.home-join {
  width: 100%;
  background-color: #EDFFFF;
}
.home-join h1 {
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .home-join h1 {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 1225px) {
  .home-join h1 {
    width: 50%;
  }
}
.home-join .btn {
  margin: 0 auto;
}

.home-help {
  width: 100%;
  background-image: url(/images/orphanage-outreach-douala.jpg?6272947171c9d6316bade60ff1905551);
  background-size: cover;
  background-position-y: top;
  background-position-x: center;
}
.home-help .con {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .home-help .con {
    justify-content: flex-end;
  }
}
.home-help .con .help-sub {
  width: 100%;
  height: auto;
  padding: 2em 1em;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .home-help .con .help-sub {
    width: 400px;
    padding: 2em;
  }
}
@media screen and (min-width: 1225px) {
  .home-help .con .help-sub {
    width: 500px;
  }
}
.home-help .con .help-sub h3 {
  color: #252525;
  font-size: 1.5em;
}
.home-help .con .help-sub p {
  font-size: 1em;
  color: #252525;
}
.home-help .con .help-sub p span {
  color: #FF3299;
}
.home-help .con .help-sub ul {
  margin: 0;
}
.home-help .con .help-sub ul li {
  list-style-type: disc;
  color: #252525 !important;
  margin-bottom: 1em;
}
.home-help .con .help-sub .ranges .range-con {
  width: 100%;
  margin-bottom: 1em;
}
.home-help .con .help-sub .ranges .range-con .name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-help .con .help-sub .ranges .range-con .name span {
  font-size: 0.8em;
  color: #252525;
}
.home-help .con .help-sub .ranges .range-con .name span:first-child {
  font-size: 1em;
  font-family: "Merriweather", serif;
}
.home-help .con .help-sub .ranges .range-con .range {
  width: 100%;
  height: 5px;
  background-color: #e0e0e0;
}
.home-help .con .help-sub .ranges .range-con .range .range-sub {
  height: 100%;
  background-color: #FF3299;
  border-radius: 3px;
}
.home-help .con .help-sub .ranges .range-con.happiness .range-sub {
  width: 90%;
}
.home-help .con .help-sub .ranges .range-con.loyalty .range-sub {
  width: 70%;
}
.home-help .con .help-sub .ranges .range-con.pray .range-sub {
  width: 80%;
}

form.contact-form {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  form.contact-form .flex {
    display: flex;
    gap: 1em;
  }
}
form.contact-form textarea,
form.contact-form input {
  width: 100%;
  padding: 1em;
  font-size: 0.7em 0.3em;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #0A4A9B;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  form.contact-form textarea,
form.contact-form input {
    margin-bottom: 1em;
  }
}
form.contact-form .upload-img {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 3em 1em;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='6' ry='6' stroke='%238D9297FF' stroke-width='4' stroke-dasharray='13%2c 17' stroke-dashoffset='3' stroke-linecap='square'/%3e%3c/svg%3e");
  margin-bottom: 2em;
}
form.contact-form .upload-img > p {
  font-size: 1em;
}
form.contact-form .upload-img input {
  display: none;
}
form.contact-form .upload-img label {
  padding: 0.3em 1em;
  border: 2px solid #FF3299;
  color: #FF3299;
  border-radius: 7px;
  cursor: pointer;
}
form.contact-form .upload-img label:hover {
  background-color: rgba(255, 50, 153, 0.2);
}
form.contact-form .upload-img span {
  display: block;
  margin-top: 1em;
}
form.contact-form .upload-img span P {
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  color: #8d9297;
}

.contact-section {
  background-image: url(/images/contact-bg.png?f21eb19b743924ea783095a1c8f8e5cd);
  background-size: cover;
  background-position: center;
}
.contact-section .con .contact-sub {
  margin-top: 2em;
}
@media screen and (min-width: 1225px) {
  .contact-section .con .contact-sub {
    display: flex;
    gap: 3em;
  }
}
.contact-section .con .contact-sub .left {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1225px) {
  .contact-section .con .contact-sub .left {
    width: 50%;
  }
}
.contact-section .con .contact-sub .left h4 {
  font-size: 1.2em;
  margin: 0;
}
.contact-section .con .contact-sub .left p {
  margin: 0;
}
.contact-section .con .contact-sub .left form {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .contact-section .con .contact-sub .left form .flex {
    display: flex;
    gap: 1em;
  }
}
.contact-section .con .contact-sub .left form textarea,
.contact-section .con .contact-sub .left form input {
  width: 100%;
  padding: 1em;
  font-size: 0.7em 0.3em;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #0A4A9B;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .contact-section .con .contact-sub .left form textarea,
.contact-section .con .contact-sub .left form input {
    margin-bottom: 1em;
  }
}
.contact-section .con .contact-sub .right {
  margin-top: 3em;
  width: 100%;
  background-color: #252525;
  padding: 2em 1em;
  color: #fff;
  position: relative;
  padding-bottom: 50vw;
}
@media screen and (min-width: 1225px) {
  .contact-section .con .contact-sub .right {
    width: 40%;
    margin-top: 0;
    margin-left: 10%;
  }
}
@media screen and (min-width: 768px) {
  .contact-section .con .contact-sub .right {
    padding-bottom: 5vw;
    padding: 3em 3em;
  }
}
@media screen and (min-width: 1225px) {
  .contact-section .con .contact-sub .right {
    padding-bottom: 5vw;
  }
}
.contact-section .con .contact-sub .right h1 {
  font-size: 1.3em;
  font-weight: 400;
  color: #00FAFC;
}
.contact-section .con .contact-sub .right p {
  margin-bottom: 2em;
  color: #fff;
  font-size: 1em;
}
.contact-section .con .contact-sub .right .contact {
  margin-bottom: 1em;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-section .con .contact-sub .right .contact .icon {
  width: 30px;
  height: 30px;
  background-color: #FF3299;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #252525;
  margin-right: 0.5em;
}
.contact-section .con .contact-sub .right .contact .contact-info {
  margin-bottom: 1em;
}
.contact-section .con .contact-sub .right .contact .contact-info h4 {
  color: #fff;
  font-size: 1em;
  margin: 0;
}
.contact-section .con .contact-sub .right .contact .contact-info p {
  margin: 0;
}
.contact-section .con .contact-sub .right .abstract-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50vw;
}
@media screen and (min-width: 768px) {
  .contact-section .con .contact-sub .right .abstract-bg {
    height: 30vw;
  }
}
@media screen and (min-width: 1225px) {
  .contact-section .con .contact-sub .right .abstract-bg {
    width: 40%;
    height: auto;
  }
}

.numbers-section {
  width: 100%;
  background-color: #EDFFFF;
}
.numbers-section .con {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
@media screen and (min-width: 768px) {
  .numbers-section .con {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .numbers-section .con {
    gap: 2em;
  }
}
.numbers-section .con .number {
  width: 100%;
  border-left: 2px solid #FF3299;
  padding: 0 1em;
  margin-bottom: 1em;
}
.numbers-section .con .number h1 {
  font-size: 2em;
  font-weight: 600;
  margin: 0;
}
.numbers-section .con .number p {
  margin: 0;
  font-size: 1em;
  line-height: 1;
}

footer {
  background-image: url(/images/footer-bg.png?8c6e66639f693195d4e0d812b38e4809);
  background-size: cover;
  background-position: left;
}
footer .footer-sub {
  width: 100%;
  height: 100%;
  background-color: rgba(11, 13, 23, 0.8);
  padding: 3em 0;
}
@media screen and (min-width: 768px) {
  footer .footer-sub .con {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5em;
  }
}
@media screen and (min-width: 1225px) {
  footer .footer-sub .con {
    grid-template-columns: repeat(4, 1fr);
    gap: 5em;
  }
}
footer .footer-sub .con .sub {
  margin-bottom: 2em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  footer .footer-sub .con .sub {
    width: 100%;
  }
}
footer .footer-sub .con .sub .logo {
  width: 200px;
}
footer .footer-sub .con .sub p {
  color: #fff;
  font-size: 1em;
}
footer .footer-sub .con .sub .social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
footer .footer-sub .con .sub .social a {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  margin-right: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
}
footer .footer-sub .con .sub .social a:hover {
  color: #fff;
  text-decoration: none;
}
footer .footer-sub .con .sub .social a.facebook {
  background-color: #3b5999;
}
footer .footer-sub .con .sub .social a.facebook:hover {
  background-color: #2d4474;
}
footer .footer-sub .con .sub .social a.twitter {
  background-color: #55acee;
}
footer .footer-sub .con .sub .social a.twitter:hover {
  background-color: #2795e9;
}
footer .footer-sub .con .sub .social a.linked-in {
  background-color: #0077b5;
}
footer .footer-sub .con .sub .social a.linked-in:hover {
  background-color: #005582;
}
footer .footer-sub .con .sub .title {
  font-size: 1.2em;
  color: #00FAFC;
  margin-bottom: 1em;
  font-family: "Merriweather", serif;
}
footer .footer-sub .con .sub ul {
  margin: 0;
  padding: 0;
}
footer .footer-sub .con .sub ul li {
  margin-bottom: 0.3em;
}
footer .footer-sub .con .sub ul li a {
  text-decoration: none;
  color: #fff;
}
footer .footer-sub .con .sub ul li a:hover {
  background-color: #FF3299;
}
footer .footer-sub .con .sub .article {
  width: 100%;
  display: flex;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}
footer .footer-sub .con .sub .article:last-child {
  border-bottom: none;
}
footer .footer-sub .con .sub .article > img {
  width: 100px;
  height: 70px;
  margin-right: 0.5em;
}
footer .footer-sub .con .sub .article .content .name {
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1em;
}
footer .footer-sub .con .sub .article .content .time {
  font-size: 0.8em;
  color: #8d9297;
}
footer .footer-sub .con .sub form {
  width: 100%;
  height: 40px;
  display: flex;
}
footer .footer-sub .con .sub form input {
  height: 40px;
  width: calc(100% - 40px);
  background-color: #fff;
  border-radius: 7px 0 0 7px;
  padding: 0 0.5em;
}
footer .footer-sub .con .sub form button {
  width: 40px;
  height: 40px;
  border-radius: 0 7px 7px 0;
  background-color: #FF3299;
  color: #fff;
  cursor: pointer;
}
footer .footer-sub .con .sub form button:hover {
  background-color: #cb0066;
}

.footer-bottom {
  width: 100%;
  background-color: #000F21;
  padding: 1em 0;
}
@media screen and (min-width: 768px) {
  .footer-bottom .con {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-bottom .con p {
  color: #fff;
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .footer-bottom .con p {
    margin: 0;
  }
}
.footer-bottom .con ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.footer-bottom .con ul li {
  margin-right: 1em;
}
.footer-bottom .con ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8em;
}
.footer-bottom .con ul li a:hover {
  text-decoration: underline;
}

.breadcrumb {
  width: 100%;
  background-image: url(/images/about-hero-bg.png?6c171e7da4b5a82a25858889ec7dd81d);
  background-position: top;
  background-size: cover;
  padding: 5em 0;
  position: relative;
}
.breadcrumb .sub .con {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb .sub .con .breadcrumb-sub {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
  padding: 0 1em;
}
.breadcrumb .sub .con .breadcrumb-sub::before, .breadcrumb .sub .con .breadcrumb-sub::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #FF3299;
  top: calc(50% - 1px);
}
.breadcrumb .sub .con .breadcrumb-sub::before {
  left: -50px;
}
.breadcrumb .sub .con .breadcrumb-sub::after {
  right: -50px;
}
@media screen and (min-width: 768px) {
  .breadcrumb .sub .con .breadcrumb-sub::before, .breadcrumb .sub .con .breadcrumb-sub::after {
    width: 100px;
  }
  .breadcrumb .sub .con .breadcrumb-sub::before {
    left: -100px;
  }
  .breadcrumb .sub .con .breadcrumb-sub::after {
    right: -100px;
  }
}
.breadcrumb .sub .con .breadcrumb-sub h3 {
  color: #00FAFC;
  font-size: 1em;
  font-family: "Open Sans", sans-serif !important;
  margin: 0;
  padding: 0;
}
.breadcrumb .sub .con .breadcrumb-sub h1 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 1.5em;
  text-transform: capitalize;
}
@media screen and (min-width: 1225px) {
  .breadcrumb .sub .con .breadcrumb-sub h1 {
    font-size: 2.5em;
  }
}
.breadcrumb .logo {
  width: 60px;
  height: 60px;
  background-color: #FF3299;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 2;
  transform: translate(-50%, -50%);
  border: 5px solid #EDFFFF;
}
.breadcrumb .logo img {
  width: 60%;
}

.about-video {
  width: 100%;
  background-image: url(/images/video-bg.png?d39aae4fbf31fe27bc40cdd6f17cb7d9);
  text-align: center;
}
.about-video p {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 2em;
}
.about-video .play-con {
  width: calc(50px + 2em);
  height: calc(50px + 2em);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
  -webkit-animation: color-change-1x 1s linear infinite alternate both;
  animation: color-change-1x 1s linear infinite alternate both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes color-change-1x {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@keyframes color-change-1x {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.3);
  }
}
.about-video .play-con .play {
  width: calc(50px + 1em);
  height: calc(50px + 1em);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  margin: 0 auto;
  -webkit-animation: color-change-2x 1s linear infinite alternate both;
  animation: color-change-2x 1s linear infinite alternate both;
}
@-webkit-keyframes color-change-2x {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
@keyframes color-change-2x {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.about-video .play-con .play .play-sub {
  width: 50px;
  height: 50px;
  background-color: #FF3299;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .about-sec-3 .con {
    display: flex;
  }
}
.about-sec-3 .con .left {
  width: 100%;
  padding: 2em 1em;
  text-align: center;
  background-color: #FF3299;
}
@media screen and (min-width: 768px) {
  .about-sec-3 .con .left {
    width: 50%;
    padding: 2em;
  }
}
.about-sec-3 .con .left h3 {
  font-size: 1.5em;
  color: #fff;
}
.about-sec-3 .con .left img {
  width: 40%;
  margin: 0 auto;
}
@media screen and (min-width: 1225px) {
  .about-sec-3 .con .left img {
    width: 150px;
    margin-bottom: 1em;
  }
}
.about-sec-3 .con .left p {
  font-size: 1em;
  color: #fff;
}
@media screen and (min-width: 1225px) {
  .about-sec-3 .con .left p {
    width: 70%;
    margin: 0 auto;
  }
}
.about-sec-3 .con .right {
  width: 100%;
  padding: 2em 1em;
  text-align: center;
  background-color: #e0e0e0;
}
@media screen and (min-width: 768px) {
  .about-sec-3 .con .right {
    width: 50%;
    padding: 2em;
  }
}
.about-sec-3 .con .right h3 {
  font-size: 1.5em;
  color: #252525;
}
.about-sec-3 .con .right img {
  width: 40%;
  margin: 0 auto;
}
@media screen and (min-width: 1225px) {
  .about-sec-3 .con .right img {
    width: 130px;
    margin-bottom: 1em;
  }
}
.about-sec-3 .con .right p {
  font-size: 1em;
  color: #252525;
}
@media screen and (min-width: 1225px) {
  .about-sec-3 .con .right p {
    width: 70%;
    margin: 0 auto;
  }
}

.members-section {
  width: 100%;
}
.members-section .heading {
  margin-bottom: 3em;
}
.members-section .members-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
@media screen and (min-width: 768px) {
  .members-section .members-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
}
@media screen and (min-width: 1225px) {
  .members-section .members-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3em;
  }
}
@media screen and (min-width: 1445px) {
  .members-section .members-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 3em;
  }
}

.member-card {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
}
.member-card:hover .img-con .icon-con {
  opacity: 1;
}
.member-card .img-con {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 1225px) {
  .member-card .img-con {
    height: 250px;
  }
}
.member-card .img-con img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 1225px) {
  .member-card .img-con img {
    height: 250px;
  }
}
.member-card .img-con .icon-con {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #fff;
  background-color: rgba(255, 50, 153, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  opacity: 0;
}
@media screen and (min-width: 1225px) {
  .member-card .img-con .icon-con {
    height: 250px;
  }
}
.member-card .info {
  width: 100%;
  background-color: #002D2E;
  border-radius: 0 0 10px 10px;
}
.member-card .info .sub {
  width: 100%;
  height: auto;
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 1em;
  background-image: url(/images/mamber-card-plus.svg?9dda2f47fa088434c3501356956a86bd);
  background-size: 30%;
  background-position-x: 100%;
  background-position-y: 100%;
  background-repeat: no-repeat;
}
.member-card .info .sub p {
  color: #fff;
  font-size: 1.1em;
  padding: 0;
  margin: 0;
  font-family: "Merriweather", serif;
  text-align: center;
}
.member-card .info .sub h5 {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 0.9em;
  color: #FF3299;
  font-family: "Open Sans", sans-serif !important;
}

.contact-content {
  width: 100%;
  background-color: #EDFFFF;
  position: relative;
}
.contact-content .contact-con {
  text-align: center;
  position: relative;
  z-index: 2;
}
.contact-content .contact-con > p {
  font-size: 1em;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-content .contact-con > p {
    width: 50%;
  }
}
@media screen and (min-width: 1225px) {
  .contact-content .contact-con .form-con {
    width: 700px;
    margin: 0 auto;
  }
}
.contact-content .abstract-bg {
  height: 90%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.contact-content .abstract-bg-2 {
  position: absolute;
  bottom: 50%;
  left: 0;
  z-index: 1;
  display: none;
  display: none;
}
@media screen and (min-width: 1225px) {
  .contact-content .abstract-bg-2 {
    width: calc((100vw - 1225px) / 1);
    display: block;
  }
}
@media screen and (min-width: 1445px) {
  .contact-content .abstract-bg-2 {
    width: calc((100vw - 1445px) / 1);
    display: block;
  }
}
.contact-content .contact-bottom {
  width: 100%;
  margin: 3em 0 0 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .contact-content .contact-bottom .con {
    display: flex;
    gap: 2em;
  }
}
.contact-content .contact-bottom .con .contact-info {
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .contact-content .contact-bottom .con .contact-info {
    width: 33%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .contact-content .contact-bottom .con .contact-info:nth-child(2) {
    border-left: 1px solid #FF3299;
    border-right: 1px solid #FF3299;
  }
}
.contact-content .contact-bottom .con .contact-info .icon {
  width: 50px;
  height: 50px;
  background-color: #FF3299;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto;
}
.contact-content .contact-bottom .con .contact-info h4 {
  font-size: 1.3em;
  margin: 0;
  padding: 0;
  margin-top: 0.5em;
  text-align: center;
}
.contact-content .contact-bottom .con .contact-info ul {
  margin: 0;
  padding: 0;
}
.contact-content .contact-bottom .con .contact-info ul li {
  font-size: 1em;
  color: #252525;
}
.contact-content .contact-bottom .con .contact-info ul li span {
  font-weight: 600;
}

.map {
  width: 100%;
}
.map img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.activities-page {
  background-color: #EDFFFF;
}
.activities-page .con {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1225px) {
  .activities-page .con {
    flex-wrap: nowrap;
    flex-direction: initial;
  }
}
@media screen and (min-width: 1225px) {
  .activities-page .con .activities-con {
    width: calc(100% - 300px);
  }
}
.activities-page .con .activities-con .activities-grid {
  width: 100%;
  display: grid;
  gap: 2em;
}
@media screen and (min-width: 768px) {
  .activities-page .con .activities-con .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1225px) {
  .activities-page .con .activities-con .activities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
}
.activities-page .con .activities-con img.cover-img {
  width: 100%;
  height: 300px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.activities-page .con .activities-con p {
  font-size: 1em;
}
.activities-page .con .activities-con p.curved-text {
  font-family: "Dancing Script", cursive;
  font-size: 1.5em;
}
.activities-page .con .activities-con p.highlighted-text {
  background-color: #FF3299;
  padding: 1em;
  color: #fff;
}
.activities-page .con .activities-con .img-grid {
  width: 100%;
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr;
  gap: 1em;
}
.activities-page .con .activities-con .img-grid img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .activities-page .con .activities-con .img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.activities-page .con .activities-con .page-navigator {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2em;
}
.activities-page .con aside {
  width: 100%;
}
@media screen and (min-width: 1225px) {
  .activities-page .con aside {
    margin-right: 2em;
    width: 300px;
  }
}
.activities-page .con aside .aside-sub {
  width: 100%;
  background-color: #fff;
  padding: 1em;
  border-radius: 7px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  margin-bottom: 2em;
}
@media screen and (min-width: 1225px) {
  .activities-page .con aside .aside-sub {
    padding: 2em 1em;
  }
}
.activities-page .con aside .aside-sub .aside-heading {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
.activities-page .con aside .aside-sub .aside-heading h5 {
  font-size: 1.3em;
  margin: 0;
  padding: 0;
  margin-right: 0.5em;
}
.activities-page .con aside .aside-sub .aside-heading span {
  width: auto;
  height: 3px;
  background-color: #FF3299;
  display: inline-block;
  flex-grow: 1;
  border-radius: 2px;
}
.activities-page .con aside .aside-sub .category {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.3em;
}
.activities-page .con aside .aside-sub .category i {
  color: #FF3299;
  margin-right: 0.3em;
}
.activities-page .con aside .aside-sub .category a {
  margin: 0;
  text-decoration: none;
  color: #252525;
}
.activities-page .con aside .aside-sub .category a:hover {
  color: #FF3299;
}
.activities-page .con aside .aside-sub .article {
  width: 100%;
  display: flex;
  margin-bottom: 1em;
}
.activities-page .con aside .aside-sub .article > img {
  width: 100px;
  height: 70px;
  margin-right: 0.5em;
  border-radius: 5px;
}
.activities-page .con aside .aside-sub .article .content .name {
  color: #252525;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1em;
}
.activities-page .con aside .aside-sub .article .content .time {
  font-size: 0.8em;
  color: #FF3299;
}

.pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2em auto;
}
.pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.pagination ul li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.3em;
  color: #fff;
  font-size: 1em;
  background-color: #4f4f4f;
  border-radius: 7px;
  cursor: pointer;
}
.pagination ul li a:hover {
  background-color: #FF3299;
  text-decoration: none;
}

.projects-section {
  width: 100%;
  background-color: #EDFFFF;
}
.projects-section .project {
  width: 100%;
  height: auto;
  margin-bottom: 2em;
}
.projects-section .project > img {
  width: 100%;
  height: 300px;
  border-radius: 10px 10px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.projects-section .project .content {
  width: 100%;
  padding: 1em;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .projects-section .project .content {
    padding: 2em;
  }
}
.projects-section .project .content .project-heading {
  font-size: 1.2em;
  color: #FF3299;
  text-align: left !important;
  font-family: "Merriweather", serif;
}
@media screen and (min-width: 768px) {
  .projects-section .project .content .project-heading {
    font-size: 1.5em;
    text-align: left;
  }
}
.projects-section .project .content p {
  font-size: 1em;
}

.gallery-section .con .gallery-grid > div {
  margin-bottom: 1em;
}
.gallery-section .con .gallery-grid .img-con {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  border-radius: 10px;
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.25));
  cursor: pointer;
}
.gallery-section .con .gallery-grid .img-con img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
  border-radius: 10px;
}
.gallery-section .con .gallery-grid .img-con .name {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: auto;
  background-color: #fff;
  color: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  padding: 1em 0.5em;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.gallery-section .con .gallery-grid .img-con .name::first-letter {
  text-transform: uppercase;
  color: red;
}
.gallery-section .con .gallery-grid .img-con .icon-con {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.gallery-section .con .gallery-grid .img-con .icon-con .icon {
  width: 40px;
  height: 40px;
  position: relative;
  transform: scale(0);
}
.gallery-section .con .gallery-grid .img-con:hover .icon-con {
  background-color: rgba(37, 37, 37, 0.7);
}
.gallery-section .con .gallery-grid .img-con:hover .icon-con .icon {
  transform: scale(1);
}
.gallery-section .con .gallery-grid .img-con:hover .name {
  background-color: #FF3299;
  color: #fff;
}
.gallery-section .con .gallery-grid .grid-1-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media screen and (min-width: 1225px) {
  .gallery-section .con .gallery-grid .grid-1-2 {
    flex-wrap: nowrap;
  }
}
.gallery-section .con .gallery-grid .grid-1-2 > .img-con {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .gallery-section .con .gallery-grid .grid-1-2 > .img-con {
    width: 100%;
  }
}
@media screen and (min-width: 1225px) {
  .gallery-section .con .gallery-grid .grid-1-2 > .img-con {
    width: 50%;
    height: 500px;
  }
}
.gallery-section .con .gallery-grid .grid-1-2 .sub {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media screen and (min-width: 768px) {
  .gallery-section .con .gallery-grid .grid-1-2 .sub {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1225px) {
  .gallery-section .con .gallery-grid .grid-1-2 .sub {
    width: 50%;
    flex-wrap: wrap;
  }
}
.gallery-section .con .gallery-grid .grid-1-2 .sub .img-con {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .gallery-section .con .gallery-grid .grid-1-2 .sub .img-con {
    width: 50%;
    height: auto;
  }
}
@media screen and (min-width: 1225px) {
  .gallery-section .con .gallery-grid .grid-1-2 .sub .img-con {
    width: 100%;
    height: calc(250px - 0.5em);
  }
}
.gallery-section .con .gallery-grid .grid-3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media screen and (min-width: 1225px) {
  .gallery-section .con .gallery-grid .grid-3 {
    flex-wrap: nowrap;
  }
}
.gallery-section .con .gallery-grid .grid-3 .img-con {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .gallery-section .con .gallery-grid .grid-3 .img-con {
    width: 100%;
  }
}
@media screen and (min-width: 1225px) {
  .gallery-section .con .gallery-grid .grid-3 .img-con {
    width: 33%;
  }
}
@media screen and (min-width: 768px) {
  .gallery-section .con .gallery-grid .grid-3 .sub {
    width: 100%;
    display: flex;
    gap: 1em;
  }
  .gallery-section .con .gallery-grid .grid-3 .sub .img-con {
    width: 50%;
  }
}
@media screen and (min-width: 1225px) {
  .gallery-section .con .gallery-grid .grid-3 .sub {
    width: 66%;
    display: flex;
    gap: 1em;
  }
  .gallery-section .con .gallery-grid .grid-3 .sub .img-con {
    width: 50%;
  }
}
.gallery-section .con .gallery-grid .grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media screen and (min-width: 768px) {
  .gallery-section .con .gallery-grid .grid-2 {
    flex-wrap: nowrap;
  }
  .gallery-section .con .gallery-grid .grid-2 .img-con {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .uk-modal-dialog img {
    width: 600px;
  }
}
@media screen and (min-width: 1225px) {
  .uk-modal-dialog img {
    width: 800px !important;
  }
}
.uk-modal-dialog p::first-letter {
  text-transform: uppercase;
}
