Changing font colour of "Checkout securely with"

I am trying to change the font colour of a specific peice of text in the Dawn theme (latest version) on the product page. I have looked everywhere and been unsuccessful so far. Any help will be much appreciated.

Product page link: NaturesFinestHealth.com

@Junipho , Did you add custom css to this section?

@Junipho , locate this code :

div.giraffly-right-Bar-Preview-width h3 {
    font-size: 20px !important;
    line-height: 40px !important;
    font-weight: 600 !important;
    color: #000000 !important;
    font-family: Lato, sans-serif;
    margin-bottom: 6.5px !important;
    padding-bottom: 0 !important;
}

then remove the color property.

@Junipho add the below code to your theme’s CSS file.

.product-form .giraffly-right-Bar-Preview-width h3 {
    color: #fff !important;
}

Also I noticed your review stars are black too. You can change the color by using the below code.

.spr-stars svg path {
    fill: #ffc520 !important;
}

where is the code? I have looked everywhere

Thanks a lot, both have been fixed with your solution. :smiling_face_with_sunglasses: