@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.logo-row img {
  height: 80px;
}

.bharat-logo img {
  height: 70px !important;
}

.header {
  border-bottom: 3px solid
    linear-gradient(
      90deg,
      #f36f21,
      /* orange */ #fcb040,
      /* yellow */ #8dc63f,
      /* green */ #00aeef /* blue */
    ) !important;
  position: relative;

  .nav-link {
    position: relative;
  }

  .nav-link::before {
    width: 0;
    content: "";
    transition: 0.5s all ease-in-out;
    height: 3px;
    border-radius: 20px;
    background-color: var(--bs-secondary);
    position: absolute;
    bottom: 0px;
    left: 0px;
  }

  .nav-link:hover::before {
    width: 100%;
  }
}

.header:before,
.header:after {
  bottom: -3px;
  z-index: 99;
  position: absolute;
  content: "";
  height: 3px;
  width: 50%;
  background: linear-gradient(
    90deg,
    #f36f21,
    /* orange */ #fcb040,
    /* yellow */ #8dc63f,
    /* green */ #00aeef /* blue */
  ) !important;
}

.header:after {
  left: 0;
}

.header:before {
  left: 0px;
}

.top-band {
  border-color: #00000040 !important;
}

.home_slider .owl-nav,
.patner_slider .owl-nav,
.testimonial_slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px 10px;
}

/* .home_slider::before {
    content: "";
    background-image: url(../images/banner-bg-patten.png);
    background-size: cover;
    background-position: center, right;
    width: 100%;
    display: block;
    height: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0.3;
}
.home_slider > div{
    position: relative;
    z-index: 2;
} */
/* .owl-nav i {
    width: 40px;
    height: 40px;
    line-height: 25px;
    text-align: center;
} */

.banner-title {
  font-size: 36px;
  font-weight: 400;
  /* color: #eed106; */
}

.banner-content {
  padding-right: 70px !important;
}

.banner-content p {
  margin-bottom: 20px;
}

.owl-dots {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100;
}

.connet-button {
  position: fixed;
  left: 1rem;
  bottom: 100px;
}

.connet-button a {
  transition: 0.8s all ease-in;
}

.connet-button span {
  transition: 1s all ease-in-out;
  opacity: 1;
  border-left: 0px !important;
  border: 2px solid var(--bs-primary);
  border-radius: 0 20px 20px 0;
  padding: 6px;
  padding-right: 1rem;
  width: 0px;
  opacity: 0;
  text-wrap: nowrap;
  overflow: hidden;
  color: rgba(var(--bs-dark-rgb)) !important;
}

.connet-button a:hover span {
  width: 100%;
  opacity: 1;
}

.connet-button i {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--bs-primary);
}

.social-icon a {
  width: 35px;
  min-width: 35px;
  height: 35px;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  /* border: 1px solid var(--bs-secondary); */
  background-color: var(--bs-secondary);
  border-radius: 50%;
  transition: 0.5s all ease-in-out;
}

.social-icon a:hover {
  color: #fff;
  /* border: 1px solid var(--bs-primary); */
  background-color: var(--bs-primary);
}

.special-head {
  color: var(--bs-primary);
  font-size: 18px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  min-width: 100px;
}

.special-head:before {
  content: "";
  background: var(--bs-secondary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  border-radius: 20px;
}

.special-head::after {
  content: "";
  background: var(--bs-secondary);
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
}

.special-head.text-white::before {
  background-color: #fff;
}

.title {
  margin-bottom: 20px;
  font-size: 30px;
}

.about-colum img {
  width: calc(50% + 20px);
  border-radius: 5px;
}

.about-colum .img2 {
  margin-top: 25%;
  margin-left: -40px;
}

.about-colum .img2::after {
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  display: block;
  border: 2px solid var(--bs-primary);
  z-index: 99;
}

.about-video {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  border: 5px solid var(--bs-info);
  border-radius: 15px;
  padding: 0px 30px 0;

  img {
    width: 100%;
    border-radius: 15px;
    position: relative;
    top: -30px;
  }

  .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
  }
}

/* .sector-card::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background: linear-gradient(360deg, #000, #00000000 70%);
} */
.sector-card {
  transition: 0.5s all ease-in-out;
  box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;

  .text-primary {
    transition: 0.5s all ease-in-out;
  }
}

.sector-card:hover {
  /* background-color: var(--bs-secondary); */
  color: #fff !important;
  box-shadow: rgba(var(--bs-secondary-rgb), 0.5) 0px 2px 8px 0px;

  .text-primary {
    color: #fff !important;
  }
}

