@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: initial;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

em {
  font-weight: 500;
}

button {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/* COLORS */
/* MIXIN */
/* ELEMENTS */
/* Wrapper */
.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 600px;
}
@media screen and (min-width: 800px) {
  .wrapper {
    max-width: 930px;
    padding: 0 2rem;
  }
}

/* Sections */
[id*=section-] {
  position: relative;
  margin-bottom: 7rem;
}
[id*=section-] .wrapper {
  display: grid;
  justify-items: center;
  gap: 6rem 0;
}
[id*=section-] .title__box {
  margin-bottom: -2rem;
}
@media screen and (min-width: 800px) {
  [id*=section-] {
    margin-bottom: 9.05rem;
  }
  [id*=section-] .wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8.4375rem 2rem;
    align-items: center;
    grid-auto-flow: row dense;
    justify-items: center;
  }
  [id*=section-] .wrapper .title__box {
    grid-column: span 2;
  }
}

/* Title */
.title__box {
  position: relative;
  width: min-content;
  margin: 0 auto;
}
.title__box .section__title {
  color: #444F6C;
  font-size: 1.25rem;
  line-height: 1.69em;
  white-space: nowrap;
}
.title__box .section__title .coma {
  color: #3980C3;
}
.title__box .section__title .title__big {
  display: block;
  font-size: 1.25em;
  color: #E43F5A;
}
.title__box .underline {
  position: absolute;
  top: 2.1rem;
  right: 0;
}

/* Text Title */
.section__text__title {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Sub Title */
.section__subtitle {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Date */
.section__date {
  font-size: 1.25rem;
  font-weight: 500;
  color: #E43F5A;
}

/* Paragraph */
.section__paragraph {
  font-size: 0.9375rem;
  color: #444F6C;
  line-height: 1.45em;
}
.section__paragraph:first-of-type {
  margin-top: 1.4em;
}
.section__paragraph .paragraph__link {
  text-decoration: underline;
}
@media screen and (min-width: 800px) {
  .section__paragraph .paragraph__link:hover {
    color: #E43F5A;
  }
}
.section__paragraph .paragraph__link:active {
  color: #E43F5A;
}
.section__paragraph .paragraph__link em {
  font-weight: 700;
}

/* Illustration */
.section__illustration {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .section__illustration {
    max-width: 80%;
  }
}

/* Button */
.section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  height: 50px;
  border-radius: 220px;
  color: #F8F8FF;
  font-size: 15px;
  font-weight: 500;
  background-image: linear-gradient(45deg, #A81147, #E43F5A);
  box-shadow: 0px 7px 25px rgba(168, 17, 71, 0.5);
  background-size: 145%;
  background-position: 100% 100%;
  transition: background-position 0.1s, box-shadow 0.1s;
}
.section__button .button__icon {
  margin: 0.2rem 0 0 0.9375rem;
}
@media screen and (min-width: 800px) {
  .section__button {
    max-width: 220px;
  }
  .section__button:hover {
    background-position: 0 0;
  }
}
.section__button:active {
  background-position: 0 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 7px 25px rgba(168, 18, 63, 0.5);
}

/* Round Button */
.round__button {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #F8F8FF;
  box-shadow: -2px -4px 4px rgba(68, 79, 108, 0.12), 2px 4px 4px rgba(68, 79, 108, 0.12);
  transition: background-color 0.1s;
}
@media screen and (min-width: 800px) {
  .round__button {
    cursor: pointer;
  }
  .round__button:hover {
    background-color: #EEEFF1;
  }
}
.round__button:active {
  background-color: #edcfd4;
}
.round__button img {
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 7px 25px rgba(228, 63, 90, 0.5));
}

/* Tabs */
.tab {
  cursor: default;
  font-weight: 500;
  will-change: transform;
  white-space: nowrap;
  text-align: center;
  padding: 0.3em;
  border-radius: 5px;
  border: 1px solid #444F6C;
  box-shadow: 3px 3px 7px rgba(68, 79, 108, 0.15);
  transition: color 0.15s, background-color 0.15s;
}
.tab--active {
  color: #F8F8FF;
  background-color: #444F6C;
}

/* Photo Select */
.photos__select-ctn {
  position: relative;
  height: 0.375rem;
  width: 1.95rem;
}
.photos__select-ctn .photo__select {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #C4C4C4;
  transition: left 0.2s;
}
.photos__select-ctn .photo__select.photo__select--active {
  z-index: 20;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #E43F5A;
}
.photos__select-ctn--1 .photo__select:nth-child(1) {
  left: -0.15rem;
}
.photos__select-ctn--1 .photo__select:nth-child(2) {
  left: 33.33%;
}
.photos__select-ctn--1 .photo__select:nth-child(3) {
  left: 66.66%;
}
.photos__select-ctn--1 .photo__select:nth-child(4) {
  left: 100%;
}
.photos__select-ctn--2 .photo__select:nth-child(1) {
  left: 33.33%;
}
.photos__select-ctn--2 .photo__select:nth-child(2) {
  left: 0;
}
.photos__select-ctn--2 .photo__select:nth-child(3) {
  left: 66.66%;
}
.photos__select-ctn--2 .photo__select:nth-child(4) {
  left: 100%;
}
.photos__select-ctn--3 .photo__select:nth-child(1) {
  left: 66.66%;
}
.photos__select-ctn--3 .photo__select:nth-child(2) {
  left: 33.33%;
}
.photos__select-ctn--3 .photo__select:nth-child(3) {
  left: 0;
}
.photos__select-ctn--3 .photo__select:nth-child(4) {
  left: 100%;
}
.photos__select-ctn--4 .photo__select:nth-child(1) {
  left: 100%;
}
.photos__select-ctn--4 .photo__select:nth-child(2) {
  left: 33.33%;
}
.photos__select-ctn--4 .photo__select:nth-child(3) {
  left: 66.66%;
}
.photos__select-ctn--4 .photo__select:nth-child(4) {
  left: 0;
}

/* Underline */
.underline {
  width: 30px;
  height: 2px;
  display: flex;
  justify-content: space-between;
}
.underline span {
  border-radius: 500px;
  height: 100%;
}
.underline span:first-child {
  width: 60%;
  background-color: #444F6C;
}
.underline span:nth-child(2) {
  width: 18%;
  background-color: #E43F5A;
}
.underline span:last-child {
  min-width: 2px;
  width: 0.8%;
  background-color: #3980C3;
}

/* Swup (Page Transitions) */
.transition-fade {
  transition: 0.4s;
  opacity: 1;
  transform: translateY(0);
  --swup-next: 80px;
  --swup-previous: calc(var(--swup-next) * -1);
}

html.is-animating .transition-fade {
  opacity: 0;
  transform: translateY(var(--swup-next));
}

html.is-leaving .transition-fade {
  opacity: 0;
  transform: translateY(var(--swup-previous));
}

/* Scroll Animations */
[class*=reveal] {
  opacity: 0;
  transform: translate(0, 50px);
  transition-duration: 0.6s;
}
[class*=reveal].reveal-container {
  transform: none;
  opacity: 1;
}
[class*=reveal].reveal-opacity {
  transform: none;
  opacity: 0;
}
@media screen and (min-width: 800px) {
  [class*=reveal].reveal-left {
    transform: translate(-50px, 0);
  }
  [class*=reveal].reveal-left-small {
    transform: translate(-30px, 0);
  }
  [class*=reveal].reveal-right {
    transform: translate(50px, 0);
  }
  [class*=reveal].reveal-top {
    transform: translate(0, -50px);
  }
  [class*=reveal].reveal-bottom {
    transform: translate(0, 50px);
  }
  [class*=reveal].reveal-bottom-small {
    transform: translate(0, 30px);
  }
  [class*=reveal].reveal-150 {
    transition-delay: 0.15s;
  }
  [class*=reveal].reveal-300 {
    transition-delay: 0.3s;
  }
}
[class*=reveal].reveal-show {
  transform: translate(0, 0);
  opacity: 1;
}

.page__login {
  overflow: hidden;
  background-image: url(../assets/images/bg-pwd.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.page__login .pwd {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #F8F8FF;
  box-shadow: 4px 7px 9px rgba(36, 36, 36, 0.2);
  border-radius: 5px;
}
.page__login .pwd__container {
  padding: 107px 107px 69px 107px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd__container {
    padding: 20px 20px 15px 20px;
  }
}
@media screen and (min-width: 768px) {
  .page__login .pwd__container {
    padding: 50px 50px 30px 50px;
  }
}
.page__login .pwd__title {
  display: flex;
  position: relative;
  width: 378px;
  margin: 0 auto 45px;
  padding-bottom: 16px;
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd__title {
    width: 305px;
  }
}
.page__login .pwd__title svg {
  margin-right: 48px;
}
.page__login .pwd__title h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
  color: #E43F5A;
}
.page__login .pwd__title span {
  left: 32%;
  bottom: 0;
  width: 67%;
  background-color: #444F6C;
}
.page__login .pwd__title:before, .page__login .pwd__title:after, .page__login .pwd__title span {
  content: "";
  position: absolute;
  height: 2px;
}
.page__login .pwd__title:before {
  left: 0;
  bottom: 0;
  width: 9%;
  background-color: #3980C3;
}
.page__login .pwd__title:after {
  left: 13%;
  bottom: 0;
  width: 15%;
  background-color: #E43F5A;
}
.page__login .pwd__content {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 25px;
  width: 614px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd__content {
    width: 310px;
    font-size: 18px;
  }
}
.page__login .pwd__error {
  text-align: center;
  font-size: 11px;
  line-height: 13px;
  font-weight: bold;
  color: #E43F5A;
  text-transform: uppercase;
  margin: 14px 0;
}
.page__login .pwd__socials {
  display: flex;
  justify-content: space-around;
  margin-bottom: 14px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd__socials {
    flex-direction: column;
  }
}
.page__login .pwd__socials a {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd__socials a {
    justify-content: center;
  }
}
.page__login .pwd__socials a svg {
  transition: transform 0.2s ease-out;
}
.page__login .pwd__socials a span:first-child {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  font-style: italic;
  text-decoration: underline;
  margin-right: 1.7em;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
}
.page__login .pwd__socials a span:nth-child(2) svg ellipse,
.page__login .pwd__socials a span:nth-child(2) svg g path:first-child {
  transition: fill 0.2s ease-out;
}
.page__login .pwd__socials a:hover span:first-child {
  color: #8F95A6;
  transform: translateX(4px);
}
.page__login .pwd__socials a:hover span svg {
  transform: translateX(-4px);
}
.page__login .pwd__socials a:hover span:nth-child(2) svg ellipse,
.page__login .pwd__socials a:hover span:nth-child(2) svg g path:first-child {
  fill: #8F95A6;
}
.page__login .pwd__socials a:focus span:first-child {
  color: #BABEC8;
}
.page__login .pwd__socials a:focus span:nth-child(2) svg ellipse,
.page__login .pwd__socials a:focus span:nth-child(2) svg g path:first-child {
  fill: #BABEC8;
}
.page__login .pwd form {
  display: flex;
  border-radius: 45px;
}
.page__login .pwd form .password {
  position: relative;
  width: 54%;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd form .password {
    width: 75%;
  }
}
.page__login .pwd form .password__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-style: italic;
  font-weight: lighter;
  color: #444F6C;
  font-size: 11px;
  align-self: center;
  cursor: text;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd form .password__label {
    font-size: 10px;
  }
}
.page__login .pwd form .password__input {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
  border: none;
  outline: none;
  box-shadow: 0px 7px 25px rgba(168, 18, 63, 0.1);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd form .password__input {
    font-size: 25px;
  }
}
.page__login .pwd form .password__input:focus ~ .password__label, .page__login .pwd form .password__input:not(:focus):valid ~ .password__label {
  visibility: hidden;
  opacity: 0;
}
.page__login .pwd form #submit {
  width: 46%;
  background: linear-gradient(87.22deg, #A81147 0%, #E43F5A 90%);
  box-shadow: 4px 0px 10px rgba(36, 36, 36, 0.1);
  filter: drop-shadow(0px 7px 25px rgba(168, 18, 63, 0.4));
  border: none;
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd form #submit {
    width: 25%;
  }
}
.page__login .pwd form #submit:hover .submit__arrow {
  transform: translateX(50%);
}
.page__login .pwd form #submit .submit__arrow {
  transition: transform 0.2s ease-out;
}
.page__login .pwd form #submit span {
  color: #F8F8FF;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .page__login .pwd form #submit span {
    display: none;
  }
}

