/*http://html5doctor.com/html-5-reset-stylesheet/*/

@charset "utf-8";

/* Certains éléments contiennent des couleurs de background. A noter que c'est une méthode qui me permet de visualiser mes emplacements. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background-color: pink; */
}


/*-------------------------------------------CHARGEMENT-----------------------------------------*/

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFC513;
    /* background-color: white; */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.loader {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 10%;
    position: relative;
    border: 4px solid #202020;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #202020;
    overflow: hidden;
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(180deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* @keyframes loader-inner{

  0%, 75%, 100% {
    height: 100%;
  }

  25%, 50% {
    height: 0%;}

    } */

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}


/* --------------------------------  SOURIS  -------------------------------- */

.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid #c6c6c6;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
    z-index: 10;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #c6c6c6;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .15s;
    z-index: 10;
}


/* .content:hover ~ .cursor{
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #c6c6c6;
  opacity: .5;

}

.content:hover ~ .cursor2{
  opacity: 0;

} */


/* --------------------------------  Premier ARRIERE PLAN  -------------------------------- */


/* mise en forme de l'arrière plan */

#section_one {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: purple; */
    background-image: url(../img/black_bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* --------------------------------  MENU  -------------------------------- */

header {
    /* position: absolute; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #202020;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: .3s ease;
}

header.sticky {
    padding: 10px 100px;
    /* background-color: orange; */
    background: #202020;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}

header.sticky .mainlogo,
header.sticky ul li a {
    color: white;
}

.titre_header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 45px 100px;
}


/* mise en forme du logo */

header .mainlogo {
    position: relative;
    max-width: 120px;
}

header ul {
    position: relative;
    display: flex;
    /* background-color: purple; */
}

header ul li {
    list-style: none;
    /* background-color: brown; */
    /* display: inline-block; */
}

header ul li a {
    display: inline-block;
    margin-left: 60px;
    text-decoration: none;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    /* font-weight: 500; */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    /* background: orange; */
    position: relative;
}


/* mise en forme des traits sous le menu */

.btnm::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.23rem;
    left: 0;
    bottom: -5px;
    background: white;
    border-radius: 30px;
}


/* .cool-link:hover,
.cool-link:after{
  font-family: 'Oswald', sans-serif;
  color: #FFC513;
} */

.cool-link:hover,
.cool-link.active {
    font-family: 'Oswald', sans-serif;
    /* font-weight: 500; */
    color: #FFC513;
}

.cool-link::after {
    transform: scale(0, 1);
    transition: transform 0.3s ease;
}

.cool-link:hover::after,
.cool-link.active::after {
    transform: scale(0.5, 0.5);
}


/* -------------------------------mise en forme burger menu ---------------------*/

nav {
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px;
}

.burger {
    float: right;
    line-height: 20px;
    display: none;
    cursor: pointer;
    margin-left: 20px;
}


/* --------------------------------  PARTIE ALEXIA AKIBODE  -------------------------------- */

.titre_header .content {
    /* background-color: green; */
    width: 1000px;
    height: 190px;
    margin-top: 80px;
    /* margin-left: 150px; */
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 50%);
}

.myname {
    font-size: 150px;
    font-family: 'Oswald', sans-serif;
    color: white;
    margin-bottom: -10px;
}

.content .textBox .myname span {
    font-size: 150px;
    /* -webkit-text-stroke: 1px red; */
    color: white;
    -webkit-text-fill-color: #181818;
    -webkit-text-stroke-width: 2px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}


/* .content .textBox .myname span:hover{
  font-size: 150px;
  color: white;
  -webkit-text-fill-color: #FFC513;
  -webkit-text-stroke-width: 2px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
} */

.content .textBox p {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 18px;
    color: white;
    letter-spacing: 1.2px;
    margin-bottom: 45px;
    /* background-color: #5F9EA0; */
}


/* --------------------------------  CONTACT ET CV BOUTON  -------------------------------- */


/* mise en forme des boutons */

