
/********** Template CSS **********/ :root {
  --primary: #FF6F0F;
  --secondary: #FFF0E6;
  --light: #F8F8F9;
  --dark: #001D23;
}


/* Add this CSS to your existing CSS file */
.custom-red-bg {
    background-color: red !important;
    color: white !important;
}


.btn-laguage {
  font-size: 12px;
  border: 0px solid #bcd0e5;
  border-radius: 4px;
  background-color: #ff5400;
  font-weight: 400;
  border-top: 0px;
  position: relative;
  color: #fff;
  padding: 3px 20px;
}
.nav-link {
  font-size: 13px;
  color: #fff;
}
.btn-increase-decrease {
  border-right: 1px solid #ccc;
  padding-right: 8px;
  margin-right: 7px;
}
.btn-increase-decrease > a {
  width: 20px;
  height: 20px;
  color: #000;
  font-size: 11px;
  margin: 0px 2px;
  text-align: center;
  line-height: normal;
  padding: 4px 0px;
  background: #fff;
  font-weight: 500;
  border-radius: 2px;
  transition: linear 0.1s;
}
.btn-increase-decrease > a:hover {
  transform: scale(1.10);
}
.btn-color-mode > a {
  width: 21px;
  height: 20px;
  color: #000;
  font-size: 11px;
  margin: 0px 2px;
  text-align: center;
  line-height: normal;
  padding: 3px;
  background: #fff;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid #fff;
  transition: linear 0.1s;
}
.btn-color-mode > a:hover {
  transform: scale(1.10);
}
.btn-color-mode > a:last-child {
  background: #333;
  color: #fff;
  border: 1px solid #fff;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}
#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}
.btn.btn-primary, .btn.btn-outline-primary:hover {
  color: #FFFFFF;
}
.btn.btn-primary:hover {
  color: var(--primary);
  background: transparent;
}
.btn-square {
  width: 38px;
  height: 38px;
}
.btn-sm-square {
  width: 32px;
  height: 32px;
}
.btn-lg-square {
  width: 48px;
  height: 48px;
}
.btn-square, .btn-sm-square, .btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
.pseudo-search {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 6px 15px;
  transition: background-color 0.5 ease-in-out;
  margin-top: 10px;
}
.pseudo-search input {
  border: 0;
  background-color: transparent;
  color: #fff;
}
.pseudo-search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.pseudo-search input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.pseudo-search input:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.pseudo-search input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.pseudo-search input:focus {
  outline: none;
}
.pseudo-search button, .pseudo-search i {
  border: none;
  background: none;
  cursor: pointer;
  color: #fff
}
.pseudo-search select {
  border: none;
}
.navbar-logo {
  display: block;
  margin-top: -20px;
}
.navbar-logo img {}
.bg-dark .navbar-logo {
  margin-top: 0px;
}
.bg-dark .navbar-logo img {
  padding: 5px;
  height: 60px;
}
.bg-dark .menu-btn {
  font-size: 18px;
  padding: 9px 13px;
}
/*** Navbar ***/
.fixed-top {
  transition: .5s;
}
.top-bar {
  height: 45px;
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #FFFFFF;
  font-weight: 500;
  outline: none;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    background: var(--dark);
  }
  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}
