header {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 10.875rem;
  z-index: 10;
  transition: height ease-out 200ms;
}
header nav {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  font-family: "Vollkorn", serif;
  max-width: 84%;
  margin: auto;
  height: 100%;
}
header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header nav ul li {
  padding: 0.625rem 1.25rem;
}
header nav ul li:not(:last-child) {
  margin-right: 3rem;
}
header nav .menu-toggle-button {
  display: none;
  cursor: pointer;
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  margin-left: auto;
  margin-right: 1rem;
}
header nav .menu-toggle-button .menu-toggle-icon {
  height: 3.75rem;
  width: 3.75rem;
  background-image: url("../assets/menu.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
}
header nav .link {
  text-transform: uppercase;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  header {
    height: 3.75rem;
    background-color: white;
    overflow: hidden;
  }
  header nav {
    max-width: 100%;
    flex-flow: column nowrap;
    justify-content: flex-start;
    font-size: 1.5rem;
  }
  header nav .link.top {
    width: 100%;
    padding: 1.5rem 2rem;
  }
  header nav ul {
    flex-flow: column nowrap;
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  header nav ul li {
    padding: 1.5rem 2rem;
    width: 100%;
  }
  header nav .menu-toggle-button {
    display: block;
  }
  header.opened {
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  header nav {
    font-size: 1.3rem;
  }
  header nav .menu-toggle-button .menu-toggle-icon {
    background-size: 50%;
  }
}
section#top {
  background-image: url("../assets/top/cover.jpg");
  background-size: cover;
  position: relative;
}
section#top .white-overlay {
  opacity: 0.95;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(114deg, white 0%, white 37%, rgba(255, 255, 255, 0) 63%, rgba(255, 255, 255, 0) 100%);
}
section#top .content-container {
  position: relative;
  height: 100%;
}
section#top .content-container .welcome-box {
  position: fixed;
  text-align: left;
  width: 23.75rem;
  top: 50%;
  transform: translateY(-50%);
}
section#top .content-container .welcome-box h1 {
  font-size: 3.75rem;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}
section#top .content-container .welcome-box h2 {
  font-size: 1.875rem;
  letter-spacing: 0.25rem;
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
  section#top .content-container {
    max-width: 82%;
  }
  section#top .white-overlay {
    background-image: linear-gradient(114deg, white 0%, white 60%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) and (orientation: portrait) {
  section#top .content-container {
    max-width: 82%;
  }
  section#top .white-overlay {
    background-image: linear-gradient(114deg, white 0%, white 70%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (max-width: 575.98px) {
  section#top .content-container {
    max-width: 82%;
  }
  section#top .content-container .welcome-box {
    width: 80%;
  }
  section#top .content-container .welcome-box h1 {
    font-size: 3.2rem;
  }
  section#top .content-container .welcome-box h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  section#top .white-overlay {
    background-image: none;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
