/* Written by Hugo Pelissard */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/futura-std-4");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Futura Std";
    font-size: 20px;
    font-weight: 300;
}

@media screen and (max-width: 1500px) {
    * {
        font-size: 10px;
    }
}

@media screen and (max-width: 700px) {
    * {
        font-size: 5px;
    }
}

body {
    background-image: url("image/background/Fond_bleu.jpg");
    background-attachment: fixed; /* Défilement de l'image de fond */
    background-repeat: no-repeat; /* Empêche la répétition de l'image de fond */
    -webkit-background-size: cover; /* pour anciens Chrome et Safari */
    background-size: cover; /* version standardisée */
}

/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/************************** G L O B A L  **************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/

/***************/
/***** Nav *****/
/***************/

nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #000000;
}
nav .wrapper {
    position: relative;
    padding: 0px 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .nav-links {
    display: inline-flex;
}
.nav-links li {
    list-style: none;
}
.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.nav-links li a:hover {
    background: #3a3b3c;
}

@media screen and (max-width: 1500px) {
    nav .wrapper {
        padding: 0px 10px;
        height: 30px;
    }
    .nav-links li a {
        font-size: 9px;
        padding: 5px 5px;
        border-radius: 2.5px;
    }
}

@media screen and (max-width: 700px) {
    nav .wrapper {
        padding: 0px 5px;
        height: 15px;
    }
    .nav-links li a {
        font-size: 4.5px;
        padding: 2.5px 2.5px;
        border-radius: 1.25px;
    }
}

/****************************/
/******* Logo + Text ********/
/****************************/

.logo-banniere {
    height: 60px; /* Adapte la hauteur à celle de l'élément parent, qui serait la barre de navigation */
    object-fit: contain; /* Assure que l'image s'adapte à l'espace disponible tout en conservant ses proportions */
    padding-block: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-banniere a {
    font-family: "Futura Std";
    font-size: 30px;
    text-decoration: none;
    color: #ffffff;
}

@media screen and (max-width: 1500px) {
    .logo-banniere {
        height: 40px;
    }
    .logo-banniere a {
        font-size: 15px;
    }
}

@media screen and (max-width: 700px) {
    .logo-banniere {
        height: 30px;
    }
    .logo-banniere a {
        font-size: 8px;
    }
}

/************************/
/******* Bandeau ********/
/************************/

.bandeau-vide {
    width: 100%;
    padding: 10px;
    background: #00000096;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

.bandeau-vide h1 {
    font-family: "Futura Std";
    color: #ffffff;
    font-size: 60px;
    font-weight: 300;
    text-align: center;
}

.bandeau {
    background: #00000096;
    width: 100%;
    padding: 10px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1500px) {
    .bandeau-vide {
        padding: 5px;
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
    }
    .bandeau-vide h1 {
        font-size: 30px;
    }
    .bandeau {
        padding: 5px;
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
    }
}

@media screen and (max-width: 700px) {
    .bandeau-vide {
        padding: 2.5px;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.5);
    }
    .bandeau-vide h1 {
        font-size: 15px;
    }
    .bandeau {
        padding: 2.5px;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.5);
    }
}

/**********************/
/******* Ligne ********/
/**********************/

.line {
    border-top: 2px solid #000; /* Crée une ligne de 1px d'épaisseur */
    width: 100%; /* Prend toute la largeur */
    margin-block: 10px;
}

.short-line {
    border-top: 2px solid #0000004c; /* Crée une ligne de 1px d'épaisseur */
    width: 600px; /* Prend toute la largeur */
    margin: 0 auto; /* Centre la ligne */
    margin-block: 10px;
}

.line-title {
    border-top: 2px solid #000; /* Crée une ligne de 1px d'épaisseur */
    width: 800px; /* Prend toute la largeur */
    margin-block: 10px;
    margin: 0 auto; /* Centre la ligne */
}

@media screen and (max-width: 1500px) {
    .line {
        border-top: 1px solid #000; /* Crée une ligne de 1px d'épaisseur */
        margin-block: 5px;
    }

    .short-line {
        border-top: 1px solid #0000004c; /* Crée une ligne de 1px d'épaisseur */
        width: 300px; /* Prend toute la largeur */
        margin-block: 5px;
    }

    .line-title {
        border-top: 1px solid #000; /* Crée une ligne de 1px d'épaisseur */
        width: 400px;
        margin-block: 5px;
    }
}

@media screen and (max-width: 700px) {
    .line {
        border-top: 0.5px solid #000; /* Crée une ligne de 1px d'épaisseur */
        margin-block: 2.5px;
    }
    .short-line {
        border-top: 0.5px solid #0000004c; /* Crée une ligne de 1px d'épaisseur */
        width: 150px; /* Prend toute la largeur */
        margin-block: 2.5px;
    }
    .line-title {
        border-top: 0.5px solid #000; /* Crée une ligne de 1px d'épaisseur */
        width: 200px;
        margin-block: 2.5px;
    }
}

/******************/
/***** Footer *****/
/******************/

.footer {
    font-size: 12px;
    color: #ffffff;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 6px;
    background-color: #2b2b2b;
    text-align: center;
}

.footer b {
    font-size: 12px;
}

@media screen and (max-width: 1500px) {
    .footer {
        font-size: 6px;
        padding: 2px;
    }
    .footer b {
        font-size: 6px;
    }
}

@media screen and (max-width: 700px) {
    .footer {
        font-size: 5px;
        padding: 2px;
    }
    .footer b {
        font-size: 5px;
    }
}

/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/*************************** I N D E X ****************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/

/************************/
/***** Container ********/
/************************/

#container-index {
    display: flex; /* Organise les éléments en ligne */
    width: 1400px;
    justify-content: center; /* Centre les éléments horizontalement */
    align-items: center; /* Centre les éléments verticalement */
    margin: 0 auto; /* Ajoute cette ligne pour centrer le bloc */
}

