@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=The+Nautigal&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Limelight&display=swap");

@font-face {
  font-family: "dolce-vita";
  src: url("./assets/Dolce\ Vita\ Heavy\ Bold.ttf");
}

html {
  scroll-behavior: smooth;
}

:root {
  --color1: #f5f5f5;
  --color2: #161616;
  --color3: #222222;
  --color4: #444444;
  --color5: #999999;

  --color11: #00b4d5;
  --color12: #ec6090;
  --color13: #ffd854;
  --color14: #7da02a;

  --color6: var(--color11);

  --marquee-width: 1000px;
  --marquee-elements-displayed: 5;
  --marquee-flip-card-width: calc(
    var(--marquee-width) / var(--marquee-elements-displayed)
  );
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.st0 {
  fill: var(--color2);
}
.st1 {
  fill: var(--color1);
}
.st2 {
  fill: var(--color11);
}
.st3 {
  fill: var(--color12);
}
.st4 {
  fill: var(--color13);
}

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

::-webkit-scrollbar {
  background-color: var(--color2);
  width: 0.8rem;
}
::-webkit-scrollbar-thumb {
  background-color: var(--color5);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color1);
}

button {
  cursor: pointer;
  border: none;
  user-select: none;
}

label {
  cursor: pointer;
}
img {
  user-select: none;
}

body {
  position: relative;
  background: var(--color3);
  color: var(--color1);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  height: 100%;
}

/* Box */
.box {
  margin: 0 auto;
  max-width: 1300px;
  padding: 60px 40px;
}
.box ul {
  text-align: center;
}
.box p {
  line-height: 20px;
}

/* Box Max-width */
.max-width {
  max-width: 1600px;
  margin: auto;
}

/* h2 */
h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color6);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 140%;
  margin-bottom: 80px;
}
h2::after {
  content: "";
  position: absolute;
  background: var(--color1);
  width: 30%;
  height: 4px;
  bottom: -20px;
  left: 5px;
  transform-origin: left;
  animation: traitanim 1s ease-in-out forwards;
}
@keyframes traitanim {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

/* h3 */
h3,
h3 span {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--color1);
  font-weight: 600;
  line-height: 140%;
  text-align: center;
}
h3 a:hover {
  color: var(--color5);
}

/* h4 */
h4 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--color6);
  font-weight: 600;
}

/* h5 */
h5,
h5 span {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}

/* h6 */
h6 {
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 20px;
}

/* p + span */
p,
span,
footer a {
  font-size: clamp(0.8rem, 1vw, 1rem);
}

/* Liens */
a:is(:link, :active, :visited) {
  color: var(--color1);
  text-decoration: none;
  outline: none;
  border: none;
}
a:is(:link, :active, :visited):focus-visible {
  text-decoration: underline;
}

/* **************************************************************** */
/* Loader screen */

.loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--color3);
  z-index: 100;
}
#loader-eye {
  position: relative;
  width: 25%;
  height: 25%;
  fill: var(--color4);
  animation: load-page 1s linear infinite;
}
@keyframes load-page {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* **************************************************************** */
/* Loader Image*/

.loader-image-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader-eye-image {
  position: relative;
  width: 25%;
  height: 25%;
  fill: var(--color4);
  animation: load-image 1s linear infinite;
}
@keyframes load-image {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* **************************************************************** */
/* Apparition au défilement */

.reveal-loaded .reveal [class*="reveal-"] {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
  transition:
    opacity 0s ease,
    transform 0s ease !important;
}

.reveal-loaded [class*="reveal-"] {
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.reveal-loaded .reveal .reveal-1 {
  transform: translateX(-20px) !important;
}
.reveal-loaded .reveal-2 {
  transition-delay: 0.1s;
}
.reveal-loaded .reveal-3 {
  transition-delay: 0.2s;
}
.reveal-loaded .reveal-4 {
  transition-delay: 0.3s;
}
.reveal-loaded .reveal-5 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal [class*="reveal-"] {
    opacity: 1 !important;
    transform: translateY(0px) !important;
    transform: translateX(0px) !important;
  }
  [class*="reveal-"] {
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* **************************************************************** */
/* Barre de Navigation */

nav {
  position: fixed;
  background: var(--color3);
  color: var(--color1);
  border-bottom: var(--color2) solid 2px;
  width: 100%;
  top: 0;
  text-align: right;
  overflow: hidden;
  z-index: 1000;
}
nav li {
  display: inline-flex;
}
nav li a:is(:link, :active, :visited) {
  color: var(--color5);
  font-size: 1.2rem;
  line-height: 60px;
  font-weight: 500;
  padding: 0px 12px;
  transition: color 0.2s linear;
}
nav li a:is(:link, :active, :visited).active-nav,
nav li a:is(:link, :active, :visited):hover {
  color: var(--color1);
}

#logo-nav {
  float: left;
  height: 60px;
  width: 60px;
  margin-left: 12px;
}

/* Checkbox Listage Nav*/
.checkbox-nav {
  display: none;
  float: right;
  font-size: 30px;
  line-height: 60px;
  margin-right: 20px;
}
#check-nav {
  display: none;
}

/* **************************************************************** */
/* Index */

.accueil {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 1400px;
  padding: 60px 0px;
}

.accueil-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Colors Visuel... Animation */
.left-side {
  display: flex;
  justify-content: end;
  color: var(--color1);
  width: 100%;
}
.left-side div {
  margin: 0px 50px 0px 0px;
}
.left-side h5 {
  font-family: "dolce-vita", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  text-align: end;
  transition: color 0.2s linear;
}
.left-side span {
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 100;
  text-align: end;
}
#target {
  position: relative;
}
#target::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 3px;
  margin-left: 3px;
  background: var(--color1);
  animation: typewriter 0.8s linear infinite;
}
@keyframes typewriter {
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

/* Milieu */
.middle-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

#graphic-tablet-pencil {
  position: relative;
  width: 50px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  fill: var(--color1);
}

