@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

:root {
    --gris-pal: rgb(233 233 233 / 84%);
    --gris-texte: #707070;

    --blanc: #ffff;
    --black: #000;
    --gris-pal: #ebebeb;
    --texte-1: rgb(184, 184, 184);
    --texte-2: #bbbbbb;
    --btn-border: #ccc;
    --inp-border: rgb(173, 173, 173);
}

header {
    position: sticky;
    width: 100%;
    height: 7vh;
    top: 0;
    left: 0;
    background: #cdcdcd;
    box-shadow: inset 0px -1px 0px #c5c5c6;
    color: var(--blanc);
    z-index: 1;
}

header nav .container {
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 5%;
}

header nav .container .logo {
    font-size: 2rem;
    display: flex;
    align-items: center;
}

header nav .container .logo a {
    text-decoration: none;
    padding: 5px;
    font-size: 1.5rem;
    color: var(--blanc);
}

header nav .logo a::after {
    content: "";
    background-color: var(--blanc);
    height: 3px;
    width: 0%;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
    transition: 0.3s;
}

header nav .logo a:hover::after {
    width: 100%;
}

header nav .container .toggle {
    display: none;
}

header nav .container ul{
    list-style: none;
    display: flex;
    align-items: center;
}

header nav .container ul li{
    padding: 10px 20px;
}

header nav .container .menu li a {
    color: var(--blanc);
    text-decoration: none;
}

header nav ul li a::after {
    content: "";
    background-color: var(--blanc);
    height: 3px;
    width: 0%;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
    transition: 0.3s;
}

header nav ul li a:hover::after {
    width: 100%;

}

header nav ul li button a::after {
    content: "";
    background-color: rgba(0, 0, 0, 0);
}

header nav .container .menu .profile {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
    margin-left: 20px;
    color: var(--gris-texte);
}