.error-404 {
  overflow: hidden;
}
.error-404__container {
  max-width: 1330px;
  padding: 0 2rem;
  margin: 0 auto;
  padding-top: 84px;
}
.error-404__title {
  position: relative;
  font-weight: 900;
  font-size: 95px;
  line-height: 113px;
  letter-spacing: 0.1em;
  color: #E43F5A;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.error-404__title::before {
  content: "Oops.";
  position: absolute;
  left: 3px;
  top: 3px;
  color: #444F6C;
  z-index: -1;
}
.error-404__text {
  position: relative;
  font-weight: 900;
  font-size: 60px;
  line-height: 72px;
  text-transform: uppercase;
  color: #444F6C;
  letter-spacing: 0.1em;
  margin-bottom: 74px;
}
.error-404__text::before {
  content: "Error \apage not found !";
  position: absolute;
  left: 3px;
  top: 3px;
  white-space: pre;
  color: #E43F5A;
  z-index: -1;
}
.error-404__back {
  position: relative;
  display: inline-block;
  font-size: 40px;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 13px 90px 16px;
  color: #F8F8FF;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 45px;
  background: linear-gradient(87.22deg, #A81147 -0.05%, #E43F5A 100%);
  box-shadow: 0px 7px 25px rgba(168, 18, 63, 0.5);
  border-radius: 45px;
}
.error-404__back::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(87.22deg, rgba(168, 17, 71, 0.102) -0.05%, rgba(228, 63, 90, 0.102) 100%);
  box-shadow: inset 2.16px -2.16px 2.16px rgba(158, 32, 64, 0.404), inset 4.32px -4.32px 4.32px rgba(255, 255, 255, 0.404), inset -2.16px 2.16px 2.16px rgba(255, 255, 255, 0.404), inset -4.32px 4.32px 4.32px rgba(158, 32, 64, 0.404);
  border-radius: 45px;
  opacity: 1;
  transition: opacity 0.2s ease-out;
  z-index: -1;
}
.error-404__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.error-404__wave {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
}
.error-404__wave:first-child {
  height: 34%;
}
.error-404__wave:nth-child(4) {
  height: 20%;
}
.error-404__wave:nth-child(5) {
  height: 18%;
}
.error-404__character {
  position: absolute;
  left: 5%;
  bottom: 8%;
  height: 35%;
}
.error-404__panneau {
  position: absolute;
  right: 0;
  bottom: 5%;
  height: 74%;
}

/* HTML / BODY */
html {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Roboto", sans-serif;
}

body {
  background-color: #F8F8FF;
  color: #444F6C;
}

.swup-wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100% - 74px);
}