/* Identité visuelle - Graphisme - Impression */
.right-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

h1 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 600;
  margin: 10px 0px 10px 50px;
  transition: color 0.2s linear;
}
h1 a {
  transition: color 0.2s linear;
}
h1 a::after {
  content: attr(data-content);
  position: absolute;
  color: transparent;
  top: 0;
  left: 0;
}

.cyan,
h1 a.cyan:is(:link, :active, :visited) {
  color: var(--color11);
}
.magenta,
h1 a.magenta:is(:link, :active, :visited) {
  color: var(--color12);
}
.yellow,
h1 a.yellow:is(:link, :active, :visited) {
  color: var(--color13);
}
.green {
  color: var(--color14);
}

h1 a.cyan::after {
  -webkit-text-stroke: 1px var(--color11);
}
h1 a.magenta::after {
  -webkit-text-stroke: 1px var(--color12);
}
h1 a.yellow::after {
  -webkit-text-stroke: 1px var(--color13);
}

h1 a.cyan:hover,
h1 a.magenta:hover,
h1 a.yellow:hover {
  color: transparent;
}

/* **************************************************************** */
/* Présentation */

main ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
main h5 {
  color: var(--color6);
}

/* Flip Card */
.flip-card {
  width: 200px;
  height: 120px;
  perspective: 600px;
  margin: 40px 60px;
}
.flip-card:hover > .flip-card-inner {
  transform: rotateY(180deg);
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.4s linear;
  transform-style: preserve-3d;
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color3);
  align-items: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-card-front svg {
  height: 100%;
  width: 100%;
}
.flip-card-back {
  padding: 10px;
  transform: rotateY(180deg);
}
.flip-card-back p {
  margin-top: 10px;
}

/* Flèches */
.arrow {
  position: relative;
  height: 10px;
  width: 10px;
  background: var(--color3);
  border: 1px solid #ffffff90;
  border-width: 3px 3px 0 0;
  transform: rotate(45deg);
}
.arrow:before,
.arrow:after {
  content: "";
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  border-width: 3px 3px 0 0;
}
.arrow:before {
  border: 1px solid #ffffff50;
  border-width: 3px 3px 0 0;
  top: 7px;
  left: -10px;
}
.arrow:after {
  border: 1px solid #ffffff;
  border-width: 3px 3px 0 0;
  top: -13px;
  left: 10px;
}

/* **************************************************************** */
/* Statitiques */

.skill li {
  display: inline-block;
  position: relative;
  margin: 40px 50px 20px;
}

.skill .circular-progress {
  display: grid;
  position: relative;
  place-items: center;
  border-radius: 50%;
  height: 180px;
  width: 180px;
  margin: 20px auto;
}
.skill .circular-progress::before {
  content: "";
  position: absolute;
  height: 90%;
  width: 90%;
  background: var(--color3);
  border-radius: 50%;
}

.skill .value-container {
  position: absolute;
}

.skill .list {
  display: table;
  margin: auto;
}
.skill .list span {
  display: flex;
  border-bottom: 1px solid var(--color5);
  line-height: 3rem;
}

/* **************************************************************** */
/* Clients */

