@font-face {
  font-family: "ibm_plex_sans";
  src: url("../fonts/ibmplexsans-medium-webfont.woff2") format("woff2"), url("../fonts/ibmplexsans-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ibm_plex_sans";
  src: url("../fonts/ibmplexsans-regular-webfont.woff2") format("woff2"), url("../fonts/ibmplexsans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "geomanist";
  src: url("../fonts/geomanist-medium-webfont.woff2") format("woff2"), url("../fonts/geomanist-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "geomanist";
  src: url("../fonts/geomanist-book-webfont.woff2") format("woff2"), url("../fonts/geomanist-book-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "geomanist";
  src: url("../fonts/geomanist-regular-webfont.woff2") format("woff2"), url("../fonts/geomanist-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "geomanist";
  src: url("../fonts/geomanist-light-webfont.woff2") format("woff2"), url("../fonts/geomanist-light-webfont.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 62.5%;
}

body {
  font-family: "ibm_plex_sans", Arial, sans-serif, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #2D2D4B;
  background-color: #F7F7F8;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  body {
    font-size: 1.4rem;
    line-height: 1.72;
  }
  body.menu-is-fixed {
    overflow: hidden;
  }
  body.menu-is-fixed .mobile-nav__toggle {
    text-indent: -9999px;
  }
  body.menu-is-fixed .mobile-nav__toggle::before, body.menu-is-fixed .mobile-nav__toggle::after {
    left: 3px;
  }
  body.menu-is-fixed .mobile-nav__toggle::before {
    top: 4px;
    transform: rotate(45deg) translateY(-50%);
  }
  body.menu-is-fixed .mobile-nav__toggle::after {
    bottom: 4px;
    transform: rotate(-45deg) translateY(50%);
  }
  body.menu-is-fixed .mobile-nav__toggle .bar {
    transform: scale(0);
  }
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "geomanist", Arial, sans-serif;
  font-weight: 500;
  color: #0AA050;
}

h1,
h2 {
  font-size: 4rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  h1,
  h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

h3,
.h3 {
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  h3,
  .h3 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

a {
  text-decoration: underline;
}
a, a:hover {
  color: #0AA050;
}
a:hover {
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.8rem;
  font-family: "geomanist", Arial, sans-serif;
  line-height: 2;
  font-size: 1.4rem;
  color: #058228 !important;
  background-color: rgba(10, 160, 80, 0.05);
  border-radius: 2rem;
  transition: all 0.1s ease-in-out;
}
.btn:hover {
  color: #fff !important;
  background-color: #058228;
}
.btn img,
.btn svg {
  margin-right: 0.8rem;
}
@media (max-width: 900px) {
  .btn {
    font-size: 1.3rem;
  }
}

ul {
  padding-left: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 2.6rem;
}
li::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1.2rem;
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #0AA050;
  border-radius: 50%;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

p {
  margin-bottom: 0.8rem;
}

main {
  display: flex;
  flex-direction: column;
  padding-bottom: 17.6rem;
}
main::before {
  content: "";
  position: absolute;
  top: -158rem;
  left: 50%;
  display: block;
  width: 244rem;
  height: 244rem;
  background-color: #FCFCFC;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-right: 3.2rem;
  padding-left: 3.2rem;
}
@media (max-width: 900px) {
  .container {
    padding-right: 2.4rem;
    padding-left: 2.4rem;
  }
}

nav ul {
  display: flex;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
nav li:not(:first-child) {
  margin-left: 3.2rem;
}
nav a {
  color: #2D2D4B;
}

.main-nav {
  font-size: 2.6rem;
}
.main-nav li {
  display: flex;
  line-height: 1;
}
.main-nav li:not(:first-of-type) {
  margin-left: 5.6rem;
  padding-left: 0;
}
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10.4rem 0 0;
    transform: translate3d(0, 0, 0);
    transform: translateX(-120%);
    will-change: transform;
    transition: transform 0.5s;
    background-color: #fff;
    z-index: 3;
  }
  .main-nav.is-displayed {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(0);
    overflow: auto;
  }
  .main-nav ul {
    display: block;
  }
  .main-nav li {
    padding-left: 0;
  }
  .main-nav li:not(:first-of-type) {
    margin-top: 4rem;
    margin-left: 0;
  }
}

.mobile-nav__toggle {
  display: none;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #0AA050;
  z-index: 4;
}
.mobile-nav__toggle:before, .mobile-nav__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  transition: all 0.5s;
  background-color: #0AA050;
}
.mobile-nav__toggle::before {
  top: 0;
  transform-origin: top left;
}
.mobile-nav__toggle .bar {
  position: absolute;
  top: 27%;
  left: 0;
  font-size: 1rem;
}
.mobile-nav__toggle::after {
  bottom: 0;
  transform-origin: bottom left;
}
@media (max-width: 900px) {
  .mobile-nav__toggle {
    display: block;
  }
}

.page-nav {
  font-size: 1.6rem;
  font-weight: 300;
}
.page-nav::before {
  content: "";
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-bottom: 2.4rem;
  background-color: #D2D2DC;
}
.page-nav ul {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
.page-nav li {
  padding-left: 0;
  line-height: 1;
}
.page-nav li::before {
  content: none;
}
.page-nav li::after {
  content: "";
  position: relative;
  top: auto;
  left: auto;
  display: inline-block;
  width: 2px;
  height: 100%;
  margin-left: 0.8rem;
  background-color: #D2D2DC;
  border-radius: 0;
  vertical-align: initial;
}
.page-nav li:not(:first-child) {
  margin-left: 0;
}
.page-nav li:last-child::after {
  margin-left: 0;
  background-color: transparent;
}
.page-nav a {
  color: #0AA050;
  text-decoration: none;
}
.page-nav div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pages-list li {
  position: relative;
}
.pages-list li::before {
  content: none;
}
.pages-list li.selected a::after {
  background-color: #0AA050;
}
.pages-list a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
}
.pages-list a::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  margin-right: 0.8rem;
  background-repeat: no-repeat;
}
.pages-list a::after {
  content: "";
  position: absolute;
  bottom: -1.6rem;
  left: 50%;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  transform: translateX(calc(-50% + 3.2rem));
}
.pages-list a:hover {
  color: #2D2D4B;
}
.pages-list a:hover::after {
  border: 1px solid #0AA050;
}
.pages-list a span > span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}
.pages-list a[href*=arcadi]::before {
  background-image: url(../images/logo-arcadi.svg);
}
.pages-list a[href*=naturae]::before {
  background-image: url(../images/logo-naturae.svg);
}
.pages-list a[href*=urba-pro]::before {
  background-image: url(../images/logo-urba-pro.svg);
}
@media (max-width: 900px) {
  .pages-list a::after {
    top: 0;
    bottom: 0;
    left: -2.4rem;
    margin: auto;
    transform: none;
  }
}

.logo {
  text-decoration: none;
  z-index: 4;
}
.logo:hover {
  text-decoration: none;
}
.logo h1 {
  font-size: 5.5rem;
  line-height: 1;
  color: #2D2D4B;
}
.logo h1 span {
  display: block;
  margin-top: -0.2rem;
  font-size: 1.6rem;
  font-weight: 200;
}
@media (max-width: 900px) {
  .logo h1 {
    font-size: 4rem;
  }
  .logo h1 span {
    font-size: 1.1rem;
  }
}

.grid, .team {
  display: grid;
  grid-gap: 3.2rem;
}
.grid-50-50, .team {
  grid-template-columns: repeat(2, 50%);
}
.grid-30-60 {
  grid-template-columns: 33% 66%;
}
@media (max-width: 900px) {
  .grid, .team {
    display: block;
  }
}

.contact-infos {
  font-size: 2rem;
}
.contact-infos:not(:first-child)::before {
  content: "";
  grid-column: 1/3;
  display: block;
  max-width: 50%;
  height: 2px;
  margin-bottom: 4rem;
  background-color: #D2D2DC;
}
.contact-infos a, .contact-infos__address {
  display: flex;
}
.contact-infos a div, .contact-infos__address div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 0.8rem;
}
.contact-infos a {
  align-items: center;
  color: #2D2D4B;
  text-decoration: none;
}
.contact-infos p {
  line-height: 1.52;
  white-space: pre-line;
}
.contact-infos svg {
  stroke: #0AA050;
}
@media (max-width: 900px) {
  .contact-infos {
    font-size: 1.6rem;
  }
  .contact-infos::before {
    margin-bottom: 2.4rem;
  }
  .contact-infos a:not(:first-of-type) {
    margin-top: 0.8rem;
  }
}

/* needed for old browsers */
dialog {
  display: block;
}

.hidden,
.invisible {
  display: none;
}

/* removes scroll when modal is opened */
.no-scroll {
  overflow: hidden;
}

.membre-modal,
.modal {
  position: fixed;
  top: 5%;
  right: auto;
  left: 50%;
  max-width: 112rem;
  width: 100%;
  max-height: 90vh;
  padding: 6rem;
  color: #2D2D4B;
  background: #fff;
  border: none;
  overflow: auto;
  z-index: 667;
  transform: translateX(-50%);
}
.membre-modal-overlay,
.modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #2D2D4B;
  opacity: 0.9;
  z-index: 666; /* satan inside */
  cursor: pointer;
}
.membre-modal-overlay[data-background-click=disabled],
.modal-overlay[data-background-click=disabled] {
  cursor: auto;
}
.membre-modal-close,
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 2.2rem;
  background: none;
  border: none;
}
.membre-modal-close__text svg,
.modal-close__text svg {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0.8rem;
  vertical-align: text-top;
}
.membre-modal hr,
.modal hr {
  width: 4.8rem;
  height: 1px;
  margin: 1.6rem 0 2.4rem;
  background-color: #D2D2DC;
  border: none;
}

