html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 14px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
}

a {
  text-decoration: none !important;
}

p {
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
}

.left-space {
  margin-left: 30px;
}

.heading {
  font-size: 34px;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  text-transform: capitalize;
}

.heading:before {
  position: absolute;
  content: "";
  background: #d9d9d9;
  width: 250px;
  height: 2px;
  bottom: -15px;
  left: 0;
}

.center-heading {
  text-align: center;
}

.center-heading.heading:before {
  right: 0;
  margin: 0 auto;
}

/* Buttons */

.butn-default {
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #3c6fb3;
  min-width: 150px;
  background: #fff;
  border: 1.4px solid #3c6fb3;
  transition: all 0.5s ease-In;
  display: inline-block;
  text-transform: uppercase;
}

.butn-default:hover,
.butn-default:focus {
  outline: none;
  box-shadow: none;
}

.butn-default:hover {
  color: #fff;
}

.butn-default span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 54px;
  background: #3c6fb3;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.butn-default:hover span {
  width: 225%;
  height: 562px;
}

/*---------*/

.butn-transparent {
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  min-width: 150px;
  background: transparent;
  border: 1.4px solid #fff;
  transition: all 0.5s ease-In;
  display: inline-block;
  text-transform: uppercase;
}

.butn-transparent:hover,
.butn-transparent:focus {
  outline: none;
  box-shadow: none;
}

.butn-transparent:hover {
  color: #fff;
  border-color: #3c6fb3;
}

.butn-transparent span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 54px;
  background: #3c6fb3;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.butn-transparent:hover span {
  width: 225%;
  height: 562px;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/*--------------- header ---------------*/

.header-area {
  padding: 20px 0px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  background: #053993;
  background-image: url(../img/header.png);
}

.stick {
  position: fixed;
  padding: 5px 0px 8px;
}

.stick .logo img {
  width: 200px;
}

.logo a {
  display: inline-block;
}

.logo img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 200px;
}

.about-head h4 span strong {
  font-weight: 400;
}

.header-area nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-area .logo {
  width: 200px;
  height: auto;
}

.nav-wrap .top_nav {
  display: flex;
  margin-bottom: 0px;
}

.nav-wrap .top_nav .list-inline {
  margin-bottom: 0;
}

.nav-wrap ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}

.main-menu {
  display: flex;
  justify-content: end;
  align-items: center;
}

.main-menu ul {
  margin: 0;
}

.main-menu ul li {
  margin-left: 25px;
  display: inline-block;
}

.main-menu ul li:first-child {
  margin-left: 0px;
}

.nav-wrap ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.2s ease-In;
  padding: 10px 5px;
  text-transform: uppercase;
  position: relative;
}

.nav-wrap ul li a:hover {
  color: #ed4688;
}

.nav-wrap ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1.3px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}

.nav-wrap ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -5px;
  height: 1.3px;
  width: 0;
  background: #ed4688;
  transition: width 0.5s ease;
}

.nav-wrap ul li a:hover:before {
  width: 100%;
  background: #ed4688;
  transition: width 0.5s ease;
}

.nav-wrap ul li a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

.nav-wrap ul li a.active {
  color: #ed4688;
}

.nav-wrap ul li a.active:before {
  width: 100%;
  background: #ed4688;
}

.nav-wrap ul li a.active:after {
  width: 100%;
  background: transparent;
}

.dropdown .nav-link i {
  margin-left: 5px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20%);
  transition: all 0.4s ease-out;
  padding: 10px 12px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4%);
}

.dropdown-menu a {
  color: #0098ff !important;
  padding: 0 !important;
  margin-bottom: 12px;
  font-size: 15px;
  display: block;
}

.dropdown-menu a:hover {
  color: #ed4688 !important;
  background-color: transparent;
}

.dropdown-menu a:last-child {
  margin-bottom: 0px;
}

