* {
  box-sizing: border-box;
}

:root {
  --font-poppins: "Poppins", sans-serif;
  --font-lora: "Lora", serif;
  --primary-color: #0553d2;
  --secondary-color: #1dabfd;
  --black-color: #151716;
  --white-color: #ffffff;
  --light-bg: rgba(210, 217, 223,0.4);
}

html {
  width: 100%;
  overflow-x: hidden;
  font-size: 14px;
  margin-top: 0 !important;
}
@media only screen and (min-width: 1200px) {
  html {
    font-size: 1vw;
  }
}
@media only screen and (min-width: 1920px) {
  html {
    font-size: 0.833vw;
  }
}

body {
  font-family: var(--font-lora);
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0px;
  line-height: 1.5;
  letter-spacing: 0.35px;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-poppins);
}

p {
  margin: 0 0 0.625rem;
  font-size: 1.125rem;
  line-height: 1.625;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.container {
  width: 90vw;
  max-width: 100%;
  padding: 0 1rem;
  margin: auto;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-bottom {
  padding-bottom: 5rem;
}

.section-padding-top {
  padding-top: 5rem;
}

.text-center {
  text-align: center;
}

a {
  text-decoration: none;
}

.btn {
  font-family: var(--font-poppins);
  background: var(--primary-color);
  color: var(--white-color);
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  min-width: 15rem;
  padding: 1.5rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.5s ease-in-out;
  display: inline-flex;
  position: relative;
  border-radius: 0.25rem;
}
.btn span {
  position: relative;
}
.btn img {
  opacity: 0;
  visibility: hidden;
  margin: auto;
  font-size: 0.75rem;
  position: absolute;
  top: 0rem;
  bottom: 0;
  right: 0;
  width: 0.75rem;
}
.btn img, .btn span {
  transition: all 0.5s ease-in-out;
}
.btn:hover img {
  opacity: 1;
  visibility: visible;
}
.btn:hover span {
  padding-right: 1.375rem;
}

header {
  padding: 0.75rem 0;
  transition: all 0.25s ease-in-out;
  background: var(--white-color);
}
header.active {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
header .logo {
  display: flex;
}
header .logo img {
  width: auto;
  max-height: 5rem;
}
header .inner-wrapper {
  justify-content: space-between;
}
header ul {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  position: relative;
  z-index: 1;
}
header .dropdown {
  display: none;
}
header a,
header span {
  color: var(--primary-color);
  text-decoration: none;
  font-family: var(--font-poppins);
  font-weight: 500;
  padding: 0;
  background: transparent;
  border-radius: 0.25rem;
  transition: all 0.5s ease-in-out;
  position: relative;
  display: flex;
  z-index: 1;
  font-size: 1rem;
}
header .toggle-icon {
  display: none;
}
header .toggle-icon img {
  max-height: 16px;
}
header .closeicon {
  display: none;
  width: 0.75rem;
  height: 0.75rem;
}
header .closeicon img {
  max-height: 0.75rem;
}

.border-box {
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
}

.two-column {
  -moz-column-gap: 4%;
       column-gap: 4%;
}
.two-column .item {
  width: 48%;
}

.title {
  font-size: 2.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.25px;
  color: var(--primary-color);
}

.heading-wrapper {
  margin-bottom: 2rem;
  width: 48rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.heading-wrapper .title {
  font-family: var(--font-poppins);
  margin-bottom: 10px;
}

.banner .inner-wrapper {
  min-height: calc(85vh - 8rem);
  position: relative;
}
.banner .banner-bg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner .content-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 2rem;
  text-align: left;
  position: relative;
  min-height: calc(85vh - 8rem);
}
.banner .content-box::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.banner .content {
  width: 50rem;
  max-width: 100%;
  color: var(--white-color);
  position: relative;
  z-index: 1;
}
.banner h1 {
  font-size: 2.125rem;
  margin-top: 0;
  line-height: 1.35;
  width: 90%;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.banner p {
  font-size: 1.375rem;
  font-weight: 500;
  margin-top: 1rem;
}
.banner .btn-wrapper {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
}
.banner .btn {
  min-width: 12rem;
}
.banner .mobile {
  display: none;
}
.banner.innerbanner .inner-wrapper {
  min-height: calc(60vh - 6rem);
}
.banner.innerbanner .content-box {
  min-height: calc(60vh - 6rem);
  padding: 14rem 4rem 2rem;
  text-align: left;
  align-items: flex-start;
}
.banner.innerbanner h1 {
  width: 100%;
}

.breadcrumb {
  padding: 2rem 4rem 1rem;
  display: flex;
  align-items: center;
  border-radius: 0 0 0.5rem 0.5rem;
  background: var(--light-bg);
  margin-top: -0.75rem;
}
.breadcrumb li {
  position: relative;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
  font-family: var(--font-poppins);
}
.breadcrumb li::after {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 0.0625rem solid var(--primary-color);
  border-bottom: 0.0625rem solid var(--primary-color);
  top: 0.5rem;
  right: -0.125rem;
  display: flex;
  transform: rotate(-45deg);
}
.breadcrumb li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb a {
  color: var(--primary-color);
}

.about-section .inner-wrapper {
  flex-wrap: wrap;
}
.about-section .btn-wrapper {
  margin-top: 2rem;
}

.aboutus .inner-wrapper {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 6%;
       column-gap: 6%;
}
.aboutus .content-box {
  width: 54%;
}
.aboutus .img-wrapper {
  width: 40%;
  display: flex;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.25);
}
.aboutus .tagline {
  font-size: 1.25rem;
  padding-left: 5rem;
  position: relative;
  font-style: italic;
  padding-top: 2rem;
  margin-top: 2rem;
  line-height: 1.65;
  text-transform: capitalize;
}
.aboutus .tagline::before {
  content: '"';
  position: absolute;
  font-size: 8rem;
  font-weight: 600;
  color: var(--black-color);
  opacity: 0.25;
  width: 5rem;
  height: 2.5rem;
  left: 0;
  top: 0;
  line-height: 1;
}
.aboutus .tagline p {
  margin-bottom: 0;
  font-size: 1.25rem;
}
.aboutus .listing {
  flex-direction: column;
  row-gap: 5rem;
}
.aboutus .list:nth-child(odd) .img-wrapper {
  order: 2;
}
.aboutus .list:nth-child(odd) .content-box {
  order: 1;
}

.services-section .inner-wrapper {
  background: var(--light-bg);
  padding: 80px 24px;
  border-radius: 8px;
}
.services-section .items {
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.services-section .item {
  flex: 1 1 24%;
}
.services-section .item p {
  font-size: 1rem;
  margin-bottom: 0;
}
.services-section .border-box {
  margin-bottom: 20px;
  display: flex;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.15);
}
.services-section .name {
  font-size: 1rem;
  font-family: var(--font-poppins);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.values-section .items {
  -moz-column-gap: 6%;
       column-gap: 6%;
  flex-wrap: wrap;
}
.values-section .item {
  flex: 1 1 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.values-section .icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.values-section .icon-wrapper img {
  max-height: 34px;
}
.values-section .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
  text-transform: capitalize;
}
.values-section p {
  margin-bottom: 0;
  font-size: 14px;
}

.impact .inner-wrapper {
  -moz-column-gap: 4%;
       column-gap: 4%;
  align-items: center;
}
.impact .heading-wrapper {
  width: 36%;
  margin-bottom: 0;
}
.impact .heading-wrapper p {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}
.impact .items {
  width: 60%;
  -moz-column-gap: 2%;
       column-gap: 2%;
  row-gap: 1.5rem;
  flex-wrap: wrap;
}
.impact .item {
  flex: 1 1 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #566885;
  min-height: 18rem;
}
.impact .item p {
  margin-bottom: 0;
  font-size: 1.125rem;
  color: var(--white-color);
}
.impact .icon-wrapper {
  width: 5rem;
  height: 5rem;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.impact .icon-wrapper img {
  max-height: 2.75rem;
  filter: brightness(0);
}
.impact .name {
  font-size: 2.25rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--white-color);
  text-transform: capitalize;
  font-family: var(--font-poppins);
}

.faq-section .items {
  -moz-column-gap: 2%;
       column-gap: 2%;
  row-gap: 1rem;
}
.faq-section .item {
  width: 32%;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--light-bg);
}
.faq-section .item p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.faq-section .stars {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  margin-bottom: 2rem;
}
.faq-section .stars img {
  max-height: 0.875rem;
}
.faq-section .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-family: var(--font-poppins);
}
.faq-section .date {
  opacity: 0.85;
  font-size: 0.875rem;
}

.gallery .items {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "one one two three" "one one four five";
  grid-gap: 1rem;
  transition: all 0.5s ease-in-out;
}
.gallery .item {
  width: 24.25%;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  display: flex;
  height: 100%;
  aspect-ratio: 1/0.75;
}
.gallery .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery .item.item-1 {
  grid-area: one;
}
.gallery .item.item-2 {
  grid-area: two;
}
.gallery .item.item-3 {
  grid-area: three;
}
.gallery .item.item-4 {
  grid-area: four;
}
.gallery .item.item-5 {
  grid-area: five;
}
.gallery .btn-wrapper {
  justify-content: center;
  margin-top: 3rem;
}
.gallery.gallery-pg .items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2%;
}
.gallery.gallery-pg .item {
  width: 32%;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.15);
}
.gallery.gallery-pg .inner-wrapper {
  display: flex;
  -moz-column-gap: 3%;
       column-gap: 3%;
  flex-wrap: wrap;
}
.gallery.gallery-pg .left {
  width: 25%;
}
.gallery.gallery-pg .right {
  width: 72%;
}
.gallery .gallery-list {
  display: none;
}
.gallery .gallery-list.active {
  display: block;
}
.gallery .tabs {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 7.5rem;
}
.gallery .tabs li {
  display: flex;
  padding: 1rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.15);
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-poppins);
  color: var(--black-color);
  cursor: pointer;
  background: var(--light-bg);
}
.gallery .tabs li.active {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.get-involved .items {
  width: 100%;
  max-width: 100%;
  margin: auto;
  row-gap: 1rem;
  flex-direction: row;
  position: relative;
  overflow: hidden;
}
.get-involved .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.get-involved .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  flex: 1;
  padding: 2.5rem 1.5rem;
  min-height: 18rem;
  background: rgba(5, 83, 210, 0.75);
  border: 1px solid var(--white-color);
  position: relative;
  transition: all 0.5s ease-in-out;
}
.get-involved .item:nth-child(odd) {
  background: rgba(29, 171, 253, 0.85);
}
.get-involved .item:hover {
  background: var(--primary-color);
}
.get-involved .item:hover:nth-child(odd) {
  background: var(--secondary-color);
}
.get-involved .item:hover .content {
  padding-bottom: 3.5rem;
}
.get-involved .item:hover .btn-sm {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.get-involved .icon-box {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.get-involved .icon-box img {
  max-width: 4rem;
  max-height: 4rem;
  filter: brightness(0) invert(1);
}
.get-involved .text {
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white-color);
  margin-top: 1rem;
}
.get-involved .content {
  padding-bottom: 0;
  position: relative;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.get-involved .btn-sm {
  position: absolute;
  font-family: var(--font-poppins);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--primary-color);
  background: var(--white-color);
  width: -moz-max-content;
  width: max-content;
  bottom: -50%;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.map-wrapper iframe {
  max-width: 100%;
}

.location {
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  -moz-column-gap: 2%;
       column-gap: 2%;
  row-gap: 2rem;
  flex-wrap: wrap;
}
.location li {
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.location li .icon-wrapper {
  width: 4.125rem;
  height: 4.125rem;
  min-width: 4.125rem;
  background: var(--white-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.location li .icon-wrapper img {
  filter: brightness(0);
  max-height: 2rem;
}

.social-icons {
  -moz-column-gap: 1.125rem;
       column-gap: 1.125rem;
  align-items: center;
}
.social-icons img {
  max-height: 20px;
}
.social-icons a {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.375rem;
  background: var(--white-color);
  justify-content: center;
  align-items: center;
}
.social-icons a img {
  max-width: 1.125rem;
  max-height: 1.125rem;
  filter: brightness(1) invert(1);
}

.sponsor .item {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  padding: 0.125rem;
  width: 100%;
}
.sponsor .img-wrapper {
  max-width: 240px;
  max-height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.0625rem solid #dddddd;
}
.sponsor .img-wrapper img {
  max-height: 200px;
  height: auto;
}
.sponsor .name {
  font-family: var(--font-poppins);
  font-size: 1rem;
  text-align: center;
  font-weight: 600;
  padding: 0.25rem 0 0;
}

.footer {
  padding: 2.5rem 0px;
  background: var(--black-color);
}
.footer .left,
.footer .right {
  width: 47%;
}
.footer .inner-wrapper {
  display: flex;
  row-gap: 40px;
  text-align: center;
  width: 100%;
  -moz-column-gap: 6%;
       column-gap: 6%;
  flex-wrap: wrap;
}
.footer .left-top {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10%;
       column-gap: 10%;
}
.footer .left-top-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .left-top-right {
  width: 45%;
}
.footer .img-wrapper {
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  background: var(--white-color);
}
.footer .img-wrapper img {
  max-height: 80px;
}
.footer .top {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.footer .sm-title {
  color: var(--white-color);
  text-align: left;
  font-family: var(--font-poppins);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
}
.footer .sm-title::after {
  content: "";
  position: absolute;
  left: 0;
  height: 0.25rem;
  width: 4.5rem;
  background: var(--white-color);
  bottom: 0;
  left: 0;
}
.footer .links {
  -moz-column-gap: 2%;
       column-gap: 2%;
  row-gap: 1.5rem;
  flex-wrap: wrap;
}
.footer .link {
  width: 48%;
  text-align: left;
  position: relative;
  padding-left: 1rem;
}
.footer .link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--white-color);
}
.footer .link a {
  font-size: 1rem;
}
.footer .a-items {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  color: var(--white-color);
}
.footer .a-title {
  font-family: var(--font-poppins);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.footer .a-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white-color);
  transition: all 0.25s ease-in-out;
  transform: none;
}
.footer .a-title.active::after {
  transform: rotate(45deg);
}
.footer .a-content {
  margin-top: 0.5rem;
  display: none;
}
.footer .a-content.open {
  display: block;
}
.footer .a-map {
  margin-top: 1rem;
}
.footer .a-map iframe {
  max-width: 100%;
}
.footer .a-address {
  text-align: left;
  font-size: 1rem;
}
.footer .left-bottom {
  margin-top: 3rem;
}
.footer span,
.footer a {
  color: var(--white-color);
  font-size: 14px;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
}
.footer .num {
  flex-direction: column;
  row-gap: 4px;
}
.footer .copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-color);
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.footer .copy {
  text-align: left;
}
.footer .design {
  text-align: right;
}

.vission-mission .list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4%;
       column-gap: 4%;
  row-gap: 1.5rem;
}
.vission-mission li {
  width: 48%;
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 20rem;
}
.vission-mission li:first-child {
  background: var(--white-color);
}
.vission-mission .title {
  margin-bottom: 1.5rem;
}
.vission-mission .name {
  margin-top: 0;
  margin-bottom: 1.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-poppins);
}
.vission-mission p {
  margin-bottom: 0;
}
.vission-mission .right {
  position: relative;
  align-items: flex-end;
}
.vission-mission .right img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.vission-mission .right h2 {
  color: var(--white-color);
  margin-bottom: 1rem;
}
.vission-mission .right p {
  color: var(--white-color);
}
.vission-mission .content {
  position: relative;
  padding: 2rem;
}

