.container_conseil {
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: row;
    position: relative;
}

.container_conseil_session {
    width: 100%;
    height: calc(100vh - 130px);
    display: flex;
    flex-direction: row;
    position: relative;
    gap: 1vh;
}

.conseil_pub {
    width: 10%;
    height: 100%;
}

.conseil_pub img {
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.conseil_wrapper {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
}

.h2titre {
    margin-top: 2vh;
    color: var(--vert);
}

.popup_advertise {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: space-between;
    align-content: center;
    text-align: center;
    flex-direction: row;
    gap: 2vh;
}

.popup_advertise img {
    width: auto;
    height: 100%;
}

.popup_text {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.titre_popup {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.titre_popup i {
    width: 20%;
}

.titre_popup h4 {
    width: 60%;
}

.popup_text p {
    color: var(--vert);
    text-align: justify;
}

.popup_text a {
    text-decoration: none;
    color: var(--vert);
    width: 100%;
    text-align: left;
    font-size: medium;
    font-weight: bold;
    position: relative;
}

.popup_text a span {
    position: absolute;
    content: "";
    width: 0px;
    height: 2px;
    background-color: var(--vert);
    bottom: 3px;
    left: 10px;
    z-index: 1;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.popup_text a:hover span {
    width: 550px;
}

.icon_popup {
    font-size: 30px;
    color: red;
    transition: all ease-in-out 2s;
    animation: flash 2s ease-in-out infinite;
    -webkit-animation: flash 2s ease-in-out infinite;
    -webkit-transition: all ease-in-out 2s;
    -moz-transition: all ease-in-out 2s;
    -ms-transition: all ease-in-out 2s;
    -o-transition: all ease-in-out 2s;
}

@keyframes flash {
    0% {
        font-size: 30px;
    }
    50% {
        font-size: 50px;
    }
    100% {
        font-size: 30px;
    }
}

.container_row_conseil {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 2vh;
    margin-bottom: 2vh;
    justify-content: center;
}

.row_conseil {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
    border: solid 2px var(--vert);
    background-color: var(--vert);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    padding: 2vh;
}

.row_conseil h3 {
    text-align: center;
}

.row_conseil h5 {
    text-align: center;
}

/* Responsive pages conseils /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Responsive pages conseils /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Responsive pages conseils /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media all and (max-width: 992px) {
    .conseil_wrapper {
        width: 100%;
    }
    .popup_advertise {
        flex-direction: column;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .popup_advertise img {
        width: 70%;
    }

    .popup_text {
        width: 90%;
    }

    .container_row_conseil {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: auto;
    }
    .row_conseil {
        width: 90%;
    }

    .row_conseil:last-child {
        margin-bottom: 20px;
    }
    .conseil_pub {
        display: none;
    }
}
