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

:root {
  font-size: 18px;
  --color-text: #fff;
  --color-bg: #131417;
  --color-link: #aaa;
  --color-link-hover: #fff;
  --perspective: 0px;
  --grid-item-translate: 0px;
  --grid-columns: 3;
  --grid-width: 100%;
  --grid-max-width: 1200px;
  --grid-item-ratio: 0.8;
  --grid-item-radius: 20px;
  --grid-gap: 1vw;
  --color-text-alt: #808080;
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: "tenon", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  font-variation-settings: "wght" 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  display: grid;
  place-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.visually-hidden {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
  clip: rect(1px, 1px, 1px, 1px); /*maybe deprecated but we need to support legacy browsers */
  clip-path: inset(50%); /*modern browsers, clip-path works inwards from each corner*/
  white-space: nowrap; /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
  /* Provide a fallback style for browsers
  that don't support :focus-visible */
  outline: none;
  background: lightgrey;
}

a:focus:not(:focus-visible) {
  /* Remove the focus indicator on mouse-focus for browsers
  that do support :focus-visible */
  background: transparent;
}

a:focus-visible {
  /* Draw a very noticeable focus style for
  keyboard-focus on browsers that do support
  :focus-visible */
  outline: 2px solid red;
  background: transparent;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
  content: "";
  position: fixed;
  z-index: 4000;
}

.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
  cursor: pointer;
}
a :hover {
  color: var(--color-link-hover);
  outline: none;
}

header {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
header .bodymovin path {
  transition: all 0.2s;
  fill: #575757 !important;
}
header .bodymovin:hover {
  fill: #fff !important;
}
header .right {
  display: flex;
  align-items: center;
  align-self: baseline;
  gap: 10px;
}
header .right .contact {
  color: white;
}

.bodymovin2 {
  margin-top: -20vh;
}
.bodymovin2 path {
  fill: #fff !important;
}

.logo .a1 {
  transition: all 0.2s;
  transform-origin: 50% 83%;
}
.logo .a2 {
  transition: all 0.2s;
  transform-origin: 50% 97%;
}
.logo:hover .a1 {
  transform: rotate(90deg);
}
.logo:hover .a2 {
  transform: rotate(-90deg);
}

.intro {
  padding: 1rem;
  max-width: 1000px;
  margin: 10vh auto 3vh;
}
.intro .title {
  font-size: clamp(2rem, 13vw, 8rem);
  font-weight: 400;
  margin: 0 0 7vh;
  line-height: 1;
}
.intro .description {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .intro .description {
    flex-direction: row;
    gap: 5vw;
  }
}
.intro .description p {
  color: var(--color-text-alt);
  margin: 1rem 0;
}
.intro .description .lets {
  color: #fffb05;
}
.intro .description span {
  margin: 1rem 0 0;
}
.intro .up {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .intro .up {
    flex-direction: row;
    gap: 80px;
  }
}
.intro .up .project__label {
  color: var(--color-text-alt);
}
@media screen and (min-width: 768px) {
  .intro .up .project__label {
    align-self: end;
    width: 60px;
    text-align: right;
  }
}

.columns {
  width: var(--grid-width);
  max-width: var(--grid-max-width);
  position: relative;
  padding: 20vh 0;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gap);
}

.column {
  width: 100%;
  position: relative;
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 100%;
  will-change: transform;
}

.column__item {
  margin: 0;
  position: relative;
  z-index: 1;
}

.column__item-imgwrap {
  width: 100%;
  aspect-ratio: var(--grid-item-ratio);
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--grid-item-radius);
}

.column__item-img {
  position: absolute;
  top: calc(-1 * var(--grid-item-translate));
  left: calc(-1 * var(--grid-item-translate));
  height: calc(100% + var(--grid-item-translate) * 2);
  width: calc(100% + var(--grid-item-translate) * 2);
  background-size: cover;
  background-position: 50% 20%;
  backface-visibility: hidden;
}
.column__item-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40vh auto;
  overflow: hidden;
}

.gallery-wrap--auto {
  height: auto;
}

.gallery-wrap--large {
  height: 110vh;
}

.gallery-wrap--dense {
  margin: 0;
}

.gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
}

