/* Circuit */
.line {
    margin-top: 50px;
    border: 8px solid #00bfff;
}

/* En savoir plus */

#container_apropos {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: #00bfff;
    color: white;
}

.cards_apropos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.icon i {
    font-size: 20pt;
}

.sujet {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sujet,
.title_savoirplus {
    display: flex;
    justify-content: center;
  /*   margin-left: 30px; */
    width: 100%;
    margin: 0;
    font-weight: bold;
    font-style: italic;
    font-size: 32pt;
}

.title_savoirplus {
    width: 40%;
}

.first_part {
    color: #FFBD59;
}

.second_part {
    font-size: 28pt;
    color: #EAEE56;
}

.third_part {
    color: #75E63F;
    font-size: 34pt;
}

.text_savoirplus {
    width: 80%;
    color: white;
    font-size: 18pt;
    line-height: 35px;
    text-align: center;
}

.savoirplus {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0px;
    background-color: #1866a1;
}

.choose {
    display: flex;
    flex-direction: row;
    margin-top: 110px;
    background-color: #1866a1;
}

.bulle_title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #54AFE6;
    width: 400px;
    padding: 30px;
    height: 450px;
    border-radius: 0% 11% 15% 0% / 25% 56% 44% 25%;
}

.bulle_title h1 {
    margin: 0;
    font-size: 32pt;
    text-align: center;
}

.title_choose {
    color: #EAEE56;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
}

.text_choose {
    color: white;
    font-weight: bold;
}

.info_choose {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 60px;
    padding: 15px;
}

/* Cookies */

#cookie-notification {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: -300px;
    /* Commence à l'extérieur de l'écran */
    background-color: #f5deb3;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: slide-in 1.5s;
    right: 20px;
    width: 300px;
    /* Ajoute une transition fluide */
}

#cookie-notification.none {
    /* Position finale, à l'intérieur de l'écran */
    animation: slide-out 1.5s;
    right: -350px;
}

#cookie-notification p {
    margin: 0;
}

#cookie-notification #cookie-accept {
    margin-top: 10px;
    background-color: #00bfff;
    border: none;
    height: 30px;
    width: auto;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-notification a {
    margin-left: 10px;
    text-decoration: none;
    color: black;
}

#text_cookie {
    display: flex;
    flex-direction: row;
}

#text_cookie p {
    margin-left: 10px;
}

.header_cookies {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.form_cookie {
    height: 45px;
    margin-bottom: 0;
}

img.captcha {
    margin-bottom: 45px; /* ou la valeur que vous souhaitez */
}

@media screen and (max-width: 1530px) {
    .savoirplus {
        flex-direction: column;
    }

    .cards_apropos {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 955px) {
    .choose {
        display: flex;
        flex-direction: column;
    }

    .bulle_title {
        color: white;
        width: 100%;
        padding-top: 60px;
        padding-bottom: 60px;
        padding-right: 0;
        padding-left: 0;
        height: auto;
        border-radius: 0;
    }

    .info_choose {
        margin-left: 0;
        padding: 60px;
    }
}


@media screen and (max-width: 510px) {
    .sujet {
        flex-direction: column;
        margin: 0;
    }

    .title_savoirplus {
        margin: 0;
        margin-top: 15px;
        width: 90%;
    }

    .text_savoirplus {
        margin: 0;
        margin-top: 15px;
    }
}