.textBox .hire-btn {
    margin-top: 10px;
    width: 210px;
    height: 50px;
    padding-left: 10px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    margin: 0px 10px;
    /* background: orange; */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.textBox .down-cv {
    margin-top: 10px;
    width: 270px;
    height: 50px;
    padding-left: 10px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    margin: 0px 10px;
    /* background: blue; */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* mise en forme bouton contacter */

.hire-btn {
    border: 1.5px solid white;
    color: white;
    background-color: #202020;
    /* text-transform: uppercase; */
}


/* mise en forme bouton cv */

.down-cv {
    border: 1.5px solid #202020;
    background-color: white;
    color: #202020;
    border: none;
    /* text-transform: uppercase; */
}


/* MISE EN FORME DES ICONES SUR LES CONTACTS */

.logo_contact {
    padding: 8px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: white;
    margin-left: 10px;
    color: #202020;
}

.logo_contact i {
    font-size: 16px;
}

.logo_cv {
    padding: 8px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: #202020;
    margin-left: 10px;
    color: white;
}

.logo_cv i {
    font-size: 15px;
}


/* ANIMATION BOUTONS HOVER */

.hire-btn:hover {
    border: 1.5px solid #202020;
    color: #202020;
    background-color: #FFC513;
    /* border: 1.5px solid #FFC513;
  color: #FFC513;
  background-color: #202020; */
}

.down-cv:hover {
    /* color: white; */
    background-color: #FFC513;
    border: black;
}

.down-cv a {
    text-decoration: none;
    color: #202020;
}

.hire-btn a {
    text-decoration: none;
    color: white;
}


/* --------------------------------  RESEAUX SOCIAUX  -------------------------------- */

.rs {
    /* background-color: #6495ED; */
    position: relative;
    top: 35%;
    left: 30px;
    width: 70px;
    height: 310px;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* filter: invert(1); */
}

.reseaux {
    position: absolute;
    top: 3px;
}

.gotors {
    line-height: 50px;
    margin-bottom: 15px;
    width: 45px;
    height: 45px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    color: black;
    bottom: 40px;
    right: 50px;
    flex-direction: column;
}

.gotors i {
    font-size: 25px;
}

.reseaux li {
    list-style: none;
}

.reseaux li a:hover {
    transform: translate(0, -1px);
    transition: transform 0.2s ease;
}

.gotors:hover {
    background-color: #FFC513;
    /* color: white; */
}

.rs p {
    transform: rotate(-90deg);
    border-radius: 20%;
    margin: 80px 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1px;
    color: white;
    position: absolute;
    top: 57%;
}


/* mise en forme de la ligne de décoration */

.rs .line {
    border-radius: 10px;
    border-left: 35px solid white;
    position: absolute;
    height: 2px;
    transform: rotate(-90deg);
    text-align: center;
    top: 65%;
}

.download {
    /* background-color: purple; */
}


/* --------------------------------  BOUTTON POUR REMONTER EN HAUT DE LA PAGE  -------------------------------- */

.gotop {
    position: fixed;
    line-height: 40px;
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10%;
    color: #202020;
    /* bottom: 40px; */
    bottom: -20%;
    right: 50px;
    z-index: 5;
    border: 1px solid #202020;
    visibility: hidden;
    transition: .4s;
    padding-top: 5px;
}

.gotop .fas {
    margin: 3px;
    font-size: 20px;
    color: #202020;
}

.gotop:hover {
    background-color: #FFC513;
    /* border: 1px solid #FFC513; */
    border: none;
}

.show-scroll {
    visibility: visible;
    bottom: 2rem;
}


/* --------------------------------  BOUTTON DEROULEZ  -------------------------------- */

.scroll {
    /* background-color: red; */
    position: absolute;
    left: 50%;
    bottom: 70px;
    height: 40px;
    width: 30px;
    animation: scroll 3s ease infinite;
}

.scroll img {
    width: 40px;
    height: 40px;
    margin: 2px;
    /* display: block; */
    transform: translate(-50%, 50%);
}

@keyframes scroll {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.scrolltext {
    /* background-color: purple; */
    position: absolute;
    left: 50%;
    bottom: 20px;
    height: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    transform: translate(-50%, 50%);
}


/* --------------------------------  Deuxième ARRIERE PLAN  -------------------------------- */


/* mise en forme de l'arrière plan */

#defilement_projets {
    margin: 0;
    padding: 0;
    height: 20vh;
    overflow: hidden;
    background-color: white;
    align-items: center;
    /* background-image: url(img/black_bg_3.jpg);
    background-size: cover; */
    position: relative;
}

.title_mesprojets1 {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 45px;
    color: #202020;
    white-space: nowrap;
    right: 50px;
    letter-spacing: 1.5px;
    /* background-color: green; */
}

.title_mesprojets1:hover {
    color: #FFC513
}

.title_mesprojets2 {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 45px;
    color: #202020;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    white-space: nowrap;
    left: 50px;
    letter-spacing: 1.5px;
    /* background-color: pink; */
}

.title_mesprojets2:hover {
    color: #FFC513
}


/* --------------------------------  TITRE PROJETS  -------------------------------- */

#titre_projet {
    margin: 0;
    padding: 0;
    height: 11vh;
    overflow: hidden;
    /* background-color: orange; */
    position: relative;
}

.portfolio-part {
    background-color: white;
    width: 100%;
    position: absolute;
    top: -38%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 50%);
}