/* Sector specific hover colors (full colors) */
#agriculture.sector-card:hover {
  background-color: #008000;
  /* Full Agriculture color */
}

#healthcare.sector-card:hover {
  background-color: #3131b1;
  /* Full Healthcare color */
}

#circular-economy.sector-card:hover {
  background-color: #d38c09;
  /* Full Circular Economy color */
}

#livelihoods.sector-card:hover {
  background-color: #8b4513;
  /* Full Livelihoods color */
}

#inclusive-development.sector-card:hover {
  background-color: #800080;
  /* Full Inclusive Development color */
}

#climate-action.sector-card:hover {
  background-color: #419ab7;
  /* Full Climate Action color */
}

.sector-card img {
  aspect-ratio: 7/4;
  object-fit: cover;
}

.serv-card {
  border: 2px solid var(--bs-secondary) !important;
  border-bottom: 10px solid var(--bs-secondary) !important;
  transition: 0.5s all ease-in-out;
  border-radius: 40px;

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

  li {
    position: relative;
    display: flex;
  }

  li::before {
    content: "\f058";
    font-family: "FontAwesome";
    margin-right: 5px;
    color: var(--bs-secondary);
    transition: 0.5s all ease-in-out;
  }

  .serv_icon {
    display: block;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: var(--bs-secondary);
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;

    img,
    h3,
    ul {
      transition: 0.5s all ease-in-out;
    }
  }

  .serv_icon1 {
    display: block;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: #4dc8f4;
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;

    img,
    h3,
    ul {
      transition: 0.5s all ease-in-out;
    }
  }

  .serv_icon2 {
    display: block;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: #2957a4;
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;

    img,
    h3,
    ul {
      transition: 0.5s all ease-in-out;
    }
  }

  .serv_icon3 {
    display: block;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: #ff9800;
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;

    img,
    h3,
    ul {
      transition: 0.5s all ease-in-out;
    }
  }
}

.serv-card1 {
  border: 2px solid #ff9800 !important;
  border-bottom: 10px solid #ff9800 !important;
  transition: 0.5s all ease-in-out;
  border-radius: 40px;

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

  li {
    position: relative;
    display: flex;
  }

  li::before {
    content: "\f058";
    font-family: "FontAwesome";
    margin-right: 5px;
    color: var(--bs-secondary);
    transition: 0.5s all ease-in-out;
  }

  .serv_icon {
    display: block;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: #ff9800;
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;

    img,
    h3,
    ul {
      transition: 0.5s all ease-in-out;
    }
  }

  .serv_icon1 {
    display: block;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: #ff9800;
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;

    img,
    h3,
    ul {
      transition: 0.5s all ease-in-out;
    }
  }

  .serv_icon2 {
    display: block;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: #ff9800;
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;

    img,
    h3,
    ul {
      transition: 0.5s all ease-in-out;
    }
  }

  .serv_icon3 {
    display: block;
    width: 120px;
    height: 120px;
    padding: 20px;
    background: #ff9800;
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;

    img,
    h3,
    ul {
      transition: 0.5s all ease-in-out;
    }
  }
}

.serv-card:hover {
  background: var(--bs-secondary);
  border-color: var(--bs-primary) !important;

  .serv_icon {
    background: #fff;

    img {
      filter: brightness(0) saturate(100%) invert(81%) sepia(6%) saturate(2973%)
        hue-rotate(47deg) brightness(92%) contrast(87%);
    }
  }
  .serv_icon1 {
    background: #fff;

    img {
      filter: brightness(0) saturate(100%) invert(81%) sepia(6%) saturate(2973%)
        hue-rotate(47deg) brightness(92%) contrast(87%);
    }
  }
  .serv_icon2 {
    background: #fff;

    img {
      filter: brightness(0) saturate(100%) invert(81%) sepia(6%) saturate(2973%)
        hue-rotate(47deg) brightness(92%) contrast(87%);
    }
  }
  .serv_icon3 {
    background: #fff;

    img {
      filter: brightness(0) saturate(100%) invert(81%) sepia(6%) saturate(2973%)
        hue-rotate(47deg) brightness(92%) contrast(87%);
    }
  }

  ul {
    list-style: none;
    color: #fff;
  }

  h3 {
    color: #fff !important;
  }

  li::before {
    color: #fff;
  }
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
}