.main-block-index {
    box-sizing: border-box;
    margin: 5px;
}

.main-block-index h2 {
    font-family: "Futura Std";
    font-size: 40px;
    font-weight: 500;
}

.main-block-index b {
    font-weight: 300;
}

#block1-index {
    width: 780px;
    height: 400px; /* Hauteur ajustée pour correspondre à celle de block2 */
    background-color: #fffffff0;
    padding-block: 20px;
    padding-inline: 20px;
    color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

#block2-index {
    width: 620px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    height: 400px;
}

.sub-block-index {
    background-color: #fffffff0;
    font-size: 18px;
    padding-block: 20px;
    padding-inline: 20px;
    height: 195px;
    color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

.sub-block-index b {
    font-weight: 500;
    font-size: 20px;
}

@media screen and (max-width: 1500px) {
    #container-index {
        width: 700px;
    }

    .main-block-index {
        margin: 2.5px;
    }

    .main-block-index h2 {
        font-size: 20px;
    }

    #block1-index {
        width: 390px;
        height: 200px; /* Hauteur ajustée pour correspondre à celle de block2 */
        padding-block: 10px;
        padding-inline: 10px;
        border-radius: 2.5px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    }

    #block2-index {
        width: 310px;
        gap: 5px;
        height: 200px;
    }

    .sub-block-index {
        font-size: 9px;
        padding-block: 10px;
        padding-inline: 10px;
        height: 98px;
        border-radius: 2.5px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    }

    .sub-block-index b {
        font-size: 10px;
    }
}

@media screen and (max-width: 700px) {
    #container-index {
        display: flex; /* Organise les éléments en ligne */
        width: 350px;
        justify-content: center; /* Centre les éléments horizontalement */
        align-items: center; /* Centre les éléments verticalement */
        margin: 0 auto; /* Ajoute cette ligne pour centrer le bloc */
    }

    .main-block-index {
        box-sizing: border-box;
        margin: 1.25px;
    }

    .main-block-index h2 {
        font-family: "Futura Std";
        font-size: 10px;
        font-weight: 500;
    }

    #block1-index {
        width: 195px;
        height: 100px; /* Hauteur ajustée pour correspondre à celle de block2 */
        padding-block: 5px;
        padding-inline: 5px;
        border-radius: 1.25px;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    }

    #block2-index {
        width: 155px;
        gap: 2.5px;
        height: 100px;
    }

    .sub-block-index {
        font-size: 4.5px;
        padding-block: 5px;
        padding-inline: 5px;
        height: 49px;
        border-radius: 1.25px;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    }

    .sub-block-index b {
        font-size: 5px;
    }
}

/********************************/
/***** Logo Presentation ********/
/********************************/

.image-text-container {
    height: 150px;
    display: flex; /* Aligne les éléments côte à côte */
    align-items: center; /* Centre les éléments verticalement */
    justify-content: center; /* Centre les éléments horizontalement */
}

.image-text-container img:first-child {
    margin-right: 20px; /* Ajoute de l'espace entre l'image et le texte */
    object-fit: contain; /* Assure que l'image s'adapte à l'espace disponible tout en conservant ses proportions */
    width: 300px; /* Ajoute cette ligne pour que la taille de la première image s'adapte au container */
    height: auto; /* Ajoute cette ligne pour que la hauteur de la première image s'ajuste proportionnellement */
}

.image-text-container img:last-child {
    margin-right: 20px; /* Ajoute de l'espace entre l'image et le texte */
    object-fit: contain; /* Assure que l'image s'adapte à l'espace disponible tout en conservant ses proportions */
    width: 1000px; /* Ajoute cette ligne pour que la taille de la deuxième image s'adapte au container */
    height: auto; /* Ajoute cette ligne pour que la hauteur de la deuxième image s'ajuste proportionnellement */
}

.image-text-container h1 {
    font-family: "Futura Std";
    font-size: 60px;
    font-weight: 300;
}

.image-text-container b {
    font-family: "Futura Std";
    font-size: 70px;
    font-weight: 500;
}

@media screen and (max-width: 1500px) {
    .image-text-container {
        height: 75px;
    }

    .image-text-container img:first-child {
        margin-right: 10px; /* Ajoute de l'espace entre l'image et le texte */
        width: 150px; /* Ajoute cette ligne pour que la taille de l'image s'adapte au container */
    }

    .image-text-container img:last-child {
        margin-right: 10px; /* Ajoute de l'espace entre l'image et le texte */
        width: 500px; /* Ajoute cette ligne pour que la taille de l'image s'adapte au container */
    }

    .image-text-container h1 {
        font-size: 30px;
    }

    .image-text-container b {
        font-size: 35px;
    }
}

@media screen and (max-width: 700px) {
    .image-text-container {
        height: 37.5px;
    }

    .image-text-container img:first-child {
        margin-right: 5px; /* Ajoute de l'espace entre l'image et le texte */
        width: 75px; /* Ajoute cette ligne pour que la taille de l'image s'adapte au container */
    }

    .image-text-container img:last-child {
        margin-right: 5px; /* Ajoute de l'espace entre l'image et le texte */
        width: 250px; /* Ajoute cette ligne pour que la taille de l'image s'adapte au container */
    }

    .image-text-container h1 {
        font-size: 15px;
    }

    .image-text-container b {
        font-size: 17.5px;
    }
}

/********************/
/***** Theme ********/
/********************/