.header-area .top_nav ul li:nth-child(5)>a {
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1em;
  background-color: #032560;
  border-radius: 20px;
  padding: 12px 25px 12px 25px;
  width: auto;
  border: 1px solid #fc3131;
  color: #fff !important;
}

.header-area .top_nav ul li:nth-child(5)>a:after,
.header-area .top_nav ul li:nth-child(5)>a:before,
.header-area .top_nav ul li:last-child>a:after,
.header-area .top_nav ul li:last-child>a:before {
  display: none;
}

/* .header-area .top_nav ul li:last-child>a {
    text-align: center;
    transition: all .3s;
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1em;
    background-color: #FC3131;
    border-radius: 20px;
    padding: 12px 25px 12px 25px;
    width: auto;
    color: #fff !important;
} */

/*--------------- mobile menu ---------------*/

.menu-button {
  display: none;
  text-align: right;
  transition: all 0.3s ease-out;
}

.menu-button img {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  filter: brightness(0) invert(1);
}

.black-drop {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  z-index: 999;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.cosult-form-visible .black-drop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  left: -450px;
  top: 0px;
  width: 300px;
  max-width: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  background: linear-gradient(180deg, #0098ff 40%, #1767f3 90%);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.cosult-form-visible .mobile-menu {
  left: 0px;
  opacity: 1;
  visibility: visible;
}

.mobile-menu .inner-box {
  position: relative;
  padding: 70px 20px 20px;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100vh;
}

.mobile-menu .inner-box .cross-icon {
  position: absolute;
  right: 16px;
  top: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu .inner-box .cross-icon img {
  width: 40px;
  /* filter: brightness(0) saturate(100%); */
}

/*.mobile-link{
overflow-x: hidden;
overflow-y: scroll;
height: 100vh;
}*/

.mobile-link h4 {
  color: #fff;
  border-left: 3px solid #fcd462;
  padding-left: 15px;
  margin: 0px 0 18px;
  font-size: 20px;
}

.mobile-link ul {
  margin-bottom: 0px;
  list-style: none;
}

.mobile-link ul li {
  margin-bottom: 15px;
}

.mobile-link ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.2s ease-In;
  text-transform: uppercase;
}

.mobile-link ul li a:hover {
  color: #3a6ab0;
}

.side-menu-logo {
  position: absolute;
  left: 20px;
  top: 25px;
}

.side-menu-logo img {
  width: 50px;
}

.mobile-drop-menu a {
  display: block;
  margin: 12px 0px;
  font-size: 18px !important;
}

/*---sidebar menu dropdown----*/

.sidebar-menu ul {
  margin: 0;
  padding: 0;
}

.sidebar-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.sidebar-menu ul li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0rem;
}

.sidebar-menu ul li a i {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding-top: 8px;
  list-style: none;
  margin-left: 20px;
  border-bottom: 1px solid #fff;
}

.sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-dropdown.active .fa-angle-down {
  transform: rotate(180deg);
}

/*--------------- banner slider ---------------*/

.slider-nav {
  margin-bottom: 0px;
}

.banner-section {
  position: relative;
  /* overflow: hidden;
height: 100vh; */
}

.banner-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slide-btn {
  position: relative;
}

.banner-text-wrap {
  position: absolute;
  bottom: 15%;
  z-index: 9999;
  width: 100%;
  padding: 30px;
}

.banner-section .slick-dots {
  bottom: 5%;
}

.news-section .project-circle.bottom {
  display: none;
}

.partner-bg .partner-logo {
  margin: 10px auto 20px;
}

.banner-text-wrap .banner-icon {
  width: 60px;
  margin: 0 auto;
}

.slide-btn h3 {
  /* position: absolute;
top: 0; */
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 600;
  text-transform: capitalize;
  /* text-shadow: 1px 2px 2px rgb(0, 0, 0, .5); */
  /* width: 48%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh;
left: 90px; */
}

.slide-btn p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 200;
}

