/*---------*/
/*KEYFRAMES*/
/*---------*/
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Animation modale image */
#modalImage {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
#modalImage.active {
    opacity: 1;
    pointer-events: auto;
}
/*----------------*/
/*TOUTES LES PAGES*/
/*----------------*/
::-webkit-scrollbar {
    width: 12px;
    background: #223052;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(120deg, #3e4d6e 40%, #071530 100%);
    border-radius: 8px;
    border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(120deg, #ff3131 40%, #3e4d6e 100%);
}

::-webkit-scrollbar-track {
    background: #b3c6e0;
    border-radius: 8px;
}

/* Firefox */
html,
body,
#droitePage {
    scrollbar-width: thin;
    scrollbar-color: #3e4d6e #b3c6e0;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #3e4d6e #b3c6e0;
}


.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #071530;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: slideUp 1s ease-in-out 1s forwards;
}


.loader img {
    width: 20vw;
    height: auto;
    animation: slideIn 1s ease-in-out;
    filter: invert(1);
}

body {
    margin: 0;
    background-image: url("Images/photoAccueil.jpg");
    background-size: 100vw 100vh;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: row;
    font-family: 'Courier New', Courier, monospace;
    min-height: 100vh;

}


p:hover {
    text-shadow: 20px 0px 20px rgb(255, 255, 255);
}

p {
    transition: text-shadow ease 0.5s;
}

nav {
    position: fixed;
    width: 20vw;
    height: 100vh;
    background-color: #071530;
    box-shadow: #071530 0vw 20vw 20vw 0vw;
    z-index: 2;
    padding: 1vh 1vw;
    display: flex;
    flex-direction: column;
}

nav img {
    height: 40vh;
    width: 100%;
    filter: invert(1);
}

nav>a {
    padding: 0;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    list-style: none;
    padding: 0;
    width: 100%;
    height: 54vh;
    margin: 2vh 0;
    justify-content: space-around;
    text-align: center;
}

nav ul li {
    display: flex;
    align-content: center;
    justify-content: center;
}

nav ul li a:hover {
    background-color: #3e4d6e;
    transform: rotate(2deg) scale(0.95);
    color: white;
}

nav ul li a {
    font-weight: bold;
    text-decoration: none;
    color: #071530;
    width: 100%;
    padding: 1vh 0;
    font-size: 1vw;
    border-radius: 50vw;
    background-color: white;
    transition: background-color ease 0.5s, transform ease 0.5s, color ease 0.5s;
}

#droitePage {
    width: 78vw;
    height: 100vh;
    margin-left: 22vw;
    overflow-y: auto;
    z-index: 3;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: 100vh;
}

/*-------*/
/*ACCUEIL*/
/*-------*/
#nomAccueilBienvenue {
    margin: 13vh 0 50vh 0;
    z-index: 3;
    padding-left: 5vw;

}

#nomAccueilBienvenue ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 1vh 0;
}

#nomAccueilBienvenue ul>li {
    margin-right: 2vw;
}

#nomAccueilBienvenue ul li a {
    display: flex;
}

#nomAccueilBienvenue ul li img {
    width: 2vw;
    filter: invert(1);
}

#nomAccueilBienvenue h2 {
    margin: 0;
    font-size: 1.3vw;
}

#nomAccueilBienvenue h1 {
    font-size: 4.5vw;
    margin: 0;
    font-weight: bolder;
    font-style: oblique;
    color: #071530;
    font-family: initial;
    -webkit-text-stroke: 1px white;
}

#nomAccueilBienvenue button {
    font-weight: bold;
    text-decoration: none;
    color: white;
    padding: 1vh 1vw;
    font-size: 1vw;
    border-radius: 50vw;
    border: solid white;
    background-color: #071530;
    transition: background-color ease 0.5s, transform ease 0.5s, color ease 0.5s;
    cursor: pointer;
}

#nomAccueilBienvenue button:hover {
    background-color: white;
    transform: rotate(2deg) scale(0.95);
    color: #3e4d6e;
}