/* it can be easily adapted in media-queries for tablets/mobile */
/* for this example: tablets */
@media (max-width: 900px) {
  .membre-modale,
  .modal {
    top: 5%;
    right: 5%;
    bottom: 5%;
    left: 5%;
    width: 90%;
    transform: none;
    margin: auto;
  }
}
/* for this example: mobile */
@media (max-width: 44.375em) {
  .membre-modale,
  .modal {
    top: 1%;
    right: 1%;
    bottom: 1%;
    left: 1%;
    max-width: 98%;
  }
}
.team {
  grid-row-gap: 6.4rem;
  margin-bottom: 6.4rem;
}
.team--member {
  display: flex;
  padding-left: 0;
}
.team--member::before {
  content: none;
}
.team--member strong {
  font-weight: 500;
}
.team--member p {
  margin: 0;
}
.team--member--img button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 11.2rem;
  height: 11.2rem;
  margin-right: 1.6rem;
  background: none;
  border-radius: 50%;
  border: 2px dashed transparent;
  transition: all 0.2s ease-in-out;
}
.team--member--img button:hover {
  border-color: rgba(10, 160, 80, 0.2);
}
.team--member--img button div {
  background-color: rgba(10, 160, 80, 0.05);
}
.team--member--img button div,
.team--member--img button img {
  width: 9.6rem;
  height: 9.6rem;
  border-radius: 50%;
  overflow: hidden;
}
.team--member--txt {
  padding-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.71;
}
.team--member--txt button {
  display: block;
  padding: 0;
  background: none;
  border: none;
}
.team--member__join {
  position: relative;
  color: #0AA050;
}
.team--member__join .team--member--img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 11.2rem;
  height: 11.2rem;
  margin-right: 1.6rem;
  border: 2px dashed transparent;
  border-radius: 50%;
}
.team--member__join .team--member--img div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.6rem;
  height: 9.6rem;
  background-color: rgba(10, 160, 80, 0.05);
  border-radius: 50%;
}
.team--member a {
  text-decoration: none;
}
.team--member a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.team--member a:hover .team--member--img {
  border-color: rgba(10, 160, 80, 0.2);
}
@media (max-width: 900px) {
  .team {
    margin-bottom: 3.2rem;
  }
  .team--member:not(:first-of-type) {
    margin-top: 4rem;
  }
  .team--member--txt {
    font-size: 1.3rem;
    line-height: 1.24;
  }
}