.slide-btn p span {
  text-align: center;
  color: #fc3131;
  font-size: 20px;
  font-weight: 200;
}

.slide-btn .wave-icon {
  width: 80%;
  margin: 20px auto;
}

.banner-section ul.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0px;
  margin-left: 5px;
  width: auto;
  height: auto;
}

.banner-section ul.slick-dots li button {
  width: 30px;
  height: 5px;
  background-color: #73a6ff;
  border-radius: 8px;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 0 !important;
}

.banner-section .slick-dots li button:before {
  display: none;
}

.banner-section .slider-dots-box .slick-active button:after {
  content: none;
  display: none;
}

.banner-section .slider-dots-box .slick-active button:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

ul.slick-dots>li.slick-active button {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background-color: #ed4688;
}

.slick-dots li button:before {
  display: none;
}

/* .news-section .slick-dots li button{
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background-color: #032560;
    padding: 5px;
} */
.slick-dots li button {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background-color: #032560;
  padding: 5px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 8px;
  padding: 0;
}

.news-section .slick-next:before,
.news-section .slick-prev:before {
  font-size: 30px;
  line-height: 1;
  opacity: 0.75;
  color: #0098ff;
}

.home-banner ul.slick-dots>li.slick-active button {
  background-color: transparent;
}

.content-area {
  width: 50%;
}

.button-wrap {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.donate-button {
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1em;
  background-color: #fc3131;
  border-radius: 20px;
  padding: 12px 25px 12px 25px;
  width: auto;
  color: #fff !important;
}

/*--------------- About ---------------*/
.sub-title {
  color: #1767f3;
  margin-bottom: 30px;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}

.title {
  color: #0098ff;
  margin-bottom: 30px;
}

.title span {
  color: #ed4688;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  padding-bottom: 60px;
}

.about-circle {
  position: absolute;
  top: 0;
}

/* Buttons */

.butn-default {
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  min-width: 150px;
  border-radius: 20px;
  background: #032560;
  border: 1.4px solid #032560;
  transition: all 0.5s ease-In;
  display: inline-block;
  text-transform: uppercase;
}

.butn-default:hover,
.butn-default:focus {
  outline: none;
  box-shadow: none;
}

.butn-default:hover {
  color: #fff;
}

.butn-default span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 54px;
  background: #fc3131;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.butn-default:hover span {
  width: 225%;
  height: 562px;
}

.about-box-inner {
  background-color: #1767f3;
  padding: 40px 20px;
  border-radius: 10px;
  min-height: 260px;
  margin-bottom: 30px;
}

.about-box-inner p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  margin-bottom: 0;
}

/*---------*/
.project-section {
  padding: 80px 0;
  position: relative;
  z-index: 9;
  padding-top: 0px;
}

.project-section .sub-title,
.project-section .title {
  text-align: center;
}

.main-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.project-section .image-section {
  position: relative;
  width: 50%;
}

.project-section .project-content {
  width: 45%;
  padding: 50px;
  position: relative;
}

.project-section .project-content h3 span {
  color: #ed4688;
}

.project-section .project-content h3 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #0098ff;
}

.project-section .section-2 .project-content {
  width: 50%;
  padding: 50px;
}

.project-section .section-2 .project-content ul li {
  margin-bottom: 15px;
}

@keyframes loaderRotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
    -o-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.project-circle {
  position: absolute;
  left: -100px;
  bottom: -36%;
  width: 180px;
  z-index: 1;
  width: 180px;
  height: 180px;
  -webkit-animation: loaderRotate 30s linear infinite;
  -moz-animation: loaderRotate 30s linear infinite;
  -o-animation: loaderRotate 30s linear infinite;
  animation: loaderRotate 30s linear infinite;
}

