@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:ital,wght@0,300;0,500;0,600;1,400&display=swap');
:root
{
    --bg-noir-1000:#f3f3f3;
    --bg-noir-900:#f2f2fc;
    --bg-noir-100: #fdf9ff;
    --bg-noir-50: #e9dfec;
    --text-noir-900: #302e4d;
    --text-noir-700: #504e70;
}
body.dark {
    --bg-noir-1000: #101010;
    --bg-noir-900: #151515;
    --bg-noir-100: #222222;
    --bg-noir-50: #393939;
    --text-noir-900: #fff;
    --text-noir-700: #e9e9e9;
}
body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Poppins' sans-serif;
}
*
{
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 10px;
    background: var(--skin-background);
    filter: blur(20px);
}
::-webkit-scrollbar-thumb {
    width: 10px;
    background: var(--skin-color);
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
    width: 10px;
    background: var(--skin-dark);
}
::before,::after {
    box-sizing: border-box;
}
ul {
    list-style: none;
}
.section {
    background: var(--bg-noir-900);
    min-height: 100vh;
    display: block;
    padding: 0 30px;
    Opacity: 1;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3 ease;
}
.hidden {
    display: none !important;
}
.section.active {
    z-index: 2;
    opacity: 1;
    animation: slideSection 1s ease;
}
.padd-15 {
    padding-left: 15px;
    padding-right: 15px;
}
.container {
    max-width: 1900px;
    width: 100%;
    margin: auto;
}
.section .container {
    padding-top: 6px;
    padding-bottom: 70px;
}
.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 32px;
    color: var(--text-noir-900);
    font-weight: 700;
    position: relative;
}
.section-title h2::before {
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}
.section-title h2::after {
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}
.btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: #fff;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
    border: none;
    background-color: var(--skin-color);
    transition: all 0.3s ease;
}
.btn:hover {
    transform: scale(1.1);
}
.shadow-dark {
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}
a {
    color: var(--skin-color);
}
a:hover {
    color: var(--skin-background);
}
/* Menu haut*/
.top {
    width: 100%;
    min-width: 100%;
    height: 90px;
    background: var(--bg-noir-100);
    position: sticky;
    left: 0;
    top: 0;
    bottom: 30px;
    border-right: 1px solid var(--bg-noir-50);
    display: flex;
    z-index: 10;
    transition: all 0.3s ease;
}
.top.cache {
    top: -100px;
    transition: all 0.3s ease;
}
.top .logo
{
    position: flex;
    flex: 1 1 10%;
    margin-top: 20px;
    font-size: 20px;
    text-transform: capitalize;
}
.top .logo a {
    color: var(--text-noir-900);
    font-weight: 700;
    padding: 15px 20px;
    font-size: 20px;
    letter-spacing: 5px;
}
.top .logo a span {
    font-family: 'Clicker Script', cursive;
    font-size: 36px;
}
.top .logo a::before {
    content: '';
    position: flex;
    width: 20px;
    height: 20px;
    border-top: 5px solid var(--skin-color);
    border-left: 5px solid var(--skin-color);
    top: 0;
    margin-right: 10px;
}
.top .logo a::after {
    content: '';
    position: flex;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--skin-color);
    border-right: 5px solid var(--skin-color);
    bottom: 0;
    margin-right: 10px;
}
.top .nav {
    margin-top: 25px;
    display: flex;
    flex-direction: 0 0 80%;
    text-align: right;
}
.top .nav li {
    margin-bottom: 35px;
    margin-right: 20px;
    display: flex;
}
.top .nav li a {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    color: var(--text-noir-900);
    padding: 10px 15px;
}
.top .nav li a.active {
    color: var(--skin-color);
}
.top .nav li a:hover {
    color: var(--skin-color);
}
.top .nav li a i {
    margin-right: 10px;
    padding-top: 2px;
}