.gallery--breakout {
  width: -moz-min-content;
  width: min-content;
}

.gallery__item {
  background-position: 50% 50%;
  background-size: cover;
  flex: none;
  border-radius: 6px;
  position: relative;
  filter: brightness(1);
}

.gallery__item-cut {
  overflow: hidden;
  display: grid;
  place-items: center;
}

.gallery__item-inner {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.caption {
  font-size: clamp(1rem, 3vw, 1.75rem);
  z-index: 101;
  color: var(--color-caption);
  font-weight: 400;
}

.gallery--row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  --size-factor: 1.25;
  --item-height: 20vh;
}

.gallery--row .gallery__item {
  width: auto;
  aspect-ratio: 2/3;
}

.gallery--row .gallery__item--s {
  height: var(--item-height);
}

.gallery--row .gallery__item--m {
  height: calc(var(--size-factor) * var(--item-height));
}

.gallery--row .gallery__item--l {
  height: calc(var(--size-factor) * 2 * var(--item-height));
}

.gallery--row .gallery__item--xl {
  z-index: 100;
  height: calc(var(--size-factor) * 3 * var(--item-height));
}

.gallery--switch.gallery--row .gallery__item--m,
.gallery--switch.gallery--row .gallery__item--l {
  height: var(--item-height);
}

.gallery--row .caption {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -50vh;
  left: 0;
  padding: 4.5vw;
  max-width: 730px;
  opacity: 0;
}

.gallery--switch.gallery--row .caption {
  bottom: 0;
  opacity: 1;
}

.gallery--grid {
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  row-gap: 2.5vw;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
}

.gallery--grid .gallery__item {
  height: 33vh;
  width: 33vw;
}

.gallery--switch.gallery--grid {
  gap: 0;
}

.gallery--switch.gallery--grid .gallery__item {
  height: 110vh;
  width: 110vw;
  filter: brightness(0.65);
}

.gallery--grid .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  padding: 0;
  top: 50%;
  left: 50%;
  margin-top: 50vh;
  margin-left: -50vw;
  display: grid;
  place-items: center;
  max-width: none;
  opacity: 0;
}

.gallery--switch.gallery--grid .caption {
  margin-top: -40vh;
  opacity: 1;
}

.gallery--grid .caption p {
  padding: 50vh 30vw 10vh 10vw;
}

.gallery--switch.gallery--grid .caption p {
  margin-top: 0;
}

.gallery--switch .gallery__item--center {
  height: 100vh;
  width: 100vw;
  aspect-ratio: auto;
  filter: brightness(0.5);
}

.gallery__item {
  overflow: hidden;
}
.gallery__item picture {
  transform: none !important;
}
.gallery__item picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery__item video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.column__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.column__item-img video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.maintmordpress main {
  overflow: visible;
}
.maintmordpress .baseline {
  color: #fffb05;
  font-size: 18px;
  width: 60%;
  margin-top: -30px;
}
.maintmordpress .description-maintenance {
  gap: 50px;
}
.maintmordpress .description-maintenance .tarif-maintenance {
  position: sticky;
  top: 10px;
  align-self: flex-start;
}
.maintmordpress .description-maintenance .tarif-maintenance p {
  color: white !important;
  font-size: 20px;
  width: 155px;
  text-transform: uppercase;
}
.maintmordpress .description-maintenance .tarif-maintenance p span {
  font-size: 50px;
}
.maintmordpress .description-maintenance .maintenance strong {
  font-weight: bold;
  color: white;
}
.maintmordpress .description-maintenance .maintenance .flex {
  display: flex;
  gap: 50px;
}
.maintmordpress .description-maintenance .maintenance .flex div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.maintmordpress .description-maintenance .maintenance .flex div p {
  text-align: center;
}
.maintmordpress .confiance {
  font-size: 60px;
  margin-top: 50px;
  color: #fffb05;
  font-weight: bold;
}
.maintmordpress .confiance span {
  color: #fff;
  font-size: 24px;
  font-weight: 100;
}

@media screen and (min-width: 1024px) {
  .cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid white;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
  }
  .cursor.hover {
    background-color: white;
    opacity: 0.3;
    width: 80px;
    height: 80px;
  }
}/*# sourceMappingURL=styles.css.map */