footer {
  .social-icon a {
    background-color: #fff !important;
    color: var(--bs-primary);
  }

  .social-icon a:hover {
    background-color: var(--bs-secondary) !important;
  }
}

.patner-row {
  /* display: flex;
    gap: 3rem;
    flex-wrap: wrap; */
  position: relative;

  .owl-nav {
    padding: 0px !important;
  }

  img {
    height: 60px;
    object-fit: contain;
    width: auto;
  }
}

.patner_slider {
  padding: 0px 50px;
}

.values-sec {
  /* background-image: url(../images/values-bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 100px 0; */
  position: relative;

  .values-item {
    border-radius: 10px 30px 10px 30px;
    transition: 0.3s all ease-in-out;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    background-color: #fff;
  }

  div {
    position: relative;
    z-index: 3;
  }

  .h1 {
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 1px 1px #fff;
  }

  .values-item:hover {
    color: #fff !important;
    background-color: var(--bs-primary);

    img {
      filter: brightness(0) saturate(100%) invert(100%) sepia(25%)
        saturate(410%) hue-rotate(340deg) brightness(118%) contrast(99%);
    }
  }

  img {
    transition: 0.3s all ease-in-out;
    /* filter: brightness(0) saturate(100%) invert(22%) sepia(11%) saturate(6572%) hue-rotate(196deg) brightness(94%) contrast(103%); */
  }

  /* Hover effects */
  #empower:hover {
    background-color: var(--bs-success);
    color: white;
  }

  #innovate:hover {
    background-color: var(--bs-info);
    color: white;
  }

  #impact:hover {
    background-color: var(--bs-secondary);
    color: white;
  }

  #sustain:hover {
    background-color: var(--bs-success);
    color: white;
  }

  #excel:hover {
    background-color: var(--bs-info);
    color: white;
  }

  #collaborate:hover {
    background-color: var(--bs-primary);
    color: white;
  }
}

/* .values-sec::before {
    background-color: #00000095;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
} */

.goal-img {
  margin-top: 0px;
  margin-left: 20px;
  padding: 20px 0px;

  img {
    top: 0px;
    left: -20px;
  }
}

.divider {
  border-bottom: 2px dashed var(--bs-primary);
}

.about-row {
  gap: 30px;
  position: relative;
  width: calc(100% - 100px);
  margin: 0px auto;

  .about-card {
    width: calc(50% - 15px);
    background: #fff;
  }

  .about-card.left,
  .about-card.left {
    padding-right: 50px !important;
  }

  .about-card.right,
  .about-card.right {
    padding-left: 50px !important;
  }

  .icon-card {
    background: var(--bs-primary);
    padding: 20px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    width: 100px;
    border: 10px solid #fff;
  }

  .icon-card img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(93deg) brightness(103%) contrast(103%);
  }

  .item-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bs-light);
    /* background-color: #fff; */
    box-shadow: 0 0 0 3px var(--bs-secondary);
    border-radius: 50%;
    padding: 20px;
  }

  .item-center::before,
  .item-center::after,
  .item-center > div::before,
  .item-center > div::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-color: var(--bs-light);
    /* background-color: #fff; */
    display: block;
  }

  .item-center::before,
  .item-center::after {
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
  }

  .item-center::after {
    top: auto;
    bottom: -5px;
  }

  .item-center > div::before,
  .item-center > div::after {
    top: 50%;
    transform: translateY(-50%);
    left: -5px;
  }

  .item-center > div::after {
    left: auto;
    right: -5px;
  }

  .item-center > div {
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    padding: 1rem;
    display: flex;
    text-align: center;
    align-items: center;
    border: 3px solid var(--bs-primary);
  }
}

.inner-banner {
  padding: 70px 0px;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;

  h1 {
    color: #fff;
  }

  nav a {
    color: #fff;
    text-decoration: none;
  }

  .breadcrumb-item.active {
    /* color: var(--bs-secondary); */
    color: #fff;
  }

  video,
  img {
    min-height: 400px;
    height: 40vh;
    display: block;
    object-fit: cover;
  }

  .inner-banner-des {
    transform: translateY(-50%);
  }
}

.inner-banner::after {
  content: "";
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.7483368347338936) 100%
  );
  background: -webkit-linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.7483368347338936) 100%
  );
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.7483368347338936) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
}

.inner-banner > div {
  position: relative;
  z-index: 3;
}

