@import url("https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap");

@font-face {
  font-family: "Mabry Pro";
  src: local("Mabry Pro Black"), local("Mabry-Pro-Black"),
    url("fonts/MabryProBlack/MabryPro-Black.woff2") format("woff2"),
    url("fonts/MabryProBlack/MabryPro-Black.woff") format("woff"),
    url("fonts/MabryProBlack/MabryPro-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Lexend Mega", Arial, Helvetica, sans-serif;
}

/* HEADER */
header {
  display: flex;
  justify-content: center;
}

nav {
  display: flex;
  justify-content: space-between;
  position: fixed;
  background-color: #b1e0d5;
  width: 76%;
  padding: 20px 40px;
  align-items: center;
  border-radius: 10px;
  border: solid 2px #000;
  z-index: 100;
  top: 25px;
  box-shadow: 3px 3px 0 #000000;
}

.navbar-reduced {
  top: -55px;
}

nav a {
  display: inline-block;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  margin-left: 20px;
}

nav a.active {
  padding-bottom: 10px;
  border-bottom: #000 solid 1px;
}

nav button {
  transition: box-shadow 100ms, transform 100ms;
  box-shadow: 3px 3px 0 #000000;
  transform: translate(-0.12em, -0.12em);
}

nav button:hover {
  box-shadow: 0.05em 0.05em 0 #000000;
  transform: translate(-0.05em, -0.05em);
}

nav button:nth-child(1) {
  background-color: #c3b1e1;
}

nav button:nth-child(2) {
  background-color: #ff7a5c;
}

nav button:nth-child(3) {
  background-color: #f2d68b;
}

nav button:nth-child(4) {
  background-color: #90ee90;
}

nav button:nth-child(5) {
  background-color: #87ceeb;
}

.mobile-nav {
  position: fixed;
  background-color: #b1e0d5;
  width: 90%;
  padding: 10px;
  align-items: center;
  border-radius: 10px;
  border: solid 2px #000;
  z-index: 100;
  bottom: 25px;
}

.mobile-nav a.active {
  background-color: #c3b1e1;
}

.mobile-nav-icons {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.mobile-nav i {
  font-size: 24px;
  padding: 10px;
  border-radius: 100px;
}

.mobile-nav a {
  color: #000;
  text-decoration: none;
}

@media (min-width: 750px) {
  .mobile-nav {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  nav {
    display: none;
  }
}


@media (max-width: 830px) {
  nav {
    width: 90%;
    padding: 20px 0;
  }
}

@media screen and (max-width: 1059px) {

  .colors-arrow,
  .colors-btn {
    display: none;
  }

  nav {
    justify-content: space-around;
  }
}

.colors-arrow {
  position: absolute;
  z-index: 101;
  user-select: none;
  height: 100px;
  top: 100px;
  left: 7%;
}


/* PARTIE 1 */
.part1 {
  background-color: #c3b1e1;
  background-image: linear-gradient(#9e90b671 2px, transparent 2px),
    linear-gradient(to right, #9e90b671 2px, #c3b1e1 2px);
  opacity: 1;
  background-size: 100px 100px;
  height: 100vh;
  font-family: "Lexend Mega", Arial, Helvetica, sans-serif;
  width: 100%;
  padding: 0px 12% 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.me {
  width: 100%;
}

.me h2 {
  font-size: 24px;
  margin-bottom: 25px;
}

.me h1 {
  font-size: 42px;
  width: 80%;
  line-height: 0.69;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: "Mabry Pro", Arial, Helvetica, sans-serif;
}

.me h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.me h3 span {
  display: inline-block;
}

.me span {
  margin: 0 -4px;
}

body:hover .me span {
  animation: bounce 0.5s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(0);
  }

  25% {
    transform: rotateX(20deg) translateY(1px) rotate(-3deg);
  }

  50% {
    transform: translateY(-20px) rotate(3deg) scale(1.1);
  }
}

.me h3 span:nth-child(2) {
  animation-delay: 0.05s;
}

.me h3 span:nth-child(3) {
  animation-delay: 0.1s;
}

.me h3 span:nth-child(4) {
  animation-delay: 0.15s;
}

.me h3 span:nth-child(5) {
  animation-delay: 0.2s;
}

.me h3 span:nth-child(6) {
  animation-delay: 0.25s;
}

.me h3 span:nth-child(7) {
  animation-delay: 0.3s;
}

.me h3 span:nth-child(8) {
  animation-delay: 0.35s;
}

.me h3 span:nth-child(9) {
  animation-delay: 0.4s;
}

.me h3 span:nth-child(10) {
  animation-delay: 0.45s;
}

.me h3 span:nth-child(11) {
  animation-delay: 0.5s;
}

.me h3 span:nth-child(12) {
  animation-delay: 0.55s;
}

.me h3 span:nth-child(13) {
  animation-delay: 0.6s;
}

.me h3 span:nth-child(14) {
  animation-delay: 0.65s;
}

.me h3 span:nth-child(15) {
  animation-delay: 0.7s;
}

.me h3 span:nth-child(16) {
  animation-delay: 0.75s;
}

.me h3 span:nth-child(17) {
  animation-delay: 0.8s;
}

.me h3 span:nth-child(18) {
  animation-delay: 0.85s;
}

.me h3 span:nth-child(19) {
  animation-delay: 0.9s;
}

.me h3 span:nth-child(20) {
  animation-delay: 0.95s;
}

.me h3 span:nth-child(21) {
  animation-delay: 1s;
}

.me h3 span:nth-child(22) {
  animation-delay: 1.05s;
}

.me h3 span:nth-child(23) {
  animation-delay: 1.1s;
}

.me h3 span:nth-child(24) {
  animation-delay: 1.15s;
}

.me h3 span:nth-child(25) {
  animation-delay: 1.2s;
}

.me h3 span:nth-child(26) {
  animation-delay: 1.25s;
}

.me h3 span:nth-child(27) {
  animation-delay: 1.3s;
}

.me p {
  font-size: 12px;
  padding: 5px 0;
  margin-bottom: 35px;
}

.part1 a {
  text-decoration: none;
  color: #000;
}

button {
  all: unset;
  cursor: pointer;
  border-radius: 10px;
  font-size: 14px;
  padding: 14px 16px;
  border: 2px solid #000000;
  user-select: none;
}

.btn-popout {
  background-color: #b1e0d5;
  transition: box-shadow 100ms, transform 100ms;
  box-shadow: 3px 3px 0 #000000;
  transform: translate(-0.12em, -0.12em);
}

.btn-popout:hover {
  box-shadow: 0.05em 0.05em 0 #000000;
  transform: translate(-0.05em, -0.05em);
}

.btn-popout:active {
  box-shadow: none;
  transform: translate(0, 0);
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.image-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.blob {
  width: 650px;
  filter: drop-shadow(0px 0px 3px #000);
  animation: rotate infinite 200s linear;
  z-index: 100;
}

.pola-container {
  position: absolute;
}

.polaroid {
  transform: rotate(7deg);
  transition-duration: 300ms;
  transition-property: transform, box-shadow;
  transition-timing-function: ease-out;
  transform: rotate3d(0);
  background-color: #fff;
  box-shadow: 0 1px 2px #00000099;
  width: 375px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  user-select: none;
}

.polaroid:hover {
  transition-duration: 150ms;
  box-shadow: 0 5px 20px 5px #00000044;
  z-index: 10;
}

.polaroid .glow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
}

.polapic img {
  width: 325px;
  height: 325px;
  user-select: none;
  margin-top: 15px;
  border: rgba(0, 0, 0, 0.1) solid 1px;
}

.polapic p {
  text-align: center;
  margin-top: 5px;
  user-select: none;
  font-size: 26px;
  transform: rotate(1deg);
  font-family: "Shadows Into Light", cursive;
}

.hero .arrows {
  position: absolute;
  z-index: 2;
  user-select: none;
  width: 300px;
  top: -60px;
  right: 470px;
  height: 400px;
  transform: rotate(160deg) scaleX(-1);
}

.hero .star {
  position: absolute;
  z-index: 2;
  user-select: none;
  height: 125px;
  top: 420px;
  right: 480px;
  filter: drop-shadow(3px 3px 1px #000);
  transition: transform 0.5s;
}

.hero .star:hover {
  transform: rotate(360deg);
}

.hero .bubble {
  position: absolute;
  right: 10px;
  top: 350px;
  z-index: 2;
  user-select: none;
  background-color: #b1e0d5;
  border: #000 solid 2px;
  border-radius: 5px;
  padding: 5px 10px;
  box-shadow: 3px 3px 0 #000;

  font-size: 14px;
  font-family: "Lexend Mega", Arial, Helvetica, sans-serif;
}

.scroll-container {
  position: absolute;
  background-color: #000;
  letter-spacing: 2px;
  left: 0px;
  bottom: 0px;
  padding: 10px 0;
  overflow: hidden;
  display: flex;
  width: 100%;
  color: #fff;
}

.txt {
  white-space: nowrap;
  font-size: 16px;
  animation: scrollTxt 75s linear infinite;
}

@keyframes scrollTxt {
  0% {
    transform: translate(-100%, 0);
  }

  100% {
    transform: translate(0%, 0);
  }
}

@media screen and (max-width: 750px) {
  nav {
    display: none;
  }
}


/* PARTIE 2 */

.part2 {
  font-family: "Lexend Mega", Arial, Helvetica, sans-serif;
  width: 100%;
  padding: 5% 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
}

.drop-pic {
  width: 50%;
}

.about-me {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-me h1 {
  padding-bottom: 10px;
  border-bottom: #000 solid 2px;
}

.about-card {
  background-color: #c3b1e1;
  padding: 20px 20px;
  border-radius: 10px;
  width: 80%;
  margin-top: 50px;
  border: solid 2px #000;
  box-shadow: 3px 3px 0 #000000;
}

.about-card h1 {
  margin-bottom: 20px;
}

/* PARTIE 3 - FORMATION */

.formations {
  font-family: "Lexend Mega", Arial, Helvetica, sans-serif;
  width: 100%;
  padding: 3% 12%;
  background-color: #f9f5f2;
  position: relative;
  color: #000;
}

.formations h2 {
  font-family: "Mabry Pro", Arial, Helvetica, sans-serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 80px;
}

.mobile-formation {
  display: none;
}

.timeline {
  position: relative;
  margin: 0 auto 2rem;
  margin-top: 2.5rem;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #b1e0d5;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
  border: solid 2px #000;
  margin-bottom: 3rem;
  box-shadow: 3px 3px 0 #000000;
}

.formations-containers {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.formations-containers::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #b1e0d5;
  border: 4px solid #c3b1e1;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  margin-bottom: 3rem;
  box-shadow: 3px 3px 0 #000000;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #c3b1e1;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #c3b1e1;
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #000;
  border-width: 10px 10px 10px 0;
  border-color: transparent #c3b1e1 transparent transparent;
}

.right::after {
  left: -16px;
}

.formations-content {
  padding: 20px 30px;
  background-color: #c3b1e1;
  position: relative;
  border-radius: 6px;
  margin-bottom: 3rem;
  border: solid 2px #000;
  box-shadow: 3px 3px 0 #000;
}

.seemore3 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.seemore3.open {
  max-height: 500px;
  transition: max-height 0.5s ease;
}

.seemore4 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.seemore4.open {
  max-height: 500px;
  transition: max-height 0.5s ease;
}

.logo-img {
  margin: 2%;
  text-align: center;
}

.logo-img img {
  max-width: 150px;
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

.toggle-arrow3,
.toggle-arrow4 {
  text-align: center;
}

.bx-chevron-down {
  font-size: 24px;
  text-align: center;
}

.bx-chevron-up {
  font-size: 24px;
  filter: drop-shadow(0px 0px 3px rgb(0, 0, 0));
  text-align: center;
}

.school-link {
  text-decoration: none;
  color: #000;
  border-bottom: dotted 1px gray;
  transition: 0.25s;
}

.school-link:hover {
  color: #b1e0d5;
  transition: 0.25s;
}

/* PARTIE 4 - SKILLS  */

.skills {
  width: 100%;
  padding: 3% 12%;
}

.skills h2 {
  font-family: "Mabry Pro", Arial, Helvetica, sans-serif;
  font-size: 42px;
  margin-bottom: 80px;
  text-align: center;
}

.cards {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.card {
  max-width: 100%;
  perspective: 1000px;
  margin: 25px;
}

.card,
.flip-card {
  position: relative;
  width: 330px;
  height: 500px;
}

.flip-card {
  transition: transform 0.5s ease-in-out;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
}

.flip-card:hover {
  transform: rotateY(180deg);
}

.card1 {
  background-color: #c3b1e1;
  border-radius: 10px;
}

.card2 {
  background-color: #c3b1e1;
  border-radius: 10px;
}

.card3 {
  background-color: #c3b1e1;
  border-radius: 10px;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: #000 solid 2px;
  box-shadow: 2px 2px 2px#000;
}

.flip-card-front,
.flip-card-back {
  display: block;
  align-items: center;
  border-radius: 10px;
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.card h3 {
  align-items: center;
  text-align: center;
  margin: 30px;
}

.card-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.card img {
  width: 90px;
  filter: drop-shadow(1px 1px 1px #000);
}

.flip-btn {
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 1;
}

.card-bar {
  width: 75%;
  margin: 0 auto;
}

.bar {
  background-color: #eee;
  padding: 3px;
  border-radius: 15px;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #000;
  border: #000 solid 1px;
  box-shadow: 1px 1px 1px#000;
  transition: 0.25s;
}

.bar:hover {
  transform: scale(1.05);
  transition: 0.25s;
}

.bar::before {
  content: attr(data-skill);
  background-color: #b1e0d5;
  display: inline-block;
  padding: 5px 0 5px 10px;
  border-radius: inherit;
  animation: load 2s 0s;
}

.bar.learning::before {
  width: calc(20% - 10px);
}

.bar.basic::before {
  width: calc(40% - 10px);
}

.bar.intermediate::before {
  width: calc(60% - 10px);
}

.bar.advanced::before {
  width: calc(80% - 10px);
}

.bar.expert::before {
  width: calc(95% - 10px);
}

/* PARTIE 5 - Portfolio  */
.portfolio {
  width: 100%;
  padding: 3% 12%;
  background-color: #f9f5f2;
}

.portfolio h2 {
  font-family: "Mabry Pro", Arial, Helvetica, sans-serif;
  font-size: 42px;
  margin-bottom: 80px;
  text-align: center;
}

.portfolio-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-card:nth-child(1) {
  transform: translateY(-10px);
  background-color: #c3b1e1;
}

.portfolio-card:nth-child(2) {
  background-color: #ff7a5c;
}

.portfolio-card:nth-child(3) {
  transform: translateY(-10px);
  background-color: #f2d68b;
}

.portfolio-card:nth-child(4) {
  background-color: #90ee90;
}

.portfolio-card:nth-child(5) {
  transform: translateY(-10px);
  background-color: #87ceeb;
}

.portfolio-card {
  height: 350px;
  width: 220px;
  background-color: #c3b1e1;
  border-radius: 10px;
  color: #000;
  border: #000 solid 2px;
  box-shadow: 2px 2px 2px#000;
  margin-left: -50px;
  transition: 0.4s ease-out;
  position: relative;
  padding: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.portfolio-card:hover {
  transform: translateY(-20px);
  margin-right: 45px;
  transition: 0.4s ease-out;
}

.portfolio-card h3 {
  position: absolute;
  top: 14px;
  left: 18px;
}

.portfolio-card p {
  position: absolute;
  top: 50px;
  left: 18px;
}

.portfolio-card img {
  max-width: 100%;
}

.portfolio-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 150px;
  width: 150px;
  padding: 10%;
  border-radius: 100px;
  border: #000 solid 2px;
  box-shadow: 3px 3px 2px#000;
}

.portfolio-btn {
  position: absolute;
  bottom: 10px;
  color: #000;
  right: 10px;
  transition: box-shadow 100ms, transform 100ms;
  box-shadow: 3px 3px 0 #000000;
  transform: translate(-0.12em, -0.12em);
}

.btn1 {
  background-color: #b1e0d5;
}

.btn2 {
  background-color: #5c8aff;
}

.btn3 {
  background-color: #f2b138;
}

.btn4 {
  background-color: #5c8aff;
}

.btn5 {
  background-color: #ebe586;
}

.portfolio-btn:hover {
  box-shadow: 0.05em 0.05em 0 #000000;
  transform: translate(-0.05em, -0.05em);
}

.portfolio-btn:active {
  box-shadow: none;
  transform: translate(0, 0);
}

/* PARTIE 6 - Contact  */
.contact {
  width: 100%;
  padding: 3% 12%;
}

.contact h2 {
  font-family: "Mabry Pro", Arial, Helvetica, sans-serif;
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
}

.contact p {
  font-size: 16px;
  margin-bottom: 33px;
  text-align: center;
}

.contact .contact-form {
  position: relative;
  margin: 0 auto;
  width: 700px;
  margin-top: 20px;
}

.contact .contact-form .row {
  width: 100%;
  display: flex;
}

.contact .contact-form .row .col {
  width: 50%;
  margin: 10px;
}

.contact .contact-form .row .col2 {
  width: 100%;
  margin: 10px;
  text-align: center;
}

.contact .contact-form .row input,
.contact .contact-form .row textarea {
  width: 100%;
  padding: 10px;
  border: solid 2px #000;
  outline: none;
  border-radius: 15px;
  resize: vertical;
  min-height: 50px;
  max-height: 200px;
  font-size: 16px;
  transition: box-shadow 100ms, transform 100ms;
  box-shadow: 3px 3px 0 #000000;
  transform: translate(-0.12em, -0.12em);
}

.contact .contact-form .row input:hover,
.contact .contact-form .row textarea:hover {
  box-shadow: 0.05em 0.05em 0 #000000;
  transform: translate(-0.05em, -0.05em);
}

.colorinput {
  background-color: #c3b1e1;
}

.contact .contact-form .row input:focus,
.contact .contact-form .row textarea:focus {
  box-shadow: none;
  transform: translate(0, 0);
}

.contact .contact-form .row textarea {
  height: 100px;
}

.contact .contact-form .row input[type="submit"] {
  all: unset;
  cursor: pointer;
  border-radius: 10px;
  font-size: 14px;
  padding: 14px 16px;
  border: 2px solid #000000;
  user-select: none;
  background-color: #b1e0d5;
  transition: box-shadow 100ms, transform 100ms;
  box-shadow: 3px 3px 0 #000000;
  transform: translate(-0.12em, -0.12em);
}

.contact .contact-form .row input[type="submit"]:hover {
  box-shadow: 0.05em 0.05em 0 #000000;
  transform: translate(-0.05em, -0.05em);
}

.contact .contact-form .row input[type="submit"]:active {
  box-shadow: none;
  transform: translate(0, 0);
}

/* FOOTER */
.footer {
  width: 100%;
  padding: 1%;
  background-color: #f9f5f2;
}

.reseau {
  text-align: center;
  margin: 1% 0 1% 0;
  user-select: none;
}

.reseau i {
  transition: 0.5s;
  color: #000;
  font-size: 40px;
}

.reseau i:hover {
  color: #c3b1e1;
  filter: drop-shadow(0px 0px 1px #000);
  transition: 0.5s;
}

.footer p {
  color: #000;
  text-align: center;
  margin: 1% 0 1% 0;
}

@media (max-width: 1600px) {
  nav {
    width: 90%;
  }
}

@media (max-width: 1465px) {
  .part1 {
    padding: 0px 6% 5%;
  }
}

@media (max-width: 1350px) {
  nav {
    width: 96%;
  }

  .part {
    padding: 0px 2% 5%;
  }

}

@media (max-width: 1265px) {
  .me h1 {
    font-size: 36px;
    width: 100%;
  }

  .me h2,
  .me h3 {
    font-size: 18px;
  }
}

@media (max-width: 1160px) {
  .me h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .me h2,
  .me h3 {
    font-size: 16px;
  }

  .hero .arrows {
    top: -20px;
    right: 470px;
    height: 300px;
    width: 200px;
  }


  .cards {
    display: flex;
    flex-wrap: wrap;
  }

  .portfolio-card:hover {
    transform: translateY(0px);
    margin-right: 0px;
    transition: 0S ease-out;
  }

  @media screen and (max-width: 1071px) {

    .blob {
      width: 450px;
    }

    .polaroid {
      width: 275px;
      height: 300px;
    }

    .polapic img {
      width: 225px;
      height: 225px;
      user-select: none;
      margin-top: 15px;
      border: rgba(0, 0, 0, 0.1) solid 1px;
    }

    .polapic p {
      font-size: 24px;
    }

    .bubble {
      display: none;
    }

    .hero .arrows {
      top: -90px;
      right: 325px;
      height: 300px;
      width: 200px;
      transform: rotate(170deg) scaleX(-1);
    }

    .hero .star {
      display: none;
    }

  }

  @media screen and (max-width: 950px) {
    .part1 {
      display: block;
    }

    .me {
      padding: 20% 12% 0%;
    }

    .portfolio-container {
      display: flex;
      flex-wrap: wrap;
    }
    
    .arrows{
      display: none;
    }
  }

  @media (max-width: 730px) {

    /* FORMATIONS */
    article {
      display: none;
    }

    .mobile-formation {
      padding: 10px;
      display: block;
    }

    .mobile-formation-menu {
      padding: 5px;
      background-color: #c3b1e1;
      border: #000 solid 2px;
      box-shadow: 3px 3px 2px#000;
      border-radius: 10px;
      margin: 15px;
    }

    .mobile-formation-menu h3 {
      margin: 10px;
      text-align: center;
    }

    .mobile-formation-menu p {
      font-size: 12px;
      margin: 10px;
    }

    .toggle-arrow,
    .toggle-arrow2 {
      text-align: center;
    }

    .bx-chevron-down {
      font-size: 24px;
    }

    .bx-chevron-up {
      font-size: 24px;
    }

    .seemore {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }

    .seemore.open {
      max-height: 500px;
      transition: max-height 0.5s ease;
    }

    .seemore2 {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }

    .seemore2.open {
      max-height: 500px;
      transition: max-height 0.5s ease;
    }
  }

  @media (max-width: 700px) {
    .me{
      padding: 20% 0 0;
    }

    .me h1 {
      font-size: 26px;
      margin-bottom: 16px;
    }

    .me h2,
    .me h3 {
      font-size: 20px;
    }

    .part h2 {
      font-size: 34px;
    }

    /* CONTACT */

    .contact p {
      font-size: 12px;
    }

    /*Contact Formulaire*/
    .contact .contact-form {
      width: 90%;
    }

    .contact .contact-form .row {
      display: block;
    }

    .contact .contact-form .row .col {
      width: 100%;
      margin: 10px 0 10px 0;
    }

    .contact .contact-form .row .col2 {
      width: 100%;
      margin: 10px 0 10px 0;
      text-align: center;
    }

    .contact .contact-form .row input[type="submit"] {
      margin-top: 10px;
    }
  }
}

@media (max-width: 700px) {
.part1{
  padding: 2%;
}

.me{
  padding: 20% 0 60%;
}

.blob{
  display: none;
}

}