/* Menu mobile*/
.aside {
    width: 270px;
    background: var(--bg-noir-100);
    position: fixed;
    left: 0;
    top: 0;
    padding: 30px;
    height: 100%;
    border-right: 1px solid var(--bg-noir-50);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    visibility: hidden;
}
.aside .logo
{
    position: absolute;
    top: 50px;
    font-size: 28px;
    text-transform: capitalize;
}
.aside .logo a {
    color: var(--text-noir-900);
    font-weight: 700;
    padding: 15px 20px;
    font-size: 28px;
    letter-spacing: 5px;
}

.aside .logo a span {
    font-family: 'Clicker Script', cursive;
    font-size: 36px;
}
.aside .logo a::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 5px solid var(--skin-color);
    border-left: 5px solid var(--skin-color);
    top: 0;
    left: 0;
}
.aside .logo a::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--skin-color);
    border-right: 5px solid var(--skin-color);
    bottom: 0;
    right: 0;
}
.aside .nav-toggler {
    height: 40px;
    width: 45px;
    border: 1px solid var(--bg-noir-50);
    cursor: pointer;
    position: fixed;
    left: 300px;
    top: 20px;
    border-radius: 5px;
    background: var(--bg-noir-100);
    display: none;
    align-items: center;
    justify-content:center;
}
.aside .nav-toggler span {
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    display: inline-block;
    position: relative;
}
.aside .nav-toggler span::before {
    content: '';
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    position: absolute;
    top: -6px;
    left: 0;
}
.aside .nav-toggler span::after {
    content: '';
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    position: absolute;
    top: 6px;
    left: 0;
}
.aside .nav2 {
    margin-top: 50px;
}
.aside .nav2 li {
    margin-bottom: 20px;
    display: block;
}
.aside .nav2 li a {
    font-size: 16px;
    font-weight: 600;
    display: block;
    color: var(--text-noir-900);
    border-bottom: 1px solid var(--bg-noir-50);
    padding: 5px 15px;
}
.aside .nav2 li a.active {
    color: var(--skin-color);
}
.aside .nav2 li a i {
    margin-right: 10px;
}


/*Menu actu*/
.top-actu {
    width: 100%;
    height: 90px;
    background: var(--bg-noir-100);
    position: sticky;
    left: 0;
    top: 0;
    bottom: 30px;
    border-right: 1px solid var(--bg-noir-50);
    display: flex;
    z-index: 10;
    transition: all 0.3s ease;
}
.top-actu-cache {
    top: -100px;
    transition: all 0.3s ease;
}
.top-actu .logo
{
    position: flex;
    flex: 1 1 10%;
    margin-top: 20px;
    font-size: 20px;
    text-transform: capitalize;
}
.top-actu .logo a {
    color: var(--text-noir-900);
    font-weight: 700;
    padding: 15px 20px;
    font-size: 20px;
    letter-spacing: 5px;
}
.top-actu .logo a span {
    font-family: 'Clicker Script', cursive;
    font-size: 36px;
}
.top-actu .logo a::before {
    content: '';
    position: flex;
    width: 20px;
    height: 20px;
    border-top: 5px solid var(--skin-color);
    border-left: 5px solid var(--skin-color);
    top: 0;
    margin-right: 10px;
}
.top-actu .logo a::after {
    content: '';
    position: flex;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--skin-color);
    border-right: 5px solid var(--skin-color);
    bottom: 0;
    margin-right: 10px;
}
.top-actu .nav {
    margin-top: 25px;
    display: flex;
    flex-direction: 0 0 80%;
    text-align: right;
}
.top-actu .nav li {
    margin-bottom: 35px;
    margin-right: 20px;
    display: flex;
}
.top-actu .nav li a {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    color: var(--text-noir-900);
    padding: 10px 15px;
}
.top-actu .nav li a.active {
    color: var(--skin-color);
}
.top-actu .nav li a:hover {
    color: var(--skin-color);

}
.top-actu .nav li a i {
    margin-right: 10px;
    padding-top: 2px;
}