.card {
    background: #000000;
    display: flex; /* Organise les éléments en ligne */
    flex-direction: column; /* Organise les éléments en colonne */
    border-radius: 10px;
    width: 250px;
    height: 320px;
    margin-bottom: 30px;
    margin-inline: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

.card h2 {
    color: #ffffff;
    font-size: 18px;
    padding-inline: 20px;
    margin-top: 20px;
    margin-bottom: 20px; /* Ajoute de l'espace entre le titre et l'image */
    text-align: center; /* Centre le texte horizontalement */
}

.card img {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 240px;
    object-fit: cover;
}

@media screen and (max-width: 1500px) {
    .card {
        border-radius: 5px;
        width: 125px;
        height: 160px;
        margin-bottom: 15px;
        margin-inline: 10px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    }
    .card h2 {
        font-size: 9px;
        padding-inline: 10px;
        margin-top: 10px;
        margin-bottom: 10px; /* Ajoute de l'espace entre le titre et l'image */
    }
    .card img {
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        height: 120px;
    }
}

@media screen and (max-width: 700px) {
    .card {
        border-radius: 2.5px;
        width: 62.5px;
        height: 80px;
        margin-bottom: 7.5px;
        margin-inline: 5px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    }
    .card h2 {
        font-size: 4.5px;
        padding-inline: 5px;
        margin-top: 5px;
        margin-bottom: 5px; /* Ajoute de l'espace entre le titre et l'image */
    }
    .card img {
        border-bottom-right-radius: 2.5px;
        border-bottom-left-radius: 2.5px;
        height: 60px;
    }
}

/**********************/
/***** Mecene ********/
/**********************/

.container-mecene {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 1400px;
    margin: 0 auto;
}

.block-mecene {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    /* background-color: #ffffffe1; 
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);*/
    margin-top: 120px;
    margin-bottom: 20px;
}

.block-mecene img {
    height: 400px;
    border-radius: 5px;
}

@media screen and (max-width: 1500px) {
    .container-mecene {
        max-width: 700px;
    }
    .block-mecene {
        height: 60px;
        /*border-radius: 2.5px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);*/
        margin-top: 60px;
        margin-bottom: 10px;
    }
    .block-mecene img {
        height: 200px;
        border-radius: 2.5px;
    }
}

@media screen and (max-width: 700px) {
    .container-mecene {
        width: 350px;
    }
    .block-mecene {
        height: 40px;
        /*border-radius: 1.25px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);*/
        margin-top: 30px;
        margin-bottom: 5px;
    }
    .block-mecene img {
        height: 100px;
        border-radius: 1.25px;
    }
}

/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/*************************** P R O G R A M M E ********************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/

/************************/
/***** Container ********/
/************************/

.container-programme {
    display: flex;
    max-width: 1000px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.title-programme {
    font-size: 40px;
    font-family: "Futura Std";
    font-weight: 500;
    text-align: center;
    color: #000000;
}

.block-programme {
    width: 100%;
    background-color: #fffffff0;
    padding-block: 20px;
    padding-inline: 40px;
    color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.block-programme h2 {
    font-family: "Futura Std", serif;
    font-size: 28px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.day-programme {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.day-programme b {
    font-weight: 500;
}

.day-programme ul {
    list-style-type: none;
}

.day-programme li {
    display: flex;
    width: 800px;
    margin-block: 10px;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.day-programme li span {
    margin-inline: 20px;
    margin-block: 8px;
}

.day-programme li:hover {
    background-color: #00000017;
}

.day-programme li .time {
    width: 50%;
    text-align: right;
    padding-right: 10px;
    color: #000000;
    font-weight: 300;
}

.day-programme li .description {
    width: 50%;
    text-align: left;
    padding-left: 10px;
    color: #000000;
}

.programme-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    border-radius: 5px;
    padding: 4px;
    max-width: 1400px;
}

.programme-detail img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
}

@media screen and (max-width: 1500px) {
    .container-programme {
        max-width: 500px;
    }

    .title-programme {
        font-size: 20px;
    }

    .block-programme {
        padding-block: 10px;
        padding-inline: 20px;
        border-radius: 2.5px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    }

    .block-programme h2 {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 5px;
        padding-bottom: 2.5px;
    }

    .day-programme li {
        width: 400px;
        margin-block: 5px;
        font-size: 9px;
        border-radius: 2.5px;
    }

    .day-programme li span {
        margin-inline: 10px;
        margin-block: 4px;
    }

    .day-programme li .time {
        padding-right: 5px;
    }

    .day-programme li .description {
        padding-left: 5px;
    }

    .programme-detail {
        margin: 15px auto;
        padding: 2px;
        border-radius: 2.5px;
        max-width: 700px;
    }

    .programme-detail img {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
        border-radius: 5px;
    }
}

@media screen and (max-width: 700px) {
    .container-programme {
        max-width: 250px;
    }

    .title-programme {
        font-size: 10px;
    }

    .block-programme {
        padding-block: 5px;
        padding-inline: 10px;
        border-radius: 1.25px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    }

    .block-programme h2 {
        font-size: 7px;
        margin-top: 5px;
        margin-bottom: 2.5px;
        padding-bottom: 1.25px;
    }

    .day-programme li {
        width: 200px;
        margin-block: 2.5px;
        font-size: 4.5px;
        border-radius: 1.25px;
    }

    .day-programme li span {
        margin-inline: 5px;
        margin-block: 2px;
    }

    .day-programme li .time {
        padding-right: 2.5px;
    }

    .day-programme li .description {
        padding-left: 2.5px;
    }

    .programme-detail {
        margin: 7.5px auto;
        padding: 1px;
        border-radius: 1.25px;
        max-width: 350px;
    }

    .programme-detail img {
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.9);
        border-radius: 2.5px;
    }
}

/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/************************* T A B L E   R O N D E ******************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/

/* Conteneur englobant les intervenants et descriptions */
.table-ronde-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px; /* Espacement entre le cercle et les descriptions */
    max-width: 1400px;
    margin: 0 auto; /* Centrer horizontalement sur la page */
    padding: 20px;
}

/* Intervenants (table ronde) */
.intervenants-tr {
    flex-shrink: 0; /* Empêche le rétrécissement de la table ronde */
}

.circle-container-tr {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.central-image {
    position: absolute;
    width: 500px; /* Taille de l'image centrale */
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1; /* Pour s'assurer que l'image est au-dessus des autres éléments */
}

.central-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Rendre l'image circulaire */
    opacity: 100%;
    box-shadow: 0 0px 32px rgb(255, 255, 255);
}

.intervenant-tr {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease; /* Ajoute une transition pour l'effet de grossissement */
}

.intervenant-tr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ajoute un border-radius pour l'image aussi */
    transition: transform 0.3s ease; /* Ajoute une transition pour l'effet de grossissement */
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.7);
}