.choose-card {
  width: calc(20% - 20px);
  transition: 0.5s all ease-in-out;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  .icon {
    background-color: var(--bs-secondary);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50%;
    transition: 0.5s all ease-in-out;
    margin: 0px auto;

    img {
      filter: brightness(0) saturate(100%) invert(100%) sepia(0%)
        saturate(7492%) hue-rotate(87deg) brightness(100%) contrast(104%);
    }
  }

  .text-primary,
  img {
    transition: 0.5s all ease-in-out;
  }
}

.choose-card:hover {
  background-color: var(--bs-secondary);

  color: #fff;

  .icon {
    background-color: #fff;
  }

  img {
    filter: brightness(0) saturate(100%) invert(81%) sepia(6%) saturate(2973%)
      hue-rotate(47deg) brightness(92%) contrast(87%);
  }

  .text-primary {
    color: #fff !important;
  }
}

.offering-card {
  transition: 0.5s all ease-in-out;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  ul {
    list-style: none;
    margin: 0px;
    padding: 0px;

    li {
      position: relative;
      display: flex;
      margin-bottom: 5px;
    }

    li::before {
      content: "\f00c";
      font-family: "FontAwesome";
      margin-right: 5px;
      color: var(--bs-secondary);
      transition: 0.5s all ease-in-out;
    }
  }

  .text-primary {
    transition: 0.5s all ease-in-out;
  }

  img {
    transition: 0.5s all ease-in-out;
    aspect-ratio: 7/3;
    object-fit: cover;
  }
}

.offering-card:hover {
  background-color: var(--bs-secondary);
  color: #fff;

  .text-primary,
  li::before {
    color: #fff !important;
  }
}

/* .process-item {
    .single-item {
        box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    }

    .inner {
        padding-left: 100px
    }

    .icon-box {
        width: 80px;
    }

    .process-title {
        padding-left: 80px;
        transition: .5s all ease-in-out
    }

    .process-title span {
        transition: .5s all ease-in-out;

    }

    .single-item .inner .process-title a i {
        position: relative;
        top: 5px;
        opacity: 0;
        transition: .5s all ease-in-out
    }

    .inner .process-title:before {
        display: block;
        content: '';
        width: 40px;
        height: 2px;
        position: absolute;
        top: 50%;
        left: 30px;
        transform: translateY(50%);
        transition: .5s all ease-in-out;
        background-color: var(--bs-primary);
    }

    .single-item:hover .inner .process-title span,
    .single-item:hover .inner .process-title:before {
        opacity: 0
    }

    .single-item:hover .inner .process-title {
        padding-left: 0
    }

    .single-item:hover .inner .process-title a i {
        opacity: 1
    }
} */
.criteria-card {
  border-bottom-width: 10px !important;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */

  .icon {
    width: 100px;
    height: 100px;

    img {
      filter: brightness(0) saturate(100%) invert(22%) sepia(11%)
        saturate(6572%) hue-rotate(196deg) brightness(94%) contrast(103%);
    }
  }

  .icon::after,
  .icon::before {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    left: -110%;
    top: 50%;
    transform: translateY(50%);
    content: "";
    border: 2px dashed var(--bs-primary);
    /* background-color: var(--bs-secondary); */
  }

  .icon::before {
    left: auto;
    right: -110%;
  }
}

.process-card {
  .icon {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    margin-left: auto;

    img {
      filter: brightness(0) saturate(100%) invert(98%) sepia(100%) saturate(0%)
        hue-rotate(290deg) brightness(102%) contrast(102%);
    }
  }
}

.core-pillars-card {
  .icon {
    width: 100px;
    height: 100px;

    img {
      filter: brightness(0) saturate(100%) invert(22%) sepia(11%)
        saturate(6572%) hue-rotate(196deg) brightness(94%) contrast(103%);
    }
  }

  .icon::after,
  .icon::before {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    left: -110%;
    top: 50%;
    transform: translateY(50%);
    content: "";
    background-color: var(--bs-primary);
  }

  .border-secondary::after,
  .border-secondary::before {
    background-color: var(--bs-secondary);
  }

  .border-info::after,
  .border-info::before {
    background-color: var(--bs-info);
  }

  .border-success::after,
  .border-success::before {
    background-color: var(--bs-success);
  }

  .icon::before {
    left: auto;
    right: -110%;
  }
}

.stage-row {
  .about-card.right {
    padding-left: 120px !important;
  }

  .about-card.left {
    padding-right: 120px !important;
  }
}