/* Corps*/
.section {
    min-height: 100vh;
    display: flex;
    color: var(--text-noir-900);
}
.section .home-info {
    flex: 0 0 60%;
    max-width: 60%;
}
h1.owi {
    font-size: 32px;
    margin: 15px 0;
}
h1.owi span {
    font-family: 'Clicker Script', cursive;
    font-size: 36px;
    font-weight: 700;
    color: var(--skin-color);
}
h2.profession {
    font-size: 26px;
    margin: 15px 0;
}
.typing {
    color: var(--skin-color);
}
.home-info p{
    margin-bottom: 70px;
    font-size: 18px;
    color: var(--text-noir-700);
}
.home-info .fa-linkedin {
    font-size: 60px;
    display: absolute;
    bottom: -15px;
    position: relative; /* postulat de départ */
    left: 50%; /* à 50%/50% du parent référent */
}
.section .home-img {
    flex: 0 0 40%;
    max-width: 40%;
    text-align: center;
    position: relative;
}
.home-img .disponible:before {
    content: '';
    height: 15px;
    width: 15px;
    position: relative;
    background-color: #16F40B;
    border: 3px solid #10850A;
    border-radius: 50%;
    filter: blur(15px);
    top: -7px;
}
.home-img .disponible:after {
    content: '';
    height: 15px;
    width: 15px;
    position: relative;
    background-color: #16F40B;
    border: 3px solid #10850A;
    border-radius: 50%;
    filter: blur(10px);
    top: -7px;
    left: -4px;
}
.home-img .disponible {
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    background-color: #16F40B;
    border: 3px solid #10850A;
    border-radius: 50%;
    left: 125px;
    top: -20px;
}
.section .home-img img{
    margin: auto;
    height: 400px;
    border-radius: 15%;
}


/*About*/
.about .about-content {
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text {
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-noir-900);
}
.about .about-content .about-text h3 span {
    color: var(--skin-color);
}
.about .about-content .about-text p {
    font-size: 16px;
    line-height: 25px;
    color: var(--text-noir-700);
}
.about .about-content .info-perso {
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 40px;
}
.about .about-content .info-perso .info-item {
    flex: 0 0 50%;
    max-width: 50%;
}
.about .about-content .info-perso .info-item p {
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px
    color; font-variant: var(--text-noir-900);
    border-bottom: 1px solid var(--bg-noir-50);
}
.about .about-content .info-perso .info-item p span {
    font-weight: 400;
    color: var(--text-noir-700);
    margin-left: 4px;
    display: inline-block;
}
.about .about-content .info-perso .bouttons {
    margin-top: 30px;
}
.about .about-content .info-perso .bouttons .btn {
    margin-right: 15px;
}
.about .about-content .skills {
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 40px;
}
.about .about-content .skills .skill-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 25px;
}
.about .about-content .skills .skill-item h5 {
    line-height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-noir-900);
    text-transform: capitalize;
}
.about .about-content .skills .skill-item .progress {
    background-color: var(--bg-noir-50);
    height: 7px;
    border-radius: 5px;
    width: 100%;
    position: relative;
}
.about .about-content .skills .skill-item .progress .progress-in {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 5px;
    background-color: var(--skin-color);
}
.about .about-content .skills .skill-item .skill-pourcent {
    position: absolute;
    right: 0;
    color: var(--text-noir-900);
    top: -40px;
    font-weight: 400;
    line-height: 40px;
}
.about .about-content .formation, .about .about-content .experiences {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 40px;
}
.about .about-content h3.title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-noir-900);
}
.about .about-content .timeline-box {
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .timeline {
background-color: var(--bg-noir-100);
padding: 30px 15px;
border: 1px solid var(--bg-noir-50);
border-radius: 5px;
width: 100%;
position: relative;
}
.about .about-content .timeline .timeline-item {
    position: relative;
    padding-left: 35px;
    padding-bottom: 50px;
}
.about .about-content .timeline .timeline-item:last-child {
    padding-bottom: 0;

}
.about .about-content .timeline .timeline-item:before {
    content: '';
    width: 1px;
    position: absolute;
    height: 100%;
    left: 7px;
    top: 0;
    background-color: var(--skin-color);
}
.about .about-content .timeline .circle-dot {
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--skin-color);
}
.about .about-content .timeline .timeline-date {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-noir-700);
}
.about .about-content .timeline .timeline-date .fa {
    margin-right: 5px;
}
.about .about-content .timeline .timeline-title {
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--text-noir-900);
}
.about .about-content .timeline .timeline-text {
    line-height: 25px;
    font-size: 16px;
    text-align: justify;
    color: var(--text-noir-700);
}