/* titre projets récents */

.section_sub {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 18px;
}


/* titre mes projets */

.section_title {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* margin-top: 17px; */
}


/* PARTIE PROJETS PORTFOLIO */

#section_two {
    position: relative;
    width: 100%;
    height: 85vh;
    padding: 0px 100px;
    /* display: flex; */
    justify-content: space-between;
    /* align-items: center; */
    background: white;
    background-image: url(../img/porte.jpg);
    background-size: cover;
}

#section_two ul {
    display: flex;
    margin-bottom: 15px;
    justify-content: center;
}

#section_two ul li {
    list-style: none;
    /* background: black; */
    padding: 8px 20px;
    margin: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    /* font-family: 'Oswald', sans-serif; */
    font-weight: 300;
    font-size: 18px;
    margin-left: 20px;
    color: #181818;
    border-radius: 50px;
}

#section_two ul li.active {
    background: #181818;
    color: white;
}

#section_two ul li.active:hover {
    background: #FFC513;
    color: black;
}


/* #section_two ul li:hover{
  color: #FFC513;
} */


/* emplacement des cases portfolio */

.portfolio_elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* background-color: darkblue; */
}

.box_portfolio {
    width: 380px;
    height: 32vh;
    background-color: white;
    border: 1px solid #202020;
    border-radius: 1.2rem;
    position: relative;
    margin: 12px;
    overflow: hidden;
}


/* icone noir en savoir plus */

.savoir_icone {
    color: white;
    font-size: 20px;
    display: block;
    text-decoration: none;
    width: 14%;
    height: 6vh;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-radius: 15px 0px 0px;
    background: #181818;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    cursor: pointer;

}

.savoir_icone:hover {
    background-color: #FFC513;
    color: #202020;
}

.savoir_plus{
  transition: .3s ease;
}


/* texte contour en background des blocs portfolio */

.outline_bg_title p {
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 0.5px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 100px;
    color: #D9D9D9;
    text-align: center;
    /* position: relative;
  top: 20%; */
    margin-top: 50px
}

.title_on_bg {
    position: relative;
    margin-top: -123px;
    /* top: 20%; */
}


/* titre noir plein */

.title_on_bg .title_title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 500;
    color: #181818;
    position: relative;
    top: 8px;
    letter-spacing: 0.5px;
}

.title_on_bg .sub_title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: #181818;
}










/* TEXTE QUI SCROLL MON PROFIL  */

#defilement_profil {
    margin: 0;
    padding: 0;
    height: 20vh;
    overflow: hidden;
    /* background-color: white; */
    align-items: center;
    /* background-color: #202020; */
    background-image: url(../img/black_bg_3.jpg);
    background-size: cover;
    position: relative;
}