.membre-modal {
  max-width: 64rem;
  padding: 7.2rem 9.6rem;
  overflow: visible;
}
.membre-modal__wrapper {
  max-height: 70vh;
  overflow-y: auto;
}
.membre-modal--content__img {
  position: absolute;
  top: 3.2rem;
  left: -8rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  overflow: hidden;
}
.membre-modal--content__img img {
  width: 100%;
  height: 100%;
}
.membre-modal--content__txt {
  padding-left: 2rem;
}
.membre-modal--content__txt h2::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: 1px;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
  background-color: #D2D2DC;
}
@media (max-width: 900px) {
  .membre-modal {
    padding-right: 3.2rem;
    padding-left: 3.2rem;
  }
  .membre-modal--content__img {
    position: relative;
    top: initial;
    left: initial;
    margin-bottom: 3.2rem;
  }
}

.breadcrumbs {
  margin-bottom: 2.8rem;
  font-family: "geomanist", Arial, sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
}
.breadcrumbs a {
  font-weight: 300;
}
.breadcrumbs .separator {
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.8rem;
  margin-left: 0.8rem;
  stroke: #D2D2DC;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6.4rem;
}
.pagination:empty {
  background-color: red;
}
.pagination li::before {
  content: none;
}

header {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-color: #FCFCFC;
  z-index: 2;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  header {
    padding-top: 2.4rem;
    padding-bottom: 4rem;
  }
}

