/*---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;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  display: grid;
  justify-content: end;
  align-content: end;
  min-height: 100vh;
  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;
  transition: all 0.2s ease-out; }
  .nav-gauche .blocs-menu {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: 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;
        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;
        box-shadow: 0 0 0 0 rgba(165, 161, 161, 0.3);
        animation: pulse 1.3s infinite; }
        .nav-gauche .blocs-menu:nth-child(1) .cercle-portrait a img {
          width: 100px;
          position: absolute;
          top: 15%;
          left: 18%;
          transform: translate(-50% -50%);
          border-radius: 50%;
          cursor: pointer; }
          .nav-gauche .blocs-menu:nth-child(1) .cercle-portrait a img:hover {
            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: flex;
        justify-content: 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 {
            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;
    flex-direction: column;
    display: flex;
    justify-content: 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%;
      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%;
        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;
    transform: rotate(45deg);
    transition: top 300ms ease, transform 300ms 300ms ease; }

  .cont-ligne.active .ligne-unique {
    background: transparent; }

  .cont-ligne.active .ligne-unique::before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms ease, transform 300ms 300ms ease; } }
/* **Animation-------*/
@keyframes pulse {
  to {
    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: 70px;
    font-family: 'Abril Fatface', cursive;
    margin: 0 60px;
    padding-top: 210px;
    color: greenyellow; }
  .accueil .txt-animation {
    font-size: 35px;
    margin: 10px 0 10px 60px; }
  .accueil .btn-acc {
    display: inline-flex;
    width: 200px;
    height: 50px;
    text-decoration: none;
    background: #000;
    justify-content: center;
    align-items: center;
    color: #f1f1f1;
    margin: 10px 0 0 0;
    border-radius: 2px;
    font-size: 18px;
    transition: transform 0.2s ease-in-out; }
    .accueil .btn-acc:hover {
      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: flex;
    margin-left: 60px;
    margin-top: 30px; }
    .accueil .medias .media {
      width: 60px;
      height: 60px;
      background: #333;
      border-radius: 50%;
      margin-right: 10px;
      display: flex;
      justify-content: 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: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    position: absolute;
    bottom: 20px;
    left: 60px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 0 0 #333;
    animation: pulse 1.3s infinite; }
    .accueil .btn-rond .logo-btn-rond-acc {
      width: 35px; }

/* **Animation-------*/
@keyframes pulse {
  to {
    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: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px 0 130px 0;
    flex-shrink: 0;
    padding-left: 300px; }
    .presentation .container-presentation .fond-forme {
      background: #485563;
      width: 2300px;
      height: 1000px;
      background-image: linear-gradient(to right, #29323c, #485563);
      position: absolute;
      transform: rotate(-45deg) translateX(100px) translateY(-15px);
      z-index: -1; }
    .presentation .container-presentation .pres-gauche {
      width: 600px;
      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;
      flex-shrink: 0;
      display: flex;
      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 {
    flex-direction: column; }
    .presentation .container-presentation .fond-forme {
      width: 100%;
      height: 150%;
      transform: rotate(0) translateY(0) translateX(0); }
    .presentation .container-presentation .pres-gauche {
      width: 80%;
      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%;
      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: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; }
    .portfolio .cont-portfolio .item {
      width: 420px;
      height: 400px;
      margin: 20px;
      color: #333;
      transition: transform 0.3s ease-out;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }
      .portfolio .cont-portfolio .item:hover {
        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;
        transform: rotate(-45deg); }
      .portfolio .cont-portfolio a:hover::after {
        transition: transform 0.3s 0.1s linear;
        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: flex;
  justify-content: center; }

.barre-verticale {
  height: 1000px;
  width: 5px;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  left: -30px; }

.boule-ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #333;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center; }

.boule-ico img {
  width: 25px; }

.flex-cont-bloc-exp {
  width: 800px;
  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;
  transition: transform 0.25s ease-in-out;
  position: relative;
  transform: translate(10px, -10px); }

.contenu-bloc:hover {
  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; } }
/*
    Created on : 9 avr. 2021, 22:32:51
    Author     : ibnohani mohammed
*/
footer {
  /* display: grid;
   justify-content: end;
   align-content: end;
   min-height: 100vh; in body*/
  position: relative;
  margin-left: 300px;
  width: 1173px;
  height: auto;
  padding: 50px 100px;
  background: #3044a5; }
  footer .container {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px; }
    footer .container .sec .sci {
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(4, 50px);
      grid-gap: 10px; }
      footer .container .sec .sci li {
        list-style: none; }
        footer .container .sec .sci li a {
          display: inline-block;
          width: 48px;
          height: 48px;
          background: #3e56cb;
          display: grid;
          align-content: center;
          justify-content: center;
          text-decoration: none;
          border-radius: 4px; }
          footer .container .sec .sci li a .fa {
            color: white;
            font-size: 20px; }
    footer .container .sec h2 {
      position: relative;
      color: white;
      font-weight: 500;
      margin-bottom: 15px; }
      footer .container .sec h2::before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 2px;
        background: #ffeb3b; }
    footer .container .sec p {
      color: #fff; }
    footer .container .sec .info {
      position: relative; }
      footer .container .sec .info li {
        display: grid;
        grid-template-columns: 30px 1fr;
        margin-bottom: 16px; }
        footer .container .sec .info li span {
          color: #fff; }
          footer .container .sec .info li span:nth-child(1) {
            color: #fff;
            font-size: 20px; }
      footer .container .sec .info a {
        color: #f7f7f7;
        text-decoration: none; }
        footer .container .sec .info a:hover {
          color: #ffeb3b; }
    footer .container .links {
      position: relative; }
      footer .container .links li {
        list-style: none; }
        footer .container .links li a {
          color: #f7f7f7;
          text-decoration: none;
          margin: 10px;
          display: inline-block; }
          footer .container .links li a:hover {
            color: #ffeb3b; }
  footer .copyrightText {
    width: 100%;
    background: #1f3389;
    padding: 8px 100px;
    color: white;
    text-align: center; }

/*responsive*/
@media (max-width: 991px) {
  footer {
    padding: 40px; }
    footer .container {
      grid-template-columns: repeat(2, 1fr); } }

/*# sourceMappingURL=style.css.map */