.milestone {
  overflow: hidden;
}
.milestone .items {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  position: relative;
  padding: 4rem 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.milestone .items::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0.125rem;
  height: 100%;
  margin: auto;
  background: var(--black-color);
  opacity: 0.15;
}
.milestone .item {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.milestone .item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary-color);
  border-radius: 50%;
}
.milestone .item p {
  margin-bottom: 0;
}
.milestone .item:nth-child(even) {
  justify-content: flex-start;
}
.milestone .item:nth-child(even) .content {
  align-items: flex-end;
  text-align: right;
}
.milestone .item:nth-child(even) .icon-box {
  order: 2;
}
.milestone .item:nth-child(even) .text {
  order: 1;
}
.milestone .content {
  width: 46%;
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 0.5rem;
  padding: 0rem;
  border-radius: 0.5rem;
  background: var(--light-bg);
  overflow: hidden;
}
.milestone .num {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 800;
  font-family: var(--font-poppins);
  color: var(--primary-color);
}
.milestone .icon {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  width: 90%;
}
.milestone .icon-box {
  min-height: 100%;
  width: 8rem;
  min-width: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #dddddd;
}
.milestone .icon-box img {
  filter: brightness(1) invert(1);
  opacity: 0.8;
  max-width: 4rem;
  max-height: 4rem;
}
.milestone .text {
  padding: 2rem 1rem;
}
.milestone p {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.team .items {
  gap: 3rem 2%;
  flex-wrap: wrap;
}
.team .item {
  width: 23.5%;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.team .img-wrapper {
  aspect-ratio: 1/1.125;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  overflow: hidden;
  display: flex;
}
.team .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.team .content {
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
}
.team .name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--font-poppins);
}
.team .desig {
  font-size: 0.875rem;
  font-family: var(--font-poppins);
  font-weight: 600;
}
.team .desc {
  font-size: 1rem;
}
.team .btn-wrapper {
  justify-content: center;
  margin-top: 3rem;
}
.team.slider .item {
  width: 100%;
}
.team.slider .owl-item {
  padding: 0.25rem;
}