.client .number-progress,
.client #timer-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.client li {
  display: inline-block;
  position: relative;
  margin: 40px 60px;
}

.client .value-container,
.client .sign-span,
.client #timer-container {
  color: var(--color6);
}

/* Marquee */
.marquee {
  position: relative;
  width: var(--marquee-width);
  margin: 40px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0) 100%
  );
  background-color: var(--color3);
}

.marquee-content {
  display: flex;
  height: 100%;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-1 * var(--marquee-flip-card-width) * var(--marquee-elements))
    );
  }
}

.marquee-content img {
  width: 200px;
  height: 200px;
  cursor: pointer;
  transition: 0.3s linear;
  /* filter: grayscale(1); */
}
.marquee-content img:hover {
  transform: scale(1.1);
  /* filter: grayscale(0); */
}

/* Progress-number */
.value-end {
  display: none;
}
.value-container,
.sign-span,
#timer-container {
  font-size: clamp(2rem, 7vw, 3rem);
}

/* **************************************************************** */
/* Prestation */

.prestation-container ul {
  margin: 40px 0px 0px;
}
.prestation-container li {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 300px;
  margin: 40px;
  overflow: hidden;
}
.prestation-container p {
  padding: 10px 0px 20px;
}

.prestation-container .image-container {
  position: relative;
  user-select: none;
  overflow: hidden;
}
.prestation-container .image-container img {
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s;
}
.prestation-container .image-container img:hover {
  transform: scale(1.2);
}

/* Identité visuelle */
.box.identity {
  padding-top: 100px;
}

.identity h2,
.identity h4 {
  color: var(--color11);
}

.identity-cards {
  margin: 30px 0px 10px;
}
.identity-cards .choice-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.identity-cards .choice-cards input {
  display: none;
}
.identity-cards .choice-cards label {
  background: var(--color11);
  color: var(--color3);
  border: 2px solid var(--color11);
  padding: 10px;
  margin: 2px;
  cursor: pointer;
  transition: 0.3s linear;
}
.identity-cards .choice-cards input:hover + label {
  background: var(--color3);
  color: var(--color11);
}
.identity-cards .result-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color11);
}

.identity .prestation-container .image-container {
  max-width: 600px;
  height: 300px;
  margin: 0px auto 40px;
}

.typo-change h3,
.typo-change h3 span {
  line-height: 120%;
  padding: 0px;
}
.typo-change span {
  color: var(--color11);
  animation: typo-change 4s linear infinite;
}
@keyframes typo-change {
  0% {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 100%;
  }
  33% {
    font-family: "Limelight", sans-serif;
    font-weight: 400;
    line-height: 100%;
  }
  66% {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    line-height: 100%;
  }
  100% {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 100%;
  }
}

/* Graphisme */
.graphisme h2,
.graphisme h4 {
  color: var(--color12);
}
.graphisme .prestation-container .image-container {
  height: 220px;
  width: 100%;
}

#site-web {
  color: var(--color14);
}

/* Impression */
.print h2,
.print h4 {
  color: var(--color13);
}
.print .prestation-container,
.web .prestation-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.print ul,
.web ul {
  grid-column: 2;
  margin-left: 40px;
}
.print li,
.web li {
  display: block;
}
.print .prestation-container .image-container {
  max-width: 1000px;
  height: 400px;
}

.emoji {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  line-height: 120%;
}

/* Site Web */
.web h2,
.web h4 {
  color: var(--color14);
}

.web .prestation-container .image-container {
  max-width: 1000px;
  height: 400px;
}

a.identity-a {
  color: var(--color11);
}
a.graphisme-a {
  color: var(--color12);
}
a.impression-a {
  color: var(--color13);
}
a.cgv-blank {
  color: var(--color1);
}

a.identity-a:hover,
a.graphisme-a:hover,
a.impression-a:hover,
a.cgv-blank:hover {
  text-decoration: underline;
}

#devis-blank {
  padding: 40px 40px 100px;
}

/* **************************************************************** */
/* Réalisation */

.box.realisation {
  padding-top: 100px;
}
.realisation h3 {
  padding: 0px 0px 30px;
}