header nav .container .menu .profile .id-profil{
    position: relative;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

header nav .container .menu .profile .id-profil span{
    position: absolute;
    color: var(--gris-texte);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-weight: 600;
}

header nav .container .profile .user{
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-right: 20px;
    margin-left: 5px;
    color: var(--blanc);
    transition: 0.5s;
}

header nav .container .menu .profile .user_id{
    display: none;
}

header nav .container .menu .button{
    display: flex;
    align-items: center;
}

header nav .container .menu .btn {
    background-color: var(--texte-2);
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    color: var(--blanc);
    border: 2px solid var(--inp-border);
    cursor: pointer;
    transition: 0.3s;
}

header nav .container .menu .btn:hover {
    border: 1;
    background-color: var(--texte-1);
    color: var(--texte-2);
    border: 2px solid var(--blanc);
}

header nav .container .menu .btn-secondary {
    background: transparent;
    border: 2px solid var(--blanc);
    color: var(--texte-2);
    cursor: pointer;
}

header nav .container .menu .btn-secondary:hover {
    background-color: var(--texte-1);
    border: 2px solid var(--inp-border);
}

/* ########################################## CONTENT ###################################### */
.content {
    padding: 30px 0px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .first {
    position: fixed;
    width: 100%;
    background: white;
    z-index: 1;
}

.second{
    margin-top: 120px;
}

.content .presentation {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.content .presentation .dateHeur {
    display: none;
}

.content .presentation .group-filtre .filtre input[type="search"] {
    width: 400px;
    height: 33px;
    border: 1px solid var(--btn-border);
    padding: 10px;
    border-radius: 15px;
}

.content .presentation .group-filtre .filtre input[type="search"]:focus {
    outline: none;
    border: 1px solid var(--inp-border);
}

.content h3 {
    font-size: 1.3rem;
    color: var(--texte-1);
    margin-bottom: 7px;
}

.content .description {
    text-align: center;
    width: 100%;
    background-color: var(--gris-pal);
    margin: 15px 0px;
    padding: 6px;
    position: sticky;
}

.content .description p{
    color: var(--gris-texte);
}

.content .description h2 {
    font-weight: 600;
    color: var(--texte-2);
    font-size: 1.4rem;
}

/* ########################################## CONTENT ARTICLE ###################################### */
/* 
    ######################################################################################### 
    ########################################### LEFT ####################################### 
*/

.second .corps-articles {
    width: 70%;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.second .corps-articles .left {
    width: 69%;
    padding: 10px;
    margin-top: -20px;
}

.second .corps-articles .left .list-articles .article {
    padding: 8px;
    display: flex;
    align-items: stretch;
    border-bottom: solid 2px var(--gris-pal);
    margin-bottom: 15px;
    border-left: solid 1px var(--gris-pal);
    border-radius: 5px;
    justify-content: space-between;
    transition: 0.3s;
}

.second .corps-articles .left .list-articles .article:hover {
    -webkit-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
}

.second .corps-articles .left .list-articles .article .card-article {
    position: relative;
    width: 100% !important;
    margin-left: 15px;
}

.second .corps-articles .left .list-articles .article img {
    max-width: 180px;
    max-height: 180px;
    margin-bottom: 70px;
}

.second .corps-articles .left .list-articles .article .grp-img {
    position: relative;
}

.second .corps-articles .left .list-articles .article .peys-categorie {
    position: absolute;
    bottom: 0;
}

.second .corps-articles .left .list-articles .article .card-article h3 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gris-texte);
    text-decoration: none;
}

.second .corps-articles .left .list-articles .article .card-article .body-article .titre-art {
    display: flex;
    justify-content: space-between;
    padding: 3px;
    border-bottom: solid 2px var(--gris-pal);
    position: relative;
    margin-bottom: 10px;
}

.second .corps-articles .left .list-articles .article .card-article .body-article .group-btn {
    display: flex;
    font-size: 1.2rem;
}

.second .corps-articles .left .list-articles .article .card-article .body-article .group-btn i {
    padding: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.second .corps-articles .left .list-articles .article .card-article .body-article .group-btn i:hover {
    width: 30px;
    color: var(--gris-texte);
    border-radius: 5px;
}

.second .corps-articles .left .list-articles .article .card-article .body-article small {
    color: #929292;
}

.second .corps-articles .left .list-articles .article .card-article .desc-art {

    margin: 10px 0px;
    padding-bottom: 5px;
    border-bottom: solid 1px var(--gris-pal);
    font-size: 14px;
}

.second .corps-articles .left .list-articles .article .card-article .pied-art {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #929292;
}

.second .corps-articles .left .list-articles .article .card-article .pied-art .like {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75px;
    display: flex;
    justify-content: space-evenly;
    border: solid 1px var(--gris-pal);
    padding: 3px;
    border-radius: 7px;
}

.second .corps-articles .left .list-articles .article .card-article .pied-art .like i {
    font-size: 1.5rem;
    cursor: pointer;
    color: #2e2e2e !important;
    transition: 0.1s;
}

.second .corps-articles .left .list-articles .article .card-article .pied-art .like i:hover {
    font-size: 1.6rem;
    color: #929292 !important;
}

/* 
    ######################################################################################### 
    ########################################### RIGHT ####################################### 
*/

.second .corps-articles .right {
    width: 30%;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
}

.second .corps-articles .right .widget {
    position: fixed;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: solid 1px var(--gris-pal);

}

.second .corps-articles .right .widget .categorie {
    margin-bottom: 10px;
}

.second .corps-articles .right .widget h3 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--texte-2);
    text-decoration: none;
    font-size: 1.2rem;
}

.second .corps-articles .right .widget .dateHeur {
    width: 260px;
    border-bottom: solid 1px var(--btn-border);
    color: var(--gris-texte);
    padding-bottom: 6px;
    margin-bottom: 5px;
}

/* ########################################## RIGHT WIDGET CATEGORIE ###################################### */
.second .corps-articles .right .widget .categorie .list-categories {
    width: 290px;
    padding: 2px 10px;
}

.second .corps-articles .right .widget .categorie .list-categories li {
    display: block;
    width: 50%;
    float: left;
}

.second .corps-articles .right .widget .categorie .list-categories li a {
    display: block;
    color: #555;
    text-decoration: none;
    border: solid 1px #ededed;
    margin: 2px;
    text-align: center;
    transition: 0.3s;
}

.second .corps-articles .right .widget .categorie .list-categories li a:hover {
    background-color: #d1d1d1;
    color: #000;
}

/* ########################################## RIGHT WIDGET DERNIERE ARTICLE ###################################### */

.second .corps-articles .right .widget .publication {
    margin-bottom: 10px;
}

.second .corps-articles .right .widget .publication .der-publication .der-article {
    padding: 2px 10px;
    box-shadow: 5px rgba(0, 0, 0, 0.2);
}

.second .corps-articles .right .widget .publication .der-publication .der-article li {
    display: block;
    width: 50%;

}

.second .corps-articles .right .widget .publication .der-publication .der-article li p {
    width: 264px !important;
    padding: 2px 10px;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    border: solid 1px #ededed;
    margin: 2px;
    transition: 0.3s;
}

.second .corps-articles .right .widget .publication .der-publication .der-article li p:hover {
    background-color: #d1d1d1;
    color: #000;
}

/* ########################################## RIGHT WIDGET ANNE ###################################### */
.second .corps-articles .right .widget .archive .anne {
    width: 290px;
    padding: 2px 10px;
    box-shadow: 5px rgba(0, 0, 0, 0.2);
}

.second .corps-articles .right .widget .archive .anne h4 {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gris-texte);
    text-decoration: none;
}