.title_monprofil1 {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 45px;
    color: white;
    white-space: nowrap;
    right: 50px;
    letter-spacing: 1.5px;
    /* background-color: green; */
}

.title_monprofil1:hover {
    color: #FFC513
}

.title_monprofil2 {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 45px;
    color: white;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    white-space: nowrap;
    left: 50px;
    letter-spacing: 1.5px;
    /* background-color: pink; */
}

.title_monprofil2:hover {
    color: #FFC513
}


/* PARTIE MON PROFIL */

#section_three {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    height: 120vh;
    padding: 25px 100px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    /* background: purple; */
    align-items: center;
    background-image: url(../img/black_bg_2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#titre_apropos {
    margin: 0;
    padding: 0;
    height: 13vh;
    overflow: hidden;
    /* background-color: orange; */
    position: relative;
}

.apropos_part {
    /* background-color: white; */
    width: 100%;
    position: absolute;
    top: -38%;
    left: 50%;
    text-align: center;
    color: white;
    transform: translate(-50%, 50%);
}


/* titre à propos */

.section_title_apropos {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* margin-top: 10px; */
}


/* MOI A PROPOS PARTIE */

#section_moi_apropos {
    /* margin-top: 20px; */
    padding: 0;
    height: 40vh;
    overflow: hidden;
    /* background-color: darkblue; */
    position: relative;
    display: flex;
}

#section_logo_apropos {
    /* background: red; */
    position: relative;
    width: 55%;
    height: 40vh;
}

#section_texte_apropos {
    /* background: brown; */
    position: relative;
    width: 45%;
    height: 40vh;
}


/* mise en forme du logo */

.logo_apropos {
    /* background-color: blue; */
    position: relative;
    width: 100%;
    height: 45vh;
}

.logo_apropos .mainlogo_2 {
    position: absolute;
    max-width: 500px;
    top: -12%;
    left: 50%;
    /* text-align: center; */
    transform: translate(-50%, 50%);
    z-index: 1;
}


/* Mise en forme bouton interactif */

.zone_compet {
    /* background: lightgreen; */
    position: relative;
    top: 14%;
    /* width: 100%; */
    height: 30vh;
    z-index: 2;
}

.cercle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    /* background: #FFC513; */
    position: relative;
    z-index: 2;
    background: white;
    /* background-color: rgba(255, 255, 255, 0.5); */
    border: 1.5px solid white;
    background-clip: content-box;
    padding: 2px;
}

.cercle:hover {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background: #FFC513;
    position: relative;
    z-index: 2;
    border: 2px solid white;
    background-clip: content-box;
    padding: 2px;
}

.fa-plus {
    color: #202020;
    padding: 3px;
}


/* positionnement des boutons */

.cercle_1 {
    left: 32%;
    top: 12%;
    position: absolute;
}

.cercle_2 {
    left: 60%;
    top: 45%;
    position: absolute;
}

.cercle_3 {
    left: 70%;
    top: 85%;
    position: absolute;
}

.cercle_4 {
    left: 12%;
    top: 42%;
    position: absolute;
}

.cercle_5 {
    left: 40%;
    top: 48%;
    position: absolute;
}

.cercle_6 {
    left: 17%;
    top: 90%;
    position: absolute;
}

.cercle_7 {
    left: 82%;
    top: 50%;
    position: absolute;
}

.cercle_8 {
    left: 50%;
    top: 70%;
    position: absolute;
}

.cercle_9 {
    left: 27%;
    top: 60%;
    position: absolute;
}


/* animation hover cercle competences */

.cercle a {
    position: relative;
    text-decoration: none;
}

.cercle span {
    position: absolute;
    height: 40px;
    min-width: 150px;
    top: -350%;
    left: 35%;
    transform: translate(-50%, -20px);
    line-height: 40px;
    text-align: center;
    color: #202020;
    border-radius: 25px;
    background: #FFC513;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 4;
}