.video-section {
  background-image: url(../img/video-thumb.webp);
  width: 100%;
  height: 480px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: relative;
  border: 3px solid #fff;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button a {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.play-button a .fa {
  color: #ed4688;
  font-size: 30px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.play-button::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  display: block;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-border 2.5s linear infinite;
}

.process-section .sub-title,
.process-section .title {
  text-align: center;
  color: #fff;
}

.process-section {
  position: relative;
  background-color: #053993;
  padding: 150px 0;
  margin-top: -200px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
}

.process-section .process-box {
  width: 33%;
}

.process-section .process-box img {
  width: 90%;
  margin: 0 auto;
}

.process-section .process-box:nth-child(2) {
  margin-top: 16%;
}

.process-section .process-circle {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translate(-50%, 10px);
  z-index: 1;
}

.tech-section {
  margin-top: 80px;
}

#gallery .slick-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#gallery img {
  margin: 0.2rem;
}

#location {
  display: flex;
}

#location .slick-dots {
  bottom: -70px;
}

#location .slick-slide {
  display: block;
  margin: 0 20px;
}

#location .slick-prev,
.news-slider .slick-prev {
  left: 0;
  background: url("../img/arrow-prev.png") 0 0 / 100% no-repeat;
  width: 30px;
  height: 30px;
}

#location .slick-next,
.news-slider .slick-next {
  right: 0;
  background: url("../img/arrow-next.png") 0 0 / 100% no-repeat;
  width: 30px;
  height: 30px;
}

#location .slick-next:before,
#location .slick-prev:before {
  display: none;
}

.news-slider .slick-next:before,
.news-slider .slick-prev:before {
  display: none;
}

.news-section {
  position: relative;
}

.news-section .project-circle.top {
  bottom: 0;
  left: 10%;
  top: 18%;
  z-index: -1;
}

.news-section .project-circle.bottom {
  right: 10%;
  left: unset;
  bottom: 5%;
  z-index: -1;
}

.news-section .news-card img {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.location-slider .slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}

.location-slider {
  margin-top: 70px;
  background-color: whitesmoke;
  padding: 8em 2em;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translatex(-1000%);
  }
}

.location-slider img {
  width: 100px;
  height: 100px;
  animation: scroll 60s linear infinite;
}

.bottom-slider {
  margin-top: 60px;
}

