Hi
You might want to consider working with the class .screen-reader-text.
There’s is line that says :
<span class=”screen-reader-text”>La tête sur les épaules</span>
Maybe changing some of its properties, might allow you to use the text with the logo.
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
word-break: normal;
}
probably you will have to change (among other things) the clip values (1px) as well as the width and height.