@charset "UTF-8";
/* ------- Portfolio personnel -------- */
/* -----------  Alice Six ------------- */
/*              )
               (
                )
            _.-~(~-.
           (@\`---'/.
          (   `._.'   )
           `-..___..-'                  */
/* ------------- VARIABLES ------------ */
@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap");
:root {
  --dark: #001144;
  --light: #eeeeee;
  --blue: #24e0d0;
  --aqua: #40c2b7;
  --red: #d9342b;
}

/* --------------- FONTS -------------- */
:root {
  --handwritting: "Indie Flower", cursive;
  --sansserif: "Poppins", sans-serif;
}

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

::-moz-selection {
  background-color: rgba(36, 224, 208, 0.7);
  color: var(--dark);
}

::selection {
  background-color: rgba(36, 224, 208, 0.7);
  color: var(--dark);
}

*:focus-visible {
  outline: 2px solid var(--blue);
}

::-webkit-scrollbar {
  width: 12px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(175deg, 67%, 20%);
}

html {
  scroll-behavior: smooth;
  scrollbar-color: hsl(175deg, 67%, 20%);
  scrollbar-width: thin;
}

body {
  color: var(--dark);
  font-family: var(--sansserif);
  transition: background-color 2s linear;
}

.no-scroll {
  overflow: hidden;
}

/* Marges */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* --------------- TEXTES -------------- */
h1,
.h1 {
  margin: 0 auto 2rem;
  font-family: var(--handwritting);
  font-size: 3.25rem;
  text-align: center;
  text-wrap: balance;
}
@media screen and (max-width: 800px) {
  h1,
.h1 {
    font-size: 2.5rem;
  }
}

h2,
.h2 {
  margin: 2rem 0;
  font-family: var(--handwritting);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  h2,
.h2 {
    font-size: 2rem;
  }
}

h3,
.h3 {
  margin-bottom: 1rem;
  font-family: var(--sansserif);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

p,
li {
  margin-bottom: 1rem;
  font-size: 1rem;
}
@media screen and (max-width: 800px) {
  p,
li {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 800px) {
  small {
    font-size: 0.75rem;
  }
}

.screen-reader {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* --------------- LIENS -------------- */
a {
  color: inherit;
  text-decoration: none;
}

.lien-souligne {
  text-decoration: underline;
  transition-duration: 0.3s;
}
.lien-souligne:is(:hover, :focus, :active) {
  color: var(--red);
  text-decoration: none;
}

/* --------------- BOUTONS -------------- */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  border: none;
  cursor: pointer;
}

.btn {
  max-width: 300px;
  padding: 0.25rem 1.5rem;
  background: radial-gradient(farthest-side, transparent calc(100% - 150px), var(--textColor) 0) center/var(--d, 600px) var(--d, 600px) no-repeat;
  border: 2px solid var(--dark);
  border-radius: 50% 40%/40% 50%;
  font-family: var(--handwritting), sans-serif;
  transition-duration: 0.5s;
  text-align: center;
  text-wrap: balance;
}
.btn:is(:hover, :focus, :active) {
  --d: 300px;
}

/* --------------- IMAGES --------------- */
img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* ------------- ANIMATIONS -------------- */
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------  THEME  ---------------- */
body {
  color: var(--textColor);
}
body.light {
  --mainColor: #eeeeee;
  --textColor: #001144;
  background-color: var(--light);
}
body.light #svg-herbe .herbe1 {
  fill: var(--aqua);
}
body.light #svg-herbe .herbe2 {
  fill: #2c8a82;
}
body.light #svg-herbe .herbe3 {
  fill: #19504b;
}
body.dark {
  --mainColor: #001144;
  --textColor: #eeeeee;
  background-color: #141414;
}
body.dark #svg-herbe .herbe1 {
  fill: #133c39;
}
body.dark #svg-herbe .herbe2 {
  fill: #0d2927;
}
body.dark #svg-herbe .herbe3 {
  fill: #091d1c;
}

/* ---------------  SITE  ---------------- */
.site {
  display: grid;
  grid-template-columns: minmax(200px, max-content) 1fr;
  grid-template-rows: 100vh 1fr max-content;
  grid-template-areas: "header hero" "header main" "header footer";
}

