:root {
  --black-color: black;
  --white-color: white;
  --red-color: #FF0000;
  --light-grey-color: #dadada;
  --mouse-x:0;
  --mouse-y:0;
}
@font-face {
  font-family: "Geogrotersque Medium";
  src: url("./assets/geogrotesque.ttf");
}
@font-face {
  font-family: "Inter Bold";
  src: url("./assets/inter-bold.otf");
}
@font-face {
  font-family: "Inter Regular";
  src: url("./assets/inter-regular.ttf");
}

html {
  scroll-behavior: smooth;
}

*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: auto;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
body .background {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: none;
}
body .background img {
  -o-object-fit: cover;
     object-fit: cover;
}
body p {
  font-family: "Inter Regular";
  font-size: 3.5vw;
  font-weight: 100;
  color: var(--white-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  body p {
    font-size: 1.2vw;
  }
}
body li {
  font-family: "Inter Regular";
  font-size: 3.5vw;
  font-weight: 100;
  color: var(--white-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  body li {
    font-size: 1.2vw;
    line-height: 1.8vw;
  }
}
body span {
  font-family: "Inter Regular";
  font-size: 3.5vw;
  color: var(--white-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  body span {
    font-size: 1.2vw;
  }
}
body a {
  text-decoration: none;
}
body h1 {
  font-family: "Geogrotersque Medium";
  font-size: 7vw;
  color: var(--white-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  body h1 {
    font-size: 1.4vw;
  }
}
body h2 {
  font-family: "Inter Regular";
  font-size: 5vw;
  font-weight: 50;
  color: var(--white-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  body h2 {
    font-size: 4vw;
  }
}
body h3 {
  font-family: "Inter Regular";
  font-size: 5vw;
  font-weight: 50;
  color: var(--white-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  body h3 {
    font-size: 2vw;
  }
}
body h4 {
  font-family: "Inter Regular";
  font-size: 4vw;
  color: var(--black-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  body h4 {
    font-size: 1.4vw;
  }
}
body h5 {
  font-family: "Geogrotersque Medium";
  font-size: 4vw;
  color: var(--white-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  body h5 {
    font-size: 1.4vw;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  max-width: 3000px;
}
header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
header nav .logo {
  margin: 2vw;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-aspect-ratio: 1/1) {
  header nav .logo {
    flex-direction: row;
  }
  header nav .logo p {
    margin: auto;
    padding-top: 0.1vw;
  }
  header nav .logo :nth-child(3) {
    display: none;
  }
}
header nav .logo .fond {
  position: absolute;
  margin: -2vw;
  width: 100vw;
  background: linear-gradient(#000000 0%, #000000 75%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  pointer-events: none !important;
}
@media screen and (min-aspect-ratio: 1/1) {
  header nav .logo .fond {
    display: none;
  }
}
header nav .logo .fondForCards {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(#000000 0%, #000000 75%, rgba(0, 0, 0, 0) 100%);
  height: 7vw;
  pointer-events: none !important;
  transition: all 1s;
  opacity: 0;
}
header nav .logo .fondForCards.active {
  opacity: 1;
}
@media screen and (max-aspect-ratio: 1/1) {
  header nav .logo .fondForCards.active {
    height: 35vw;
  }
}
header nav .logo p {
  margin-left: 2vw;
  position: relative;
  z-index: 2;
}
header nav .logo :nth-child(1) {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
}
header nav .logo :nth-child(1) .theLogo {
  width: 15vw;
  height: 15vw;
}
@media screen and (min-aspect-ratio: 1/1) {
  header nav .logo :nth-child(1) .theLogo {
    width: 3vw;
    height: 3vw;
  }
}
header nav .logo :nth-child(1) h1 {
  margin: auto;
  margin-left: 0;
}
header nav .links {
  position: relative;
  z-index: 2;
}
@media screen and (min-aspect-ratio: 1/1) {
  header nav .links {
    margin: 2vw;
  }
  header nav .links :nth-child(1) + a {
    display: none;
  }
}
header nav .links a {
  width: 12vw;
  height: 12vw;
  border-radius: 2vw;
  display: block;
  overflow: hidden;
  margin: 2vw;
  box-shadow: 1vw 1vw 1vw 0.5vw var(--black-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  header nav .links a {
    width: 2.4vw;
    height: 2.4vw;
    border-radius: 0.4vw;
    display: inline-block;
    margin: 0vw 0vw 0vw 0.5vw;
  }
}
header nav .links a img {
  width: 100%;
  height: 100%;
}

main {
  margin-top: 36vw;
  max-width: 3000px;
  width: 100%;
  position: relative;
}
@media screen and (min-aspect-ratio: 1/1) {
  main {
    margin-top: 10vw;
  }
  main .linksAndMap {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }
  main .mapSection {
    width: 50%;
    margin: 0;
  }
}
main .description {
  padding: 6vw;
  padding-right: 25vw;
}
@media screen and (min-aspect-ratio: 1/1) {
  main .description {
    padding: 0;
    text-align: center;
  }
}
main .links {
  padding: 4vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (min-aspect-ratio: 1/1) {
  main .links {
    width: 50%;
    flex-direction: column;
    justify-content: space-around;
  }
  main .links .button {
    margin: auto;
  }
}
main .map {
  width: 100vw;
  height: 70vw;
  margin-top: 10vw;
  margin-bottom: 10vw;
  box-shadow: 1vw 5vw 5vw var(--black-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  main .map {
    width: 80%;
    height: 20vw;
    margin: 10%;
    margin-bottom: 0;
  }
}
main .services {
  background-color: var(--black-color);
}
main .services .title {
  height: 5vw;
  background-color: var(--white-color);
  display: flex;
  margin-top: 5vw;
  width: 100%;
  margin-bottom: 5vw;
}
main .services .title h4 {
  margin: auto;
  margin-left: 8vw;
}
main .services .list {
  margin-left: 8vw;
  margin-right: 28vw;
  padding-bottom: 5vw;
}
main .valeurs .title {
  height: 5vw;
  background-color: var(--white-color);
  display: flex;
  width: 100%;
}
main .valeurs .title h4 {
  margin: auto;
  margin-left: 8vw;
}
main .valeurs .cards {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 45vw;
  position: relative;
  width: 100%;
}
@media screen and (min-aspect-ratio: 1/1) {
  main .valeurs .cards {
    margin-bottom: 10vw;
    margin-top: 5vw;
  }
}
main .valeurs .cards .card {
  transform: rotateY(90deg);
  transform-style: preserve-3d;
  opacity: 0;
  transition: all 0.1s;
  width: 35vw;
  height: 35vw;
  background-image: url("./assets/card.png");
  background-size: 100% 100%;
  display: flex;
  border: 2px solid var(--white-color);
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
  border-radius: 5vw;
  margin-bottom: 5vw;
  box-shadow: 1vw 5vw 5vw var(--black-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  main .valeurs .cards .card {
    background-image: none;
    background-color: #FF0000;
  }
}
@media screen and (min-aspect-ratio: 1/1) {
  main .valeurs .cards .card {
    width: 15vw;
    height: 15vw;
    border-radius: 1vw;
    margin-bottom: 0vw;
  }
}
main .valeurs .cards .card h5 {
  margin: auto;
  padding: 2vw;
  text-align: center;
}
main .valeurs .cards .light {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 60%);
}
main .valeurs .cardsActive .card {
  transform: rotateY(0deg);
  opacity: 1;
}
main .valeurs .cardsActive :nth-child(1) {
  transition: all 1s;
}
main .valeurs .cardsActive :nth-child(2) {
  transition: all 1s 0.5s;
}
main .valeurs .cardsActive :nth-child(3) {
  transition: all 1s 1s;
}
main .valeurs .cardsActive :nth-child(4) {
  transition: all 1s 1.5s;
}
main .cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10vw;
  padding-bottom: 10vw;
  margin-bottom: 0;
}
@media screen and (min-aspect-ratio: 1/1) {
  main .cta {
    margin-top: 0vw;
    margin-bottom: 5vw;
    padding-bottom: 0;
  }
}
main .cta .button {
  margin: auto;
  margin-bottom: 5vw;
}
@media screen and (min-aspect-ratio: 1/1) {
  main .cta .button {
    margin-bottom: 2vw;
  }
}

.button {
  border-radius: 3vw;
  background-color: var(--red-color);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 4vw;
  z-index: 2;
  min-width: 40vw;
}
@media screen and (min-aspect-ratio: 1/1) {
  .button {
    min-width: 15vw;
    padding: 1vw;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 1vw;
  }
}
.button span {
  font-family: "Inter Bold";
  font-weight: bold;
  margin: auto;
}
.button .arrow {
  margin: auto;
  margin: auto;
  height: 0.5vw;
  width: 3vw;
  position: relative;
  background: var(--white-color);
  transition: all 0.2s;
}
@media screen and (min-aspect-ratio: 1/1) {
  .button .arrow {
    height: 0.1vw;
  }
}
.button .arrow::before,
.button .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: var(--white-color);
  height: 0.5vw;
  width: 2vw;
}
@media screen and (min-aspect-ratio: 1/1) {
  .button .arrow::before,
  .button .arrow::after {
    height: 0.1vw;
    width: 1vw;
  }
}
.button .arrow::before {
  transform: rotate(45deg);
  transform-origin: right bottom;
}
.button .arrow::after {
  transform: rotate(-45deg);
  transform-origin: right top;
}
.button.ctaButton {
  background-color: var(--white-color);
}
.button.ctaButton span {
  color: var(--black-color);
}
.button.ctaButton .arrow {
  background-color: var(--black-color);
}
.button.ctaButton .arrow::before,
.button.ctaButton .arrow::after {
  background: var(--black-color);
}

.button:hover {
  background-color: var(--light-grey-color);
}
.button:hover span {
  color: var(--black-color);
}
.button:hover .arrow {
  width: 10vw;
  background-color: var(--black-color);
}
@media screen and (min-aspect-ratio: 1/1) {
  .button:hover .arrow {
    width: 6vw;
  }
}
.button:hover .arrow::before,
.button:hover .arrow::after {
  background: var(--black-color);
}
.button:hover.ctaButton {
  background-color: var(--red-color);
}
.button:hover.ctaButton span {
  color: var(--white-color);
}
.button:hover.ctaButton .arrow {
  background-color: var(--white-color);
}
.button:hover.ctaButton .arrow::before,
.button:hover.ctaButton .arrow::after {
  background: var(--white-color);
}

footer {
  max-width: 3000px;
  width: 100%;
  padding-bottom: 2vw;
  padding-top: 2vw;
  margin-left: 4vw;
  margin-right: 4vw;
  width: 92vw;
  z-index: 4;
}

.fade {
  width: 100%;
}

.pro {
  margin-top: 55vw;
}
@media screen and (min-aspect-ratio: 1/1) {
  .pro {
    margin-top: 10vw;
  }
}
.pro h3 {
  text-align: center;
}
.pro .valeurs {
  min-height: 100vh;
}
.pro .intro {
  width: 64vw;
  margin-left: 8vw;
  margin-right: 28vw;
}

.mentions {
  margin-top: 55vw;
}
.mentions p {
  padding-bottom: 3.5vw;
}
@media screen and (min-aspect-ratio: 1/1) {
  .mentions p {
    padding-bottom: 1vw;
  }
}
@media screen and (min-aspect-ratio: 1/1) {
  .mentions {
    margin-top: 15vw;
  }
}
.mentions h3 {
  margin-top: 5vw;
}
.mentions .valeurs {
  min-height: 100vh;
}
.mentions .intro {
  width: 64vw;
  margin-left: 8vw;
  margin-right: 28vw;
}
.mentions .services {
  padding-bottom: 10vw;
}
.mentions .services footer {
  background-color: var(--black-color);
}
.mentions .services .title {
  margin-top: 0;
}

.particuliers {
  margin-top: 55vw;
}
@media screen and (min-aspect-ratio: 1/1) {
  .particuliers {
    margin-top: 10vw;
  }
}
.particuliers h3 {
  text-align: center;
}
.particuliers .valeurs {
  min-height: 100vh;
}

.error {
  width: 100%;
  height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.error h3 {
  font-size: 10vw;
  font-family: "Geogrotersque Medium";
  font-weight: 900;
}
@media screen and (min-aspect-ratio: 1/1) {
  .error h3 {
    font-size: 3vw;
  }
}
@media screen and (min-aspect-ratio: 1/1) {
  .error .cta {
    flex-direction: row;
    justify-content: center;
  }
  .error .cta .button {
    margin: 5vw 1vw 5vw 0;
  }
}/*# sourceMappingURL=styles.css.map */