.intervenant-tr:hover img {
    transform: scale(
        1.5
    ); /* Grossit l'image et la translate vers le haut lorsqu'on passe la souris dessus */
}

/* Positionner chaque intervenant en cercle */
.intervenant-tr:nth-child(1) {
    transform: rotate(0deg) translate(250px) rotate(0deg);
}

.intervenant-tr:nth-child(2) {
    transform: rotate(51.4deg) translate(250px) rotate(-51.4deg);
}

.intervenant-tr:nth-child(3) {
    transform: rotate(102.8deg) translate(250px) rotate(-102.8deg);
}

.intervenant-tr:nth-child(4) {
    transform: rotate(154.2deg) translate(250px) rotate(-154.2deg);
}

.intervenant-tr:nth-child(5) {
    transform: rotate(205.6deg) translate(250px) rotate(-205.6deg);
}

.intervenant-tr:nth-child(6) {
    transform: rotate(257deg) translate(250px) rotate(-257deg);
}

.intervenant-tr:nth-child(7) {
    transform: rotate(308.4deg) translate(250px) rotate(-308.4deg);
}

/* Descriptions */
.descriptions-tr {
    position: relative; /* Pour que les descriptions soient positionnées par rapport à ce conteneur */
    width: 500px; /* Largeur fixe pour les descriptions */
    height: 400px;
}

#default-description-tr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100px; /* Optionnel : définis une hauteur minimale */
    background-color: #ffffffc3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Chaque description */
.description-tr {
    position: absolute; /* Les descriptions se superposent */
    width: 100%; /* Occupe toute la largeur du conteneur parent */
    min-height: 100px; /* Optionnel : définis une hauteur minimale */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
    opacity: 0; /* Initialement masqué */
    transform: translateY(20px); /* Effet de translation */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Animation lors de l'affichage */
}

.description-tr.show {
    opacity: 1; /* Rendre visible lorsqu'on affiche */
    transform: translateY(0); /* Annuler la translation */
}

.description-tr h2 {
    font-size: 30px;
    font-weight: 400;
    color: #333;
}

.description-tr p {
    font-size: 22px;
    color: #555;
}

@media screen and (max-width: 1500px) {
    /* Conteneur englobant les intervenants et descriptions */
    .table-ronde-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 100px; /* Espacement entre le cercle et les descriptions */
        max-width: 700px;
        margin: 0 auto; /* Centrer horizontalement sur la page */
        padding: 10px;
    }

    /* Intervenants (table ronde) */
    .intervenants-tr {
        flex-shrink: 0; /* Empêche le rétrécissement de la table ronde */
    }

    .circle-container-tr {
        position: relative;
        width: 250px;
        height: 250px;
        margin: 0 auto;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 25px;
    }

    .central-image {
        width: 250px; /* Taille de l'image centrale */
        height: 250px;
    }

    .central-image img {
        box-shadow: 0 0px 16px rgb(255, 255, 255);
    }

    .intervenant-tr {
        position: absolute;
        width: 75px;
        height: 75px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 6px;
        transition: transform 0.3s ease; /* Ajoute une transition pour l'effet de grossissement */
    }

    .intervenant-tr img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%; /* Ajoute un border-radius pour l'image aussi */
        transition: transform 0.3s ease; /* Ajoute une transition pour l'effet de grossissement */
        box-shadow: 0 0px 8px rgb(0, 0, 0, 0.7);
    }

    .intervenant-tr:hover img {
        transform: scale(
            1.5
        ); /* Grossit l'image et la translate vers le haut lorsqu'on passe la souris dessus */
    }

    /* Positionner chaque intervenant en cercle */
    .intervenant-tr:nth-child(1) {
        transform: rotate(0deg) translate(125px) rotate(0deg);
    }

    .intervenant-tr:nth-child(2) {
        transform: rotate(51.4deg) translate(125px) rotate(-51.4deg);
    }

    .intervenant-tr:nth-child(3) {
        transform: rotate(102.8deg) translate(125px) rotate(-102.8deg);
    }

    .intervenant-tr:nth-child(4) {
        transform: rotate(154.2deg) translate(125px) rotate(-154.2deg);
    }

    .intervenant-tr:nth-child(5) {
        transform: rotate(205.6deg) translate(125px) rotate(-205.6deg);
    }

    .intervenant-tr:nth-child(6) {
        transform: rotate(257deg) translate(125px) rotate(-257deg);
    }

    .intervenant-tr:nth-child(7) {
        transform: rotate(308.4deg) translate(125px) rotate(-308.4deg);
    }

    /* Descriptions */
    .descriptions-tr {
        position: relative; /* Pour que les descriptions soient positionnées par rapport à ce conteneur */
        width: 250px; /* Largeur fixe pour les descriptions */
        height: 200px; /* Hauteur fixe pour les descriptions */
    }

    #default-description-tr {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 50px;
        background-color: #ffffffc3;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Chaque description */
    .description-tr {
        position: absolute; /* Les descriptions se superposent */
        width: 100%; /* Occupe toute la largeur du conteneur parent */
        min-height: 50px;
        background-color: #ffffff;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
        opacity: 0; /* Initialement masqué */
        transform: translateY(10px); /* Effet de translation */
        transition: opacity 0.3s ease, transform 0.3s ease; /* Animation lors de l'affichage */
    }

    .description-tr.show {
        opacity: 1; /* Rendre visible lorsqu'on affiche */
        transform: translateY(0); /* Annuler la translation */
    }

    .description-tr h2 {
        font-size: 15px;
        font-weight: 400;
        color: #333;
    }

    .description-tr p {
        font-size: 11px;
        color: #555;
    }
}