.side-bar {
  background: #1b1a1b;
  backdrop-filter: blur(15px);
  width: 280px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -280px;
  overflow-y: auto;
  transition: 0.6s ease;
  transition-property: right;
}
.side-bar::-webkit-scrollbar {
  width: 0px;
}
.side-bar.active {
  right: 0;
}
.side-bar .menu {
  width: 100%;
  margin-top: 40px;
}
.side-bar .menu .item {
  position: relative;
  cursor: pointer;
}
.side-bar .menu .item a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 5px 30px;
  line-height: 38px;
}
.side-bar .menu .item a:hover {
  background: #33363a;
  transition: 0.3s ease;
}
.side-bar .menu .item i {
  margin-right: 15px;
}
.side-bar .menu .item a .dropdown {
  position: absolute;
  right: 0;
  margin: 6px;
  transition: 0.3s ease;
}
.side-bar .menu .item .sub-menu {
  background: #262627;
  display: none;
}
.side-bar .menu .item .sub-menu a {
    padding: 8px 30px;
    line-height: normal;
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 78px;
}
.rotate {
  transform: rotate(90deg);
}
.close-btn {
  position: absolute;
  color: #fff;
  font-size: 23px;
  right: 20px;
  cursor: pointer;
  top: 10px;
}
.menu-btn {
  position: relative;
  color: rgb(0 0 0);
  font-size: 18px;
  cursor: pointer;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 5px;
  margin-top: 8px;
  float: right;
  margin-left: 10px;
}
.main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
.main h1 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 60px;
  text-align: center;
  line-height: 80px;
}
.carousel-inner {
  height: 100vh;
}
.left-slider-img {
  /* position: absolute; */
  /* top: 0px; */
  /* left: 2%; */
  color: #000;
  /* margin-top: 20px; */
}
.left-slider-img > ul {
  margin: 0px;
  padding: 0px;
}
.left-slider-img > ul > li {
  list-style: none;
  background: rgb(255 255 255);
  padding: 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 0px;
  display: inline-block;
  border-radius: 10px;
}
.left-slider-img > ul > li > img {
  display: block;
  border-radius: 100%;
  height: 100px;
  border: 1px solid #989898;
  float: left;
}
.left-slider-img > ul > li h2 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.left-slider-img > ul > li p {
  font-size: 18px;
  margin: 0px;
  font-weight: 500;
}
.name-text {
  display: table-cell;
  vertical-align: middle;
  height: 100px;
  padding-left: 20px;
  text-align: left;
}
/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background: rgba(0, 29, 35, .8); */
  z-index: 1;
/*
  background: rgb(0 0 0);
  background: linear-gradient(0deg, rgba(34, 193, 195, 0) 0%, rgb(0 0 0 / 62%) 100%);
*/
}
.carousel-control-prev, .carousel-control-next {
  width: 15%;
	    top: 10rem;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}
.page-header {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .9)), url(../img/inner-banner.jpg) center center no-repeat;
  background-size: cover;
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}
.customdropdown .btn-secondary {
  display: block;
  width: 384px;
  padding: 8px 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #2f2f2f;
  background-color: #fff;
  background-size: 16px 12px;
  border: 1px solid #E6DED1;
  border-radius: 6px 0 0 6px;
  appearance: none;
  text-align: left;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  position: absolute;
  right: 20px;
  top: 21px;
}
.customdropdown .dropdown-menu {
  padding: 13px 20px;
  font-size: 14px;
  color: #6c757d;
  text-align: left;
  width: 100%;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  z-index: 999;
  box-shadow: 0px 6px 10px #ccc;
  transform: translate(0px, 57px) !important;
}
.customdropdown .dropdown-menu > li {
  border-bottom: 1px solid #ececec;
  padding-bottom: 10px;
}
.customdropdown .dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 0px;
  clear: both;
  font-weight: 400;
  color: #282828;
  text-align: inherit;
  white-space: normal;
  background-color: transparent;
  border: 0;
  font-size: 13px;
}
.customdropdown .dropdown-menu .dropdown-item img {
  transition: .5s;
  width: 28px;
  margin-right: 10px;
  float: left;
}
.customdropdown .btn-search {
  background-color: #069139;
  border: 0px;
  height: 48px;
  width: 61px;
  border-radius: 0px 10px 10px 0px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 0;
}
.search-hdr {
  display: flex;
  align-items: center;
}
.filter-bg-left {
  background-color: #13222a;
  padding: 30px;
  border-radius: 5px;
  color: #fff;
  margin-bottom: 2rem;
}
.filter-bg-left h4 {
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px solid #939393;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #fff;
}
.filter-grp .form-select {
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid rgb(223 223 223 / 37%);
  border-radius: 0px;
  color: #dddada;
  font-size: 12px;
  padding: 8px 10px;
  background-image: url(../img/drop-down-arrow.svg);
  background-repeat: no-repeat;
  background-position: right;
}
.filter-grp .form-select option {
  color: #000;
  border-radius: 0;
  padding: 5px;
}
.filter-grp {
  margin-bottom: 30px;
}
.filter-grp > h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0px;
  margin: 0;
}
.checkbox-grp {
  display: flex;
  justify-content: space-between;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}
