.m__pulse_cards .bg-purple {
    background: #7762AA;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #FFF0E6;
}
.m__pulse_cards .bg-green {
    background: #88B957;
    border-radius: 10px;
}
.m__pulse_cards .bg-orange {
    background: #F58533;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.m__pulse_cards__wrapper__individual {
    margin-top: -25px;
}

.m__pulse_cards .copy {
    font-size: 16px;
    line-height: 120%;
}
.m__pulse_cards .bg-orange .copy, .m__pulse_cards .bg-orange h2, .m__pulse_cards .bg-green .copy, .m__pulse_cards .bg-green h2 {
    color: #002424
}
.m__pulse_cards .bg-purple h2 {
    color: #fff0e6;
}
.m__pulse_cards .cta {
    background: #ffffff00;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 24px;
}
.m__pulse_cards .bg-orange .cta, .m__pulse_cards .bg-green .cta  {
    color: #002424;
    border: 2px solid #002424;
}
.m__pulse_cards .bg-orange .cta:hover, .m__pulse_cards .bg-green .cta:hover {
    background: #002424;
    color: #FFF0E6;
    border: 2px solid #002424;
}
.m__pulse_cards .bg-purple .cta {
    color: #FFF0E6;
    border: 2px solid #FFF0E6;
}
.m__pulse_cards .bg-purple .cta:hover {
    background: #FFF0E6;
    color: #002424;
    border: 2px solid #FFF0E6;
}
.m__pulse_cards__wrapper__individual.active {
    position: sticky;
}
/*
.m__pulse_cards {
    position: relative;
    height: 400vh; /* Extends the section to allow scrolling */
/* }

.m__pulse_cards__wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.m__pulse_cards__wrapper__individual {
    position: absolute;
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.m__pulse_cards__wrapper__individual.active {
    opacity: 1;
    transform: translateY(0);
}