.stage-sec {
  .line {
    height: 3px;
    /* background-color: var(--bs-primary); */
    position: relative;
    margin: 70px 0px;
  }

  .circle {
    width: 20px;
    height: 20px;
    background-color: var(--bs-secondary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }

  .line::before,
  .line::after {
    content: "";
    margin: 0px auto;
    width: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 0;
    height: 70px;
    background-color: var(--bs-primary);
  }

  .line::after {
    top: auto !important;
    bottom: 0;
  }

  .stage-row {
    justify-items: center;
    gap: 20px;

    .stage-box {
      margin-right: 100px;
      width: calc(50% - 60px);
    }

    .stage-box:nth-last-child(1) {
      margin-right: 0px;
    }

    .stage-box:nth-last-child(1) .stage-card::before {
      content: none;
    }
  }

  .stage-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    z-index: 3;

    .icon {
      min-width: 90px;
      width: 90px;
      height: 90px;
      background: #fff;
      padding: 20px;
      border-radius: 50%;
      margin-right: 50px;
    }
  }

  .stage-card::before {
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    /* clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%); */
    clip-path: polygon(100% 49%, 0 0, 0 100%);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: -70px;
    z-index: -1;
    background-color: var(--bs-primary);
    /* border: 10px solid var(--bs-primary); */
  }

  .stage-number {
    font-size: 190px;
    min-width: 100px;
    margin-right: 30px;
    opacity: 0.5;
    color: var(--bs-primary);
  }
}

.stage-bg {
  background-position: center, right;
  /* background-image: url(../images/stage-bg.jpg); */
  background-repeat: no-repeat;
  background-size: cover;

  .stage-card {
    backdrop-filter: blur(50px);
  }
}

/* .stage-bg::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(var(--bs-dark-rgb), 0.5);
    z-index: 1;
} */

.pro-sec {
  .icon {
    width: 100px;
    height: 100px;
    margin: 0px auto 1rem;
  }

  #agriculture-icon {
    border-color: #4caf50 !important;

    .icon {
      background-color: #4caf50;
    }
  }

  #healthcare-icon {
    border-color: #ff9800 !important;

    .icon {
      background-color: #ff9800;
    }
  }

  #waste-management-icon {
    border-color: #8bc34a !important;

    .icon {
      background-color: #8bc34a;
    }
  }

  #livelihoods-icon {
    border-color: #2196f3 !important;

    .icon {
      background-color: #2196f3;
    }
  }

  #education-icon {
    border-color: #9c27b0 !important;

    .icon {
      background-color: #9c27b0;
    }
  }

  #climate-action-icon {
    border-color: #f44336 !important;

    .icon {
      background-color: #f44336;
    }
  }

  /* .icon:hover .pro-sec-title {
        opacity: 1;

    } */

  /* .pro-sec-title {
        opacity: 0;
        transition: 0.5s all ease-in-out;
        z-index: 999;
        min-width: max-content;
        transform: translate(-50%, 50%);
    } */
}

.pro-sec-style-one {
  .pro-sec-card,
  .icon,
  img {
    transition: 0.5s all ease-in-out;
  }

  .pro-sec-title {
    margin-bottom: 0px;
    transition: 0.5s all ease-in-out;
  }

  .pro-sec-card:hover {
    .pro-sec-title {
      color: #fff;
    }

    .icon {
      background-color: #fff !important;
    }

    img {
      filter: brightness(0) saturate(100%) invert(0%) sepia(87%) saturate(7500%)
        hue-rotate(17deg) brightness(88%) contrast(97%);
    }
  }

  #agriculture-icon:hover {
    background-color: #4caf50;
  }

  #healthcare-icon:hover {
    background-color: #ff9800;
  }

  #waste-management-icon:hover {
    background-color: #8bc34a;
  }

  #livelihoods-icon:hover {
    background-color: #2196f3;
  }

  #education-icon:hover {
    background-color: #9c27b0;
  }

  #climate-action-icon:hover {
    background-color: #f44336;
  }
}

/* .pro-sec-style-two>div {
    border-right: 1px solid var(--bs-secondary);
} */

.pro-sec-style-two {
  .pro-sec-card {
    border: 0px !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  .pro-sec-card:hover .pro-sec-title::before {
    width: 100%;
  }

  .pro-sec-card .pro-sec-title {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
  }

  .pro-sec-card .pro-sec-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 2;
    width: 0;
    transition: 0.5s all ease-in-out;
  }

  #agriculture-icon .pro-sec-title::before {
    background-color: #4caf50;
  }

  #healthcare-icon .pro-sec-title::before {
    background-color: #ff9800;
  }

  #waste-management-icon .pro-sec-title::before {
    background-color: #8bc34a;
  }

  #livelihoods-icon .pro-sec-title::before {
    background-color: #2196f3;
  }

  #education-icon .pro-sec-title::before {
    background-color: #9c27b0;
  }

  #climate-action-icon .pro-sec-title::before {
    background-color: #f44336;
  }
}

