/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap'); */
@font-face {
    font-family: "IBM Plex Sans";
    src: url("/assets/fonts/IBMPlexSans.ttf");
}
@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter.ttf");
}

@font-face {
    font-family: "Bodoni 72";
    src: url("/assets/fonts/bodoni-72-book.ttf");
}
@font-face {
    font-family: "Source Sans Pro";
    src: url("/assets/fonts/SourceSans3.ttf");
}

/* Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    font-family: "IBM Plex Sans", sans-serif;
}
body {
    font-family: "IBM Plex Sans", sans-serif;
    line-height: 1.4;
    background-color: #fff;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-link:hover,
.logo-link:focus,
.logo-link:active {
    text-decoration: none;
    color: inherit;
}

.dark-btn {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    border-radius: 8px;
    border: 0px solid #e5e7eb;
    background: #254039;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.border-btn {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    border-radius: 8px;
    border: 2px solid #111827;
    background: rgba(0, 0, 0, 0);
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.noborder-btn {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #254039;
    text-decoration: none;
}

.noborder-btn:hover {
    color: #ad7d2b;
}

/* Header */
.header {
    background-color: #fff;
    padding: 16px 0;
}
.header-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navbar */
.nav {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 43px;
    height: auto;
}

.logo-container span {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
}

.nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 55px;
    align-items: center;
}

.nav ul li a.active {
    color: #ad7d2b !important;
}
.nav ul li a:hover {
    color: #ad7d2b;
}
.nav ul li a {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: 1.6px;
    text-decoration: none;
    font-size: 16px;
}
.nav ul li:last-child a {
    color: #254039;
}

.donate-btn {
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid #254039;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 40px;
    width: 129px;
}

.donate-btn:hover,
.donate-btn.active:hover {
    background-color: #254039;
    border: 1px solid #254039;
    text-decoration: none;
    color: #fff !important;
}
.donate-btn.active {
    border-radius: 8px;
    border: 1px solid #ad7d2b;
    text-decoration: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 881px;
  text-align: center;
  color: white;
  padding-top: 57px;
  overflow: hidden;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background-image: url(https://spf-site.s3.amazonaws.com/images/hero.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 0;
  will-change: transform;
    backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}


.hero-content, .initiative {
  position: relative;
  z-index: 2;
}

.hero-content {
    position: absolute;
    top: 57px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero h2 {
    color: #2e261f;
    font-family: "Bodoni 72", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -3.6px;
    margin-bottom: 30px;
    width: 675px;
    max-width: 100%;
}

.hero p {
    color: #6a6350;
    font-family: "Bodoni 72", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.48px;
    margin-bottom: 20px;
}

.spf-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spf-buttons .donate-now-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 52px;
    padding: 15px 24px;
}

.donate-now-btn:hover {
    border-radius: 8px;
    border: 0px solid #E5E7EB;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #254039;
}
.initiative {
    position: absolute;
    right: 0px;
    bottom: 50px;
    z-index: 2;
    background-color: white;
    padding: 16px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    width: 315px;
    height: 74px;
    text-align: center;
    justify-content: center;
}

.initiative p {
    color: #6a6350;
    text-align: center;
    font-family: "Bodoni 72";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-bottom: 0;
}

.initiative img {
    width: 60px;
    height: auto;
    vertical-align: middle;
    margin: 0 10px;
    margin-bottom: 7px;
}

/* Stats Section */
.stats {
    background-color: #efe5d5;
    padding: 13px 0;
}

.stats-container {
    background-color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 28px 0;
    gap: 24px;
}
.stat {
    width: 440px;
}
.stat:not(:first-child) {
    border-left: 0.5px solid #e5e7eb;
}
.stat h3 {
    color: #ad7d2b;
    text-align: center;
    font-family: "Bodoni 72", serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -2.24px;
    margin-bottom: 10px;
}

.stat p {
    color: #6a6350;
    font-family: "Bodoni 72", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.48px;
}

/* Urgency Section */
.urgency-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.urgency-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    height: 821px;
    position: relative;
}

.urgency-text {
    position: absolute;
    top: 180px;
    left: 59px;
    max-width: 600px;
    color: #fff;
}

.urgency-text h3 {
    font-family: "Bodoni 72";
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2.24px;
    margin-bottom: 30px;
}

.urgency-text p {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.44px;
    margin-bottom: 30px;
    color: #f8f8ff;
}

.about-btn {
    padding: 8px 36px;
    border-radius: 8px;
    border: 1px solid #dfdedb;
    background-color: transparent;
    color: #fcfdfd;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    margin-top: 30px;
}

.about-btn:hover {
    background-color: #fff;
    color: #211009;
}

.map-image {
    position: absolute;
    right: 0;
}

.map-image img {
    width: auto;
    height: 821px;
}

 /* Base style: hide before animation */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
  }
  
  .animate-on-scroll.from-left {
    transform: translateX(-50px);
  }
  
  .animate-on-scroll.from-top {
    transform: translateY(-50px);
  }

  .animate-on-scroll.from-right {
    transform: translateX(50px);
  }
  .animate-on-scroll.animate {
    opacity: 1;
    transform: translateX(0) translateY(0); 
  }

  .delay-1.animate {
  transition-delay: 0s;
    }

    .delay-2.animate {
    transition-delay: 0.4s;
    }

    .delay-3.animate {
    transition-delay: 0.8s;
    }

    /* Hide + blurred before animation */
.animate-on-scroll.blur-in {
  opacity: 0;
  transition: opacity 1s  ease-in;
  will-change: opacity;
}

.animate-on-scroll.blur-in.animate {
  opacity: 1;
}
    
/* Map Overlay */
.map-overlay {
    display: none;
}
/* TABO Section */
.tabo-section {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}
.tabo-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

.tabo-section-bg1 {
    z-index: 1;
}

.tabo-section-bg2 {
    z-index: 2;
    opacity: 0;
}

.tabo-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding-top: 82px;
}

.tabo-box {
    width: 508px;
    height: 607px;
    background-color: #faf8f2;
    padding: 48px 38px;
    border-radius: 5px;
    position: absolute;
    left: 26px;
    z-index: 2;
}

.tabo-box h4 {
    text-align: center;
    color: #211009;
    font-family: "Bodoni 72";
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-bottom: 40px;
}

.tabo-steps {
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-color: #ad7d2b;
    border: 2px solid #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.step-title {
    color: #ad7d2b;
    font-family: "Bodoni 72";
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.96px;
    margin-bottom: 5px;
}
.step-item:first-child .step-text {
    width: 229px;
}