@media screen and (max-width: 700px) {
    /* Conteneur englobant les intervenants et descriptions */
    .table-ronde-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px; /* Espacement entre le cercle et les descriptions */
        max-width: 350px;
        margin: 0 auto; /* Centrer horizontalement sur la page */
        padding: 5px;
    }

    /* Intervenants (table ronde) */
    .intervenants-tr {
        flex-shrink: 0; /* Empêche le rétrécissement de la table ronde */
    }

    .circle-container-tr {
        position: relative;
        width: 125px;
        height: 125px;
        margin: 0 auto;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12.5px;
    }

    .central-image {
        width: 125px; /* Taille de l'image centrale */
        height: 125px;
    }

    .central-image img {
        box-shadow: 0 0px 8px rgb(255, 255, 255);
    }

    .intervenant-tr {
        position: absolute;
        width: 37.5px;
        height: 37.5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 3px;
        transition: transform 0.3s ease; /* Ajoute une transition pour l'effet de grossissement */
    }

    .intervenant-tr img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%; /* Ajoute un border-radius pour l'image aussi */
        transition: transform 0.3s ease; /* Ajoute une transition pour l'effet de grossissement */
        box-shadow: 0 0px 4px rgb(0, 0, 0, 0.7);
    }

    .intervenant-tr:hover img {
        transform: scale(
            1.5
        ); /* Grossit l'image et la translate vers le haut lorsqu'on passe la souris dessus */
    }

    /* Positionner chaque intervenant en cercle */
    .intervenant-tr:nth-child(1) {
        transform: rotate(0deg) translate(62.5px) rotate(0deg);
    }

    .intervenant-tr:nth-child(2) {
        transform: rotate(51.4deg) translate(62.5px) rotate(-51.4deg);
    }

    .intervenant-tr:nth-child(3) {
        transform: rotate(102.8deg) translate(62.5px) rotate(-102.8deg);
    }

    .intervenant-tr:nth-child(4) {
        transform: rotate(154.2deg) translate(62.5px) rotate(-154.2deg);
    }

    .intervenant-tr:nth-child(5) {
        transform: rotate(205.6deg) translate(62.5px) rotate(-205.6deg);
    }

    .intervenant-tr:nth-child(6) {
        transform: rotate(257deg) translate(62.5px) rotate(-257deg);
    }

    .intervenant-tr:nth-child(7) {
        transform: rotate(308.4deg) translate(62.5px) rotate(-308.4deg);
    }

    /* Descriptions */
    .descriptions-tr {
        position: relative; /* Pour que les descriptions soient positionnées par rapport à ce conteneur */
        width: 125px; /* Largeur fixe pour les descriptions */
        height: 100px; /* Hauteur fixe pour les descriptions */
    }

    #default-description-tr {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 25px;
        background-color: #ffffffc3;
        padding: 5px;
        border-radius: 2.5px;
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Chaque description */
    .description-tr {
        position: absolute; /* Les descriptions se superposent */
        width: 100%; /* Occupe toute la largeur du conteneur parent */
        min-height: 25px;
        background-color: #ffffff;
        padding: 5px;
        border-radius: 2.5px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
        opacity: 0; /* Initialement masqué */
        transform: translateY(5px); /* Effet de translation */
        transition: opacity 0.3s ease, transform 0.3s ease; /* Animation lors de l'affichage */
    }

    .description-tr.show {
        opacity: 1; /* Rendre visible lorsqu'on affiche */
        transform: translateY(0); /* Annuler la translation */
    }

    .description-tr h2 {
        font-size: 7.5px;
        font-weight: 400;
        color: #333;
    }

    .description-tr p {
        font-size: 6.5px;
        color: #555;
    }
}

/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/************************* I N S C R I P T I O N ******************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/

/************************/
/***** Container ********/
/************************/

.container-inscription {
    display: flex; /* Organise les éléments en ligne */
    width: 1400px;
    justify-content: center; /* Centre les éléments horizontalement */
    align-items: center; /* Centre les éléments verticalement */
    margin: 0 auto; /* Ajoute cette ligne pour centrer le bloc */
}

.title-inscription {
    font-size: 40px;
    font-family: "Futura Std";
    font-weight: 500;
}

@media screen and (max-width: 1500px) {
    .container-inscription {
        width: 700px;
    }

    .title-inscription {
        font-size: 20px;
    }
}

@media screen and (max-width: 700px) {
    .container-inscription {
        width: 350px;
    }

    .title-inscription {
        font-size: 10px;
    }
}

/*********************/
/***** Countdown *****/
/*********************/

.countdown ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding: 0;
    height: 100%; /* Add this line to make the countdown align vertically */
}

.countdown ul li {
    display: flex;
    font-size: 30px;
    font-weight: 200;
    list-style-type: none;
    padding-block: 10px;
    padding-inline: 10px;
    text-transform: uppercase;
    color: #ffffff;
    align-items: center; /* Add this line to align the li vertically */
}

.countdown ul li span {
    display: inline-flex;
    font-size: 30px;
    font-weight: 200;
    color: #ffffff;
    align-items: center; /* Add this line to align the span vertically */
}

@media screen and (max-width: 1500px) {
    .countdown ul li {
        font-size: 15px;
        padding-block: 5px;
        padding-inline: 5px;
    }

    .countdown ul li span {
        font-size: 15px;
    }
}

@media screen and (max-width: 700px) {
    .countdown ul li {
        font-size: 7.5px;
        padding-block: 2.5px;
        padding-inline: 2.5px;
    }

    .countdown ul li span {
        font-size: 7.5px;
    }
}

/************************/
/***** Formulaire *******/
/************************/