.offering-card-two {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  .nav-link::before {
    height: 3px;
  }

  .icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    padding: 15px;
  }

  img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(83%) saturate(2%)
      hue-rotate(27deg) brightness(107%) contrast(101%);
  }
}

/* .quest-off-sec {
    background-image: url('../images/impact-quest-offerings.png');
    background-size: 43%;
    background-position: top right;
    background-repeat: no-repeat;
    border-top-left-radius: 20px;
} */

.quest-off-img {
  border-radius: 200px 0px 0px 0px;
  object-fit: cover;
}

/* .projct-menu {

    opacity: 0;
    height: 100%;
    overflow: hidden;
    transition: .5s all ease-in-out;
    top: 0px;

    ol {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        margin-bottom: 0px;
    }
} */

/* 
.sdg-box {
    perspective: 1000px;
    width: 100%;
}

.sdg-item {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 2s ease-in-out;
    transform-style: preserve-3d;

    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.sdg-box:hover .sdg-item {
    transform: rotateY(180deg);
    transition: transform 0.5s;
}



.sdg-front,
.sdg-back {
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sdg-back {
    transform: rotateY(180deg);
} */
/* .community-card{
    img{
        aspect-ratio: ;
        height: 300px;
        object-fit: cover;
        object-position: top;
    }
 } */
.community-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  .icon {
    width: 100px;
    height: 100px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  img {
    object-fit: cover;
    height: 100%;
    object-position: top;
  }
}

.entrepreneurs-card {
  .icon {
    width: 80px;
    min-width: 80px;
    height: 80px;

    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    img {
      filter: brightness(0) saturate(100%) invert(22%) sepia(11%)
        saturate(6572%) hue-rotate(196deg) brightness(94%) contrast(103%);
    }
  }
}

#top-to-bottom {
  bottom: 100px;
  right: 50px;
  width: 40px;
  height: 40px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s all ease-in-out;
  cursor: pointer;
  border-radius: 5px;
}

#top-to-bottom.active {
  visibility: visible;
  opacity: 1;
}

.navbar-toggler {
  background-color: var(--bs-primary);

  .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(901%)
      hue-rotate(35deg) brightness(109%) contrast(98%);
  }
}

.testimonial-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: url(../images/testimonial-bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;

  .author-thumb {
    width: 120px;
    max-width: 120px;
    height: 120px;
    min-width: 120px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
  }

  .testimonial-text {
    font-size: 15px;
  }
}

.testimonial_slider {
  padding-left: 4rem;
  padding-right: 4rem;
}

/* loader css start  */
.loader,
.loader:before {
  border: 5px solid transparent;
}

.loader:after,
.loader:before {
  content: "";
  position: absolute;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-top-color: var(--bs-secondary);
  border-radius: 100%;
  -webkit-animation: 2s linear infinite spin;
  animation: 2s linear infinite spin;
  z-index: 1001;
}

.loader:before {
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-top-color: var(--bs-primary);
  border-radius: 100%;
  -webkit-animation: 3s linear infinite spin;
  animation: 3s linear infinite spin;
}

.loader:after {
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 5px solid transparent;
  border-top-color: #fff;
  border-radius: 100%;
  -webkit-animation: 1.5s linear infinite spin;
  animation: 1.5s linear infinite spin;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: #0000002e;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loaded .loader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: 0.3s ease-out 1s;
}

.jury-card {
  padding: 1rem;
  border: 2px solid var(--bs-primary) !important;
  border-bottom: 10px solid var(--bs-primary) !important;
  transition: 0.5s all ease-in-out;
  border-radius: 40px;
  background-color: #fff;

  img {
    aspect-ratio: 4 / 4;
    /* object-fit: contain; */
    min-width: 100px;
    width: 100px;
    object-position: center;
    /* background-color: #efefef; */
    border-radius: 50%;
    margin: 0px auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
}

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

.dropdown-menu-sub {
  display: none;
  list-style: none;
  padding: 0px 10px;
  border-top: 1px solid #dbcece;
}

.dropdown-submenu:hover .dropdown-menu-sub {
  display: block;
}

/* loader css end  */
