
    .about-section {
    padding: 20px 15px;
    background-color: #ffffff;
    text-align: center;
    min-height: calc(100vh - 80px);
    box-sizing: border-box;
}


.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;

    color: #a28e5b;
    letter-spacing: 4px;
    margin-top: 20px;
    padding: 30px;
    text-transform: uppercase;
    text-align: center;

}


/* The Body: Clean Sans Serif Style */
.about-text {
    font-family: 'Poppins', sans-serif;
    /* font-weight: 300; */
    font-size: 24px;
    line-height: 1.5;
    color: #000000;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

 .scroll-section {
            padding: 30px 10px;

        }

        .scroll-cards {
            counter-reset: card;
            position: relative;
            display: block;
            padding-bottom: 70vh;
            max-width: 100%;
            margin: 0 auto;
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
        }

        .scroll-cards h1 {
            position: sticky;
            top: 0rem;
            color: var(--primary);
            letter-spacing: -1px;
            z-index: 10;
            font-family: 'Poppins', sans-serif;
        }

        .scroll-cards__item {
            --offset: 3.5em;
            position: sticky;
            top: max(12vh, 0px);
            padding: 0em 0.5em;
            min-height: 33em;
            background: #fff;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            font-size: 20px;
        }


        .scroll-cards__item h2 {
            color: var(--gold-light);
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1rem;
            /* font-weight: 700; */
            opacity: 0.85;
        }

        .scroll-cards__item p {
            /* line-height: 1.8; */
            opacity: 0.85;
            font-family: 'Poppins', sans-serif;
        }
.scroll-cards-animation {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-cards-animation.visible {
    opacity: 1;
}



.scroll-cards__item:nth-of-type(1) {
  transform: translateY(calc((1 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(2) {
  transform: translateY(calc((2 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(3) {
  transform: translateY(calc((3 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(4) {
  transform: translateY(calc((4 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(5) {
  transform: translateY(calc((5 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(6) {
  transform: translateY(calc((6 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(7) {
  transform: translateY(calc((7 - 1) * var(--offset)));
}

@media(max-width:600px){
.scroll-cards__item h2{
     font-size: 20px;
     margin-bottom: 40px;
}

.about-title{
    font-size: 17px;

}


}
