.keySuccessWrapper {

    .section-title {
        h2 {
            /* background: linear-gradient(180deg, #F9E797 0%, #B08F42 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent; */
            text-transform: uppercase;
            font-size: 50px;
            padding-bottom: 10px;
            color: #25406c;

            @media(max-width:640px){
                font-size: 30px;
            }
        }
        p{
            color: #000;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-transform: capitalize;
        }
    }
}
.success-card-box ul{
    li{
        position: relative;
        padding-left: 2rem;
        list-style-type: none;
        margin: 0px 0 0;
        font-size: 15px;

        &::before{
            content: url(../../../../public/images/success-bullet-list.png);
            position: absolute;
            left: 0px;
            top: 0%;
            width: 50px;
            height: 25px;
            background-size: 100% 100%;
        }
        &:nth-child(2){
            margin-bottom: 0;
        }
    }
    
}