.second .corps-articles .right .widget .archive .anne .anne-art .list-anne li {
    display: block;
    width: 50%;
    float: left;
}

.second .corps-articles .right .widget .archive .anne .anne-art .list-anne li p {
    display: block;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    border: solid 1px #ededed;
    margin: 2px;
    text-align: center;
    transition: 0.3s;
}

.second .corps-articles .right .widget .archive .anne .anne-art .list-anne li p:hover {
    background-color: #d1d1d1;
    color: #000;

}

/* ########################################## ORVELAY ###################################### */

.overlay {
    background: #000000a1;
    color: white;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 15%;
    opacity: 0.8;
}

.footer {
    background-color: #cdcdcd;
    padding: 8px;
    color: var(--blanc);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

/*
    ################################################################################################ 
     ######################################### PAGE INSCRIPTION ###################################
*/

.tete{
    margin-top: -40px;
}

.form{
    margin-top: -45px;
}

.form .box-content {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
}

.form .box-content .succes{
    display: none;
    width: 100%;
    text-align: center;
    background-color: #d1ffd1;
    padding: 5px;
    margin-bottom: 8px;
    color: green;
    border-radius: 5px;
}

.form .box-content .formulaire {
    width: auto;
    padding: 10px 30px;
    text-align: center;
    border-radius: 5px;
    -webkit-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
}

.form .box-content .formulaire .form-group {
    margin-bottom: 10px;
}

.form .box-content .formulaire label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    float: left;
    color: var(--texte-2);
}

.form .box-content .formulaire input[type="text"], select {
    padding: 5px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    /* border: 1px solid rgb(180, 180, 180); */
}

.form .box-content .formulaire .anregistre{
    width: 100%;
    padding: 4px;
    border-radius: 9px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--texte-1);
    border: solid 1px darkgrey;
    margin-top: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.form .box-content .formulaire .anregistre:hover{
    background-color: var(--gris-pal);
    color: var(--gris-texte);
    border: 1px solid var(--btn-border);
}

/*
    ################################################################################################ 
     ######################################### PAGE POSTULANTS ###################################
*/

.second .corps-articles .left .formulaire{
    padding: 20px 40px;
    color: var(--gris-texte);
    border-radius: 5px;
    -webkit-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
}