.reports .listing {
  flex-direction: column;
  row-gap: 5rem;
}
.reports .items {
  flex-wrap: wrap;
  gap: 1rem 1.25%;
  justify-content: center;
}
.reports .item {
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
  text-align: center;
  min-height: 18rem;
  background: var(--light-bg);
}
.reports .icon-box {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
}
.reports .icon-box img {
  max-height: 4rem;
  filter: brightness(0);
  opacity: 0.75;
}
.reports .name {
  font-size: 1rem;
  font-family: var(--font-poppins);
  color: var(--black-color);
  font-weight: 600;
  min-height: 3rem;
}
.reports .btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--white-color);
  background: var(--black-color);
  font-family: var(--font-poppins);
  width: -moz-max-content;
  width: max-content;
  transition: all 0.5s ease-in-out;
  margin-top: 0.5rem;
}
.reports .btn-sm:hover {
  background: var(--primary-color);
}

.team-slider .owl-dots,
.report-slider .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.team-slider .owl-dot,
.report-slider .owl-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary-color) !important;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.team-slider .owl-dot.active,
.report-slider .owl-dot.active {
  background: var(--primary-color) !important;
  border-radius: 0.25rem;
  width: 1.5rem;
}

.has-nav .owl-nav {
  position: absolute;
  top: -5.125rem;
  right: 0;
  display: flex;
  justify-content: flex-end;
}
.has-nav .owl-prev,
.has-nav .owl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  border-radius: 50%;
  background: transparent !important;
  border: 0.0625rem dashed rgba(0, 0, 0, 0.35) !important;
}
.has-nav .owl-prev span,
.has-nav .owl-next span {
  font-size: 1.75rem;
  position: relative;
  top: -0.125rem;
}
.has-nav .owl-prev:hover,
.has-nav .owl-next:hover {
  color: var(--primary-color) !important;
}
.has-nav .owl-prev {
  margin-right: -0.5rem;
}

