/*---font-family: 'Abril Fatface', cursive;----*/
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
/**----font-family: 'Poppins', sans-serif;---*/
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
/*-----------------variable-----*/
/**Mixin***/
/*-----------------globale-----*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f1f1f1;
}

/*****--NavBarVerticale--***/
.nav-gauche {
  width: 300px;
  height: 100vh;
  min-height: 800px;
  background-color: #333333;
  position: fixed;
  top: 0;
  left: 0;
  border-right: 1px dashed #f1f1f1;
  z-index: 5;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.nav-gauche .blocs-menu {
  width: 100%;
  height: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f1f1f1;
  /*----portrait-----*/
}

.nav-gauche .blocs-menu span {
  font-size: 21px;
  text-align: center;
  position: relative;
  font-weight: 700;
  cursor: pointer;
}

.nav-gauche .blocs-menu span a {
  text-decoration: none;
  color: #f1f1f1;
}

.nav-gauche .blocs-menu span::after {
  content: "";
  display: block;
  width: 0px;
  margin: 5px auto 0 auto;
  background: #aaa;
  height: 2px;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.nav-gauche .blocs-menu span:hover::after {
  width: 100%;
}

.nav-gauche .blocs-menu:nth-child(1) {
  width: 100%;
  height: 25%;
  background: #333;
}

.nav-gauche .blocs-menu:nth-child(1) .cercle-portrait {
  margin: 20px 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  -webkit-box-shadow: 0 0 0 0 rgba(165, 161, 161, 0.3);
          box-shadow: 0 0 0 0 rgba(165, 161, 161, 0.3);
  -webkit-animation: pulse 1.3s infinite;
          animation: pulse 1.3s infinite;
}

.nav-gauche .blocs-menu:nth-child(1) .cercle-portrait a img {
  width: 100px;
  position: absolute;
  top: 15%;
  left: 18%;
  -webkit-transform: translate(-50% -50%);
          transform: translate(-50% -50%);
  border-radius: 50%;
  cursor: pointer;
}

.nav-gauche .blocs-menu:nth-child(1) .cercle-portrait a img:hover {
  -webkit-box-shadow: 10px 10px 10px 10px rgba(80, 80, 88, 0.5), -12px -12px 12px 12px rgba(80, 80, 88, 0.5);
          box-shadow: 10px 10px 10px 10px rgba(80, 80, 88, 0.5), -12px -12px 12px 12px rgba(80, 80, 88, 0.5);
}

.nav-gauche .blocs-menu .logo-cercle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  bottom: 40px;
}

.nav-gauche .blocs-menu .logo-cercle a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-gauche .blocs-menu .logo-cercle a img {
  width: 70px;
  position: absolute;
  cursor: pointer;
}

.nav-gauche .blocs-menu .logo-cercle a img:hover {
  -webkit-box-shadow: 12px 12px 12px 12px rgba(80, 80, 88, 0.5), -12px -12px 12px 12px rgba(80, 80, 88, 0.5);
          box-shadow: 12px 12px 12px 12px rgba(80, 80, 88, 0.5), -12px -12px 12px 12px rgba(80, 80, 88, 0.5);
}

@media screen and (max-width: 1300px) {
  .nav-gauche {
    left: -300px !important;
    width: 250px;
    min-height: 300px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav-gauche .blocs-menu:nth-child(1) {
    display: none;
  }
  .nav-gauche .blocs-menu:nth-child(7) {
    display: none;
  }
  .menu-visible {
    left: 0px !important;
  }
  .btn-rond-menu {
    background: #333333;
    width: 70px;
    height: 70px;
    border: solid 1px #f1f1f1;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10;
  }
  .btn-rond-menu .cont-ligne {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .btn-rond-menu .cont-ligne .ligne-unique {
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .btn-rond-menu .cont-ligne .ligne-unique::before {
    content: '';
    position: absolute;
    bottom: 10px;
    background: white;
    width: 100%;
    height: 4px;
    border-radius: 5px;
  }
  .btn-rond-menu .cont-ligne .ligne-unique::after {
    content: '';
    position: absolute;
    top: 10px;
    background: white;
    width: 100%;
    height: 4px;
    border-radius: 5px;
  }
  .cont-ligne.active .ligne-unique::after {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: top 300ms ease, -webkit-transform 300ms 300ms ease;
    transition: top 300ms ease, -webkit-transform 300ms 300ms ease;
    transition: top 300ms ease, transform 300ms 300ms ease;
    transition: top 300ms ease, transform 300ms 300ms ease, -webkit-transform 300ms 300ms ease;
  }
  .cont-ligne.active .ligne-unique {
    background: transparent;
  }
  .cont-ligne.active .ligne-unique::before {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: bottom 300ms ease, -webkit-transform 300ms 300ms ease;
    transition: bottom 300ms ease, -webkit-transform 300ms 300ms ease;
    transition: bottom 300ms ease, transform 300ms 300ms ease;
    transition: bottom 300ms ease, transform 300ms 300ms ease, -webkit-transform 300ms 300ms ease;
  }
}

/* **Animation-------*/
@-webkit-keyframes pulse {
  to {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.01);
            box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.01);
  }
}
@keyframes pulse {
  to {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.01);
            box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.01);
  }
}