.second .corps-articles .left .formulaire h2{
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.second .corps-articles .left .formulaire .separateur{
    width: 100%;
    background-color: var(--gris-pal);
    height: 2px;
    margin-bottom: 20px;
}

.second .corps-articles .left .formulaire form .col-3{
    display: flex;
    justify-content: space-between;
}

.second .corps-articles .left .formulaire form .col-2{
    display: flex;
    justify-content: space-between;
}

.second .corps-articles .left .formulaire form .col-i{
    width: 32%;
}

.second .corps-articles .left .formulaire form .col{
    width: 49%;
}

.second .corps-articles .left .formulaire form span{
    color: red;
}

.second .corps-articles .left .formulaire form input, select{
    width: 100%;
    margin-bottom: 8px;
    height: 30px;
    border-radius: 5px;
    border: solid 1px #b3b3b3;
    outline-color: rgb(209, 209, 209);
    padding: 0px 8px;
}

.second .corps-articles .left .formulaire form textarea{
    width: 100%;
    margin-bottom: 10px;
    height: 70px;
    border-radius: 5px;
    border: solid 1px #b3b3b3;
    padding: 3px 10px;
    resize: none;
    outline-color: rgb(209, 209, 209);
}

.second .corps-articles .left .formulaire .button .btn{
    width: 110px;
    font-weight: 600;
    color: var(--gris-texte);
    padding: 5px;
    border-radius: 5px;
    border: solid 1px #b3b3b3;
    cursor: pointer;
}

.second .corps-articles .left .formulaire .button .emvoye:hover{
    background-color: rgb(85, 170, 85);
    color: var(--gris-pal);
    border: solid 1px #b3b3b3;
}

.second .corps-articles .left .formulaire .button .anuler:hover{
    background-color: #f18787;
    color: var(--gris-pal);
    border: solid 1px #a7a3a3;
}

.second .corps-articles .left .succes-sol{
    display: none;
    width: 100%;
    text-align: center;
    background-color: #d1ffd1;
    padding: 5px;
    margin-bottom: 8px;
    color: green;
    border-radius: 5px;
}

.content .box-content .formulaire .err-modepasse{
    display: none;
    width: 100%;
    text-align: center;
    background-color: #f0c6c6;
    padding: 3px;
    margin-bottom: 8px;
    color: red;
    border-radius: 5px;
}

/*
    ################################################################################################ 
    ############################################ PAGE CONTACT ######################################
*/

.second .corps-articles .right .widget #map{
    width: 100%;
    height: 200px;
    padding: 10px;
}

.second .corps-articles .right .widget .contact{
    padding: 10px;
}

.second .corps-articles .right .widget .contact p span{
    font-size: 14px;
    color: var(--gris-texte);
}

/* ########################################## MODAL LIRE LA VIDEO ###################################### */
.modal-video {
    background: #000000b5;
    color: white;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 15%;
}

.second .video {
    position: relative;
    background-color: white;
    width: 900px;
    height: auto;
    margin: 0 auto;
    margin-top: -150px;
    padding: 40px 20px;
    border-radius: 5px;
}

.second .video .ferme {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 27px;
    margin-top: 13px;


}