section#services {
  position: relative;
  overflow: hidden;
}
section#services .content-container {
  max-width: 82%;
}
section#services .content-container .services-wrapper .services {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
section#services .content-container .services-wrapper .services.top .service {
  max-width: 12.5rem;
}
section#services .content-container .services-wrapper .services.other .service {
  max-width: 13rem;
}
section#services .content-container .services-wrapper .services .service {
  text-align: center;
  margin: 3.125rem;
}
section#services .content-container .services-wrapper .services .service .count {
  font-family: "Vollkorn", serif;
  font-weight: 600;
  font-size: 3.75rem;
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  section#services .content-container {
    max-width: 90%;
  }
  section#services .content-container .services-wrapper .services {
    flex-wrap: wrap;
  }
  section#services .content-container .services-wrapper .services.other .service {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  section#services .content-container {
    max-width: 90%;
  }
  section#services .content-container .services-wrapper .services {
    flex-wrap: wrap;
  }
  section#services .content-container .services-wrapper .services.top {
    margin-bottom: 3rem;
  }
  section#services .content-container .services-wrapper .services.top .service {
    max-width: 50%;
  }
  section#services .content-container .services-wrapper .services.other .service {
    flex-basis: 50%;
  }
  section#services .content-container .services-wrapper .services .service {
    margin: 1rem;
  }
}
@media screen and (max-width: 575.98px) {
  section#services .content-container {
    max-width: 90%;
  }
  section#services .content-container .services-wrapper .services {
    flex-wrap: wrap;
  }
  section#services .content-container .services-wrapper .services.top {
    margin-bottom: 3rem;
  }
  section#services .content-container .services-wrapper .services.top .service {
    max-width: 100%;
  }
  section#services .content-container .services-wrapper .services.other .service {
    flex-basis: 100%;
  }
  section#services .content-container .services-wrapper .services .service {
    margin: 1rem;
  }
}
.milestone-container {
  position: relative;
}
.milestone-container .milestone-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 2px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.32) 25%, rgba(255, 255, 255, 0.32) 85%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.milestone-container .milestone-line.visible .milestone-line-shutter {
  max-height: 0;
}
.milestone-container .milestone-line .milestone-line-shutter {
  position: absolute;
  background-color: #2e363d;
  width: 200%;
  height: 100%;
  max-height: 100%;
  bottom: 0;
  left: -50%;
  transition: max-height 2400ms;
}
.milestone-container .milestone-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.milestone-container .milestone-list li.milestone-item {
  flex-basis: 50%;
  flex-shrink: 0;
  flex-grow: 0;
  width: 50%;
  display: flex;
  flex-wrap: nowrap;
  min-height: 9rem;
  max-height: 9rem;
  align-items: center;
}
.milestone-container .milestone-list li.milestone-item:first-child {
  margin-top: 2.5rem;
}
.milestone-container .milestone-list li.milestone-item:last-child {
  margin-bottom: 2.5rem;
}
.milestone-container .milestone-list li.milestone-item:nth-child(odd) {
  margin-left: auto;
  margin-right: 0;
  flex-direction: row;
}
.milestone-container .milestone-list li.milestone-item:nth-child(odd) .milestone-marker {
  margin-left: -1.875rem;
}
.milestone-container .milestone-list li.milestone-item:nth-child(odd) .milestone-box {
  text-align: left;
}
.milestone-container .milestone-list li.milestone-item:nth-child(even) {
  margin-left: 0;
  margin-right: auto;
  flex-direction: row-reverse;
}
.milestone-container .milestone-list li.milestone-item:nth-child(even) .milestone-marker {
  margin-right: -1.875rem;
}
.milestone-container .milestone-list li.milestone-item:nth-child(even) .milestone-box {
  text-align: right;
}
.milestone-container .milestone-list li.milestone-item .milestone-marker {
  flex-shrink: 0;
  flex-grow: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  color: #2e363d;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 600ms;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  z-index: 1;
}
.milestone-container .milestone-list li.milestone-item .milestone-marker.visible {
  opacity: 1;
}
.milestone-container .milestone-list li.milestone-item .milestone-box {
  color: #ffffff;
  flex-grow: 1;
  padding: 2.0625rem 1.875rem 2.1875rem 1.875rem;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  transition: opacity 600ms;
  font-weight: 200;
}
.milestone-container .milestone-list li.milestone-item .milestone-box.visible {
  opacity: 0.85;
}

@media screen and (max-width: 991.98px) {
  .milestone-container .milestone-line {
    margin-left: 1.875rem;
  }
  .milestone-container .milestone-list li.milestone-item {
    flex-basis: 100%;
    width: 100%;
    min-height: unset;
    max-height: unset;
  }
  .milestone-container .milestone-list li.milestone-item:nth-child(odd) {
    margin-left: 0;
  }
  .milestone-container .milestone-list li.milestone-item:nth-child(odd) .milestone-marker {
    margin-left: 0;
  }
  .milestone-container .milestone-list li.milestone-item:nth-child(even) {
    flex-direction: row;
  }
  .milestone-container .milestone-list li.milestone-item:nth-child(even) .milestone-marker {
    margin-right: 0;
  }
  .milestone-container .milestone-list li.milestone-item:nth-child(even) .milestone-box {
    text-align: left;
  }
}
section#about {
  position: relative;
}
section#about .content-container {
  max-width: 62%;
}

@media screen and (max-width: 991.98px) {
  section#about .content-container {
    max-width: 90%;
  }
}
section#partners {
  position: relative;
}
section#partners .partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
section#partners .partners .partner {
  width: 25%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
section#partners .partners .partner .logo {
  margin-bottom: 0.625rem;
}
section#partners .partners .partner h2 {
  font-size: 1.5rem;
}

