.offer-banner{
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    /* mobile defaults use CSS variables set inline on the wrapper */
    padding-top: var(--offer-banner-mt-mobile, 0);
    padding-bottom: var(--offer-banner-mb-mobile, 0);
    padding-left: var(--gutters);
    padding-right: var(--gutters);
    justify-content: space-between;
    background-color: var(--wp--preset--color--beige);
    position: relative;
}
@media (min-width: 768px) {
    .offer-banner {
        /* desktop defaults use CSS variables set inline on the wrapper */
        padding-top: var(--offer-banner-mt-desktop, 0);
        padding-bottom: var(--offer-banner-mb-desktop, 0);
    }
}
.offer-banner__text{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.offer-banner-head h2, .offer-banner-head h2 a{
    display: flex;
    color: var(--wp--preset--color--noir);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px; 
    gap: 0.5rem;
    align-items: center;
}
.offer-banner-head h2 span:nth-child(2){
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--bleu);
}
.offer-banner__text{
    max-width: 550px;
}
.offer-banner__text h1{
    color: var(--wp--preset--color--bleu);
    text-align: center;
    font-family: "dunbar-tall", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.offer-banner__text p{
    color: var(--wp--preset--color--noir);
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}
.offer-banner .second-logo{
    z-index: 0;
    bottom: unset;
}
.offer-banner .second-logo .second-logo-square, .offer-banner .second-logo .second-logo-rectangle{
    border: 0.75px solid var(--wp--preset--color--bleu);
}
@media (max-width: 768px) {
     .offer-banner__text h1{
        font-size: 21px;
    }
    .second-logo{
        display: none;
    }
}