
  .layout-navbar-large {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 82px;
    padding: 0 20px;
  }
  .logoNav {
    height: 50px;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all .4s ease-in-out;
  }
  .hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: #f7f4ef;
    border-radius: 2px;
    transition: all .4s ease-in-out;
  }
  /* Animation hamburger */
  .hamburger.active {
    transform: rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    width: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(90deg);
  }
  /* Menu central tablette */
  .layout-navbar-center {
    display: none;
    flex-direction: column;
    background-color: #886F68;
    width: 100%;
    position: absolute;
    top: 82px;
    left: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
  }
  .layout-navbar-center.active {
    display: flex;
    max-height: 500px;
    opacity: 1;
  }
  .displayFlexJustifyContentStart {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .displayFlexJustifyContentStart li a {
    text-decoration: none;
    color: #D96C4A;
    font-size: 17px;
    padding: 10px 25px;
    display: block;
  }
  .displayFlexJustifyContentStart li a:hover {
    background-color: #D96C4A;
  }
  .displayFlexJustifyContentStart li.active a {
    background-color: #D96C4A;
    color: #D8E4FD;
  }
  .margin-twenty {
    margin-left: 25%;
  }

#buttonTop {
    background-image: url(/cvWeb/v1/assets/images/buttonToTop_off.png);
    background-repeat: no-repeat;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    width: 46px;
    height: 46px;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 25px;
}

ul {
    list-style-type: none;
    visibility: hidden;
    margin-left: -30px;
}

ul.active {
    visibility: visible;
    filter: brightness(0.9);
    background-color: #886F68;
    position: fixed;
    left: 0;
    margin-top: -42px;
    width: 100%;
    text-align: left;
}

nav .container ul li {
    margin-bottom: -1px;
    height: 27px;
}

nav .container ul li a {
    /*    display: inline-block;*/
    text-decoration: none;
    padding: 10px 30px;
    color: #f7f4ef;
}

nav .container ul li.active {
    border-top: solid;
    color: #D8E4FD;
    background-color: #D96C4A;
}

nav .container ul li.active a {
    color: #f7f4ef;
}

.margin-twenty {
    margin-left: 25%;
}


.layout-navbar {
    width: 100%;
    height: 82px;
}

.layout-navbar-small {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 9vh;
}


.layout-navbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 0px;
}

.layout-navbar-large {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    height: 7vh;
}

.layout-navbar-center-large {
    display: flex;
    align-items: start;
}

.layout-navbar-create-project {
    visibility: hidden;
    width: 0px;
}
.webNav {
    display: none;
  } 
/* EXPERIENCE */
.timeline{
    width:100%;
    padding-bottom:0;
  }
  .timeline:before{
    left:20px;
    height:100%;
  }
  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even)
  {
    visibility: visible;
    width:100%;
    text-align:left;
    padding-left:50px;
    padding-bottom:50px;
  }
  .timeline ul li:nth-child(odd):before,
  .timeline ul li:nth-child(even):before
  {
    top:-18px;
    left:16px;
  }
  .timeline ul li:nth-child(odd) .time,
  .timeline ul li:nth-child(even) .time{
    top:-30px;
    left:50px;
    right:inherit;
  }

  /* FOOTER */
  .footerCenter {
    text-align: center;
    padding: 2vh;
}