.step-text p {
    color: #2e261f;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

.step-line {
    position: absolute;
    left: 12px;
    top: 2px;
    bottom: 0;
    width: 10px;
    background: linear-gradient(180deg, #ad7d2b 0%, #fff 100%);
    border-radius: 36px;
    z-index: 0;
}
/* Scaling TABO Section */
.scaling-tabo-section {
    position: relative;
    width: 100%;
    height: 1191px;
    background: linear-gradient(180deg, #e6e0cd 0%, rgb(242 239 229 / 85%));
    background-size: cover;
    background-position: center;
}

.scaling-tabo-container {
    /* width: 1280px; */
    margin: 0 auto;
    position: relative;
}

.background-image {
    position: relative;
    height: 100%;
}

.frontground-overlay {
    background-image: url("https://spf-site.s3.amazonaws.com/images/frontground.png");
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 292px;
    height: 90px;
    width: 100%;
}

.images-container {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 135px;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.center-image {
    width: 383px;
    height: 398px;
    background: url("https://spf-site.s3.amazonaws.com/images/man2.png");
    background-repeat: no-repeat;
    background-size: contain;

    /* border-radius: 20px; */
    /* border: 10px solid #E6E0CD; */
}

.left-image {
    width: 201px;
    height: 270px;
    transform: rotate(-30deg);
    position: absolute;
    left: calc(40% - 230px);
    bottom: 60px;
    border-radius: 21px;
    background: url(https://spf-site.s3.amazonaws.com/images/man1.png);
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.right-image {
    width: 211px;
    height: 264px;
    transform: rotate(30deg);
    position: absolute;
    right: calc(40% - 230px); /* Adjusting position for right image */
    bottom: 60px;
    border-radius: 20px;
    background: url("https://spf-site.s3.amazonaws.com/images/man3.png");
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
    margin-bottom: 29px;
}

.logo-wrapper .logo-1 {
    width: 134px;
    height: 62px;
}

.logo-wrapper .logo-2 {
    width: 65px;
    height: 35px;
}

.section-content {
    position: absolute;
    text-align: center;
    z-index: 3;
    top: 612px;
    width: 766px;
    margin: 0 auto;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.section-content h2 {
    color: #6a6350;
    font-family: "Bodoni 72", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom: 36px;
}

.section-content p {
    color: #323334;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    width: 584px;
    max-width: 100%;
    margin: 36px auto;
}

.btn-learn-more {
    display: inline-flex;
    padding: 8px 36px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #4e4f51;
    color: #323334;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    text-decoration: none;
}

.btn-learn-more:hover, .about-story-btn:hover , .impact-button:hover, .protect-land-section .learn-more-button:hover{
    background-color: #254039;
    border: 1px solid #254039;
    text-decoration: none;
    color: #fff !important;
}

.mg-top {
    margin-top: 10px;
}

.testimonials-section {
    background: linear-gradient(180deg, rgb(242 239 229 / 85%), #fff);
    text-align: center;
    position: relative;
}

.first-pattern {
    position: absolute;
    top: -115px;
    left: 0;
    width: 225px;
    height: 229px;
    background-image: url("https://spf-site.s3.amazonaws.com/images/t1.png");
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.second-pattern {
    position: absolute;
    top: 306px;
    right: 0;
    width: 229px;
    height: 216px;
    background-image: url("https://spf-site.s3.amazonaws.com/images/t2.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.third-pattern {
    position: absolute;
    top: 712px;
    left: 0;
    width: 230px;
    height: 109px;
    background-image: url("https://spf-site.s3.amazonaws.com/images/t3.png");
    background-size: cover;
    background-position: bottom center;
    z-index: 1;
}

.fourth-pattern {
    position: absolute;
    bottom: 88px;
    right: 0;
    width: 230px;
    height: 217px;
    background-image: url("https://spf-site.s3.amazonaws.com/images/t4.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.testimonials-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.testimonial1,
.testimonial2,
.testimonial3,
.testimonial4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.testimonial1 {
    justify-content: flex-end;
    margin-bottom: 160px;
}

.testimonial2 {
    justify-content: flex-start;
    margin-bottom: 236px;
}
.testimonial3 {
    justify-content: flex-end;
    margin-bottom: 214px;
}
.testimonial4 {
    justify-content: flex-start;
    margin-bottom: 143px;
}

.quote1,
.quote2,
.quote3,
.quote4 {
    background: #ece7d9;
    border-radius: 55px;
    padding: 22px 30px;
}

.quote1 {
    width: 728px;
    padding: 22px 25px;
    max-width: 100%;
}
.quote2 {
    width: 626px;
    padding: 22px 40px;
    max-width: 100%;
}
.quote3 {
    width: 590px;
    padding: 22px 25px;
    max-width: 100%;
}
.quote4 {
    width: 756px;
    padding: 22px 58px 22px 46px;
    max-width: 100%;
}

.quote1 p,
.quote2 p,
.quote3 p,
.quote4 p {
    color: #000;
    text-align: left;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -1.2px;
}

.logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.social-property-fund {
    background-image: url("https://spf-site.s3.amazonaws.com/images/donation-block_bg.jpg");
    height: 935px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.donation-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    padding-top: 42px;
}

 
.donation-container .content-box {
    width: 797px;
    height: 700px;
    border-radius: 20px;
    background: #fff;
    padding: 69px 28px 47px 28px;
    text-align: center;
    margin: 0 29px;
    max-width: 100%;

}
  

.donation-container .section-title {
    color: #6a6350;
    font-family: "Bodoni 72";
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    padding-left: 32px;
}

.donation-container .main-title {
    color: #2e261f;
    font-family: "Bodoni 72";
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    text-align: left;
    padding-left: 32px;
}

.donation-container .description {
    color: #6a6350;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 38px;
    text-align: left;
    padding-left: 32px;
    width: 648px;
    max-width: 100%;
}

.donation-blocks {
    margin-top: 29px;
}

.donation-block {
    width: 741px;
    height: 81px;
    border-radius: 20px;
    background: #faf8f2;
    margin-bottom: 20px;
    padding: 16px 64px;
    display: flex;
    align-items: center;
    text-align: left;
    max-width: 100%;
}

.donation-block h4 {
    color: #254039;
    font-family: "Bodoni 72";
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.72px;
    width: 203px;
    text-align: center;
}

.donation-block p {
    color: #6a6350;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.protect-land-section {
    background: #faf8f2;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.protect-land-section .content-box {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    padding: 40px;
 
}

.protect-land-section .main-title {
    color: #1f2937;
    font-family: "Bodoni 72", serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2.24px;
    margin-bottom: 37px;
}

.protect-land-section .description {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    width: 736px;
    margin: auto;
    margin-bottom: 28px;
    max-width: 100%;
}

.protect-land-section .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.protect-land-section .support-button,
.protect-land-section .learn-more-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    border-radius: 8px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.6px;
    text-align: center;
    text-decoration: none;
}

.protect-land-section .support-button {
    width: 270px;
    height: 64px;
    background-color: #254039;
    color: #fff;
    border: none;
}
.protect-land-section .support-button:hover {
    border-radius: 8px;
    border: 0px solid #E5E7EB;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #254039;
}

.protect-land-section .learn-more-button {
    height: 64px;
    border: 2px solid #111827;
    background: transparent;
    color: #1f2937;
}

/* about-our-story-section */
.about-our-story-section {
    background-color: #fff;
    padding-top: 111px;
}

.about-our-story-background {
    position: relative;
}

.about-our-story-wrapper {
    position: relative;
    height: 692px;
}

.about-images-layout {
    width: 50%;
    float: left;
    height: 700px;
}

.about-building-image {
    border-radius: 4px;
    display: block;
    margin-bottom: 20px;
    position: absolute;
    right: 196px;
    width: 501px;
    z-index: 2;
    bottom: 35px;
}

.about-building2-image {
    width: 496px;
    border-radius: 5px;
    display: block;
    margin-bottom: 20px;
    margin-left: 124px;
    position: absolute;
    z-index: 1;
}

.about-top-left-img {
    position: absolute;
    top: 230px;
    left: -80px;
    width: 479px;
    border-radius: 4px;
    z-index: 2;
}

.about-pattern {
    position: absolute;
}

.about-pattern-top-left {
    width: 169px;
    bottom: 0px;
}

.about-pattern-bottom-left {
    bottom: 83px;
    left: 150px;
    width: 374px;
}

.about-pattern-bottom-right {
    bottom: 85px;
    right: 96px;
    width: 270px;
}
.about-logo-bottom-right {
    width: 84px;
    height: 45px;
    bottom: 35px;
    right: 103px;
}

.about-text-content {
    width: 50%;
    float: right;
    height: 700px;
}

.about-story-title {
    color: #3b3128;
    font-family: "Bodoni 72", serif;
    font-size: 96px;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -4.8px;
    margin-bottom: 32px;
}

.about-story-description {
    color: #3b3128;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 40px;
    width: 558px;
    max-width: 100%;
}

.about-story-btn {
    display: inline-flex;
    padding: 8px 36px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #dfdedb;
    color: #323334;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    text-decoration: none;
}

.legal-partners-section {
    padding: 40px 0;
    background-color: #fff;
}

.legal-partners-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.legal-partners-title {
    color: #1f2937;
    font-family: "Bodoni 72", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.48px;
    margin-bottom: 40px;
    margin-left: 10px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 114px;
    justify-content: center;
}

.partner-logo-box {
    display: flex;
    width: 288px;
    height: 128px;
    padding: 0 97.75px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #fff;
    flex-shrink: 0;
}

.partner-logo-box img{
    width: 288px;
    height: 128px;
}

.partner-logo-box  a:hover img {
    opacity: 0.8;
}

.legal-case-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.legal-case-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.legal-case-line {
    background: #ad7d2b;
    width: 12px;
    height: 142px;
    flex-shrink: 0;
}

.legal-case-title {
    color: #3b3128;
    font-family: "Bodoni 72", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.72px;
    width: 1019px;
    max-width: 100%;
}

.legal-case-content {
    display: flex;
    gap: 71px;
}

.legal-paragraph {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

.legal-paragraph-left {
    width: 536px;
    margin-left: 117px;
}

.legal-paragraph-right {
    width: 510px;
}

.team-section {
    padding-top: 81px;
    padding-bottom: 174px;
}
.team-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.team-pattern {
    display: block;
    width: 100%;
    margin-bottom: 126px;
}
.team-gallery {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 41px;
    height: 330px;
}
   
.team-img {
    width: 265px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s ease; 
}

/* when active */
.team-img.active {
    width: 321px;
    opacity: 1;
    filter: none;
    margin-right: 14px;
    margin-left: 14px;
}

/* when inactive */
.team-img:not(.active) {
    opacity: 0.9;
    filter: grayscale(100%);
    margin-left: 0;
    margin-right: 0;
}

.team-gallery .large {
    width: 321px;
    margin-right: 27px;
}
.team-gallery .small {
    width: 265px;
}

/* info cards */
.team-info-wrapper {
    position: relative;
    transition: none;

}
.team-info {
    display: none;
}
.team-info.active {
    display: block;
}
.team-name {
    color: #6a6350;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -1.44px;
    margin-bottom: 8px;
}
.team-role {
    color: #ad7d2b;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.42px;
    margin-bottom: 29px;
}
.team-bio {
    color: #6a6350;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.4px;
    width: 1138px;
    max-width: 100%;
}

.team-section {
    display: block;
}
.team-slider-section {
    display: none;
}

.impact-section {
    position: relative;
    background-image: url("https://spf-site.s3.amazonaws.com/images/bg-left.png"),
        url("https://spf-site.s3.amazonaws.com/images/bg-right.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
    padding: 77px 20px 170px;
    text-align: center;
}
.impact-section-slider {
    display: none;
}
.impact-content {
    max-width: 640px;
    margin: 0 auto;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 17px;
    align-items: center;
}

.impact-title {
    color: #2e261f;
    font-family: "Bodoni 72", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3.6px;
    margin-bottom: 36px;
}

.impact-description {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    padding: 0 30px;
    margin-bottom: 54px;
}

.impact-button {
    display: inline-block;
    padding: 12px 24px;
    color: #323334;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    border: 1px solid #dfdedb;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Hero Section */
.spf-hero-section {
    padding: 60px 40px 0;
    background-color: #fff;
}

.spf-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 1280px;
    max-width: 100%;
    margin: auto;
    margin-top: 35px;
    height: 369px;
    padding: 0 16px;
}

.spf-hero-text {
    max-width: 787px;
    margin-top: 20px;
}

.spf-hero-subheading {
    color: #2e261f;
    font-family: "Bodoni 72";
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.48px;
}

.spf-hero-heading {
    color: #2e261f;
    font-family: "Bodoni 72";
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2.24px;
    margin: 20px 0;
}

.spf-hero-paragraph {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

.spf-hero-image img {
    max-width: 300px;
    height: auto;
    margin-top: 145px;
}

/* Impact Section */
.spf-impact-section {
    background-image: url("https://spf-site.s3.amazonaws.com/images/spf_frame.png");
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 374px;
    background-position: top center;
    background-size: cover;
}

.spf-impact-title {
    color: #fff;
    font-family: "Bodoni 72";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2.24px;
    margin-bottom: 27px;
}

.spf-impact-boxes {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.spf-impact-box {
    border-radius: 10px;
    background: #faf8f2;
    padding: 30px 25px;
    width: 257px;
}
.spf-impact-box-center {
    text-align: left;
    margin: 0 46px;
}
.spf-impact-box-left {
    text-align: right;
}
.spf-impact-box-left .spf-impact-number {
    margin-right: 33px;
}
.spf-impact-box-right {
    text-align: left;
}

.spf-impact-box-wide {
    width: 37%;
    flex: 1;
}

.spf-impact-number {
    color: #ad7d2b;
    font-family: "Bodoni 72";
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.72px;
}

.spf-impact-label {
    color: #000;
    font-family: "Bodoni 72";
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.48px;
}

/* Impact Level */
.spf-impact-level-section {
    padding: 80px 40px 0;
    padding-top: 267px;
    color: white;
    text-align: center;
}

.spf-impact-level-title {
    font-family: "Bodoni 72";
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-bottom: 40px;
}

.spf-impact-level-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.spf-impact-card {
    width: 320px;
    padding: 32px;
    background: #fff;
    border: 2px solid #e6e0cd;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 26px;
}

.spf-impact-card-amount {
    color: #ad7d2b;
    font-family: "Bodoni 72";
    font-size: 35px;
    font-weight: 700;
    line-height: 24px;
}

.spf-impact-card-benefit {
    color: #6a6350;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 400;
}
.spf-impact-card:first-of-type .spf-impact-card-benefit {
    width: 188px;
    margin: 0 auto;
}

.spf-impact-card-list {
    list-style: none;
    padding: 0;
    color: #4b5563;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.spf-impact-card-list li {
    margin-bottom: 12px;
}
.spf-impact-card:first-of-type li:last-child {
    margin-bottom: 44px;
}
.spf-impact-button {
    color: #fff;
    text-align: center;
    /* Paragraph/Small */
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: 1.6px;
    border-radius: 8px;
    background: #254039;
    border: 0px solid #e5e7eb;
    height: 40px;
    cursor: pointer;
}

.spf-impact-button:hover {
    border-radius: 8px;
    border: 0px solid #E5E7EB;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #254039;
}

.spf-impact-card:last-child .spf-impact-button {
    font-size: 15px;
    line-height: 20px; /* 133.333% */
    letter-spacing: 0.75px;
}
/* CSS for SPF Section */

.spf-contribution-summary::-webkit-details-marker {
    display: none;
}
.spf-contribution-summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Section: Contribution */
.spf-contribution-section {
    margin-top: 123px;
}

.spf-contribution-heading {
    color: #1f2937;
    font-family: "Bodoni 72";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin-bottom: 40px;
    text-align: center;
}

.spf-contribution-box {
    width: 1288px;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 10px;
    background: #faf8f2;
    overflow: hidden;
    transition: height 0.3s ease;
    padding: 30px 40px;
}


.spf-contribution-box[open] {
    height: auto;
}

.spf-contribution-title {
    color: #2e261f;
    font-family: "Bodoni 72";
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0px;
}

.spf-contribution-paragraph {
    display: block;
    color: #323334;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
}

.spf-contribution-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.spf-contribution-box:not([open]) .spf-contribution-arrow {
    transform: rotate(0deg);
}

.spf-contribution-box[open] .spf-contribution-arrow {
    transform: rotate(90deg);
}

.spf-contribution-arrow svg {
    width: 33px;
    height: 33px;
    flex-shrink: 0;
}

.spf-donations-section {
    display: flex;
    justify-content: space-between;
    width: 1280px;
    max-width: 100%;
    margin: auto;
    padding: 113px 33px;
    position: relative;
}

.left-content {
    flex-basis: 517px;
    position: relative;
    padding-top: 100px;
}

.donation-title {
    color: #6a6350;
    font-family: "Bodoni 72";
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -4.8px;
}

.donation-paragraph {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.9px;
    margin-top: 20px;
    margin-bottom: 85px;
    width: 453px;
    max-width: 100%;
}

.direct-funding {
    position: absolute;
    left: 187px;
    bottom: 260px;
}

.direct-funding-title {
    color: #16161d;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15.159px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.606px;
}

.funding-percentage {
    color: #007657;
    font-family: "Bodoni 72";
    font-size: 66.954px;
    font-style: normal;
    font-weight: 700;
    line-height: 119%;
    letter-spacing: -0.67px;
}

.to-families {
    color: #16161d;
    font-feature-settings: "liga" off, "clig" off;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18.949px;
    font-style: normal;
    font-weight: 400;
    line-height: 122%;
    letter-spacing: -0.417px;
    margin-top: 10px;
}

.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

.image-container {
    overflow: hidden;
}

.donation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donation-line {
    background-image: url("https://spf-site.s3.amazonaws.com/images/circle_line.png");
    width: 190px;
    height: 190px;
    background-size: contain;
    position: absolute;
    top: 54%;
    left: 31%;
}

/* Section Wrapper */
.spf-founding-partner-section {
    flex-grow: 1;
    height: auto;
}

.spf-founding-partner-bg {
    background-image: url("https://spf-site.s3.amazonaws.com/images/kufurein_model_homes_bg.jpg"),
        url("https://spf-site.s3.amazonaws.com/images/frontground.png");
    background-repeat: no-repeat, repeat-x;
    background-position: center top, center 293px;
    background-size: contain, contain;
    padding-top: 242px;
    text-align: center;
}

/* Testimonials Boxes Container */
.spf-testimonials-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 80px;
}

.spf-founding-partner-card {
    width: 395px;
    border-radius: 8px;
    border: 1px solid #faf8f2;
    background: #fff;
    padding: 24px 24px 50px;
    box-sizing: border-box;
}

.spf-founding-partner-info {
    display: flex;
}

.spf-quote-mark {
    color: #000;
    font-family: "Bodoni 72";
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: 0.5;
    letter-spacing: -4.8px;
    margin-right: 21px;
    padding-top: 20px;
}

.spf-name-location {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.spf-name {
    color: #1f2937;
    font-family: "Bodoni 72";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.spf-location {
    color: #254039;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.9px;
}

.spf-partner-quote-text {
    color: #4e4f51;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    padding: 0 6px;
}

/* Founding Section */
.spf-founding-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 186px;
}

/* Logo */
.spf-founding-logo {
    width: 194px;
    height: 195px;
}

/* Title */
.spf-founding-title {
    color: #3b3128;
    text-align: center;
    font-family: "Bodoni 72";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2.24px;
}

/* Description */
.spf-founding-description {
    color: #6a6350;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    max-width: 700px;
}

/* Button */
.spf-founding-button {
    width: 270px;
    height: 64px;
    padding: 20px 25px 32px;
    border-radius: 8px;
    border: 0;
    background: #254039;
    color: #fff;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    cursor: pointer;
    text-decoration: none;
}
.spf-founding-button:hover {
    border-radius: 8px;
    border: 0px solid #E5E7EB;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #254039;
}

/* donate Page */
.spf-donate-hero-section {
    background: #faf8f2;
    padding-top:80px;
}
.spf-donate-logo {
    display: none;
}

.spf-donate-hero-text_container {
    width: 1280px;
    max-width: 100%;
    margin: 0 20px;
}
.spf-donate-hero-text {
    text-align: left;
    margin-left: 68px;
    margin-bottom: 50px;
}

.spf-donate-subtitle {
    color: #000;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.9px;
}

.spf-donate-title {
    width: 821px;
    max-width: 100%;
    color: #2e261f;
    font-family: "Bodoni 72";
    font-size: 72px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -3.6px;
}

.spf-donate-hero-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    overflow: hidden;
}

.spf-donate-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

.donate-options-section {
    background: #faf8f2;
    padding: 80px 20px;
}

.donate-options-container {
    width: 1288px;
    max-width: 100%;
    margin: 0 auto;
}

.donate-options-title {
    color: #6a6350;
    font-family: "Bodoni 72";
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2.24px;
    margin-bottom: 48px;
}

.donate-option-box {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.donate-option-box[open] {
    height: auto;
    padding: 44px;
}

.donate-option-box:not([open]) {
    padding: 44px;
}

.donate-option-summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donate-option-summary::-webkit-details-marker {
    display: none;
}

.donate-option-heading {
    color: #000;
    font-family: "Bodoni 72";
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    margin: 0;
}

.donate-option-arrow {
    display: none;

}

.donate-option-description {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 24px;
}

/* Section wrapper */
.spf-donate-contribution-section {
    background: #faf8f2;
    border-radius: 0 0 1000px 1000px;
}

/* Container with background patterns behind the 3 boxes */
.spf-donate-contribution-container {
    width: 1288px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background-image: url(https://spf-site.s3.amazonaws.com/images/donate_pattern.svg),
        url(https://spf-site.s3.amazonaws.com/images/donate_pattern.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left 74px top 56px, right 69px top 62px;
    padding: 80px 20px 70px;
    background-size: 388px, 388px;
}

/* Boxes wrapper */
.spf-donate-contribution-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

/* Individual box */
.spf-donate-contrib-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 320px;
    padding: 32px 32px 34px 32px;
    gap: 26px;
    border-radius: 12px;
    border: 2px solid #e6e0cd;
    background: #fff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Amount heading */
.spf-donate-contrib-amount {
    width: 100%;
    color: #ad7d2b;
    text-align: center;
    font-family: "Bodoni 72";
    font-size: 35px;
    font-weight: 700;
    line-height: 24px;
}

/* Helps subheading */
.spf-donate-contrib-helps {
    width: 100%;
    color: #6a6350;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
}

/* Features list */
.spf-donate-contrib-features {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.spf-donate-contrib-features li {
    color: #4b5563;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

/* Inquire button */
.spf-donate-contrib-box:first-child .spf-donate-contrib-button {
    margin-top: 31px;
}

.spf-donate-contrib-box:last-child .spf-donate-contrib-button {
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.75px;
}

.spf-donate-contrib-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 9px 10px 14px;
    border: 0;
    border-radius: 8px;
    background: #ad7d2b;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    cursor: pointer;
    margin: auto;
}

.spf-donate-contrib-button:hover {
    background: #fff;
    color: #ad7d2b;
    border: 1px solid #ad7d2b;
}

/* Custom amount label */
.spf-donate-contrib-custom-label {
    color: #4b5563;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 16px;
}

/* Custom input group */
.spf-donate-contrib-custom-input-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spf-donate-input-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.input-and-error {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  
}

.input-error-message {
color: #e40000;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
    display: none;
}
/* Input */
.spf-donate-contrib-input {
    width: 316.406px;
    height: 50px;
    padding: 0 202.406px 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.spf-donate-contrib-input::placeholder {
    color: #adaebc;
}

.spf-donate-contrib-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #ad7d2b !important;
    background: #fff !important;
}

/* Donate button */
.spf-donate-contrib-input-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 134px;
    height: 50px;
    padding: 16px 23.406px 17px 26.594px;
    border: 0;
    border-radius: 8px;
    background: #254039;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    cursor: pointer;
}

.spf-donate-contrib-input-button:hover {
    border-radius: 8px;
    border: 0px solid #E5E7EB;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #254039;
}

.spf-donate-advocacy-section {
    background: #faf8f2;
    border-radius: 0 0 1000px 1000px;
    padding: 100px 20px;
    margin-bottom: 150px;
    height: 585px;
}

.spf-donate-advocacy-container {
    width: 1288px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.spf-donate-advocacy-subtitle {
    color: #6a6350;
    text-align: center;
    font-family: "Bodoni 72";
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.48px;
    margin: 0 0 16px;
}

.spf-donate-advocacy-heading {
    color: #6a6350;
    text-align: center;
    font-family: "Bodoni 72";
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2.24px;
    margin: 0 0 20px;
}

.spf-donate-advocacy-paragraph {
    color: #4b5563;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin: 0 0 35px;
}

.spf-donate-advocacy-text {
    text-align: center;
}

.spf-donate-advocacy-button {
    width: 270px;
    height: 64px;
    padding: 20px 24px 20px 25px;
    border-radius: 8px;
    border: 0;
    background: #254039;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    margin-bottom: 81px;
    text-decoration: none;
}

.spf-donate-advocacy-button:hover {
    border-radius: 8px;
    border: 0px solid #E5E7EB;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #254039;
}
.spf-donate-advocacy-logo-container {
    position: relative;
    height: 188px;
}

.spf-donate-advocacy-logo {
    width: 262px;
    height: 262px;
    border-radius: 50%;
    background: #fff
        url("https://spf-site.s3.amazonaws.com/images/spf-founding-partner-logo.png")
        no-repeat center;
    background-size: contain;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 33%);
    bottom: 0;
    z-index: 10;
}

/* General section style */
.founding-partner-opportunity {
    background: #fff;
    padding: 80px 0;
    margin-top:82px;
}

.founding-container {
    width: 1288px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.founding-heading {
    color: #323334;
    font-family: "Bodoni 72";
    font-size: 72px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -3.6px;
    margin-bottom: 20px;
}

.founding-description {
    color: #3b3128;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.9px;
    margin-bottom: 50px;
}

.founding-table {
    width: 947px;
    margin-bottom: 60px;
    max-width: 100%;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 20px;
    background: #fff;
    color: #254039;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    line-height: 25px;
}

.table-head {
    background: #faf8f2;
    font-weight: 700;
}

/* Notes Section */
.notes-toggle {
    width: 1288px;
    max-width: 100%;
    margin: 40px auto;
    border-radius: 10px;
    background: #faf8f2;
    padding: 24px 32px;
    font-family: "IBM Plex Sans", sans-serif;
    color: #2e261f;
}

.notes-toggle summary {
    list-style: none;
    cursor: pointer;
}

.summary-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-title {
    font-family: "Bodoni 72";
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.72px;
    color: #2e261f;
}

.arrow-icon {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.notes-toggle[open] .arrow-icon {
    transform: rotate(0deg);
}
.notes-content {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-top: 33px;
    padding-left: 20px;
}
.notes-content:last-of-type {
    margin-top: 13px;
}

.notes-toggle p {
    margin-top: 21px;
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}
.notes-content li {
    padding-left: 8px;
}

/* testimonial-section */
.testimonial-section {
    background: #fff;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.testimonial-container {
    text-align: center;
    max-width: 883px;
    margin: 0 auto;
}

.quote-mark {
    color: #000;
    font-family: "Bodoni 72";
    font-size: 200px;
    font-style: normal;
    font-weight: 400;
    line-height: 0.2; /* 86.4px */
    letter-spacing: -4.8px;
}

.testimonial-text {
    color: #000;
    font-family: "Bodoni 72";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.72px;
    margin: 40px 0;
}

.testimonial-name {
    color: #ad7d2b;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.9px;
    margin-bottom: 10px;
}

.testimonial-details {
    color: #000;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.9px;
}

.signup-section {
    background: #fff;
    display: flex;
    justify-content: center;
    margin: 67px auto;
}

.signup-wrapper {
    position: relative;
    width: 1323px;
    height: 735px;
    background-image: url(https://spf-site.s3.amazonaws.com/images/family_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.signup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.signup-box {
    position: absolute;
    top: 333px;
    right: 0;
    width: 782px;
    height: 252px;
    padding: 46px 81px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    max-width: 100%;
}

.signup-title {
    color: #384353;
    font-family: "Bodoni 72";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -3.6px;
    margin: 0;
}

.signup-form {
    display: flex;
    flex-wrap: wrap;
}

.signup-input {
    width: 344px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #384353;
    background: #f8f4e7;
    color: #384353;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    box-sizing: border-box;
    margin-right: 20px;
}

.signup-input::placeholder {
    color: #384353;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1.6px;
}
.signup-error {
    color: #e40000;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
}
.signup-success {
    color: #508b42;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
}

.signup-button {
    width: 252px;
    height: 52px;
    padding: 14px 18px 26px 18px;
    border-radius: 8px;
    border: none;
    background: #254039;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    cursor: pointer;
}
.signup-button:hover {
    border-radius: 8px;
    border: 0px solid #E5E7EB;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #254039;
}

/* contact us page */
.contact-us-section {
    position: relative;
    background-color: #fff;
    padding: 55px 0;
    overflow: hidden;
    min-height: 620px;
    padding-bottom: 255px;
}

.contact-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 570px;
    background-image: url("https://spf-site.s3.amazonaws.com/images/contact_us_bg.jpeg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.contact-bottom-line {
    height: 7px;
    background: #ece7d9;
}

.contact-us-container {
    position: relative;
    z-index: 2;
    width: 1288px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 77px;
    width: 1280px;
    max-width: 100%;
    margin: auto;
}

.contact-us-title {
    color: #2e261f;
    font-family: "Bodoni 72";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -2.24px;
    margin-bottom: 30px;
}

.contact-us-description {
    color: #6a6350;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 43px;
    max-width: 736px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.contact-form > * {
    margin-bottom: 32px;
}

.contact-form > *:nth-last-child(2) {
    margin-bottom: 18px;
}

.contact-row {
    display: flex;
    gap: 24px;
}

.contact-field {
    display: flex;
    flex-direction: column;
}

.contact-field label,
.contact-full label {
    color: #6a6350;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-field input {
    width: 356px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 10px;
}

.contact-full {
    display: flex;
    flex-direction: column;
}

.contact-full input {
    font-family: Inter;
    font-size: 14px;
    width: 736px;
    height: 42px;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
}
input,textarea  {
    font-family: Inter;
    font-size: 14px !important;
}

.error-input {
    font-family: Inter;
    border: 1px solid #e40000 !important;
    background: #ff000008 !important;
    color: #000 !important;
    font-size: 14px !important;
}

.error-text {
    font-family: Inter;
    color: #e40000 !important;
    font-size: 13px !important;
    margin-top: 6px;
}
.active-input {
    font-family: Inter;
    border: 1px solid #ad7d2b !important;
    background: #faf8f2 !important;
    color: #000 !important;
    font-size: 14px !important;
    outline: none;
}

.contact-full input {
    border: 1px solid #d1d5db;
}

.contact-full textarea {
    font-family: Inter;
    width: 736px;
    height: 162px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 10px;
    resize: none;
}

.contact-submit {
    display: flex;
    height: 48px;
    padding: 14px 25px 17px 25px;
    justify-content: flex-end;
    align-items: center;
    border-radius: 8px;
    border: none;
    background: #254039;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1.6px;
    cursor: pointer;
    width: fit-content;
}

.contact-submit:hover {
    border-radius: 8px;
    border: 0px solid #E5E7EB;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #254039;
}

.contact-response-time {
    color: #6b7280;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}
.flash-message {
    background: #d4edda;
    color: #6a6350;
    max-width: 736px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    transition: opacity 0.5s ease-in-out;
}
.red {
    background: #edd4d4;
    border: 1px solid #e6c3c3;
}
.fade-out {
    opacity: 0;
}

.footer {
    width: 100%;
    background-color: #2e261f;
    background-image: url("https://spf-site.s3.amazonaws.com/images/footer-pattern-left.png"),
        url("https://spf-site.s3.amazonaws.com/images/footer-pattern-right.png");
    background-size: 200px, 200px;
    background-position: -42px 205px, calc(100% + 42px) 205px;
    background-repeat: no-repeat;
    padding: 40px 20px;
    position: relative;
}

.footer-content {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    color: #d1d1d1;
    padding: 0 16px;
}

.footer-logo {
    width: 23%;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 45px;
    margin-bottom: 21px;
}

.footer-logo p {
    color: #d1d1d1;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

.footer-links {
    width: 23%;
    margin-bottom: 0px;
    font-family: "IBM Plex Sans";
}

.footer-links h4 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    width: 23%;
    margin-bottom: 0px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
  }
  
  .footer-contact a:hover {
    color: #fff;
    text-decoration: none;
  }

.footer-contact h4 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-item {
    font-family: "IBM Plex Sans", sans-serif;
    color: #d1d1d1;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.contact-item img {
    width: 16px;
    margin-right: 10px;
}

.contact-item:visited {
    color: inherit;
    text-decoration: none;
}
.contact-item span {
    color: inherit;
    text-decoration: none;
}

.footer-social {
    width: 23%;
    margin-bottom: 0px;
}

.footer-social h4 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.social-icons img:hover {
    opacity: 1;
}

.footer-rights p {
    color: #d1d1d1;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
}
.footer-rights {
    width: 100%;
    text-align: center;
    margin-top: 64px;
}

/* Hamburger icon styles */
.hamburger {
    display: none;
}
.testimonials-section_mob {
    display: none;
}
.team-mobile-bio {
    opacity: 0;
    visibility: hidden;
}

.team-mobile-bio.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}
details summary {
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}
.hidden-web {
    display: none;
}
.hidden-mob {
    display: block;
}
/* Responsive Design */

@media (min-width: 768px) and (max-width: 1024px) {
    /* iPad styles */
    .stat h3 {
        font-size: 38px;
    }
    .stat p {
        font-size: 22px;
    }
    .map-image img {
        display: none;
    }
    .quote1 p,
    .quote2 p,
    .quote3 p,
    .quote4 p {
        z-index: 2;
        position: relative;
    }
    .quote1,
    .quote2,
    .quote3,
    .quote4 {
        z-index: 2;
    }
    .donation-container .content-box {
        margin: 0;
        max-width: 100%;
    }
    .protect-land-section .description {
        max-width: 100%;
    }
    .nav ul li:last-child a {
        margin-right: 16px;
    }
    /* A BOUT US */

    .about-images-layout,
    .about-building-image,
    .about-pattern {
        display: none !important;
    }
    .about-our-story-section {
        background-color: #fff;
        padding: 0;
    }
    .about-our-story-wrapper {
        height: auto;
    }
    .about-our-container {
        padding: 25px 36px 28px;
    }
    .about-our-container2 {
        padding-top: 27px;
        padding-bottom: 132px;
        padding-left: 16px;
        padding-right: 34px;
    }
    .about-text-content {
        width: 100%;
        float: none;
        height: auto;
        text-align: center;
    }
    .about-story-title {
        font-size: 72px;
        font-weight: 400;
        line-height: 100%; /* 72px */
        letter-spacing: -3.6px;
        text-align: center;
    }
    .about-story-title2 {
        color: #323334;
        text-align: center;
        font-family: "Bodoni 72";
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px;
        letter-spacing: -0.72px;
        margin-bottom: 38px;
    }
    .about-story-description {
        text-align: center;
        margin-bottom: 24px;
        color: #6a6350;
    }

    .about-story-bg {
        background-image: url(https://spf-site.s3.amazonaws.com/images/aboutspf_mob_bg1.png);
        background-repeat: no-repeat;
        min-height: 180px;
        background-size: contain;
    }
    .about-story-bg2 {
        background-image: url(https://spf-site.s3.amazonaws.com/images/aboutspf_mob_bg2.png);
        background-repeat: no-repeat;
        min-height: 180px;
        background-size: contain;
        background-position: center;
    }

    .legal-partners-section {
        padding: 16px 0;
    }
    .partners-logos {
        gap: 18px;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
    }
    .partner-logo-box {
        width: 148px;
        height: 72px;
        padding: 0;
        justify-content: center;
        align-items: unset;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border: none;
    }

    .partners-logos::-webkit-scrollbar {
        display: none;
    }

    .legal-case-content {
        flex-direction: column;
        gap: 25px;
    }
    .legal-paragraph-left,
    .legal-paragraph-right {
        width: 100%;
        margin-left: 0;
    }
    .team-img.active {
        width: 180px;
    }
    .team-img {
        width: 160px;
    }
    .about-story-description {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .about-story-bg {
        display: block;
    }
    .about-story-bg {
        min-height: 355px;
        margin-bottom: 50px;
    }
    .team-pattern {
        margin-bottom: 100px;
    }
    .impact-section-slider {
        display: flex;
        gap: 18px;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        margin-top: 75px;
    }
    .impact-slider-box {
        width: 250px;
        height: 178px;
        padding: 0;
        justify-content: center;
        align-items: unset;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .impact-slider-box img {
        width: 250px;
        height: auto;
    }

    .impact-section-slider::-webkit-scrollbar {
        display: none;
    }
    .impact-section {
        background: none;
    }
    .team-section {
        padding-bottom: 80px;
    }
    .social-property-fund{
        height:775px;
    }
    .map-image {
        right: 12px;
    }

    .spf-donations-section {
        flex-direction: column;
        padding: 52px 0 44px;
        background-size: contain;
        background-position: center 66%;
        background-repeat: no-repeat;
    }

    .spf-donations-section .left-content {
        display: flex;
        flex-direction: column;
        order: 1;
        flex-basis: auto;
        padding: 0 44px;
    }

    .spf-donations-section .right-content {
        order: 2;
        padding-top: 0;
    }

    .direct-funding {
        order: 3;
        margin-top: 0;
        position: static;
        padding: 0 47px;
    }

    .donation-line {
        display: none;
    }
    .donation-title {
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px; /* 116.667% */
        letter-spacing: -0.72px;
    }
    .donation-paragraph {
        margin-bottom: 31px;
    }
    .spf-founding-partner-card {
        width: 30%;
    }
    .spf-donate-contrib-box:last-child .spf-donate-contrib-button{
        font-size:11px;
    }
    .signup-input {
        width: 325px;
    }
    .contact-field input {
        width: 320px;
    }
    .contact-full input,.contact-full textarea {
        width: 664px;
    }
    /* End IPad Media */
}

@media screen and (max-width: 767px) {
    /* Mobile styles */

    .hidden-web {
        display: block;
    }
    .hidden-mob {
        display: none;
    }

     .no-mobile-anim.animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .no-mobile-anim.animate-on-scroll.blur-in {
        opacity: 1 !important;
        transition: none !important;
        filter: none !important;
    }

    /* HEADER */
    .header {
        padding: 16px;
    }
    .header-container {
        padding: 0 16px;
        justify-content: space-between;
        position: relative;
        max-width: 100%;
    }
    .logo-container span {
        display: none;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 12px;
        cursor: pointer;
        position: absolute;
        top: 16px;
        right: 16px;
    }
    .hamburger span {
        width: 26.5px;
        height: 2px;
        background-color: #444444;
    }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 0;
        z-index: 10;
    }
    .nav.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        align-items: flex-start;
    }
    .nav ul li a {
        font-size: 18px;
    }

    .donate-btn.active {
        padding: 0;
        border-radius: 0;
        border: 0;
        text-decoration: none;
    }
    .donate-btn {
        background: transparent;
        border: none;
        padding: 0;
        font-size: 16px;
        justify-content: flex-start;
    }
    .donate-btn:hover,
    .donate-btn.active:hover {
        background-color: unset;
        padding: inherit;
        border-radius: 0;
        border: unset;
        text-decoration: none;
        color: #6a6350 !important;
    }

    .hero {
        min-height: 794px;
        padding-top: 40px;
    }
    .hero-bg {
        background-image: url(/assets/images/hero-mobile.jpg);
       
    }

    .hero-background {
        background-size: 240%;
        background-position: -165px center;
        height: 442px;
    }

    .hero-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 0 16px;
        text-align: left;
        z-index: 2;
    }

    .hero h2 {
        font-size: 55px;
        line-height: 64px;
        letter-spacing: -2.24px;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.48px;
        margin-bottom: 36px;
        text-align: center;
    }

    .spf-buttons {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .donate-now-btn {
        width: 249.554px;
        height: 52px;
        padding: 15px 4.476px 25px 25.078px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 1.6px;
    }

    .noborder-btn {
        width: 121.08px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 1.6px;
    }

    .initiative {
        display: none;
    }

    /* STATS */

    .stats-container {
        flex-direction: column;
        padding: 13px 16px;
        max-width: 100%;
        gap: 12px;
    }
    .stat:not(:first-child) {
        border-left: none;
    }
    .stat {
        width: 100%;
        border: none;
        padding: 30px 0;
    }
    .stats-container span {
        width: 168px;
        height: 1px;
        text-align: center;
        margin: auto;
        background-color: #6a6350;
    }

    /* URGENCY */
    .urgency-section {
        background:none !important;
    }
    .urgency-container {
        max-width: 100%;
        height: auto;
    }
    .urgency-text {
        padding-bottom: 111px;
        text-align: left;
        position: static;
        padding: 49px 40px 100px;
        background-image: url(https://spf-site.s3.amazonaws.com/images/road_bg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        transform:none !important;
        
    }

    .about-btn {
        margin-top: 0px;
    }
    .map-container {
        position: relative;
        height: 250px;
        overflow: hidden;
      }
      
      .map-bg1,
      .map-bg2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        transition: opacity 1s ease-in-out;
      }
      
      /* Initial visibility */
      .map-bg1 {
        background-image: url(https://spf-site.s3.amazonaws.com/images/tabo_map1.webp);
        opacity: 1;
        z-index: 1;
      }
      
      .map-bg2 {
        background-image: url(https://spf-site.s3.amazonaws.com/images/tabo_map2.jpg);
        opacity: 0;
        z-index: 2;
      }
      
    .map-image {
        display: none;
    }
 
    /* TABO */
    .tabo-section {
        background-image: none;
        height: auto;
        margin-bottom: 10px;
    }
    .tabo-container {
        padding: 20px 16px;
        height: auto;
        max-width: 100%;
        padding-top: 0;
    }

    .tabo-section-bg,
    .tabo-section-bg1,
    .tabo-section-bg2 {
        display: none;
    }

    .tabo-box {
        position: static;
        width: 100%;
        margin-bottom: 58px;
        background-color: #fff;
        padding: 0;
        height: auto;
    }

    .tabo-box h4 {
        margin-top: 44px;
        margin-bottom: 44px;
    }
    .tabo-steps {
        padding: 0 16px;
    }
    .step-line {
        left: 28px;
    }
    /* SCALING TABO */
    .scaling-tabo-section {
        height: 955px;
        background: linear-gradient(180deg, #e6e0cd 0%, #fff 100%);
    }
    .frontground-overlay {
        width: 100%;
        top: 96px;
        height: 39px;
    }
    .images-container {
        top: 38px;
    }
    .center-image {
        width: 139px;
        height: 153px;
        background: url(https://spf-site.s3.amazonaws.com/images/man2.png);
        background-size: contain;
    }
    .left-image {
        width: 81px;
        height: 110px;
        left: calc(70% - 230px);
        bottom: 20px;
        border-radius: 8px;
        background-size: cover;
    }
    .right-image {
        width: 81px;
        height: 110px;
        right: calc(70% - 230px);
        bottom: 20px;
        border-radius: 8px;
        background-size: cover;
    }

    .section-content {
        top: 229px;
        padding: 12px;
    }
    .section-content h2 {
        font-size: 36px;
        font-weight: 400;
        line-height: 42px;
        letter-spacing: -0.72px;
    }

    .section-content p {
        font-size: 18px;
        line-height: 25px;
        padding: 18px;
    }

    /* TESTIMONIALS */

    .testimonials-section {
        background: #fff;
        display: none;
    }

    .testimonials-section_mob {
        display: block;
        margin-top: 80px;
    }
    .testimonials-container {
        padding: 20px 16px;
        max-width: 100%;
    }
    .testimonial {
        flex-direction: column;
        margin-bottom: 0px;
    }
    .quote {
        width: 314px;
        height: auto;
        background: #ece7d9;
        border-radius: 55px;
        padding: 22px 24px;
        margin-left: 18px;
        margin-bottom: 14px;
    }

    .first-pattern,
    .fourth-pattern {
        display: none;
    }
    .second-pattern {
        top: 321px;
        right: 0;
        width: 96px;
        height: 141px;
        background-size: cover;
        background-position-x: left;
    }
    .third-pattern {
        position: absolute;
        top: -270px;
        left: -42px;
        width: 188px;
        height: 188px;
    }

    .testimonials-wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding-right:16px;
    }

    .testimonials-wrapper::-webkit-scrollbar {
        display: none;
    }

    .testimonial-slide {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .quote p {
        color: #000;
        text-align: center;
        font-family: "IBM Plex Sans";
        font-size: 20px;
        font-style: italic;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: -0.8px;
    }

    /* DONATION BLOCK */
    .social-property-fund {
        background: #fff;
        border-radius: 10px;
        width: 100%;
        height: auto;
        margin-top: 81px;
    }
    .donation-container {
        flex-direction: column;
        padding: 45px 26px;
        max-width: 100%;
    }

    .donation-container .content-box {
        width: 100%;
        padding: 0;
        max-width: 100%;
        margin: 0;
        position: relative;
        z-index: 8;
        height: auto;
    }
    .donation-container .section-title {
        line-height: 120%;
    }
    .donation-container .main-title {
        line-height: 120%;
    }
    .donation-container .description,
    .donation-container .section-title,
    .donation-container .main-title {
        padding-left: 46px;
        padding-right: 41px;
        text-align: center;
        margin-bottom: 10px;
    }
    .donation-container .description {
        padding: 0;
        text-align: left;
        width: 300px;
        margin: 20px auto;
    }
    .donation-block p {
        width: 209px;
        margin: auto;
        text-align: center;
    }
    .donation-blocks {
        margin: 29px 5px;
    }
    .donation-block {
        width: 100%;
        padding: 16px;
        flex-direction: column;
        height: auto;
        margin-bottom: 29px;
    }
    .donation-block h4 {
        margin-bottom: 19px;
    }
    .protect-land-section .support-button {
        margin: 0 auto;
    }
    .protect-land-section .learn-more-button {
        width: 189px;
        margin: 0 auto;
    }
    .donation-mob-bg {
        background-image: url(https://spf-site.s3.amazonaws.com/images/donation-block_bg.png);
        height: 516px;
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* PROTECT LAND */
    .protect-land-section {
        padding: 55px 16px 101px 16px;
    }
    .protect-land-section .main-title {
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -0.72px;
        width: 292px;
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .protect-land-section .content-box {
        padding: 0 12px;
    }
    .protect-land-section .description {
        width: 100%;
    }
    .protect-land-section .buttons {
        flex-direction: column;
        gap: 29px;
    }
    .support-button,
    .learn-more-button {
        width: 100%;
        max-width: 270px;
    }

    /* A BOUT US */

    .about-images-layout,
    .about-building-image,
    .about-pattern {
        display: none !important;
    }
    .about-our-story-section {
        background-color: #fff;
        padding: 0;
    }
    .about-our-story-wrapper {
        height: auto;
    }
    .about-our-container {
        padding: 25px 36px 28px;
    }
    .about-our-container2 {
        padding-top: 27px;
        padding-bottom: 132px;
        padding-left: 16px;
        padding-right: 34px;
    }
    .about-story-title2 {
        width: 265px;
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 36px;
    }
    .about-text-content {
        width: 100%;
        float: none;
        height: auto;
        text-align: center;
    }
    .about-story-title {
        font-size: 72px;
        font-weight: 400;
        line-height: 100%; /* 72px */
        letter-spacing: -3.6px;
        text-align: center;
    }
    .about-story-title2 {
        color: #323334;
        text-align: center;
        font-family: "Bodoni 72";
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px;
        letter-spacing: -0.72px;
        margin-bottom: 38px;
    }
    .about-story-description {
        text-align: center;
        margin-bottom: 24px;
        color: #6a6350;
    }

    .about-story-bg {
        background-image: url(https://spf-site.s3.amazonaws.com/images/aboutspf_mob_bg1.png);
        background-repeat: no-repeat;
        min-height: 180px;
        background-size: contain;
    }
    .about-story-bg2 {
        background-image: url(https://spf-site.s3.amazonaws.com/images/aboutspf_mob_bg2.png);
        background-repeat: no-repeat;
        min-height: 180px;
        background-size: contain;
        background-position: center;
    }

    .legal-partners-section {
        padding: 16px 0;
    }
    .legal-case-section {
        gap: 28px;
        padding:0 16px;
    }
    .legal-partners-container{
        padding:0;
    }
    .partners-logos {
        gap: 0px;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        margin-bottom: 36px;
        padding-right: 16px;
    }
    .partner-logo-box {
        width: 150px;
        height: 72px;
        padding: 0;
        justify-content: center;
        align-items: unset;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border: none;
        padding-left: 10px;
    }

    .partner-logo-box img {
        width: 100%;
        height: auto;
    }

    .partners-logos::-webkit-scrollbar {
        display: none;
    }

    .legal-case-title {
        color: #3b3128;
        font-family: "Bodoni 72";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.48px;
    }

    .legal-case-content {
        flex-direction: column;
        gap: 25px;
    }
    .legal-paragraph-left,
    .legal-paragraph-right {
        width: 100%;
        margin-left: 0;
    }
    .team-slider-section {
        display: block;
    }
    .team-section {
        display: none;
    }
    .team-pattern {
        width: auto;
    }

    .team-mobile-section {
        padding-top: 38px;
        overflow: hidden;
    }
    .team-pattern {
        margin-bottom: 51px;
    }
    .team-mobile-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        scroll-behavior: smooth;
        padding-right: 16px;
        padding-left: 16px;
    }

    .team-mobile-container::-webkit-scrollbar {
        display: none;
    }

    .team-slide {
        flex: none;
        scroll-snap-align: center;
        width: 320px;
        text-align: center;
        position: relative;
        transition: all 0.4s ease-in-out;
      }
 
      .team-img-wrapper {
        position: relative;
        width: 100%;
        height:320px;
      }
      
      .team-mobile-img {
        width: 100%;
        height:100%;
        border-radius: 16px;
        object-fit: cover;
        transition: opacity 0.4s ease;
        position: absolute;
        top: 0;
        left: 0;
      }
      
      .team-mobile-img.muted {
        z-index: 1;
        opacity: 1;
      }
      
      .team-mobile-img.colored {
        z-index: 2;
        opacity: 0;
      }
      
      .team-slide.active .team-mobile-img.colored {
        opacity: 1;
      }

    .team-mobile-name {
        margin-top: 12px;
        color: #6a6350;
        font-family: "Source Sans Pro";
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 48px */
        letter-spacing: -1.44px;
        text-align: left;
    }

    .team-mobile-role {
        font-family: "Source Sans Pro";
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: 125%; /* 26.25px */
        letter-spacing: -0.42px;
        color: #ad7d2b;
        margin: 8px 0;
        text-align: left;
    }

    .team-slide-bio-toggle {
        display: flex;
        align-items: center;
        font-weight: bold;
        color: #000;
        cursor: pointer;
        font-size: 16px;
        text-decoration: none;
        margin-top: 8px;
        font-family: "Source Sans Pro";
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: 125%;
        letter-spacing: -0.42px;
        margin-bottom: 0px;
    }

    .team-slide-bio-toggle svg {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .team-mobile-bio {
        max-height: 1000px;
        padding: 20px 16px;
        text-align: left;
        color: #6a6350;
        font-family: "Source Sans Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 30px */
        letter-spacing: -0.4px;
        opacity: 1;
        visibility: visible;
        padding-left: 0;
        padding-top:12px;
    }
    .impact-section {
        background: none;
        padding-top: 32px;
        padding-bottom: 98px;
    }
    .logos {
        margin-bottom: 45px;
    }
    .impact-title {
        font-size: 56px;
        font-style: normal;
        font-weight: 400;
        line-height: 64px; /* 114.286% */
        letter-spacing: -2.24px;
    }
    .impact-section-slider {
        display: flex;
        gap: 18px;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        margin-top: 75px;
    }
    .impact-slider-box {
        width: 250px;
        height: 178px;
        padding: 0;
        justify-content: center;
        align-items: unset;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .impact-slider-box img {
        width: 250px;
        height: auto;
    }

    .impact-section-slider::-webkit-scrollbar {
        display: none;
    }
    .impact-description {
        padding: 0 20px;
    }
    /*  SPF Page  */

    .spf-hero-section {
        padding: 60px 16px 0 33px;
    }
    .spf-impact-section {
        background-image: url(https://spf-site.s3.amazonaws.com/images/spf_mobile_map_frame.png);
        background-position: top center;
        background-size: contain;
        padding-top: 0;
    }

    .spf-hero-container {
        margin-top: 0;
        padding: 0;
        max-width: 100%;
        height: auto;
    }
    .spf-hero-paragraph {
        padding-left: 3px;
        width: 320px;
        max-width: 100%;
    }
    .spf-hero-text {
        margin-top: 0;
    }
    .spf-hero-heading {
        margin-bottom: 41px;
    }
    .spf-hero-image {
        margin-left: auto;
        height: 140px;
    }

    .spf-hero-image img {
        width: 130px;
        margin-top: 41px;
    }

    .spf-impact-title {
        color: #fff;
        font-size: 20px;
        font-weight: 400;
        line-height: 34.453px;
        letter-spacing: -0.8px;
        margin: 16px;
        text-align: right;
        margin-top: 0;
        padding-top: 7px;
    }
    .spf-impact-boxes {
        text-align: center;
        flex-direction: column;
        gap: 14px;
    }
    .spf-impact-box {
        padding: 18px 25px;
    }

    .spf-impact-box-center {
        width: 175px;
    }

    .spf-impact-box-left {
        align-self: flex-start;
        width: 252px;
    }

    .spf-impact-box-center {
        align-self: center;
    }

    .spf-impact-box-right {
        align-self: flex-end;
        width: 292px;
    }

    .spf-impact-number {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.48px;
    }
    .spf-impact-label {
        font-size: 16px;
        line-height: 18.826px;
        letter-spacing: -0.323px;
    }
    .spf-impact-level-title {
        display: none;
    }

    .spf-impact-level-cards {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        gap:0;
        padding-right:16px;
    }

    .spf-impact-card {
        width: 275px;
        flex-shrink: 0;
        scroll-snap-align: center;
        background: #fff;
        border-radius: 8px;
        padding: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        justify-content: space-around;
        margin-left: 15px;
    }
    .spf-impact-card:last-child .spf-impact-button {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.15px;
    }

    .spf-impact-level-cards::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    .spf-impact-level-section {
        padding: 0;
        padding-top: 225px;
    }
    .spf-contribution-section {
        padding: 0 32px;
        margin-top: 65px;
    }
    .spf-contribution-heading {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.48px;
    }
    .spf-donations-section {
        flex-direction: column;
        padding: 52px 0 44px;
        background-size: contain;
        background-position: center 66%;
        background-repeat: no-repeat;
    }

    .spf-donations-section .left-content {
        display: flex;
        flex-direction: column;
        order: 1;
        flex-basis: auto;
        padding: 0 44px;
    }

    .spf-donations-section .right-content {
        order: 2;
        margin-bottom: 40px;
        padding-top: 0;
    }

    .direct-funding {
        order: 3;
        margin-top: 0;
        position: static;
        padding: 0 47px;
    }

    .donation-line {
        display: none;
    }
    .donation-title {
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px; /* 116.667% */
        letter-spacing: -0.72px;
    }
    .donation-paragraph {
        margin-bottom: 31px;
    }
    .spf-founding-partner-bg {
        position: relative;
        overflow: hidden;
        padding-top: 88px;
        background: none;
    }

    .spf-founding-partner-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 166px;
        background-image: url(https://spf-site.s3.amazonaws.com/images/kufurein_model_homes_bg.jpg);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        z-index: 0;
    }
    .spf-founding-partner-bg > * {
        position: relative;
        z-index: 1;
    }

    .spf-testimonials-wrapper {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        margin-bottom: 17px;
        padding-right: 16px;
    }

    .spf-founding-partner-card {
        width: 330px;
        height: 400px;
        scroll-snap-align: center;
        flex-shrink: 0;
        margin-left: 16px;

    }
    .spf-testimonials-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    /* Donate Page */

    .spf-donate-hero-section {
        padding: 0;
        padding-top: 35px;
    }
    .donate-options-section{
        padding: 80px 30px 55px;
    }
    .spf-donate-hero-text_container {
        position: relative;
        margin:0;
    }

    .spf-donate-logo {
        display: block;
        width: 99px;
        position: absolute;
        right: 18px;
        top: 0;
    }
    .spf-donate-hero-text {
        margin-left: 27px;
        margin-right: 27px;
        margin-bottom: 40px;
        padding-top: 70px;
    }

    .spf-donate-subtitle {
        margin-bottom: 27px;
    }
    .spf-donate-title {
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px; /* 116.667% */
        letter-spacing: -0.72px;
    }
    .spf-donate-hero-bg {
        background: url(https://spf-site.s3.amazonaws.com/images/donate_mobile.png)
            no-repeat center top;
        background-size: contain;
        height: 202px;
    }
    .spf-donate-hero-bg img {
        display:none;
    }
    .donate-options-title {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 116.667% */
        letter-spacing: -0.48px;
        text-align: center;
    }

    .donate-option-summary {
        flex-direction: column;
        gap: 30px;
    }

    .donate-option-box:not([open]) {
        height: auto;
    }

    .donate-option-arrow {
        transform: rotate(90deg);
        transition: auto;
    }
    .donate-options-container details[open] .donate-option-arrow {
        transform: rotate(270deg);
    }

    .donate-option-heading {
        order: 1;
    }

    .donate-option-description {
        order: 2;
    }

    .donate-option-box[open] .donate-option-arrow {
        order: 3;
    }

    .donate-option-box:not([open]) .donate-option-arrow {
        order: 2;
    }

    .spf-donate-contribution-boxes {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        margin-bottom:28px;
        padding-right:16px;
    }
    .spf-donate-contrib-box {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 285px;
        justify-content: space-around;
    }
    .spf-donate-contrib-custom-label{
        margin-bottom:17px;
    }
    .spf-donate-contrib-button {
        margin: 0;
    }
    .spf-donate-contrib-box:last-child .spf-donate-contrib-button {
        font-size: 14px;
        letter-spacing: 0.25px;
    }

    .spf-donate-contribution-boxes::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .spf-donate-contribution-section {
        padding-top: 0;
        padding-bottom: 133px;
    }
    .spf-donate-contribution-container {
        background-image: url(https://spf-site.s3.amazonaws.com/images/donate_pattern_mob.svg);
        background-repeat: no-repeat;
        background-position: left 4px top 35px;
        padding:0;
        padding-top: 80px;
        background-size: 300px;
    }
    .spf-donate-contrib-box:first-child {
        margin-left: 16px;
    }
    .spf-donate-contrib-custom-input-group {
        flex-direction: column;
        gap: 17px;
        padding: 0 20px;
    }
    .spf-donate-contrib-input,
    .spf-donate-contrib-input-button {
        width: 100%;
    }

    .spf-donate-advocacy-section {
        margin-bottom: 68px;
        height: 710px;
        padding-top: 0;
    }
    .spf-donate-advocacy-button {
        margin-bottom: 114px;
    }
    .spf-donate-advocacy-logo {
        transform: translate(-50%, 80%);
    }

    .founding-partner-opportunity {
        padding-top: 107px;
    }
    .founding-heading {
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px;
        letter-spacing: -0.72px;
    }

    .signup-section {
        height: 740px;
    }
    .signup-wrapper {
        max-width: 100%;
        height: 505px;
    }
    .signup-form {
        flex-direction: column;
        gap: 19px;
    }
    .signup-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        padding: 20px;
    }
    .signup-box {
        top: 506px;
        max-width: 100%;
        height: auto;
        box-shadow: none;
        padding: 49px 38px;
        gap: 19px;
        padding-bottom: 0;
    }
    .signup-button,
    .signup-input {
        width: 100%;
    }
    .signup-title {
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px; /* 116.667% */
        letter-spacing: -0.72px;
    }

    .founding-description {
        text-align: center;
        width: 348px;
        max-width: 100%;
    }
    .table-row {
        font-size: 12.959px;
        font-style: normal;
        font-weight: 400;
        line-height: 17.998px;
    }


    .spf-contribution-summary {
        flex-direction: column;
        gap: 35px;
    }
    .spf-contribution-box:not([open]) .spf-contribution-arrow {
        transform: rotate(90deg);
    }
    .spf-contribution-box .spf-contribution-arrow {
     display: none;
    }

    .spf-contribution-title {
        order: 1;
    }

    .spf-contribution-paragraph {
        order: 2;
    }

    .spf-founding-logo-section {
        padding: 0 16px 98px;
        gap: 21px;
    }
    .spf-founding-title {
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px;
        letter-spacing: -0.72px;
        margin-bottom: 15px;
    }

    .spf-founding-description {
        width: 376px;
        max-width: 100%;
        margin-bottom: 21px;
    }

    .founding-table {
        display: none;
    }
    .founding-table-vertical {
        display: grid;
        grid-template-columns: 102px 1fr 1fr;
        gap: 1px;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 81px;
    }

    .vertical-table-row {
        display: contents;
    }

    .vertical-table-cell {
        color: #254039;
        font-family: "IBM Plex Sans";
        font-size: 12.959px;
        font-style: normal;
        font-weight: 400;
        line-height: 17.998px;
        padding: 10px;
    }
    .vertical-table-row:nth-child(odd) .vertical-table-label,
    .vertical-table-row:nth-child(odd) .vertical-table-cell {
        background-color: #faf8f2;
    }

    .vertical-table-row:nth-child(even) .vertical-table-label,
    .vertical-table-row:nth-child(even) .vertical-table-cell {
        background-color: #ffffff;
    }

    /* Contact US Page */
    .contact-us-section {
        padding-top: 41px;
        padding-bottom: 0;
        height: 1380px;
    }
    .contact-us-container {
        padding: 0 32px;
    }

    .contact-background {
        background-size: 220%;
        background-position: 67% bottom;
        background-repeat: no-repeat;
    }
    .contact-row,
    .contact-field input {
        width: 100%;
    }
    .contact-form {
        align-items: center;
        width: 100%;
    }
    .contact-row {
        flex-direction: column;
    }
    .contact-full,
    .contact-full input,
    .contact-full textarea {
        width: 100%;
    }
    .contact-submit,
    .contact-response-time {
        align-self: flex-start;
    }
    .contact-bottom-line {
        height: 7px;
        background: #ece7d9;
    }
    /* FOOTER */
    .footer {
        width: 100%;
        background-image: url(https://spf-site.s3.amazonaws.com/images/footer-pattern-right.png);
        background-size: 200px;
        background-position: calc(100% + 45px) 310px;
        background-repeat: no-repeat;
        padding: 59px 50px;
    }
    .footer-rights {
        margin-top: 100px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 20px 16px;
        max-width: 100%;
        gap: 69px;
    }
    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-social {
        width: 100%;
        margin-bottom: 0px;
    }
    .footer-logo img {
        width: 45px;
        margin-bottom: 21px;
    }
}