.cercle a i:hover span {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.cercle span:before {
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    background: #FFC513;
    bottom: -6px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    z-index: -1;
}


/* bouton télécharger */

.section_down_cv {
    /* background: pink; */
    position: relative;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 50px;
}

.section_down_cv button {
    /* margin-top: 10px; */
    width: 270px;
    height: 50px;
    padding-left: 10px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    /* margin: 0px 10px; */
    /* background: blue; */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    float: right;
}


/* TEXTE DE PRESENTATION DROITE */

.texte_apropos {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.texte_apropos {
    /* background: green; */
    position: relative;
    width: 100%;
    height: 25vh;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-align: justify;
    /* padding: 20px 30px; */
    /* column-count: 2; */
    color: white;
    line-height: 26px;
}

.moi_gras {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    /* color: red; */
}

.moi_gras:hover {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #FFC513;
    letter-spacing: 0.5px;
}

.moi_italic {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
}

.moi_italic:hover {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #FFC513;
    letter-spacing: 0.5px;
}


/* BOUTON CV */

#section_bouton_cv {
    overflow: hidden;
    /* background-color: yellow; */
    position: relative;
}


/* COMPETENCES PARTIE */

#section_mescompetences {
    margin-top: 30px;
    padding: 0;
    height: 45vh;
    overflow: hidden;
    /* background-color: pink; */
    position: relative;
    /* display: flex; */
}

#section_titre_competences {
    width: 100%;
    height: 5vh;
    /* background-color: grey; */
    position: relative;
    display: flex;
}

.titre_competences {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
}

#section_box_competences {
    width: 100%;
    height: 5vh;
    /* background-color: red; */
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.box_competences {
    width: 270px;
    height: 35vh;
    background-color: #202020;
    border: 1px solid white;
    border-radius: 1.2rem;
    position: relative;
    /* margin: 12px; */
    overflow: hidden;
}


/* .box_competences:hover{
  width: 270px;
  height: 35vh;
  background-color: #FFC513;
  border: 1px solid white;
  border-radius: 1.2rem;
  position: relative;
  overflow: hidden;
} */


/* Logo COMPETENCES */

.design_graphique_logo {
    /* background-color: orange; */
    width: 100%;
    height: 5vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.logo_dg {
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: white;
    /* margin-left: 10px; */
    color: #202020;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
}

.logo_dg i {
    font-size: 20px;
}


/* TITRE COMPETENCES */

.design_graphique_title {
    /* background-color: yellow; */
    width: 100%;
    height: 5vh;
    margin-top: 30px;
}


/* TEXTE COMPETENCES */

.design_graphique_texte {
    /* background-color: brown; */
    width: 100%;
    height: 20vh;
    color: white;
}

.design_graphique_title h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    line-height: 32px;
    position: relative;
    bottom: 13px;
    color: white;
    letter-spacing: 1px;
}

.design_graphique_title h1:hover {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    line-height: 32px;
    position: relative;
    bottom: 13px;
    color: #FFC513;
    letter-spacing: 1px;
}

.design_graphique_texte p {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    margin-top: 33px;
    color: white;
}









/* ---------------------------- PARTIE FOOTER -----------------------*/

#section_footer {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    /* height: 40vh; */
    padding: 0px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../img/footer_elements.jpg);
    background-size: cover;
    /* background: orange; */
}


/* PARTIE FOOTER GAUCHE */

#section_footer_gauche {
    /* background: blue; */
    position: relative;
    width: 50%;
    height: 28vh;
}

.section_footer_gauche_1 {
    /* background: pink; */
    position: relative;
    width: 100%;
}

.section_footer_gauche_2 {
    /* background: brown; */
    position: relative;
    width: 100%;
}

.section_footer_gauche_3 {
    /* background: purple; */
    position: relative;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 50px;
}

.section_footer_gauche_4 {
    /* background: green; */
    position: relative;
    width: 100%;
}

.dites_bonjour {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 42px;
    margin-top: 30px;
}

.save_mail {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
}


/* mise en forme adresse mail */

.email_btn {
    border: 1.5px solid #202020;
    color: white;
    background-color: #202020;
    padding: 8px;
    margin-right: 5px;
    /* font-weight: 600; */
    /* text-transform: uppercase; */
}