/* ---------------  HERO  --------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 4fr;
  grid-template-areas: ". . ." ". moon .";
  grid-area: 1/2/span 1/-1;
  overflow: hidden;
}

[class$=sky] {
  grid-area: 1/1/span 2/span 3;
}

.day-sky {
  background: linear-gradient(to bottom, hsl(175deg, 40%, 50%), hsl(175deg, 40%, 90%));
}

.sunset-sky {
  background: linear-gradient(to bottom, hsla(175deg, 40%, 50%, 0), hsl(3deg, 100%, 75%));
}

.night-sky {
  background: linear-gradient(to bottom, hsl(175deg, 40%, 5%), hsl(175deg, 40%, 30%));
}

.stars {
  background-image: url("../img/layout/stars.gif");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.space {
  grid-area: moon;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  transition: all 2s linear;
}

.moon {
  background-color: var(--light);
  background-image: url("../img/layout/moon.png");
  background-size: cover;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 6rem 1rem white, 0 0 1rem white;
  width: 80px;
  height: 80px;
  transition-duration: 0.3s;
}
.moon:is(:hover, :focus, :active) {
  box-shadow: 0 0 6rem 1.5rem white, 0 0 2rem white;
}

.sun {
  align-self: flex-end;
  background-color: hsl(50deg, 70%, 95%);
  border: none;
  border-radius: 50%;
  box-shadow: 5rem 0 12rem 7rem hsla(50deg, 100%, 95%, 0.8), -5rem 0 12rem 7rem hsla(50deg, 100%, 95%, 0.8), 0 0 2rem hsl(50deg, 100%, 95%);
  width: 80px;
  height: 80px;
  transition: background-color 1s linear, box-shadow 1.5s linear;
}

.deco {
  position: relative;
  grid-area: 1/1/-1/-1;
  z-index: 1;
  pointer-events: none;
}
.deco img,
.deco svg {
  position: absolute;
  max-width: 100vw;
  bottom: 0;
}
.deco img#svg-herbe path,
.deco svg#svg-herbe path {
  transition-duration: 1s;
}
.deco img.deco-perso1,
.deco svg.deco-perso1 {
  left: 0;
  bottom: 1vh;
  max-width: clamp(100px, 20vw, 400px);
}
@media screen and (max-width: 800px) {
  .deco img.deco-perso1,
.deco svg.deco-perso1 {
    left: 2vw;
  }
}
.deco img.deco-perso2,
.deco svg.deco-perso2 {
  left: 18vw;
  bottom: min(5vh, 40px);
  max-width: clamp(50px, 10vw, 200px);
}
@media screen and (max-width: 800px) {
  .deco img.deco-perso2,
.deco svg.deco-perso2 {
    left: 25vw;
    bottom: 1.5vh;
  }
}
.deco img.deco-perso3,
.deco svg.deco-perso3 {
  right: 8vw;
  bottom: min(5vh, 40px);
  max-width: clamp(70px, 12vw, 250px);
}
@media screen and (max-width: 800px) {
  .deco img.deco-perso3,
.deco svg.deco-perso3 {
    right: 6vw;
    bottom: 2vh;
  }
}
.deco img.deco-telephone,
.deco svg.deco-telephone {
  left: 40vw;
  bottom: min(3vh, 30px);
  max-width: clamp(40px, 8vw, 100px);
}
@media screen and (max-width: 800px) {
  .deco img.deco-telephone,
.deco svg.deco-telephone {
    left: 45vw;
    bottom: 1vh;
  }
}
.deco img.deco-escargot,
.deco svg.deco-escargot {
  left: 50vw;
  bottom: min(6vh, 50px);
  max-width: clamp(40px, 8vw, 120px);
}
@media screen and (max-width: 800px) {
  .deco img.deco-escargot,
.deco svg.deco-escargot {
    left: 57vw;
    bottom: 2vh;
  }
}
.deco img.deco-tv,
.deco svg.deco-tv {
  right: 15vw;
  bottom: 1vh;
  max-width: clamp(60px, 13vw, 250px);
}
@media screen and (max-width: 800px) {
  .deco img.deco-tv,
.deco svg.deco-tv {
    bottom: 0.75vh;
  }
}
.deco img.deco-champignons,
.deco svg.deco-champignons {
  right: 1vw;
  max-width: min(10vw, 100px);
}

.hero-content {
  grid-area: moon;
  position: relative;
  z-index: 1;
  margin: 7rem 1rem 1rem;
}
.hero-content * {
  text-align: center;
  transition-duration: 0.5s;
}
.hero-content p {
  font-size: 1.5rem;
}
.hero-content small {
  display: block;
}

/* ---------------  MAIN  ---------------- */
main {
  grid-area: main;
  z-index: 1;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem min(20vw, 8rem) 1.5rem;
  max-width: 1600px;
  margin-left: auto;
}