/* | HEADER */
.pre-header {
  height: 74px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  z-index: 10;
  background-color: rgba(248, 248, 255, 0.9);
}
header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  backdrop-filter: blur(10px);
}
header .wrapper {
  color: #444F6C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: calc(1042px + 2rem);
  padding: 0 1rem;
}
@media screen and (min-width: 800px) {
  header .wrapper {
    padding: 0 2rem;
  }
}
header .logo {
  white-space: nowrap;
  transform: translateY(-1px);
  font-size: 1.5625rem;
  width: 65%;
}
header .logo .emoji {
  margin-right: 0.3em;
}
header .menu__button {
  position: relative;
  z-index: 1000;
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  header .menu__button {
    display: none;
  }
}
header .menu__button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 30px;
  background-color: #444F6C;
  transform-origin: right center;
  transition-timing-function: ease-in-out;
  transition: transform 0.25s, top 0.25s, left 0.25s, bottom 0.25s, opacity 0.25s, width 0.25s;
}
header .menu__button span:first-child {
  top: 0;
}
header .menu__button span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .menu__button span:last-child {
  bottom: 0;
}
header nav {
  position: fixed;
  z-index: 20;
  top: 0;
  right: -66%;
  width: 65%;
  height: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: #F8F8FF;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: right 0.2s 0.3s, visibility 0s 0.5s;
  --profil: .2s;
  --parcours: .3s;
  --projets: .4s;
  --contact: .5s;
}
header nav.nav--fast {
  transition: right 0.2s 0s, visibility 0s 0.5s;
}
header nav.nav--fast .nav__overlay {
  transition-delay: 0s;
}
@media screen and (min-width: 800px) {
  header nav {
    text-align: center;
    position: relative;
    justify-content: space-between;
    right: 0;
    visibility: visible;
    font-size: 0.9375rem;
    flex-direction: row;
    width: 100%;
    background: unset;
  }
}
header nav .nav__overlay {
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  background-color: #444F6C;
  opacity: 0;
  transition: opacity 0.2s 0.3s;
}
@media screen and (min-width: 800px) {
  header nav .nav__overlay {
    display: none;
  }
}
header nav .nav__list {
  width: 100%;
  position: relative;
  --right-offset: 0;
  --underline-pos: 0;
}
@media screen and (min-width: 800px) {
  header nav .nav__list {
    width: fit-content;
    display: flex;
    --underline-pos: 22px;
  }
}
header nav .nav__list .underline {
  position: absolute;
  z-index: 100;
  pointer-events: none;
  user-select: none;
  top: var(--underline-pos);
  right: var(--right-offset);
  width: 25px;
  height: 2px;
  opacity: 0;
  transition: top 0.15s, opacity 0.15s;
  --delay: .45s;
}
@media screen and (min-width: 800px) {
  header nav .nav__list .underline {
    top: unset;
    bottom: 3px;
    right: unset;
    left: var(--underline-pos);
    transition: opacity 0.15s, left 0.25s;
  }
}
header nav .nav__list .underline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background-color: #F8F8FF;
  opacity: 1;
  transition: opacity 0.2s 0.5s;
}
@media screen and (min-width: 800px) {
  header nav .nav__list .underline::after {
    opacity: 0;
  }
}
header nav .nav__list .underline--contact {
  transition: opacity 0.15s;
}
header nav .nav__link, header nav .nav__button {
  transform: translateX(20px);
  opacity: 0;
  transition: transform 0.2s 0.3s, opacity 0.1s 0.3s, color 0.15s;
}
@media screen and (min-width: 800px) {
  header nav .nav__link, header nav .nav__button {
    transform: none;
    opacity: 1;
  }
}
header nav .nav__link a {
  display: block;
  padding: 0.75em var(--right-offset) 0.75em 0;
}
@media screen and (min-width: 800px) {
  header nav .nav__link a {
    padding: 0.75em 0.75em;
    margin: 0 0.75em;
  }
}
@media screen and (min-width: 800px) {
  header nav .nav__link:hover ~ .underline {
    opacity: 1;
  }
}
header nav .nav__link--active {
  font-weight: 700;
  color: #E43F5A;
}
header nav .nav__link--active ~ .underline {
  opacity: 1;
}
header nav .nav__button {
  margin-top: 0.75em;
  width: fit-content;
  display: grid;
  place-items: center;
  padding: 0.38em 1.42em;
  position: relative;
}
@media screen and (min-width: 800px) {
  header nav .nav__button {
    margin-top: 0;
  }
}
header nav .nav__button::before, header nav .nav__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 45px;
  transition: opacity 0.15s, box-shadow 0.1s, background-position 0.1s;
}
header nav .nav__button::before {
  z-index: -2;
  border: 2px solid #444F6C;
  opacity: 1;
}
header nav .nav__button::after {
  z-index: -1;
  background-image: linear-gradient(45deg, #A81147, #E43F5A);
  background-size: 145%;
  background-position: 100% 100%;
  box-shadow: 0px 7px 25px rgba(228, 63, 90, 0.5);
  opacity: 0;
}
header nav .nav__button--active {
  color: #F8F8FF;
}
header nav .nav__button--active::before {
  opacity: 0;
}
header nav .nav__button--active::after {
  opacity: 1;
}
@media screen and (min-width: 800px) {
  header nav .nav__button:hover {
    color: #F8F8FF;
  }
  header nav .nav__button:hover::before {
    opacity: 0;
  }
  header nav .nav__button:hover::after {
    background-position: 0 0;
    opacity: 1;
  }
}
header nav .nav__button:active::after {
  background-position: 0 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 7px 25px rgba(168, 18, 63, 0.5);
}

body.header--open {
  overflow: hidden;
}
body.header--open header .menu__button span:first-child {
  left: -5px;
  top: -2px;
  transform: rotate(-45deg);
}
body.header--open header .menu__button span:nth-child(2) {
  opacity: 0;
  width: 0;
}
body.header--open header .menu__button span:last-child {
  left: -5px;
  bottom: -2px;
  transform: rotate(45deg);
}
body.header--open header nav {
  right: 0;
  transition-delay: 0s;
  visibility: visible;
}
body.header--open header nav .nav__overlay {
  opacity: 0.8;
  transition-delay: 0s;
}
body.header--open header nav .nav__link, body.header--open header nav .nav__button {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.2s, opacity 0.3s;
}
body.header--open header nav .nav__link:nth-child(1) {
  transition-delay: var(--profil);
}
body.header--open header nav .nav__link:nth-child(2) {
  transition-delay: var(--parcours);
}
body.header--open header nav .nav__link:nth-child(3) {
  transition-delay: var(--projets);
}
body.header--open header nav .nav__button {
  transition-delay: var(--contact);
}
body.header--open header nav .underline::after {
  transition: opacity 0.3s var(--delay);
  opacity: 0;
}

/* || PROFIL PAGE */
/* | Section Presentation */
#section-presentation::before {
  content: "";
  position: absolute;
  z-index: -1000;
  user-select: none;
  pointer-events: none;
  bottom: -59.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/home-wave1.svg) no-repeat top;
  background-size: 100%;
}
@media screen and (min-width: 800px) {
  #section-presentation {
    margin-top: 4.1875rem;
  }
  #section-presentation::before {
    bottom: -20.5rem;
    background-size: 100% 362px;
  }
  #section-presentation .wrapper {
    max-width: 860px;
  }
}
#section-presentation .title__box {
  margin-bottom: 0;
}
#section-presentation .presentation__graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 373px;
}
#section-presentation .presentation__graphic .graphic__stats {
  margin-top: -1rem;
  width: 85%;
  display: flex;
  justify-content: space-between;
  filter: drop-shadow(0px 10px 20px rgba(36, 36, 36, 0.15));
}
@media screen and (min-width: 800px) {
  #section-presentation .presentation__graphic .graphic__stats {
    margin-top: 0;
  }
}
#section-presentation .presentation__graphic .graphic__stats .stat__box {
  display: flex;
  flex-direction: column;
  place-items: center;
  height: fit-content;
  font-size: 0.625rem;
  color: #444F6C;
  text-align: center;
  text-transform: uppercase;
  transition: filter 0.1s;
}
#section-presentation .presentation__graphic .graphic__stats .stat__box:nth-child(even) {
  margin-top: 1.625rem;
}
#section-presentation .presentation__graphic .graphic__stats .stat__box .stat__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(68, 79, 108, 0.9);
  margin-bottom: 2.7em;
}
#section-presentation .presentation__graphic .graphic__stats .stat__box strong {
  font-size: 1.1em;
}
#section-presentation .presentation__graphic .graphic__stats .stat__box p {
  font-weight: 500;
}
#section-presentation .presentation__graphic .graphic__stats .stat__box .stat__icon, #section-presentation .presentation__graphic .graphic__stats .stat__box strong, #section-presentation .presentation__graphic .graphic__stats .stat__box p {
  will-change: transform;
  transition: transform 0.1s, opacity 0.1s;
}
@media screen and (min-width: 800px) {
  #section-presentation .presentation__graphic .graphic__stats .stat__box:hover {
    filter: grayscale(60%) brightness(135%);
  }
  #section-presentation .presentation__graphic .graphic__stats .stat__box:hover .stat__icon {
    transform: translateY(4px);
    opacity: 0.8;
  }
  #section-presentation .presentation__graphic .graphic__stats .stat__box:hover strong, #section-presentation .presentation__graphic .graphic__stats .stat__box:hover p {
    transform: translateY(-4px);
    opacity: 0.8;
  }
}
#section-presentation .presentation__graphic .graphic__stats .stat__box:active {
  filter: grayscale(65%) brightness(145%);
}
#section-presentation .presentation__graphic .graphic__stats .stat__box:active .stat__icon {
  transform: translateY(4px);
  opacity: 0.6;
}
#section-presentation .presentation__graphic .graphic__stats .stat__box:active strong, #section-presentation .presentation__graphic .graphic__stats .stat__box:active p {
  transform: translateY(-4px);
  opacity: 0.6;
}
@media screen and (min-width: 800px) {
  #section-presentation .presentation__graphic .graphic__stats .stat__box:active .stat__icon {
    transform: translateY(8px);
  }
  #section-presentation .presentation__graphic .graphic__stats .stat__box:active strong, #section-presentation .presentation__graphic .graphic__stats .stat__box:active p {
    transform: translateY(-8px);
  }
}
#section-presentation .presentation__text {
  margin-top: -1.5rem;
  max-width: 100%;
}
@media screen and (min-width: 800px) {
  #section-presentation .presentation__text {
    max-width: 315px;
    margin-top: 0;
  }
}
#section-presentation .presentation__text .title__box {
  width: 100%;
}
#section-presentation .presentation__text .title__box .title__big {
  font-size: 1.5em;
}
#section-presentation .presentation__text .underline {
  position: relative;
  top: 0;
  margin-top: 0.45em;
  width: 100%;
  height: 3px;
  transform: rotate(180deg);
}
#section-presentation .presentation__text .underline span:nth-child(3) {
  width: 0.09%;
  min-width: 25px;
}
#section-presentation .presentation__text .underline span:nth-child(2) {
  width: 15%;
}
#section-presentation .presentation__text .underline span:nth-child(1) {
  width: 68%;
}
#section-presentation .presentation__text .section__paragraph {
  margin-top: 2.2em;
}
#section-presentation .presentation__text .section__button {
  margin-top: 2.8125rem;
  max-width: 220px;
}