.email_btn:hover {
    border: 1.5px solid #FFC513;
    color: #202020;
    background-color: #FFC513;
    font-weight: 600;
}

.logo_mail {
    padding: 8px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: white;
    margin-left: 30px;
    color: #202020;
}

.logo_mail i {
    font-size: 16px;
}

.section_footer_gauche_3 button {
    /* width: 200px; */
    height: 48px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    /* background: blue; */
    cursor: pointer;
    letter-spacing: 0.3px;
    padding-left: 20px;
}

.copy_right {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3px;
}


/* PARTIE DROITE FOOTER */

#section_footer_droite {
    /* background: red; */
    position: relative;
    width: 50%;
    height: 28vh;
}

.section_footer_droite_1 {
    /* background: pink; */
    position: relative;
    width: 100%;
}

.ich_bin {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-align: right;
    margin-top: 50px;
    margin-bottom: 15px;
}

.alexia_footer,
.monportfolio_footer {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: right;
    margin-top: 50px;
    margin-bottom: 15px;
}


/* .alexia_footer:hover,
.monportfolio_footer:hover{
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: right;
  margin-top: 50px;
  margin-bottom: 15px;
  color: #FFC513;
} */

.section_footer_droite_2 {
    /* background: brown; */
    position: relative;
    width: 100%;
}

.folow_me {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: right;
}


/* mise en forme réseaux sociaux footer */

.rs_footer {
    /* background-color: #6495ED; */
    position: relative;
    float: right;
    /* top: 35%;
  left: 30px;
  width: 70px;
  height: 310px;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
    /* filter: invert(1); */
}

.reseaux_footer {
    /* position: absolute;
    top: 3px; */
    display: flex;
    margin-top: 25px;
}

.gotors_footer {
    /* line-height: 50px; */
    /* margin-bottom: 20px; */
    margin-left: 20px;
    width: 40px;
    height: 40px;
    background: #202020;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    color: white;
    /* bottom: 40px;
  right: 50px;
  flex-direction: column; */
    text-align: right;
}

.gotors_footer i {
    font-size: 20px;
}

.reseaux_footer li {
    list-style: none;
}

.reseaux_footer li a:hover {
    transform: translate(0, -1px);
    transition: transform 0.2s ease;
}

.gotors_footer:hover {
    background-color: #FFC513;
    color: #202020;
}


/* footer copyright */

#section_footer_centre {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    height: 10vh;
    padding: 0px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-image: url(../img/footer_elements.jpg);
  background-size: cover; */
    background: white;
}



















/* --------------------------------  MEDIA QUERIES  -------------------------------- */


/* version desktop */

@media screen and (min-width: 1024px) {
  html,
  body {
      overflow-x: hidden;
  }
}


/* -----------------------------------version tablette--------------------------------- */

