/**
 * French-only styles.
 *
 * Loaded exclusively when rv_current_lang() === 'fr' (see regeneravita_scripts()
 * in functions.php), so nothing here can affect the other language versions.
 *
 * It is enqueued after rv-style / rv-responsive / the theme style.css, so plain
 * selectors already win over the shared CSS — no !important needed.
 *
 * The <body> also carries a `lang-fr` class, so you can scope a rule explicitly
 * when you want it obvious at a glance that it is French-only:
 *
 *   .lang-fr .banner-title { font-size: 46px; }
 *
 * French copy tends to run ~15-20% longer than English, so this is the place
 * for the button / heading / nav overflow fixes that only French needs.
 */

/* Add French-specific overrides below. */




.contact-page .cta-wrap .cta-band .sec_title{
        font-size: clamp(27px, 3vw, 32px);
}
@media (max-width: 1366px){
.contact-page .cta-wrap .cta-band .sec_title{
      font-size: clamp(19px, 3vw, 24px);
}
}
@media (max-width: 1280px){
.contact-page .cta-wrap .cta-band .cta_btn .btn_text {
            font-size: 12px;
}
}
@media (max-width:  1024px){
.contact-page .cta-wrap .cta-band .sec_title{
      font-size: clamp(19px, 3vw, 20px);
}
}




