.contenedor_payment{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
    align-items: center;
}

.content_pay{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#img_c_p{
    width: 112px;
    margin-bottom:32px ;
}

#titulo_c_p{
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 16px;
}

#texto_c_p{
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-bottom: 80px;
}

.botones_c_p{
    width: 415px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 120px;
}

.botones_c_p a{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-align: center;
    padding: 12px 25px;
    border-radius: 24px;
    background: #F5C43D;
    text-decoration: none;
    color: #2A3654;
    font-weight: bold;
}

.botones_c_p a:hover{
    background: #FAE29E;
}

.content_pay span{
    font-family: Arial;
    font-size: 48px;
}

@media screen and (max-width: 650px){
    #titulo_c_p{
        font-size: 40px;
    }
    #texto_c_p{
        font-size: 15px;
    }
}

@media screen and (max-width: 550px){
    #titulo_c_p{
        font-size: 30px;
    }
    .content_pay span{
        font-size: 35px;
    }
}

@media screen and (max-width: 500px){
    .botones_c_p{
        flex-direction: column;
        align-items: center;
    }

    .botones_c_p a{
        width: 192px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 430px){
    #titulo_c_p{
        font-size: 25px;
    }
    .content_pay span{
        font-size: 27px;
    }
}