@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@-webkit-keyframes float {
  from {
    -webkit-transform: translateX(-20px) rotate(0deg);
            transform: translateX(-20px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(20px) rotate(360deg);
            transform: translateX(20px) rotate(360deg);
  }
}
@keyframes float {
  from {
    -webkit-transform: translateX(-20px) rotate(0deg);
            transform: translateX(-20px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(20px) rotate(360deg);
            transform: translateX(20px) rotate(360deg);
  }
}
html {
  scroll-behavior: smooth;
}

* {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Josefin Sans", sans-serif;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.icon {
  width: 80px;
}

img {
  width: 60px;
}

nav,
.footer-container {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 300;
  padding: 20px 90px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
nav ul,
.footer-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
}
nav li,
.footer-container li {
  padding: 5px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
nav li:hover,
.footer-container li:hover {
  scale: 1.01;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

body {
  background: rgb(3, 3, 14);
  position: relative;
  overflow-x: hidden;
}
body h2 {
  position: relative;
  font-size: 3rem;
  font-weight: 400;
  padding: 100px 0 50px;
  display: inline-block;
  width: 200px;
}
body input.button {
  background: black;
  border: none;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 20px;
  margin: 40px auto;
  color: white;
  width: 250px;
  letter-spacing: 0.1rem;
  font-stretch: expanded;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border-radius: 30px;
}
body input.button:hover {
  scale: 1.01;
  -webkit-box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
          box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
}
body input::-webkit-input-placeholder {
  font-family: "Josefin Sans", sans-serif;
}
body input::-moz-placeholder {
  font-family: "Josefin Sans", sans-serif;
}
body input:-ms-input-placeholder {
  font-family: "Josefin Sans", sans-serif;
}
body input::-ms-input-placeholder {
  font-family: "Josefin Sans", sans-serif;
}
body input::placeholder {
  font-family: "Josefin Sans", sans-serif;
}

.header-container,
.footer-container {
  height: 120px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

header {
  z-index: 1;
  width: 100%;
}
header .header-logo {
  width: 120px;
  padding: 20px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
header .header-logo.active {
  opacity: 0;
}
header li:hover::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 30px;
  width: 70%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(7, 14, 207)), color-stop(rgb(0, 255, 238)), to(rgb(7, 14, 207)));
  background: linear-gradient(0.25turn, rgb(7, 14, 207), rgb(0, 255, 238), rgb(7, 14, 207));
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  header nav {
    padding: 0 0 0 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  header nav .header-container {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header nav .nav-menu {
    position: fixed;
    left: -130%;
    top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: black;
    width: 50%;
    -webkit-transition: 0.7s ease-out;
    transition: 0.7s ease-out;
    width: 80%;
    min-width: 360px;
    padding: 130px 70px 50px;
    height: 100vh;
    font-size: 2rem;
    font-weight: 500;
  }
  header nav .nav-menu li {
    padding: 20px;
  }
  header nav .nav-menu li a {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  header nav .active {
    left: 0;
    top: 0;
  }
  header nav .active li:hover {
    scale: 1;
  }
  header nav .active li:hover::after {
    top: 70px;
    left: 20px;
  }
}

.burger {
  display: none;
}

@media screen and (max-width: 900px) {
  .burger {
    display: block;
    cursor: pointer;
  }
  .burger .bar {
    display: block;
    width: 60px;
    height: 6px;
    margin: 10px;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    background: white;
    border-radius: 2px;
  }
  .burger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .burger.active .bar:nth-child(1) {
    -webkit-transform: translateY(16px) rotate(45deg);
            transform: translateY(16px) rotate(45deg);
  }
  .burger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-16px) rotate(-45deg);
            transform: translateY(-16px) rotate(-45deg);
  }
}
.about {
  /* Masquer le texte par défaut */
  /* Afficher le texte lorsque les points de suspension sont cliqués */
  /* Style des points de suspension */
}
.about p {
  position: relative;
  text-align: left;
  font-size: calc(1rem + 1vw);
  line-height: 2.5rem;
  font-weight: 200;
  letter-spacing: 0.1rem;
  padding: 40px 0 0;
  width: 90%;
  margin: 0 auto;
  height: 100%;
}
.about .hidden-text {
  display: none;
}
.about .toggle-text:hover .hidden-text {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.about .toggle-button {
  cursor: pointer;
}

.accueil {
  padding: 0 100px 0;
  display: grid;
  height: 100vh;
  grid-template-columns: 20% 60%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: start;
}
@media screen and (max-width: 950px) {
  .accueil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .accueil ul {
    display: none;
  }
}
.accueil .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .accueil .name {
    padding: 20px 0;
    margin-top: 200px;
  }
}
.accueil .name p {
  padding: 30px 0;
  line-height: 4rem;
}
@media screen and (max-width: 600px) {
  .accueil .name p {
    padding: 5px 0;
    line-height: 3rem;
  }
}
.accueil .name .first-name {
  font-size: calc(1.8rem + 1.7vw);
  letter-spacing: 0.5rem;
}
.accueil .name .family-name {
  font-size: calc(3rem + 3vw);
  letter-spacing: 0.9rem;
}
.accueil .profession {
  font-size: calc(0.8rem + 1vw);
  letter-spacing: 0.5rem;
  line-height: 2.5rem;
  font-weight: 200;
}
@media screen and (max-width: 950px) {
  .accueil .profession {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .accueil .profession {
    font-size: 0.9rem;
  }
}
.accueil ul li {
  text-align: center;
  padding: 4px 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 100%;
}
.accueil ul li:nth-child(2) {
  padding: 12px 0;
}
.accueil ul li:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
          box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
}

.card-box {
  text-align: center;
  padding: 50px 100px;
}
@media screen and (max-width: 750px) {
  .card-box {
    padding: 20px;
  }
}
.card-box h2:before {
  content: "";
  position: absolute;
  top: 60%;
  margin-left: -50px;
  left: -200%;
  width: 200%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(7, 14, 207)), color-stop(rgb(0, 255, 238)), to(rgb(7, 14, 207)));
  background: linear-gradient(0.25turn, rgb(7, 14, 207), rgb(0, 255, 238), rgb(7, 14, 207));
}
@media screen and (max-width: 400px) {
  .card-box h2:before {
    top: 50%;
  }
}
.card-box h2:after {
  content: "";
  position: absolute;
  top: 60%;
  margin-left: -50px;
  left: -200%;
  width: 200%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(7, 14, 207)), color-stop(rgb(0, 255, 238)), to(rgb(7, 14, 207)));
  background: linear-gradient(0.25turn, rgb(7, 14, 207), rgb(0, 255, 238), rgb(7, 14, 207));
  left: 152%;
}
@media screen and (max-width: 400px) {
  .card-box h2:after {
    top: 50%;
  }
}
@media screen and (max-width: 1200px) {
  .card-box h2:before {
    display: none;
  }
  .card-box h2:after {
    content: "";
    position: absolute;
    top: 60%;
    margin-left: -50px;
    left: -200%;
    width: 200%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgb(7, 14, 207)), color-stop(rgb(0, 255, 238)), to(rgb(7, 14, 207)));
    background: linear-gradient(0.25turn, rgb(7, 14, 207), rgb(0, 255, 238), rgb(7, 14, 207));
    top: 80%;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
}