.sous-titre {
  max-width: 1100px;
  margin: 0 auto min(10vw, 3rem);
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .grid {
    grid-auto-rows: 120px;
  }
}

figure {
  display: grid;
  grid-template: 1fr/1fr;
  height: 100%;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
  margin: 0;
  overflow: hidden;
}
figure::before {
  transition: all 0.3s linear;
}
figure .image {
  display: grid;
  grid-template: 1fr/1fr;
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: all 0.3s linear;
}
figure figcaption {
  position: relative;
  z-index: 1;
  grid-area: 1/1/2/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  opacity: 0;
  text-shadow: 0 0 0.5rem rgba(0, 17, 68, 0.25);
  transition: all 0.3s linear;
}
@media screen and (max-width: 800px) {
  figure figcaption {
    line-height: 1.3;
  }
}
figure figcaption p {
  margin: 0.5rem 0;
}
@media screen and (max-width: 800px) {
  figure figcaption p {
    font-size: 0.9rem;
  }
}
figure figcaption .titre {
  font-size: 1.5rem;
  overflow-wrap: anywhere;
  text-align: left;
}
@media screen and (max-width: 800px) {
  figure figcaption .titre {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
  }
}
figure figcaption .soustitre {
  text-align: left;
}
figure:nth-child(odd) .image::before {
  background-color: hsla(3deg, 80%, 50%, 0.75);
}
figure:nth-child(even) .image::before {
  background-color: hsla(175deg, 75%, 50%, 0.75);
}
figure:is(:hover, :focus, :active, :focus-within) .image {
  filter: blur(10px);
  transform: scale(1.05);
}
figure:is(:hover, :focus, :active, :focus-within) .image::before {
  grid-area: 1/1/2/2;
  content: "";
  mix-blend-mode: darken;
}
figure:is(:hover, :focus, :active, :focus-within) figcaption {
  opacity: 1;
}

.js-figure {
  position: absolute;
  inset: 0;
  width: 100%;
  background-color: transparent;
}

.item-tall {
  grid-row-end: span 2;
}

.item-wide {
  grid-column-end: span 2;
}

.item-big {
  grid-area: span 2/span 2;
}

@media screen and (max-width: 800px) {
  .item-wide,
.item-big {
    grid-column: initial;
  }
}
.item-wide figcaption,
.item-big figcaption {
  padding: 1rem;
}
@media screen and (max-width: 800px) {
  .item-wide figcaption,
.item-big figcaption {
    padding: 0.5rem;
  }
}

.btn-portfolio {
  margin: 1.5rem 0 1rem;
  color: inherit;
  border-color: inherit;
  font-size: 1.5rem;
}
.btn-portfolio:is(:hover, :focus, :active) {
  border-color: var(--textColor);
  color: var(--mainColor);
}

/* Section Webdesign */
#webdesign .grid figure .image {
  background-position: top;
}

/* Section Contact */
#contact {
  padding-top: 3rem;
}
#contact h2.large {
  margin: 0 0 0.5rem 0;
  text-align: left;
  font-family: var(--sansserif);
  line-height: unset;
}
#contact h3,
#contact p:not(.h2),
#contact li {
  margin-bottom: 0.5rem;
}
#contact ul {
  padding-left: 0;
  list-style: none;
}
#contact li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#contact .presentation {
  display: flex;
  align-items: center;
  gap: min(10vw, 3rem);
  text-align: left;
}
@media screen and (max-width: 800px) {
  #contact .presentation {
    flex-direction: column;
  }
}
#contact .presentation .pict {
  max-width: min(70vw, 300px);
  border-radius: 50%;
}
#contact .presentation .large {
  font-size: 1.25rem;
}
#contact .presentation .large + p:not(.large) {
  margin-top: 1.25rem;
}