footer {
    background-color: #071530;
    color: white;
    text-align: center;
    padding: 7vh 0;
    flex-shrink: 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1vw;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #3e4d6e;
}

.social-icons {
    display: flex;
    gap: 1vw;
}

.social-icons a {
    color: white;
    font-size: 2vw;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 10px rgba(255, 255, 255, 0.2);
}

#droitePage>*:not(footer) {
    flex: 1 0 auto;
}


/*-------------------------*/
/*TOUTES PAGES SAUF ACCUEIL*/
/*-------------------------*/
#presentationPersonnel,
#parcoursScolaire,
#certifDiplomes,
#expPro,
#competences,
#projets,
#CV,
#veilleTechnologiques,
#contact {
    width: 100%;
    background-color: #071530b9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2vh 0;
    flex-wrap: wrap;
    overflow-wrap: break-word;
}

#contact>h2,
#veilleTechnologiques>h2,
#parcoursScolaire>h2,
#presentationPersonnel>h2,
#certifDiplomes>h2,
#expPro>h2,
#competences>h2,
#projets>h2,
#CV>h2 {
    font-size: 3rem;
    text-align: center;
    width: 90%;
    color: white;
    background-color: #071530;
    padding: 2vh 0;
    margin: 0vh 0vw 2vh 0vw;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}

#contact p,
#veilleTechnologiques>p,
#parcoursScolaire>p,
#presentationPersonnel p,
#certifDiplomes>p,
#expPro>p {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin: 1vw 2vw;
    flex-wrap: wrap;
    overflow-wrap: break-word;

}

#presentationPersonnel h3,
#certifDiplomes>h3 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    flex-wrap: wrap;
    overflow-wrap: break-word;
}

#presentationPersonnel h4 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    flex-wrap: wrap;
    overflow-wrap: break-word;
}

/*---------------*/
/*A PROPOS DE MOI*/
/*---------------*/

#imageProfil {
    width: 15rem;
    border-radius: 100%;
    border: solid white;
}

#listeCIUl {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 3vh 1vw;
    gap: 3vh;
}

#listeCIUl li {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
}

#listeCIUl li.inverse {
    flex-direction: row-reverse;
}

#listeCIUl li.inverse div h4,
#listeCIUl li.inverse div p {
    text-align: right;
    padding-right: 2vw;
    margin: 1vh 0;
}

#listeCIUl li img {
    width: 30vw;
    border: solid white;
    aspect-ratio: 16/9;
}

#listeCIUl li div {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

#listeCIUl li div h4,
#listeCIUl li div p {
    text-align: left;
    padding-left: 2vw;
    margin: 1vh 0;
}

/*-------------------------------------------------*/
/*MON PARCOURS ET MES CERTIF ET DIPLOMES ET EXP PRO*/
/*-------------------------------------------------*/
#tampon {
    position: absolute;
    width: 15%;
    left: 4%;
    top: 10%;
    transform: rotate(-20deg);
    background: none;
    border-top: none;
    border-bottom: none;
}

#certifsDiplomesBlocBas {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

#certifs {
    width: 45%;
    text-align: center;
    color: white;
}

#diplomes {
    width: 45%;
    text-align: center;
    color: white;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.event {
    background: white;
    padding: 0.5vw;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 70rem;
    max-width: 95%;
    margin-top: 6vh;
    position: relative;
    text-align: center;
    z-index: 2;
}

.event ul {
    background-color: #3e4d6e;
    margin: 0;
    text-align: left;
    padding: 1vh 2vw;
}

.event h3 {
    background-color: #071530;
    color: #ff3131;
    padding: 0.5vw;
    margin: 0;
    border-radius: 5px 5px 0 0;
    flex-wrap: wrap;
    overflow-wrap: break-word;
}

.event h4 {
    padding: 1vh;
    margin: 0;
    background: #3e4d6e;
    color: white;
    font-size: 1.3rem;
    flex-wrap: wrap;
    overflow-wrap: break-word;
}

.event p {
    padding: 1vw;
    margin: 0;
    background: #3e4d6e;
    color: white;
}