/* | Section Competences */
@media screen and (min-width: 800px) {
  #section-competences .wrapper .section__text:nth-of-type(odd) {
    grid-column: 2;
  }
  #section-competences .wrapper .section__illustration:nth-of-type(even) {
    grid-column: 1;
  }
}
@media screen and (min-width: 800px) {
  #section-competences .section__text {
    max-width: 380px;
  }
}
#section-competences .section__text .skill__level {
  position: relative;
  margin-top: 1.875rem;
  width: 100%;
  height: 18px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  border-radius: 5px;
  --value: 85%;
  --slide-value: 325px;
  box-shadow: 10px 10px 20px rgba(68, 79, 108, 0.15);
  background: linear-gradient(90deg, #C4C4C4, #C4C4C4) no-repeat, linear-gradient(90deg, #444F6C, #E43F5A) no-repeat;
  background-size: 100%, 100%;
  background-position: 101%, left;
  transition: background-size 1s;
}
#section-competences .section__text .skill__level::-webkit-slider-thumb {
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 8px;
  height: 25px;
  border-radius: 5px;
  background: #F8F8FF;
  border: 1px solid #444F6C;
  transition: transform 1s;
}
#section-competences .section__text .skill__level::-moz-range-thumb {
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 7px;
  height: 25px;
  border-radius: 5px;
  background: #F8F8FF;
  border: 1px solid #444F6C;
  transition: transform 1s;
}
#section-competences .section__text.reveal-show .skill__level {
  background-size: calc(100% - (calc(var(--value) - 1%))), 100%;
}
#section-competences .section__text.reveal-show .skill__level::-webkit-slider-thumb {
  transform: translateX(var(--slide-value));
}
#section-competences .section__text.reveal-show .skill__level::-moz-range-thumb {
  transform: translateX(var(--slide-value));
}
#section-competences .section__illustration {
  max-width: 325px;
}
@media screen and (min-width: 800px) {
  #section-competences .section__illustration {
    max-width: 345px;
  }
}
#section-competences .section__illustration--autodidaxie {
  margin-top: 2rem;
  max-width: 345px;
}
@media screen and (min-width: 800px) {
  #section-competences .section__illustration--autodidaxie {
    max-width: 365px;
  }
}

/* | Section Mon Propos */
#section-mon-propos {
  margin-bottom: 3rem;
}
#section-mon-propos::before {
  content: "";
  position: absolute;
  z-index: -1000;
  user-select: none;
  pointer-events: none;
  top: -1.1rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/home-wave2.svg) no-repeat top;
  background-size: 100%;
}
@media screen and (min-width: 800px) {
  #section-mon-propos {
    margin-bottom: 7.375rem;
  }
  #section-mon-propos::before {
    top: -6rem;
    background-size: 100% 561px;
  }
}
#section-mon-propos .wrapper {
  align-items: stretch;
}
@media screen and (min-width: 1000px) {
  #section-mon-propos .wrapper {
    column-gap: 2.7813rem;
  }
}
#section-mon-propos .hobbies__group {
  display: grid;
  row-gap: 3.0313rem;
  position: relative;
}
#section-mon-propos .hobbies__group::before {
  content: "";
  position: absolute;
  z-index: -100;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 0%;
  top: 4rem;
  background-image: linear-gradient(180deg, rgba(57, 128, 195, 0.1), transparent);
  transition: height 1.4s;
}
@media screen and (min-width: 800px) {
  #section-mon-propos .hobbies__group::before {
    height: 0%;
  }
}
#section-mon-propos .hobbies__group.reveal-show::before {
  height: 99%;
}
@media screen and (min-width: 800px) {
  #section-mon-propos .hobbies__group.reveal-show::before {
    height: 78%;
  }
}
#section-mon-propos .hobbies__group .hobbie__title {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-align: center;
  padding-bottom: 2rem;
}
#section-mon-propos .hobbies__group .hobbie__title::before, #section-mon-propos .hobbies__group .hobbie__title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
#section-mon-propos .hobbies__group .hobbie__title::before {
  top: calc(4rem - 1.75rem / 2);
  z-index: -50;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #F8F8FF;
}
#section-mon-propos .hobbies__group .hobbie__title::after {
  top: calc(4rem - .75rem / 2);
  width: 0.625rem;
  height: 0.625rem;
  box-shadow: 0 0 0 0.625rem rgba(57, 128, 195, 0.1);
}
#section-mon-propos .hobbies__group--primary {
  grid-template-rows: 1fr repeat(3, min-content);
}
#section-mon-propos .hobbies__group--primary .hobbie__title::after {
  background-color: rgba(68, 79, 108, 0.8);
}
#section-mon-propos .hobbies__group--primary .hobbie__box {
  box-shadow: -10px -10px 20px rgba(255, 255, 255, 0.4), 10px 10px 20px rgba(68, 79, 108, 0.05), -10px -10px 20px rgba(68, 79, 108, 0.1);
}
@media screen and (min-width: 800px) {
  #section-mon-propos .hobbies__group--primary::before {
    top: unset;
    bottom: 4rem;
    background-image: linear-gradient(0deg, rgba(57, 128, 195, 0.1), transparent);
  }
  #section-mon-propos .hobbies__group--primary .hobbie__title {
    order: 4;
    align-self: end;
    padding-bottom: 0;
    padding-top: 2rem;
  }
  #section-mon-propos .hobbies__group--primary .hobbie__title::before {
    top: unset;
    bottom: calc(4rem - 1.75rem / 2);
  }
  #section-mon-propos .hobbies__group--primary .hobbie__title::after {
    top: unset;
    bottom: calc(4rem - .75rem / 2);
  }
  #section-mon-propos .hobbies__group--primary .hobbie__box {
    transform: translate(0, 50px);
  }
  #section-mon-propos .hobbies__group--primary .hobbie__box:nth-of-type(1) {
    transition-delay: 0.25s;
  }
  #section-mon-propos .hobbies__group--primary .hobbie__box:nth-of-type(2) {
    transition-delay: 0.5s;
  }
  #section-mon-propos .hobbies__group--primary .hobbie__box:nth-of-type(2) {
    transition-delay: 0.75s;
  }
}
#section-mon-propos .hobbies__group--secondary {
  grid-template-rows: repeat(3, min-content) 1fr;
}
#section-mon-propos .hobbies__group--secondary .hobbie__title {
  color: #E43F5A;
}
#section-mon-propos .hobbies__group--secondary .hobbie__title::after {
  background-color: rgba(228, 63, 90, 0.8);
}
#section-mon-propos .hobbies__group--secondary .hobbie__box {
  box-shadow: -10px -10px 20px rgba(255, 255, 255, 0.4), 10px 10px 20px rgba(228, 63, 90, 0.05), -10px -10px 20px rgba(228, 63, 90, 0.1);
}
@media screen and (min-width: 800px) {
  #section-mon-propos .hobbies__group--secondary .hobbie__box {
    transform: translate(0, -50px);
  }
  #section-mon-propos .hobbies__group--secondary .hobbie__box:nth-of-type(1) {
    transition-delay: 0.25s;
  }
  #section-mon-propos .hobbies__group--secondary .hobbie__box:nth-of-type(2) {
    transition-delay: 0.5s;
  }
  #section-mon-propos .hobbies__group--secondary .hobbie__box:nth-of-type(3) {
    transition-delay: 0.75s;
  }
}
@media screen and (min-width: 800px) {
  #section-mon-propos .hobbies__group .hobbie__title {
    opacity: 0;
  }
  #section-mon-propos .hobbies__group.reveal-show .hobbie__box {
    opacity: 1;
    transform: translate(0, 0);
  }
  #section-mon-propos .hobbies__group.reveal-show .hobbie__title {
    opacity: 1;
  }
}
#section-mon-propos .hobbie__box {
  background-color: #F8F8FF;
  border-radius: 5px;
  font-size: 0.9375rem;
  padding: 1em 2em;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.67em 3.8em;
  will-change: transform;
}
@media screen and (min-width: 800px) {
  #section-mon-propos .hobbie__box {
    opacity: 0;
    transition-duration: 0.6s;
  }
}
#section-mon-propos .hobbie__box .hobbie__name {
  grid-column: span 2;
}
#section-mon-propos .hobbie__box .hobbie__illustration {
  margin-right: 0.67em;
}
#section-mon-propos .hobbie__box--big {
  padding: 1.73em 2em;
  row-gap: 1.67em;
  align-items: baseline;
  align-content: end;
}
#section-mon-propos .hobbie__box--big .hobbie__name {
  grid-column: 1;
}
#section-mon-propos .hobbie__box--big .hobbie__description {
  grid-column: span 2;
}
#section-mon-propos .hobbie__box--big .hobbie__illustration {
  margin: 1.45em 0.67em 0 0;
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
}