.second .video .ferme-modal {
    color: var(--gris-texte);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.second .video .ferme-modal:hover {
    color: #2e2e2e;
    font-size: 1.6rem;

}

.second .video .page-video .corp-page-video {
    width: 100%;
    padding: 10px 30px;
    margin-top: 10px;
    border: solid 1px var(--gris-pal);
    border-radius: 5px;
}

.second .video .page-video .corp-page-video h3 {
    text-align: left;
    font-weight: 500;
    color: var(--gris-texte);
    margin-bottom: 10px;
}

.second .video .page-video .corp-page-video .pied-video {
    color: var(--gris-texte);
    margin-top: 10px;
    padding: 10px;
    text-align: left;
    border-top: solid 1px var(--gris-pal);
}

.second .video .page-video .corp-page-video .pied-video p {
    display: flex;
    justify-content: space-between;
}

/* ################################################################################################ 
   ########################################## VERTION TABLETE & DESKTOP ###################################### 
   ########################################## VERTION 1.0.0 ####################################### 
   ################################################################################################ 
*/

@media screen and (max-width: 1200px) {

    /* ########################################## MENU ###################################### */
    header {
        width: 100%;
        background: #ababab;
        height: 8vh;
        border-bottom: solid 2px #c7c7c7;
    }

    header nav .container {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px;
    }

    header nav .container .toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        position: relative;
        z-index: 20;
    }

    header nav .container ul li a::after {
        content: "";
        background-color: rgb(255, 255, 255);
        height: 3px;
        width: 0%;
        display: block;
        border-radius: 5px;
        margin: 0 auto;
        transition: 0.3s;
    }

    header nav .container ul li a:hover::after {
        width: 100%;

    }

    header nav .container .logo {
        position: relative;
        z-index: 20;
    }

    .ouvrir {
        display: block;
    }

    .fermer {
        display: none;
    }

    .open .ouvrir {
        display: none;
    }

    .open .fermer {
        display: block;
    }

    .menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ababab;
        flex-direction: column;
        padding: 5rem;
        justify-content: space-around;
        transform: translateX(-100%);
        transition: transform 1s;
        z-index: 1;
    }

    header nav .container .menu {
        display: flex;
        list-style: none;
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
    }

    header .first {
        z-index: 0;
    }

    .menu li a {
        font-size: 1.2rem;
    }

    .btn {
        margin-bottom: 20px;
    }

    .open .menu {
        transform: translateX(0);
    }

    header nav .container .menu .button {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .content .presentation {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }

    .second .corps-articles {
        width: 100% !important;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        /* margin-top: 50px; */
        padding: 15px;
    }

    .second .corps-articles .left .list-articles .article .card-article h3 {
        font-size: 1.3rem;
    }

    .content .presentation .dateHeur {
        display: block;
        color: var(--gris-texte);
    }

    .second .corps-articles .right .widget .dateHeur {
        display: none;
    }

    .second .corps-articles .left {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
    }

    .second .corps-articles .right {
        position: inherit;
        width: 100%;
        padding: 10px;
    }

    .second .corps-articles .right .widget {
        position: relative;
        align-items: center;
        margin-bottom: 20px;
    }

    .second .corps-articles .right .widget .categorie .list-categories {
        width: 100%;
        padding: 2px 10px;
    }

    .content .modal-video {
        padding: 10px;
        padding-top: 47%;
    }

    .content .modal-video .video {
        width: 100%;
        margin-top: -260px
    }

    .content .modal-video .video .corp-page-video {
        width: 100%;
        padding: 5px 10px;
    }

    .second .video .page-video .corp-page-video h3 {
        font-size: 1.2rem;
    }

    .second .corps-articles .right .widget #map{
        width: 100%;
        height: 200px;
        padding: 10px;
        text-align: center;
    }
}


/* ################################################################################################ 
   ########################################## VERTION MOBILE ###################################### 
   ########################################## VERTION 1.0.0 ####################################### 
   ################################################################################################ 
*/

