@charset "UTF-8";
@font-face {
  font-family: "clash";
  src: url("../assets/fonts/ClashDisplay-Regular.otf");
}
@font-face {
  font-family: "clashbold";
  src: url("../assets/fonts/ClashDisplay-Bold.otf");
}
@font-face {
  font-family: "radio";
  src: url("../assets/fonts/RadioCanadaBig-Regular.ttf");
}
body {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
}

.title {
  color: #e41612;
}

.main__contact {
  padding-top: 5%;
  min-height: 100vh;
}

.contact {
  background-color: #260a35;
  color: #e7e7e7;
  padding: 3rem;
  display: flex;
  justify-content: center;
  font-family: radio;
  z-index: 10;
}
.contact__all {
  display: flex;
  flex-direction: column;
}
.contact__img {
  z-index: 2;
  width: 90%;
  transform: scale(1.5);
  margin: auto;
}
.contact__container {
  max-width: 700px;
  width: 100%;
}
.contact__title {
  color: #ea07c8;
  font-size: 2rem;
  font-weight: 700;
  font-family: clash;
}
.contact__subtitle {
  margin-bottom: 1.5rem;
  font-family: radio;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 600px) {
  .contact__row {
    flex-direction: column;
  }
}
.contact__input, .contact__select, .contact__textarea {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #e7e7e7;
  font-size: 1rem;
}
.contact__input::-moz-placeholder, .contact__select::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact__input:-ms-input-placeholder, .contact__select:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact__input::placeholder, .contact__select::placeholder, .contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact__textarea {
  height: 150px;
  resize: none;
}
.contact__button {
  background-color: #ea07c8;
  color: #e7e7e7;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease-in;
}
.contact__button:hover {
  opacity: 0.8;
}
.contact__input--hidden {
  display: none;
}
.contact__message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}
.contact__message--success {
  background-color: rgba(0, 255, 100, 0.2);
  color: #00ff8c;
}
.contact__message--error {
  background-color: rgba(255, 0, 100, 0.2);
  color: #ff4f7b;
}
.contact__select option {
  color: #92157f;
  background-color: #e7e7e7;
}
.contact__select option:hover {
  background-color: #92157f;
  color: #e7e7e7;
  transition: 0.3s ease-in-out;
}

@media (min-width: 769px) {
  .contact__img {
    min-width: 700px;
    width: 50%;
    transform: scale(1);
    margin: auto;
    margin-top: -100px;
  }
}
*::-moz-selection {
  background: #ea07c8;
  color: #260a35;
}
*::selection {
  background: #ea07c8;
  color: #260a35;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  background-color: #260a35;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  position: relative;
}

* {
  cursor: none !important;
}