.block-inscription {
    width: 100%;
    background-color: #fffffff0;
    padding-top: 20px;
    padding-inline: 40px;
    margin-bottom: 10px;
    color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.block-inscription h1 {
    font-family: "Futura Std", serif;
    font-size: 28px;
    font-weight: 500;
    color: #000000;
}

.block-inscription b {
    font-weight: 500;
}

.block-inscription ul {
    list-style-type: none;
}

.block-inscription li {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1500px) {
    .block-inscription {
        padding-top: 10px;
        padding-inline: 20px;
        margin-bottom: 5px;
        border-radius: 2.5px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    }

    .block-inscription h1 {
        font-size: 14px;
    }
}

@media screen and (max-width: 700px) {
    .block-inscription {
        padding-top: 5px;
        padding-inline: 10px;
        margin-bottom: 2.5px;
        border-radius: 1.25px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    }

    .block-inscription h1 {
        font-size: 7px;
    }
}

/*********************/
/***** Boutton *****/
/*********************/

.button-container {
    display: flex;
    justify-content: center; /* Centre les boutons horizontalement */
    gap: 10px; /* Ajoute de l'espace entre les boutons */
}

.button {
    display: flex;
    justify-content: center; /* Centre les éléments horizontalement */
    align-items: center; /* Centre les éléments verticalement */
    margin-block: 12px;
}

.button-border {
    display: inline-block;
    background-color: white;
    color: #555;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 12px 4px;
    cursor: pointer;
    border: 2px solid #555;
    border-radius: 6px;
    transition: all 0.3s;
}
.button-border:hover {
    color: rgb(255, 255, 255);
    background-color: #000000;
}

.button-border:active {
    transform: scale(0.8);
}

@media screen and (max-width: 1500px) {
    .button {
        margin-block: 6px;
    }
    .button-border {
        padding: 8px 12px;
        font-size: 8px;
        margin: 6px 2px;
        border: 1px solid #555;
        border-radius: 3px;
    }
}

@media screen and (max-width: 700px) {
    .button {
        margin-block: 3px;
    }
    .button-border {
        padding: 4px 6px;
        font-size: 4px;
        margin: 3px 1px;
        border: 0.5px solid #555;
        border-radius: 1.5px;
    }
}

/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/************************* P A R T I C I P A N T S ****************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/

/************************/
/***** Invited speaker **********/
/************************/

.speakers-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 50px;
    justify-content: center;
    width: 900px;
    margin: 0 auto; /* Centrer horizontalement sur la page */
}

.speaker-card {
    position: relative;
    width: 100%; /* Prend tout l'espace de sa colonne */
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
    background-color: #fff;
}

.speaker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-speaker {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
    opacity: 0; /* Initialement caché */
    transform: translateY(100%); /* Cache l'info en dessous */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Transition plus smooth */
}

.speaker-card:hover .info-speaker {
    opacity: 1; /* Affiche le bandeau */
    transform: translateY(0); /* Remonte le bandeau */
}

.name-speaker {
    display: block;
    font-size: 20px;
    font-weight: 400;
}

.more-details-btn-speaker {
    display: none; /* Masqué par défaut */
    background-color: #ffffff;
    box-shadow: 0 0px 4px rgb(253, 253, 253);
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Ajoute une transition */
}

.details-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1000;
    width: 800px;
}

.details-content {
    text-align: center;
}

.close-btn {
    background-color: rgba(20, 17, 99, 0.823);
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

.speaker-card:hover .more-details-btn-speaker {
    display: inline-block;
    transform: scale(1.05); /* Ajoute un léger effet de zoom */
}

/* Animation du bouton au survol */
.more-details-btn-speaker:hover {
    background-color: #f0f0f0;
    transform: scale(1.1); /* Zoom au survol */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition plus fluide */
}

/* Première ligne avec 3 intervenants */
.speaker-card:nth-child(1),
.speaker-card:nth-child(2),
.speaker-card:nth-child(3) {
    grid-column: span 2; /* Chaque intervenant prend 2 colonnes */
}

/* Quatrième intervenant décalé vers la gauche (comme s'il commençait à 1.5) */
.speaker-card:nth-child(4) {
    grid-column: 2 / span 2; /* Positionne le 4e intervenant sur les colonnes 2 et 3 */
    margin-left: -10%; /* Décalage visuel vers la gauche pour simuler la position 1.5 */
}

/* Cinquième intervenant décalé vers la droite (comme s'il commençait à 2.5) */
.speaker-card:nth-child(5) {
    grid-column: 4 / span 2; /* Positionne le 5e intervenant sur les colonnes 4 et 5 */
    margin-right: -10%; /* Décalage visuel vers la droite pour simuler la position 2.5 */
}

/* Adaptation pour les écrans inférieurs ou égaux à 1500px */
@media screen and (max-width: 1500px) {
    .speakers-container {
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 25px; /* Divisé par deux */
        width: 450px; /* Divisé par deux */
    }

    .speaker-card {
        height: 200px; /* Divisé par deux */
        border-radius: 5px;
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5); /* Divisé par deux */
    }

    .info-speaker {
        padding: 5px; /* Divisé par deux */
    }

    .name-speaker {
        font-size: 10px; /* Divisé par deux */
    }

    .more-details-btn-speaker {
        padding: 2.5px 5px; /* Divisé par deux */
        margin-top: 5px;
        border-radius: 2.5px;
        box-shadow: 0 0px 2px rgb(253, 253, 253); /* Divisé par deux */
    }

    .details-popup {
        width: 400px; /* Divisé par deux */
        padding: 10px; /* Divisé par deux */
    }

    .close-btn {
        padding: 5px 10px; /* Divisé par deux */
    }

    /* Ajustements de position des intervenants */
    .speaker-card:nth-child(4) {
        grid-column: 2 / span 2;
        margin-left: -5%; /* Divisé par deux */
    }

    .speaker-card:nth-child(5) {
        grid-column: 4 / span 2;
        margin-right: -5%; /* Divisé par deux */
    }
}