.form-check-input:checked {
  background-color: #ff6f0f !important;
  border-color: #ff6f0f !important;
  box-shadow: none !important;
}
.form-check label {
  margin: 3px 8px;
  font-size: 12px;
  font-weight: 500;
}
.form-check-input {
  width: 19px;
  height: 19px;
  margin-top: .25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid #BCBCBC;
  appearance: none;
  color-adjust: exact;
}
.Schemesearch-control {
  font-size: 14px;
  border-radius: 5px;
  padding: 14px 15px;
  border: 0px;
  font-weight: 400;
  color: #000;
  border: 1px solid #ccc;
  display: block;
  width: 100%;
}
.btn-search-list {
  background-color: transparent;
  border: 0px;
  height: 50px;
  width: 51px;
  border-radius: 0px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 0;
  padding: 0px;
  top: -3px;
  position: relative;
}
.top-result .form-select {
  line-height: normal;
  color: #8B8B8B;
  appearance: none;
  font-size: 13px;
  background-color: transparent;
  border: 0px;
  box-shadow: none;
  border-bottom: 1px solid #b9b5af;
  border-radius: 0px;
  padding: 0px 0px;
  margin-left: 10px !important;
  background-position: right 0rem center;
}
.top-result label {}
.result-block {
  box-shadow: 1px 9px 14px rgb(138 149 158/ 22%);
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #D2D2D2;
  margin-bottom: 38px;
}
.result-block .badge {
  display: inline-block;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 6px !important;
  position: relative;
  z-index: 1;
  /* top: -23px; */
  /* left: -40px; */
  margin: 10px;
  border: 1px solid #307800;
}
.result-cont-wrapper {
  padding: 5px 10px;
}
.result-block .mid-bage-wrapper .badge {
  display: inline-block;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 6px !important;
  position: relative;
  margin: 0 8px 0 0;
  left: 0;
  top: 0;
}
.result-block .mid-bage-wrapper .bg-light {
  background-color: #EDE9FC !important;
  border: 1px solid #E6DED1;
  color: #343434 !important;
  padding: 3px 5px;
  font-size: 11px;
}
.result-block .result-cont-wrapper h6 {
  font-size: 16px;
  font-weight: 500;
  color: #343434;
  width: 91%;
}
.result-block .result-cont-wrapper p {
  font-size: 15px;
  font-weight: 400;
  color: #343434;
  line-height: 26px;
  margin: 8px 0;
}
.result-block .result-cont-wrapper .btn.btn-primary:hover {
  color: #fff;
  background-color: #FF9900 !important;
  border-color: #FF9900 !important;
}
.result-block .bg-primary {
  background-color: #13222a !important;
  font-weight: 500 !important;
}
.result-block .bg-light {
  background-color: #ffb706 !important;
  border: 1px solid #ffb706;
  color: #fff;
  white-space: inherit;
  line-height: 16px;
}
.result-block .bg-primary img {
  max-width: 16px;
  top: -1px;
  position: relative;
}
.result-block .btn-primary, .result-block .btn-primary, .eligiblity .btn-primary {
  background: #9c60ff;
  border-color: #cdcdcd;
  border-radius: 8px;
  padding: 5px 24px;
}
.result-cont-wrapper .btn-primary {
  background: #58BB16 !important;
  border-color: #58BB16 !important;
  border-radius: 4px !important;
  padding: 2px 15px !important;
  float: right;
  margin: -15px 0;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  justify-content: end;
}
.pagination li {
  margin-right: 2px;
}
.page-link {
  position: relative;
  display: block;
  color: #858484;
  background-color: #fff;
  border: 0px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 8px 15px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.page-item:first-child .page-link {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.page-item:last-child .page-link {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.page-link:focus {
  box-shadow: none;
}
.page-item.active .page-link {
  color: #fff;
  background-color: #ff6f0f;
  border-color: #dee2e6;
}
.pagination .page-link:hover {
  z-index: 2;
  color: #999898;
  background-color: #e7e4f2;
  border-color: #dee2e6;
}
.result-cont-wrapper {
  padding: 5px 10px;
}
.result-block .mid-bage-wrapper .badge {
  display: inline-block;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 6px !important;
  position: relative;
  margin: 0 8px 0 0;
  left: 0;
  top: 0;
}
.result-block .mid-bage-wrapper .bg-light {
  background-color: #EDE9FC !important;
  border: 1px solid #E6DED1;
  color: #343434 !important;
  padding: 5px 7px;
  font-size: 12px;
}
.result-block .result-cont-wrapper h6 {
  font-size: 20px;
  font-weight: 600;
  color: #343434;
  width: 92%;
  margin: 10px 0px;
}
.result-block .result-cont-wrapper p {
  font-size: 16px;
  font-weight: 500;
  color: #343434;
  line-height: 26px;
  margin: 10px 0;
}
/*** Causes ***/
.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}
.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}
.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #FFFFFF;
}
.causes-item .causes-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  overflow: hidden;
  opacity: 0;
  transition: .5s;
}
.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}
.benefits-bg {
  position: relative;
  padding: 5rem 0rem;
}
.benefits-bg h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 3rem !important;
}
.btn-Launched {
  background-color: transparent;
  border: 1px solid #FF6F0F;
  color: #000;
  display: inline-block;
  font-size: 12px;
  border-radius: 5px;
  padding: 6px 30px;
  font-weight: 500;
}
.btn-Launched:hover, .btn-Launched:focus {
  background-color: #FF6F0F;
  border: 1px solid #FF6F0F;
  color: #fff;
}
.benefits-left, .benefits-right {
  position: relative;
}
.benefits-left img, .benefits-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}
.benefits-left img:nth-child(1), .benefits-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.benefits-left img:nth-child(2), .benefits-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.benefits-left img:nth-child(3), .benefits-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}
.benefits-carousel {
  margin: 0px;
  margin-top: -30px;
  padding: 0px 10px;
}
.benefits-carousel .owl-item img {
  height: 70px;
  margin: auto;
  width: auto;
  margin-bottom: 1rem;
}
.benefits-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.benefits-carousel .owl-dot {
  display: block;
  justify-content: center;
  background: #9AA4FF;
  height: 15px;
  width: 15px;
  border-radius: 100px;
  margin: 0px 3px;
}
.benefits-carousel .owl-dot.active {
  background: #3D3EB9;
  height: 15px;
  width: 15px;
  border-radius: 100px;
  margin: 0px 3px;
}
.benefits-carousel .benefits-item {
  margin: 25px 15px;
}
.benefits-carousel .benefits-item .benefits-back {
  border-radius: 13px;
  box-shadow: 0px 0px 15px #dddddd;
  padding: 25px 30px;
  background: #fff;
  margin-bottom: 0px;
  height: 350px;
  border: 1px solid #d5d5d5;
}
.benefits-carousel .benefits-item h3 {
  font-size: 16px;
  color: #2F281E;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.benefits-carousel .benefits-item h4 {
  font-size: 13px;
  color: #2F281E;
  background-color: #EBE8FE;
  font-weight: 500;
  padding: 6px 40px;
  border-radius: 100px;
  display: inline-block;
}
.benefits-carousel .benefits-item p {
  font-size: 14px;
  color: #2F281E;
  min-height: 50px;
}
.benefits-carousel .owl-nav {
  position: absolute;
  top: -40px;
  right: 20px;
  display: flex;
}
.benefits-carousel .owl-nav .owl-prev {
  width: 40px;
  height: 36px;
  background-color: #ff5400;
  text-align: center;
  color: #fff;
  line-height: 38px;
  margin-right: 3px;
  border-radius: 4px;
}
.benefits-carousel .owl-nav .owl-next {
  width: 40px;
  height: 36px;
  background-color: #ff5400;
  text-align: center;
  color: #fff;
  line-height: 38px;
  margin-right: 3px;
  border-radius: 4px;
}
.partners {
  padding: 5rem 0rem;
  background-color: #e0e0e0;
}
.faqs-container {
  overflow: hidden;
}
.faq-singular {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 0 30px 0 20px;
}
.faq-singular:hover, .faq-singular.active {
  background: #f2f2f2;
  background-image: linear-gradient(90deg, #335548 0%, #335548 8px, transparent 8px, transparent 100%);
}
.faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 25px 25px 25px 0px;
    font-weight: 500;
    font-size: 20px;
}
.faq-singular .faq-question:before {
  position: absolute;
  content: "+";
  color: #808080;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 700;
  transition: all 0.5s;
}
.faq-singular.active .faq-question:before {
  transform: translateY(-50%) rotate(45deg) scale(1.3);
}
.faq-answer {
  display: none;
  padding-bottom: 20px;
}
/*** Service ***/
.service-item {
  box-shadow: 0px 8px 40px #dfdede;
  display: flex;
  transition: linear 0.2s;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
}
.service-item img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}
.service-item h4 {
  font-size: 14px;
  line-height: normal;
  text-align: left;
}
.service-item h4 a {
  font-size: 12px;
  color: #000;
  margin-top: 10px;
  display: block;
  clear: both;
  width: 140px;
}
.service-item:hover {
  color: #fff;
  box-shadow: 0px 8px 40px #b9b9b9;
  transform: scale(1.10);
  z-index: 2;
}
/*** Donate ***/
.donate {
  background: rgba(0, 29, 35, .8);
}
.btn-group .btn-light:hover, .btn-group input[type="radio"]:checked + label {
  color: var(--primary);
  border-color: var(--primary);
}
/*** Team ***/