.pastmember .listing {
  flex-direction: column;
  row-gap: 5rem;
}
.pastmember .items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25%;
  justify-content: center;
}
.pastmember .item {
  width: 560px;
  max-width: 100%;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
  text-align: center;
  min-height: 18rem;
  background: var(--light-bg);
}
.pastmember .icon-box {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
}
.pastmember .icon-box img {
  max-height: 4rem;
  filter: brightness(0);
  opacity: 0.75;
}
.pastmember .name {
  font-size: 1rem;
  font-family: var(--font-poppins);
  color: var(--black-color);
  font-weight: 600;
}
.pastmember .btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--white-color);
  background: var(--black-color);
  font-family: var(--font-poppins);
  width: -moz-max-content;
  width: max-content;
  transition: all 0.5s ease-in-out;
  margin-top: 0.5rem;
}
.pastmember .btn-sm:hover {
  background: var(--primary-color);
}

.pointers {
  font-size: 1.125rem;
  line-height: 1.625;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 1rem;
}
.pointers li {
  position: relative;
  padding-left: 1rem;
}
.pointers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary-color);
}
.pointers li span {
  display: flex;
  font-weight: 600;
  font-family: var(--font-poppins);
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.events .items {
  flex-direction: column;
  row-gap: 5rem;
}
.events .heading-wrapper {
  width: 100%;
  text-align: left;
  padding-right: 12rem;
}
.events .img-box {
  aspect-ratio: 1/1;
}
.events .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  max-height: 100%;
}