@media screen and (min-width: 768px) and (max-width: 1023px) {
  html,
  body {
      overflow-x: hidden;
  }



/* Bar du menu */
  header{
    padding: 15px 20px;
  }

  header ul li a {
    font-size: 20px;
  }


/* Titre Alexia AKIBODE   */
  h1 {
      display: flex;
      flex-direction: column;
  }

  .rs {
      display: none;
  }

  .myname{
    margin-bottom: 20px;
  }


  /* -------------Partie à propos------------ */
  #section_three {
      padding: 25px 20px;
      /* display: flex; */
      justify-content: space-between;
      height: 140vh;
  }
  /* partie texte et logo alexia */
  #section_moi_apropos {
      height: 30vh;
  }
  /* dispartion du logo Alexia*/
  #section_logo_apropos {
      display: none;
  }
  /* mise en forme de texte présentation + titre*/
  #section_texte_apropos {
      width: auto;
  }

  .texte_apropos{
    font-size: 18px;
  }

  .box_competences{
    margin-bottom: 30px;
  }

  /* aligner les elements des box */
  .design_graphique_logo{
    margin-top: 50px;
  }

  #section_mescompetences{
    height: 85vh;
  }

  #section_box_competences{
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .titre_competences{
    font-size: 25px;
  }


  /* scroll des mots */
  #defilement_projets,
  #defilement_profil{
    height: 15vh;
  }


  /* --------------------------------------PARTIE PROJETS PORTFOLIO ----------------------------------*/
  #section_two {
      padding: 0px 20px 30px 20px;
      height: 85%;
  }
  .box_portfolio {
      width: 340px;
      height: 20vh;
  }
  /* icone noir en savoir plus */
  .savoir_icone {
      width: 12%;
      height: 5vh;
  }
  /* texte contour en background des blocs portfolio */
  .outline_bg_title p {
      font-size: 90px;
      margin-top: 30px
  }
  .title_on_bg {
      margin-top: -115px;
  }
  /* mise en forme des titres selectif */
  #section_two ul li {
      text-align: center;
      font-size: 15px;
      margin: 0px;
      padding: 15px;
      letter-spacing: 0.5px;
  }

  /* lien actif */
  #section_two ul li.active{
    padding: 15px;
  }






  /* --------------------------------------PARTIE FOOTER ----------------------------------*/
  #section_footer {
      padding: 0 20px;
      flex-direction: column;
  }
  /* partie faites moi un retour */
  #section_footer_gauche {
      text-align: center;
      width: auto;
      height: auto;
  }
  #section_footer_gauche_3 {
      margin-bottom: 30px;
  }
  /* partie réseaux sociaux */
  #section_footer_droite {
      /* text-align: center; */
      width: auto;
      height: auto;
  }
  .ich_bin {
      text-align: center;
      margin: 0 auto;
      margin-bottom: 15px;
  }
  .folow_me {
      text-align: center;
  }

  /* liens réseaux sociaux */
  .rs_footer{
    text-align: center;
    justify-content: center;
    float: none;
  }

  .reseaux_footer{
    justify-content: center;
  }

  /* mise en forme du copy_right */
  #section_footer_centre {
      padding: 0 20px;
      position: absolute;
      text-align: center;
      justify-content: center;
  }


  /* curseur */
  .cursor, .cursor2{
    display: none;
  }



}









/* -------------------------------version smartphone ---------------------------------*/