.custom-cursor {
  width: 32px;
  height: 32px;
  background-image: url("../assets/images/clicchatmauve.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  /* important */
  transform: translate(-50%, -50%);
  transition: background-image 0.2s ease, transform 0.06s linear;
  z-index: 9999;
  display: none;
}

/* Style hover (changera via JS) */
.custom-cursor.hover {
  background-image: url("../assets/images/clicchatmauvehover.png");
  transform: translate(-50%, -50%) scale(1.1);
}

.totop,
.totop a {
  position: fixed;
  bottom: 18px;
  right: 18px;
  font-size: 18px;
  width: 20px;
  height: 20px;
  z-index: 2;
  padding: 0.8rem;
  background: transparent;
  border-radius: 0.8rem;
  border: 2px solid #ea07c8;
  color: #ea07c8;
  transition: 0.5s ease;
  display: flex;
  justify-content: center;
}
.totop:hover,
.totop a:hover {
  background: transparent;
  color: #e7e7e7;
  border-color: #e7e7e7;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #260a35;
}

body::-webkit-scrollbar-thumb {
  background-color: #ea07c8;
  border-radius: 20px;
  border: 3px solid #ea07c8;
}

section {
  overflow-x: hidden !important;
}

.title {
  font-family: clash;
  text-align: center;
  background: linear-gradient(90deg, #ea07c8, #92157f, #8d2dd6, #574bda, #4259ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  position: fixed;
}

.link {
  position: fixed;
  z-index: 15;
  cursor: pointer;
  font-family: big;
  font-size: 30px;
  color: #ea07c8;
  margin-left: 20px;
  margin-top: 20px;
}
.link:hover {
  transform: scale(120%);
  transition: 0.3s ease-in-out;
}

.menu-toggle {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  background: none;
  border: none;
  position: fixed;
  color: #ea07c8;
  font-size: 36px;
}
.menu-toggle:hover {
  transform: scale(120%);
}

.menu {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #92157f;
  z-index: 15;
  font-family: clash;
  font-weight: bold;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.menu__el {
  list-style: none;
  margin-bottom: 15px;
}
.menu__el:first-child {
  margin-top: 25%;
}
.menu__link {
  position: relative;
  color: #e7e7e7;
  text-decoration: none;
  font-size: 40px;
  transition: color 0.3s ease-out;
}
.menu__link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #260a35;
  transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88);
}
.menu__link:hover::before {
  width: 100%;
}
.menu__logo {
  display: none;
}

.menu__liste {
  padding: 0;
}

.menu--open .menu {
  /* display: block; */
  transform: translateX(0);
  overflow: hidden;
}

.menu--open i {
  color: #260a35;
  transform: rotate(90deg);
  transition: 0.3s ease-in-out;
}

.logo-svg {
  fill: #ea07c8;
  height: 50px;
}

.header {
  margin: 0;
  padding: 0;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #260a35;
  z-index: 10;
  position: relative;
}
.header #particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.8;
}
.header__container {
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  pointer-events: none;
  padding: 5px;
}
.header__title {
  color: #e7e7e7;
  font-size: 50px;
  line-height: 1;
  font-family: clash;
  text-align: center;
  /* ➕ Ajout pour l'effet split-text */
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.header__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  -webkit-animation: rise 0.6s forwards;
          animation: rise 0.6s forwards;
}
@-webkit-keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header__h2 {
  font-family: clash;
  font-size: 40px;
  color: #e7e7e7;
  text-align: center;
}
.header__h3 {
  font-family: clash;
  color: #e7e7e7;
  font-size: 27px;
  text-align: center;
}
.header__boutons {
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 10;
  font-family: radio;
  align-items: center;
  gap: 18px;
}
.header__btn {
  text-decoration: none;
  border: 1px solid #ea07c8;
  border-radius: 15px;
  color: #260a35;
  padding: 10px 15px;
  font-size: 18px;
  background-color: #ea07c8;
  width: 170px;
  text-align: center;
}
.header__btn:hover {
  background-color: transparent;
  border: 1px solid #e7e7e7;
  color: #e7e7e7;
  transition: 0.3s ease-in-out;
  background: rgba(38, 10, 53, 0.04);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(231, 231, 231, 0.7);
}

.containerpb {
  position: fixed;
  top: 0;
  left: 0%;
  width: 100vw;
  height: 100vh;
  height: auto;
  pointer-events: none;
  display: none;
}
.containerpb .circle-pb {
  position: absolute;
  bottom: 0%;
  border-radius: 50%;
  mix-blend-mode: screen;
  background: radial-gradient(circle, hsla(180deg, 33%, 87%, 0.5) 10%, transparent 60%);
  opacity: 0;
  transform: scale(0);
  -webkit-animation: fadeScale-pb linear infinite;
          animation: fadeScale-pb linear infinite;
}

