main {
    display: grid;
    grid-template-columns: 90%;
    justify-content: center;
}

/*
.coordonnees {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
*/

fieldset {
    margin-bottom: 15px;
    padding: 10px;
}

legend {
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: justify;
}

.bureau {
    font-family: 'Times New Roman', Times, serif;
    font-size: 21px;
}

.tel {
    font-family: 'Times New Roman', Times, serif;
    font-size: 19px;
}


.siret {
    margin: 8px;
}


table {
    border-collapse: collapse;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}



th,
td {
    font-size: 13px;
    padding: 10px 7px;
    vertical-align: top;
}

@media screen and (max-width: 768px) {

    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
    }

    thead {
        display: none;
    }

    td {
        padding-left: 150px;
        margin-top: -15px;
        position: relative;
    }

    td::before {
        padding: 3px;
        content: attr(data-label);
        position: absolute;
        top: 0;
        left: 0;
        width: 130px;
        bottom: 0;
        color: rgb(14, 90, 33);
        display: flex;
        align-items: center;

    }

    tr {
        margin-bottom: 1rem;
    }

    .bureau {
        font-family: 'Times New Roman', Times, serif;
        font-size: 18px;
    }

    .tel {
        font-family: 'Times New Roman', Times, serif;
        font-size: 16px;
    }

}