.card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .card-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.card-container .card {
  -webkit-box-shadow: 0px 0px 25px rgba(232, 196, 103, 0.11);
          box-shadow: 0px 0px 25px rgba(232, 196, 103, 0.11);
  background: rgb(3, 3, 14);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 50px 20px;
  min-width: 300px;
  font-family: "Montserrat", sans-serif;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.card-container .card .button {
  margin: 0 auto;
}
.card-container .card:hover {
  background: black;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (max-width: 600px) {
  .card-container .card {
    margin: 20px;
  }
}
.card-container .card h3 {
  font-size: 2rem;
  padding: 30px 0 10px;
}
.card-container .card h4 {
  font-size: 1.1rem;
  font-weight: 400;
  padding: 10px 5px;
  font-family: "Montserrat", sans-serif;
}
.card-container .card p,
.card-container .card a {
  font-size: 1.3rem;
  font-weight: 300;
  padding: 20px 5px;
  text-decoration: none;
  text-align: justify;
  line-height: 2rem;
}
.card-container .card img {
  width: 100%;
}
.card-container .card .skill {
  border: 1px solid white;
  padding: 20px 10px;
  margin: 20px auto;
  width: 50%;
}
.card-container .card .text {
  padding: 20px 10px;
  position: absolute;
  background: linear-gradient(357deg, rgb(3, 3, 14), rgba(3, 3, 14, 0.9));
  bottom: 0;
  left: 0;
  width: 100%;
}
.card-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 70%;
  margin: 0 10px;
  min-width: 300px;
  font-family: "Montserrat", sans-serif;
  padding: 10px;
}
@media screen and (max-width: 1000px) {
  .card-container form {
    width: 100%;
  }
}
.card-container form .input-form,
.card-container form textarea {
  width: 100%;
  border: 1px solid white;
  margin: 15px auto;
  padding: 15px;
  resize: none;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  outline: none;
  color: rgb(5, 5, 5);
}
.card-container form .input-form::-webkit-input-placeholder, .card-container form textarea::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  color: rgb(75, 75, 75);
}
.card-container form .input-form::-moz-placeholder, .card-container form textarea::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  color: rgb(75, 75, 75);
}
.card-container form .input-form:-ms-input-placeholder, .card-container form textarea:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  color: rgb(75, 75, 75);
}
.card-container form .input-form::-ms-input-placeholder, .card-container form textarea::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  color: rgb(75, 75, 75);
}
.card-container form .input-form::placeholder,
.card-container form textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  color: rgb(75, 75, 75);
}
.card-container div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact ul li {
  padding: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 100%;
}
.contact ul li:nth-child(2) {
  padding: 20px;
}
.contact ul li:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
          box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
}
.contact h3 {
  position: relative;
  font-size: calc(1rem + 1vw);
  line-height: 3rem;
  letter-spacing: 0.9rem;
  font-family: "Montserrat", sans-serif;
  padding: 100px 20px 50px;
}
.contact h3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(7, 14, 207)), color-stop(rgb(0, 255, 238)), to(rgb(7, 14, 207)));
  background: linear-gradient(0.25turn, rgb(7, 14, 207), rgb(0, 255, 238), rgb(7, 14, 207));
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-container {
  width: 100%;
}
.main-container::before {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  content: "";
  width: 600px;
  height: 600px;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, rgb(7, 14, 207)), to(rgb(0, 255, 238)));
  background: linear-gradient(rgb(7, 14, 207) 35%, rgb(0, 255, 238));
  -webkit-box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
          box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
  border-radius: 150%;
  z-index: -1;
  top: 4%;
  left: 50%;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  -webkit-animation: float 5s infinite alternate ease-in-out;
          animation: float 5s infinite alternate ease-in-out;
}
.main-container::after {
  -webkit-transition: 0.9s;
  transition: 0.9s;
  content: "";
  width: 600px;
  position: absolute;
  background: rgb(3, 3, 14);
  height: 600px;
  border-radius: 150%;
  z-index: -1;
  top: 4%;
  left: 50%;
  -webkit-animation: float 5s infinite alternate ease-in-out;
          animation: float 5s infinite alternate ease-in-out;
}

