.bandeau-texte-seulement{
    display: flex;
    flex-direction: column ;
    gap: 16px;
    align-items: center;
    margin: 32px 0;
}

.bandeau-texte-seulement h2{
    color: var(--Principal, #174A42);
    font-family: Pontiac;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 900;
    line-height: 32px; /* 133.333% */
    text-transform: uppercase;
    width: 100%;
    margin: 0;
}

.bandeau-texte-seulement .texte {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bandeau-texte-seulement .texte h2{
    color: var(--Principal, #174A42);
    font-family: Pontiac;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 900;
    line-height: 32px; /* 133.333% */
    text-transform: uppercase;
    width: 100%;
    margin: 0;
}

/* RESPONSIVE  */

@media screen and (min-width: 1281px) {
    .bandeau-texte-seulement {
        padding-left: calc((100vw - 1280px) / 2);
        padding-right: calc((100vw - 1280px) / 2);
    }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .bandeau-texte-seulement {
        padding-left: calc((100vw - 1024px) / 2);
        padding-right: calc((100vw - 1024px) / 2);
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .bandeau-texte-seulement {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 767px) {
    .bandeau-texte-seulement {
        flex-direction: column;
        gap: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .bandeau-texte-seulement .texte {
        font-size: 14px;
    }
}