.info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.bloc-coord img {
    object-fit: contain;
}

.bloc-coord {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.horaire {
    max-width: 65%;
    margin: 0 auto;      /* Centre horizontalement */
    translate: none;     /* Supprime le décalage */
}

.horaire .days span,
.horaire .hours {
    font-size: 1.5rem; /* Ajuste la valeur selon tes besoins */
}

h3 {
    margin-left: 10vh;
    padding-top: 8vh;
    margin-bottom: 8vh;
    letter-spacing: 0.2em;
}

.form-container {
    width: 35%;
}

.form-container p {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.message-input {
    border: 2px solid #000000;
    /* padding: 0.5rem; */
    font-size: 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form {
    /* display: block; */
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form:focus {
    border-color: #000000;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, 0.25);
}