footer {
  position: relative;
  padding: 4.4rem 0;
  background-color: #fff;
}
footer::before {
  content: "";
  position: absolute;
  top: -17.6rem;
  left: -14.4rem;
  display: block;
  width: 42.4rem;
  height: 17.6rem;
  background: url(../images/illustration-naturae.svg) 0 0 no-repeat;
  z-index: -1;
  opacity: 0.2;
}
footer .container {
  display: flex;
  align-items: center;
}
footer a {
  margin-left: auto;
  color: #2D2D4B;
}
footer .logo {
  margin-left: 0;
}
footer .logo h1 {
  font-size: 3.2rem;
}
footer .logo h1 span {
  margin-top: -0.2rem;
  font-size: 1rem;
}
footer .pages-list {
  width: 100%;
  margin-left: 20%;
  font-size: 1.8rem;
  line-height: 1;
}
footer .pages-list a::before {
  width: 3.2rem;
  height: 3.2rem;
}
footer .pages-list a::after {
  content: none;
}
footer .pages-list span > span {
  display: none;
}
footer .more-pages {
  display: flex;
  gap: 0.8rem;
  margin-left: auto;
}
footer .more-pages a {
  line-height: 1;
}
footer .more-pages a:not(:first-of-type) {
  padding-left: 0.8rem;
  border-left: 1px solid #D2D2DC;
}
@media (max-width: 900px) {
  footer {
    padding-top: 3.2rem;
    padding-bottom: 2.4rem;
  }
  footer nav {
    display: none;
  }
  footer a {
    font-size: 1.2rem;
  }
  footer .logo h1 {
    font-size: 4rem;
  }
  footer .logo h1 span {
    font-size: 1.1rem;
  }
}