@media screen and (min-width: 576px) and (max-width: 991.98px) {
  section#partners .content-container .partners .partner {
    width: 50%;
  }
}
@media screen and (max-width: 575.98px) {
  section#partners .content-container .partners .partner {
    width: 100%;
  }
}
section#gallery {
  position: relative;
}
section#gallery .gallery-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: background-image ease-in-out 500ms;
}
section#gallery .gallery-container .step {
  width: 30%;
  position: relative;
  opacity: 0.4;
  cursor: pointer;
}
section#gallery .gallery-container .step .button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  background-color: #ffffff;
  background-image: url("../assets/arrow-dark.svg");
  background-size: contain;
  top: 50%;
  translate: 0 -50%;
  position: absolute;
}
section#gallery .gallery-container .step:hover {
  opacity: 0.8;
}
section#gallery .gallery-container .step.prev .button {
  left: 3.125rem;
  rotate: 90deg;
}
section#gallery .gallery-container .step.prev:hover {
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.5) 100%);
}
section#gallery .gallery-container .step.next .button {
  right: 3.125rem;
  rotate: -90deg;
}
section#gallery .gallery-container .step.next:hover {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.5) 100%);
}
section#gallery .gallery-container .gallery-header {
  position: absolute;
  width: 100%;
  top: 0;
  padding-bottom: 9.375rem;
  background-image: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
}
section#gallery .gallery-container .gallery-header h1 {
  margin-top: 3.75rem;
  margin-bottom: 1.25rem;
}
section#gallery .gallery-container .gallery-header .gallery-themes {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
section#gallery .gallery-container .gallery-header .gallery-themes h2 {
  font-size: 1.5rem;
  margin-left: 3.125rem;
  margin-right: 3.125rem;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}
section#gallery .gallery-container .gallery-header .gallery-themes h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: -2px;
  background-color: #2e363d;
  opacity: 0;
  transition: opacity ease-out 300ms;
}
section#gallery .gallery-container .gallery-header .gallery-themes h2.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: -2px;
  background-color: #2e363d;
  opacity: 1;
}
section#gallery .gallery-container .gallery-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-top: 8.75rem;
  padding-bottom: 3.75rem;
  background-image: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
}
section#gallery .gallery-container .gallery-footer .year {
  font-weight: 600;
  font-size: 1.5rem;
}
section#gallery .gallery-container .gallery-footer .description {
  font-size: 1.125rem;
}
section#gallery .gallery-container .gallery-progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.1875rem;
  opacity: 0.2;
  overflow-x: hidden;
}
section#gallery .gallery-container .gallery-progress-bar .gallery-progressbar-buffer {
  background-color: #2e363d;
  width: 0%;
  height: 100%;
  transition: width linear 100ms;
}
section#gallery .gallery-container .gallery-controls {
  position: absolute;
  bottom: 0.625rem;
  left: 2.5rem;
  opacity: 0.2;
}
section#gallery .gallery-container .gallery-controls:hover {
  opacity: 0.6;
}
section#gallery .gallery-container .gallery-controls .control-button {
  width: 24px;
  height: 24px;
  display: none;
  background-size: contain;
}
section#gallery .gallery-container .gallery-controls .control-button.play {
  background-image: url("../assets/play.svg");
}
section#gallery .gallery-container .gallery-controls .control-button.stop {
  background-image: url("../assets/stop.svg");
}
section#gallery .gallery-container .gallery-image-buffer {
  height: 0;
  width: 0;
  overflow: hidden;
  position: fixed;
  z-index: -1;
}
section#gallery .jumper {
  bottom: 0;
}

@media screen and (max-width: 991.98px) {
  section#gallery .gallery-container .gallery-header .gallery-themes h2 {
    font-size: 1.25rem;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }
  section#gallery .gallery-container .step.prev .button {
    left: 2rem;
  }
  section#gallery .gallery-container .step.next .button {
    right: 2rem;
  }
}
@media screen and (max-width: 575.98px) {
  section#gallery .gallery-container .gallery-header .gallery-themes {
    flex-wrap: wrap;
  }
  section#gallery .gallery-container .gallery-header .gallery-themes h2 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  section#gallery .gallery-container .step .button {
    width: 2rem;
    height: 2rem;
  }
  section#gallery .gallery-container .step.prev .button {
    left: 1rem;
  }
  section#gallery .gallery-container .step.next .button {
    right: 1rem;
  }
}
section#tender {
  position: relative;
}
section#tender .content-container {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
section#tender .content-container h2 {
  text-align: center;
  margin-bottom: 4rem;
}
section#tender .content-container label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}
section#tender .content-container p {
  margin-bottom: 1.5rem;
}
section#tender .content-container .half-container .half.left {
  padding: 0 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#tender .content-container .half-container .half.left img {
  width: 100%;
  background-color: gray;
  border-radius: 0.5rem;
}

