p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    letter-spacing: .1em;
    text-align: center;
    line-height: 2;
    list-style-type: none;
}

.Corps {
    background-image: url(../Image/Fond/Fond-Galerie.png);
    background-size: cover;
    height: 100%;
}

.Corps-Horaire {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

/* Colonne gauche */
.Corps-Horaire>div:nth-child(1) {
    background-color: #292d33;
    color: white;
    width: 30%;
    margin: 1%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: flex-end;
    flex-wrap: nowrap;
}

/* Colonne droite */
.Corps-Horaire>div:nth-child(2) {
    width: 70%;
    min-height: 550px;
    margin-right: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: flex-end;
    flex-wrap: nowrap;
}

@media (max-width: 900px) {
    .Corps-Horaire {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .Corps-Horaire>div:nth-child(1),
    .Corps-Horaire>div:nth-child(2) {
        width: 95%;
        margin: 0 2%;
    }

    .Corps-Horaire>div:nth-child(2) {
        margin-bottom: 50px;
    }
}

.Corps-Horaire h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: .3em;
    text-transform: uppercase;
    text-align: center;
}

.Attention {
    color: rgb(192, 0, 0);
}


/* Bouton */
.Bouton_Telechargement {
    display: block;
    margin: 15px auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background-color: #f0f0f0;
    color: #333333;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}

.Bouton_Telechargement:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Tableau */
table {
    border-collapse: collapse;
    width: 100%;
    font-family: 'Merriweather', serif;
    font-size: 16px;
}

th {
    background-color: #2F5496;
    color: white;
    padding: 8px;
}

td {
    border: 1px solid black;
    padding: 12px;
    text-align: center;
}

.Color_Blue_1>* {
    background-color: #D9E2F3;
}

.Color_Blue_2>* {
    background-color: #B4C6E7;
}

@media (max-width: 900px) {

    .Sup_Tel {
        display: none;
    }
}

/* Image plein écran */
#image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#image-container.visible {
    display: flex;
}

#image {
    max-width: 80%;
    max-height: 80%;
}

.Menu-Vertical {
    display: flex;
    position: absolute;
    bottom: 15px;
    background-color: black;
    padding: 10px;
    border-radius: 10px;
}

.icone_image {
    height: 45px;
    width: 45px;
    cursor: pointer;
}

.icone_image:not(:last-child) {
    border-right: 2px solid rgb(185, 185, 185);
    padding-right: 10px;
}

/* Responsive */
@media (max-width: 800px) {
    .Corps-Horaire .horaire_general {
        flex-direction: column;
    }

    .Horaire-info,
    .Horaire-table {
        flex: 0 0 100%;
    }
}