.intro {
  position: relative;
  padding-bottom: 20rem;
}
.intro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 9.6rem);
  display: block;
  width: 42.4rem;
  height: 42.4rem;
  background: url(../images/illustration-naturae.svg) 0 0 no-repeat;
  z-index: 0;
  opacity: 0.2;
}
.intro .grid, .intro .team {
  position: relative;
  z-index: 1;
}
.intro--txt {
  max-width: 86%;
  font-size: 2rem;
  line-height: 1.5;
}
.intro--txt h1 {
  display: flex;
  align-items: center;
  line-height: 1;
}
.intro--txt h1::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  margin-right: 0.8rem;
}
.intro--txt p {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.intro--txt p:first-of-type {
  font-weight: 500;
}
.intro--txt p + p {
  margin-top: 1.6rem;
}
.intro .page-nav {
  font-family: "geomanist", Arial, sans-serif;
  margin-top: 2.4rem;
}
.intro .page-nav .btn .icon {
  width: 3.2rem;
  height: 3.2rem;
}
.intro .page-nav .btn svg {
  fill: #058228;
  stroke: #058228;
}
.intro .page-nav .btn:hover svg {
  fill: white;
  stroke: white;
}
.intro--img {
  position: relative;
}
.intro--img-small {
  position: absolute;
  top: 20vw;
  left: 0;
  max-width: 33vw;
  border-top: 0.8rem solid #F7F7F8;
  border-right: 0.8rem solid #F7F7F8;
}
.arcadi .intro h1::before {
  background-image: url(../images/logo-arcadi.svg);
}
.natur .intro h1::before {
  background-image: url(../images/logo-naturae.svg);
}
.urba-pro .intro h1::before {
  background-image: url(../images/logo-urba-pro.svg);
}
@media (min-width: 1120px) {
  .intro--img-small {
    top: 27rem;
    left: -6.2rem;
    max-width: 35.2rem;
  }
}
@media (max-width: 900px) {
  .intro {
    padding-bottom: 19.2rem;
    overflow-x: hidden;
  }
  .intro::after {
    left: 0.8rem;
    bottom: 0;
    width: 23.2rem;
    height: 23.2rem;
    background-size: contain;
    opacity: 0.4;
  }
  .intro--txt {
    max-width: 100%;
    font-size: 1.4rem;
    line-height: 1.72;
  }
  .intro--txt h1 {
    font-size: 4rem;
  }
  .intro--img, .intro--img-small {
    margin-left: 1.6rem;
  }
  .intro--img-small {
    top: 40vw;
  }
  .intro .page-nav {
    margin-top: 1.6rem;
    margin-bottom: 3.2rem;
    font-size: 1.3rem;
  }
  .intro .page-nav::before {
    margin-bottom: 0.8rem;
  }
}

.about {
  padding: 8rem 0 12rem;
}
.about h2::after {
  content: "";
  display: block;
  width: 16rem;
  height: 4px;
  margin-top: 3.2rem;
  background-color: #0AA050;
}
.about h3:not(:first-child) {
  margin-top: 3.2rem;
}
.about li:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.about li strong {
  font-weight: 500;
}
@media (max-width: 900px) {
  .about {
    padding: 2.6rem 0 4.8rem;
  }
  .about h2 {
    margin-bottom: 2.4rem;
  }
  .about h2::after {
    margin-top: 0.8rem;
    height: 0.4rem;
  }
  .about h3 {
    margin-bottom: 0.8rem;
  }
  .about li:not(:last-of-type) {
    margin-bottom: 0.8rem;
  }
}

.projects {
  padding: 9.6rem 0 12.8rem;
  background-color: #fff;
}
.projects h2, .projects h2 + p {
  text-align: center;
}
.projects--nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -1.6rem 0 6rem -1.6rem;
}
.projects--nav button {
  display: inline-block;
  margin: 1.6rem 0 0 1.6rem;
  padding: 0 1.6rem;
  color: #0AA050;
  line-height: 2;
  background: none;
  border: none;
  border-radius: 1.6rem;
  background-color: rgba(10, 160, 80, 0.1);
}
.projects--nav button.is-checked, .projects--nav button:hover {
  color: #fff;
  background-color: #0AA050;
}
.projects--trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
}
.projects--trigger__title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.8rem;
  background-color: rgba(10, 160, 80, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s ease-out;
}
.projects--trigger__title, .projects--trigger__title > h3 {
  color: #fff;
}
.projects--trigger:hover .projects--trigger__title {
  visibility: visible;
  opacity: 1;
}
.projects--grid:after {
  content: "";
  display: block;
  clear: both;
}
.projects--item {
  float: left;
  width: calc(33.3333% - 2.15rem);
  height: 256px;
  margin-bottom: 3.2rem;
  padding-left: 0;
  overflow: hidden;
}
.projects--item::before {
  content: none;
}
.projects--item.horizontal {
  width: calc(66.666% - 1.15rem);
}
.projects--item.horizontal img {
  width: 100%;
}
.projects--item.vertical {
  height: 544px;
}
.projects--item.vertical img {
  width: auto;
  height: 100%;
}
.projects--images li::before {
  content: none;
}
.projects--images li:not(:first-child) {
  margin-top: 1.6rem;
}
.projects--images img {
  max-width: 100%;
}
@media (max-width: 900px) {
  .projects {
    padding: 4.8rem 0 4.2rem;
  }
  .projects h2 {
    margin-bottom: 1.6rem;
  }
  .projects h2 + p {
    text-align: left;
  }
  .projects--nav {
    justify-content: flex-start;
    margin-top: -0.8rem;
    margin-left: -0.8rem;
  }
  .projects--nav button {
    margin-top: 0.8rem;
    margin-left: 0.8rem;
  }
  .projects--item {
    float: none;
    width: 100%;
    margin-bottom: 1.6rem;
  }
}