@media screen and (max-width: 991.98px) {
  section#tender .content-container .half-container {
    flex-wrap: wrap;
  }
  section#tender .content-container .half-container .half {
    flex-basis: 100%;
  }
  section#tender .content-container .half-container .half.left {
    margin-bottom: 4rem;
    padding: 0;
  }
}
@media screen and (max-width: 575.98px) {
  section#tender .content-container h2 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
section#contact {
  position: relative;
}
section#contact .content-container .contact-infos {
  font-style: normal;
  display: flex;
  justify-content: center;
  margin-bottom: 3.75rem;
}
section#contact .content-container .contact-infos .contact-info {
  display: flex;
  align-items: flex-start;
}
section#contact .content-container .contact-infos .contact-info .icon {
  margin-right: 1.5rem;
}
section#contact .content-container .contact-infos .contact-info.company {
  margin-right: 3.125rem;
}
section#contact .content-container .contact-infos .contact-info.company p {
  margin-bottom: 0.5rem;
}
section#contact .content-container .contact-infos .contact-info.mail {
  margin-left: 3.125rem;
  align-items: center;
}
section#contact .content-container .contact-infos .contact-info.mail p {
  margin-bottom: 0.5rem;
}
section#contact .content-container .contact-infos .contact-info p {
  font-size: 1.125rem;
  word-break: break-word;
}
section#contact .content-container .contact-infos .contact-info p.bigger {
  font-size: 1.5rem;
}
section#contact .jumper {
  bottom: 3rem;
}

@media screen and (max-width: 991.98px) {
  section#contact .content-container .contact-infos {
    flex-wrap: wrap;
  }
  section#contact .content-container .contact-infos > *:not(:last-child) {
    margin-bottom: 3rem;
  }
  section#contact .content-container .contact-infos .contact-info.mail {
    margin-left: 0;
  }
}
@media screen and (max-width: 575.98px) {
  section#contact .content-container .contact-infos .contact-info .icon img {
    width: 2rem;
    height: 2rem;
  }
  section#contact .content-container .contact-infos .contact-info.mail p.bigger {
    font-size: 1.1rem;
  }
  section#contact .content-container .contact-infos .contact-info p.bigger {
    font-size: 1.25rem;
  }
}
.jumper {
  position: absolute;
  bottom: 2%;
  left: 50%;
  translate: -50% 0;
  cursor: pointer;
}
.jumper.arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.jumper.arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  box-sizing: border-box;
  padding: 0.25rem;
  background-image: url("../assets/arrow-light.svg");
  background-size: contain;
}
.jumper.arrow.light:not(.contrast) {
  opacity: 0.5;
}
.jumper.arrow.light:not(.contrast)::before {
  background-image: url("../assets/arrow-light.svg");
}
.jumper.arrow.light.contrast {
  background-color: rgba(255, 255, 255, 0.8);
}
.jumper.arrow.light.contrast::before {
  background-image: url("../assets/arrow-dark.svg");
}
.jumper.arrow.dark:not(.contrast) {
  opacity: 0.5;
}
.jumper.arrow.dark:not(.contrast)::before {
  background-image: url("../assets/arrow-dark.svg");
}
.jumper.arrow.dark.contrast {
  background-color: #2e363d;
}
.jumper.arrow.dark.contrast::before {
  background-image: url("../assets/arrow-light.svg");
}
.jumper.arrow.back::before {
  transform: rotate(180deg);
}
.jumper.arrow.animated {
  animation: bounce 1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite alternate both;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1.25rem);
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Vollkorn", serif;
  font-weight: 400;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 1.875rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.thin {
  font-weight: 100;
}

a {
  text-decoration: none;
}

section {
  width: 100%;
  box-sizing: border-box;
}
section.light {
  color: #2e363d;
  background-color: #ffffff;
}
section.light a {
  color: #2e363d;
}
section.dark {
  color: #ffffff;
  background-color: #2e363d;
}
section.dark a {
  color: #ffffff;
}
section.jumbo {
  height: 100dvh;
  display: flex;
  justify-content: center;
}
section.padded-vertically {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
section h1 {
  text-align: center;
}
section .content-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 84%;
}
section .content-container .half-container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
section .content-container .half-container .half {
  flex-basis: 50%;
}

.clickable {
  cursor: pointer;
}

@media screen and (min-width: 2500px) {
  html {
    font-size: 20px;
  }
}
@media screen and (min-width: 1900px) and (max-width: 2499.98px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1899.98px) {
  html {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  html {
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  html {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  section .content-container {
    max-width: 96%;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
  section .content-container {
    max-width: 96%;
  }
}
@media screen and (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  section h1 {
    font-size: 2rem;
  }
  section .content-container {
    max-width: 90%;
  }
}/*# sourceMappingURL=style20230216.css.map */