/* Page Mentions légales */
.page-mentions-legales {
  grid-template-rows: auto 1fr max-content;
}

.section-mentions-legales {
  display: block;
  max-width: 900px;
  margin-right: auto;
}
.section-mentions-legales h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: left;
}
.section-mentions-legales ul {
  margin-top: 0;
  padding-left: 1rem;
}
.section-mentions-legales ul li {
  margin-bottom: 0.5rem;
}

/* ------------  RESPONSIVE  ------------- */
@media screen and (max-width: 800px) {
  .site {
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content 1fr max-content;
    grid-template-areas: "header" "hero" "main" "footer";
    height: unset;
  }

  .hero {
    grid-area: hero;
    height: 100dvh;
    max-height: 800px;
  }
  .hero .hero-content {
    grid-area: 2/1/-1/-1;
    margin-top: 5rem;
  }

  section {
    padding: min(10vw, 8rem) 1.5rem;
  }

  .page-mentions-legales .hero {
    height: auto;
  }
  .page-mentions-legales h2 {
    font-size: 1.75rem;
  }
}
/* --------------  HEADER  --------------- */
header {
  height: 100vh;
  position: fixed;
  z-index: 2;
  grid-area: header;
  padding-right: 1rem;
  background-color: black;
  font-family: var(--handwritting), sans-serif;
  font-weight: 300;
  transition-duration: 0.5s;
}

.tree-top {
  position: absolute;
  top: 0;
  left: 99.5%;
  z-index: -1;
  max-width: calc(100vw - 200px);
  height: min(400px, 45vh);
  pointer-events: none;
  transition-duration: 0.5s;
}
.tree-top.mini {
  height: min(250px, 30vh);
}

.tree-bottom {
  position: absolute;
  bottom: 0;
  left: 99.5%;
  z-index: -1;
  max-width: calc(100vw - 200px);
  width: 120px;
  pointer-events: none;
}

nav {
  height: 100%;
  display: grid;
  grid-template-rows: min-content min-content auto;
  justify-items: start;
  padding: 1rem;
}

.logo {
  max-width: 140px;
  margin: 1rem 0 2rem;
}
.logo a {
  display: block;
  line-height: 1;
}
.logo a:is(:hover, :focus, :active) svg#svg-logo .svg-logo-cls-1 {
  opacity: 1;
}

svg#svg-logo {
  width: 140px;
}
svg#svg-logo .svg-logo-cls-1 {
  transition-duration: 0.3s;
}

.burger-menu {
  display: none;
  cursor: pointer;
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu .menu-bouton {
  width: max-content;
  display: block;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: radial-gradient(farthest-side, var(--red) calc(100% - 150px), transparent 0) center/var(--d, 300px) var(--d, 300px) no-repeat;
  border-radius: 50% 30%/60% 40%;
  color: white;
  font-size: 1.5rem;
  transition-duration: 0.5s;
}
.menu .menu-bouton:is(:hover, :focus, :active) {
  --d: 600px;
}
.menu .menu-bouton.active:not(:is(:hover, :focus, :active)) {
  color: var(--blue);
}
.menu li:nth-child(even) .menu-bouton {
  border-radius: 50% 40%/40% 50%;
}

.social {
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  list-style: none;
  padding: 0;
}
.social li a {
  display: block;
  padding: 0.5rem;
}
.social li a:is(:hover, :focus, :active) svg {
  transform: rotate(1turn);
}
.social li a:is(:hover, :focus, :active) svg path {
  fill: var(--red);
}
.social li a svg {
  width: 1.5rem;
  transition-duration: 0.5s;
}
.social li a svg path {
  transition-duration: 0.3s;
}

/* ------------  RESPONSIVE  ------------- */
@media screen and (max-width: 800px) {
  header {
    width: 100%;
    height: unset;
    padding-right: 0;
    background-color: unset;
  }

  header.fixed {
    background-color: var(--dark);
  }
  header.fixed svg#svg-logo {
    width: 2.5rem;
  }

  .tree-top,
.tree-bottom {
    display: none;
  }

  nav {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.75rem;
  }
  nav.background {
    background-color: var(--dark);
  }

  .logo {
    margin: 0;
  }

  svg#svg-logo {
    width: 4rem;
    transition-duration: 0.5s;
  }

  .burger-menu {
    position: relative;
    display: block;
    background-color: transparent;
    border: none;
    justify-self: end;
    z-index: 3;
  }
  .burger-menu img {
    display: none;
    width: 1.75rem;
  }
  .burger-menu img.active {
    display: block;
  }

  .menu {
    display: none;
    grid-area: 2/1/3/3;
    padding: 2rem 0 1rem;
    text-align: center;
  }
  .menu.active {
    display: block;
  }

  .social {
    display: none;
    grid-area: 3/1/4/3;
  }
  .social.active {
    display: flex;
  }
}
/* --------------  FOOTER  --------------- */
footer {
  grid-area: footer;
  padding: 1rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  footer a {
    display: block;
  }
}

