@import url('https://fonts.googleapis.com/css2?family=Pavanam&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');
:root{
    --color-blue: #1B2331;
    --color-red: #FC361D;
    --color-white: #fff;
    --color-black: #000;
}
*{
    box-sizing: border-box;
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Pavanam', sans-serif;
    scroll-behavior: smooth;
}
html, body{
    scroll-behavior: smooth;
}
h1,h2,h3,h4,h5,h6,a,b,button{
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}
a.red{
    font-family: 'Pavanam', sans-serif;
    color: var(--color-red);
}
.logo{
    cursor: pointer;
}
#breadCrumb{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
#breadCrumb > span{
    margin: 0 10px;
}
#breadCrumb > a {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-black);
}
p.red{
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-red);
}
nav{
    background: var(--color-blue);
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
nav > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
nav > div > svg{
    margin-right: 30px;
    height: 30px;
}
nav > div > a > svg{
    height: 30px;
}
nav > div > ul {
    display: flex;
    flex-direction: flex-start;
    align-items: center;
}
nav > div > ul >li {
    list-style-type: none;
    margin: 0 10px;

}
nav > div > ul >li > a.active { 
    border-bottom: 2px solid var(--color-red);
}
nav > div > ul > li > a{
    text-decoration: none;
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
}
#editMode{
    padding: 5px 10px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: var(--color-red);
    color: var(--color-white);
    border-radius: 5px;
    font-weight: 600;
}
footer{
    width: 100%;
    background: var(--color-blue);
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
footer > a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
}
footer > p {
    color: var(--color-white);
    font-size: 0.9rem;
}
#footerGeo{
    width: 100%;
    margin-bottom: -6px;
}
#footerMobileGeo{
    width: 100%;
    margin-bottom: -6px;
    display: none;
}
#home{
    display: flex; 
    height: 90vh;
}
.content{
    margin-bottom: -20px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    width: 100%;
}
.content > h1{
    font-size: 2.5rem;
    margin-top: 30px;
    color: var(--color-blue);
}
.paddingContent{
    padding: 30px 20px;
}
.content > svg.stars{
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
}
#home > div {
    width: 50%;
    height: 100%;
}
#home > div:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 20px;
}
#home > div:nth-child(1) > h1{
    font-size: 3rem;
    line-height: 3.2rem;
}
#home > div:nth-child(1) > p{
    margin-top: 30px;
}
#home > div:nth-child(2){
    background: url('../img/backgroundheader.png') center center / cover;
    z-index: -1;
}
.groupBtn{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}
.btn{
    background: none;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    cursor: pointer;
    outline: none;
    padding: 10px 30px;
    margin-right: 50px;
    position: relative;
    transition: all 0.2s ease;
    width: 150px;
}
.btn::after{
    content: "";
    background: var(--color-red);
    height: 4px;
    width: 40px;
    position: absolute;
    top: calc(50% - 2px);
    right: -20px;
    transition: all 0.2s ease;
}
.btn:hover{
    padding: 10px 5px !important;
}
.btn:hover::after{
    right: 5px !important;
}
.card{
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 20px 20px 0;
}
.card::after{
    content: "";
    background: var(--color-blue);
    width: 100%;
    position: absolute;
    height: 40%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    top: 0;
    left: 0;
}
.card > .imgArea{
    border-radius: 50%;
    width: 140px;
    height: 140px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 10;
    margin-top: 50px;
}
.card > .action {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10;
}
.card > .action > .icon{
    width: 20px;
    height: 20px;
}
.card > .action:nth-child(2){
    top: 50px;
}
.card > .action:nth-child(3){
    top: 120px;
    right: 17px;
}
.card > .action:nth-child(4){
    top: 80px;
    right: 18px;
}
.card > .action:nth-child(3) > .icon{
    width: 25px;
    height: 25px;
}
.card > .action:nth-child(4) > .icon{
    width: 25px;
    height: 25px;
}
.card > .card-title{
    margin-top: 10px;
}
.row{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}
#docs > #layer{
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
#docs > ul > li > a > .icon {
    width: 10px;
    margin-left: 10px;
}
#docs > ul > li > a  {
    color: var(--color-blue);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#docs > ul > li {
    list-style-type: none;
    margin-top: 10px;
}
#docs > ul {
    margin-top: 30px;
}
.htmlDoc > h2:not(:first-child){
    border-top: 1px solid var(--color-blue);
    margin-top: 20px;
    padding-top: 20px;
}
#doc > div{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 30px;
}
#doc h2{
    font-size: 1.6rem;
    text-transform: uppercase;
}
.summary{
    padding: 0 50px 0 0;
    /* width: 100%; */
}
.summary, .htmlDoc{
    max-height: 60vh;
    overflow-y: scroll;
}
.htmlDoc{
    width: 100%;
}
.summary > ul {
    margin-top: 20px;
}
.summary > ul > li{
    list-style-type: none;
    margin-top: 5px;
}
.summary > ul > li > a{
    color: var(--color-blue);
    cursor: pointer;
}
.summary > ul > li > a.active{
    color: var(--color-red);
}
#docs > ul{
    max-height: 60vh;
    overflow-y: scroll;
}
.btnAdd{
    width: 315px;
    margin-top: 30px;
}
.btnAddMember{
    width: 350px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.form{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; 
}
.form > *{
    margin: 10px 0 10px 0;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.ck-editor__editable[role="textbox"] {
    min-height: 400px;
    padding-left: 15px;
}
.ck.ck-editor {
    width: 100% !important;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.btnAddPage{
    width: 200px;
}
#burgerBtn{
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    cursor: pointer;
}
#burgerBtn> span{
    width: 30px;
    height: 5px;
    border-radius: 10px;
    background: #fff;
    margin: 2.5px 0;
    transition: all 0.2s ease;
}
#burgerBtn > span:nth-child(2){
    width: 25px;
}
#burgerBtn:hover > span:nth-child(2){
    width: 30px;
}
#mobileNav{
    display: none;
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.431);
    transition: all 0.2s ease;
    overflow: hidden;
}
.openMobileMenu{
    width: 100% !important;
}
#mobileNavContent{
    width: 80%;
    height: 100%;
    background: var(--color-blue);
    position: relative;
    padding: 10px 20px;
}
#mobileNavContent > .close{
    position: absolute;
    top: 2px;
    right: 20px;
    cursor: pointer;
    width: 50px;
}
#navContent > svg{
    width: 100px;
}
#navContent > ul > li{
    list-style-type: none;
    margin: 5px 0;
}
#navContent > ul {
    margin-top: 50px;
}
#navContent > a  {
    margin-top: 30px;
}
#navContent > a > svg {
    width: 30px;
}
#navContent > ul > li > a{
    color: var(--color-white);
    text-decoration: none;
}
#navContent > ul > li > a.active{
    border-bottom: 2px solid var(--color-red);
}