/* || PARCOURS PAGE */
/* | Section Timeline */
#section-timeline {
  margin-top: 4rem;
  padding-bottom: 9.5rem;
}
#section-timeline .title__box {
  margin-bottom: 6rem;
}
@media screen and (min-width: 800px) {
  #section-timeline {
    margin-top: 6rem;
  }
}
#section-timeline::before, #section-timeline::after {
  content: "";
  position: absolute;
  user-select: none;
  pointer-events: none;
}
#section-timeline::before {
  z-index: -1000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F8F8FF, rgba(248, 248, 255, 0.85) 10%, rgba(248, 248, 255, 0.85) 96%, #F8F8FF), url(../assets/images/course-bg.jpg) no-repeat center 10%;
  background-size: cover, auto 150%;
  filter: blur(4px);
}
@media screen and (min-width: 800px) {
  #section-timeline::before {
    background-size: 100%, cover;
  }
}
@media screen and (min-width: 1850px) {
  #section-timeline::before {
    background-position: center 6%;
  }
}
#section-timeline::after {
  z-index: -100;
  top: -1rem;
  left: 0;
  width: 60%;
  height: 100%;
  background: url(../assets/images/course-wave.svg) no-repeat top;
  background-size: 100%;
}
@media screen and (min-width: 800px) {
  #section-timeline::after {
    top: -4rem;
    background-size: 100% 385px;
  }
}
#section-timeline .wrapper {
  display: block;
  position: relative;
}
@media screen and (min-width: 800px) {
  #section-timeline .wrapper::before {
    content: "";
    position: absolute;
    top: 10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.875rem;
    height: 95%;
    background-image: linear-gradient(0deg, rgba(57, 128, 195, 0.12) 80%, transparent 95%);
  }
}
#section-timeline .section__box {
  position: relative;
  margin-top: 5.5rem;
  display: grid;
  justify-items: center;
  gap: 5.5rem 8rem;
}
@media screen and (min-width: 800px) {
  #section-timeline .section__box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    grid-auto-flow: dense;
  }
  #section-timeline .section__box .section__text {
    max-width: 300px;
  }
  #section-timeline .section__box:nth-child(odd) .section__illustration {
    grid-column: 1;
  }
  #section-timeline .section__box:nth-child(odd) .section__text {
    grid-column: 2;
  }
  #section-timeline .section__box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: rgba(228, 63, 90, 0.8);
    box-sizing: content-box;
    border: 0.9063rem solid #F8F8FF;
    box-shadow: -10px -10px 30px rgba(228, 63, 90, 0.2), 10px 10px 30px rgba(228, 63, 90, 0.2);
  }
}
#section-timeline .section__box .section__date {
  margin-bottom: 1.25em;
}
#section-timeline .section__box .section__illustration-box {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  #section-timeline .section__box .section__illustration {
    width: 100%;
    transform-origin: bottom;
    transform: scale(1.325);
  }
  #section-timeline .section__box:nth-child(2) .section__illustration {
    transform: scale(1.35);
  }
}