.event #boxButtonChrono {
    background-color: #3e4d6e;
}

.event button {
    font-weight: bold;
    text-decoration: none;
    color: #071530;
    width: 80%;
    padding: 1rem 0;
    font-size: 1rem;
    border-radius: 50vw;
    background-color: white;
    transition: background-color ease 0.5s, transform ease 0.5s, color ease 0.5s;
    margin: 2vh 0;
    cursor: pointer;
}

.event button:hover {
    background-color: #071530;
    transform: scale(0.95);
    color: white;
}

.event::before {
    content: "";
    position: absolute;
    width: 1vw;
    height: 1vw;
    background-color: transparent;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-50%);
}

#formDemandeDoc {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 21, 48, 0.93);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

#formDemandeDocInner {
    background: #162447;
    border-radius: 1vw;
    box-shadow: 0 4px 24px #000a;
    padding: 3vh 4vw;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    min-width: 320px;
    max-width: 95vw;
    width: 400px;
}

#formDemandeDocInner label {
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.3em;
}

#formDemandeDocInner input,
#formDemandeDocInner textarea {
    width: 100%;
    padding: 0.7em;
    border-radius: 0.5vw;
    border: 1px solid #3e4d6e;
    font-size: 1em;
    background: #f3f6fa;
    color: #071530;
    margin-top: 0.3em;
    margin-bottom: 0.7em;
    box-sizing: border-box;
    resize: vertical;
}

#formDemandeDocInner button[type="submit"] {
    background: #3e4d6e;
    color: white;
    padding: 0.7em 2em;
    border-radius: 0.7vw;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

#formDemandeDocInner button[type="submit"]:hover {
    background: #223052;
}

#formDemandeDocInner button[type="button"] {
    background: #b3b3b3;
    color: #071530;
    padding: 0.7em 2em;
    border-radius: 0.7vw;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

#formDemandeDocInner button[type="button"]:hover {
    background: #ff3131;
    color: white;
}

/*-----------*/
/*COMPETENCES*/
/*-----------*/
#competences>section {
    width: 100%;
}

#competences>section>section {
    margin: 0 10%;
    width: 80%;
}

#competences>section>section>section {
    margin: 0 15%;
    width: 70%;
}

#competences ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2vw;
    padding: 0;
}

#competences ul li {
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
}

progress {
    display: flex;
    width: 15vw;
    margin: 1vw auto;
    border-radius: 14px;
    background-color: white;
}

progress::-webkit-progress-bar {
    background-color: white;
    border-radius: 0.9vw;
}


progress::-webkit-progress-value {
    background-color: #071530;
    border-radius: 0.9vw;
    transition: background-color 0.3s ease;
}

progress::-moz-progress-bar {
    background-color: #071530;
    border-radius: 0.9vw;
    transition: background-color 0.3s ease;
}

progress:hover::-webkit-progress-value {
    background-color: #3e4d6e;
}

progress:hover::-moz-progress-bar {
    background-color: #3e4d6e;
}

#logiciels img {
    height: 5rem;
    filter: contrast(1.5);
}

/*----------------------*/
/*PROJETS ET COMPETENCES*/
/*----------------------*/
#competences>section>h3::before,
#competences section>h4::before,
#competences section>h5::before,
#competences section>h6::before,
#projets>section>h3::before,
#projets section>h4::before,
#projets section>h5::before,
#projets section>h6::before {
    content: "▼ ";
}

#competences>section>h3::after,
#competences section>h4::after,
#competences section>h5::after,
#competences section>h6::after,
#projets>section>h3::after,
#projets section>h4::after,
#projets section>h5::after,
#projets section>h6::after {
    content: " ▼";
}

#competences>section>h3:hover,
#competences section>h4:hover,
#competences section>h5:hover,
#competences section>h6:hover,
#projets>section>h3:hover,
#projets section>h4:hover,
#projets section>h5:hover,
#projets section>h6:hover {
    color: rgba(255, 255, 255, 0.74);
}