@media screen and (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

/* bouton remontez en haut page */
    .gotop{
      right: 20px;
    }

    /* curseur */
    .cursor, .cursor2{
      display: none;
    }

    /* logo */
    header .mainlogo{
      max-width: 100px;
    }


    /* -----------------------------------------NAV BAR----------------------------------------------------- */
    header {
        padding: 10px 10px;
    }



    /* burger menu */
    .burger {
        display: block;
    }

    /* mise en forme menu déroulant */

    .navbar ul {
      position: absolute;
      right: 0px;
      /* height: 100vh; */
      width: 100%;
      top: 60px;
      left: 0;
      display: flex;
      list-style: none;
      background-color: #202020;
      text-align: center;
      transition: transform 0.5s ease;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(100%);
      /* overflow-x: hidden; */
      /*On décale  le menu par défaut sur la droite*/
      /* transition: transform 1s ease; */
    }

/* Version du professeur */
    /* .navbar ul {
      position: fixed;
      right: 0px;
      height: 100vh;
      width: 100%;
      top: 60px;
      left: 0;
      background-color: #202020;
      text-align: center;
      transition: transform 0.5s ease-in;
      flex-direction: column;
      justify-content: center;
      transform: translateX(100%);
      On décale  le menu par défaut sur la droite
      transition: transform 1s ease;
    } */


    .navbar ul.visible {
        /*On remet le mnu en visible*/
        transform: translateX(0);
    }
    .navbar ul li {
        /* opacity: 0; */
        display: block;
    }
    .navbar ul li a {
        font-size: 25px;
        margin-left: 0px;
        padding: 30px;
        text-decoration: none;
    }
    a:hover,
    a:active {
        background: none;
        /* color: yellow; */
    }
    #check:checked~ul {
        left: 0;
    }

    /* .visible{
      margin-bottom: 30px;
    } */

    /* mise en forme des traits sous le menu */

    .btnm::after {
        background: none;
    }

    .cool-link:hover,
    .cool-link.active {
        font-family: 'Oswald', sans-serif;
        /* font-weight: 500; */
        color: white;
    }







  /* -----------------------PARTIE ALEXIA -------------------------------*/
  .titre_header .content{
    margin-top: -25px;
  }

  .myname{
    margin-bottom: 10px;
    font-size: 90px;
  }

  /* mise en forme akibode */
  .content .textBox .myname span{
    font-size: 90px;
  }

  /* mise en forme des boutons header */
  .content .textBox .myname span{
    display: flex;
    flex-direction: column;
  }

  .textBox .hire-btn{
    margin-bottom: 20px;

  }

  .mon_nom{
    text-align: center;
  }
    /* .header{
        padding: 20px 30px;
      }


      .nav-active{
      transform: translateX(0%);
    } */




    /* -----------------------------------------HEADER-------------------------------- */
    /* partie Alexia AKIBODE */
    #section_one {
        padding: 20px 20px;
    }

    /* titre Alexia */
    h1 {
        display: flex;
        flex-direction: column;
    }

    /* disparition des réseaux sociaux */
    .rs {
        display: none;
    }
    .titre_header .content{
      width: 300px;
    }

    .mon_texte
    {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }


    /* --------------------------------------PARTIE PROJETS PORTFOLIO ----------------------------------*/
    #section_two {
        padding: 0px 20px 30px 20px;
        height: 85%;
    }
    .box_portfolio {
        width: 340px;
        height: 20vh;
    }
    /* icone noir en savoir plus */
    .savoir_icone {
        width: 12%;
        height: 5vh;
    }
    /* texte contour en background des blocs portfolio */
    .outline_bg_title p {
        font-size: 90px;
        margin-top: 11px
    }
    .title_on_bg {
        margin-top: -115px;
    }
    /* mise en forme des titres selectif */
    #section_two ul li {
        text-align: center;
        font-size: 14px;
        margin: 0px;
        padding: 0 0px;
        letter-spacing: 0.5px;
    }

    #section_two ul li.active{
      padding: 10px;
    }





    /* --------------------------------------PARTIE MON PROFIL ----------------------------------*/
    #section_three {
        padding: 25px 20px;
        height: 180vh;
        justify-content: space-between;
    }
    /* partie texte et logo alexia */
    #section_moi_apropos {
        height: 53vh;
    }
    /* dispartion du logo Alexia*/
    #section_logo_apropos {
        display: none;
    }
    /* mise en forme de texte présentation + titre*/
    #section_texte_apropos {
        width: auto;
    }

    .box_competences{
      margin-bottom: 30px;
      width: 150px;
      height: 40vh;
    }

    /* aligner les elements des box */
    .design_graphique_logo{
      margin-top: 50px;
    }

    #section_mescompetences{
      height: 100vh;
    }

    #section_box_competences{
      flex-wrap: wrap;
      justify-content: space-around;
    }

    .design_graphique_title h1{
      font-size: 19px;
    }






    /* --------------------------------------PARTIE FOOTER ----------------------------------*/
    #section_footer {
        padding: 0 20px;
        flex-direction: column;
    }
    /* partie faites moi un retour */
    #section_footer_gauche {
        text-align: center;
        width: auto;
        height: auto;
    }
    #section_footer_gauche_3 {
        margin-bottom: 30px;
    }
    /* partie réseaux sociaux */
    #section_footer_droite {
    /* text-align: center; */
    width: auto;
    height: auto;
    }
    .ich_bin {
        text-align: center;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .folow_me {
        text-align: center;
    }

    /* liens réseaux sociaux */
    .rs_footer{
      text-align: center;
      justify-content: center;
      float: none;
    }

    .reseaux_footer{
      justify-content: center;
    }



    /* mise en forme du copy_right */
    #section_footer_centre {
        padding: 0 20px;
        position: absolute;
        text-align: center;
    }
}