@media screen and (max-width: 767.98px) {

    /* ########################################## MENU ###################################### */
    header {
        width: 100%;
        background: #ababab;
        height: 8vh;
        border-bottom: solid 2px #c7c7c7;
    }

    header nav .container {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px;
    }

    header nav .container .toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        position: relative;
        z-index: 20;
    }

    header nav .container ul li a::after {
        content: "";
        background-color: rgb(255, 255, 255);
        height: 3px;
        width: 0%;
        display: block;
        border-radius: 5px;
        margin: 0 auto;
        transition: 0.3s;
    }

    header nav .container ul li a:hover::after {
        width: 100%;

    }

    header nav .container .logo {
        position: relative;
        z-index: 20;
    }

    .ouvrir {
        display: block;
    }

    .fermer {
        display: none;
    }

    .open .ouvrir {
        display: none;
    }

    .open .fermer {
        display: block;
    }

    .menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ababab;
        flex-direction: column;
        padding: 5rem;
        justify-content: space-around;
        transform: translateX(-100%);
        transition: transform 1s;
        z-index: 1;
    }

    header nav .container .menu {
        display: flex;
        list-style: none;
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
    }

    .menu li a {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 1.3rem;
    }

    .open .menu {
        transform: translateX(0);
    }

    header nav .container .menu .button {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    /* ########################################## CONTENT ###################################### */

    .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 13px 0px 5px;
    }

    .content h3 {
        font-size: 1.3rem;
        color: var(--texte-1);
        margin-bottom: 7px;
    }

    header .first {
        z-index: 0;
    }

    .content .presentation {
        position: relative;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px;
        flex-direction: column;
    }

    .content .presentation .dateHeur {
        display: block;
        color: var(--gris-texte);
    }

    .content .presentation .group-filtre .filtre input[type="search"] {
        width: 350px;
        height: 32px;
        border: 1px solid var(--btn-border);
        padding: 10px;
        border-radius: 15px;
    }

    .content .description {
        text-align: center;
        width: 100%;
        background-color: var(--gris-pal);
        margin: 10px 0px;
        padding: 10px;
        position: sticky;
    }

    .content .description h2 {
        font-weight: 500;
        color: var(--texte-2);
    }
    
    .second .corps-articles .left .formulaire {
        margin-top: -75px;
    }

    /* 
    ######################################################################################### 
        ########################################### RIGHT CONTENT CORPS ####################################### 
    */

    .second .corps-articles {
        width: 100% !important;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: 55px;
        padding: 15px;
    }

    /* ########################################## LEFT ###################################### */
    .second .corps-articles .left {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
        margin-top: 5px;
    }

    .second .corps-articles .left .list-articles .article {
        padding: 8px;
        display: flex;
        border-bottom: solid 2px var(--gris-pal);
        margin-bottom: 15px;
        border-left: solid 1px var(--gris-pal);
        border-radius: 5px;
        transition: 0.3s;
        flex-direction: column;
        align-items: center;
    }

    .second .corps-articles .left .list-articles .article img {
        max-width: 100% !important;
        max-height: 100%;
        margin-bottom: 3px;
    }

    .second .corps-articles .left .list-articles .article .grp-img {
        padding: 15px;
    }

    .second .corps-articles .left .list-articles .article .peys-categorie {
        position: inherit;
        bottom: 0;
        display: flex;
        justify-content: space-between;
    }

    .second .corps-articles .left .list-articles .article .card-article h3 {
        font-size: 18px;
    }

    .second .corps-articles .left .list-articles .article .card-article .pied-art .like {
        margin-right: 12px;
    }


    /* ########################################## RIGHT ###################################### */
    .second .corps-articles .right {
        position: inherit;
        width: 100%;
        padding: 10px;
    }

    .second .corps-articles .right .widget {
        position: relative;
        align-items: center;
        margin-bottom: 20px;
    }

    .second .corps-articles .right .widget .dateHeur {
        display: none;
    }

    .second .corps-articles .right .widget .categorie {
        text-align: center;
    }

    .second .corps-articles .right .widget .categorie .list-categories {
        width: 100%;
        padding: 2px 10px;
    }

    .second .corps-articles .right .widget .archive {
        width: 100%;
        text-align: center;
    }

    .second .corps-articles .right .widget .archive .anne {
        width: 100%;
        text-align: center;
    }

    .overlay {
        padding-top: 60%;
    }

    /* ########################################## MODAL LIRE LA VIDEO ###################################### */

    .content .modal-video {
        padding: 10px;
        padding-top: 47%;
    }

    .content .modal-video .video {
        width: 100%;
        margin-top: -150px
    }

    .content .modal-video .video .corp-page-video {
        width: 100%;
        padding: 5px 10px;
    }

    .second .video .page-video .corp-page-video h3 {
        font-size: 1.2rem;
    }


    /*
        ################################################################################################ 
        ######################################### PAGE INSCRIPTION ###################################
    */

    .tete {
        margin-top: -17px;
    }

    .second .box-content {
        margin-top: 60px;
        width: 100%;
        padding: 0px 30px;
    }
    
    .form .box-content {
        width: 100%;
        margin-top: 10px;
    }

    .form .box-content .formulaire {
        width: 100%;
        padding: 10px 30px;
        text-align: center;
        border-radius: 5px;
        -webkit-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
    }

    /*
        ################################################################################################ 
        ######################################### PAGE INSCRIPTION ###################################
    */

    .second .corps-articles .left .formulaire form .col-3, .col-2{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .second .corps-articles .left .formulaire form .col-i, .col{
        width: 100% !important;
    }

    .second .corps-articles .left .formulaire .button{
        display: flex;
        justify-content: space-around;
    }

    .second .corps-articles .left .formulaire .button .btn {
        width: 40% !important;
        font-weight: 500;
        font-size: 1rem;
    }

}