/* --------------  MODALS  --------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 3rem auto 3rem;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 99;
}
.modal.close {
  top: 1rem;
  left: unset;
  right: 1rem;
  background-color: unset;
  background-image: url("../partials/svg/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  transition-duration: 0.3s;
}
.modal.close:is(:hover, :focus, :active) {
  transform: scale(1.2);
}
.modal img {
  max-height: calc(95vh - 2rem);
}
.modal .diapo {
  height: 95vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  cursor: pointer;
}
.modal.webdesign {
  --textColor: #001144;
}
.modal.webdesign .diapo {
  place-items: initial;
}
.modal.webdesign .diapo .webdesign-bloc {
  display: grid;
  grid-template-columns: 1fr 55vw;
  align-items: center;
  background-color: var(--aqua);
  border-radius: 1rem;
  overflow: hidden;
}
.modal.webdesign .diapo .webdesign-bloc .pict {
  min-width: 100%;
  height: 100%;
  max-height: unset;
  object-position: top;
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description {
  max-height: 100%;
  padding: 2rem 4rem;
  overflow: auto;
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description * {
  color: var(--dark);
  text-align: left;
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description h2 {
  margin-top: 0;
  font-size: 4rem;
}
@media screen and (max-width: 800px) {
  .modal.webdesign .diapo .webdesign-bloc .webdesign-description h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description h3 {
  font-size: 1.5rem;
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description p {
  margin-bottom: 2rem;
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description ul {
  padding-left: 1rem;
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description li {
  margin-bottom: 0.5rem;
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description a {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  transition-duration: 0s;
}
.modal.webdesign .diapo .webdesign-bloc .webdesign-description a:is(:hover, :focus, :active) {
  color: var(--aqua);
  transition-duration: 0.5s;
}

.slick-arrow {
  height: 3rem;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  font-size: 0;
  transition-duration: 0.3s;
}
.slick-arrow:is(:hover, :focus, :active) {
  transform: scale(1.2);
}

.slick-prev {
  background-image: url("../partials/svg/arrow-left.svg");
}

.slick-next {
  background-image: url("../partials/svg/arrow-right.svg");
}

/* ------------  RESPONSIVE  ------------- */
@media screen and (max-width: 800px) {
  .modal {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 3rem;
    row-gap: 1rem;
  }
  .modal:not(.close) {
    padding-top: 3rem;
  }
  .modal .diapo {
    height: 85dvh;
    padding: 1rem 0;
  }

  .slick-list {
    grid-area: 1/1/2/3;
  }

  .slick-arrow {
    position: relative;
    z-index: 9;
    grid-row-start: 2;
  }

  .slick-prev {
    grid-column-start: 1;
  }

  .slick-next {
    grid-column-start: 2;
  }

  .modal.webdesign .diapo .webdesign-bloc {
    grid-template-columns: 1fr;
    grid-template-rows: 25vh auto;
  }
  .modal.webdesign .diapo .webdesign-bloc .webdesign-description {
    padding: 1.5rem;
  }
  .modal.webdesign .diapo .webdesign-bloc .webdesign-description h3 {
    font-size: 1.125rem;
  }
  .modal.webdesign .diapo .webdesign-bloc .webdesign-description a {
    font-size: 1.5rem;
  }
  .modal.webdesign .diapo .webdesign-bloc .webdesign-description p,
.modal.webdesign .diapo .webdesign-bloc .webdesign-description li {
    font-size: 0.85rem;
  }
}
/* General */
.fill-blue {
  fill: var(--aqua);
}

