.banner-section {
  position: relative;
  /* Stack above following sections so donate dropdown is not covered (e.g. .number-section) */
  z-index: 30;
  background: #3570e0;
  /* Space for absolutely positioned .nav-section (see navBar.css) */
  padding-top: 100px;

  .navbar {
    padding-top: 0;
  }
}

/*
 * CMS home: both desktop + mobile images are chosen in CSS only (URLs come from
 * inline --cms-banner-bg-desk / --cms-banner-bg-mob on the element). Viewport
 * width updates when zooming, so the matching @media rule and background-image apply.
 */
@media screen and (min-width: 768px) {
  .banner-section.has-cms-banner-bg {
    background-color: #3570e0;
    background-image: var(--cms-banner-bg-desk);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .banner-section.has-cms-banner-bg {
    background-color: #3570e0;
    background-image: var(--cms-banner-bg-mob);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.banner-section.has-cms-banner-bg .palm-plant-img {
  display: none;
}

.banner-content-div {
  display: flex;
  justify-content: start;
  align-items: end;
  gap: 50px;
}

.banner-content {
  width: 100%;
  max-width: 570px;
  padding-block: 30px 120px;
}

.banner-content h1 {
  font-size: clamp(2rem, 1.6364rem + 1.8182vw, 3rem);
  color: #fff;
  font-weight: 800;
}

.banner-content p {
  font-size: clamp(1rem, 0.9091rem + 0.4545vw, 1.25rem);
  color: #fff;
  margin-top: 10px;
  font-weight: 300;
}

.btn-group-donate-apply {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 25px;
}

.banner-section .btn-group-donate-apply .btn {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  min-height: 0;
  padding: 11px 36px;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: var(--seedout-btn-shadow, 0 2px 8px rgba(0, 0, 0, 0.1));
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.banner-section .btn-group-donate-apply .btn.donate {
  color: #393939;
  background: #fff;
  border-color: #fff;
}

.banner-section .btn-group-donate-apply .btn.donate:hover,
.banner-section .btn-group-donate-apply .btn.donate:focus-visible {
  color: #393939;
  background: #f7f8fa;
  border-color: #368420;
  box-shadow: var(--seedout-btn-shadow-hover, 0 4px 12px rgba(0, 0, 0, 0.14));
}

.banner-section .btn-group-donate-apply .btn.apply {
  color: #fff;
  background: var(--seedout-chocolate, #48b02b);
  border-color: var(--seedout-chocolate, #48b02b);
}

.banner-section .btn-group-donate-apply .btn.apply:hover,
.banner-section .btn-group-donate-apply .btn.apply:focus-visible {
  color: #fff;
  background: #3a9623;
  border-color: #3a9623;
  box-shadow: var(--seedout-btn-shadow-primary, 0 4px 14px rgba(54, 132, 32, 0.28));
}

.palm-plant-img {
  min-width: 320px;
}



@media screen and (max-width: 768px) {
  .banner-content-div {
    flex-wrap: wrap-reverse;
  }

  .palm-plant-img {
    min-width: 100%;
    text-align: center;
    padding-inline: 20px;
  }

  .btn-group-donate-apply {
    gap: 9px;
  }

  .banner-content p br {
    display: none;
  }

  .banner-content {
    padding-block: 0 96px;
  }

  .banner-section .btn-group-donate-apply .btn {
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 8px;
    width: 100%;
  }

  .event-2-banner {
    & .banner-content-div {
      min-height: 330px;
    }
  }
}

/*
 * Home bank-detail hero: on narrow viewports bankDetail.css gives .banner-content-div
 * a tall min-height while bannerSection uses align-items:end + wrap-reverse — that
 * leaves the only visible text block (.banner-content) hugging the bottom. Pin
 * copy to the top for .banner-section.bank-detail-banner (home only; home.css).
 */
@media screen and (max-width: 768px) {
  .banner-section.bank-detail-banner .banner-content-div {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    min-height: unset;
  }

  .banner-section.bank-detail-banner .banner-content {
    padding-block: 1rem 2rem;
  }
}

@media screen and (max-width: 768px) {
  .banner-section {
    padding-top: 112px;
  }
}
.number-section {
  background: #141b25;
  padding-block: 33px 23px;
}
.number-section ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  overflow-x: visible;
  padding-bottom: 0;
  margin-bottom: 0;
  list-style: none;
}
.number-section ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  gap: 16px;
  color: #fff;
  border-right: 1px solid #fff;
  padding-inline: 12px;
  text-align: center;
}
.number-section ul li:last-child {
  border-right: none;
}
.number-section ul li h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  word-break: break-word;
}
.number-section ul li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .number-section ul {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  .number-section ul li {
    flex: 0 0 auto;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding-inline: 16px;
    scroll-snap-align: start;
    border-right: none;
  }
}

.Entrepreneur-student-card-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  overflow-x: scroll;
  padding-bottom: 10px;
}
.Entrepreneur-card,
.Student-card {
  padding: 62px 54px 45px;
  border-radius: var(--card-xl-radius);
  width: 100%;
  max-width: 554px;
  min-width: 334px;
  text-align: center;
}

.Entrepreneur-card {
  background: #f5f5f5;
  color: #000;
}
.Student-card {
  background: var(--primary-color);
  color: #fff;
}

.Entrepreneur-card h3,
.Student-card h3 {
  font-weight: 700;
  font-size: 20px;
}
.Entrepreneur-card p,
.Student-card p {
  font-size: clamp(0.75rem, 0.6136rem + 0.6818vw, 1.125rem);
  font-weight: 400;
}
.card-image-box {
  margin-top: 10px;
  padding: 27px 65px;
  height: 370px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  span {
    position: absolute;
    font-weight: 700;
    font-size: 12px;
    &:nth-child(2) {
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    &:nth-child(3) {
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }
    &:nth-child(4) {
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    &:nth-child(5) {
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}
.Student-card .student-beneficiaries-revolving-animation {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.Student-card .student-beneficiaries-revolving-gif {
  width: 100%;
  max-width: 100%;
  height: 361px;
  -o-object-fit: fill;
     object-fit: fill;
  display: block;
  vertical-align: top;
}

.Student-card .student-card-image-box {
  padding: 20px 24px;
  height: auto;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.Student-card .student-card-picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.beneficiaries-revolving-animation {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.beneficiaries-revolving-gif {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.Entrepreneur-card .beneficiaries-revolving-animation {
  max-width: 100%;
  overflow: hidden;
}

.how-seedout-works-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.how-seedout-works-cta .apply-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .Entrepreneur-card,
  .Student-card {
    padding: 25px 13px;
  }
  .card-image-box {
    margin-top: 10px;
    padding: 27px 65px;
    height: 300px;
  }
  .Student-card .student-card-image-box {
    min-height: 220px;
    padding: 16px;
  }

}

.choose-one-tab{
    justify-content: center;
    gap: 18px;
}
.choose-one-tab .nav-link.active, .choose-one-tab .show>.nav-link {
    
    background-color: var(--primary-color);
}
.choose-one-tab .nav-link {
    
height: 81px;
    
width: 81px;
    
border-radius: 8px;
    
background: #F5F5F5;
}
.choose-one-tab .nav-link svg {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}
.choose-one-tab .nav-link .tab-icon-img {
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 48px;
    -o-object-fit: contain;
       object-fit: contain;
}
.choose-one-tab .nav-link .tab-icon-img.student-icon {
    width: 52px;
    height: 52px;
}
.choose-one-tab .nav-link > svg {
    display: none;
}
.choose-one-tab .nav-link.active .tab-icon-img,
.choose-one-tab .show > .nav-link .tab-icon-img {
    filter: brightness(0) invert(1);
}
.choose-one-tab .nav-link.active g rect,
.choose-one-tab .show > .nav-link g rect {
    fill: #fff;
}
.Chooss-a-student {
  background-color: #eff6f3;
}

.choose-a-student-swiper .swiper-wrapper {
  align-items: stretch;
}

.choose-a-student-swiper .swiper-slide {
  text-align: center;
  text-wrap: balance;
  padding-block: 32px;
  color: #393939;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.choose-a-student-swiper .swiper-slide.swiper-slide-active {
  background-color: var(--primary-color);
  color: #fff;
}

.choose-a-student-swiper .swiper-slide h3 {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1591rem + 0.4545vw, 1.5rem);
  margin-block: 32px 10px;
  flex: 0 0 auto;
}

.choose-a-student-swiper .choose-student-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(107, 152, 38, 0.15);
  color: #6b9826;
  flex: 0 0 auto;
}

.choose-a-student-swiper .choose-student-feature-icon .fa {
  font-size: 42px;
  line-height: 1;
}

.choose-a-student-swiper .swiper-slide.swiper-slide-active .choose-student-feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.choose-a-student-swiper .swiper-slide p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
  min-height: calc(1.5em * 4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.choose-a-student-swiper .swiper-slide p a {
  color: inherit;
  text-decoration: underline;
}


.swiper-slider-footer {
  background: #272727;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 18px;
  flex-wrap: wrap;
}
.swiper-slider-footer p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.swiper-slider-footer p span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}
.amount-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.amount-item h6 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.amount-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
}
.event-list-item {
  display: flex;
  justify-content: start;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
}
.event-date {
  display: inline-block;
  text-align: center;
  background-color: #000;
  place-content: center;
  color: #fff;
  width: 107px;
  height: 97px;
  border-radius: 16px;
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  flex-shrink: 0;
  span {
    color: var(--seedout-chocolate);
    font-family: Outfit;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
  }
}

.event-details {
  max-width: 373px;
}
.event-details p:first-child {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
}
.event-details p:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color:#393939 ;
}
.event-details p:last-child span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}
.event-list-swiper .swiper-slide{
    border: none;
    
}
.event-list-swiper .swiper-slide.swiper-slide-active {
    box-shadow: none;
}
/* @media screen and (max-width: 768px) {
 .swiper-slider-footer {
    padding:5px 5px;
    background: #F3F3F3;
    
  }
  .swiper-slider-footer p {
    margin-bottom: 10px;
    color: #393939;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 5px;
  }
  .swiper-slider-footer p span{
    
    font-size: 13px;
    line-height: 24px;
    
  }
  .swiper-slider-footer p span img{
    
   filter: invert(0.5);
    
  }
  .amount-list {
    width: 100%;
    margin-bottom: 10px;
  }
  .amount-item h6 {
    
    font-size: 14px;
    line-height: 20px;
    color: #000;
}
.amount-item p {
    font-weight: 400;
    font-size: 9px;
    line-height: 17px;
    color: #393939;
}
.event-date {
    
    width: 41px;
    height: 37px;
    border-radius: 6px;
    font-size: 7px;
    line-height: 7px;
        span {
        font-size: 16px;
        line-height: 11px;
    }
  }
  .event-details p:last-child{
    
   
   font-size: 6.4px;
   margin-top: 5px;
   gap: 5px;
    
}
  .event-details p:first-child {
    
   
    font-size: 7.8px;
    line-height: 11.7px;
    
}
.event-details p:last-child span {
    
    font-size: 6.4px;
    
}
.event-details p:last-child span img{
    
    width: 6.24px;
    
}
.event-list-item {
    gap: 5px;
}
} */

.Awards-wrapper{
    background-color: #EFF6F3;
}
.EmpoweredSwiper .swiper-slide {
  border: none;
  padding: 0;
  text-align: center;
}
.EmpoweredSwiper .swiper-slide.swiper-slide-active {
  box-shadow: none;
}
.EmpoweredSwiper .swiper-slide h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #005a31;
  margin-top: 26px;
}
.EmpoweredSwiper .swiper-slide p {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
}

.Funding-Partners{
    background-color: #F5F5F5;
    text-decoration: none;
}

.apply-Entrepreneur-student-card-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
}
.apply-Entrepreneur-card,
.apply-Student-card {
  
  border-radius: var(--card-xl-radius);
  width: 100%;
  max-width: 554px;
  text-align: center;
  min-height: 542px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.apply-card-content{
padding: 62px 54px 45px;
}.apply-Entrepreneur-card h3,
.apply-Student-card h3 {
  font-size: clamp(1.75rem, 1.4773rem + 1.3636vw, 2.5rem);
  font-weight: 700;
}
.apply-Entrepreneur-card p,
.apply-Student-card p {
  font-size: clamp(0.75rem, 0.6136rem + 0.6818vw, 1.125rem);
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;

  margin-bottom: 40px;
}
.apply-Entrepreneur-card {
  background: #f5f5f5;
  color: #000;
}
.apply-Student-card {
  background-color: #e2e5d3;
}
.apply-Student-card .apply-now-btn {
  background-color: #ffffff;
  color: #005a31;
}
.apply-Student-card h3 {
  color: #368420;
}
.apply-card-footer {
 
width: 100%;
 
display: flex;
 
justify-content: space-between;
 
align-items: end;
 
gap: 20px;
}
.first-image {
   width: 100%; 
  max-width: 169px;
  text-align: center;
}
.scholarship-holder-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 15px;
  gap: 10px;
}
.scholarship-holder-items {
  text-align: center;
  flex-shrink: 0;
}
.scholarship-holder-items p {
  margin-bottom: 0;
  line-height: 1;
}
.scholarship-holder-items p span:first-child {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0%;
  text-align: center;
}
.scholarship-holder-items p span:last-child {
  font-weight: 400;
  font-size: 9px;
  color: #6a6a6a;
  letter-spacing: 0%;
  text-align: center;
}

.scholarship-holder-img {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  overflow: hidden;
}
.scholarship-holder-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.scholarship-holder-items:hover .scholarship-holder-img {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  filter: grayscale(0.7);
}
@media screen and (max-width: 768px) {
  .first-image {
    width: 100%;
    max-width: 96px;
    text-align: center;
  }
  /* .scholarship-holder-items {
    text-align: center;
    width: 46px;
  }
 .scholarship-holder-img {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    overflow: hidden;
}
.scholarship-holder-items p span:first-child {
    
    font-size: 6.8px;
    
}
.scholarship-holder-items p span:last-child {

    font-size: 5.6px;
    
} */
.apply-Entrepreneur-card, .apply-Student-card {
    border-radius: var(--card-xl-radius);
    width: 100%;
    max-width: 554px;
    min-width: 334px;
    text-align: center;
    min-height: 331px;
    position: relative;
}
.apply-card-content {
    padding: 20px 20px 45px;
}
.apply-Entrepreneur-student-card-wrapper
 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 43px;
}
.scholarship-holder-list {
  
  gap: 4px;
  
}
}

.live-btn {
  margin-inline: auto;
  margin-bottom: 47px;
  display: block;
  width: 124px;
  height: 45px;
  border-radius: 100px;
  border: 1px solid #d3d3d3;
  font-weight: 500;
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  background-color: #fff;
  place-content: center;
  gap: 10px;
}
.amount-update {
  text-align: center;
}
.amount-update h2 {
  font-weight: 700;
  font-size: clamp(1.375rem, 1.125rem + 1.25vw, 2.0625rem);

  color: #005a31;
}
.amount-update p {
  font-weight: 400;
  font-size: clamp(1.125rem, 1.0341rem + 0.4545vw, 1.375rem);
  color: #7e7e7e;
}
.donationsAmountsSwiper {
    margin-top: 60px;
}
.donationsAmountsSwiper .swiper-slide{
   border: none;
}
.donationsAmountsSwiper .swiper-slide-active{
   box-shadow: none;
}
.donated-amount-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.donated-amount-time span:first-child {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0%;
}
.donated-amount-time span:last-child {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
}
.donater-adress {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0%;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 500px) {
  .donationsAmountsSwiper .swiper-slide {
   padding-inline: 10vw;
  }
}