@media screen and (max-width: 700px) {
    .speakers-container {
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 12px; /* Divisé par deux à partir de 1500px */
        width: 225px; /* Divisé par deux à partir de 1500px */
    }

    .speaker-card {
        height: 100px; /* Divisé par deux à partir de 1500px */
        border-radius: 2.5px;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.5); /* Divisé par deux à partir de 1500px */
    }

    .info-speaker {
        padding: 2.5px; /* Divisé par deux à partir de 1500px */
    }

    .name-speaker {
        font-size: 5px; /* Divisé par deux à partir de 1500px */
    }

    .more-details-btn-speaker {
        padding: 1.25px 2.5px; /* Divisé par deux à partir de 1500px */
        margin-top: 2.5px;
        border-radius: 1.25px;
        box-shadow: 0 0px 1px rgb(253, 253, 253); /* Divisé par deux à partir de 1500px */
    }

    .details-popup {
        width: 200px; /* Divisé par deux à partir de 1500px */
        padding: 5px; /* Divisé par deux à partir de 1500px */
    }

    .close-btn {
        padding: 2.5px 5px; /* Divisé par deux à partir de 1500px */
    }

    /* Ajustements de position des intervenants */
    .speaker-card:nth-child(4) {
        grid-column: 2 / span 2;
        margin-left: -2.5%; /* Divisé par deux à partir de 1500px */
    }

    .speaker-card:nth-child(5) {
        grid-column: 4 / span 2;
        margin-right: -2.5%; /* Divisé par deux à partir de 1500px */
    }
}

/************************/
/***** speaker **********/
/************************/

.container-participants {
    display: flex; /* Organise les éléments en ligne */
    width: 1400px;
    justify-content: center; /* Centre les éléments horizontalement */
    align-items: center; /* Centre les éléments verticalement */
    margin: 0 auto; /* Ajoute cette ligne pour centrer le bloc */
}

.title-participants {
    font-size: 40px;
    font-family: "Futura Std";
    font-weight: 500;
}

@media screen and (max-width: 1500px) {
    .container-participants {
        width: 700px;
    }

    .title-participants {
        font-size: 20px;
    }
}

@media screen and (max-width: 700px) {
    .container-participants {
        width: 350px;
    }

    .title-participants {
        font-size: 10px;
    }
}

/************************/
/***** Tableau **********/
/************************/

.table-container {
    width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 5px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.5);
}

.clean-table {
    width: 100%;
    border-collapse: collapse;
}

.clean-table thead {
    background-color: #333;
    color: #fff;
}

.clean-table th,
.clean-table td {
    padding: 12px 15px;
    text-align: left;
}

.clean-table tbody tr {
    background-color: #fffffff0;
}

.clean-table tbody tr a {
    color: #000000;
    text-decoration: none;
}

.clean-table tbody tr:hover {
    background-color: #e5e5e5;
}

.clean-table th {
    font-weight: 500;
    text-align: center;
}

.clean-table td {
    border-bottom: 0.2px solid #000000;
    text-align: center;
}

@media screen and (max-width: 1500px) {
    .table-container {
        width: 700px;
        border-radius: 2.5px;
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
    }

    .clean-table th,
    .clean-table td {
        padding: 6px 7.5px;
    }
}

@media screen and (max-width: 700px) {
    .table-container {
        border-radius: 1.25px;
        width: 350px;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.5);
    }

    .clean-table th,
    .clean-table td {
        padding: 3px 3.75px;
    }
}

/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/************************* C O N T A C T S ************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/
/******************************************************************************************************/

.title-contacts {
    font-size: 40px;
    font-family: "Futura Std";
    font-weight: 500;
}