.location-section {
  position: relative;
  padding: 80px 0;
  background-image: url(../img/project-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.location-section .sub-title,
.location-section .title {
  text-align: center;
}

.impact-section .sub-title,
.impact-section .title {
  text-align: center;
}

section.impact-section {
  padding: 0px 0;
}

.item-number {
  text-align: center;
}

.item-number h4 {
  display: inline-block;
  font-size: 40px;
  margin: 20px 0px 10px;
  color: #fff;
  text-align: center;
  line-height: 54px;
  font-weight: 500;
}

.item-number span {
  font-size: 40px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 54px;
}

.item-number p {
  margin: 0px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.count-area {
  background-color: #053993;
  padding: 80px 0;
  margin-top: -50px;
}

.count-area .counter-title {
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 40px;
}

.count-area .counter-title span {
  color: #ed4688;
}

.count-area .item-number img {
  width: 90px;
  margin: 0px auto;
}

.client-area {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

section.client-area .sub-title,
section.client-area .title {
  text-align: center;
}

.client-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 100px;
}

.client-box {
  margin-bottom: 20px;
}

.client-box img {
  width: 60%;
  margin: 0 auto;
}

.client-circle {
  position: absolute;
  width: 650px;
  top: -21px;
  left: 50%;
  transform: translate(-50%, 10px);
}

.partner-bg .partner-logo {
  width: 300px;
  display: block;
  margin: 60px auto 20px;
}

.partner-bg {
  width: 70%;
  margin: 0 auto;
  background-image: url(../img/partner-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.partner-bg p {
  text-align: center;
}

.founder-section {
  padding: 80px 0;
  position: relative;
  background-color: #f2f6ff;
}

.founder-section .wave-icon {
  padding: 80px 0;
  width: 98%;
  margin: 0 auto;
}

.founder-content img {
  width: 150px;
}

.founder-section-image img {
  width: 80%;
  margin: 0 auto 30px;
}

.founder-section-image strong {
  text-align: center;
  display: block;
  font-weight: 600;
}

.founder-content strong {
  font-weight: 500;
}

.founder-section-image p {
  text-align: center;
}

.news-section {
  padding: 80px 0;
}

.news-section .sub-title,
.news-section .title {
  text-align: center;
}

.news-card {
  margin: 15px;
  border: 1px solid #ababab;
  border-radius: 10px;
}

.news-card .date .fa {
  color: #ed4688;
  margin-right: 10px;
}

.news-card .date {
  display: flex;
  align-items: center;
}

.news-card .title {
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
}

.news-card .news-detail a {
  text-transform: capitalize;
}

.news-card .desc {
  color: #727272;
}

.news-card .news-detail {
  padding: 10px;
}

.support-card {
  background-image: url(../img/support-us.webp);
  display: flex;
  border-radius: 10px;
  padding: 40px 60px;
  width: 80%;
}

.support-card h5 {
  color: #fff;
  font-size: 26px;
  text-transform: capitalize;
}

.support-card p {
  color: #fff;
}

section.support-section {
  padding: 80px 0;
}

.button-pink {
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  min-width: 150px;
  border-radius: 20px;
  background: #fc3131;
  border: 1.4px solid #fc3131;
  transition: all 0.5s ease-In;
  display: inline-block;
  text-transform: uppercase;
}

.button-pink:hover,
.button-pink:focus {
  outline: none;
  box-shadow: none;
}

.button-pink:hover {
  color: #000 !important;
}

.button-pink span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 54px;
  background: #fff;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.button-pink:hover span {
  width: 225%;
  height: 562px;
}

/*--------------- footer ---------------*/

.footer {
  padding-top: 80px;
  background: linear-gradient(180deg, #032560, #053c9c 80%);
  background-image: url(../img/footer-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-logo img {
  width: 220px;
  margin: 0 auto;
}

.footer-logo p {
  color: #fff;
  margin-top: 40px;
  text-align: left;
  margin-bottom: 0px;
}

.footer-links h4,
.footer-address h4 {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
  position: relative;
  text-transform: capitalize;
}

.footer-links h4:before,
.footer-address h4:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 90px;
  height: 2px;
  bottom: -10px;
  left: 0;
}

.footer-links ul {
  margin: 0px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li:last-child {
  margin-bottom: 0px;
}

.footer-links ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s ease-In;
}

.footer-links ul li a:hover {
  color: #3a6ab0;
  padding-left: 5px;
}

.footer-social {
  margin-top: 30px;
  text-align: center;
}

.footer-social ul {
  margin: 0px;
  text-align: left;
}

.footer-social ul li {
  margin-right: 8px;
  display: inline-block;
}

.footer-social ul li:last-child {
  margin-right: 0px;
}

.footer-social ul li a {
  display: block;
}

.footer-social ul li a i {
  margin-right: 5px;
  color: #fff;
  font-size: 25px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer-social ul li a:hover i {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

.footer-social ul li a:hover img {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

.footer-address ul {
  margin: 0px;
}

.footer-address ul li {
  margin-bottom: 12px;
  display: flex;
}

.footer-address ul li:last-child {
  margin-bottom: 0px;
}

.footer-address p {
  margin: 0px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
}

.footer-address img {
  width: 18px;
  height: 18px;
  margin-right: 9px;
}

.footer-address a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s ease-In;
}

.footer-address a:hover {
  color: #3a6ab0;
}

.footer .button-pink {
  width: 100%;
  margin-top: 10px;
}

.footer-links,
.footer-address {
  margin-top: 30%;
}

.scanner img {
  width: 100px;
  margin-left: 20px;
  margin-top: 40%;
}

.footer-address.subscribe {
  margin-top: 14%;
}

.footer-copyright {
  border-top: 1px solid #fff;
  padding: 12px 0px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright.menu {
  border: none;
}

.footer-copyright p {
  margin: 0px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.footer-copyright ul {
  margin: 0px;
}

.footer form {
  width: 100%;
}

.footer-copyright ul li {
  display: inline-block;
  color: #fff;
}

.footer-copyright ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease-In;
}

.footer-copyright ul li a:hover {
  color: #3a6ab0;
}

.footer-copyright span {
  color: orange;
}

.footer-govlogo {
  text-align: center;
}

.footer-govlogo img {
  width: 120px;
  margin: 0px 10px;
}

.footer-brand-logo img {
  width: 320px;
  margin: 0 auto;
  display: block;
}

.footer .wave-icon {
  padding: 40px 0;
}

/*-------------- Register Page --------------*/
.header-banner-section {
  position: relative;
}

.header-banner-section .main-banner {
  height: 520px;
  width: 100%;
  object-fit: cover;
}

.header-banner-section .white-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.header-banner-section .main-title {
  position: absolute;
  bottom: 4px;
  text-align: center;
  width: 100%;
  color: #ed4688;
  font-size: 35px;
  text-shadow: 2px 2px 5px rgb(237 70 136 / 28%);
}

.header-banner-section .main-title:before,
.header-banner-section .main-title:after {
  content: attr(title);
  padding: 50px;
  color: #820b3a;
  position: absolute;
}

.header-banner-section .main-title:before {
  top: 1px;
  left: 1px;
}

.header-banner-section .main-title:after {
  top: 2px;
  left: 2px;
}

.banner-content-section {
  padding: 80px 0 0;
}

.banner-content-section .banner-content-wrap .title {
  text-align: center;
  margin-bottom: 0;
  font-size: 30px;
}

.banner-content-section .banner-content-wrap p {
  text-align: center;
}

.banner-content-wrap .smsb-logo {
  width: 340px;
  margin: 0 auto;
}

.banner-content-wrap .wave-icon {
  padding: 40px 0;
}

.form-container {
  position: relative;
  background-color: #f7fbff;
  border: 2px solid #d4d4d4;
  padding: 2px;
  border-radius: 10px;
  margin-top: 30px;
}

.form-container .hang-left {
  position: absolute;
  left: 10%;
  top: -180px;
  z-index: 1;
}

.form-container .hang-right {
  position: absolute;
  right: 10%;
  top: -180px;
  z-index: 1;
}

.single-input {
  position: relative;
  display: flex;
  align-items: center;
}

.single-input .input-icon {
  position: absolute;
  right: 15px;
  z-index: 1;
}

.country-select .input-icon {
  z-index: 11;
}

.single-input .input-icon.icon-left {
  right: unset;
  left: 15px;
}

.single-input .iti {
  width: 100%;
  z-index: 10;
}

.form-container form {
  top: 50%;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px 10px 0px;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ced4da;
}

select {
  text-indent: 20px;
}

.form-container .project-circle.right {
  bottom: 0;
  top: -11%;
  right: -4%;
  left: unset;
  z-index: -1;
  height: 100px;
  width: 100px;
}

.form-container .project-circle.left {
  left: -6%;
  bottom: -7%;
  z-index: 1;
  width: 100px;
  height: 100px;
}

.form-bottom-content {
  margin-top: 100px;
}

.form-bottom-content p {
  text-align: center;
}

.project-location {
  background-image: url(../img/india-map.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: unset;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 60px;
}

.project-location .smsb-logo {
  margin-bottom: 40px;
}

.project-location .title span {
  color: #ed4688;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.project-location .location-card p {
  text-align: center;
  margin-bottom: 0;
}

.project-location .location-card .location-title {
  color: #032560;
  font-weight: 600;
  line-height: 1;
}

.project-location .location-image {
  display: block;
  margin: 0 auto;
  margin-bottom: 7px;
}

.project-location .location-title {
  text-transform: uppercase;
  font-size: 22px;
}

.project-location .location-name {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 400;
}

.project-location .location-card .location-name {
  color: #032560;
  font-weight: 600;
  line-height: 1.5;
}

.project-location .location-card {
  position: relative;
  background-color: #fff;
  border: 3px dotted #0969ef;
  border-radius: 10px;
  padding: 20px 10px;
}

.project-location .location-card .wave-icon {
  margin-top: 20px;
  margin-bottom: 20px;
}

.project-location .location-card-outer:nth-child(2) {
  margin-top: 14%;
}

.project-location .location-box {
  margin-top: -10%;
}

.register-page .banner-content-wrap h2 {
  font-size: 19px;
  font-weight: 500;
  text-align: left;
  color: #ed4688;
}

.register-page .banner-content-wrap p {
  text-align: left;
}

.register-item strong {
  color: #000;
  font-weight: 500;
}

.register-item li {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-content {
  padding: 40px 0px;
}

.join-section img {
  width: 100%;
}

.join-content .logo-img {
  width: 100px;
}

.join-content h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}

.join-item {
  display: flex;
  background-image: url("../img/border-bottom.png");
  background-repeat: no-repeat;
  background-position: bottom;
  margin-bottom: 20px;
}

.join-right img {
  width: 35px;
}

.join-item h4 {
  font-size: 18px;
  color: #1767f3;
  font-weight: 600;
}

.join-item .join-left {
  width: 70%;
}

.join-item .join-right {
  width: 30%;
}

.join-item .right-img {
  text-align: right;
}

.join-content .youwecan {
  color: #1767f3;
}

.join-content .youwecan2 {
  color: #ed4688;
}

.join-content {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 20px;
  border-radius: 10px;
  margin-top: 60px;
  margin-left: -90px;
  position: relative;
  z-index: 3;
  background: #fff;
  padding-bottom: 10px;
}

.join-section .logo-wrap {
  text-align: right;
}

.lets-content {
  padding: 50px 0px;
  background: #f7fbff;
}

.contact-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-form .form-control {
  color: #3c3c3c;
  border: 0px;
  border-bottom: 1.5px solid #bfcada;
  border-radius: 0px;
  padding: 5px 5px;
  height: auto;
  font-size: 15px;
  font-weight: 300;
  position: relative;
  background: transparent;
}

.contact-form .form-img {
  position: absolute;
  right: 0;
  top: 9px;
}

.contact-form .title {
  color: #0098ff;
  font-weight: 600;
  font-size: 35px;
  margin-top: 20px;
  line-height: 1.1;
}

.lets-text>span {
  color: #1767f3;
  font-weight: 600;
  font-size: 15px;
}

.address-text {
  padding: 10px 0px;
  padding-top: 19px;
}

.address-text p {
  margin-bottom: 8px;
  color: #747474;
}

.address-text i {
  color: #032560;
  margin-right: 6px;
}

.address-text a {
  color: #747474;
}

.address-text p:last-of-type a {
  color: #0c96f6;
}

.join-item.last-join {
  background-image: unset;
}

.join-item.last-join p:last-of-type {
  margin-bottom: 0px;
}

.address-text p:last-of-type a:hover,
.address-text a:hover {
  color: #ed4688;
}

.keep-form textarea#message {
  border: 1.5px solid #bfcada;
  border-radius: 10px;
  padding: 20px;
}

.gallery-img {
  font-size: 40px;
  margin-bottom: 0px;
  margin-top: 35px;
}

.xiomi-content {
  margin-top: 40px;
}

.count-wrapper .count-area {
  padding: 10px 0;
  margin-top: 0;
  border-radius: 15px;
  background-image: unset;
}

.count-wrapper .item-number {
  margin-bottom: 10px;
  margin-top: 30px;
}

.count-wrapper {
  background-image: url("../img/contact-bg.png");
  background-size: cover;
  width: 700px;
  background-color: #053993;
  padding-right: 123px;
  border-radius: 20px;
  position: relative;
}

.count-wrapper .count-area .item-number img {
  width: 70px;
}

.count-wrapper .item-number h4 {
  margin: 5px 0px 10px;
  font-size: 35px;
}

.new-process-wraps {
  margin-top: 0px;
  padding: 60px 0;
}

.register-page {
  padding-bottom: 90px;
  padding-top: 40px;
}

.empower-content .title {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.empower-section {
  padding: 40px 0px;
}

.count-wrapper .count-center {
  position: absolute;
  left: 42%;
  height: 400px;
}

.count-wrapper .count-bottom {
  position: absolute;
  left: 0;
  top: 41%;
}

.project-location .top-content {
  max-width: 900px;
  margin: 0 auto;
}

.mobile-location {
  display: none;
}

.mobile-location .slick-prev {
  left: 0;
  background: url(../img/arrow-prev.png) 0 0 / 100% no-repeat;
  width: 30px;
  height: 30px;
}

.mobile-location .slick-next {
  right: 0;
  background: url(../img/arrow-next.png) 0 0 / 100% no-repeat;
  width: 30px;
  height: 30px;
}

.mobile-location .slick-next:before,
.mobile-location .slick-prev:before {
  display: none;
}

.impact-page .content-text p {
  text-align: center;
}

.impact-location {
  padding: 30px 0px;
}

.count-area.impact-count {
  margin-top: 0px;
}

.impact-gallery-wraps {
  background-color: transparent;
  margin-top: 0px;
  padding: 40px 0px;
}

.impact-gallery-wraps .title {
  color: #0098ff;
  margin-top: 0px;
}

.contact-count .count-wrapper .item-number h4 {
  margin-bottom: 0px;
}

.contact-count .item-number p {
  margin-bottom: 20px;
}

.contact-count {
  position: relative;
  padding-top: 60px;
}

.contact-vector {
  position: absolute;
  left: 46%;
  bottom: auto;
  width: 180px;
  z-index: 1;
  width: 160px;
  height: 160px;
  -webkit-animation: loaderRotate 30s linear infinite;
  -moz-animation: loaderRotate 30s linear infinite;
  -o-animation: loaderRotate 30s linear infinite;
  animation: loaderRotate 30s linear infinite;
  top: 0px;
  z-index: -1;
}

.project-section .swasth-logoIcon {
  width: 300px;
  margin-bottom: 10px;
}

.location-count span {
  font-weight: 700;
  font-size: 16px;
}

.project-location.location-model {
  background-image: unset;
}

.location-model .modal-header {
  padding: 0px;
  margin: 0px;
  border: 0px;
  position: absolute;
  right: 4px;
  z-index: 9;
}

.location-model .location-img {
  height: 200px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.location-model .location-img img {
  height: 100%;
  object-fit: cover;
}

.location-model .modal-header .close {
  padding: 0px;
  margin: 0px;
  color: #0969ef;
  opacity: 1;
  font-size: 19px;
}

.project-location.location-model .location-card .wave-icon {
  margin-top: 10px;
  margin-bottom: 10px;
}

.location-section .image img {
  width: 100%;
}

.impact-content li {
  margin-bottom: 10px;
}

.contact-wraps p {
  text-align: center;
}

.lets-text img,
.project-section .image-section img,
.impact-section-image img {
  border-radius: 10px;
}

.project-section-new .sub-title {
  margin-bottom: 20px;

}

.about-row-inner {

  margin-top: 50px;
}

.project-section-new .project-content h3 {
  margin-bottom: 20px;
}

.project-section-new .project-rows {

  margin: 50px 0px;
}