/*-----------------------Accueil-----------------------*/
.accueil {
  background: url("../img/ressources/accueil.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  height: 100vh;
  min-height: 900px;
  width: calc(100% - 300px);
  position: relative;
  margin-left: auto;
}

.accueil h1 {
  font-size: 90px;
  font-family: 'Abril Fatface', cursive;
  margin: 0 60px;
  padding-top: 210px;
}

.accueil .txt-animation {
  font-size: 35px;
  margin: 10px 0 10px 60px;
}

.accueil .btn-acc {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 200px;
  height: 50px;
  text-decoration: none;
  background: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f1f1f1;
  margin: 10px 0 0 0;
  border-radius: 2px;
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.accueil .btn-acc:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.accueil .btn-acc1 {
  margin: 10px 0 0 60px;
}

.accueil .btn-acc2 {
  background: transparent;
  border: 2px solid black;
  color: black;
  font-weight: 700;
}

.accueil .medias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 60px;
  margin-top: 30px;
}

.accueil .medias .media {
  width: 60px;
  height: 60px;
  background: #333;
  border-radius: 50%;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.accueil .medias .media2 {
  background: transparent;
  border: 2px solid #333;
}

.accueil .medias .icone-medias {
  width: 30px;
}

.accueil .btn-rond {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #333;
  position: absolute;
  bottom: 20px;
  left: 60px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 #333;
          box-shadow: 0 0 0 0 #333;
  -webkit-animation: pulse 1.3s infinite;
          animation: pulse 1.3s infinite;
}

.accueil .btn-rond .logo-btn-rond-acc {
  width: 35px;
}

/* **Animation-------*/
@keyframes pulse {
  to {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.01);
            box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.01);
  }
}

/**--Medias Acceuil---*/
@media screen and (max-width: 1300px) {
  .accueil {
    width: 100%;
    background-position: center;
  }
}

@media screen and (max-width: 1000px) {
  .accueil {
    height: 700px;
    min-height: 0;
  }
  .accueil h1 {
    font-size: 70px;
    margin: 0 30px 0 30px;
    padding-top: 100px;
  }
  .accueil p.txt-animation {
    font-size: 20px;
    margin: 20px 0 20px 30px;
  }
  .accueil .btn-acc1 {
    margin: 10px 0 0 30px;
  }
  .accueil .medias {
    margin-left: 30px;
  }
  .accueil .btn-rond {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .accueil {
    height: 600px;
    min-height: 0;
  }
  .accueil h1 {
    font-size: 50px;
    margin: 0 20px 0 20px;
  }
  .accueil p.txt-animation {
    font-size: 20px;
    margin: 10px 0 10px 20px;
  }
}

@media screen and (max-width: 380px) {
  .accueil h1 {
    font-size: 35px;
  }
  .accueil p.txt-animation {
    font-size: 18px;
  }
  .accueil .btn-acc {
    width: 120px;
    margin: 10px 0 0 30px;
    height: 40px;
    font-size: 13px;
  }
  .accueil .btn-acc1 {
    margin: 10px 0 0 30px;
  }
  .accueil .medias {
    width: 40px;
    height: 40px;
  }
  .accueil .icone-medias {
    width: 20px;
  }
}

@media screen and (max-width: 500px) {
  .accueil p.txt-animation {
    font-size: 15px;
  }
}

/*------Section Presentation----*/
.presentation {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px dashed #333;
  border-bottom: 1px dashed #333;
  color: #e7e7e7;
}

.presentation h2.titre-pres {
  font-size: 40px;
  text-align: center;
  margin: 50px 0 70px 0;
  padding-left: 300px;
}

.presentation .container-presentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 50px 0 130px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 300px;
}

