@font-face {
  font-family: Nantes;
  src: url('../fonts/Nantes-Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nantes;
  src: url('../fonts/Nantes-Regular.woff2') format("woff2"), url('../fonts/Nantes-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nantes;
  src: url('../fonts/Nantes-LightItalic.woff2') format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  --black: black;
  --footer: #b5b3e7;
  --deep-blue: #1e0d52;
  --transparent: #fff0;
  --white: white;
  --light-teal: #aaf7e6;
  --accent-color: #ca689c;
  --nantes: Nantes, "Times New Roman", sans-serif;
  --inter: Inter, sans-serif;
  --size: 0px;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  background-color: #3daa33;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Nantes, Times New Roman, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 36px;
}

h2 {
  color: var(--black);
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

h3 {
  color: #000;
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  color: #000;
  margin-bottom: 10px;
  font-family: Nantes, Times New Roman, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
}

a {
  text-decoration: underline;
}

.gallery-scroll {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-sticky {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 80px;
}

.gallery-link {
  color: #1a1b1f;
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
}

.gallery-link:hover {
  color: #1a1b1fcc;
}

.gallery-link.w--current {
  font-weight: 600;
}

.gallery-grid {
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image-wrapper {
  position: relative;
}

.gallery-image {
  width: 100%;
}

.gallery-image-text {
  color: #f5f7fa;
  margin-bottom: 0;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.navbar-no-shadow {
  background-color: var(--footer);
}

.navbar-no-shadow-container {
  z-index: 5;
  color: var(--black);
  background-color: #0000;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  aspect-ratio: auto;
  object-fit: contain;
  width: 100%;
  max-width: 100%;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-wrapper {
  box-sizing: border-box;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: auto;
  background-color: var(--footer);
  opacity: 1;
  object-fit: contain;
  object-position: 50% 50%;
  border-radius: 0;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  overflow: visible;
  box-shadow: 10px 7px 8px #0003;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  float: none;
  color: #1a1b1f;
  letter-spacing: .25px;
  object-fit: fill;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide {
  font-family: Inter, sans-serif;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-family: Nantes, Times New Roman, sans-serif;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.body {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: right;
  -webkit-text-fill-color: inherit;
  background-color: #1e0d53;
  background-image: url('../images/260127-CCA-Nightswimming-1920x1080_vide.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-clip: border-box;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: block;
}

.heading {
  color: var(--black);
  padding-left: 20px;
  padding-right: 20px;
  font-family: Nantes, Times New Roman, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
  display: block;
}

.quick-stack {
  z-index: auto;
  float: none;
  clear: none;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  object-fit: contain;
  position: relative;
}

.paragraph {
  clear: none;
  aspect-ratio: auto;
  border: 0px solid var(--black);
  color: #fff;
  text-align: left;
  object-fit: fill;
  flex: 0 auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 20px;
  font-family: Geist, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  display: block;
  position: static;
  overflow: auto;
}

.paragraph.home {
  font-size: 1em;
}

.paragraph.references {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.button {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: auto;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-color: #0000;
  background-clip: border-box;
  border: 1px solid #fff;
  border-radius: 6px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: auto;
  max-width: 600px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  font-family: Old Standard TT, sans-serif;
  font-style: normal;
  display: flex;
  position: relative;
}

.button:hover {
  background-color: var(--white);
  color: var(--deep-blue);
}

.grid {
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-columns: repeat(auto-fit, minmax(0, .25fr)) minmax(0, .25fr);
}

.cell {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.image {
  object-fit: scale-down;
}

.dropdown-toggle {
  z-index: auto;
  object-fit: fill;
  padding-top: 20px;
  padding-right: 0;
  position: relative;
  left: 200px;
}

.container-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  object-fit: scale-down;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 0;
  display: block;
  position: static;
}

.container-2.projects {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.flex-block {
  clear: left;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  object-fit: fill;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: flex-start;
  align-self: auto;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.quick-stack-2 {
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 40px;
}

.body-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--deep-blue);
  background-image: url('../images/260127-CCA-Nightswimming-1920x1080_vide.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
}

.heading-2 {
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  font-family: Old Standard TT, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.heading-2.footer {
  margin-bottom: -5px;
}

.heading-3 {
  font-size: 14px;
  font-weight: 500;
}

.heading-4 {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.heading-5 {
  color: #0d5013;
}

.heading-6 {
  font-size: 14px;
}

.heading-7 {
  text-align: left;
  letter-spacing: normal;
  text-transform: uppercase;
  font-family: Nantes, Times New Roman, sans-serif;
}

.text-span {
  font-size: 32px;
  line-height: 36px;
}

.dropdown-link {
  z-index: auto;
  color: #fff;
  background-color: #0000;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  top: auto;
  left: auto;
}

.dropdown-link:hover {
  color: var(--light-teal);
}

.dropdown-list {
  background-color: #4c4c4c;
}

.dropdown-list.w--open {
  background-color: #0000;
  position: relative;
}

.dropdown-list-2 {
  background-color: #ddd;
}

.dropdown-list-2.w--open {
  background-color: #0000;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.cell-2 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.bold-text {
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.heading-8 {
  text-align: center;
}

.heading-9 {
  color: var(--white);
  text-align: center;
}

.link {
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.link-2, .link-3 {
  color: var(--deep-blue);
}

.div-block {
  padding-top: 0;
  padding-bottom: 0;
}

.div-block-2 {
  float: left;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  place-content: space-around;
  justify-items: stretch;
  width: 100%;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  display: grid;
}

.paragraph-2, .subhead {
  line-height: 32px;
}

.paragraph-3 {
  color: #fff;
  text-align: left;
  padding-top: 20px;
  font-family: Geist, sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.heading-10 {
  filter: blur(1px) drop-shadow(-4px 1px 3px #ffffff4f) drop-shadow(3px 0 2px #ffffffe6);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Geist, sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 80px;
}

.heading-11 {
  text-align: center;
  margin-bottom: 20px;
}

.caption {
  color: var(--white);
  text-align: center;
  width: 80%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Geist, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  position: relative;
}

.caption.portrait {
  text-align: left;
  width: 100%;
  padding-left: 0;
}

.div-block-3 {
  text-align: center;
  align-self: stretch;
  display: block;
}

.team-slider {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: var(--footer);
  border-bottom: 0 solid #e4ebf3;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 80px 30px;
  display: block;
  position: relative;
}

.container-3 {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: var(--white);
  padding-bottom: 24px;
}

.team-member-image-two {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 0;
  display: block;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  display: block;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.footer-dark {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--deep-blue);
  object-fit: fill;
  border-bottom: 0 solid #e4ebf3;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px 20px;
  display: block;
  position: static;
  inset: auto 0% 0%;
}

.container-4 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  float: none;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  object-fit: none;
  flex-flow: wrap;
  grid-template: "Area" minmax(auto, .5fr)
                 "."
                 / minmax(200px, 1fr) 1fr 1fr 1fr;
  grid-auto-rows: minmax(auto, .75fr);
  grid-auto-columns: minmax(200px, 1fr);
  grid-auto-flow: row;
  place-content: space-between stretch;
  place-items: center;
  width: 100%;
  max-width: 1440px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  overflow: visible;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  color: var(--white);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 11px;
  line-height: 16px;
}

.div-block-4 {
  text-align: left;
}

.dropdown-toggle-2 {
  float: right;
  position: relative;
  right: 0;
}

.dropdown-list-3 {
  background-color: #ddd;
}

.dropdown-list-3.w--open {
  background-color: #ddd0;
}

.image-2 {
  mix-blend-mode: normal;
}

.image-3 {
  width: 70%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: block;
}

.image-4 {
  object-fit: fill;
  width: 70%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.image-5, .image-6 {
  width: 70%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-4 {
  width: 100%;
  max-width: 100%;
}

.section {
  box-sizing: border-box;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  object-fit: fill;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-top: 120px;
  padding: 0 0 30px;
  display: block;
}

.container-5 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  flex-flow: wrap;
  flex: none;
  order: -1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start;
  align-self: auto;
  align-items: stretch;
  min-width: 50%;
  max-width: 100%;
  margin-bottom: 20px;
  display: grid;
}

.heading-12 {
  padding-left: 20px;
  padding-right: 20px;
}

.image-7 {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 75%;
}

.div-block-5 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.container-6 {
  clear: none;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: stretch stretch;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.quick-stack-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  max-width: 100%;
  padding: 0;
}

.navbar-en {
  z-index: 5;
  background-color: var(--footer);
  border: 1px solid #0000;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0 20px 20px;
  position: fixed;
  top: auto;
}

.container-regular-2 {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-left: auto;
  margin-right: 20px;
  padding-right: 0;
  display: flex;
}

.nav-menu-2 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-2 {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle-2 {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-2:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-2:focus-visible, .nav-dropdown-toggle-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon-2 {
  margin-right: 10px;
}

.nav-dropdown-list-2 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-2.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link-2 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link-2:focus-visible, .nav-dropdown-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.mobile-margin-top-11 {
  flex: 1;
}

.nav-button-wrapper-2 {
  margin-left: 120px;
}

.button-primary-2 {
  border: 1px solid var(--deep-blue);
  background-color: var(--footer);
  color: var(--deep-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 15px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.menu-button-2 {
  padding-left: 0;
  padding-right: 0;
}

.heading-13 {
  color: var(--black);
}

.heading-14 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Nantes, Times New Roman, sans-serif;
  font-size: 34px;
  font-weight: 400;
  display: block;
  position: relative;
  left: 0;
}

.text-block {
  color: var(--white);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  position: relative;
  left: auto;
}

.heading-15 {
  padding-left: 20px;
  padding-right: 20px;
}

.heading-16 {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.h2 {
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.heading-17 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.hero-heading-center {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-7 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading-2.margin-bottom-32px {
  margin-bottom: 32px;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.link-4 {
  color: var(--deep-blue);
}

.div-block-6 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.div-block-7 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch flex-start;
  margin-bottom: 40px;
  display: flex;
}

.image-8 {
  object-fit: fill;
  flex: 1;
  width: 40%;
  min-width: auto;
  max-width: none;
  height: 40%;
  min-height: auto;
  max-height: none;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
}

.italic-text {
  font-family: Nantes, Times New Roman, sans-serif;
  font-weight: 300;
}

.italic-text-2, .italic-text-3, .italic-text-4 {
  font-family: Nantes, Times New Roman, sans-serif;
}

.heading-18 {
  margin-top: auto;
  margin-bottom: auto;
}

.image-9 {
  padding-left: 20px;
  padding-right: 20px;
}

.paragraph-5 {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.image-10 {
  text-align: left;
  vertical-align: middle;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.paragraph-6 {
  margin-bottom: 40px;
}

.navbar {
  background-color: var(--footer);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-container {
  background-color: var(--transparent);
  opacity: 1;
  mix-blend-mode: normal;
  max-width: 1440px;
  padding: 10px 10px 10px 20px;
  display: flex;
}

.text-block-2 {
  color: var(--black);
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  display: block;
}

.text-block-2:hover {
  color: var(--white);
}

.text-block-2.brand-2 {
  color: var(--white);
  font-family: Geist, sans-serif;
  font-weight: 600;
  line-height: 16px;
}

.text-block-2.brand-1 {
  color: var(--white);
  margin-top: 10px;
  margin-right: 20px;
  padding-bottom: 0;
  font-family: Old Standard TT, sans-serif;
}

.navlink-div {
  margin-bottom: 10px;
}

.navdiv-underline {
  background-color: var(--black);
  width: 0%;
  max-width: 100%;
  height: 1px;
  display: block;
  overflow: visible;
}

.nav-link-3 {
  color: #fff;
  text-transform: uppercase;
  mix-blend-mode: normal;
  margin-left: 0;
  padding: 24px 10px 10px 20px;
  font-family: Geist, sans-serif;
  font-weight: 500;
  transition: color .2s;
}

.nav-link-3:hover {
  color: var(--white);
}

.nav-link-3.w--current {
  color: var(--white);
  mix-blend-mode: normal;
  text-decoration: underline;
  transition-property: none;
}

.nav-link-3.w--current:hover {
  color: var(--light-teal);
}

.nav-link-3.w--current:visited {
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
}

.nav-menu-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--transparent);
  flex-flow: row;
  display: flex;
}

.wg-element-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.wg-element-wrapper.sw3 {
  border-radius: 1px;
}

.wg-selector-2-fill.f1 {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.wg-selector-2-fill.f2 {
  background-color: #4049ff;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(-100%);
}

.wg-selector2-text-lang2 {
  color: var(--black);
  font-weight: 400;
  position: relative;
}

.wg-code {
  display: none;
}

.wg-element {
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 10px;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.wg-element:hover {
  background-color: #fbf9fd;
}

.wg-selector2-text-lang1 {
  color: var(--light-teal);
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  position: relative;
}

.wg-selector-2 {
  color: #000;
  padding: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
  position: relative;
  overflow: hidden;
}

.wg-selector-2:hover {
  color: #4049ff;
}

.wg-selector-2.w--current {
  cursor: default;
}

.language-switch-div {
  width: auto;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: visible;
}

.archive-dropdown {
  text-transform: uppercase;
  display: block;
}

.heading-19 {
  float: none;
  color: var(--black);
  text-align: left;
  margin: 0 auto;
  padding-top: 0;
  padding-left: 0;
  padding-right: 10px;
}

.container-8 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.heading-20 {
  color: #000;
  text-align: left;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.heading-21 {
  text-align: left;
  max-width: none;
  margin: 0 auto;
}

.cell-3 {
  text-align: left;
}

.cell-4 {
  text-align: left;
  display: block;
}

.cell-5 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.cell-6 {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.heading-22 {
  text-align: left;
  margin-top: 0;
}

.container-9 {
  width: 1440px;
  max-width: 2560px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-10 {
  max-width: 1440px;
}

.cell-7 {
  justify-content: flex-end;
  align-items: flex-end;
}

.cell-8 {
  justify-content: flex-end;
  align-items: flex-start;
}

.image-11 {
  text-align: center;
  object-fit: contain;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.quick-stack-4 {
  margin-left: auto;
  margin-right: auto;
}

.section-2 {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.heading-23 {
  clear: right;
  text-align: left;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding-top: 0;
  text-decoration: none;
  display: flex;
  overflow: visible;
}

.brand {
  margin-left: auto;
  margin-right: auto;
}

.brand.w--current {
  float: left;
  aspect-ratio: auto;
  flex-flow: column;
  max-width: 1440px;
  height: 100%;
  margin-left: 0;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-11 {
  max-width: 1440px;
}

.title-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-grid;
}

.hero-visual {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/CCA-Charrette2025-Homepage_01_.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  background-clip: border-box;
  max-width: 100%;
  height: auto;
  min-height: 1000px;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.title-div {
  float: left;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 50% 50%;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  place-content: center stretch;
  width: 100%;
  max-width: none;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: inline-grid;
}

.paragraph-white2 {
  clear: none;
  aspect-ratio: auto;
  border: 0px solid var(--black);
  color: var(--white);
  text-align: left;
  object-fit: fill;
  flex: 0 auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-family: Inter, sans-serif;
  font-size: 1em;
  font-style: normal;
  line-height: 24px;
  display: block;
  position: static;
  overflow: auto;
}

.div-block-8 {
  text-align: left;
  width: 80%;
  display: flex;
}

.heading-in {
  color: var(--black);
  width: 100%;
  margin-top: -10px;
  margin-right: -8px;
}

.heading-24 {
  text-align: left;
  margin-top: -10px;
}

.dropdown-list-4 {
  background-color: var(--black);
}

.dropdown-list-4.w--open {
  background-color: var(--deep-blue);
}

.dropdown-link-2 {
  padding-top: 5px;
  padding-bottom: 0;
}

.div-block-9 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-3 {
  margin-top: 120px;
  margin-bottom: 100px;
  padding-top: 0;
}

.section-4 {
  margin-top: 120px;
  padding-top: 0;
}

.div-block-10 {
  float: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  margin: 40px auto;
  display: flex;
  position: relative;
}

.paragraph-7 {
  margin-bottom: 40px;
}

.div-block-11 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.cell-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.container-12 {
  max-width: 1440px;
}

.container-13 {
  float: none;
  object-fit: contain;
  min-width: 100%;
  max-width: 1440px;
}

.image-12 {
  float: none;
  aspect-ratio: 2.39;
  max-width: 100%;
  margin-top: 40px;
  margin-bottom: 0;
}

.navbar-fr-ok {
  background-color: var(--transparent);
  margin-bottom: -100px;
  padding-bottom: 20px;
}

.navbar-fr-ok.nav-about {
  background-color: var(--transparent);
  background-image: linear-gradient(180deg, var(--deep-blue), var(--transparent));
  padding-bottom: 20px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-fr-ok.nav-about.homepage, .navbar-fr-ok.nav-about.hompage {
  display: none;
}

.menu-button-4.w--open {
  background-color: var(--deep-blue);
}

.paragraph-8 {
  text-align: center;
}

.heading-25 {
  text-align: center;
  font-family: Old Standard TT, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.text-block-3, .text-block-4, .text-block-5 {
  text-align: left;
}

.div-block-12 {
  width: auto;
  min-width: 200px;
}

.link-block {
  object-fit: fill;
}

.flex-block-2 {
  box-sizing: border-box;
  aspect-ratio: auto;
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.link-5 {
  color: var(--white);
  line-height: 18px;
}

.dropdown-toggle-3 {
  color: #fff;
  padding-top: 24px;
  font-family: Geist, sans-serif;
  font-weight: 500;
}

.switch-to-fr {
  color: #fff;
  padding-top: 24px;
  font-family: Old Standard TT, sans-serif;
  font-size: 14px;
}

.container-14 {
  padding-top: 20px;
}

.switch-to-en {
  color: #fff;
  padding-top: 24px;
  font-family: Old Standard TT, sans-serif;
}

.div-block-13 {
  height: 100px;
}

.surtitre {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.surtitre-white {
  color: var(--white);
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.heading-26 {
  color: var(--black);
  margin: 0 auto;
}

.h-in {
  color: var(--black);
  margin: -10px -8px 0 auto;
}

.section-6 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-overflow: clip;
  object-fit: cover;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 95% 5%;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: start stretch;
  width: 100%;
  height: 800px;
  margin: 100px 0 -100px;
  padding-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  position: static;
}

.div-block-14 {
  box-sizing: border-box;
  grid-column-gap: 50px;
  grid-row-gap: 10px;
  aspect-ratio: 2 / 3;
  object-fit: fill;
  flex: 1;
  order: 0;
  grid-template: ". ." 25%
                 "Area-4 Area-3"
                 "Area-4 Area-3"
                 "Area Area-2" 25%
                 / 50% 50%;
  grid-auto-columns: 1fr;
  place-content: start stretch;
  align-self: auto;
  place-items: start stretch;
  width: 100%;
  height: 100%;
  margin-left: 0%;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  position: relative;
  top: 75px;
  bottom: 40px;
}

.div-block-14.date {
  margin-left: 30%;
}

.text-block-6 {
  aspect-ratio: auto;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  font-family: Old Standard TT, sans-serif;
  font-size: 16px;
  line-height: 18px;
}

.text-block-7 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto 40px;
  font-family: Old Standard TT, sans-serif;
  font-size: 16px;
  line-height: 18px;
}

.text-block-8 {
  filter: blur(1px);
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  padding-left: 0%;
  font-family: Geist, sans-serif;
  font-size: 100px;
  font-weight: 500;
  line-height: 60px;
}

.text-block-8.droite {
  text-align: right;
  margin-right: -10px;
  font-size: 30px;
  line-height: 30px;
}

.text-block-8.date {
  text-align: center;
  width: 100%;
  margin-top: 40px;
  padding-left: 0%;
  font-size: 30px;
  line-height: 30px;
}

.text-block-8.haut {
  text-overflow: clip;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
  display: block;
  position: static;
}

.text-block-9 {
  box-sizing: border-box;
  filter: blur(1px);
  color: var(--white);
  text-align: right;
  text-transform: uppercase;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: Geist, sans-serif;
  font-size: 100px;
  font-weight: 500;
  line-height: 100px;
}

.image-14 {
  max-width: 100%;
  display: none;
}

.image-15 {
  max-width: 140%;
}

.section-8 {
  box-sizing: border-box;
  object-fit: fill;
  height: 1600px;
  margin-top: 30px;
}

.image-16 {
  background-color: var(--footer);
}

.projects-section {
  clear: none;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  aspect-ratio: auto;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start;
  align-items: flex-start;
  width: 5%;
  min-width: 100%;
  min-height: auto;
  margin: 60px auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  position: static;
}

.participants-list {
  padding: 15px 0;
}

.project-card {
  box-sizing: border-box;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: auto;
  background-color: var(--deep-blue);
  object-fit: fill;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start space-between;
  align-items: stretch;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  display: block;
  position: static;
  overflow: clip;
}

.project-card:hover {
  background-color: var(--deep-blue);
}

.project-title {
  width: 100%;
  padding-top: 15px;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.project-title.heading-2 {
  color: var(--white);
  margin-top: 0;
  padding-top: 20px;
  font-family: Old Standard TT, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.participant-name {
  color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  width: 100%;
  font-family: Geist, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
}

.participant-name.university-name {
  font-family: Old Standard TT, sans-serif;
  font-weight: 500;
}

.download-pdf-button {
  border: 1px solid var(--white);
  background-color: var(--deep-blue);
  color: var(--white);
  text-align: center;
  vertical-align: bottom;
  object-fit: fill;
  border-radius: 8px;
  flex-flow: row;
  align-items: flex-end;
  width: 100%;
  min-width: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  position: relative;
  inset: auto 0%;
}

.download-pdf-button:hover {
  background-color: var(--white);
  color: var(--deep-blue);
}

.div-block-16 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: -15px -15px 0;
  display: flex;
}

.project-info {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
}

.div-block-17 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-17 {
  opacity: 1;
}

.image-17:hover {
  opacity: .5;
}

._1st-prize-container {
  max-width: 940px;
}

.laureate-container {
  margin-bottom: 40px;
}

.laureate-container._1st-prize {
  max-width: 1920px;
}

.paragraph-13, .paragraph-14, .paragraph-15, .paragraph-16 {
  color: var(--white);
}

.image-18 {
  box-sizing: border-box;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
}

.image-19, .image-20, .image-21, .image-22 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-23 {
  aspect-ratio: 16 / 9;
  vertical-align: top;
  object-fit: cover;
  margin-top: 0;
  padding-top: 0;
  display: block;
}

.image-24 {
  aspect-ratio: auto;
  object-fit: cover;
}

.container-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.div-block-18 {
  position: static;
  inset: 50% auto auto 0%;
}

.bold-text-5 {
  font-family: Old Standard TT, sans-serif;
  font-size: 14px;
}

.bold-text-6 {
  text-transform: uppercase;
  font-family: Old Standard TT, sans-serif;
}

.div-block-19 {
  flex: none;
  grid-template-areas: ". ."
                       "Area-4 Area-3"
                       "Area-4 Area-3"
                       "Area Area-2";
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: start;
  place-items: start stretch;
  height: 400px;
}

.bold-text-7 {
  font-weight: 600;
}

.div-block-20 {
  object-fit: fill;
}

.div-block-21 {
  flex-flow: column;
  display: block;
}

.text-block-10, .text-block-11, .text-block-12 {
  text-transform: uppercase;
}

.section-9 {
  margin-top: 120px;
}

.bold-text-8, .bold-text-9 {
  font-weight: 500;
}

.link-6, .link-7 {
  color: var(--light-teal);
}

.div-block-22, .div-block-23, .div-block-24 {
  margin-top: -30px;
}

.icon-5 {
  color: var(--white);
}

.body-3 {
  background-color: var(--deep-blue);
}

.field-label {
  color: var(--white);
  text-transform: uppercase;
  font-family: Old Standard TT, sans-serif;
  font-weight: 500;
}

.text-field, .submit-button {
  font-family: Geist, sans-serif;
}

.heading-27 {
  color: var(--white);
  text-align: center;
  padding-left: 0;
  font-family: Geist, sans-serif;
  font-size: 32px;
}

.body-4 {
  background-color: var(--deep-blue);
}

.heading-28 {
  color: var(--white);
  text-align: center;
  padding-left: 0;
  font-family: Geist, sans-serif;
  font-size: 30px;
}

.text-block-13 {
  color: var(--white);
  font-family: Geist, sans-serif;
}

.div-block-25 {
  margin-top: -30px;
}

.section-10 {
  display: flex;
}

.link-block-2 {
  float: none;
  object-fit: fill;
  position: relative;
}

.div-block-26 {
  margin-top: -30px;
}

.div-block-27 {
  margin-top: -30px;
  padding-top: 0;
}

.link-8, .link-9, .link-10, .link-11, .link-12 {
  color: var(--light-teal);
}

.bold-text-10 {
  font-weight: 600;
}

.link-13, .link-14, .link-15, .link-16, .link-17, .text-span-2 {
  color: var(--light-teal);
}

.link-18 {
  color: #aaf6e6;
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-sticky {
    position: relative;
    top: 0;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    background-color: #0000;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .body {
    margin-top: 220px;
  }

  .heading-10 {
    font-size: 60px;
  }

  .container-3 {
    max-width: 728px;
  }

  .centered-heading {
    margin-top: 40px;
  }

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

  .container-4 {
    max-width: 728px;
  }

  .footer-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .image-3 {
    width: 95%;
  }

  .image-4, .image-5 {
    width: 100%;
  }

  .image-6 {
    width: 95%;
  }

  .container-6 {
    object-fit: scale-down;
    grid-template-columns: 25% 25% 25% 25%;
  }

  .nav-menu-wrapper-2 {
    background-color: #0000;
  }

  .nav-menu-2 {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper-2 {
    width: 100%;
    margin-left: 0;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #0000;
  }

  .text-block {
    padding-top: 0;
  }

  .heading-16 {
    margin-bottom: 10px;
  }

  .icon {
    color: var(--black);
    overflow: auto;
  }

  .container-7 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .image-8 {
    padding-right: 20px;
  }

  .navbar-container {
    padding: 0 0 0 20px;
  }

  .text-block-2.brand-2 {
    letter-spacing: .5px;
  }

  .nav-link-3 {
    background-color: var(--deep-blue);
    color: var(--white);
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    line-height: 16px;
  }

  .nav-menu-3 {
    background-color: var(--deep-blue);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .menu-button-3, .menu-button-3.w--open {
    background-color: var(--light-teal);
  }

  .wg-element {
    width: 50%;
  }

  .archive-dropdown {
    display: block;
  }

  .heading-20 {
    text-align: right;
  }

  .container-10 {
    max-width: 100%;
  }

  .quick-stack-4 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-2 {
    max-width: 100%;
  }

  .heading-23 {
    margin-top: 0;
  }

  .brand {
    margin-left: 0;
  }

  .brand.w--current {
    padding-top: 5px;
  }

  .title-box {
    flex-flow: wrap;
    width: auto;
  }

  .hero-visual {
    background-position: 40% 20%;
    background-size: 180%;
    background-attachment: scroll;
    height: 1400px;
    min-height: 600px;
    max-height: 1400%;
  }

  .div-block-8 {
    width: 0%;
  }

  .heading-in {
    margin-top: -10px;
  }

  .heading-24 {
    margin-top: -10px;
    margin-bottom: 0;
  }

  .div-block-9 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-fr-ok, .navbar-fr-ok.nav-about, .menu-button-4.w--open {
    background-color: var(--deep-blue);
  }

  .div-block-12 {
    min-width: 200px;
  }

  .flex-block-2 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .dropdown-toggle-3 {
    text-align: left;
    flex-flow: row;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    display: flex;
    position: relative;
    top: auto;
    left: auto;
  }

  .section-7 {
    margin-top: 100px;
  }

  .div-block-14 {
    grid-column-gap: 30px;
    grid-template-rows: auto auto auto;
  }

  .div-block-14.date {
    margin-left: 45%;
  }

  .text-block-7 {
    margin-left: 0;
  }

  .text-block-8 {
    width: 100%;
    margin-left: auto;
    padding-left: 0%;
    font-size: 60px;
  }

  .text-block-8.droite {
    margin-right: -13px;
  }

  .text-block-8.date {
    padding-left: 25%;
    font-size: 24px;
    line-height: 24px;
  }

  .text-block-8.haut {
    font-size: 60px;
  }

  .text-block-9 {
    text-align: right;
    width: 80%;
    font-size: 60px;
    line-height: 60px;
  }

  .image-14 {
    display: none;
  }

  .section-8 {
    background-repeat: no-repeat;
    background-size: 140%;
    height: 700px;
  }

  .projects-section {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 0;
  }

  .icon-2 {
    opacity: 1;
    color: #fff;
    border: 0 solid #fff;
    overflow: visible;
  }

  .icon-3 {
    color: #fff;
  }

  .icon-4, .icon-5, .icon-6, .icon-7, .icon-8, .icon-9, .icon-10, .icon-11, .icon-12 {
    color: var(--white);
  }
}

@media screen and (max-width: 767px) {
  .gallery-scroll {
    padding: 60px 15px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .body {
    background-position: 50% 0;
    background-size: cover;
    background-attachment: fixed;
  }

  .paragraph {
    box-sizing: border-box;
    flex-flow: row;
    justify-content: flex-start;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .button {
    max-width: 600px;
  }

  .image {
    clear: left;
    display: block;
  }

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stack-2 {
    clear: left;
  }

  .body-2, .cell-2, .div-block-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-3 {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .caption {
    padding-right: 30px;
  }

  .team-slider {
    padding: 60px 15px;
  }

  .centered-heading {
    margin-top: 40px;
  }

  .team-member-text {
    font-size: 18px;
    line-height: 22px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    object-fit: fill;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    place-content: space-between space-around;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .navbar-brand-2 {
    padding-left: 0;
  }

  .nav-menu-2 {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list-2.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-11 {
    margin-top: 10px;
  }

  .hero-heading-center {
    padding: 60px 15px;
  }

  .navbar-container {
    padding-left: 0;
  }

  .nav-link-3 {
    padding-left: 20px;
  }

  .wg-element {
    width: 100%;
  }

  .heading-19 {
    float: left;
    clear: none;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    font-size: 24px;
    line-height: 28px;
    display: block;
  }

  .cell-4 {
    text-align: right;
  }

  .quick-stack-4 {
    max-width: 80%;
  }

  .heading-23 {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    font-size: 34px;
    line-height: 36px;
    display: block;
  }

  .brand {
    margin-left: 20px;
    padding-left: 0;
  }

  .title-box {
    width: 100%;
  }

  .hero-visual {
    background-position: 40% 100%;
    background-size: 200%;
    height: 800px;
    min-height: 600px;
    max-height: 1200%;
  }

  .title-div {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex: 0 auto;
    order: 0;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    width: 100%;
    display: grid;
  }

  .paragraph-white2 {
    float: none;
    flex-flow: row;
    width: 60%;
    display: flex;
  }

  .heading-in {
    float: left;
    text-align: right;
    width: 40%;
    margin-top: 0;
    margin-right: 0;
    padding-right: 0;
    font-size: 24px;
    line-height: 28px;
  }

  .heading-24 {
    flex-flow: row;
    margin-top: -10px;
    margin-left: auto;
    margin-right: auto;
    font-size: 34px;
    line-height: 28px;
    display: flex;
  }

  .cell-9 {
    flex-flow: wrap;
  }

  .section-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-7 {
    font-size: 24px;
    line-height: 30px;
  }

  .navbar-fr-ok {
    width: 100%;
  }

  .navbar-fr-ok.nav-about {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .flex-block-2 {
    flex-flow: row;
  }

  .bold-text-2, .bold-text-3, .bold-text-4 {
    margin-left: auto;
    margin-right: auto;
  }

  .container-15 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-stack-5 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .heading-26 {
    margin-left: auto;
    margin-right: auto;
    font-size: 34px;
    line-height: 36px;
  }

  .h-in {
    margin-left: auto;
    margin-right: auto;
  }

  .section-7 {
    margin-top: 100px;
    padding-top: 0;
  }

  .text-block-8 {
    font-size: 40px;
    line-height: 40px;
  }

  .text-block-8.droite {
    margin-right: -13px;
  }

  .text-block-8.date {
    padding-left: 5%;
    font-size: 22px;
    line-height: 22px;
  }

  .text-block-8.haut {
    font-size: 40px;
    line-height: 40px;
  }

  .text-block-9 {
    font-size: 40px;
    line-height: 30px;
  }

  .image-13, .image-14 {
    display: none;
  }

  .section-8 {
    background-repeat: no-repeat;
    background-size: 140%;
    height: 480px;
  }

  .projects-section {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .icon-7 {
    color: var(--white);
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: none;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .navbar-no-shadow-container {
    box-sizing: border-box;
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    line-height: 18px;
  }

  .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .body {
    object-fit: fill;
    background-image: url('../images/260127-CCA-Charrette2026-Story_v1_vide.jpg');
    background-size: cover;
    background-attachment: fixed;
    height: auto;
    max-height: none;
    margin-top: 90px;
    margin-bottom: auto;
    overflow: visible;
  }

  .body.smallest {
    background-image: none;
    height: 600px;
    max-height: 400px;
  }

  .quick-stack {
    z-index: auto;
    float: none;
    clear: left;
  }

  .paragraph {
    clear: none;
    text-align: left;
    letter-spacing: normal;
    word-break: normal;
    overflow-wrap: normal;
    flex-flow: wrap;
    width: 100%;
    min-width: 200px;
    max-width: none;
    padding-right: 0;
    font-size: 14px;
    line-height: 18px;
    overflow: auto;
  }

  .paragraph.references {
    font-size: 11px;
    line-height: 13px;
  }

  .button {
    flex: 1;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .cell {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: inline-flex;
  }

  .container-2 {
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .flex-block {
    flex-flow: wrap;
  }

  .quick-stack-2 {
    clear: none;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .body-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-2.footer {
    color: #fff;
    -webkit-text-stroke-color: #000;
    font-size: 12px;
  }

  .cell-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-3 {
    font-size: 18px;
    line-height: 22px;
  }

  .heading-10 {
    filter: blur(1px) drop-shadow(1px 0 1px #ffffff4f) drop-shadow(1px 0 1px #ffffffe6);
    margin-bottom: 20px;
    padding-bottom: 0;
    font-size: 24px;
    line-height: 32px;
  }

  .heading-11 {
    font-size: 26px;
    line-height: 32px;
  }

  .caption {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .container-3 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }

  .team-block {
    min-width: 100%;
    max-width: 100%;
    padding-bottom: 15px;
    display: flex;
  }

  .team-member-image-two {
    max-width: 50%;
    max-height: 60%;
  }

  .team-block-info {
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 10px;
    display: flex;
  }

  .team-member-name-two {
    margin-top: 0;
  }

  .team-member-text {
    font-size: 14px;
    line-height: 18px;
  }

  .footer-dark {
    background-color: var(--deep-blue);
    margin-left: auto;
    margin-right: auto;
  }

  .container-4 {
    max-width: none;
  }

  .footer-copyright-center {
    text-transform: none;
    font-family: Geist, sans-serif;
    font-size: 11px;
  }

  .section {
    margin-top: 40px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .container-5 {
    grid-template-columns: minmax(200px, 1.5fr) 1fr;
    grid-auto-flow: row dense;
    display: block;
  }

  .quick-stack-3 {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .nav-menu-2 {
    flex-direction: column;
  }

  .nav-button-wrapper-2 {
    width: auto;
  }

  .menu-button-2.w--open {
    padding: 0;
  }

  .heading-14 {
    padding-left: 0;
    font-size: 24px;
  }

  .text-block {
    font-family: Geist, sans-serif;
    font-weight: 500;
  }

  .h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .container-7 {
    max-width: none;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .div-block-7 {
    flex-flow: wrap;
  }

  .image-8 {
    margin-right: auto;
    padding-right: 0;
  }

  .paragraph-5 {
    font-size: 18px;
    line-height: 22px;
  }

  .image-10 {
    max-width: 100%;
  }

  .navbar-container {
    justify-content: space-around;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 0;
    display: flex;
  }

  .text-block-2.brand-2 {
    margin-top: -2px;
    font-size: 11px;
  }

  .text-block-2.brand-1 {
    flex-flow: row;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    line-height: 15px;
    display: block;
  }

  .nav-link-3 {
    padding-left: 10px;
  }

  .wg-element {
    height: 25vh;
  }

  .heading-19 {
    flex-flow: wrap;
    width: 120%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    display: flex;
  }

  .container-10 {
    width: 100%;
  }

  .section-2 {
    box-sizing: border-box;
    width: 100%;
  }

  .heading-23 {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    width: 50%;
    margin-top: 0;
    margin-left: -128px;
    margin-right: auto;
    display: flex;
  }

  .brand {
    width: 100%;
    margin-left: 15px;
    padding-left: 0;
  }

  .brand.w--current {
    box-sizing: border-box;
    aspect-ratio: auto;
    text-align: left;
    object-fit: contain;
    width: 90%;
    padding-left: 0;
    font-size: 14px;
    line-height: 16px;
  }

  .title-box {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    grid-template-rows: auto auto auto;
    grid-template-columns: 50% 50%;
    grid-auto-columns: 1fr;
    padding-left: 10px;
    padding-right: 10px;
    display: grid;
  }

  .hero-visual {
    -webkit-text-fill-color: inherit;
    background-image: url('../images/260127-CCA-Charrette2026-Story_v1_vide.jpg');
    background-position: 50% 0;
    background-size: cover;
    background-attachment: scroll;
    background-clip: border-box;
    flex-flow: wrap;
    max-width: 100%;
    height: auto;
    min-height: 400px;
    max-height: none;
    display: block;
  }

  .title-div {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex: 0 auto;
    grid-auto-flow: row;
    width: 100%;
    max-width: none;
    display: flex;
  }

  .paragraph-white2 {
    text-align: left;
    flex-flow: row;
    flex: 0 auto;
    align-content: space-between;
    width: auto;
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    line-height: 18px;
    overflow: auto;
  }

  .dropdown-list-4.w--open {
    flex-flow: column;
    display: flex;
  }

  .div-block-9 {
    margin-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-3 {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-4 {
    margin-top: 60px;
  }

  .paragraph-7 {
    font-size: 18px;
    line-height: 22px;
  }

  .image-12 {
    object-fit: contain;
    margin-top: 20px;
  }

  .navbar-fr-ok.nav-about {
    padding-left: 0;
  }

  .navbar-fr-ok.nav-about.homepage {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    display: block;
  }

  .navbar-fr-ok.nav-about.hompage {
    display: block;
  }

  .menu-button-4 {
    padding: 15px 10px 15px 0;
  }

  .menu-button-4.w--open {
    padding-left: 10px;
  }

  .heading-25 {
    letter-spacing: .5px;
    font-size: 24px;
    line-height: 32px;
  }

  .div-block-12 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    min-width: 300px;
    display: block;
  }

  .flex-block-2 {
    flex-flow: wrap;
  }

  .dropdown-toggle-3 {
    padding-left: 10px;
  }

  .paragraph-9, .paragraph-10 {
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    line-height: 22px;
  }

  .switch-to-en {
    padding-left: 10px;
  }

  .container-15 {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-11, .paragraph-12 {
    font-size: 18px;
    line-height: 22px;
  }

  .section-5 {
    margin-top: 60px;
  }

  .surtitre, .surtitre-white {
    font-size: 12px;
    line-height: 16px;
  }

  .section-7 {
    padding-left: 15px;
    padding-right: 15px;
    display: none;
  }

  .div-block-14 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 100%;
    grid-auto-columns: 1fr;
    display: none;
  }

  .image-13 {
    margin-top: -78px;
    display: inline-block;
  }

  .image-14 {
    margin-top: -20px;
    display: block;
  }

  .image-15, .div-block-15 {
    display: none;
  }

  .section-8 {
    background-repeat: no-repeat;
    display: none;
  }

  .projects-section {
    grid-template-columns: 1fr;
  }

  .paragraph-17 {
    font-size: 18px;
    line-height: 22px;
  }

  .paragraph-18 {
    margin-bottom: 0;
  }

  .icon-2 {
    padding-right: 5px;
  }

  .navbar-2 {
    margin-right: auto;
  }
}

#w-node-_111f1a21-e44d-6fb5-21a8-a9dcf8818527-66fb0f32 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_111f1a21-e44d-6fb5-21a8-a9dcf8818529-66fb0f32 {
  place-self: center;
}

#w-node-f4735a80-b568-12c3-4998-4d6024c76321-24c7631c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_4fa61caa-1f01-1de9-48fc-8b7c9f07b09a-24c7631c, #w-node-_1959fa13-cac4-1bad-5064-1cf107d6f825-24c7631c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_273e84ed-9640-0cbd-afb0-a178d6b39c45-24c7631c {
  grid-area: 3 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-_9eb23808-7276-bbc8-f237-8894a3d25cc4-66fb0f35 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_6f10b962-5b49-d3f8-f41e-949de8874996-e8874994 {
  align-self: start;
}

#w-node-_6f10b962-5b49-d3f8-f41e-949de88749ac-e8874994 {
  place-self: start stretch;
}

#w-node-_6f10b962-5b49-d3f8-f41e-949de88749ae-e8874994, #w-node-_6f10b962-5b49-d3f8-f41e-949de88749b0-e8874994, #w-node-_6f10b962-5b49-d3f8-f41e-949de88749b2-e8874994 {
  place-self: auto stretch;
}

#w-node-ac1d91d9-6f8e-965c-f7f6-b020d83cf296-66fb0f36 {
  align-self: stretch;
}

#w-node-ac1d91d9-6f8e-965c-f7f6-b020d83cf2a5-66fb0f36, #w-node-ad5d99ac-644e-ab35-35c6-3e1efa663f0f-66fb0f36, #w-node-e36a76ce-8ffa-b440-3822-d0ddc927ab4f-66fb0f36, #w-node-_15b14440-8a5c-b22b-4d5b-f2b87c8c528f-66fb0f36, #w-node-eef02c32-5853-d33c-91ff-291ee0712865-66fb0f36, #w-node-_372148a0-2e9f-3e95-99e0-67957f158c66-66fb0f36, #w-node-baa3a76c-7fb2-b7f1-46fd-ff17259e637f-66fb0f36, #w-node-_7c1a8c4f-9b59-3e19-7818-2fb27cc37b5d-66fb0f36, #w-node-_2cefec6b-3320-ece2-ae9b-b5093090bc66-66fb0f36, #w-node-f5d0a20e-8fad-e92d-a11e-04ac167822a8-66fb0f36, #w-node-aa09d9c1-dbeb-5cfe-d883-a6f364d2f495-66fb0f36, #w-node-_088d083c-cdff-c8dc-9025-ddb19c10eda4-66fb0f36, #w-node-_0bfaf2dc-4e24-ccad-a0f4-f38012d58122-66fb0f36, #w-node-_76e4ced8-7dda-2f58-1e19-4f8bb35959d3-66fb0f36, #w-node-_41dc7c4f-8e06-f018-7567-460fb136bc80-66fb0f36, #w-node-_4f8cf2a8-64e7-138f-326e-ea74e7831dba-66fb0f36, #w-node-ba7d864f-38e3-9833-5d82-8a393b3c67e7-66fb0f36, #w-node-_2c18e0d3-b801-201d-bc7d-32cdd0f7f870-66fb0f36, #w-node-_7919f76c-fc55-1b33-afe9-5a4ae7b7a643-66fb0f36, #w-node-_66fae186-4ade-37ef-7dad-28152d3a34c1-66fb0f36, #w-node-bd6a1933-4c94-b12f-858e-37ce865a314c-66fb0f36, #w-node-_9f964bdd-dbfc-8a24-e580-b17cdaca3390-66fb0f36, #w-node-d80cfa62-5dab-b3ff-7e34-5377d113c175-66fb0f36, #w-node-a399e3fb-11d5-9a95-543d-057402e6da90-66fb0f36, #w-node-_3a8ca7d0-57c7-b52d-2a3a-f990f41990d8-66fb0f36, #w-node-_4113e061-298f-5028-f29f-37de8cad1da9-66fb0f36, #w-node-ab23fc96-b62f-d6d0-e26c-1a678a7c7594-66fb0f36, #w-node-_4f1f2405-151a-2dda-5d52-99c8104bf7b6-66fb0f36, #w-node-db9303a0-1179-5619-a1d5-d1b00df3404c-66fb0f36, #w-node-adb7c124-fdda-55b1-1330-32c61f42f94f-66fb0f36, #w-node-_83e44660-2aba-8323-3458-5d4294af9375-66fb0f36, #w-node-_809b830e-6eaf-09e3-de7f-3dd5cb069e41-66fb0f36, #w-node-d72cad29-f698-5b51-a67d-5581e589f7c1-66fb0f36, #w-node-_1dd66be7-a693-9c72-b942-a07822831b9a-66fb0f36, #w-node-_2c88b337-eb8a-917f-12aa-13b95f3a0ce9-66fb0f36, #w-node-_48354387-13e5-8220-61a8-0f8962115f82-66fb0f36, #w-node-_1ebdd9f2-79b4-ce93-0dc5-4929fefd2eea-66fb0f36, #w-node-e0e64f94-4e27-2077-9024-1c146ab4dfee-66fb0f36, #w-node-_2f2ab94b-2219-3b39-cff0-69a576d906e5-66fb0f36, #w-node-e17a2a0f-36dd-b5f0-f57a-39a6e18ee497-66fb0f36, #w-node-c6e427ea-4018-96d2-0d1f-ec0878c86da0-66fb0f36, #w-node-cb553bcd-35dc-e664-a98b-6ec8e24045b4-66fb0f36, #w-node-_5535beea-5735-8655-ee30-7fe44618c4ef-66fb0f36, #w-node-_2531fe91-e5eb-b36c-6d7e-df3f62bd4c72-66fb0f36, #w-node-cb995573-6272-2f12-300d-f7bcceb0f9a1-66fb0f36, #w-node-d990c3eb-6c9d-eda7-0d2a-a714c958502e-66fb0f36, #w-node-c90103ce-0e7d-b500-67fe-8c501ab4ff52-66fb0f36, #w-node-_32728d78-81ce-b1b8-a0a8-985aa4056a10-66fb0f36, #w-node-a12edc42-fd8d-06cd-6f1d-5e29f4d8f492-66fb0f36, #w-node-_3e0b9156-4273-dbcb-c2a5-c4db9192d5ea-66fb0f36, #w-node-d3059746-8fbc-6b5c-ddec-aa762622d6a0-66fb0f36, #w-node-_40512d80-875d-42e0-23ab-ed142094d1dc-66fb0f36, #w-node-_963b42fe-35d0-35ac-9b36-c421083ea967-66fb0f36, #w-node-_1dceeb62-cd3d-8ad0-51a6-992fa79ee493-66fb0f36, #w-node-ca0a418e-69e8-7c42-390a-87b786b0a067-66fb0f36, #w-node-a60e3d50-9b04-8099-101a-d2ec3488c800-66fb0f36, #w-node-_703acb76-6c35-4888-b2bc-57b860a6a8fb-66fb0f36, #w-node-a600f451-8621-2d60-5f54-f7ab211523c6-66fb0f36, #w-node-_38764e38-a1c4-9b3e-02f6-59809610fed1-66fb0f36, #w-node-_45c0b321-f3cd-337f-80ca-32fcaedab450-66fb0f36, #w-node-_092b0bb3-8159-d0e0-1e9e-379613b6284d-66fb0f36, #w-node-e67c27b0-6f1d-0dcf-85fe-296b78a5b955-66fb0f36, #w-node-_854db964-fa33-0234-df97-44fc082e5a23-66fb0f36, #w-node-_7117483d-fdc4-1e35-5eeb-526082a5bbbd-66fb0f36, #w-node-_997a5352-fac2-c30e-5b3a-df07a78042b2-66fb0f36, #w-node-aeed25c4-cfae-e0ad-1e7d-9741cb6a3954-66fb0f36, #w-node-_41c8463b-b46c-7366-70d4-d2fe48088a27-66fb0f36, #w-node-b69b3f95-da6d-a758-f177-0e064bafce80-66fb0f36, #w-node-f0f592d8-b233-ff21-31f8-6e0a68de0989-66fb0f36, #w-node-_50929aa6-17f2-c1f7-4143-ea6f8225e1e4-66fb0f36, #w-node-_7e8f7f2c-c81b-4b33-f9d4-527c04aeffce-66fb0f36, #w-node-bf8e00fc-c55b-e16c-669d-ff6d5fc70ba1-66fb0f36, #w-node-_09995101-a1c1-e392-d9db-68e0daeed7be-66fb0f36, #w-node-_442dd427-e144-e8cd-0cc5-066fc5bf0fe6-66fb0f36, #w-node-_7628df8b-e41e-8f33-56c4-0e9a136eaa97-66fb0f36 {
  order: 0;
  align-self: stretch;
}

#w-node-_57cf7972-095e-f407-6843-a7470b2160c8-87e071bb {
  align-self: start;
}

#w-node-_893cf05f-bee8-7315-cfc3-51d769e403be-87e071bb {
  place-self: start stretch;
}

#w-node-_893cf05f-bee8-7315-cfc3-51d769e403c0-87e071bb, #w-node-_893cf05f-bee8-7315-cfc3-51d769e403c1-87e071bb, #w-node-_893cf05f-bee8-7315-cfc3-51d769e403bf-87e071bb {
  place-self: auto stretch;
}

#w-node-_67c77e74-5eaa-ab26-568e-27717ce5d9c0-66fb0f38 {
  place-self: center;
}

#w-node-_33728dc8-532c-e663-fbc6-4feb864db9a0-66fb0f39 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-f89b000a-ba2f-411b-cabb-05eebbfb0011-66fb0f39 {
  place-self: center;
}

#w-node-_33728dc8-532c-e663-fbc6-4feb864db9a0-66fb0f3b {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-ce5426a5-7b56-9db8-50d7-0cc4b7cda724-66fb0f3c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch stretch;
}

#w-node-ce5426a5-7b56-9db8-50d7-0cc4b7cda726-66fb0f3c {
  place-self: auto;
}

#w-node-_98128fe8-12c8-6339-9502-a9c8ac75620d-66fb0f3d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch stretch;
}

#w-node-_98128fe8-12c8-6339-9502-a9c8ac75620f-66fb0f3d {
  place-self: auto;
}

#w-node-_33728dc8-532c-e663-fbc6-4feb864db9a0-66fb0f3f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-f89b000a-ba2f-411b-cabb-05eebbfb0011-66fb0f3f, #w-node-_67aca464-4b1c-d120-7476-2baeff3ffd56-66fb0f41 {
  place-self: center;
}

#w-node-_14b853a5-8b33-cf5b-c539-1e559042ed77-66fb0f42 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_14b853a5-8b33-cf5b-c539-1e559042ed79-66fb0f42 {
  place-self: center;
}

#w-node-_6bfb8a07-228f-512f-771f-22e8350de9be-66fb0f43 {
  align-self: stretch;
}

#w-node-_6bfb8a07-228f-512f-771f-22e8350de9cf-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350de9df-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350de9f1-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea01-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea11-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea1f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea31-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea3f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea4d-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea5f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea6d-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea7c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea8d-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dea9c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deaab-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deaba-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deacb-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deada-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deae9-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deafc-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb0b-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb1a-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb29-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb3c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb4f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb5c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb69-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb78-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb87-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deb98-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350debab-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350debb8-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350debc7-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350debda-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350debe9-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350debf6-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec03-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec12-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec1f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec2c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec3b-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec4c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec5f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec70-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec7f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec8c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dec9b-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deca8-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350decb7-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350decca-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350decd7-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dece4-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350decf3-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded02-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded13-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded20-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded2f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded42-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded4f-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded62-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded71-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded7e-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded8b-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350ded98-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deda7-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dedb4-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dedc1-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dedce-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350deddf-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dedf0-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dedff-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dee0c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dee1d-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dee2c-66fb0f43, #w-node-_6bfb8a07-228f-512f-771f-22e8350dee3b-66fb0f43 {
  order: 0;
  align-self: stretch;
}

#w-node-c8abd20e-ac9f-3b1b-bdf7-018ae1d31ceb-66fb0f44 {
  place-self: center;
}

#w-node-_3b321fe6-5908-4e09-eede-193b73f70248-66fb0f45 {
  align-self: stretch;
}

#w-node-_3b321fe6-5908-4e09-eede-193b73f70259-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70269-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7027b-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7028b-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7029b-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f702a9-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f702bb-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f702c9-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f702d7-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f702e9-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f702f7-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70306-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70317-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70326-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70335-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70344-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70355-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70364-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70373-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70386-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70395-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f703a4-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f703b3-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f703c6-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f703d9-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f703e6-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f703f3-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70402-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70411-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70422-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70435-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70442-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70451-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70464-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70473-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70480-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7048d-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7049c-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f704a9-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f704b6-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f704c5-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f704d6-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f704e9-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f704fa-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70509-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70516-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70525-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70532-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70541-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70554-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70561-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7056e-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7057d-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7058c-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7059d-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f705aa-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f705b9-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f705cc-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f705d9-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f705ec-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f705fb-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70608-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70615-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70622-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70631-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7063e-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7064b-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70658-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70669-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f7067a-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70689-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f70696-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f706a7-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f706b6-66fb0f45, #w-node-_3b321fe6-5908-4e09-eede-193b73f706c5-66fb0f45 {
  order: 0;
  align-self: stretch;
}

#w-node-f4265763-c79c-bcf5-172a-71e38d01128b-66fb0f45 {
  align-self: stretch;
}

#w-node-f4265763-c79c-bcf5-172a-71e38d01129c-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0112ac-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0112be-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0112ce-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0112de-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0112ec-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0112fe-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01130c-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01131a-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01132c-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01133a-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011349-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01135a-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011369-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011378-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011387-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011398-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0113a7-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0113b6-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0113c9-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0113d8-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0113e7-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0113f6-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011409-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01141c-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011429-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011436-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011445-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011454-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011465-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011478-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011485-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011494-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0114a7-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0114b6-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0114c3-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0114d0-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0114df-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0114ec-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0114f9-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011508-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011519-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01152c-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01153d-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01154c-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011559-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011568-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011575-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011584-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011597-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0115a4-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0115b1-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0115c0-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0115cf-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0115e0-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0115ed-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0115fc-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01160f-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01161c-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01162f-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01163e-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01164b-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011658-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011665-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011674-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011681-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01168e-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d01169b-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0116ac-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0116bd-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0116cc-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0116d9-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0116ea-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d0116f9-66fb0f45, #w-node-f4265763-c79c-bcf5-172a-71e38d011708-66fb0f45 {
  order: 0;
  align-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-_6f10b962-5b49-d3f8-f41e-949de88749ac-e8874994, #w-node-_6f10b962-5b49-d3f8-f41e-949de88749ae-e8874994, #w-node-_6f10b962-5b49-d3f8-f41e-949de88749b2-e8874994, #w-node-_893cf05f-bee8-7315-cfc3-51d769e403be-87e071bb, #w-node-_893cf05f-bee8-7315-cfc3-51d769e403c0-87e071bb, #w-node-_893cf05f-bee8-7315-cfc3-51d769e403bf-87e071bb {
    align-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9eb23808-7276-bbc8-f237-8894a3d25cc4-66fb0f35, #w-node-_33728dc8-532c-e663-fbc6-4feb864db9a0-66fb0f39, #w-node-_33728dc8-532c-e663-fbc6-4feb864db9a0-66fb0f3b, #w-node-_33728dc8-532c-e663-fbc6-4feb864db9a0-66fb0f3f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Nantes';
  src: url('../fonts/Nantes-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nantes';
  src: url('../fonts/Nantes-Regular.woff2') format('woff2'), url('../fonts/Nantes-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nantes';
  src: url('../fonts/Nantes-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}