/*Recherche*/
.recherche .container {
    padding-top: 40px;
}
.recherche h2 {
    font-size: 32px;
    color: var(--text-noir-900);
    font-weight: 700;
    position: relative;
}
.recherche h2::before {
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}
.recherche h2::after {
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.recherche .search-item {
    margin: 50px auto 10px;
    flex: 0 0 33.33%;
    max-width: 30%;
}
.recherche .search-item .search-inner {
    background-color: var(--bg-noir-100);
    border: 1px solid var(--bg-noir-50);
    border-radius: 5px;
    padding: 10px 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.recherche .search-item .search-inner:hover {
transform: scale(1.05);
}
.recherche .search-item .search-inner span {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-noir-900);
    background: var(--skin-color);
    border: 1px solid var(--bg-noir-50);
    border-radius: 15px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 5px 10px;
    cursor: pointer;
}
.recherche .search-item .search-inner p {
    font-size: 16px;
    line-height: 25px;
    margin: 15px auto 10px;
    color: var(--text-noir-700);
    font-weight: 400;
    text-align: justify;
}


/*Logiciels*/
.logiciel .container {
    padding-top: 40px;
}
.logiciel .logiciel-item {
    margin-bottom: 30px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.logiciel .logiciel-item .logiciel-item-inner {
    background-color: var(--bg-noir-100);
    border: 1px solid var(--bg-noir-50);
    border-radius: 5px;
    padding: 10px 10px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 270px;
}
.logiciel .logiciel-item .logiciel-item-inner:hover {
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
    transform: scale(1.1);
}
.logiciel .logiciel-item .logiciel-item-inner .icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}
.logiciel .logiciel-item .logiciel-item-inner .icon .fa-solid, .fa-regular, .fa-brands {
    font-size: 40px;
    line-height: 50px;
    color: var(--skin-color);
    transition: all 0.3s ease;
}
.logiciel .logiciel-item .logiciel-item-inner .icon .fa-regular {
    font-size: 40px;
    line-height: 50px;
    color: var(--skin-color);
    transition: all 0.3s ease;
}
.logiciel .logiciel-item .logiciel-item-inner .icon .fa-brands {
    font-size: 40px;
    line-height: 50px;
    color: var(--skin-color);
    transition: all 0.3s ease;
}
.logiciel .logiciel-item .logiciel-item-inner:hover .icon {
    background: var(--skin-color);
}
.logiciel .logiciel-item .logiciel-item-inner:hover .icon .fa-solid {
    font-size: 25px;
    color: #fff;
}
.logiciel .logiciel-item .logiciel-item-inner:hover .icon .fa-regular{
    font-size: 25px;
    color: #fff;
}
.logiciel .logiciel-item .logiciel-item-inner:hover .icon .fa-brands{
    font-size: 25px;
    color: #fff;
}
.logiciel .logiciel-item .logiciel-item-inner h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-noir-900);
    font-weight: 700;
    text-transform: capitalize;
}
.logiciel .logiciel-item .logiciel-item-inner p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
    color: var(--text-noir-700);
    font-weight: 400;
    text-align: justify;
}