/* Section Technologies */
#section-technologies {
  margin-top: -3.5rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 800px) {
  #section-technologies {
    margin-bottom: 9.05rem;
  }
}
#section-technologies .wrapper {
  gap: 2.5rem;
  position: relative;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 930px) {
  #section-technologies .wrapper {
    gap: 2.9375rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #section-technologies .wrapper::before, #section-technologies .wrapper::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 500px;
    user-select: none;
    pointer-events: none;
  }
  #section-technologies .wrapper::before {
    z-index: -1000;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #F8F8FF 40%, transparent 40%), repeating-radial-gradient(circle, rgba(57, 128, 195, 0.1) 0, rgba(57, 128, 195, 0.1) 18px, transparent 18px, transparent 56px);
    opacity: 0;
    transition: opacity 0.6s;
  }
  #section-technologies .wrapper::after {
    z-index: -999;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #F8F8FF 55%, transparent 70%);
  }
  #section-technologies .wrapper.reveal-show::before {
    opacity: 1;
  }
}
#section-technologies .tech__box {
  padding: 0.8rem 0.4rem;
  height: 140px;
  place-items: center;
  background-color: #F8F8FF;
  border-radius: 5px;
  box-shadow: 10px 10px 20px rgba(228, 63, 90, 0.05), -10px -10px 20px rgba(228, 63, 90, 0.05);
  width: 100%;
  display: flex;
  justify-content: space-around;
}
@media screen and (min-width: 930px) {
  #section-technologies .tech__box {
    flex-wrap: nowrap;
    height: 155px;
    padding: 1rem;
  }
  #section-technologies .tech__box [data-category=ms-office] {
    grid-row: ms-office;
  }
  #section-technologies .tech__box [data-category=cms-emailing] {
    grid-row: cms;
  }
  #section-technologies .tech__box [data-category=web-tools] {
    grid-row: tools;
  }
  #section-technologies .tech__box [data-category=marketing] {
    grid-row: marketing;
  }
  #section-technologies .tech__box [data-category=web-design] {
    grid-row: design;
  }
  #section-technologies .tech__box [data-category=web-dev] {
    grid-row: dev;
  }
}
#section-technologies .tech__box .tech__element {
  padding: 0.75em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  font-size: 0.625rem;
  transition: box-shadow 0.15s, background-color 0.15s, transform 0.6s, opacity 0.6s;
}
@media screen and (min-width: 800px) {
  #section-technologies .tech__box .tech__element:not(.tech__element--nohover):hover {
    background-color: #fcfcff;
    box-shadow: 2px 2px 10px rgba(68, 79, 108, 0.15);
  }
}
#section-technologies .tech__box .tech__element:not(.js-tech-element):not(.tech__element--nohover):active {
  background-color: rgba(57, 128, 195, 0.15);
}
#section-technologies .tech__box .tech__element .tech__img {
  object-fit: contain;
  margin-bottom: auto;
  width: 60px;
  height: 60px;
}
#section-technologies .tech__box .tech__element .tech__level {
  font-weight: 500;
  color: #E43F5A;
}
@media screen and (min-width: 930px) {
  #section-technologies .tech__box .tech__element.tech__element--figma, #section-technologies .tech__box .tech__element.tech__element--html {
    grid-column: 7/9;
    margin-left: 0.5rem;
  }
  #section-technologies .tech__box .tech__element.tech__element--adobexd, #section-technologies .tech__box .tech__element.tech__element--css {
    grid-column: 8/10;
    margin-right: 0.5rem;
  }
  #section-technologies .tech__box .tech__element.tech__element--figma, #section-technologies .tech__box .tech__element.tech__element--adobexd {
    grid-row: 2;
  }
  #section-technologies .tech__box .tech__element.tech__element--html, #section-technologies .tech__box .tech__element.tech__element--css {
    grid-row: 3;
  }
}
#section-technologies .tech__box--big {
  height: max-content;
  padding: 1.75rem 0;
  box-shadow: 10px 10px 20px rgba(68, 79, 108, 0.05), -10px -10px 20px rgba(68, 79, 108, 0.05);
  row-gap: 1.2rem;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 930px) {
  #section-technologies .tech__box--big {
    display: grid;
    padding: 1.75rem 0.5rem;
    grid-column: span 2;
    grid-template-columns: 1fr 1fr 1fr 1fr 35px 35px 1fr 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas: "ms-office ms-office ms-office ms-office tab-l tab-r marketing marketing marketing" "cms cms cms cms tab-l tab-r design design design" "tools tools tools tools tab-l tab-r dev dev dev";
  }
  #section-technologies .tech__box--big::before {
    content: "";
    position: absolute;
    z-index: -99;
    bottom: calc(-85% + 30px);
    left: 50%;
    transform: translate(-50%, -50px);
    width: 16px;
    height: 131px;
    background-image: linear-gradient(0deg, rgba(57, 128, 195, 0.1), #F8F8FF 90%);
    transition: transform 0.6s;
  }
  #section-technologies .tech__box--big::after {
    content: "•";
    position: absolute;
    z-index: -90;
    text-align: center;
    line-height: 29px;
    font-size: 2.1rem;
    color: rgba(68, 79, 108, 0.8);
    bottom: -85%;
    left: 50%;
    transform: translate(-50%, -50px);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #F8F8FF;
    box-shadow: inset 0 0 0 34px rgba(57, 128, 195, 0.1);
    transition: transform 0.6s;
  }
  #section-technologies .tech__box--big.reveal-show::before, #section-technologies .tech__box--big.reveal-show::after {
    transform: translate(-50%, 0);
  }
}
#section-technologies .tech__box--big .tech__element {
  margin-bottom: 0.5rem;
  width: 100px;
  height: 95px;
}
@media screen and (min-width: 930px) {
  #section-technologies .tech__box--big .tech__element {
    margin-bottom: 0;
    width: 110px;
    height: 110px;
  }
}
#section-technologies .tech__box--big .tech__element .tech__name {
  padding: 0 1rem;
}
#section-technologies .tech__box--big .tech__element .tech__img {
  width: 47px;
  height: 47px;
}
#section-technologies .tech__tab {
  display: none;
}
@media screen and (min-width: 930px) {
  #section-technologies .tech__tab {
    display: block;
    font-size: 0.625rem;
    width: 86px;
    transform: rotate(90deg);
    transition: color 0.15s, background-color 0.15s;
  }
  #section-technologies .tech__tab--reverse {
    transform: rotate(-90deg);
  }
  #section-technologies .tech__tab[data-category=ms-office] {
    grid-column: tab-l;
  }
  #section-technologies .tech__tab[data-category=cms-emailing] {
    grid-column: tab-l;
  }
  #section-technologies .tech__tab[data-category=web-tools] {
    grid-column: tab-l;
  }
  #section-technologies .tech__tab[data-category=marketing] {
    grid-column: tab-r;
  }
  #section-technologies .tech__tab[data-category=web-design] {
    grid-column: tab-r;
  }
  #section-technologies .tech__tab[data-category=web-dev] {
    grid-column: tab-r;
  }
}
#section-technologies .section__button {
  max-width: 400px;
  margin-top: 2rem;
  transition: background-position 0.1s, box-shadow 0.1s, opacity 0.6s, transform 0.6s;
}
#section-technologies .section__button:last-of-type {
  margin-top: -1.8rem;
}
@media screen and (min-width: 930px) {
  #section-technologies .section__button {
    max-width: 220px;
    margin-top: 4.5rem !important;
  }
}