.map-container {
    margin: 10px auto;
    border: 2px solid #ffffff;
    border-radius: 5px;
    overflow: hidden; /* Cache les éléments qui dépassent du container */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.container-contacts {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: center;
    margin: 0 auto;
}

.contact-block1 {
    width: 100%;
    margin: 20px;
    background-color: #ffffffe9;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.contact-block1 b {
    font-weight: 500;
}

.contact-block {
    flex: 1 1 45%;
    margin: 20px;
    background-color: #ffffffe9;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.contact-block h1 {
    font-family: "Futura Std", serif;
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    border-bottom: 2px solid #989898;
    padding-bottom: 10px;
}

.local-committee {
    display: flex;
    justify-content: space-between;
}

.local-column {
    flex: 1;
    margin: 0 10px;
    padding: 10px;
    border-radius: 5px;
}

.local-column :hover {
    background-color: #e5e5e5;
}

.contact-item {
    margin-top: 5px;
    padding: 20px;
    border-radius: 5px;
}

.contact-item:hover {
    background-color: #e5e5e5;
}

.nom-contact {
    font-family: "Futura Std", serif;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
}

.info-contact {
    font-size: 18px;
    color: #777;
    margin-top: 5px;
}

@media screen and (max-width: 1500px) {
    .title-contacts {
        font-size: 20px;
        font-family: "Futura Std";
        font-weight: 500;
    }

    .map-container {
        margin: 5px auto;
        border: 1px solid #ffffff;
        border-radius: 2.5px;
        overflow: hidden; /* Cache les éléments qui dépassent du container */
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    }

    .map-container iframe {
        width: 100%;
        height: 200px;
        border: 0;
    }

    .container-contacts {
        display: flex;
        flex-wrap: wrap;
        max-width: 500px;
        justify-content: center;
        margin: 0 auto;
    }

    .contact-block1 {
        width: 100%;
        margin: 10px;
        background-color: #ffffffe9;
        border-radius: 2.5px;
        padding: 10px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    }

    .contact-block1 b {
        font-weight: 500;
    }

    .contact-block {
        flex: 1 1 45%;
        margin: 10px;
        background-color: #ffffffe9;
        border-radius: 2.5px;
        padding: 10px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    }

    .contact-block h1 {
        font-family: "Futura Std", serif;
        font-size: 14px;
        font-weight: 500;
        color: #000000;
        margin-bottom: 10px;
        border-bottom: 1px solid #989898;
        padding-bottom: 5px;
    }

    .local-committee {
        display: flex;
        justify-content: space-between;
    }

    .local-column {
        flex: 1;
        margin: 0 5px;
        padding: 5px;
        border-radius: 2.5px;
    }

    .local-column :hover {
        background-color: #e5e5e5;
    }

    .contact-item {
        margin-top: 2.5px;
        padding: 10px;
        border-radius: 2.5px;
    }

    .contact-item:hover {
        background-color: #e5e5e5;
    }

    .nom-contact {
        font-family: "Futura Std", serif;
        font-size: 11px;
        font-weight: 500;
        color: #000000;
    }

    .info-contact {
        font-size: 9px;
        color: #777;
        margin-top: 2.5px;
    }
}

@media screen and (max-width: 700px) {
    .title-contacts {
        font-size: 10px;
        font-family: "Futura Std";
        font-weight: 500;
    }

    .map-container {
        margin: 2.5px auto;
        border: 0.5px solid #ffffff;
        border-radius: 1.25px;
        overflow: hidden; /* Cache les éléments qui dépassent du container */
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    }

    .map-container iframe {
        width: 100%;
        height: 100px;
        border: 0;
    }

    .container-contacts {
        display: flex;
        flex-wrap: wrap;
        max-width: 250px;
        justify-content: center;
        margin: 0 auto;
    }

    .contact-block1 {
        width: 100%;
        margin: 5px;
        background-color: #ffffffe9;
        border-radius: 1.25px;
        padding: 5px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    }

    .contact-block1 b {
        font-weight: 500;
    }

    .contact-block {
        flex: 1 1 45%;
        margin: 5px;
        background-color: #ffffffe9;
        border-radius: 1.25px;
        padding: 5px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    }

    .contact-block h1 {
        font-family: "Futura Std", serif;
        font-size: 7px;
        font-weight: 500;
        color: #000000;
        margin-bottom: 5px;
        border-bottom: 0.5px solid #989898;
        padding-bottom: 2.5px;
    }

    .local-committee {
        display: flex;
        justify-content: space-between;
    }

    .local-column {
        flex: 1;
        margin: 0 2.5px;
        padding: 2.5px;
        border-radius: 1.25px;
    }

    .local-column :hover {
        background-color: #e5e5e5;
    }

    .contact-item {
        margin-top: 1.25px;
        padding: 5px;
        border-radius: 1.25px;
    }

    .contact-item:hover {
        background-color: #e5e5e5;
    }

    .nom-contact {
        font-family: "Futura Std", serif;
        font-size: 5.5px;
        font-weight: 500;
        color: #000000;
    }

    .info-contact {
        font-size: 4.5px;
        color: #777;
        margin-top: 1.25px;
    }
}

/*********************/
/***** Space ********/
/*********************/

.hspace-1 {
    padding-inline: 10px;
}

.hspace-2 {
    padding-inline: 20px;
}

.hspace-3 {
    padding-inline: 30px;
}

.hspace-4 {
    padding-inline: 40px;
}

.hspace-5 {
    padding-inline: 50px;
}

.hspace-6 {
    padding-inline: 60px;
}

.hspace-7 {
    padding-inline: 70px;
}

.hspace-8 {
    padding-inline: 80px;
}

.hspace-9 {
    padding-inline: 90px;
}

.hspace-10 {
    padding-inline: 100px;
}

.hspace-20 {
    padding-inline: 200px;
}

.hspace-30 {
    padding-inline: 300px;
}

.hspace-50 {
    padding-inline: 500px;
}

.hspace-100 {
    padding-inline: 1000px;
}

.vspace_1 {
    padding-top: 30px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_1 {
        padding-top: 15px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_1 {
        padding-top: 7.5px;
    }
}

.vspace_2 {
    padding-top: 60px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_2 {
        padding-top: 30px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_2 {
        padding-top: 15px;
    }
}

.vspace_3 {
    padding-top: 90px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_3 {
        padding-top: 45px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_3 {
        padding-top: 22.5px;
    }
}

.vspace_4 {
    padding-top: 120px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_4 {
        padding-top: 60px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_4 {
        padding-top: 30px;
    }
}

.vspace_5 {
    padding-top: 150px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_5 {
        padding-top: 75px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_5 {
        padding-top: 37.5px;
    }
}

.vspace_6 {
    padding-top: 180px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_6 {
        padding-top: 90px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_6 {
        padding-top: 45px;
    }
}

.vspace_7 {
    padding-top: 210px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_7 {
        padding-top: 105px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_7 {
        padding-top: 52.5px;
    }
}

.vspace_8 {
    padding-top: 240px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_8 {
        padding-top: 120px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_8 {
        padding-top: 60px;
    }
}

.vspace_9 {
    padding-top: 270px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_9 {
        padding-top: 135px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_9 {
        padding-top: 67.5px;
    }
}

.vspace_10 {
    padding-top: 300px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_10 {
        padding-top: 150px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_10 {
        padding-top: 75px;
    }
}

.vspace_20 {
    padding-top: 600px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_20 {
        padding-top: 300px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_20 {
        padding-top: 150px;
    }
}

.vspace_30 {
    padding-top: 900px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_30 {
        padding-top: 450px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_30 {
        padding-top: 225px;
    }
}

.vspace_50 {
    padding-top: 1500px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_50 {
        padding-top: 750px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_50 {
        padding-top: 375px;
    }
}

.vspace_100 {
    padding-top: 3000px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .vspace_100 {
        padding-top: 1500px;
    }
}

@media screen and (max-width: 700px) {
    .vspace_100 {
        padding-top: 750px;
    }
}