.team-item {
    display: block;
    transition: linear 0.2s;
    box-shadow: 0px 8px 40px #dfdede;
    height: 290px;
}
.team-item img {

}
.team-item:hover {
  transform: scale(1.10);
		box-shadow:0px 8px 40px #b9b9b9;
}
.overflow-item {
    width: 80px;
    margin: auto;
    margin-bottom: 1rem;
}
.team-item .team-text {
  position: relative;
  transition: .5s;
}
.team-item:hover .team-text {
}
.team-item .team-text .team-social {
  opacity: 0;
  transition: .5s;
}
.team-item:hover .team-text .team-social {
  opacity: 1;
}
.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #FFFFFF;
  border-radius: 40px;
}
.team-item .team-social .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}
/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media (min-width: 768px) {
  .testimonial-carousel::before, .testimonial-carousel::after {
    width: 200px;
  }
}
@media (min-width: 992px) {
  .testimonial-carousel::before, .testimonial-carousel::after {
    width: 300px;
  }
}
.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(.8);
  transition: .5s;
}
.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary);
  transform: scale(1);
}
.testimonial-carousel .owl-item .testimonial-text *, .testimonial-carousel .owl-item .testimonial-item img {
  transition: .5s;
}
.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}
.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}
.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}
.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}
.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: .5s;
}
.testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}
.text-white-50 {
  color: rgb(255 255 255) !important;
}
/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #fff;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}
.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}
.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}
.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}
.footer .copyright a {
  color: var(--secondary);
}
.footer .copyright a:hover {
  color: var(--primary);
}
.eligiblity {
  font-size: 15px;
  line-height: 26px;
}
.eligiblity .badge {
  display: inline-block;
  padding: 12px 85px 12px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 6px !important;
  /* top: -23px; */
  /* left: -45px; */
  margin: 6px 1px;
}
.eligiblity .mid-bage-wrapper .bg-light {
  background-color: #F5F5F5 !important;
  border: none;
  color: #343434 !important;
  padding: 8px 20px;
  font-size: 13px;
  line-height: normal;
  white-space: inherit;
}
.eligiblity-rightbar .btn-primary {
  background: #5A9F2C;
  border-color: #5A9F2C;
  border-radius: 6px;
  padding: 8px 0;
  font-size: 19px;
  width: 100%;
}
.rightbar-btn {
  background: #14222a;
  padding: 20px 20px;
  border-radius: 6px;
  margin: 25px 0;
}
.btn.btn-primary:hover {
  color: #fff;
  background: #ff6f0f;
  border-color: #ff6f0f;
}
.rightbar-btn .btn-primary {
  background: #fff;
  border-color: #E3E3E3;
  border-radius: 6px;
  padding: 8px 0;
  padding-left: 50px;
  text-align: left;
  font-size: 19px;
  width: 100%;
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 9px;
  background: url(../img/btn-arrow.png) no-repeat left;
  background-position: 18px 14px;
}
.rightbar-btn .btn-primary:hover, .rightbar-btn .btn-primary:focus {
  border-color: #ff6f0f !important;
  color: #fff !important;
  background: url(../img/btn-arrow-w.png)#ff6f0f no-repeat left;
  background-position: 12px 14px;
}
.eligiblity h6 {
  font-size: 20px !important;
  font-weight: 600;
  color: #132129;
  margin: 10px 0 0px;
  margin-bottom: 10px;
}
.eligiblity p {
  font-size: 16px !important;
  font-weight: 500;
  color: #444;
  margin: 10px 0 0px;
  margin-bottom: 10px;
}
.sigh-in {
  padding: 9px;
}
@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
  }
  #header-carousel .carousel-item img {
    position: relative;
   
  }
	.carousel-control-prev, .carousel-control-next {

    display: none;
}
  .navbar-logo {
    margin-top: 15px;
  }
  .px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .carousel-inner {
    height: auto;
  }
  .benefits-bg h1 {
    font-size: 18px;
    margin-bottom: 4rem !important;
  }
  .sigh-in {
    font-size: 12px;
    margin-top: 19px !important;
    padding: 5px;
  }
  .menu-btn {
    padding: 3px 16px;
    margin-top: 19px;
    font-size: 15px;
  }
  .bg-dark .navbar-logo img {
    padding: 16px 0px;
    height: auto;
  }
  .bg-dark .menu-btn {
    font-size: 16px;
    padding: 2px 13px;
  }
  .pseudo-search {
    display: none;
  }
  .left-slider-img > ul > li > img {
    display: block;
    height: 160px;
    float: none;
    margin: auto;
  }
  .name-text {
    display: block;
    vertical-align: middle;
    height: auto;
    padding-left: 0px;
    text-align: center;
    margin-top: 10px;
  }
  .customdropdown .btn-secondary {
    display: block;
    width: auto;
    padding: 9px 40px;
    font-size: 14px;
  }
  .page-header {
    padding-top: 7rem;
  }
  .customdropdown {
    margin-top: 10px
  }
  .ps-5 {
    padding-left: 0rem !important;
  }
	

	.top-result .pb-5 {
    padding-bottom: 1rem !important;
}
.result-cont-wrapper {
    padding: 20px 10px;
}	
	.result-cont-wrapper .btn-primary {
    float: none;
    margin: 5px 0;
}
	.pe-5 {
    padding-right: 0rem !important;
}
	.nav-link {
    display: none;
}
	.top-bar {
    height: auto;
}
	
	
	
	
	
	
}