th{
    text-align: left;
    color: var(--color-red);
    padding-bottom: 15px;
}
table, figure.table{
    max-width: 100%;
}
td {
    padding-right: 50px;
    padding-bottom: 5px;
    text-align: left;
}
.htmlDoc b, .htmlDoc strong{
    color: #124781;
}
.htmlDoc{
    background: #fff !important;
}
.article{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 350px;
    padding: 30px 20px;
    border-radius: 10px;
    background: #fff;
    margin-right: 20px;
    margin-bottom: 20px;
}
#blog{
    z-index: 150;
    position: relative;
}
.article > .desc{
    margin-top: 5px;
}
.tagArea{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5px;
}
.tagArea > .tag{
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    margin: 5px 0;
    margin-right: 10px;
}
.article > .btn{
    margin-top: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.article > .btn:hover{
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.select2-selection__choice{
    border: none !important;
}
.select2-selection__choice > *, .select2-selection__choice *{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif !important;
}
.select2-selection__choice > button > *{
    font-size: 1.1rem !important;
}
.select2-selection__choice > button{
    top: -2px !important;
}
.select2-selection__choice[title="formation"]{
    background-color: #d1e7dd !important;
}
.select2-selection__choice[title="formation"] > *{
    color: #0f5132 !important;
    border-color: #0f5132 !important;
}

.select2-selection__choice[title="ressources utiles"]{
    background-color: #fff3cd !important;
}
.select2-selection__choice[title="ressources utiles"] > *{
    color: #664d03 !important;
    border-color: #664d03 !important;
}

.select2-selection__choice[title="symfony"]{
    background-color: #fff3cd !important;
}
.select2-selection__choice[title="symfony"] > *{
    color: #664d03 !important;
    border-color: #664d03 !important;
}

.select2-selection__choice[title="veille technologique"]{
    background-color: #fceef1 !important;
}
.select2-selection__choice[title="veille technologique"] > *{
    color: #b83486 !important;
    border-color: #b83486 !important;
}

.select2-selection__choice[title="vocal"]{
    background-color: #cff4fc !important;
}
.select2-selection__choice[title="vocal"] > *{
    color: #055160 !important;
    border-color: #055160 !important;
}

.select2-selection__choice[title="php"]{
    background-color: #f8d7da !important;
}
.select2-selection__choice[title="php"] > *{
    color: #842029 !important;
    border-color: #842029 !important;
}

.select2-selection__choice[title="go"]{
    background-color: #e2e3e5 !important;
}
.select2-selection__choice[title="go"] > *{
    color: #41464b !important;
    border-color: #41464b !important;
}

.select2-selection__choice[title="méthodologie"]{
    background-color: #eed7f8 !important;
}
.select2-selection__choice[title="méthodologie"] > *{
    color: #752084 !important;
    border-color: #752084 !important;
}

.select2-selection__choice[title="adminplus"]{
    background-color: #cfe2ff !important;
}
.select2-selection__choice[title="adminplus"] > *{
    color: #084298 !important;
    border-color: #084298 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    font-family: 'Poppins', sans-serif !important;
}
.select2{
    width: fit-content !important;
    min-width: 300px !important;
    margin-right: 10px !important;
}
#articleForm > .select2{
    width: 100% !important;
}
#searchInput{
    display: block;
    min-height: 32px;
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-right: 5px;
    position: relative;
    margin-right: 10px;
    padding-left: 5px;
}
#searchInput:focus{
    border: solid black 1px;
    outline: 0;
}
#searchBar{
    margin-top: 0px;
}
#submitSearch{
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9rem !important;
    height: 32px !important;
    border: none;
    outline: none;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: var(--color-blue);
    color: var(--color-white);
    transition: all 300ms ease;
}
#submitSearch:hover{
    background-color: #3a4a69;
}
.attachments{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.attachments > h2{
    font-size: 1.4rem;
    color: var(--color-blue);
    font-weight: 600;
}
.attachments > .attachment{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    margin: 10px 0 10px 0;
    min-width: 300px;
    max-width: 100%;
    height: 100px;
    padding-right: 10px;
}
.attachments > .attachment > .extension{
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e2dcdc;
    color: #0000004b;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 10px;
}
.attachments > .attachment > a, .attachments > .attachment > div > a{
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 300ms ease;
}
.attachments > .attachment > a:hover, .attachments > .attachment > div > a:hover{
    text-decoration: underline;
}
.attachments > .attachment > a > i, .attachments > .attachment > div > a > i{
    margin-left: 5px;
}
.mb-5{
    margin-bottom: 30px;
}
.deleteAttachments{
    margin-top: 5px;
    font-size: 0.8rem;
}

@media screen and (max-width:1024px) {
    figure.table{
        overflow-x: auto;
    }
    table{
        width: 800px;
    }
    table, figure.table{
        max-width: inherit;
    }
    td {
        padding-right: 20px;
    }
    #home > div:nth-child(2){
        display: none;
    }
    #home > div:nth-child(1){
        width: 75%;
    }
    #layer{
        display: none;
    }
    .btnAdd, .btnAddMember{
        max-width: 90%;
    }
    .summary{
        display: none;
    }
    .docTitle > a{
        right: inherit !important;
        bottom: -75px !important;
        left: 0;
    }
    #docContentArea{
        margin-top: 75px !important;
    }
}
@media screen and (max-width:779px) {
    .article{
        margin-bottom: 20px;
        width: 100%;
        margin-right: 0px;
    }
}
@media screen and (max-width:560px) {
    .iframe-container{
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; 
        height: 0;
    }
    .iframe-container iframe{
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
@media screen and (max-width:500px) {
    #home > div:nth-child(1){
        width: 100%;
    }
    .groupBtn{
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    .groupBtn > .btn {
        width: 80%;
        margin: 10px 0;
    }
    .desktopNav{
        display: none;
    }
    #burgerBtn{
        display: flex;
    }
    #mobileNav{
        display: block;
    }
    .docTitle{
        font-size: 1.8rem !important;
    }
    #doc h2 {
        font-size: 1.3rem;
    }
    .summary, .htmlDoc {
        max-height: 100vh;
    }
    .card{
        margin: 20px 0px 20px 0;
        width: 100%;
    }
    #footerGeo{
        display: none;
    }
    #footerMobileGeo{
        display: block;
    }
}
@media screen and (max-width:481px) {
    .select2{
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}