/* || PROJETS PAGE */
/* | Section Projets */
.section-project {
  margin-top: 4rem;
}
.section-project::before, .section-project::after {
  content: "";
  position: absolute;
  user-select: none;
  pointer-events: none;
  z-index: -100;
}
.section-project::after {
  top: 96%;
  left: 0;
  width: 100%;
  height: 130%;
  background: url(../assets/images/projects-wave2.svg) no-repeat top;
  background-size: 100%;
}
.section-project#section-project-2::after {
  transform: rotateY(-180deg);
}
.section-project .title__box {
  margin-bottom: 2rem;
}
.section-project .wrapper {
  max-width: 895px;
  align-items: start;
  row-gap: 4rem;
}
@media screen and (min-width: 800px) {
  .section-project {
    margin-top: 6rem;
    margin-bottom: 7rem;
  }
  .section-project .title__box {
    margin-bottom: 6rem;
  }
  .section-project .section__button {
    margin-top: 38.5rem;
    max-width: 241px;
    grid-row: 2;
    grid-column: 1;
  }
  .section-project .wrapper {
    gap: 0 2rem;
  }
  .section-project .photos__container {
    grid-row: 2;
    grid-column: 1;
  }
  .section-project#section-project-2::after {
    top: 91%;
  }
  .section-project#section-project-2 .wrapper {
    height: 700px;
  }
  .section-project#section-project-2 .photos__container, .section-project#section-project-2 .section__button {
    grid-column: 2;
    grid-row: 1;
  }
  .section-project#section-project-2 .section__text {
    grid-column: 1;
  }
}
.section-project .photos__container {
  position: relative;
  width: 85vw;
  height: 85vw;
  max-width: 381px;
  max-height: 381px;
  margin-bottom: clamp(100px, 40%, 160px);
}
.section-project .photos__container .photo__box {
  cursor: pointer;
  position: absolute;
  top: calc(100% + 10px);
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: #EEEFF1;
  box-shadow: -4px 0 4px rgba(68, 79, 108, 0.05), 4px 0 4px rgba(68, 79, 108, 0.05), 0 4px 10px rgba(68, 79, 108, 0.15);
  width: 33.33%;
  height: 33.33%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: top 0.5s, left 0.5s, width 0.5s, height 0.5s, border-color 0.15s, box-shadow 0.15s;
}
.section-project .photos__container .photo__box--active {
  cursor: initial;
  top: 0;
  left: 0 !important;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.section-project .photos__container .photo__box--active::before, .section-project .photos__container .photo__box--active::after {
  position: absolute;
  opacity: 0;
  transition: opacity 0.15s;
  cursor: pointer;
}
.section-project .photos__container .photo__box--active::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1010;
  background-image: linear-gradient(0deg, #F8F8FF, transparent 73%);
}
.section-project .photos__container .photo__box--active::after {
  content: url(../assets/icons/zoom.svg);
  filter: drop-shadow(0px 7px 25px rgba(228, 63, 90, 0.5));
  bottom: 1.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1020;
}
.section-project .photos__container .photo__box img {
  user-select: none;
  max-width: 100%;
  border-radius: 5px;
  box-shadow: -5px 10px 20px rgba(68, 79, 108, 0.2);
}
.section-project .photos__container .photo__box:nth-child(3) {
  left: 33.33%;
}
.section-project .photos__container .photo__box:nth-child(4) {
  left: 66.66%;
}
@media screen and (min-width: 800px) {
  .section-project .photos__container .photo__box {
    cursor: pointer;
  }
  .section-project .photos__container .photo__box:not(.photo__box--active):hover {
    border-color: rgba(228, 63, 90, 0.75);
    box-shadow: -4px 0 4px rgba(228, 63, 90, 0.075), 4px 0 4px rgba(228, 63, 90, 0.075), 0 4px 15px rgba(228, 63, 90, 0.2);
  }
  .section-project .photos__container .photo__box--hover-ready:hover::before, .section-project .photos__container .photo__box--hover-ready:hover::after {
    opacity: 1;
  }
}
.section-project .photos__container .photos__select-ctn {
  position: absolute;
  top: 146%;
  left: 50%;
  transform: translateX(-50%);
}
.section-project#section-project-1::before {
  top: -4rem;
  right: 0;
  width: 70%;
  height: 100%;
  background: url(../assets/images/projects-wave1.svg) no-repeat top;
  background-size: 100%;
}
@media screen and (min-width: 800px) {
  .section-project#section-project-1 .wrapper {
    grid-template-rows: 1fr 700px;
  }
  .section-project#section-project-1::before {
    top: -14rem;
    background-size: 100% 378px;
  }
  .section-project#section-project-1::after {
    top: 92%;
  }
}
.section-project#section-project-1 .photo__box img {
  max-width: 90%;
}
.section-project#section-project-1 .photo__box:nth-child(3) img {
  max-width: 81%;
}
.section-project#section-project-1 .photo__box:nth-child(4) img {
  max-width: 100%;
}
.section-project .section__text {
  background-color: #F8F8FF;
  box-shadow: 0px 30px 50px rgba(68, 79, 108, 0.05);
  border-radius: 5px;
  padding: 0.8125rem 0.8125rem 2rem 0.8125rem;
  max-width: 381px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .section-project .section__text {
    grid-column: 2;
    max-width: 330px;
  }
}
.section-project .section__text .section__date, .section-project .section__text .section__subtitle {
  font-weight: 700;
}
.section-project .section__text .paragraph__container {
  overflow: hidden;
  max-height: 105px;
  height: 100%;
  transition: max-height 0.6s;
}
.section-project .section__text .paragraph__container .section__paragraph {
  line-height: 1.2em;
}
.section-project .section__text .paragraph__container .section__paragraph:first-child {
  margin-top: 1.2em;
}
.section-project .section__text .paragraph__container .section__paragraph .paragraph__link {
  font-weight: 700;
}
.section-project .section__text .paragraph__container .section__paragraph:last-child {
  padding-bottom: 5px;
}
.section-project .section__text .paragraph__container .section__subtitle {
  margin-top: 1em;
}
.section-project .section__text .round__button {
  display: block;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.section-project .section__text .round__button img {
  transition: opacity 0.1s;
}
.section-project .section__text .round__button img.open {
  opacity: 0;
}
.section-project .section__text .reveal__input {
  display: none;
}
.section-project .section__text .reveal__input:checked ~ .round__button img.close {
  opacity: 0;
}
.section-project .section__text .reveal__input:checked ~ .round__button img.open {
  opacity: 1;
}
.section-project .section__text .reveal__input:checked ~ .paragraph__container {
  max-height: 1000px;
}
.section-project .section__button {
  transition: background-position 0.1s, box-shadow 0.1s, transform 0.6s, opacity 0.6s;
}

/* | Tabs Section */
.section-tabs .wrapper {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.5rem;
}
@media screen and (min-width: 800px) {
  .section-tabs .wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.25rem 2.5rem;
  }
}
.section-tabs .tab {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .section-tabs .tab:hover {
    color: #F8F8FF;
    background-color: #444F6C;
  }
}

/* Quote Section */
#section-quote .wrapper {
  row-gap: 3rem;
}
#section-quote .quote__box {
  width: 100%;
  height: 100%;
  min-height: 260px;
  position: relative;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 800px) {
  #section-quote .quote__box {
    height: 350px;
  }
}
#section-quote .quote__box::before {
  content: url(../assets/icons/quote-open.svg);
  position: absolute;
  top: 0;
  left: 0;
}
#section-quote .quote__box::after {
  content: url(../assets/icons/quote-close.svg);
  position: absolute;
  bottom: 0;
  right: 0;
}
#section-quote .quote__box p {
  font-family: "Great Vibes", cursive;
  font-size: 1.6rem;
  max-width: 10em;
}
@media screen and (min-width: 800px) {
  #section-quote .quote__box p {
    font-size: 1.875rem;
  }
}
#section-quote .section__illustration {
  max-width: 320px;
}

/* Photo Viewer */
.photo-viewer-container {
  position: fixed;
  z-index: -999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(248, 248, 255, 0.75);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, z-index 0.25s, opacity 0.2s;
}
@supports (backdrop-filter: blur(10px)) {
  .photo-viewer-container {
    background-color: none;
    backdrop-filter: blur(10px);
  }
}
.photo-viewer-container .photo__viewer {
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-35%);
  width: 100%;
  max-width: 1000px;
  border-radius: 5px;
  padding: 4rem 0;
  background-color: #EEEFF1;
  box-shadow: -4px 0px 4px rgba(36, 36, 36, 0.05), 4px 0px 4px rgba(36, 36, 36, 0.05), 0px 4px 10px rgba(36, 36, 36, 0.15);
  transition: transform 0.2s;
}
@media screen and (min-width: 800px) {
  .photo-viewer-container .photo__viewer {
    max-height: 750px;
    height: 80%;
  }
}
.photo-viewer-container .photo__viewer .viewer__container {
  position: relative;
  display: inline-flex;
  --translateVal: 0;
  transform: translateX(var(--translateVal));
  transition: transform 0.3s;
}
@media screen and (min-width: 800px) {
  .photo-viewer-container .photo__viewer .viewer__container {
    height: 80%;
  }
}
.photo-viewer-container .photo__viewer .viewer__container .viewer__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  min-width: 100%;
  max-height: 300px;
}
@media screen and (min-width: 800px) {
  .photo-viewer-container .photo__viewer .viewer__container .viewer__image {
    max-height: unset;
    padding: 0;
  }
}
.photo-viewer-container .photo__viewer .viewer__container .viewer__image img {
  max-height: 100%;
  object-fit: contain;
  box-shadow: -5px 10px 20px rgba(68, 79, 108, 0.2);
}
.photo-viewer-container .photo__viewer .photos__select-ctn {
  margin: 1.35rem auto;
}
.photo-viewer-container .photo__viewer .viewer__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  margin: 0 auto;
}
.photo-viewer-container .photo__viewer .viewer__controls .round__button:nth-child(2) img {
  filter: drop-shadow(0 7px 25px rgba(68, 79, 108, 0.5));
}
.photo-viewer-container .photo__viewer .viewer__controls .round__button:nth-child(2):active {
  background-color: #cfd3e0;
}
.photo-viewer-container .photo__viewer .viewer__controls .round__button:first-child img {
  margin-left: -2px;
}
.photo-viewer-container .photo__viewer .viewer__controls .round__button:last-child img {
  margin-left: 2px;
}
.photo-viewer-container--show {
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s;
}
.photo-viewer-container--show .photo__viewer {
  transform: translateX(-50%) translateY(-50%);
}

/* || CONTACT PAGE */
#swup[data-url=contact] {
  height: max-content;
  background: url(../assets/images/contact-bg.jpg) no-repeat bottom center;
  background-size: 450%;
  position: relative;
}
@media screen and (min-width: 450px) {
  #swup[data-url=contact] {
    background-size: 300%;
  }
}
@media screen and (min-width: 700px) {
  #swup[data-url=contact] {
    background-size: 200%;
  }
}
@media screen and (min-width: 800px) {
  #swup[data-url=contact] {
    background-size: 100%;
  }
}
@media screen and (min-width: 1600px) {
  #swup[data-url=contact] {
    background-position-y: 50vw;
  }
}
@media screen and (min-width: 1800px) {
  #swup[data-url=contact] {
    background-position-y: 40vw;
  }
}
@media screen and (min-width: 2500px) {
  #swup[data-url=contact] {
    background-position-y: 25vw;
  }
}
@media screen and (min-width: 3100px) {
  #swup[data-url=contact] {
    background-position-y: 15vw;
  }
}
#swup[data-url=contact] footer {
  min-height: unset;
}
#swup[data-url=contact] footer .wrapper {
  grid-template-columns: unset;
  grid-auto-flow: none;
}