/* Logo */
#svg-logo .svg-logo-cls-1 {
  opacity: 0.66;
}
#svg-logo .svg-logo-cls-2 {
  fill: var(--aqua);
  stroke: var(--red);
  stroke-miterlimit: 10;
  stroke-width: 25px;
}
#svg-logo .svg-logo-cls-3 {
  fill: var(--blue);
}
#svg-logo .svg-logo-cls-4 {
  fill: var(--dark);
}
#svg-logo .svg-logo-cls-5 {
  fill: white;
}

/* ---------------  METEO  --------------- */
.hero.rainy-day .rainy-sky {
  display: block;
}
.hero.rainy-day .rain {
  display: block;
}
.hero.snowy-day .rainy-sky {
  display: block;
  opacity: 0.5;
}
.hero.snowy-day .snowflakes {
  display: block;
}

body.dark .hero.rainy-day .rainy-sky {
  backdrop-filter: unset;
}
body.dark .hero.snowy-day .rainy-sky {
  opacity: 0;
}
body.dark .hero.snowy-day .snowflakes {
  display: block;
}

.meteo {
  display: none;
  position: relative;
  z-index: 1;
  grid-area: 1/1/span 2/span 3;
  pointer-events: none;
}

@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-shake {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* ---------------  PLUIE  --------------- */
.rainy-sky {
  display: none;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  opacity: 1;
  pointer-events: none;
  transition-duration: 1s;
}

.rain .raindrop {
  height: 200px;
  position: absolute;
  top: -200px;
  background: linear-gradient(transparent, var(--light), transparent);
  opacity: 0.2;
  -webkit-animation-name: snowflakes-fall;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-name: snowflakes-fall;
  animation-duration: 0.4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
.rain .raindrop:nth-of-type(1) {
  width: 0.0947151249px;
  left: 6.6%;
  -webkit-animation-delay: 1.2587127172s;
  animation-delay: 1.9872325298s;
}
.rain .raindrop:nth-of-type(2) {
  width: 1.1425043356px;
  left: 13.2%;
  -webkit-animation-delay: 0.7747981527s;
  animation-delay: 1.1733159387s;
}
.rain .raindrop:nth-of-type(3) {
  width: 2.1740042502px;
  left: 19.8%;
  -webkit-animation-delay: 0.3874710785s;
  animation-delay: 0.609039537s;
}
.rain .raindrop:nth-of-type(4) {
  width: 2.9233175224px;
  left: 26.4%;
  -webkit-animation-delay: 1.1386490657s;
  animation-delay: 1.1350247226s;
}
.rain .raindrop:nth-of-type(5) {
  width: 1.9839267619px;
  left: 33%;
  -webkit-animation-delay: 1.0089547221s;
  animation-delay: 1.4983366133s;
}
.rain .raindrop:nth-of-type(6) {
  width: 3.6542345075px;
  left: 39.6%;
  -webkit-animation-delay: 1.3434547733s;
  animation-delay: 1.2093345755s;
}
.rain .raindrop:nth-of-type(7) {
  width: 2.0580624503px;
  left: 46.2%;
  -webkit-animation-delay: 0.1997920844s;
  animation-delay: 0.2491110617s;
}
.rain .raindrop:nth-of-type(8) {
  width: 0.7707183499px;
  left: 52.8%;
  -webkit-animation-delay: 0.1489386265s;
  animation-delay: 1.7479529362s;
}
.rain .raindrop:nth-of-type(9) {
  width: 1.0231595403px;
  left: 59.4%;
  -webkit-animation-delay: 1.0796593575s;
  animation-delay: 1.3010366985s;
}
.rain .raindrop:nth-of-type(10) {
  width: 0.9582857524px;
  left: 66%;
  -webkit-animation-delay: 0.9258739285s;
  animation-delay: 0.6609606208s;
}
.rain .raindrop:nth-of-type(11) {
  width: 3.8662775508px;
  left: 72.6%;
  -webkit-animation-delay: 0.1486931207s;
  animation-delay: 1.967171937s;
}
.rain .raindrop:nth-of-type(12) {
  width: 2.0562238652px;
  left: 79.2%;
  -webkit-animation-delay: 0.8060578092s;
  animation-delay: 0.184440124s;
}
.rain .raindrop:nth-of-type(13) {
  width: 3.0776378222px;
  left: 85.8%;
  -webkit-animation-delay: 0.8547186525s;
  animation-delay: 0.6266622484s;
}
.rain .raindrop:nth-of-type(14) {
  width: 2.3695666798px;
  left: 92.4%;
  -webkit-animation-delay: 0.4710612735s;
  animation-delay: 0.9264552272s;
}
.rain .raindrop:nth-of-type(15) {
  width: 1.0942120794px;
  left: 99%;
  -webkit-animation-delay: 1.2184261319s;
  animation-delay: 0.5294913335s;
}
.rain .raindrop:nth-of-type(16) {
  width: 0.0588069299px;
  left: 105.6%;
  -webkit-animation-delay: 0.6023077752s;
  animation-delay: 0.5720083787s;
}
.rain .raindrop:nth-of-type(17) {
  width: 2.5176865149px;
  left: 112.2%;
  -webkit-animation-delay: 0.7971272473s;
  animation-delay: 0.5874377602s;
}
.rain .raindrop:nth-of-type(18) {
  width: 2.097079438px;
  left: 118.8%;
  -webkit-animation-delay: 0.8554427616s;
  animation-delay: 1.7674462883s;
}
.rain .raindrop:nth-of-type(19) {
  width: 3.383074339px;
  left: 125.4%;
  -webkit-animation-delay: 1.6837271717s;
  animation-delay: 1.1772922517s;
}
.rain .raindrop:nth-of-type(20) {
  width: 0.8034918901px;
  left: 132%;
  -webkit-animation-delay: 1.7943089698s;
  animation-delay: 1.5905618941s;
}
.rain .raindrop:nth-of-type(21) {
  width: 1.4284931946px;
  left: 138.6%;
  -webkit-animation-delay: 0.2530797064s;
  animation-delay: 0.7848379905s;
}
.rain .raindrop:nth-of-type(22) {
  width: 1.8162796316px;
  left: 145.2%;
  -webkit-animation-delay: 0.9137908573s;
  animation-delay: 0.2276945393s;
}
.rain .raindrop:nth-of-type(23) {
  width: 2.0248074325px;
  left: 151.8%;
  -webkit-animation-delay: 0.9164021189s;
  animation-delay: 1.3859692269s;
}
.rain .raindrop:nth-of-type(24) {
  width: 2.1614666701px;
  left: 158.4%;
  -webkit-animation-delay: 0.1284288308s;
  animation-delay: 1.4065950347s;
}
.rain .raindrop:nth-of-type(25) {
  width: 3.5928316255px;
  left: 165%;
  -webkit-animation-delay: 0.3716957373s;
  animation-delay: 0.7928802214s;
}
.rain .raindrop:nth-of-type(26) {
  width: 2.6972778273px;
  left: 171.6%;
  -webkit-animation-delay: 1.0863703873s;
  animation-delay: 0.1873856041s;
}
.rain .raindrop:nth-of-type(27) {
  width: 1.2134574083px;
  left: 178.2%;
  -webkit-animation-delay: 1.7145863892s;
  animation-delay: 0.8684132043s;
}
.rain .raindrop:nth-of-type(28) {
  width: 1.2736099951px;
  left: 184.8%;
  -webkit-animation-delay: 1.8376921567s;
  animation-delay: 0.9013428184s;
}
.rain .raindrop:nth-of-type(29) {
  width: 1.3871855795px;
  left: 191.4%;
  -webkit-animation-delay: 0.7987762009s;
  animation-delay: 1.1952365991s;
}
.rain .raindrop:nth-of-type(30) {
  width: 0.6338963301px;
  left: 198%;
  -webkit-animation-delay: 1.3470350251s;
  animation-delay: 0.4042772569s;
}

/* ---------------  NEIGE  --------------- */
/* http://pajasevi.github.io/CSSnowflakes/ */
.snowflakes {
  display: none;
}
.snowflakes .snowflake {
  position: absolute;
  top: -10%;
  color: white;
  font-family: Arial;
  font-size: 0.8rem;
  text-shadow: 0 0 1px rgba(0, 17, 68, 0.5);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}
.snowflakes .snowflake.snowflake-small {
  font-size: 0.5rem;
}
.snowflakes .snowflake:nth-of-type(1) {
  left: 10%;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}
.snowflakes .snowflake:nth-of-type(2) {
  left: 20%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}
.snowflakes .snowflake:nth-of-type(3) {
  left: 30%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}
.snowflakes .snowflake:nth-of-type(4) {
  left: 40%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}
.snowflakes .snowflake:nth-of-type(5) {
  left: 50%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}
.snowflakes .snowflake:nth-of-type(6) {
  left: 60%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}
.snowflakes .snowflake:nth-of-type(7) {
  left: 70%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}
.snowflakes .snowflake:nth-of-type(8) {
  left: 80%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}
.snowflakes .snowflake:nth-of-type(9) {
  left: 90%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}
.snowflakes .snowflake:nth-of-type(10) {
  left: 5%;
  -webkit-animation-delay: 5s, 5s;
  animation-delay: 5s, 5s;
}
.snowflakes .snowflake:nth-of-type(11) {
  left: 15%;
  -webkit-animation-delay: 6s, 6s;
  animation-delay: 6s, 6s;
}
.snowflakes .snowflake:nth-of-type(12) {
  left: 25%;
  -webkit-animation-delay: 11s, 0.1s;
  animation-delay: 11s, 0.1s;
}
.snowflakes .snowflake:nth-of-type(13) {
  left: 35%;
  -webkit-animation-delay: 9s, 7s;
  animation-delay: 9s, 7s;
}
.snowflakes .snowflake:nth-of-type(14) {
  left: 45%;
  -webkit-animation-delay: 7s, 7s;
  animation-delay: 7s, 7s;
}
.snowflakes .snowflake:nth-of-type(15) {
  left: 55%;
  -webkit-animation-delay: 13s, 8s;
  animation-delay: 13s, 8s;
}
.snowflakes .snowflake:nth-of-type(16) {
  left: 65%;
  -webkit-animation-delay: 11s, 7s;
  animation-delay: 11s, 7s;
}
.snowflakes .snowflake:nth-of-type(17) {
  left: 75%;
  -webkit-animation-delay: 7.5s, 6s;
  animation-delay: 7.5s, 6s;
}
.snowflakes .snowflake:nth-of-type(18) {
  left: 85%;
  -webkit-animation-delay: 6s, 5s;
  animation-delay: 6s, 5s;
}
.snowflakes .snowflake:nth-of-type(19) {
  left: 95%;
  -webkit-animation-delay: 8s, 6.5s;
  animation-delay: 8s, 6.5s;
}
.snowflakes .snowflake:nth-of-type(20) {
  left: 3%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}
.snowflakes .snowflake:nth-of-type(21) {
  left: 13%;
  -webkit-animation-delay: 3s, 3s;
  animation-delay: 3s, 3s;
}
.snowflakes .snowflake:nth-of-type(22) {
  left: 23%;
  -webkit-animation-delay: 9s, 0.8s;
  animation-delay: 9s, 0.8s;
}
.snowflakes .snowflake:nth-of-type(23) {
  left: 33%;
  -webkit-animation-delay: 7s, 5s;
  animation-delay: 7s, 5s;
}
.snowflakes .snowflake:nth-of-type(24) {
  left: 43%;
  -webkit-animation-delay: 5s, 5s;
  animation-delay: 5s, 5s;
}
.snowflakes .snowflake:nth-of-type(25) {
  left: 53%;
  -webkit-animation-delay: 11s, 6s;
  animation-delay: 11s, 6s;
}
.snowflakes .snowflake:nth-of-type(26) {
  left: 63%;
  -webkit-animation-delay: 9s, 5s;
  animation-delay: 9s, 5s;
}
.snowflakes .snowflake:nth-of-type(27) {
  left: 73%;
  -webkit-animation-delay: 5.5s, 4s;
  animation-delay: 5.5s, 4s;
}
.snowflakes .snowflake:nth-of-type(28) {
  left: 83%;
  -webkit-animation-delay: 4s, 3s;
  animation-delay: 4s, 3s;
}
.snowflakes .snowflake:nth-of-type(29) {
  left: 93%;
  -webkit-animation-delay: 6s, 4.5s;
  animation-delay: 6s, 4.5s;
}
.snowflakes .snowflake:nth-of-type(30) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}

/*# sourceMappingURL=main150624.css.map */