/*Actualite*/
.actu .container {
    padding-top: 40px;
}
.section-title h1 {
    font-size: 32px;
    color: var(--text-noir-900);
    font-weight: 700;
    position: relative;
}
.section-title h1::before {
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}
.section-title h1::after {
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.actu .actu-item {
    margin-bottom: 30px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.actu .actu-item .actu-item-inner {
    background-color: var(--bg-noir-100);
    border: 1px solid var(--bg-noir-50);
    border-radius: 5px;
    padding: 10px 10px;
    text-align: center;
    transition: all 0.3s ease;
    max-height: 400px;
}
.actu .actu-item .actu-item-inner:hover {
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
    transform: scale(1.1);
}
.actu .actu-item .actu-item-inner img {
    height: 80%;
    width: 80%;
    max-height: 250px;
    margin: 0 auto 10px;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}
.actu .actu-item .actu-item-inner p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
    color: var(--text-noir-700);
    font-weight: 400;
    text-align: justify;
}
.actu .actu-item .actu-item-inner p.datepub {
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 15px;
    color: var(--text-noir-700);
    font-weight: 200;
    text-align: right;
}
.actu a {
    color: var(--skin-color);
}
/*BREADCRUMB*/
.breadcrumb{
    color: var(--skin-color);
    margin-bottom: 10px;
    flex: 0 0 90%;
}
.breadcrumb ul {
    display: flex;
    padding-left: 15px;
    padding-top: 10px;
    color: var(--skin-color);
}
.breadcrumb ul a{
    color: var(--skin-color);
}
    
.breadcrumb li::before {
    content: " → ";
}
    
.breadcrumb li:first-child::before {
    content: " ";
}
    

/*contact*/
.contact-title {
    color: var(--skin-color);
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-sub-title {
    color: var(--skin-color);
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 50px;
}
.contact .contact-info-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: center;
    margin-bottom: 50px;
}
.contact .contact-info-item .icon {
    display: inline-block;
}
.contact .contact-info-item .icon .fa-solid {
    font-size: 25px;
    color: var(--skin-color);
}
.contact .contact-info-item .icon .fa-brands {
    font-size: 25px;
    color: var(--skin-color);
}
.contact .contact-info-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-noir-900);
    text-transform: capitalize;
    margin: 15px 0 5px;
}
.contact .contact-info-item p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: var(--text-noir-700);
}
.contact .contact-info-item a {
    color: var(--skin-color);
    text-decoration: underline;
}
.contact .contact-form {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .contact-form .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.contact .contact-form .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .contact-form .form-item {
    margin-bottom: 15px;
}
.contact .contact-form .form-item .form-control {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: var(--bg-noir-100);
    border: 1px solid var(--bg-noir-50);
    padding: 10px 25px;
    font-size: 16px;
    color: var(--text-noir-700);
    transition: all 0.3s ease;
}
.contact .contact-form .form-item .form-control:focus {
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}
.contact .contact-form .form-item textarea.form-control {
    height: 140px;
    min-width: 100%;
    max-height: 200px;
    max-width: 100%
}
.contact .contact-form .btn {
    height: 40px;
    padding: 0 25px;
}

/*ARTICLE DE BLOG*/
.blog .section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
.blog .section-title h1 {
    font-size: 32px;
    color: var(--text-noir-900);
    font-weight: 700;
    position: relative;
}
.blog .section-title h1::before {
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}
.blog .section-title h1::after {
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.intro {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
}
.intro h2 {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
}
.intro p {
    flex: 0 0 70%;
    max-width: 70%;
    text-align: justify;
}
.intro img{
    flex: 0 0 30%;
    max-width: 30%;
    margin: auto;
    margin-left: 5px;
    max-width: 400px;
    border-radius: 5px;
    float: right;
}
.blog h3 {
    flex: 0 0 90%;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
    flex: 0 0 100%;
    text-align: justify;
}
.blog h2 {
    flex: 0 0 90%;
    max-width: 90%;
    margin-bottom: 20px;
    margin-top: 20px;
}
.article {
    padding-left: 15px;
}
.article p {
    text-align: justify;
}
.article .actu-item {
    margin-bottom: 30px;
    position: relative;
    flex: 0 0 70%;
    max-width: 33.33%;
    display: inline-block;
}
.article .actu-item .actu-item-inner {
    background-color: var(--bg-noir-100);
    border: 1px solid var(--bg-noir-50);
    border-radius: 5px;
    padding: 10px 10px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 270px;
}
.article .actu-item .actu-item-inner:hover {
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
    transform: scale(1.1);
}
.article .actu-item .actu-item-inner img {
    height: 70%;
    max-width: 300px;
    max-width: 450px;
    max-height: 250px;
    width: 70%;
    margin: 0 auto 10px;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}
.article .actu-item .actu-item-inner p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
    color: var(--text-noir-700);
    font-weight: 400;
    text-align: justify;
}
.article .actu-item .actu-item-inner h4 {
    color: var(--skin-color);
}
.article .actu-item .actu-item-inner a {
    color: var(--skin-color);
}
.article .actu-item .actu-item-inner a:hover {
    color: var(--skin-background);
}
.article .actu-item .actu-item-inner p.exemple {
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 15px;
    color: var(--text-noir-700);
    font-weight: 200;
    text-align: right;
}
.article ul{
    margin-left: 30px;
    margin-top: 10px;
    text-align: justify;
}
.article ul li{
    margin-bottom: 10px;
}
.article span {
    color: var(--skin-color);
}
/*FOOTER*/
.footer {
    background-color: var(--bg-noir-1000);
    padding-bottom: 20px;
    padding-top: 20px;
    max-width: 100%;
    position: relative;
    flex: 0 0 100%;
    bottom: 0;
}
.footer h4 {
    color: var(--text-noir-900);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    max-width: 100%;
}
/*404*/
.error-back {
    background-color: var(--bg-noir-900);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    text-align: center;
}
.error-back h1 {
    font-size: 32px;
    color: var(--text-noir-900);
    font-weight: 700;
}
.error-back p{
    color: var(--text-noir-700);
    padding-bottom: 20px;
}
/* RESPONSIVE */
@media (max-width: 1199px) {
    .top {
        display: none!important;
    }
    .aside {
        left: -270px;
        visibility: visible;
    }
    .aside.open {
        left: 0;
    }
    .aside .nav-toggler {
        display: flex;
        left: 30px;
    }
    .aside .nav-toggler.open {
        left: 300px;
    }
    .section {
        left: 0;
        padding-left: 40px;
    }
    .section.open {
        left: 270px;
    }
    .section .home-info {
        flex: 0 0 90%;
        max-width: 90%;
    }
    h2.profession {
        font-size: 20px;
        margin: 15px 0;
    }
    .typing {
        font-size: 20px;
    }
    .about .about-content .info-perso .info-item p span {
        display: block;
        margin-left: 0;
    }
    .actu .actu-item  {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 990px) {
    .logiciel .logiciel-item,
    .actu .actu-item  {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .article .actu-item  {
        flex: 0 0 90%;
        max-width: 90%;
    }

    .home .home-img {
        display: none;
    }
    .about .about-content .formation,
    .about .about-content .experiences,
    .contact .contact-info-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home-info .fa-linkedin {
        font-size: 60px;
        display: absolute;
        bottom: -15px;
        left: 55%;
    }
    .intro p {
        flex: 0 0 90%;
        max-width: 90%;
    }
    .intro img{
        flex: 0 0 90%;
        max-width: 70%;
        float: none;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 770px) {
    .about .about-content .skills,
    .info-perso .info-item,
    .about .about-content .info-perso .info-item,
    .recherche .search-item,
    .logiciel .logiciel-item,
    .actu .actu-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home-info .fa-linkedin {
        font-size: 60px;
        display: absolute;
        bottom: 40px;
        position: relative; /* postulat de départ */
        left: 40%; /* à 50%/50% du parent référent */
    }
    .about .about-content .about-text  {
        flex: 0 0 70%;
        max-width: 70%;
    }
}

@media (max-width: 400px) {
    .about .about-content .formation,
    .about .about-content .experiences,
    .about .about-content .skills,
    .info-perso .info-item,
    .about .about-content .info-perso .info-item,
    .recherche .search-item,
    .logiciel .logiciel-item,
    .actu .actu-item
    {
        flex: 0 0 80%;
        max-width: 80%;
    }
    .breadcrumb{
        font-size: 12px;
    }
}