#projets>section>h3,
#competences>section>h3 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    background-color: #071530;
    padding: 2vh 0;
    border-top: solid white;
    border-bottom: solid white;
    width: 100%;
    margin: 0.5% 0;
    font-size: 1.5rem;
}

#competences section>h4,
#projets section>h4 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    background-color: black;
    padding: 1vh 0;
    width: 95%;
    border-radius: 0 0 2vw 2vw;
    border: solid white;
    font-weight: bold;
    margin: 0.5% 2.5%;
    font-size: 1.3rem;
}

#competences section>h5,
#projets section>h5 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    background-color: black;
    padding: 1vh 0;
    width: 80%;
    border-radius: 0 0 2vw 2vw;
    border: solid white;
    font-weight: bold;
    margin: 0.5% 10%;
    font-size: 1.1rem;
}

#competences section>h6,
#projets section>h6 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    background-color: black;
    padding: 1vh 0;
    width: 60%;
    border-radius: 0 0 2vw 2vw;
    border: solid white;
    font-weight: bold;
    margin: 0.5% 20%;
    font-size: 0.9rem;
}

/*-------*/
/*PROJETS*/
/*-------*/
#boxGlobParagraphe {
    margin: 2vh auto;
    padding: 2vh 0;
    text-align: center;
    background-color: #071530;
    border-radius: 1vw;
    border: solid white;
    width: 90%;
}

#boxGlobParagraphe h2,
#boxGlobParagraphe h3,
#boxGlobParagraphe p,
#boxGlobParagraphe li,
#boxGlobParagraphe a {
    color: white;
    padding: 0 1vw;
}

#projets #logoProjet {
    width: 20%;
    border: solid white;
    border-radius: 100%;
}

#langagesProgProjets {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-around;
    padding: 0;
    flex-wrap: wrap;
}

#langagesProgProjets img {
    height: 6rem;
    transition: transform 0.5s ease;
}

#langagesProgProjets img:hover {
    transform: matrix(0.87, 0.5, 0, 0.87, 0, 1);
}

#imageProjet {
    width: 90%;
    margin: 1vh 5%;
    border: solid white;
    border-radius: 1vw;
    justify-self: center;
}

/*--------------------*/
/*VEILLE TECHNOLOGIQUE*/
/*--------------------*/
.veille-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw 2vw;
    justify-content: center;
    margin: 3vh 0 2vh 0;
    width: 100%;
}

.veille-card {
    background: #162447;
    color: #f3f6fa;
    border-radius: 1vw;
    box-shadow: 0 4px 20px #07153033;
    display: flex;
    align-items: flex-start;
    gap: 1vw;
    padding: 2vh 2vw;
    min-width: 240px;
    max-width: 32vw;
    width: 100%;
    margin-bottom: 2vh;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1rem;
}

.veille-card:hover {
    transform: translateY(-0.5vw) scale(1.03);
    box-shadow: 0 8px 32px #07153066;
}

.veille-icone {
    min-width: 3rem;
    min-height: 3rem;
    max-width: 3rem;
    max-height: 3rem;
    border-radius: 0.7vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 1vw;
    margin-top: 0.2vw;
    box-shadow: 0 2px 8px #0002;
}

.veille-icone img {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

.veille-titre {
    color: #b3c6e0;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    word-break: break-word;
}

.veille-titre span {
    font-size: 0.9em;
    vertical-align: middle;
}

.veille-desc {
    font-size: 0.98em;
    margin: 0.3em 0 0.7em 0;
    color: #e0e6f0;
    word-break: break-word;
}

.veille-tag {
    display: inline-block;
    padding: 0.2em 0.8em;
    border-radius: 1em;
    font-size: 0.95em;
    font-weight: bold;
    margin-top: 0.2em;
    background: #223052;
    color: #b3c6e0;
}

.veille-tag.blog {
    background: #e6fff2;
    color: #223052;
}

.veille-tag.youtube {
    background: #ffeaea;
    color: #ff3131;
}


/*-------*/
/*CONTACT*/
/*-------*/
#contact form {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

#contact label {
    font-weight: bold;
    margin-bottom: 0.5vh;
    display: block;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 1vh 1vw;
    border-radius: 0.7vw;
    border: 1px solid #3e4d6e;
    font-size: 1.1rem;
    background-color: #fff;
    color: #071530;
    margin-top: 0.3vh;
    margin-bottom: 1vh;
    box-sizing: border-box;
    resize: vertical;
}