.equipe,
.contact {
  padding: 12.8rem 0 0;
}
@media (max-width: 900px) {
  .equipe,
  .contact {
    padding: 4.8rem 2.4rem;
  }
  .equipe h2,
  .contact h2 {
    margin-bottom: 4rem;
  }
}

.contact {
  border-top: 1px dashed #D2D2DC;
}

.modal h1, .modal-close {
  color: #0AA050;
}
.modal-close__text svg {
  stroke: #0AA050;
}
.modal h2 {
  font-size: 2rem;
  color: #2D2D4B;
}
.modal article {
  margin-top: 0.8rem;
}
.modal article::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 1px;
  margin-bottom: 0.8rem;
  background-color: #D2D2DC;
}

.intro-accueil {
  position: relative;
  z-index: 1;
}
.intro-accueil::before, .intro-accueil::after {
  content: "";
  position: absolute;
  z-index: 0;
}
.intro-accueil::before {
  bottom: 50rem;
  left: 50%;
  display: block;
  width: 244rem;
  height: 244rem;
  background-color: #FCFCFC;
  border-radius: 50%;
  transform: translateX(-50%);
}
.intro-accueil .container {
  position: relative;
  z-index: 2;
}
.intro-accueil .intro--txt {
  position: relative;
  max-width: 73.6rem;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
.intro-accueil .intro--txt,
.intro-accueil .intro--txt p {
  margin-right: auto;
  margin-left: auto;
}
.intro-accueil .intro--txt h1 {
  display: block;
  text-align: center;
}
.intro-accueil .intro--txt h1::before {
  content: none;
}
.intro-accueil .intro--txt h1::after {
  content: "";
  display: block;
  width: 8rem;
  height: 0.4rem;
  margin: 0.8rem auto 4rem;
  background-color: #0AA050;
}
.intro-accueil .intro--txt p {
  max-width: 53.2rem;
  margin-top: 1rem;
}
.intro-accueil .page-nav {
  margin-top: 2.4rem;
}
.intro-accueil--img {
  position: relative;
  padding-left: 6.4rem;
}
.intro-accueil--img-small {
  position: absolute;
  top: 28rem;
  left: 0;
  border-top: 0.8rem solid #F7F7F8;
  border-right: 0.8rem solid #F7F7F8;
}
@media (max-width: 900px) {
  .intro-accueil {
    padding-bottom: 2.6rem;
    overflow-x: hidden;
  }
  .intro-accueil::before {
    bottom: 6rem;
    display: block;
    width: 84rem;
    height: 84rem;
  }
  .intro-accueil .intro--txt {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: left;
  }
}

.illustration-accueil {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-inline: -3.75rem;
}
@media (max-width: 900px) {
  .illustration-accueil {
    margin-inline: 0;
  }
}

.contact-accueil {
  padding-top: 9.6rem;
  padding-bottom: 16.2rem;
  border-top: 1px dashed #D2D2DC;
}
.contact-accueil h2 {
  margin-bottom: 4.8rem;
  text-align: center;
}
.contact-accueil a {
  display: flex;
  align-items: center;
  color: #2D2D4B;
  text-decoration: none;
}
.contact-accueil a[href^="/"] {
  color: #0AA050;
  text-decoration: underline;
}
.contact-accueil a img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
}
.contact-accueil ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}
.contact-accueil ul > li {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.contact-accueil ul > li:not(:first-of-type) {
  padding-left: 8rem;
  border-left: 1px dashed #D2D2DC;
}
.contact-accueil .logo-entreprise a {
  display: inline-flex;
  font-size: 4rem;
  font-weight: 700;
  color: #2D2D4B;
  text-decoration: none;
  line-height: 1;
}
.contact-accueil .logo-entreprise a::before {
  width: 5.6rem;
  height: 5.6rem;
}
.contact-accueil .logo-entreprise a span span {
  font-size: 1.2rem;
  font-weight: normal;
}
.contact-accueil div:not(.logo-entreprise) {
  margin-top: 2.4rem;
}
.contact-accueil div:not(.logo-entreprise) a::before {
  content: none;
}
.contact-accueil .pages-list a::after {
  content: none;
}
@media (max-width: 900px) {
  .contact-accueil {
    padding-bottom: 9.6rem;
  }
  .contact-accueil::before {
    margin-bottom: 4.8rem;
  }
  .contact-accueil h2 {
    margin-bottom: 0;
  }
  .contact-accueil ul {
    display: block;
  }
  .contact-accueil ul > li {
    padding: 3.2rem 0 2.4rem 3.2rem;
    line-height: 2.29;
  }
  .contact-accueil ul > li:not(:first-of-type) {
    padding-left: 3.2rem;
    border-top: 1px solid #D2D2DC;
    border-left: 0;
  }
  .contact-accueil div:not(.logo-entreprise) {
    margin-top: 1.6rem;
  }
}

.default main::before {
  top: -184rem;
}

.default-page.container {
  max-width: 73.6rem;
}
.default-page > h1 {
  font-size: 3.2rem;
}
.default-page > h2 {
  font-size: 2rem;
  font-weight: normal;
  color: #2D2D4B;
}
.default-page > h2:empty {
  display: none;
}
.default-page > h2::after {
  content: "";
  display: block;
  width: 16rem;
  height: 4px;
  margin-top: 3.2rem;
  margin-bottom: 6.4rem;
  background-color: #0AA050;
}
.default-page .content h2 {
  margin-top: 2.4rem;
  font-size: 2.2rem;
  color: #2D2D4B;
}

.groupe-lamo .modal {
  max-width: 64rem;
  padding: 7.2rem 9.6rem;
  overflow: visible;
}
.groupe-lamo .team--member:last-of-type {
  display: none;
}
.groupe-lamo .contact {
  border-top: 1px dashed #D2D2DC;
}

.news-page .intro::after {
  display: none;
}
.news-page > h2 {
  font-family: "geomanist", Arial, sans-serif;
  font-size: 2rem;
  font-weight: normal;
  color: #2D2D4B;
}
.news-page > h2::after {
  content: "";
  display: block;
  width: 16rem;
  height: 4px;
  margin-top: 3.2rem;
  margin-bottom: 6.4rem;
  background-color: #0AA050;
}
.news-page p {
  font-family: "geomanist", Arial, sans-serif;
}
.news-page .btn {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.8rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 1.6rem;
}
.news-page .btn svg {
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.2rem;
  stroke: #058228;
}
.news-page .btn:hover svg {
  stroke: #fff;
}
.news-page article {
  display: flex;
  gap: 3.2rem;
}
.news-page article:not(:first-of-type) {
  margin-top: 6.4rem;
}
.news-page article div:first-child {
  flex-shrink: 0;
  width: 16rem;
  height: 16rem;
  background-color: #0AA050;
  border-radius: 0.8rem;
  overflow: hidden;
}
.news-page article div:first-child img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.news-page article a {
  text-decoration: none;
}
.news-page article h3 {
  font-family: "geomanist", Arial, sans-serif;
  font-size: 2.2rem;
}
.news-page article h3::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 1px;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
  background-color: #D2D2DC;
}
.news-page time {
  font-size: 1.4rem;
  line-height: 1;
}
@media (max-width: 900px) {
  .news-page article {
    flex-direction: column;
  }
}

.article main::before {
  top: -184rem;
}

.article.container {
  max-width: 73.6rem;
}
.article img {
  max-width: 94rem;
  margin-top: 3.2rem;
  margin-left: 50%;
  transform: translateX(-50%);
}
.article > h1 {
  font-size: 3.2rem;
}
.article > h2 {
  font-size: 2rem;
  font-weight: normal;
  color: #2D2D4B;
}
.article > h2::after {
  content: "";
  display: block;
  width: 16rem;
  height: 4px;
  margin-top: 3.2rem;
  margin-bottom: 6.4rem;
  background-color: #0AA050;
}
@media (max-width: 900px) {
  .article img {
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }
}

figure.image-caption {
  margin: 0 !important;
  text-align: left !important;
}
figure.image-caption figcaption {
  text-align: center;
}

/*# sourceMappingURL=groupe-lamo.css.map */
