@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Optional: responsive */

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
  color: #32404d;
  margin: 0;
  padding: 0;
}

.site-content {
  margin-top: 0px;
}

.header-area {
  background: #fff;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
}

.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0.375rem 2rem rgba(30, 44, 78, 0.16);
  animation: stickyFadeIn 0.4s;
  z-index: 1001;
  padding: 0 2%;
}

.header-area__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-area__logo img {
  height: 56px;
  width: auto;
  max-width: 160px;
}

.header-area__nav .main-nav__list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgb(82, 85, 96);
}
.header-area__nav .main-nav__list .menu-item {
  position: relative;
  padding: 2rem 0;
}
.header-area__nav .main-nav__list .menu-item a {
  position: relative;
  color: rgb(82, 85, 96);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 0;
  transition: color 0.3s ease;
  padding: 2rem 0;
}
.header-area__nav .main-nav__list .menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(253, 126, 20);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.header-area__nav .main-nav__list .menu-item a:hover {
  color: rgb(253, 126, 20);
}
.header-area__nav .main-nav__list .menu-item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-area__nav .main-nav__list .menu-item .sub-menu-toggle {
  display: none;
}
.header-area__nav .main-nav__list .menu-item .sub-menu {
  display: none;
  width: 21.563rem;
  border-radius: 0.75rem;
  background: rgb(255, 255, 255);
  background: #fff;
  margin: 0;
  padding: 5px 0;
  position: absolute;
  top: 5.5rem;
  left: -5rem;
  box-shadow: 0 4px 0.75rem rgba(0, 0, 0, 0.1);
  z-index: 99;
}
.header-area__nav .main-nav__list .menu-item .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-bottom: 0.625rem solid #fff;
}
.header-area__nav .main-nav__list .menu-item .sub-menu .menu-item {
  list-style: none;
  padding: 2px 0.75rem;
  font-size: 1.375rem;
  color: #222;
  transition: all 0.5s;
}
.header-area__nav .main-nav__list .menu-item .sub-menu .menu-item a {
  color: rgb(0, 0, 0);
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
.header-area__nav .main-nav__list .menu-item .sub-menu .menu-item a:hover {
  color: rgb(237, 128, 26);
}
.header-area__nav .main-nav__list .menu-item:hover .sub-menu {
  display: block;
}
.header-area__nav .main-nav__list .menu-item.menu-item-has-children::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  vertical-align: middle;
  transition: all 0.5s;
  display: inline-block;
}
.header-area__nav .main-nav__list .menu-item.menu-item-has-children:hover::after {
  transform: rotate(180deg);
}
.header-area__nav .main-nav__list .menu-item.menu-item-has-children:hover a::after {
  display: none;
}
.header-area__nav .main-nav__list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
}
.header-area__nav .main-nav__list__logo img {
  height: 56px;
  width: auto;
  max-width: 160px;
}
.header-area__nav .main-nav__list__nav .main-nav__list {
  display: flex;
  gap: 0px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-area__nav .main-nav__list__nav .main-nav__list li {
  color: rgb(82, 85, 96);
}
.header-area__nav .main-nav__list__nav .main-nav__list li a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 0.75rem 1.5rem;
}
.header-area__nav .main-nav__list__nav .main-nav__list li a:hover {
  color: #007a5c;
}
.header-area__nav .main-nav__list__nav .main-nav__list li.current_page_item a {
  color: #007a5c;
  font-weight: 700;
}
.header-area__nav .main-nav__list__nav .main-nav__list.open {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  width: 100vw;
  background: #fff;
  position: absolute;
  left: 0;
  top: 100%;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
  z-index: 1002;
}
.header-area__nav .main-nav__list__nav .nav-link {
  color: #32404d;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 0 0.5rem;
  transition: color 0.3s;
}
.header-area__nav .main-nav__list__nav .nav-link:hover {
  color: #007a5c;
}
.header-area__nav .main-nav__list__nav .nav-link.active {
  color: #007a5c;
}

.header-area__nav__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-area__nav__contact .header-area__donate {
  background: #f57c1f;
  border: 1px solid #f57c1f;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  box-shadow: 0 2px 0.75rem rgba(30, 44, 78, 0.07);
  transition: all 0.5s;
}
.header-area__nav__contact .header-area__donate:hover {
  background: #fff;
  color: #f57c1f;
}

.header-area__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-area__contact .header-area__become_anna {
  border: 1px solid #f57c1f;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: all 0.5s;
  background: #fff;
  color: #f57c1f;
}
.header-area__contact .header-area__become_anna:hover {
  background: #f57c1f;
  color: #fff;
}
.header-area__contact .header-area__donate {
  background: #f57c1f;
  border: 1px solid #f57c1f;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  box-shadow: 0 2px 0.75rem rgba(30, 44, 78, 0.07);
  transition: all 0.5s;
}
.header-area__contact .header-area__donate:hover {
  background: #fff;
  color: #f57c1f;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  z-index: 1100;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
}
.mobile-nav-toggle span {
  display: block;
  width: 1.75rem;
  height: 3px;
  margin: 4px 0;
  background: #32404d;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav-toggle.open {
  background: rgba(245, 124, 31, 0.08);
  border-radius: 50%;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.1);
}
.mobile-nav-toggle.open span {
  background: #f57c1f;
  height: 4px;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.1);
  position: fixed;
  top: 31px;
}
.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(1px) rotate(-45deg);
}