@-webkit-keyframes fadeScale-pb {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 0.7;
    transform: scale(2);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes fadeScale-pb {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 0.7;
    transform: scale(2);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
.gradient {
  background: linear-gradient(90deg, #ea07c8, #92157f, #8d2dd6, #574bda, #4259ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Pour compatibilité étendue */
}

.pink {
  color: #ea07c8;
}

.txt__margin {
  margin-top: 18px !important;
}

.title {
  font-size: 40px;
  margin-bottom: 56px;
}
.title::before, .title::after {
  content: "";
  background: url("../assets/images/star.png") no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 30px;
  display: inline-block;
  /* ou block selon le contexte */
  vertical-align: middle;
  margin: 0 15px;
}

.present {
  padding: 0 15px;
  margin-bottom: 84px;
}
.present__txt {
  color: #e7e7e7;
  font-family: radio;
  max-width: 600px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
}
.present__social {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  margin-bottom: 56px;
}
.present__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: 0.2rem solid #ea07c8;
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.5rem #8d2dd6;
  font-size: 27px;
  color: #ea07c8;
  margin: 2.5rem 0.75rem 3rem;
  transition: 0.5s ease;
  text-decoration: none;
}
.present__link:hover {
  background: #ea07c8;
  color: #260a35;
  border-color: #ea07c8;
  transform: scale(1.5);
}
.present__cc {
  width: 80%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative;
  margin-bottom: 84px;
}
.present__cc .avatar {
  width: 80%;
}
.present__cc .salut {
  width: 50%;
  position: absolute;
  right: -10%;
  top: 0%;
  display: none;
}
.present__cc:hover {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.present__cc:hover .salut {
  display: block;
  transition: 0.3s ease-in;
}

.data {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 15px;
  width: 90%;
  margin: auto 5%;
  margin-bottom: 196px;
  font-family: clash;
}
.data__box {
  border: 1px solid #92157f;
  border-radius: 15px;
  padding: 25px;
  width: 175px;
  text-align: center;
  color: #e7e7e7;
  align-items: center;
  display: flex;
}
.data__box:nth-of-type(2) .data__chiffre::before {
  content: "+";
}
.data__content {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.data__chiffre,
.data h3 {
  font-size: 27px;
  margin: 0;
}

.portfolio {
  min-height: auto;
  width: 90%;
  margin: auto 5%;
  margin-bottom: 196px;
  margin-top: 0;
}
.portfolio__title {
  margin-bottom: 32px;
  margin-top: 0;
}
.portfolio__container {
  width: 100%;
}
.portfolio__container a {
  text-decoration: none;
  background: #260a35;
}
.portfolio__box {
  position: relative;
  display: flex;
  /* ton <a> est un flex, ok */
  flex-direction: column;
  width: 100%;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 56px;
  overflow: hidden;
  /* important : empêche le pseudo-élément de déborder */
  text-decoration: none;
  /* lien sans soulignement */
  /* -> Quand on survole la box (ici l'<a>), on anime son ::before */
  /* si tu veux aussi animer le contenu (optionnel) */
}
.portfolio__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../assets/images/bg-noise.png) center/cover no-repeat;
  opacity: 0.3;
  border-radius: 20px;
  transform: scale(1);
  /* état initial */
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.portfolio__box:hover::before {
  transform: scale(1.2);
  opacity: 0.9;
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  border-radius: 20px;
}
.portfolio__box:hover .portfolio__h3 i {
  transform: translateY(-3px);
  transition: transform 5s ease-in-out;
  display: inline-flex;
}
.portfolio__box--last {
  margin-bottom: 0;
}
.portfolio__box:first-of-type:hover::before {
  background: url(../assets/images/test-copia.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(2):hover::before {
  background: url(../assets/images/namur.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(3):hover::before {
  background: url(../assets/images/trailerbg.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(4):hover::before {
  background: url(../assets/images/gens.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(5):hover::before {
  background: url(../assets/images/bg-main.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(6):hover::before {
  background: url(../assets/images/lotion-p.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(7):hover::before {
  background: url(../assets/images/2019-1.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(8):hover::before {
  background: url(../assets/images/cloudbottom.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(9):hover::before {
  background: url(../assets/images/sablier_content.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(10):hover::before {
  background: url(../assets/images/generative_art.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(11):hover::before {
  background: url(../assets/images/timeline.webp) center/cover no-repeat;
}
.portfolio__box:nth-of-type(12):hover::before {
  background: url(../assets/images/article2.webp) center/cover no-repeat;
}
.portfolio__box--last:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  border-radius: 20px;
  background: url(../assets/images/andmore.webp) center/cover no-repeat !important;
}
.portfolio__more {
  position: absolute;
  width: 100px;
  top: -25%;
  right: -25%;
  transform: translate(-50%, -50%);
  -webkit-animation: spin 15s linear infinite;
          animation: spin 15s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: none;
}
.portfolio__h3 {
  font-size: 40px;
  font-family: clashbold;
  font-weight: bold;
  color: #e7e7e7;
  align-items: center;
  text-align: center;
  z-index: 987;
}
.portfolio__h3 i {
  margin-left: 16px;
  align-items: center;
  display: none;
}
.portfolio__h3--chronos {
  font-size: 35px;
}
.portfolio__infos {
  z-index: 9876;
}
.portfolio__p {
  font-size: 18px;
  font-family: clash;
  color: #e7e7e7;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  z-index: 987;
}
.portfolio__date {
  font-size: 15px;
  color: #e7e7e7;
  font-family: clash;
  z-index: 987;
  text-align: center;
}

.loop {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #260a35;
  margin-bottom: 196px;
  position: relative;
}
.loop__rail {
  display: flex;
  gap: 150px;
}
.loop i {
  white-space: nowrap;
  font-size: 100px;
  font-weight: 900;
  line-height: 1em;
  color: #8d2dd6;
}
.loop__layer {
  width: 100%;
  height: 140%;
  position: absolute;
  background: linear-gradient(to right, rgb(38, 10, 53) 0%, rgba(38, 10, 53, 0) 50%, rgb(38, 10, 53) 100%);
}

.formations {
  min-height: auto;
  margin-bottom: 196px;
  overflow: visible !important;
}
.formations__h2 {
  margin-bottom: 32px;
  margin-top: 0px;
}
.formations__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  color: #e7e7e7;
}
.formations__box {
  text-align: center;
  margin-bottom: 112px;
  padding: 15px;
}
.formations__box:last-of-type {
  margin-bottom: 0px;
}
.formations__box:hover {
  box-shadow: 0 0.1rem 2rem #92157f;
  transform: scale(1.02);
  transition: 0.3s ease-in-out;
  background: rgba(59, 18, 81, 0.04);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.formations__box:hover .formations__h3 {
  color: #ea07c8;
}
.formations__box i {
  font-size: 60px;
  color: #ea07c8;
}
.formations__h3 {
  font-size: 27px;
  transition: 0.5s ease;
}
.formations__p {
  font-size: 18px;
  margin: 1rem 0 3rem;
  text-align: left;
}
.formations__p span {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 18px;
  margin: 1rem 0 3rem;
  color: #e7e7e7;
}

.byeAlltext {
  height: auto;
  position: relative;
  color: #e7e7e7;
  font-family: "Karla", sans-serif;
  display: grid;
  place-items: center;
  margin-bottom: 196px;
  max-width: 90%;
}

.byetext {
  text-transform: uppercase;
  font-size: 3.25rem;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -2px;
  transform: translate3d(0, 0, 0);
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  -webkit-text-size-adjust: 100%;
}
.byetext__line {
  height: 50px;
  overflow: hidden;
  position: relative;
}
.byetext__line:nth-child(odd) {
  transform: skew(60deg, -30deg) scaleY(0.66667);
}
.byetext__line:nth-child(even) {
  transform: skew(0deg, -30deg) scaleY(1.33333);
}
.byetext__line:nth-child(1) {
  left: 29px;
}
.byetext__line:nth-child(2) {
  left: 58px;
}
.byetext__line:nth-child(3) {
  left: 87px;
}
.byetext__line:nth-child(4) {
  left: 116px;
}
.byetext__line:nth-child(5) {
  left: 145px;
}
.byetext__line:nth-child(6) {
  left: 174px;
}
.byetext__line:nth-child(7) {
  left: 203px;
}
.byetext__line p {
  margin: 0;
  height: 50px;
  line-height: 45px;
  padding: 0 10px;
  transition: all 0.4s ease-in-out;
  transform: translate3d(0, 0, 0);
  vertical-align: top;
  white-space: nowrap;
}
.byetext:hover p {
  transform: translate3d(0, -50px, 0);
}

.footer {
  background-color: #260a35;
  width: 100vw;
  overflow-x: hidden;
  text-align: center;
  margin-bottom: 0;
  padding: 2rem 0;
  padding-top: 30px;
  position: relative;
}
.footer__contact {
  list-style: none;
  text-decoration: none;
  text-align: center;
  padding-left: 0;
}
.footer__link, .footer__year {
  color: #ea07c8;
  text-decoration: none;
  font-size: 18px;
}
.footer__link:hover, .footer__year:hover {
  transition: 0.2s ease-out;
  color: #e7e7e7;
}
.footer__link:hover .footer__link, .footer__year:hover .footer__link {
  transition: 0.2s ease-out;
  color: #e7e7e7;
}
.footer .social {
  text-align: center;
  z-index: 50000 !important;
}
.footer .social__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: 0.1rem solid #ea07c8;
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.5rem #8d2dd6;
  font-size: 18px;
  color: #ea07c8;
  margin: 1rem 0.75rem 1rem;
  transition: 0.5s ease;
  text-decoration: none;
}
.footer .social__link:hover {
  background: transparent;
  color: #e7e7e7;
  border-color: #e7e7e7;
  transform: scale(1.1);
}

.credits {
  padding: 50px;
  padding-top: 84px;
  width: 80%;
  margin: auto;
  z-index: 15;
}
.credits__body {
  margin: 0;
  padding: 0;
  color: #e7e7e7;
}
.credits__title {
  font-size: 68px;
  font-family: clash;
  color: #e7e7e7;
  margin: 0;
  margin-bottom: 64px;
}
.credits__subtitle {
  font-size: 45px;
  font-family: clash;
  color: #e7e7e7;
  margin: 0;
  margin-bottom: 32px;
}
.credits__subtitle:first-of-type {
  margin-top: 64px;
}
.credits__text {
  font-size: 20px;
  font-family: radio;
  color: #e7e7e7;
  line-height: 1.6;
}
.credits__edit {
  margin-bottom: 128px;
}
.credits__list {
  list-style: none;
  font-family: radio;
  color: #e7e7e7;
}
.credits__link {
  text-decoration: none;
  font-size: 18px;
  font-family: radio;
  text-align: center;
  padding: 10px 20px;
  width: 150px;
  border: 1px solid #ea07c8;
  border-radius: 15px;
  background-color: #260a35;
  color: #ea07c8;
  display: flex;
  justify-content: center;
  margin: auto;
}
.credits__link:hover {
  transition: 0.3s ease-in-out;
  cursor: pointer;
  background-color: #ea07c8;
  color: #260a35;
}
.credits__link--left {
  margin: 0;
}

@media (min-width: 481px) {
  main h2 {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .formations {
    margin-bottom: 512px;
    padding-bottom: 0;
  }
  .formations__box {
    max-width: 100ch;
    margin-bottom: 128px;
  }
  .formations__box:last-child {
    margin-bottom: 0;
  }
  .formations__box p, .formations__box span {
    font-size: 20px;
  }
  .formations__box h3 {
    font-size: 30px;
  }

  .formations__h3 {
    margin-bottom: 32px;
    font-size: 30px;
  }
  .formations__h2 {
    margin-bottom: 32px;
    font-size: 45px;
  }
  .formations p {
    font-size: 20px;
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .custom-cursor {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    position: fixed;
    display: flex;
    align-items: center;
    background: transparent;
    transform: none;
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, rgb(38, 10, 53) 0%, rgba(38, 10, 53, 0) 100%);
  }
  .menu__liste {
    display: flex;
    margin: 0;
    padding-right: 50px;
    list-style: none;
    justify-content: flex-end;
    width: 100%;
  }
  .menu__el {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #ea07c8;
  }
  .menu__el:first-child {
    margin-top: 0;
  }
  .menu__link {
    font-size: 24px;
    margin: auto 15px;
    color: #ea07c8 !important;
  }
  .menu__link:hover {
    color: #e7e7e7;
  }
  .menu__link::before {
    background-color: #ea07c8;
  }
  .menu__logo {
    display: flex;
    padding-left: 50px;
    width: 50px;
    justify-content: flex-start;
    align-items: center;
  }

  .link {
    z-index: 50;
  }

  .header__title {
    font-size: 81px;
  }
  .header__boutons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .containerpb {
    display: block;
  }

  main h2 {
    margin-top: 0;
    margin-bottom: 38px;
  }

  .present__title {
    font-size: 54px;
  }
  .present__txt {
    font-size: 24px;
    max-width: 650px;
  }
  .present__cc {
    margin-bottom: 304px;
  }

  .data {
    margin-bottom: 304px;
  }
  .data__box {
    width: 250px;
  }
  .data h3 {
    font-size: 36px;
  }

  .portfolio {
    margin-bottom: 304px;
  }
  .portfolio__title {
    font-size: 54px;
  }
  .portfolio__box {
    max-width: 700px;
    justify-content: center;
    margin: 56px auto;
  }
  .portfolio__h3 {
    font-size: 36px;
  }
  .portfolio__p {
    font-size: 24px;
  }
  .portfolio__date {
    font-size: 20px;
  }

  .loop {
    margin-bottom: 304px;
  }

  .formations {
    margin-bottom: 304px;
  }
  .formations__box {
    margin-bottom: 76px;
    max-width: 500px;
  }
  .formations__h2, .formations__h3 {
    margin-bottom: 38px;
  }

  .byeAlltext {
    margin-bottom: 304px;
  }
}
@media (min-width: 868px) {
  .present__txt {
    font-size: 24px;
    max-width: 800px;
  }

  .portfolio {
    margin-bottom: 304px;
  }
  .portfolio__container {
    max-width: 1600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .portfolio__box {
    flex-direction: row;
    gap: 20px;
    max-width: 725px;
    margin: 0;
    margin-bottom: 76px;
    padding: 10px 20px;
  }
  .portfolio__box--left {
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 0;
  }
  .portfolio__box--right {
    justify-content: flex-start;
    margin-right: auto;
    margin-left: 0;
  }
  .portfolio__h3 {
    width: 50%;
    text-align: left;
  }
  .portfolio__infos {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .portfolio__p {
    padding-left: 0px;
    text-align: left;
  }
  .portfolio__date {
    text-align: left;
    padding-left: 0px;
  }

  .formations {
    padding: 0%;
  }
  .formations__container {
    width: 100vw;
    justify-content: space-evenly;
  }
  .formations__box {
    margin-bottom: 0;
  }

  .byeAlltext {
    max-width: 100%;
  }

  .byetext {
    font-size: 3.25rem;
  }
}
@media (min-width: 900px) {
  .portfolio__date {
    max-width: 800px;
  }
}

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