.achievements .items {
  flex-direction: column;
  row-gap: 5rem;
}
.achievements .listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2%;
}
.achievements .list {
  width: 49%;
  display: flex;
  background: var(--light-bg);
}
.achievements .img-box {
  width: 35%;
  display: flex;
}
.achievements .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.achievements .content {
  width: 65%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.achievements .name {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-family: var(--font-poppins);
  font-weight: 600;
}
.achievements p {
  font-size: 1.125rem;
  margin-bottom: 0;
  margin-top: 0.75rem;
}

.involved .items {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
.involved .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.involved .item {
  position: relative;
  width: 68rem;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
}
.involved .item:hover .inner-wrapper {
  background: var(--primary-color);
}
.involved .inner-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(5, 83, 210, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex: 1;
  padding: 2.5rem 1.5rem;
  min-height: 18rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease-in-out;
  color: var(--white-color);
}
.involved .icon-box {
  width: 12rem;
  height: 12rem;
  min-width: 12rem;
}
.involved .icon-box img {
  filter: brightness(0) invert(1);
  width: 100%;
}
.involved .content {
  width: calc(100% - 15rem);
}
.involved .name {
  margin-bottom: 1rem;
  font-size: 1.875rem;
}
.involved .pointers li::before {
  background: var(--white-color);
}
.involved p {
  margin-bottom: 0;
  font-size: 1.25rem;
  margin-top: 1rem;
}
.involved .btn {
  background: var(--white-color);
  color: var(--black-color);
  margin-top: 2rem;
}
.involved .btn img {
  filter: brightness(0);
}

.contactus .inner-wrapper {
  display: flex;
  align-items: center;
  background: rgb(86, 104, 133);
}
.contactus .left {
  width: 50%;
  padding: 2rem;
}
.contactus .right {
  width: 50%;
}
.contactus .title {
  color: var(--white-color);
  text-align: left;
  font-family: var(--font-poppins);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
}
.contactus .title::after {
  content: "";
  position: absolute;
  left: 0;
  height: 0.375rem;
  width: 4.5rem;
  background: var(--white-color);
  bottom: 0;
  left: 0;
}
.contactus .location {
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 2rem;
  width: 80%;
}
.contactus .location li .icon-wrapper {
  width: 4.5rem;
  height: 4.5rem;
  min-width: 4.5rem;
}
.contactus .location li a {
  font-size: 1.125rem;
  color: var(--white-color);
  transition: all 0.25s ease-in-out;
}
.contactus .location li a:hover {
  color: var(--white-color);
}
.contactus .img-wrapper {
  display: flex;
  overflow: hidden;
}
.contactus .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.enquire-form .form-wrapper {
  background: var(--primary-color);
  padding: 2rem;
  width: 100%;
  width: 62rem;
  max-width: 100%;
  margin: 0 auto;
}

.thank-you {
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thank-you .mainHeading {
  margin-bottom: 1rem;
}
.thank-you .btn {
  margin-top: 1.5rem;
}/*# sourceMappingURL=style.css.map */