.diapo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0px auto;
}
.diapo-container .diapo {
  display: none;
  align-items: center;
  flex-direction: column;
  min-height: 400px;
  width: 100%;
  margin-bottom: 60px;
}
.diapo-container .diapo.active {
  display: flex;
}
.diapo-container .diapo.active .img-content {
  animation: apparitionImg 0.4s ease-in-out;
}
@keyframes apparitionImg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.diapo-container .diapo.active .description {
  animation: apparitionText 0.4s ease-in-out;
}
@keyframes apparitionText {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.diapo-container .img-container {
  position: relative;
}
.diapo-container .img-content img {
  position: relative;
  display: flex;
  width: 75%;
  margin: 0px auto;
  cursor: zoom-in;
}
.diapo-container .description {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px 0px 0px;
}
.diapo-container .description p {
  margin: 20px 0px;
}

/* Bouton Voir plus */
a.learn-more {
  display: inline-flex;
  background: var(--color2);
  color: var(--color1);
  font-size: clamp(0.8rem, 1vw, 1rem);
  padding: 8px 20px;
  border-radius: 20px;
  margin-top: 6px;
}
a.learn-more:hover {
  background: var(--color6);
}

/* Précédent et Suivant */
.cadre-arrow {
  position: relative;
  width: 100%;
}
.cadre-arrow button {
  display: flex;
  background-color: var(--color3);
  padding: 6px 36px;
  transition: transform 0.1s linear;
}
.cadre-arrow .previous {
  float: left;
}
.cadre-arrow .previous span {
  transform: rotate(225deg) scale(1.6);
}
.cadre-arrow .previous:active {
  transform: translateX(-10px);
}
.cadre-arrow .next {
  float: right;
}
.cadre-arrow .next span {
  transform: rotate(45deg) scale(1.6);
}
.cadre-arrow .next:active {
  transform: translateX(10px);
}

/* Avis */
.quote {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 300px;
  margin: 40px;
  padding: 20px;
  border: 2px solid var(--color1);
  border-radius: 10px;
  transition: color 0.2s linear;
  cursor: pointer;
}
.quote.active {
  color: var(--color6);
  transition: color 0.2s linear;
}
.quote-signature {
  font-family: "The Nautigal";
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.quote p,
.quote .quote-signature {
  z-index: 10;
}
.quote:hover .quote-signature {
  color: var(--color6);
}

.quote-before,
.quote-after {
  position: absolute;
  font-family: "Times New Roman", Times, serif;
  background: var(--color3);
  font-size: clamp(4rem, 7vw, 6rem);
  user-select: none;
}
.quote-before {
  top: -10px;
  left: -20px;
  line-height: 40px;
  padding-right: 20px;
}
.quote-after {
  bottom: -90px;
  right: -20px;
  line-height: 120px;
  padding-left: 20px;
}

#fullscreen {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000cc;
  backdrop-filter: blur(10px);
  z-index: 10000;
  cursor: zoom-out;
}
#fullscreen-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  color: var(--color1);
  font-size: 2rem;
}
#img-zoom img {
  position: relative;
  width: 100%;
  height: 100%;
}

/* *************************************************************** */
/* Contact */

.box.infos {
  padding-top: 100px;
  text-align: center;
}

.infos h5 {
  padding-top: 40px;
}
.infos p {
  padding-top: 40px;
}
.infos li {
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin: 40px;
  user-select: none;
}
.inofs li a {
  hyphens: manual;
}
.infos i {
  display: block;
  font-size: 3.4rem;
  padding-bottom: 10px;
}
.infos li:hover > a i {
  animation: wobble-vertical-on-hover 1s ease-in-out;
}
@keyframes wobble-vertical-on-hover {
  16% {
    transform: translateY(8px);
  }
  33% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(4px);
  }
  66% {
    transform: translateY(-2px);
  }
  80% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}

.infos .contact,
.infos .contact li > a {
  color: var(--color11);
}
.infos .reseaux,
.infos .reseaux li > a {
  color: var(--color14);
}

/* **************************************************************** */
/* Mention légales et Condition général de vente Liste et Traitement des données personnelles*/

.ml,
.cgv,
.tdp {
  padding: 40px;
  user-select: none;
}
.ml-list p,
.cgv-list p,
.tdp-list p {
  margin-top: 10px;
}

.box.ml {
  padding-top: 100px;
}
.signature {
  text-align-last: right;
}

/* **************************************************************** */
/* Page Erreur 404 */