.presentation .container-presentation .fond-forme {
  background: #485563;
  width: 2300px;
  height: 1000px;
  background-image: -webkit-gradient(linear, left top, right top, from(#29323c), to(#485563));
  background-image: linear-gradient(to right, #29323c, #485563);
  position: absolute;
  -webkit-transform: rotate(-45deg) translateX(100px) translateY(-15px);
          transform: rotate(-45deg) translateX(100px) translateY(-15px);
  z-index: -1;
}

.presentation .container-presentation .pres-gauche {
  width: 600px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 50px;
  padding-left: 120px;
  padding-top: 20px;
}

.presentation .container-presentation .pres-gauche h3 {
  text-align: center;
  font-size: 25px;
  letter-spacing: 2px;
}

.presentation .container-presentation .pres-gauche hr {
  width: 60px;
  margin: 0 auto 20px auto;
}

.presentation .container-presentation .pres-gauche p {
  text-align: justify;
}

.presentation .container-presentation .pres-droite {
  width: 600px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.presentation .container-presentation .pres-droite ul.liste-presentation {
  list-style-type: none;
  padding: 10px 0 50px 110px;
}

.presentation .container-presentation .pres-droite ul.liste-presentation li.item-liste span.chiffre-style {
  font-family: 'Abril Fatface', sans-serif;
  font-size: 40px;
}

.presentation .container-presentation .pres-droite ul.liste-presentation li.item-liste p.txt-liste {
  font-size: 27px;
  display: inline;
}

/* Medias Presentation */
@media screen and (max-width: 1300px) {
  .presentation .container-presentation {
    padding-left: 0px;
  }
  .presentation .titre-pres {
    padding-left: 0px;
  }
}

@media screen and (max-width: 1100px) {
  .presentation h2.titre-pres {
    margin: 0 0 20px 0;
    padding-top: 50px;
    padding-left: 0;
  }
  .presentation .container-presentation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .presentation .container-presentation .fond-forme {
    width: 100%;
    height: 150%;
    -webkit-transform: rotate(0) translateY(0) translateX(0);
            transform: rotate(0) translateY(0) translateX(0);
  }
  .presentation .container-presentation .pres-gauche {
    width: 80%;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    margin-bottom: 10px;
    padding: 20px 0;
  }
  .presentation .container-presentation .pres-gauche h3 {
    font-size: 20px;
    letter-spacing: 0px;
  }
  .presentation .container-presentation .pres-gauche p {
    font-size: 16px;
  }
  .presentation .container-presentation .pres-droite {
    width: 80%;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .presentation .container-presentation .pres-droite ul.liste-presentation {
    padding: 0;
  }
}

@media screen and (max-width: 700px) {
  .presentation .titre-pres {
    font-size: 24px;
    margin: 0 10px;
  }
  .presentation .container-presentation {
    margin-top: 10px;
    margin-bottom: 70px;
  }
  .presentation .container-presentation .pres-gauche h3 {
    font-size: 20px;
  }
  .presentation .pres-droite .liste-presentation .item-liste .chiffre-style {
    font-size: 25px;
  }
  .presentation .pres-droite .liste-presentation .item-liste span {
    font-size: 22px !important;
  }
  .presentation .pres-droite .liste-presentation .item-liste p.txt-liste {
    font-size: 15px !important;
  }
}

/*----Section portfolio"----*/
.portfolio {
  width: 100%;
  /* Media portfolio */
}

.portfolio h2 {
  text-align: center;
  padding: 50px 0;
  font-size: 50px;
  padding-left: 300px;
}

.portfolio .cont-portfolio {
  width: 100%;
  height: auto;
  margin: 0 auto 100px auto;
  padding-left: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.portfolio .cont-portfolio .item {
  width: 420px;
  height: 400px;
  margin: 20px;
  color: #333;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.portfolio .cont-portfolio .item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.portfolio .cont-portfolio .cont-img-port {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.portfolio .cont-portfolio .cont-img-port img {
  width: 100%;
  height: auto;
}

.portfolio .cont-portfolio h3 {
  padding: 10px 10px 0;
  font-size: 22px;
}

.portfolio .cont-portfolio p {
  padding: 10px 10px 0;
}

.portfolio .cont-portfolio a {
  display: block;
  margin: 10px;
  width: 180px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.portfolio .cont-portfolio a::after {
  content: '';
  height: 240px;
  width: 100px;
  background: rgba(255, 255, 255, 0.4);
  display: block;
  position: absolute;
  left: -150px;
  top: -50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.portfolio .cont-portfolio a:hover::after {
  -webkit-transition: -webkit-transform 0.3s 0.1s linear;
  transition: -webkit-transform 0.3s 0.1s linear;
  transition: transform 0.3s 0.1s linear;
  transition: transform 0.3s 0.1s linear, -webkit-transform 0.3s 0.1s linear;
  -webkit-transform: translateX(400px);
          transform: translateX(400px);
}

@media screen and (max-width: 1300px) {
  .portfolio .cont-portfolio {
    padding-left: 0;
  }
  .portfolio .titre-port {
    font-size: 40px;
    margin: 50px 0 70px;
    padding-left: 0;
  }
}

@media screen and (max-width: 500px) {
  .portfolio .titre-port {
    margin: 10px 0;
    padding: 30px 0;
  }
  .portfolio .item {
    height: 420px;
  }
  .portfolio .cont-img-port {
    height: auto;
  }
}

@media screen and (max-width: 340px) {
  .portfolio .item {
    height: 380px;
  }
}

/*------------ Section experience travail --------- */
.travail-exp {
  width: calc(100% - 300px);
  height: auto;
  margin-left: auto;
  padding-bottom: 100px;
}

.titre-travail-exp {
  text-align: center;
  margin: 70px 0;
  font-size: 40px;
  color: #333;
}

.cont-exp-travail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.barre-verticale {
  height: 1000px;
  width: 5px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: -30px;
}

.boule-ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #333;
  background: #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.boule-ico img {
  width: 25px;
}

.flex-cont-bloc-exp {
  width: 800px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  height: 1000px;
  position: relative;
}

.bloc {
  width: 100%;
  height: 200px;
  margin-bottom: 37.5px;
  cursor: pointer;
  border: 1px solid #333;
  position: relative;
}

.contenu-bloc {
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid black;
  background: white;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  position: relative;
  -webkit-transform: translate(10px, -10px);
          transform: translate(10px, -10px);
}

.contenu-bloc:hover {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.bloc1 {
  background: #fb97a0;
}

.bloc2 {
  background: #bfe2ca;
}

.bloc3 {
  background: #a6daef;
}

.bloc4 {
  background: #d0e2ec;
}

.titre-section-bloc {
  font-family: 'Abril Fatface', sans-serif;
  font-size: 25px;
  padding-bottom: 10px;
}

/* Media section travail exp */
@media screen and (max-width: 1300px) {
  .travail-exp {
    width: 100%;
  }
}

@media screen and (max-width: 950px) {
  .barre-verticale {
    height: 1200px;
  }
  .bloc {
    height: 250px;
    margin-bottom: 37.5px;
  }
  .barre-verticale {
    margin-left: 60px;
  }
  .flex-cont-bloc-exp {
    margin-right: 30px;
  }
}

@media screen and (max-width: 520px) {
  .txt-section {
    font-size: 16px;
  }
  .bloc {
    height: 400px;
  }
  .barre-verticale {
    height: 1800px;
  }
}

@media screen and (max-width: 380px) {
  .txt-section {
    font-size: 15px;
  }
}
/*# sourceMappingURL=style.css.map */