/* Section Bubble */
.section-bubble {
  margin-top: 4rem;
  margin-bottom: 0;
}
.section-bubble::before {
  content: "";
  position: absolute;
  user-select: none;
  pointer-events: none;
  z-index: -100;
  top: -1rem;
  right: 0;
  width: 85%;
  height: 100%;
  background: url(../assets/images/contact-wave.svg) no-repeat top;
  background-size: 100%;
}
@media screen and (min-width: 800px) {
  .section-bubble {
    margin-top: 6rem;
  }
  .section-bubble .wrapper {
    display: block;
  }
  .section-bubble::before {
    top: -14rem;
    background-size: 100% 378px;
  }
  .section-bubble::before {
    top: -4rem;
    background-size: 100% 378px;
  }
}
.section-bubble .bubble__text {
  margin-bottom: -5rem;
  font-size: 1.2rem;
  text-align: center;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .section-bubble .bubble__text {
    margin: 12rem 0 3rem 0;
    font-size: 1.5625rem;
  }
}
.section-bubble .bubble__text img {
  display: none;
  position: absolute;
  user-select: none;
  pointer-events: none;
  top: -6.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 780px;
}
@media screen and (min-width: 800px) {
  .section-bubble .bubble__text img {
    display: block;
  }
}
.section-bubble .bubble__text a {
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 800px) {
  .section-bubble .bubble__text a:hover {
    color: #E43F5A;
  }
}
.section-bubble .bubble__text a:active {
  color: #E43F5A;
}
.section-bubble .section__illustration {
  max-width: 837px;
}

/* Section Contact */
.section-contact {
  position: relative;
  margin: 5rem 0 10rem 0;
}
.section-contact::before {
  content: "";
  display: block;
  height: 170px;
  margin-top: -170px;
}
@media screen and (min-width: 800px) {
  .section-contact {
    margin: 0 0 9.05rem 0;
  }
}
.section-contact .wrapper {
  row-gap: 3.5rem;
}
@media screen and (min-width: 800px) {
  .section-contact .wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-contact .contact__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: filter 0.1s, transform 0.6s, opacity 0.6s;
}
.section-contact .contact__box .contact__icon {
  margin-bottom: 1.2em;
  display: grid;
  place-items: center;
  position: relative;
  width: 54px;
  height: 54px;
  filter: drop-shadow(0px 10px 20px rgba(68, 79, 108, 0.15));
  transition: transform 0.1s, opacity 0.1s;
}
@media screen and (min-width: 800px) {
  .section-contact .contact__box .contact__icon {
    margin-bottom: 1.875em;
  }
}
.section-contact .contact__box:first-child .contact__icon {
  transform: scale(1.18);
}
.section-contact .contact__box .contact__link {
  font-size: 1.0625rem;
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
  color: rgba(68, 79, 108, 0.9);
  transition: transform 0.1s, opacity 0.1s;
  will-change: transform;
}
@media screen and (min-width: 800px) {
  .section-contact .contact__box:hover {
    filter: grayscale(60%) brightness(135%);
  }
  .section-contact .contact__box:hover .contact__icon {
    transform: translateY(4px);
    opacity: 0.8;
  }
  .section-contact .contact__box:hover .contact__link {
    transform: translateY(-4px);
    opacity: 0.8;
  }
  .section-contact .contact__box:hover:first-child .contact__icon {
    transform: scale(1.18) translateY(5px);
  }
}
.section-contact .contact__box:active {
  filter: grayscale(65%) brightness(145%);
}
.section-contact .contact__box:active .contact__icon {
  transform: translateY(4px);
  opacity: 0.6;
}
.section-contact .contact__box:active .contact__link {
  transform: translateY(-4px);
  opacity: 0.6;
}
.section-contact .contact__box:active:first-child .contact__icon {
  transform: scale(1.18) translateY(4px);
}
@media screen and (min-width: 800px) {
  .section-contact .contact__box:active .contact__icon {
    transform: translateY(8px);
  }
  .section-contact .contact__box:active .contact__link {
    transform: translateY(-8px);
  }
  .section-contact .contact__box:active:first-child .contact__icon {
    transform: scale(1.18) translateY(8px);
  }
}

/* Section Card */
.section-card .wrapper {
  grid-template-columns: 1fr;
}
.section-card .card {
  max-width: 330px;
  background-color: #F8F8FF;
  border-radius: 5px;
  box-shadow: -4px 0px 10px rgba(68, 79, 108, 0.15), 4px 0px 10px rgba(68, 79, 108, 0.15), 0px 10px 10px rgba(68, 79, 108, 0.2);
  position: relative;
  padding: 5rem 1.8rem;
}
.section-card .card .card__img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.section-card .card .card__img--top {
  width: 128px;
  top: -64px;
}
.section-card .card .card__img--bottom {
  width: 145px;
  bottom: -72px;
}
.section-card .card .card__text {
  display: inline-block;
  font-size: 1.2rem;
  position: relative;
  margin-left: 3rem;
}
.section-card .card .card__text::before {
  display: block;
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
}
.section-card .card .card__text:nth-child(2)::before {
  content: url(../assets/icons/location.svg);
}
.section-card .card .card__text:nth-child(3)::before {
  top: 55%;
  content: url(../assets/icons/files.svg);
}
.section-card .card .card__text:nth-child(4)::before {
  content: url(../assets/icons/goal.svg);
}
.section-card .card .card__text--link {
  margin: 1.4em 0 1.4em 3rem;
  text-decoration: underline;
  transition: transform 0.6s, opacity 0.6s;
}
@media screen and (min-width: 800px) {
  .section-card .card .card__text--link {
    transition: transform 0.6s 0.15s, opacity 0.6s 0.15s;
  }
  .section-card .card .card__text--link:hover {
    color: #E43F5A;
  }
}
.section-card .card .card__text--link:active {
  color: #E43F5A;
}

/* | FOOTER */
footer {
  position: relative;
  text-align: center;
  position: relative;
  color: #F8F8FF;
  overflow: hidden;
  min-height: calc(224px + 4rem);
  padding-top: 4rem;
  margin-top: auto;
  filter: drop-shadow(0px -10px 20px rgba(0, 0, 0, 0.2));
}
footer .bg__footer {
  user-select: none;
  pointer-events: none;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -100;
  min-width: 2500px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 800px) {
  footer .bg__footer {
    min-width: 1000px;
  }
}
footer .wrapper {
  display: grid;
  align-items: center;
  gap: 1.5rem 0;
  padding: 2rem 2rem;
}
@media screen and (min-width: 800px) {
  footer .wrapper {
    height: 95px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }
}
@media screen and (min-width: 800px) {
  footer {
    display: flex;
    align-items: flex-end;
    min-height: 132px;
    height: 15vh;
    max-height: 150px;
  }
  footer .contact__group {
    order: 1;
    justify-self: end;
  }
}
@media screen and (min-width: 1400px) {
  footer {
    min-height: 160px;
  }
}
footer .social__group {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  footer .social__group {
    justify-self: start;
  }
}
@media screen and (min-width: 1400px) {
  footer .social__group {
    margin-top: 0.5rem;
  }
}
footer .social__group .social__link {
  display: block;
  width: 30px;
}
footer .social__group .social__link:first-child {
  width: 34px;
  margin-right: 0.5rem;
}
@media screen and (min-width: 800px) {
  footer .social__group .social__link:first-child {
    margin-right: 1.625rem;
  }
}
footer .contact__group .contact__link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
footer .contact__group .contact__link:first-child {
  margin-bottom: 0.2em;
}
@media screen and (min-width: 800px) {
  footer .contact__group .contact__link {
    text-align: right;
  }
  footer .contact__group .contact__link:hover {
    text-decoration: underline;
  }
}
footer .attribution {
  font-size: 0.75rem;
  max-width: 95px;
  justify-self: center;
}

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