.gallery-section {
  margin: 120px 0 !important;
  padding: 0 !important;
  background: #f9f9f9;
  padding: 2.5rem 0;
}
.gallery-section .container-fluid .text-center {
  text-align: center;
}
.gallery-section .container-fluid .text-center button {
  border: 1px solid #f57c1f;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: all 0.5s;
  background: #fff;
  color: #f57c1f;
}
.gallery-section .container-fluid .text-center button:hover {
  background: #f57c1f;
  color: #fff;
}
.gallery-section .container-fluid #gallery-all .bwg_container .bwg-container-0 {
  width: 1174px !important;
  gap: 50px;
}
.gallery-section .container-fluid #gallery-all .bwg_container .bwg-container-0 .bwg-item {
  border: 1px solid #deebe5;
  text-align: left;
}
.gallery-section .container-fluid #gallery-all .bwg_container .bwg-container-0 .bwg-item .bwg-title2 {
  text-align: left;
  padding: 15px !important;
  margin-top: 1.25rem;
}
.gallery-section .container-fluid #gallery-all .bwg_container .bwg-container-0 .bwg-item .bwg-thumb-description {
  text-align: left;
  padding: 0 15px !important;
}
.gallery-section h2 {
  text-align: center;
  margin-bottom: 1.875rem;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.gallery-section .gallery-nav {
  text-align: center;
  margin-bottom: 1.25rem;
}
.gallery-section .gallery-nav button {
  border: none;
  background: none;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.gallery-section .gallery-nav button:hover {
  color: #ff6600;
}
.gallery-section .gallery-nav button.active {
  border-color: #ff6600;
  color: #ff6600;
  font-weight: bold;
}
.gallery-section .gallery-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem;
}
.gallery-section .gallery-grid1 .gallery-item {
  text-align: center;
}
.gallery-section .gallery-grid1 .gallery-item img {
  width: 100%;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-section .gallery-grid1 .gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-section .gallery-grid1 .gallery-item .gallery-caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #555;
}
.gallery-section .lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.gallery-section .lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.5);
}
.gallery-section .lightbox .close {
  position: absolute;
  top: 1.25rem;
  right: 2.5rem;
  font-size: 1.875rem;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.gallery-section .lightbox.active {
  display: flex;
}

.gallery-section1 {
  margin: 120px 0 !important;
  padding: 0 !important;
  background: #f9f9f9;
  padding: 2.5rem 0;
}
.gallery-section1 .container-fluid .text-center {
  text-align: center;
}
.gallery-section1 .container-fluid .text-center button {
  border: 1px solid #f57c1f;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: all 0.5s;
  background: #fff;
  color: #f57c1f;
}
.gallery-section1 .container-fluid .text-center button:hover {
  background: #f57c1f;
  color: #fff;
}
.gallery-section1 .container-fluid #gallery-all .bwg_container .bwg-container-0 {
  width: 1174px !important;
  gap: 50px;
}
.gallery-section1 .container-fluid #gallery-all .bwg_container .bwg-container-0 .bwg-item {
  border: 1px solid #deebe5;
  text-align: left;
}
.gallery-section1 .container-fluid #gallery-all .bwg_container .bwg-container-0 .bwg-item .bwg-title2 {
  text-align: left;
  padding: 15px !important;
  margin-top: 1.25rem;
}
.gallery-section1 .container-fluid #gallery-all .bwg_container .bwg-container-0 .bwg-item .bwg-thumb-description {
  text-align: left;
  padding: 0 15px !important;
}
.gallery-section1 h2 {
  text-align: center;
  margin-bottom: 1.875rem;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.gallery-section1 .gallery-nav {
  text-align: center;
  margin-bottom: 1.25rem;
}
.gallery-section1 .gallery-nav button {
  border: none;
  background: none;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.gallery-section1 .gallery-nav button:hover {
  color: #ff6600;
}
.gallery-section1 .gallery-nav button.active {
  border-color: #ff6600;
  color: #ff6600;
  font-weight: bold;
}
.gallery-section1 .gallery-grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem;
}
.gallery-section1 .gallery-grid1 .gallery-item {
  text-align: center;
}
.gallery-section1 .gallery-grid1 .gallery-item img {
  width: 100%;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-section1 .gallery-grid1 .gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-section1 .gallery-grid1 .gallery-item .gallery-caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #555;
  text-align: left;
  margin: 8px 2px;
}
.gallery-section1 .gallery-grid1 .gallery-item .gallery-description {
  text-align: left;
  margin: 8px 2px;
}
.gallery-section1 .lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.gallery-section1 .lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.5);
}
.gallery-section1 .lightbox .close {
  position: absolute;
  top: 1.25rem;
  right: 2.5rem;
  font-size: 1.875rem;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.gallery-section1 .lightbox.active {
  display: flex;
}

.whats-new-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-banner {
  position: relative;
  min-height: 735px;
  display: flex;
  align-items: center;
  background: #0a2e1a;
}

.hero-banner__slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-banner__slide {
  width: 100%;
  min-height: 735px;
  height: 735px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 1s, transform 1s;
}
.hero-banner__slide .hero-banner__content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.hero-banner__slide .hero-banner__stats {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.hero-banner__slide:hover {
  opacity: 1;
  transform: translateY(0);
}

.hero-banner__slide.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-banner__slide.active .hero-banner__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-banner__slide.active .hero-banner__stats {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-banner__slide.slick-active .hero-banner__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-banner__slide.slick-active .hero-banner__stats {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-banner__slide.swiper-slide-active .hero-banner__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-banner__slide.swiper-slide-active .hero-banner__stats {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-banner__slide.anythingSlider-active .hero-banner__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-banner__slide.anythingSlider-active .hero-banner__stats {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  min-height: 735px;
  height: 735px;
  background: rgba(34, 68, 51, 0.65);
  z-index: 1;
}

.hero-banner__container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 80px 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.hero-banner__content {
  color: #fff;
  max-width: 600px;
  margin-bottom: 60px;
}
.hero-banner__content .hero-banner__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-banner__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero-banner__actions .btn {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.08);
}
.hero-banner__actions .btn-light {
  background: transparent;
  color: #ed801a;
  border: 1px solid #ed801a;
}
.hero-banner__actions .btn-light:hover {
  background: #f57c1f;
  color: #fff;
}
.hero-banner__actions .btn-play {
  display: flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-weight: 500;
  gap: 0.5rem;
  box-shadow: none;
  padding: 0;
  font-size: 1.1rem;
  cursor: pointer;
}
.hero-banner__actions .btn-play i {
  margin-right: 0.375rem;
  background: #ff7f32;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.hero-banner__actions .btn-play:hover {
  background-color: transparent;
}
.hero-banner__actions .btn-play:hover i {
  color: #fff;
  background-color: #007a5c;
}

.hero-banner__stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0 60px;
  z-index: 2;
}
.hero-banner__stats span {
  background: transparent;
  padding: 0 0.5rem;
}
.hero-banner__stats::before {
  content: "";
  position: absolute;
  left: 26%;
  right: 22%;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #32404d;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.gallery-section__item img {
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 1s, transform 1s;
}
.gallery-section__item img:hover {
  opacity: 1;
  transform: translateY(0);
}
.gallery-section__item img.active {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.header-area__become_anna {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.header-area__donate {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.about-section {
  padding: 3rem 0;
  margin: 0;
}
.about-section:hover .about-section__image img {
  transform: scale(1.05);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  padding: 3.5rem 0 0 0;
}
.about-section__row:hover .about-section__image img {
  transform: scale(1.05);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section__content {
  background: #fcfcf3;
  flex: 1 1 0;
  padding: 48px 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.45rem;
  color: rgb(9, 32, 53);
  box-sizing: border-box;
  transition: all 0.5s;
  text-align: center;
}
.about-section__content:hover {
  box-shadow: 0 0.5rem 2rem rgba(30, 44, 78, 0.1), 0 1.5px 0.375rem rgba(30, 44, 78, 0.08);
}

.about-section__title {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 700;
  color: rgb(9, 32, 53);
  margin: 0;
}

.about-section__desc {
  color: rgb(9, 32, 53);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.about-section__cta {
  display: none;
}

.about-section__image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-section__image img {
  width: 100%;
  max-width: 520px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-section {
  background: #fff;
  padding: 2.25rem 0;
}
.team-section .team-category {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 1.25rem;
  transition: all 0.5s;
  text-align: center;
}
.team-section .team-category:hover .team-category__icon img {
  filter: grayscale(1) brightness(0.8);
}
.team-section .team-category:hover .team-category__name {
  color: #f57c1f;
}
.team-section .team-category:last-child {
  border-right: none;
}
.team-section .team-category .team-category__details {
  display: flex;
  flex-direction: column;
}
.team-section .team-category__icon {
  display: block;
  line-height: 1;
  display: block;
  line-height: 1;
}
.team-section .team-category__icon:hover .team-category__icon img {
  filter: grayscale(1) brightness(0.8);
}
.team-section .team-category__icon:hover .team-category__name {
  color: #f57c1f;
}
.team-section .team-category__icon:last-child {
  border-right: none;
}
.team-section .team-category__icon .team-category__details {
  display: flex;
  flex-direction: column;
}
.team-section .team-category__icon img {
  transition: all 0.5s;
}
.team-section .team-category__name {
  font-weight: 700;
  color: #222e3a;
  margin-bottom: 2px;
  font-size: 1.08rem;
  line-height: 1.1;
  transition: color 0.5s;
}
.team-section .team-category__desc {
  font-size: 0.93rem;
  color: #6c757d;
  line-height: 1.2;
  margin-top: 2px;
}
.team-section .team-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 303px;
  min-height: 421px;
  position: relative;
  transition: all 0.5s;
}
.team-section .team-card:hover {
  box-shadow: 0 0.375rem 1.5rem rgba(56, 56, 56, 0.13);
}
.team-section .team-card:hover .team-card__img {
  transform: scale(1.05);
  transition: transform 0.5s;
}
.team-section .team-card:hover .team-card__content .team-card__title {
  font-size: 1.75rem;
  transition: transform 0.5s, font-size 0.5s;
}
.team-section .team-card:hover .team-card__content .team-card__desc {
  opacity: 1;
  transform: translateY(0);
}
.team-section .team-card:hover .team-card__content .btn-light {
  opacity: 1;
  transform: translateY(0);
}
.team-section .team-card__img {
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s;
}
.team-section .team-card__content {
  padding: 0 35px 48px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 1;
  justify-content: flex-end;
}
.team-section .team-card__content .team-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
  transition: all 0.5s;
}
.team-section .team-card__content .team-card__desc {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  max-height: 155px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s, transform 0.5s;
}
.team-section .team-card__content .btn-light {
  background: transparent;
  color: #ed801a;
  border: 1px solid #ed801a;
  font-weight: 700;
  padding: 0.75rem 0;
  font-size: 1rem;
  transition: all 0.5s;
  border-radius: 0.5rem;
  opacity: 0;
  transform: translateY(40px);
  width: 150px;
  text-align: center;
  margin-top: auto;
}
.team-section .team-card__content .btn-light:hover {
  background: #f57c1f;
  color: #fff;
}

.team-section__title {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 700;
  color: rgb(9, 32, 53);
  margin: 0 0 2rem 0;
}

.team-section__categories {
  display: flex;
  background: #fff;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 3rem;
  padding: 0;
  display: flex;
  background: #fff;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 3rem;
  padding: 0;
}

.team-section__cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 0 0;
}

.ppp-section1 {
  background: #fff;
  padding: 4rem 0;
}
.ppp-section1 .container .align-items-stretch {
  margin: 0 !important;
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.ppp-section1 .container .dim-text {
  width: 100%;
  text-align: center;
}
.ppp-section1 .container .card-dim {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 4px 0.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 1.5rem);
}
.ppp-section1 .container .card-dim:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.15);
}
.ppp-section1 .container .card-dim .card-header {
  display: flex;
  margin-bottom: 0.75rem;
  flex-direction: column;
}
.ppp-section1 .container .card-dim .card-header .icon {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 0.625rem;
}
.ppp-section1 .container .card-dim .card-header h3 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
}
.ppp-section1 .container .card-dim .card-text {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 15px;
}
.ppp-section1 .container .card-dim .learn-more {
  font-size: 0.875rem;
  font-weight: bold;
  color: #2563eb;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}
.ppp-section1 .container .card-dim .learn-more:hover {
  color: #1e40af;
}
.ppp-section1 .container .card-dim .card-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin-top: 0.625rem;
  color: #444;
}
.ppp-section1 .container .card-dim.expand .card-extra {
  max-height: 200px;
  opacity: 1;
}

.impact {
  background: #f9fafc;
  padding: 60px 1.25rem;
  text-align: center;
}

.impact__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0a1a33;
  margin-bottom: 15px;
}

.impact__desc {
  max-width: 1125px;
  margin: 0 auto 25px auto;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.impact__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.impact__stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 12rem 0;
}
.impact__stats .stat {
  text-align: left;
  border-left: 3px solid #ff6a00;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.impact__stats .stat h3 {
  font-size: 3.25rem;
  font-weight: 700;
  margin-left: 0.625rem;
  margin-bottom: 30px;
}
.impact__stats .stat p {
  font-size: 1.25rem;
  color: #333;
  margin-left: 0.625rem;
  margin-bottom: 0;
}

.impact__image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}
.impact__image .imagebg {
  background-image: url(../images/Group\ 1000001790.png);
  width: 628px;
  height: 790px;
  transition: all 0.5s;
  opacity: 1;
  left: 652px;
}
.impact__image .imagebg:hover {
  background-image: url(../images/colorimggirl.png);
  transition-duration: 0.9s;
}
.impact__image img {
  width: 100%;
  max-width: 550px;
  border-radius: 0.625rem;
  display: block;
}
.impact__image .card {
  position: absolute;
  background: #fff;
  box-shadow: 0 4px 0.625rem rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  padding: 15px;
  font-size: 13px;
  max-width: 303px;
  text-align: left;
}
.impact__image .card .icon {
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 0.875rem;
}
.impact__image .card--top {
  bottom: 20%;
  right: 2.375rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.impact__image .card--top p {
  display: flex;
  flex-direction: column;
}
.impact__image .card--bottom {
  bottom: 0px;
  left: -20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.whats-new-banner3 {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  background-image: url("../images/together.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 570px;
  display: flex;
}
.whats-new-banner3 .whats-new-banner3-text {
  width: 40%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 65px !important;
}
.whats-new-banner3 .whats-new-banner3-text h4 {
  font-size: 2.5rem;
  font-size: 2.5rem;
}
.whats-new-banner3 .whats-new-banner3-text p {
  font-size: 1.5rem;
  font-size: 1.5rem;
}

.ppp-section2 {
  margin: 1.875rem 0;
}
.ppp-section2 .dim-text {
  width: 100%;
  text-align: center;
}
.ppp-section2 .container {
  gap: 24px;
  display: flex;
  flex-direction: row;
}
.ppp-section2 .container .card2 {
  background: url("../images/our-events-1.svg") no-repeat center center/cover;
  width: 100%;
  padding: 1.25rem;
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.6);
  text-align: left;
  position: relative;
  margin: 1.25rem 1.5rem;
}
.ppp-section2 .container .card2 .card-content .card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.ppp-section2 .container .card2 .card-content .card-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  height: 200px;
}
.ppp-section2 .container .card2 .card-content .card-tenure {
  font-size: 13px;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.ppp-section2 .container .card2 .card-content .register-btn {
  background: transparent;
  border: 2px solid #ed801a;
  color: #ed801a;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ppp-section2 .container .card2 .card-content .register-btn:hover {
  background: #ff7b00;
  color: #fff;
}
.ppp-section2 .container .card3 {
  background: url("../images/our-events-2.svg") no-repeat center center/cover;
  width: 100%;
  padding: 1.25rem;
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.6);
  text-align: left;
  position: relative;
  margin: 1.25rem 1.5rem;
}
.ppp-section2 .container .card3 .card-content .card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.ppp-section2 .container .card3 .card-content .card-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  height: 200px;
}
.ppp-section2 .container .card3 .card-content .card-tenure {
  font-size: 13px;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.ppp-section2 .container .card3 .card-content .register-btn {
  background: transparent;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ppp-section2 .container .card3 .card-content .register-btn:hover {
  background: #ff7b00;
  color: #fff;
}
.ppp-section2 .container .card4 {
  background: url("../images/our-events-3.svg") no-repeat center center/cover;
  width: 100%;
  padding: 1.25rem;
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.6);
  text-align: left;
  position: relative;
  margin: 1.25rem 1.5rem;
}
.ppp-section2 .container .card4 .card-content .card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.ppp-section2 .container .card4 .card-content .card-text {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  height: 200px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ppp-section2 .container .card4 .card-content .card-tenure {
  font-size: 13px;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.ppp-section2 .container .card4 .card-content .register-btn {
  background: transparent;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ppp-section2 .container .card4 .card-content .register-btn:hover {
  background: #ff7b00;
  color: #fff;
}

.ppp-section3 {
  margin: 110px 0;
}
.ppp-section3 .dim-text {
  width: 100%;
  text-align: center;
}
.ppp-section3 .container {
  gap: 24px;
  display: flex;
  flex-direction: row;
}
.ppp-section3 .container .card2 {
  background: url("../images/youmayalso.png") no-repeat center center/cover;
  width: 350px;
  padding: 1.25rem;
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.6);
  text-align: left;
  position: relative;
  margin: 1.25rem 1.5rem;
}
.ppp-section3 .container .card2 .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 277px;
}
.ppp-section3 .container .card2 .card-content .card-title {
  font-size: 0.875rem;
  margin-bottom: 15px;
}
.ppp-section3 .container .card2 .card-content .card-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.ppp-section3 .container .card2 .card-content .card-tenure {
  font-size: 13px;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.ppp-section3 .container .card2 .card-content .register-btn {
  background: transparent;
  border: 2px solid #ed801a;
  color: #ed801a;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ppp-section3 .container .card2 .card-content .register-btn:hover {
  background: #ff7b00;
  color: #fff;
}
.ppp-section3 .container .card3 {
  background: url("../images/youmayalso-1.png") no-repeat center center/cover;
  width: 350px;
  padding: 1.25rem;
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.6);
  text-align: left;
  position: relative;
  margin: 1.25rem 1.5rem;
}
.ppp-section3 .container .card3 .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 277px;
}
.ppp-section3 .container .card3 .card-content .card-title {
  font-size: 0.875rem;
  margin-bottom: 15px;
}
.ppp-section3 .container .card3 .card-content .card-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.ppp-section3 .container .card3 .card-content .card-tenure {
  font-size: 13px;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.ppp-section3 .container .card3 .card-content .register-btn {
  background: transparent;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ppp-section3 .container .card3 .card-content .register-btn:hover {
  background: #ff7b00;
  color: #fff;
}
.ppp-section3 .container .card4 {
  background: url("../images/youmayalso-2.png") no-repeat center center/cover;
  width: 350px;
  padding: 1.25rem;
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.6);
  text-align: left;
  position: relative;
  margin: 1.25rem 1.5rem;
}
.ppp-section3 .container .card4 .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 277px;
}
.ppp-section3 .container .card4 .card-content .card-title {
  font-size: 0.875rem;
  margin-bottom: 15px;
}
.ppp-section3 .container .card4 .card-content .card-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.ppp-section3 .container .card4 .card-content .card-tenure {
  font-size: 13px;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.ppp-section3 .container .card4 .card-content .register-btn {
  background: transparent;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ppp-section3 .container .card4 .card-content .register-btn:hover {
  background: #ff7b00;
  color: #fff;
}

.impact-section {
  background: rgb(249, 249, 249);
  padding: 3rem 0 2.5rem 0;
  position: relative;
}
.impact-section .container .prtham-text {
  color: rgb(11, 107, 61);
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
}
.impact-section .container .ias-mentor {
  color: rgb(237, 128, 26);
  font-size: 1.25rem;
  font-weight: 400;
}
.impact-section .container .mentor-text {
  font-size: 1.25rem;
  font-weight: 400;
}
.impact-section .container .mentor-main-text {
  font-size: 1.25rem;
}
.impact-section .container .mentor-main-text .mentor-test-sub {
  color: #fff;
  background: rgb(192, 0, 0);
  padding: 2px 5px;
  border-radius: 64px;
  font-size: 0.75rem;
  position: relative;
  top: -9px;
  width: 4rem;
  text-align: center;
}
.impact-section .container .imapct-section-sec {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
.impact-section .container .imapct-section-sec .imapct-image-first {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 30%;
}
.impact-section .container .imapct-section-sec .imapct-image-first .ppp-section__cta-btn {
  background: transparent;
  border: 1px solid #ed801a;
  width: 150px;
  color: #ed801a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  margin-top: 1.2rem;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
  transition: background 0.3s, color 0.3s;
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .container .imapct-section-sec .imapct-image-first .ppp-section__cta-btn:hover {
  background: #fff;
  color: #f57c1f;
}
.impact-section .container .imapct-section-sec .imapct-image-carosel {
  display: flex;
  gap: 10px;
  width: 67%;
}
.impact-section .container .imapct-section-sec .imapct-image-carosel .card {
  background: #fff;
  border-radius: 0.75rem;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  width: 260px;
  padding: 1.25rem;
  text-align: center;
  border: 0px solid #eee;
  align-items: center;
}
.impact-section .container .imapct-section-sec .imapct-image-carosel .card .card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 0.75rem;
}
.impact-section .container .imapct-section-sec .imapct-image-carosel .card .name {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  margin: 5px 0;
  height: 59px;
}
.impact-section .container .imapct-section-sec .imapct-image-carosel .card .role {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0.75rem;
}
.impact-section .container .imapct-section-sec .imapct-image-carosel .card .subject-title {
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: #333;
}
.impact-section .container .imapct-section-sec .imapct-image-carosel .card .subjects {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 1rem;
  height: 122px !important;
}
.impact-section .container .imapct-section-sec .imapct-image-carosel .card .date {
  display: inline-block;
  background: #0b6b3d;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 0.75rem;
  border-radius: 1.25rem;
}
.impact-section .impact-section {
  background: #fcfcf3;
  padding: 3rem 0 2.5rem 0;
  position: relative;
  background: #fcfcf3;
  padding: 3rem 0 2.5rem 0;
  position: relative;
}
.impact-section .impact-section .container .mentor-main-text {
  font-size: 1.25rem;
}
.impact-section .impact-section .container .mentor-main-text .mentor-test-sub {
  color: white;
  background-color: red;
  padding: 2px;
  border-radius: 42%;
  font-size: 0.75rem;
  position: relative;
  top: -9px;
}
.impact-section .impact-section .container .prtham-text {
  color: rgb(11, 107, 61);
  font-size: 2.5rem;
  font-weight: 400;
}
.impact-section .impact-section .container .ias-mentor {
  color: rgb(237, 128, 26);
  font-size: 1.25rem;
  font-weight: 400;
}
.impact-section .impact-section .container .mentor-text {
  font-size: 1.25rem;
  font-weight: 400;
}
.impact-section .impact-section .container .imapct-section-sec {
  width: 100%;
  display: flex;
  margin: 1.25rem 0;
}
.impact-section .impact-section .container .imapct-section-sec .imapct-image-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 0 1.125rem;
}
.impact-section .impact-section .container .imapct-section-sec .imapct-image-first .ppp-section__cta-btn {
  background: transparent;
  border: 1px solid #ed801a;
  width: 150px;
  color: #ed801a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  margin-top: 1.2rem;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
  transition: background 0.3s, color 0.3s;
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section .container .imapct-section-sec .imapct-image-first .ppp-section__cta-btn:hover {
  background: #fff;
  color: #f57c1f;
}
.impact-section .impact-section .container .imapct-section-sec .imapct-image-first .ppp-section__cta-btn img {
  width: 85%;
}
.impact-section .impact-section .container .imapct-section-sec .imapct-image-first .ppp-section__cta-btn .ppp-section__cta-btn {
  background: transparent;
  border: 1px solid #ed801a;
  width: 150px;
  color: #ed801a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  margin-top: 1.2rem;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
  transition: background 0.3s, color 0.3s;
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section .container .imapct-section-sec .imapct-image-first .ppp-section__cta-btn .ppp-section__cta-btn:hover {
  background: #f57c1f;
  color: #fff;
}
.impact-section .impact-section .impact-section {
  background: #fcfcf3;
  padding: 3rem 0 2.5rem 0;
  position: relative;
}
.impact-section .impact-section .impact-section .impact-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.impact-section .impact-section .impact-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a2233;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-align: center;
  animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section .impact-section__main {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  min-height: 340px;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section .impact-section__main .check-list {
  padding-left: 0 !important;
}
.impact-section .impact-section .impact-section__main .check-list li {
  position: relative;
  list-style: none;
  padding-left: 25px;
  text-align: left !important;
}
.impact-section .impact-section .impact-section__main .check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: rgb(237, 128, 26);
  font-weight: bold;
}
.impact-section .impact-section .impact-section__static-image {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  padding-right: 1.5rem;
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  justify-content: end;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
}
.impact-section .impact-section .impact-section__static-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section .impact-section__slider-wrap {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}
.impact-section .impact-section .impact-section__slider1 {
  width: 100%;
  min-width: 0;
}
.impact-section .impact-section .impact-section__slider1 .impact-slide {
  width: 100%;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section .impact-section__slider1 .impact-slide__content {
  text-align: left;
  font-size: 1rem;
  color: #222e3a;
  line-height: 1.6;
  background: transparent;
  background: rgb(242, 246, 237);
  animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
  height: 411px;
  display: flex;
  justify-content: center;
}
.impact-section .impact-section .impact-section__slider1 .slick-arrow {
  background: #f57c1f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  text-indent: -9999px;
  position: absolute;
  top: -2rem;
  transform: translateY(-50%);
}
.impact-section .impact-section .impact-section__slider1 .slick-arrow.slick-disabled {
  opacity: 0.5;
  background: rgb(215.3846153846, 99.0384615385, 9.6153846154);
  cursor: not-allowed;
}
.impact-section .impact-section .impact-section__slider1 .slick-arrow.slick-prev {
  left: 0;
}
.impact-section .impact-section .impact-section__slider1 .slick-arrow.slick-prev::before {
  content: "";
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.impact-section .impact-section .impact-section__slider1 .slick-arrow.slick-next {
  right: 0 !important;
}
.impact-section .impact-section .impact-section__slider1 .slick-arrow.slick-next::before {
  content: "";
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.impact-section .impact-section .impact-section__slider {
  width: 100%;
  min-width: 0;
}
.impact-section .impact-section .impact-section__slider .impact-slide {
  width: 100%;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section .impact-section__slider .impact-slide__content {
  text-align: left;
  font-size: 1rem;
  color: #222e3a;
  line-height: 1.6;
  background: transparent;
  background: rgb(242, 246, 237);
  animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
  margin: 1.5rem;
}
.impact-section .impact-section .impact-section__slider .slick-arrow {
  background: #f57c1f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  text-indent: -9999px;
  position: absolute;
  top: -2rem;
  transform: translateY(-50%);
}
.impact-section .impact-section .impact-section__slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  background: rgb(215.3846153846, 99.0384615385, 9.6153846154);
  cursor: not-allowed;
}
.impact-section .impact-section .impact-section__slider .slick-arrow.slick-prev {
  left: 0;
}
.impact-section .impact-section .impact-section__slider .slick-arrow.slick-prev::before {
  content: "";
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.impact-section .impact-section .impact-section__slider .slick-arrow.slick-next {
  left: 52px;
}
.impact-section .impact-section .impact-section__slider .slick-arrow.slick-next::before {
  content: "";
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.impact-section .impact-section .impact-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.impact-section .ppp-section {
  background: rgb(15, 94, 60);
  padding: 2rem 0;
}
.impact-section .ppp-section .ppp-section__left {
  padding: 0.75rem;
}
.impact-section .ppp-section .ppp-section__left .mentor-main-text {
  font-size: 1.25rem;
}
.impact-section .ppp-section .ppp-section__left .mentor-main-text .mentor-test-sub {
  color: white;
  background-color: red;
  padding: 2px;
  border-radius: 42%;
  font-size: 0.75rem;
  position: relative;
  top: -9px;
}
.impact-section .ppp-section .ppp-section__left .prtham-text {
  color: rgb(11, 107, 61);
  font-size: 2.5rem;
  font-weight: 400;
}
.impact-section .ppp-section .ppp-section__left .ias-mentor {
  color: rgb(237, 128, 26);
  font-size: 1.25rem;
  font-weight: 400;
}
.impact-section .ppp-section .ppp-section__left .mentor-text {
  font-size: 1.25rem;
  font-weight: 400;
}
.impact-section .ppp-section .ppp-section__left .imapct-section-sec {
  width: 100%;
  display: flex;
  margin: 1.25rem 0;
}
.impact-section .ppp-section .ppp-section__left .imapct-section-sec .imapct-image-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 0 1.125rem;
}
.impact-section .ppp-section .ppp-section__left .imapct-section-sec .imapct-image-first img {
  width: 85%;
}
.impact-section .ppp-section .ppp-section__left .imapct-section-sec .imapct-image-first .ppp-section__cta-btn {
  background: transparent;
  border: 1px solid #ed801a;
  width: 150px;
  color: #ed801a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  margin-top: 1.2rem;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
  transition: background 0.3s, color 0.3s;
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .ppp-section .ppp-section__left .imapct-section-sec .imapct-image-first .ppp-section__cta-btn:hover {
  background: #f57c1f;
  color: #fff;
}
.impact-section .impact-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a2233;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-align: center;
  animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section__main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5px;
}
.impact-section .impact-section__main .check-list li {
  position: relative;
  list-style: none;
  margin-bottom: 0.625rem;
  padding-left: 1.875rem;
  text-align: left !important;
}
.impact-section .impact-section__main .check-list li span {
  font-size: 0.875rem;
  color: rgb(114, 114, 114);
}
.impact-section .impact-section__main .check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7b00;
  font-weight: bold;
}
.impact-section .impact-section__static-image {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  padding-right: 1.5rem;
  flex: 0 0 70%;
  width: 70%;
  display: flex;
  align-items: flex-start;
  justify-content: end;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
}
.impact-section .impact-section__static-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section__slider-wrap {
  flex: 0 0 30% !important;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}
.impact-section .impact-section__slider {
  width: 100%;
  min-width: 0;
}
.impact-section .impact-section__slider .impact-slide {
  width: 100%;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-section .impact-section__slider .impact-slide__content {
  text-align: left;
  font-size: 1rem;
  color: #222e3a;
  line-height: 1.6;
  background: transparent;
  animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 1.5rem;
}
.impact-section .impact-section__slider .impact-slide__content img {
  width: 363px;
}
.impact-section .impact-section__slider .slick-arrow {
  background: #f57c1f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  text-indent: -9999px;
  position: absolute;
  top: -2rem;
  transform: translateY(-50%);
}
.impact-section .impact-section__slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  background: rgb(215.3846153846, 99.0384615385, 9.6153846154);
  cursor: not-allowed;
}
.impact-section .impact-section__slider .slick-arrow.slick-prev {
  left: 0;
}
.impact-section .impact-section__slider .slick-arrow.slick-prev::before {
  content: "";
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.impact-section .impact-section__slider .slick-arrow.slick-next {
  left: 52px;
}
.impact-section .impact-section__slider .slick-arrow.slick-next::before {
  content: "";
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.impact-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a2233;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.ppp-section {
  background: rgb(15, 94, 60);
  padding: 2rem 0;
}
.ppp-section .ppp-section__left {
  padding: 0.75rem;
  display: flex;
  min-height: 100%;
  justify-content: center;
}
.ppp-section .ppp-section__left .ppp-section__mainimg {
  max-width: 420px;
  width: 100%;
  animation: fadeInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.ppp-section .ppp-section__right {
  color: #fff;
  min-height: 100%;
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: start;
}
.ppp-section .ppp-section__right .ppp-section__subtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.ppp-section .ppp-section__right .ppp-section__subtitle span {
  height: 2px;
  background-color: #fff;
}
.ppp-section .ppp-section__right .ppp-section__right {
  background: rgb(15, 94, 60);
  color: #fff;
  min-height: 100%;
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: start;
}
.ppp-section .ppp-section__right .ppp-section__right .w-100 {
  display: flex;
  flex-direction: column;
  margin: 0 24%;
  width: 49% !important;
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__subtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__subtitle span {
  height: 2px;
  background-color: #fff;
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__dates {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__eligibility {
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__eligibility .ppp-section__eligibility-label {
  font-weight: 700;
  margin-right: 0.5rem;
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__eligibility .ppp-section__eligibility-value {
  font-weight: 800;
  color: #fff;
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__cta-btn {
  background: transparent;
  border: 1px solid #ed801a;
  width: 150px;
  color: #ed801a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  margin-top: 1.2rem;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
  transition: background 0.3s, color 0.3s;
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.ppp-section .ppp-section__right .ppp-section__right .ppp-section__cta-btn:hover {
  background: #fff;
  color: #f57c1f;
}
.ppp-section .ppp-section__right .ppp-section__cta-btn {
  background: #f57c1f;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 4px;
  padding: 0.7rem 2.2rem;
  margin-top: 1.2rem;
  box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
  transition: background 0.3s, color 0.3s;
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.ppp-section .ppp-section__right .ppp-section__cta-btn:hover {
  background: #fff;
  color: #f57c1f;
}

.impact-section1 .impact-slider-window {
  overflow: hidden;
  width: 100%;
}
.impact-section1 .impact-slider-window .impact-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.impact-section1 .impact-slider-window .impact-slide {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 0.625rem;
  box-sizing: border-box;
}
.impact-section1 .impact-slider-window .impact-slide .slide-content {
  background: #f5f5f5;
  border-radius: 0.625rem;
  padding: 1rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.impact-section1 .impact-slider-window .impact-slide.active .slide-content {
  transform: scale(1.06);
  box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.05);
}
.impact-section1 .impact-slider-controls {
  margin-top: 0.75rem;
  text-align: center;
  bottom: 260px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.impact-section1 .impact-slider-controls button {
  padding: 0.5rem 1rem;
  margin: 0 0.375rem;
  border: none;
  background: #1a8f4e;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.impact-section1 .impact-slider-controls button:disabled {
  background: #bdbdbd;
  cursor: not-allowed;
}

.footer-area1 {
  background: rgb(255, 228, 202);
  color: rgb(0, 0, 0);
  font-size: 1rem;
}
.footer-area1 .container1 {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  background-image: url("../images/bottom-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 147px;
  display: flex;
}
.footer-area1 .container1__bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 1.25rem;
  font-size: 15px;
  gap: 1.25rem;
  width: 100%;
  margin-top: 85px;
}

.footer-area {
  background: rgb(255, 228, 202);
  color: rgb(0, 0, 0);
  padding: 60px 0 0 0;
  font-size: 1rem;
  margin-bottom: -113px;
}

.footer-area__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer-area__col1 {
  flex: 0 0 30%;
  margin: 0;
}
.footer-area__col1 .footer-area__social {
  position: relative;
  bottom: 3rem;
  left: 36.5rem;
}
.footer-area__col1 .footer-area__social a {
  opacity: 0.7;
  transition: all 0.5s;
  color: #454545;
}
.footer-area__col1 .footer-area__social a:hover {
  opacity: 1;
  color: #454545;
}

.footer-area__col {
  flex: 0 0 12%;
  margin: 0;
}
.footer-area__col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.125rem;
  letter-spacing: 1px;
  font-weight: 700;
}
.footer-area__col ul {
  padding-left: 0 !important;
}
.footer-area__col ul li {
  list-style-type: none;
}
.footer-area__col ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  transform: translateX(0);
}
.footer-area__col ul li a:hover {
  color: #f57c1f;
  transform: translateX(5px);
}
.footer-area__col img {
  margin-bottom: 2rem;
  filter: grayscale(100%);
}

.footer-area__col__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.footer-area__col__col {
  flex: 0 0 24%;
  margin: 0;
}
.footer-area__col__col .image-logo {
  margin-bottom: 0 !important;
}
.footer-area__col__col img {
  margin-bottom: 2rem;
}
.footer-area__col__col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.125rem;
  letter-spacing: 1px;
  font-weight: 700;
}
.footer-area__col__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-area__col__col ul li {
  margin-bottom: 0.625rem;
}
.footer-area__col__col ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: color 0.3s, margin-left 0.3s;
}
.footer-area__col__col ul li a:hover {
  margin-left: 5px;
}

.footer-area__col__social a {
  margin-right: 15px;
  font-size: 1.25rem;
  transition: all 0.5s;
}
.footer-area__col__social a:hover {
  color: #f57c1f;
  margin-left: 5px;
}

.footer-area__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  font-size: 15px;
  justify-content: center;
  width: 100%;
  margin-top: 80px;
}

.footer-area__social a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.25rem;
  transition: all 0.5s;
}
.footer-area__social a:hover {
  color: #f57c1f;
}

#back-top {
  background: #007a5c;
  height: 50px;
  width: 50px;
  right: 31px;
  bottom: 1.125rem;
  position: fixed;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  border: 2px solid transparent;
  box-shadow: 0 0 0.625rem 3px rgba(108, 98, 98, 0.2);
  opacity: 0.3;
}
#back-top:hover {
  opacity: 1;
}
#back-top a {
  text-decoration: none;
}
#back-top a i {
  display: block;
  color: #fff;
  line-height: 50px;
}
#back-top a i::before {
  margin-left: 0;
}

#scrollUp:hover {
  color: #fff;
}

.float {
  position: fixed;
  z-index: 100;
  top: 50%;
  right: 0;
  width: 136px;
  height: 2.25rem;
  opacity: 0.7;
}
.float:hover {
  opacity: 1;
}

#pppEnrollModal .modal-dialog {
  max-width: 700px;
}

.ppp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
  padding: 0px;
  background: #e4e4e4;
  position: relative;
}

.ppp-modal-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a3c6e;
  margin: 0;
  letter-spacing: 0.5px;
  flex: 1;
  text-align: left;
  font-family: "Poppins", sans-serif;
}

.modal-content.ppp-modal-content {
  border-radius: 1.375rem;
  box-shadow: 0 0.75rem 48px rgba(30, 44, 78, 0.22);
  border: none;
  padding: 1.5rem;
  width: 100%;
  max-width: none;
  margin: auto;
  background: #fff;
  animation: fadeInUp 0.5s;
}

.modal-header {
  background: transparent;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3c6e;
  padding-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.btn-close.ppp-modal-close {
  color: #007a5c;
  opacity: 0.5;
  font-size: 0.75rem;
  box-shadow: none;
  transition: color 0.3s;
  position: absolute;
  right: 0;
  top: 0.625rem;
}
.btn-close.ppp-modal-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 0;
  padding-top: 1.5rem;
}

.validation-error {
  color: #ff0000;
  font-size: 0.9rem;
}

.ppp-enroll-form {
  margin-top: 0.5rem;
}
.ppp-enroll-form label {
  font-size: 1rem;
  color: #5d646a;
  margin-bottom: 2px;
  display: block;
}
.ppp-enroll-form input[type=text] {
  width: 100%;
  margin-bottom: 2px;
  padding: 5px 0.625rem;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: #f8f9fa;
  transition: border-color 0.3s;
  box-shadow: none;
}
.ppp-enroll-form input[type=text]:focus {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form input[type=text]:hover {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form input[type=text]::-moz-placeholder {
  color: #888;
  opacity: 1;
  color: #888;
  opacity: 1;
}
.ppp-enroll-form input[type=text]::placeholder {
  color: #888;
  opacity: 1;
}
.ppp-enroll-form input[type=email] {
  width: 100%;
  margin-bottom: 2px;
  padding: 5px 0.625rem;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: #f8f9fa;
  transition: border-color 0.3s;
  box-shadow: none;
}
.ppp-enroll-form input[type=email]:focus {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form input[type=email]:hover {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form input[type=email]::-moz-placeholder {
  color: #888;
  opacity: 1;
  color: #888;
  opacity: 1;
}
.ppp-enroll-form input[type=email]::placeholder {
  color: #888;
  opacity: 1;
}
.ppp-enroll-form input[type=tel] {
  width: 100%;
  margin-bottom: 2px;
  padding: 5px 0.625rem;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: #f8f9fa;
  transition: border-color 0.3s;
  box-shadow: none;
}
.ppp-enroll-form input[type=tel]:focus {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form input[type=tel]:hover {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form input[type=tel]::-moz-placeholder {
  color: #888;
  opacity: 1;
  color: #888;
  opacity: 1;
}
.ppp-enroll-form input[type=tel]::placeholder {
  color: #888;
  opacity: 1;
}
.ppp-enroll-form input[type=password] {
  width: 100%;
  margin-bottom: 2px;
  padding: 5px 0.625rem;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: #f8f9fa;
  transition: border-color 0.3s;
  box-shadow: none;
}
.ppp-enroll-form input[type=password]:focus {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form input[type=password]:hover {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form select {
  width: 100%;
  margin-bottom: 2px;
  padding: 5px 0.625rem;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: #f8f9fa;
  transition: border-color 0.3s;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2309cc7f" height="16" viewBox="0 0 20 20" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem 1rem;
}
.ppp-enroll-form select:focus {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form select:hover {
  border-color: #007a5c;
  outline: none;
  box-shadow: none;
}
.ppp-enroll-form .form-check {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 0;
  font-size: 1rem;
  color: #5d646a;
}
.ppp-enroll-form .form-check label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1rem;
  color: #5d646a;
  line-height: 1.2;
}
.ppp-enroll-form .form-check .form-check-input {
  accent-color: #007a5c;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid #007a5c;
  background: #fff;
  box-shadow: 0 2px 0.5rem rgba(51, 204, 143, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
  margin: 0px;
  margin-top: 2px;
}
.ppp-enroll-form .form-check .form-check-input:checked {
  background-color: #007a5c;
  border-color: #007a5c;
  box-shadow: 0 0 0 2px rgba(30, 44, 78, 0.1);
}
.ppp-enroll-form .form-check .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(30, 44, 78, 0.1);
}
.ppp-enroll-form button {
  width: auto;
  min-width: 160px;
  max-width: 100%;
  padding: 0.625rem 1.75rem;
  border-radius: 0.5rem;
  background: #007a5c;
  border: 1px solid #007a5c;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 0.75rem;
  display: inline-block;
}
.ppp-enroll-form button:hover {
  background: #fff;
  color: #007a5c;
  border-color: #007a5c;
}

.ppp-modal-content p {
  color: #5d646a;
  font-size: 1rem;
  margin-bottom: 1.125rem;
}

.about-hero {
  margin-bottom: 100px !important;
  margin-top: 100px;
}
.about-hero .know-more h4 {
  font-size: 1rem;
  font-weight: 800;
}
.about-hero .know-more .line {
  border-bottom: 2px solid black;
  width: 102px !important;
  display: block;
  position: relative;
  bottom: 17px;
  left: 152px;
}
.about-hero .main-heading h2 {
  margin-right: 1.25rem;
  margin-top: 15px;
  font-size: 42px;
  font-weight: 800;
}
.about-hero .upperpararight {
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.about-hero .belowright {
  font-size: 1.25rem;
}

.about-video .container {
  z-index: 2;
  position: relative;
}
.about-video .container .video-wrapper {
  width: 100%;
  margin-bottom: 3.2rem;
}
.about-video .container .video-wrapper .video-thumbnail {
  position: relative;
  cursor: pointer;
}
.about-video .container .video-wrapper .video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.about-video .container .video-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  text-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.about-video .container .video-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.about-video .container .text-after-video {
  margin-bottom: 2.2rem;
}
.about-video .container::after {
  content: "";
  display: block;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 65%;
  background-color: #fcedc6;
  z-index: -1;
}

.mission-vision {
  margin-bottom: 100px !important;
  margin-top: 80px;
}
.mission-vision .container .row .mission {
  width: 95% !important;
  margin: 0.625rem;
}

.mission {
  border: 1px solid #47bf8b;
  border-radius: 0.5rem;
  width: 40%;
  margin-right: 1.25rem;
  padding: 1.25rem;
}
.mission h3 {
  font-size: 1rem;
  color: #0b6c3c;
  font-weight: 800;
  letter-spacing: 2px;
}

.mission-text {
  font-weight: 600;
  color: #32404d;
  margin-top: 0.625rem;
}

.mission-text1 {
  font-size: 1.25rem;
}

.knowledge-partners {
  margin-bottom: 100px !important;
}
.knowledge-partners .container {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.knowledge-partners .container h2 {
  font-weight: 800;
  font-size: 42px;
  text-align: center;
}
.knowledge-partners .container .img-cus {
  border: solid 2px #e0e0e0;
  border-radius: 0.5rem;
  margin: 1.25rem;
  width: auto !important;
}
.knowledge-partners .container .img-cus img {
  padding: 0.75rem;
  height: 80px;
}

.awards .container {
  align-items: center;
}
.awards .container .title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin: 1.25rem;
  color: black !important;
}
.awards .container .award-list {
  margin-top: 2.5rem;
  margin-bottom: 80px;
}
.awards .container h3 {
  text-align: center;
  font-weight: 800;
  font-size: 42px;
}
.awards .container .awardgal {
  flex-direction: column;
  align-items: center;
}
.awards .container h4 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 1.5rem;
}
.awards .container h5 {
  font-weight: 700;
  font-size: 1rem;
}
.awards .container p {
  font-size: 0.75rem;
}

.what-we-do {
  margin-top: 100px;
  margin-bottom: 80px;
}
.what-we-do .row .col {
  background-color: #0b6c3c;
  border-radius: 0.5rem;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  margin: 1.25rem;
}
.what-we-do .row .col .text-right-1 {
  margin-left: 2.5rem;
}
.what-we-do .row .col .section-text-wwd {
  margin: 2.5rem;
}
.what-we-do .row .col .section-text-wwd h4 {
  font-size: 42px;
  font-weight: 600;
}
.what-we-do .row .col .section-text-wwd p {
  width: 90%;
  color: #ffffff;
  opacity: 0.6;
}
.what-we-do .row .col .img-cont {
  width: 40%;
  margin: 2.5rem;
}
.what-we-do .row .col .img-cont img {
  width: 437px;
  height: 221px;
  border-radius: 4px;
}

.our-journey {
  margin-top: 2.5rem;
  margin-bottom: 60px;
}
.our-journey .title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin: 1.25rem;
  color: black;
  margin-bottom: 2.5rem;
}
.our-journey .journey-timeline {
  background-image: url("../images/journey-bg.png");
  background-repeat: no-repeat;
  padding: 0px 1.375rem 0px 0.75rem;
  display: flex;
  height: auto;
  margin: 2.5rem 0px;
}
.our-journey .journey-timeline .text-cont {
  display: flex;
  flex-direction: column;
  width: 16.6% !important;
  margin-bottom: 2.5rem;
}
.our-journey .journey-timeline .text-cont .cont {
  margin: 2.125rem;
}
.our-journey .journey-timeline .text-cont .cont h5 {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}
.our-journey .journey-timeline .text-cont .cont p {
  text-align: center;
}
.our-journey .journey-timeline .text-cont .not-text {
  width: auto;
  height: 70px;
}

.banner-sanskar {
  background-image: url("../images/hero.jpg");
  height: 550px;
  width: 100%;
  background-color: white;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-sanskar .hero-banner__content {
  position: relative;
  z-index: 2 !important;
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 50px 52px 0px 0px;
}
.banner-sanskar .hero-banner__content .no-content {
  margin-left: 0.625rem;
}
.banner-sanskar .hero-banner__content .content-box h2 {
  font-size: 2.375rem;
  font-weight: 800;
  line-height: 120%;
  z-index: 2;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin: 0.625rem;
}
.banner-sanskar .hero-banner__content .content-box p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 150%;
  z-index: 2;
  font-weight: 500;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin: 0.625rem;
}
.banner-sanskar .hero-banner__content .content-box img {
  border-radius: 0.5rem;
  margin: 0.625rem;
  z-index: 2;
}
.banner-sanskar .hero-banner__content .content-box a {
  margin: 10px;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.168627451);
  border: #ed801a solid 2px;
  color: #ed801a;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  z-index: 2;
  text-decoration: none;
}
.banner-sanskar .hero-banner__content::after {
  content: "";
  display: block;
  position: absolute;
  top: 63%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  z-index: 1;
  border-radius: 1.25rem;
  background-color: #ffffff;
  opacity: 0.2;
  z-index: 1;
}

.team-section-sansakar {
  padding-top: 100px;
  margin-bottom: 2.5rem;
}
.team-section-sansakar .team-section__container img {
  margin-left: 2.5rem;
}
.team-section-sansakar .team-section__container .textsec {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-section-sansakar .team-section__container .textsec .main-sub {
  margin-top: 1.25rem;
}
.team-section-sansakar .team-section__container .textsec .main-sub .left {
  padding-right: 1.875rem;
}
.team-section-sansakar .team-section__container .textsec .main-sub .right {
  padding-left: 1.875rem;
}
.team-section-sansakar .team-section__container .textsec .main-sub h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.team-section-sansakar .team-section__container .textsec .main-sub p {
  font-size: 1rem;
  font-weight: 400;
}
.team-section-sansakar .team-section__container .textsec .mainhead h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: black;
  text-transform: uppercase;
}
.team-section-sansakar .team-section__container .textsec .mainhead p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.ourWork {
  margin-top: 100px;
  margin-bottom: 100px;
}
.ourWork .ourwork_container h2 {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
}
.ourWork .ourwork_container p {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: rgba(0, 0, 0, 0.75);
}
.ourWork .ourwork_container .containers-p-and-t {
  margin-top: 80px;
}
.ourWork .ourwork_container .containers-p-and-t .p-and-t {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 24px;
  align-items: flex-start;
}
.ourWork .ourwork_container .containers-p-and-t .p-and-t .text-cont h3 {
  color: black;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
}
.ourWork .ourwork_container .containers-p-and-t .p-and-t .text-cont p {
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0px;
}
.ourWork .ourwork_container .containers-p-and-t .p-and-t img {
  margin: 5px;
}

.education-cc h2 {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
}
.education-cc .container .containers .content {
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin: 0.625rem;
}
.education-cc .container .containers .content h3 {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}
.education-cc .container .containers .content img {
  width: 100%;
  margin-bottom: 15px;
}
.education-cc .container .containers .content h4 {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0px;
}
.education-cc .container .containers .content p {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.education-cc .container .containers .content a {
  font-weight: 400;
  font-size: 0.875rem;
  text-decoration: none;
}

.real-life-section {
  margin-bottom: 100px;
  margin-top: 100px;
}
.real-life-section h2 {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: black;
}
.real-life-section .container {
  background-image: url("../images/reallife.png");
  align-items: center;
  height: 489px;
  width: 1280px;
}
.real-life-section .container .left {
  width: 50%;
}
.real-life-section .container .right {
  width: 50%;
}
.real-life-section .container .right p {
  margin: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
}

.ourexperts {
  margin-top: 100px;
  margin-bottom: 100px;
}
.ourexperts .container .heading {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin: 1.25rem;
}
.ourexperts .container .expertpp {
  justify-content: space-around;
}
.ourexperts .container .expertpp .content {
  margin: 0.625rem;
}
.ourexperts .container .expertpp .content img {
  width: auto;
}
.ourexperts .container .expertpp .content h4 {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.75rem;
}
.ourexperts .container .expertpp .content p {
  font-size: 0.75rem;
  font-weight: 800;
}

.amct {
  margin-bottom: 60px;
}
.amct .container .left {
  width: 40% !important;
}
.amct .container .left img {
  width: 78%;
  height: 313px;
}
.amct .container .right {
  width: 60% !important;
}
.amct .container .right h2 {
  margin-bottom: 1.25rem;
  padding-left: 0.625rem;
}
.amct .container .right .slides {
  width: 100%;
}
.amct .container .right .slides .text {
  padding-left: 15px;
}
.amct .container .right .slides .content {
  justify-content: space-between;
  background-color: #fcedc6;
  padding: 5px;
  margin: 0.625rem;
  border-radius: 0.5rem;
}
.amct .container .right .slides .content .arrow {
  margin-right: 12px;
}
.amct .container .right .slides h2 {
  font-size: 1.875rem;
  font-weight: 800;
  text-align: left;
  margin: 1.25rem;
}
.amct .container .right .slides p {
  margin-bottom: 0px;
}

.form .banner-contactus {
  width: 100%;
  background-repeat: no-repeat;
}
.form .banner-contactus img {
  width: 100%;
}
.form .contact-us {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 110px 0px;
}
.form .contact-us .left h3 {
  color: black;
  font-size: 42px;
}
.form .contact-us .left p {
  font-size: 16px;
  font-weight: 400;
}
.form .contact-us .left .loc .cont {
  margin-bottom: 10px;
  width: 70%;
  display: flex;
}
.form .contact-us .left .loc .cont img {
  width: 18px;
  height: 19px;
  margin-right: 10px;
  margin-top: 4px;
}
.form .contact-us .left .loc .cont p {
  margin: 0px;
}
.form .container .right {
  margin-top: 0;
  width: 50%;
}

@media (max-width: 767px) {
  .site-content {
    margin-top: 0px;
  }
  .header-area__logo {
    position: relative;
    right: 129px;
    top: 1.375rem;
  }
  .header-area__row {
    flex-direction: column;
    gap: 1rem;
  }
  .header-area__nav .main-nav__list {
    gap: 1.125rem;
  }
  .header-area__nav .main-nav__list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 0.625rem;
  }
  .header-area__nav .main-nav__list__nav .main-nav__list {
    gap: 1.125rem;
  }
  .about-section__row {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 0 0;
  }
  .about-section__content {
    padding: 2rem 1rem;
    font-size: 1.1rem;
  }
  .about-section {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 0 0;
  }
  .about-section .about-section__image {
    flex: 0 0 100%;
  }
  .team-section__categories {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .team-section__cards {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .team-section .team-card {
    width: 100%;
    min-width: 0;
  }
  .team-section .team-card__title {
    position: static;
    width: 80%;
    margin: 0 0 0.5rem 0;
    border-radius: 0.375rem;
  }
  .team-section .team-card__desc {
    position: static;
    width: 80%;
    margin: 0 0 0.5rem 0;
    border-radius: 0.375rem;
  }
  .team-section .team-card__content {
    padding: 0 35px 48px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: absolute;
    bottom: 0;
    height: 300px;
    width: 100%;
    left: 0;
    z-index: 1;
  }
  .team-section .team-card__content .team-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.625rem;
    transition: all 0.5s;
  }
  .team-section .team-card__content .team-card__desc {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.125rem;
    flex: 1;
    font-weight: 400;
    line-height: 1.4;
    min-height: 100px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .team-section .team-card__content .btn-light {
    background: transparent;
    color: #ed801a;
    border: 1px solid #ed801a;
    font-weight: 600;
    padding: 0.625rem 2rem;
    font-size: 1rem;
    transition: opacity 0.5s, transform 0.5s, background 0.5s, color 0.5s;
    width: 150px;
    border-radius: 0px;
    opacity: 0;
    transform: translateY(40px);
  }
  .team-section .team-card__content .btn-light:hover {
    background: #f57c1f;
    color: #fff;
  }
  .ppp-section1 .container .card-dim {
    flex: 0 0 calc(50% - 1.5rem);
  }
  .impact__image .imagebg {
    display: none;
  }
  .impact-section1 .impact-slider-window .impact-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .impact-section .container .imapct-section-sec {
    display: flex;
    gap: 100px;
    flex-direction: column;
  }
  .about-hero {
    margin-top: 180px;
  }
  .about-hero .container {
    flex-direction: column;
  }
  .about-hero .main-heading h2 {
    font-size: 1.75rem;
    font-weight: 700;
  }
  .about-video .container::after {
    display: none;
  }
  .mission-vision .container .row {
    flex-direction: column !important;
    align-items: center;
  }
  .knowledge-partners .container h2 {
    font-size: 1.75rem;
    font-weight: 700;
  }
  .awards .container .title {
    font-size: 1.75rem;
    font-weight: 700;
    align-items: center;
  }
  .awards .container .award-list {
    flex-direction: column !important;
    align-items: center;
    width: 95% !important;
  }
  .awards .container .awardgal {
    flex-direction: column !important;
    align-items: center;
    margin: 0.625rem;
    width: 100% !important;
  }
  .what-we-do .row .col {
    flex-direction: column !important;
    align-items: center;
    margin: 0.625rem;
    width: 95% !important;
  }
  .what-we-do .row .col .img-cont {
    width: 80% !important;
  }
  .what-we-do .row .col .img-cont img {
    width: 80% !important;
    height: auto !important;
  }
  .our-journey .title {
    font-size: 1.75rem;
    font-weight: 700;
    align-items: center;
  }
  .our-journey .journey-timeline {
    flex-direction: column !important;
    align-items: center;
    margin: 0.625rem;
    background-image: none;
  }
  .our-journey .journey-timeline .text-cont {
    width: 95% !important;
    margin-bottom: 1.25rem !important;
  }
  .our-journey .journey-timeline .text-cont .cont {
    margin: 0.625rem;
  }
  .our-journey .journey-timeline .text-cont .not-text {
    width: 0px;
    height: 0px;
  }
  .banner-sanskar {
    width: 100%;
    background-size: auto;
  }
  .banner-sanskar .hero-banner__content {
    width: 70%;
    height: auto;
    margin: 0px;
    padding: 0.625rem 0px 0px 0px;
  }
  .banner-sanskar .hero-banner__content .content-box {
    margin-top: 1.875rem;
  }
  .banner-sanskar .hero-banner__content .content-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 5px;
    margin: 5px;
  }
  .banner-sanskar .hero-banner__content .content-box p {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 5px;
    margin: 5px;
  }
  .banner-sanskar .hero-banner__content .content-box img {
    width: 30%;
    height: auto;
  }
  .banner-sanskar .hero-banner__content .content-box a {
    font-size: 14px;
    font-weight: 700;
    margin: 5px;
    padding: 0.5rem 1rem;
  }
  .banner-sanskar .hero-banner__content::after {
    width: 100%;
    left: 50%;
  }
  .team-section-sansakar {
    padding-top: 0;
  }
  .team-section-sansakar .team-section__container img {
    display: none;
  }
  .team-section-sansakar .team-section__container .textsec .main-sub {
    display: flex;
    flex-direction: column;
  }
  .team-section-sansakar .team-section__container .textsec .main-sub .left {
    padding-right: 0;
  }
  .team-section-sansakar .team-section__container .textsec .main-sub .right {
    padding-left: 0 !important;
  }
  .ourWork .ourwork_container .containers-p-and-t .p-and-t {
    flex-direction: column !important;
  }
  .ourWork .ourwork_container .containers-p-and-t .p-and-t img {
    margin: 1.25rem;
  }
  .education-cc .container .containers {
    flex-direction: column !important;
  }
  .real-life-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
  }
  .real-life-section .container {
    flex-direction: column !important;
    height: auto;
    width: 100%;
    padding: 1.25rem 0px;
    margin: 0px;
    background-image: none;
  }
  .real-life-section .container .right {
    width: 100%;
  }
  .ourexperts .container .expertpp {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .amct h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: center;
  }
  .amct .container {
    flex-direction: column !important;
    height: auto;
    width: 100%;
    padding: 1.25rem 0px;
    margin: 0px;
  }
  .amct .container .left {
    margin-top: 0;
    width: 100% !important;
  }
  .amct .container .left img {
    width: 100% !important;
  }
  .amct .container .right {
    width: 100% !important;
  }
  .amct .container .right .slides {
    width: 95%;
  }
  .amct .container .right .slides .content {
    align-items: center;
    width: 100%;
  }
  .form .banner-contactus {
    margin-top: 0px;
  }
  .form .contact-us {
    flex-direction: column-reverse;
    align-items: center;
  }
  .form .contact-us .left {
    width: 100%;
    margin-right: 0 !important;
  }
  .form .contact-us .left h3 {
    font-size: 28px;
    width: 100%;
  }
  .form .contact-us .right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header-area__logo img {
    height: 2.375rem;
    max-width: 110px;
  }
  .header-area__nav .main-nav__list__logo img {
    height: 2.375rem;
    max-width: 110px;
  }
  .hero-banner {
    min-height: 480px;
  }
  .hero-banner__slide {
    min-height: 480px;
  }
  .hero-banner__container {
    padding: 1.5rem 0.5rem 0.5rem 0.5rem;
  }
  .hero-banner__stats {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .hero-banner__stats::before {
    left: 60px;
    right: 60px;
  }
  .impact-section .impact-section .impact-section__main {
    flex-direction: column;
    padding: 1rem 0.5rem;
    gap: 1rem;
    flex-direction: column;
    padding: 1rem 0.5rem;
    gap: 1rem;
  }
  .impact-section .impact-section .impact-section__static-image img {
    max-width: 180px;
    max-width: 180px;
  }
  .impact-section .impact-section .impact-section__title {
    font-size: 1.5rem;
    font-size: 1.5rem;
  }
  .impact-section .impact-section .impact-section__nav {
    margin: 1rem 0 0 0;
    margin: 1rem 0 0 0;
  }
  .impact-section .impact-section .impact-section__nav button {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
  .impact-section .impact-section__main {
    flex-direction: column;
    padding: 1rem 0.5rem;
    gap: 1rem;
    flex-direction: column;
    padding: 1rem 0.5rem;
    gap: 1rem;
  }
  .impact-section .impact-section__static-image img {
    max-width: 180px;
    max-width: 180px;
  }
  .impact-section .impact-section__title {
    font-size: 1.5rem;
    font-size: 1.5rem;
  }
  .impact-section .impact-section__nav {
    margin: 1rem 0 0 0;
    margin: 1rem 0 0 0;
  }
  .impact-section .impact-section__nav button {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .header-area__nav .main-nav__list {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0.375rem 2rem rgba(30, 44, 78, 0.16);
    animation: stickyFadeIn 0.4s;
    z-index: 1001;
    padding: 0 2%;
  }
  .header-area__nav .main-nav__list__nav .main-nav__list {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    box-shadow: 0 2px 0.5rem rgba(30, 44, 78, 0.04);
    z-index: 1002;
  }
  .header-area__nav .main-nav__list__nav .main-nav__list li a {
    padding: 0.875rem 1.125rem;
    border-bottom: 1px solid #eee;
  }
  .header-area__nav__contact {
    width: 100%;
    justify-content: flex-end;
    right: 90px;
    position: absolute;
  }
  .header-area__nav__contact .header-area__donate {
    padding: 0.625rem 1.125rem;
    font-size: 0.95rem;
  }
  .header-area__contact {
    width: 100%;
    justify-content: flex-end;
  }
  .header-area__contact .header-area__donate {
    padding: 0.625rem 1.125rem;
    font-size: 0.95rem;
  }
  .header-area__contact .header-area__become_anna {
    padding: 0.75rem 9px;
    margin-bottom: 0.375rem;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .main-nav__list {
    display: none;
  }
  .main-nav__list.open {
    display: flex !important;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .impact-section .impact-section__static-image {
    width: 100%;
  }
  .impact-section .container .imapct-section-sec {
    align-items: center;
  }
  .impact-section .container .imapct-section-sec .imapct-image-carosel {
    flex-direction: column;
  }
  .impact-section .impact-section__slider-wrap {
    width: 100%;
  }
  .imapct-image-first {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .imapct-image-first p {
    text-align: center;
  }
  .ppp-section2 .container {
    flex-direction: column;
  }
  .ppp-section2 .container .card2 {
    width: 252px !important;
  }
  .ppp-section2 .container .card3 {
    width: 252px !important;
  }
  .ppp-section2 .container .card4 {
    width: 252px !important;
  }
  .footer-area__social {
    position: unset !important;
  }
  .impact__stats {
    margin: 0;
  }
  .slick-slide img {
    width: 241px;
  }
  .slick-list .draggable .slick-track {
    width: 100% !important;
  }
  .team-section .team-card__content .btn-light {
    padding: 0.5rem 1rem;
  }
  .container .align-items-stretch {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .hero-banner__container {
    padding: 2.5rem 1rem 1rem 1rem;
  }
  .hero-banner__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .hero-banner__actions .btn-first-section {
    background-color: transparent !important;
  }
  .hero-banner__actions .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.2s;
    box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.08);
  }
  .hero-banner__actions .btn-light {
    background: transparent;
    color: #ed801a;
    border: 1px solid #ed801a;
  }
  .hero-banner__actions .btn-light:hover {
    background: #f57c1f;
    color: #fff;
  }
  .hero-banner__actions .btn-play {
    display: flex;
    align-items: center;
    background: transparent;
    color: #fff;
    font-weight: 500;
    gap: 0.5rem;
    box-shadow: none;
    padding: 0;
    font-size: 1.1rem;
    cursor: pointer;
  }
  .hero-banner__actions .btn-play i {
    margin-right: 0.375rem;
    background: #ff7f32;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
  }
  .hero-banner__actions .btn-play:hover {
    background-color: transparent;
  }
  .hero-banner__actions .btn-play:hover i {
    color: #fff;
    background-color: #007a5c;
  }
  .hero-banner__stats {
    font-size: 1rem;
    padding: 0 1.25rem;
  }
  .hero-banner__stats::before {
    left: 120px;
    right: 120px;
  }
  .impact__content {
    flex-direction: column;
    align-items: center;
  }
  .impact__stats {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  .impact__image {
    margin-top: 1.875rem;
  }
  .impact__image .card--top {
    display: none;
  }
  .impact__image .card--bottom {
    display: none;
  }
  .gallery-section .gallery-grid1 {
    display: flex !important;
    flex-direction: column;
  }
  .impact-section .impact-section .impact-section__main {
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    min-height: unset;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    min-height: unset;
  }
  .impact-section .impact-section .impact-section__static-image img {
    max-width: 260px;
    max-width: 260px;
  }
  .impact-section .impact-section .impact-section__nav {
    margin: 1.5rem 0 0 0;
    margin: 1.5rem 0 0 0;
  }
  .impact-section .impact-section__main {
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    min-height: unset;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    min-height: unset;
  }
  .impact-section .impact-section__static-image img {
    max-width: 260px;
    max-width: 260px;
  }
  .impact-section .impact-section__nav {
    margin: 1.5rem 0 0 0;
    margin: 1.5rem 0 0 0;
  }
  .whats-new-banner {
    position: relative;
    min-height: auto !important;
  }
  .whats-new-banner3-text {
    margin-left: 0 !important;
    margin-top: 50px !important;
  }
  .whats-new-banner3-text h4 {
    font-size: 1.35rem !important;
  }
  .whats-new-banner3-text p {
    font-size: 1rem !important;
  }
  .ppp-section3 .container {
    gap: 30px;
    flex-direction: column;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .hero-banner {
    min-height: 480px;
  }
  .hero-banner__slide {
    min-height: 480px;
  }
  .hero-banner__container {
    padding: 1.5rem 0.5rem 0.5rem 0.5rem;
  }
  .hero-banner__content .hero-banner__title {
    font-size: 1.3rem;
  }
  .hero-banner__content .hero-banner__title br {
    display: none;
  }
  .hero-banner__stats {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .hero-banner__stats::before {
    display: none;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .team-section__categories {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }
  .team-section__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }
  .team-section .team-card {
    width: 80%;
    min-width: 0;
  }
  .team-section .team-card__title {
    position: static;
    width: 100%;
    margin: 0 0 0.5rem 0;
    border-radius: 0.375rem;
  }
  .team-section .team-card__desc {
    position: static;
    width: 100%;
    margin: 0 0 0.5rem 0;
    border-radius: 0.375rem;
  }
  .team-section .btn-light {
    margin-top: 0.75rem;
    margin-left: 0;
    position: static;
  }
  .team-section .impact-section .container .imapct-section-sec .imapct-image-carosel {
    display: flex;
    gap: 0.625rem;
    width: 95%;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .ppp-section1 .container .card-dim {
    flex: 0 0 100%;
  }
}
@media (max-width: 767.98px) {
  .ppp-section .ppp-section__left {
    padding: 2rem 1rem;
  }
  .ppp-section .ppp-section__right {
    padding: 2rem 1rem;
  }
  .ppp-section .ppp-section__mainimg {
    max-width: 220px;
  }
  .ppp-section .ppp-section__main-title {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .ppp-section .ppp-section__left {
    padding: 1.2rem 0.5rem;
  }
  .ppp-section .ppp-section__right {
    padding: 1.2rem 0.5rem;
  }
  .ppp-section .ppp-section__mainimg {
    max-width: 140px;
  }
  .ppp-section .ppp-section__main-title {
    font-size: 1.3rem;
  }
  .ppp-section .ppp-section__title {
    font-size: 1.2rem;
  }
  .ppp-section .ppp-section__cta-btn {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
  }
}
@media (max-width: 575px) {
  .impact-section1 .impact-slider-window .impact-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ppp-modal-content {
    padding: 0.625rem 2vw;
    max-width: 100vw;
    border-radius: 0.75rem;
  }
  .modal-content.ppp-modal-content {
    padding: 0.625rem 2vw;
    max-width: 100vw;
    border-radius: 0.75rem;
  }
  .modal-title {
    font-size: 1.1rem;
  }
  .ppp-enroll-form button {
    font-size: 0.95rem;
    padding: 0.5rem;
  }
  .ppp-enroll-form input {
    font-size: 0.95rem;
    padding: 0.625rem 0.5rem;
  }
  .ppp-enroll-form select {
    font-size: 0.95rem;
    padding: 0.625rem 0.5rem;
  }
  .ppp-enroll-form .form-check-input {
    width: 1em;
    height: 1em;
    margin-right: 0.5rem;
  }
}
@media (max-width: 768px) {
  .footer-area__row {
    flex-direction: column;
  }
  .footer-area__col {
    margin: 0 0 1.875rem 0;
  }
  .footer-area__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
  #back-top {
    display: none;
  }
}
@media (min-width: 467px) and (max-width: 700px) {
  .amct .container .left {
    margin-top: 0 !important;
    width: 100% !important;
  }
  .whats-new-banner3 {
    height: 110px !important;
  }
  .whats-new-banner3 .whats-new-banner3-text {
    margin-left: 0 !important;
  }
  .whats-new-banner3 .whats-new-banner3-text p {
    font-size: 7px !important;
  }
  .whats-new-banner3 .whats-new-banner3-text h4 {
    font-size: 0.75rem !important;
  }
  .ourexperts {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem !important;
  }
  .banner-sanskar {
    height: 447px !important;
  }
  .textsec .main-sub {
    margin-top: 1.25rem;
    flex-direction: column !important;
  }
  .textsec .main-sub .right {
    padding-left: 0 !important;
  }
  .real-life-section {
    margin-bottom: 0 !important;
    margin-top: 50px;
  }
  .ourWork {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .team-section-sansakar {
    padding-top: 0 !important;
    margin-bottom: 1.25rem !important;
  }
  .team-section-sansakar .container.team-section__container {
    flex-direction: column-reverse !important;
  }
  .team-section-sansakar .team-section__container img {
    display: block !important;
    width: 78%;
  }
  .what-we-do .row .col .img-cont img {
    width: 100% !important;
  }
  .what-we-do .row .col .section-text-wwd {
    margin: 0.625rem !important;
  }
  .site-content .about-hero {
    margin-top: 25px;
  }
  .header-area__nav .main-nav__list .menu-item .sub-menu {
    width: 15.563rem;
    top: 3.5rem;
    left: 1rem;
  }
  .gallery-section .gallery-grid1 {
    display: flex;
    flex-direction: column;
  }
  .impact-section .container .imapct-section-sec {
    flex-direction: column !important;
  }
  .impact-section .container .imapct-section-sec .imapct-image-carosel {
    flex-direction: column !important;
  }
  .impact-section .container .imapct-section-sec .imapct-image-carosel .card {
    width: 217px !important;
  }
  .impact-section .impact-section__slider .impact-slide {
    display: flex;
    justify-content: center;
  }
  .footer-area__col1 .footer-area__social {
    position: unset !important;
  }
  .header-area__become_anna {
    padding: 0.625rem 1.188rem !important;
  }
  .header-area__row {
    display: flex;
    align-items: flex-start !important;
  }
  .team-card {
    margin: 0 1.125rem;
  }
  .team-section .team-card__content {
    height: 366px !important;
  }
  .team-section .team-card__content .btn-light {
    padding: 0.625rem 1rem;
  }
  .ppp-section1 .container .card-dim {
    width: 256px !important;
  }
  .ppp-section2 .container {
    flex-direction: column !important;
  }
  .ppp-section2 .container .card2 {
    width: 247px !important;
  }
  .ppp-section2 .container .card3 {
    width: 247px !important;
  }
  .ppp-section2 .container .card3 .card-content .card-text {
    height: 226px !important;
  }
  .ppp-section2 .container .card4 {
    width: 247px !important;
  }
  .ppp-section2 .container .card4 .card-content .card-text {
    height: 400px !important;
  }
  .impact__image .card {
    max-width: 186px !important;
    height: 93px !important;
    font-size: 0.5rem !important;
  }
  .impact__image .card--top {
    display: none !important;
  }
  .impact__image .card--bottom {
    display: none !important;
  }
  .impact-slide .slide-content p {
    font-size: small !important;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  a,
  button {
    padding: 5px 7px !important;
    margin-bottom: 5px !important;
    font-size: 0.625rem;
    border-radius: 4px !important;
  }
  .team-section-sansakar {
    margin-bottom: 1.875rem !important;
  }
  .team-section-sansakar .textsec .mainhead h3 {
    font-size: 1.5rem !important;
    margin-bottom: 5px !important;
  }
  .team-section-sansakar .textsec .mainhead p {
    font-size: 1rem !important;
  }
  .ourWork {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .ourWork h2 {
    font-size: 1.5rem !important;
    margin-bottom: 5px !important;
  }
  .ourWork .containers-p-and-t {
    margin-top: 1.875rem !important;
  }
  .ourWork .containers-p-and-t .img {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .ourWork .containers-p-and-t .img img {
    width: 95% !important;
    margin: 0px !important;
  }
  .education-cc {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .education-cc h2 {
    font-size: 1.5rem !important;
    margin-bottom: 5px !important;
  }
  .real-life-section {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
    margin-right: 0.75rem;
    margin-left: 0.75rem;
  }
  .real-life-section h2 {
    font-size: 1.5rem !important;
    margin-bottom: 5px !important;
  }
  .real-life-section .right p {
    margin: 10px !important;
  }
  .impact-slider-controls {
    bottom: 190px !important;
  }
  .ourexperts {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .amct {
    margin-bottom: 1.875rem !important;
  }
  .amct .right .slides .content .text p {
    font-size: 1rem !important;
  }
  .amct .right .slides .content .arrow img {
    padding-right: 0.25rem;
  }
  .impact-slide__content img {
    padding: 0.5rem;
    margin: 0.5rem;
  }
  .team-section {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .impact-section {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  .impact-section .impact-section__slider .impact-slide__content {
    padding: 0px !important;
    margin: 0px !important;
  }
  .impact-section .impact-section__slider .impact-slide__content img {
    width: 100%;
  }
  .impact-slide .slide-content {
    padding: 0.35rem;
  }
  .impact-slide .slide-content p {
    font-size: 0.55rem !important;
  }
  .about-hero {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .awards h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  .awards {
    font-size: 1.5rem !important;
  }
  .awards .award-list {
    margin-bottom: 30px !important;
  }
  .what-we-do .row .col .section-text-wwd {
    margin: 0.75rem;
  }
  .what-we-do .row .col .section-text-wwd h4 {
    font-size: 1.85rem;
    margin-bottom: 5px;
    text-align: center;
  }
  .what-we-do .row .col .section-text-wwd p {
    text-align: center;
  }
  .what-we-do .row .col .img-cont {
    margin: 0.75rem;
  }
  .what-we-do .row .col .img-cont img {
    width: 100% !important;
  }
  .what-we-do {
    margin-bottom: 30px !important;
  }
  .our-journey {
    margin-bottom: 30px;
  }
  .our-journey .journey-timeline .text-cont .no-text {
    display: none !important;
  }
  .whats-new-banner3 {
    height: 160px !important;
  }
  .whats-new-banner3 .whats-new-banner3-text {
    margin-top: 10px !important;
    width: 50% !important;
  }
  .whats-new-banner3 .whats-new-banner3-text h4 {
    font-size: 18px !important;
  }
  .whats-new-banner3 .whats-new-banner3-text p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .gallery-grid .slick-list .slick-track {
    display: flex;
  }
  .ppp-section2 .container .row .card2,
  .ppp-section2 .container .row .card3,
  .ppp-section2 .container .row .card4 {
    width: 90% !important;
  }
  .impact {
    padding: 30px 1.25rem;
  }
  .gallery-section {
    padding: 0px !important;
  }
  .impact-section1 .impact-slider-window {
    overflow: hidden;
    width: 100%;
  }
  .impact-section1 .impact-slider-window .impact-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
  }
  .impact-section1 .impact-slider-window .impact-slide {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .impact-section1 .impact-slider-controls {
    bottom: 160px !important;
  }
  .impact .impact__stats .stat h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .impact .impact__stats .stat p {
    font-size: 0.9rem;
  }
  .mission-vision {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .gallery-section1 .gallery-grid1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 932px) {
  .header-area .container {
    max-width: 890px !important;
  }
  .header-area .container .header-area__row {
    flex-direction: row !important;
    gap: 5px;
  }
  .header-area .container .header-area__row .header-area__logo img {
    height: 40px !important;
  }
  .header-area .container .header-area__row .header-area__nav .menu-primary-container ul {
    gap: 1rem;
  }
  .header-area .container .header-area__row .header-area__nav .menu-primary-container ul li a {
    font-size: 0.75rem;
  }
  .header-area .container .header-area__row .header-area__contact a {
    font-size: 0.75rem;
    padding: 1rem 0.75rem;
  }
  .impact-section .impact-section__main {
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .impact-section .impact-section__main .impact-section__slider-wrap {
    flex: 0 0 100% !important;
    width: 100%;
  }
  .impact-section .impact-section__main .impact-section__slider-wrap .impact-slide .impact-slide__content img {
    margin: 0 auto;
  }
  .impact-section .impact-section__static-image {
    flex: 0 0 100%;
    width: 100%;
  }
  .imapct-section-sec {
    align-items: center;
    flex-direction: column;
  }
  .imapct-section-sec .imapct-image-first {
    width: 100% !important;
  }
  .imapct-section-sec .imapct-image-first .text-upp-im {
    text-align: center;
    width: 100% !important;
  }
  .imapct-section-sec .imapct-image-carosel {
    width: 100% !important;
  }
  .imapct-section-sec .imapct-image-carosel .card .name {
    font-size: 0.75rem !important;
    height: 46px !important;
  }
  .imapct-section-sec .imapct-image-carosel .card .role {
    margin-bottom: 0.25rem;
  }
  .imapct-section-sec .imapct-image-carosel .card .subject-title {
    font-size: 0.75rem !important;
  }
  .imapct-section-sec .imapct-image-carosel .card .subjects {
    font-size: 0.75rem !important;
  }
  .ppp-section2 .container .row .card2,
  .ppp-section2 .container .row .card3,
  .ppp-section2 .container .row .card4 {
    width: 100%;
  }
  .ppp-section2 .container .row .card2 .card-content .card-title,
  .ppp-section2 .container .row .card3 .card-content .card-title,
  .ppp-section2 .container .row .card4 .card-content .card-title {
    font-size: 0.75rem;
  }
  .ppp-section2 .container .row .card2 .card-content .card-text,
  .ppp-section2 .container .row .card3 .card-content .card-text,
  .ppp-section2 .container .row .card4 .card-content .card-text {
    font-size: 0.65rem;
    height: 145px;
  }
  .impact .impact__stats {
    margin: 7rem;
  }
  .what-we-do .row .col .section-text-wwd h4 {
    font-size: 1rem;
  }
  .what-we-do .row .col .section-text-wwd p {
    font-size: 0.85rem;
  }
  .what-we-do .row .col .img-cont img {
    width: 300px;
    height: 150px;
  }
  .our-journey .journey-timeline {
    background-image: none;
  }
  .our-journey .journey-timeline .text-cont {
    width: 100% !important;
  }
  .our-journey .journey-timeline .text-cont .no-text {
    display: none;
  }
  .whats-new-banner3 .whats-new-banner3-text {
    margin-top: 100px;
  }
  .team-section-sansakar .team-section__container {
    width: 100%;
    flex-direction: column-reverse;
  }
  .ourWork .ourwork_container .containers-p-and-t .p-and-t {
    flex-direction: column !important;
  }
  .education-cc .container .containers {
    flex-wrap: wrap;
  }
  .real-life-section h2 {
    margin-bottom: 0px;
  }
  .real-life-section .container {
    background-image: none;
    width: 100%;
  }
  .real-life-section .container .right {
    width: 100%;
  }
  .real-life-section .container .right p {
    margin-top: 0px;
  }
  .real-life-section .container .left {
    width: unset;
  }
  .ourexperts .expertpp {
    flex-wrap: wrap;
  }
  .amct .container {
    flex-direction: column;
    flex-direction: column;
  }
  .amct .container .left, .amct .container .right {
    width: 100% !important;
    height: auto !important;
  }
  .amct .container .left img {
    height: 424px;
  }
}/*# sourceMappingURL=common.css.map */