#contact button[type="submit"] {
    background-color: #071530;
    color: white;
    padding: 1vh 3vw;
    border-radius: 1vw;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1vh;
}

#contact button[type="submit"]:hover {
    background-color: #223052;
}

@media only screen and (max-width: 600px) {

    /*----------------*/
    /*TOUTES LES PAGES*/
    /*----------------*/
    ::-webkit-scrollbar {
        width: 5px;
    }

    .loader img {
        width: 60vw;
    }

    #tampon {
        display: none;
    }

    body {
        margin: 0;
        background-image: url("Images/photoAccueilTel.jpg");
        background-size: 100vw 100vh;
    }

    p:hover {
        text-shadow: none;
    }

    #burgerMenu {
        position: fixed;
        top: 2%;
        left: 8%;
        z-index: 5;
        transition: transform 0.5s ease;
    }

    #burger-icon span {
        display: flex;
        width: 35px;
        height: 5px;
        margin: 8px 0;
        background-color: white;
    }

    nav {
        position: fixed;
        width: 100vw;
        height: 100vh;
        box-shadow: none;
        z-index: 4;
        padding: 1vh 1vw;
        display: flex;
        top: -102vh;
        transition: top 0.5s ease;
    }

    #logoImg {
        height: 30vh;
        width: 80%;
        margin: 0 10%;
    }

    nav ul {
        width: 90%;
        margin: 0vh 5%;
        height: 50vh;
    }

    nav ul li a:hover {
        background-color: none;
        transform: none;
        color: none;
    }

    nav ul li a:active {
        background-color: #3e4d6e;
        transform: scale(0.95);
        color: white;
    }

    nav ul li a {
        font-size: 3vw;
    }

    #droitePage {
        width: 100vw;
        margin-left: 0;
    }



    /*-------*/
    /*ACCUEIL*/
    /*-------*/
    #nomAccueilBienvenue {
        width: 90vw;
        padding-left: 5vw;
        margin: 10vh 0 50vh 0;
        justify-content: center;
        text-align: center;
    }
    #nomAccueilBienvenue > img{
        width: 50%;
    }
    #nomAccueilBienvenue ul {
        gap: 7vw;
        justify-content: center;
    }

    #nomAccueilBienvenue ul li a {
        display: flex;
    }
    #nomAccueilBienvenue ul li img {
        width: 10vw;
    }

    #nomAccueilBienvenue h2 {
        font-size: 5vw;
    }

    #nomAccueilBienvenue h1 {
        font-size: 15vw;
    }

    #nomAccueilBienvenue button {
        font-size: 6vw;
        transition: background-color ease 0.5s, transform ease 0.5s, color ease 0.5s;
    }

    #nomAccueilBienvenue button:active {
        background-color: white;
        transform: scale(0.95);
        color: #3e4d6e;
    }

    #nomAccueilBienvenue button:hover {
        background-color: none;
        transform: none;
        color: none;
    }

    footer {
        padding: 7vh 2%;
        width: 96%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer-links {
        justify-content: space-around;
        width: 90%;
    }

    .footer-links li a:active {
        color: #3e4d6e;
    }

    .footer-links li a:hover {
        color: none;
    }

    /*-------------------------*/
    /*TOUTES PAGES SAUF ACCUEIL*/
    /*-------------------------*/
    #presentationPersonnel,
    #parcoursScolaire,
    #certifDiplomes,
    #expPro,
    #veilleTechnologiques,
    #CV {
        width: 96%;
        padding: 2vh 2vw;
    }

    #parcoursScolaire>p,
    #presentationPersonnel p,
    #certifDiplomes>p,
    #expPro>p {
        text-align: justify;
    }

    #contact>h2,
    #veilleTechnologiques>h2,
    #parcoursScolaire>h2,
    #presentationPersonnel>h2,
    #certifDiplomes>h2,
    #expPro>h2,
    #competences>h2,
    #projets>h2,
    #CV>h2 {
        font-size: 8vw;
        text-align: center;
        width: 90%;
        color: white;
        background-color: #071530;
        padding: 2vh 0;
        margin: 7vh 0vw 2vh 0vw;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
        text-transform: uppercase;
        font-weight: bold;
        font-family: 'Courier New', Courier, monospace;
    }

    /*---------------*/
    /*A PROPOS DE MOI*/
    /*---------------*/

    #imageProfil {
        width: 70vw;
    }


    #listeCIUl li {
        flex-direction: column;
    }

    #listeCIUl li.inverse {
        flex-direction: column;
    }

    #listeCIUl li.inverse div h4,
    #listeCIUl li.inverse div p {
        text-align: center;
        padding-right: 0;
    }

    #listeCIUl li img {
        width: 100%;
    }

    #listeCIUl li div {
        height: 100%;
    }

    #listeCIUl li div h4,
    #listeCIUl li div p {
        text-align: center;
        padding-left: 0;
    }

    /*-------------------------------------------------*/
    /*MON PARCOURS ET MES CERTIF ET DIPLOMES ET EXP PRO*/
    /*-------------------------------------------------*/
    #tampon {
        width: 20%;
        left: -5%;
        top: -2%;
    }

    #certifsDiplomesBlocBas {
        width: 100%;
    }

    #certifs {
        width: 49%;
    }

    #diplomes {
        width: 49%;
    }

    .event ul li {
        text-align: center;
    }

    .event button {
        border-radius: 20px;
        flex-wrap: wrap;
        overflow-wrap: break-word;
    }

    .event button:hover {
        background-color: none;
        transform: none;
        color: none;
    }

    .event button:active {
        background-color: #071530;
        transform: scale(0.95);
        color: white;
    }

    #formDemandeDocInner {
        width: 95vw;
        min-width: unset;
        padding: 4vw 2vw;
        font-size: 1em;
    }

    /*-----------*/
    /*COMPETENCES*/
    /*-----------*/
    #competences ul {
        flex-direction: column;
        gap: none;
    }

    #competences ul li {
        width: 100%;
    }

    progress {
        width: 85%;
    }


    progress:hover::-webkit-progress-value {
        background-color: none;
    }

    progress:hover::-moz-progress-bar {
        background-color: none;
    }

    progress:active::-webkit-progress-value {
        background-color: #3e4d6e;
    }

    progress:active::-moz-progress-bar {
        background-color: #3e4d6e;
    }

    #logiciels ul {
        display: flex;
        flex-direction: row;
        margin-left: -2vw;
        justify-content: center;
    }

    #logiciels ul li {
        width: auto;
        display: flex;
    }

    #logiciels img {
        height: auto;
        width: 15vw;
    }

    /*-------*/
    /*PROJETS*/
    /*-------*/
    #projets #logoProjet {
        width: 50vw;
        border-radius: 100%;
    }

    #langagesProgProjets img {
        height: 10vw;
    }

    #langagesProgProjets img:hover {
        transform: none;
    }

    #langagesProgProjets img:active {
        transform: matrix(0.87, 0.5, 0, 0.87, 0, 1);
    }

    /*--------------------*/
    /*VEILLE TECHNOLOGIQUE*/
    /*--------------------*/
    .veille-grid {
        flex-direction: column;
        align-items: center;
        gap: 3vh 0;
    }

    .veille-card {
        max-width: 95vw;
        min-width: 0;
        font-size: 0.95rem;
        padding: 4vw 4vw;
        border-radius: 3vw;
    }

    .veille-icone {
        min-width: 2.5rem;
        min-height: 2.5rem;
        max-width: 2.5rem;
        max-height: 2.5rem;
        margin-right: 3vw;
    }

    .veille-icone img {
        width: 1.7rem;
        height: 1.7rem;
    }

    /*--*/
    /*CV*/
    /*--*/
    #CV iframe {
        width: 90vw;
    }
}