@media screen and (max-width: 900px) {
  .main-container::before {
    width: 500px;
    position: fixed;
    height: 500px;
    top: 20%;
    left: 10%;
    overflow: hidden;
  }
  .main-container::after {
    width: 500px;
    position: fixed;
    height: 500px;
    left: 10%;
    top: 20%;
    overflow: hidden;
  }
}
.footer-container {
  font-size: 1.2rem;
  font-weight: 300;
  height: 100px;
}
.footer-container #scrollToTopButton {
  display: block;
  z-index: 99;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 30px;
  right: 35px;
  border: none;
  border-radius: 4px;
  outline: none;
  width: 70px;
  height: 70px;
  padding: 8px;
  background-color: rgb(3, 3, 14);
  border-radius: 100%;
  -webkit-box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
          box-shadow: 0px -5px 20px 0px rgba(7, 14, 207, 0.54), 0px 5px 20px 0px rgba(20, 255, 238, 0.32);
  font-size: 1.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer-container #scrollToTopButton i {
  color: white;
}
.footer-container #scrollToTopButton:hover,
.footer-container #scrollToTopButton:focus,
.footer-container #scrollToTopButton:focus-within {
  cursor: pointer;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 600px) {
  footer p {
    display: none;
  }
  footer .footer-container #scrollToTopButton {
    right: calc(50% - 35px);
  }
}/*# sourceMappingURL=index.css.map */