.erreur404 {
  height: 100vh;
  max-height: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.erreur404 h3 {
  color: var(--color6);
  font-size: clamp(2rem, 4vw, 8rem);
  line-height: 2rem;
  padding: 40px 20px;
}
.erreur404 span a {
  color: var(--color1);
}
.erreur404 span a:hover {
  color: var(--color6);
}

/* **************************************************************** */
/* Bas de Page */

footer {
  position: relative;
  bottom: 0;
  background: var(--color3);
  padding: 20px;
  line-height: 1.6rem;
  font-weight: 500;
  user-select: none;
}
footer h6 {
  color: var(--color1);
}
footer,
footer a:is(:link, :active, :visited) {
  color: var(--color5);
}
footer a:is(:link, :active, :visited):hover,
footer button:hover {
  color: var(--color1);
}

footer .wrapper-container,
.copyright-container {
  display: flex;
  justify-content: space-between;
  border-top: var(--color5) 2px solid;
}
footer .wrapper-container {
  padding-top: 60px;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  width: 400px;
  padding-left: 60px;
}
footer .wrapper:nth-child(1) {
  width: 800px;
  padding-left: 0px;
}

.copyright-container {
  margin-top: 30px;
  padding-top: 20px;
}

/* Button remonter page */
.btn-up {
  background: none;
  font-size: 40px;
  color: var(--color5);
}

/* **************************************************************** */
/* @media max-width + min-width*/

@media (max-width: 1200px) {
  :root {
    --marquee-width: 800px;
    --marquee-elements-displayed: 4;
  }
}
@media (max-width: 1000px) {
  :root {
    --marquee-width: 600px;
    --marquee-elements-displayed: 3;
  }
}
@media (max-width: 800px) {
  :root {
    --marquee-width: 400px;
    --marquee-elements-displayed: 2;
  }
}
@media (max-width: 600px) {
  :root {
    --marquee-width: 200px;
    --marquee-elements-displayed: 1;
  }
}

@media (max-width: 900px) {
  /* Media MAX Barre Naviguation */
  nav ul {
    position: fixed;
    background: var(--color3);
    width: 100%;
    top: 60px;
    left: -100%;
    text-align: center;
    margin-top: 2px;
  }
  nav li {
    flex-direction: column;
    border-bottom: var(--color2) solid 2px;
  }
  .checkbox-nav {
    display: block;
  }
  #check-nav:checked ~ ul {
    display: flex;
    flex-direction: column;
    left: 0;
  }

  /* Media MAX main */
  main ul {
    flex-direction: column;
    margin-top: 0px;
  }
  main li.flip-card {
    margin: 30px 20px;
  }
  main li.arrow-container {
    transform: rotate(90deg);
  }

  /* Media MAX Prestations Images */
  .print .prestation-container,
  .web .prestation-container {
    flex-wrap: wrap;
  }
  .print .prestation-container .image-container,
  .web .prestation-container .image-container {
    margin: 40px 0px 0px 0px;
  }
  .print ul,
  .web ul {
    margin-left: 0px;
  }

  /* Media MAX Réalisations Diapo */
  .diapo-container .diapo {
    margin-bottom: 20px;
  }
  .diapo-container .img-content img {
    width: 100%;
  }
  .cadre-arrow {
    margin-bottom: 20px;
  }
  .cadre-arrow .previous span {
    transform: rotate(225deg) scale(1);
  }
  .cadre-arrow .next span {
    transform: rotate(45deg) scale(1);
  }
  .diapo-container .description {
    margin: 40px 20px;
  }

  /* Media MAX Footer */
  footer .wrapper-container {
    flex-wrap: wrap;
  }
  footer .wrapper {
    margin-top: 60px;
    padding-left: 0px;
  }
  footer .wrapper:nth-child(1) {
    margin-top: 0px;
  }
}

@media (max-width: 750px) {
  /* Media MAX Accueil Détail */
  .accueil-content {
    flex-direction: column;
  }
  .left-side div {
    margin: 0px;
  }
  .left-side {
    justify-content: center;
  }
  .left-side h5,
  .left-side span {
    text-align: center;
  }
  .middle-side {
    height: 0px;
    padding: 40px 0px;
  }
  #graphic-tablet-pencil {
    transform: translateX(-50%) rotate(-90deg) scale(0.6);
  }
  .right-side {
    align-items: center;
  }
  h1 {
    margin: 10px;
  }
  /* Media MAX Quote Réalisation */
  .quote {
    margin: 25px;
  }
}

/* Media MAX AUTRES */
@media (max-width: 500px) {
  .box {
    padding: 60px 20px 20px;
  }
  .flip-card {
    height: 80px;
  }
  .skill li {
    margin: 20px;
  }
  .skill .circular-progress {
    height: 120px;
    width: 120px;
  }
  .client li {
    margin: 20px 40px;
  }
  .identity-cards .choice-cards label {
    font-size: 0.8rem;
    padding: 4px;
  }
  .prestation-container li {
    width: 200px;
    margin: 10px 10px 20px;
  }
  .infos li {
    margin: 20px;
  }
  .btn-up {
    font-size: 2rem;
  }
  footer .wrapper {
    margin-top: 20px;
  }
}
