:root {
  --green: #4ddc9e;
  --blue: #5b37eb;
  --pink: #f1307e;
  --dark-blue: #040a22;
  --light-blue: #08164c;
  --lighter: #11205c;
}

body {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #040a22, #050f37);
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Proxima Nova 700", sans-serif;
  font-weight: 900;
}

p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 36px;
}

.container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  p {
    font-size: 20px;
    line-height: 32px;
  }
}
/*----------------Menu---------------*/

.menu a {
  color: white;
  font-family: "proxima nova bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-size: 30px;
  text-decoration: none;
  position: relative;
}

.menu a:hover {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-item.active a {
  color: white;
}

.nav-item.active a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
}

.nav-item {
  padding-right: 15px;
  padding-left: 15px;
}

.navbar i {
  color: rgba(255, 255, 255, 0.8);
}

.menu div.container-fluid {
  display: flex;
  justify-content: flex-end;
  margin: 20px;
}

.custom {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

@media screen and (max-width: 1280px) {
  .menu a:hover {
    color: white;
  }
  .menu a {
    font-size: 24px;
  }
}

/*--------------------------footer------------------------*/

footer {
  background: linear-gradient(to right, #050f37, #040a22);
  color: white;
}

footer .content {
  padding: 40px;
}

footer .menu {
  display: flex;
  flex-direction: row;
}

footer a {
  font-family: "proxima nova bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  text-decoration: none;
  color: white;
  margin-right: 10px;
  margin-left: 10px;
}

footer a:hover {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.color-line {
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--green), var(--blue), var(--pink));
}

footer p {
  text-align: center;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  footer .row {
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
  }
  footer .menu {
    justify-content: center;
  }
  footer .copyright {
    padding-top: 20px;
  }
  footer a:hover {
    color: white;
  }
  footer p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  footer .row {
    display: flex;
    flex-direction: column-reverse;
  }
  footer .menu {
    display: flex;
    flex-direction: column;
  }
  footer .menu a {
    padding-top: 20px;
  }
  footer .copyright {
    padding-top: 40px;
  }
  footer a {
    max-width: 115px;
  }
  footer a:hover {
    color: white;
  }
  footer p {
    font-size: 14px;
    font-weight: 200px;
  }
}
/*---------------home-page------------------------*/

.home {
  overflow: hidden;
}

.home::before {
  content: "";
  background-image: url("../assets/Images/background-image1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  min-height: 1000px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dark-blue);
  opacity: 0.05;
  z-index: -1;
  animation: anima 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes anima {
  0% {
    opacity: 0.03;
  }
  20% {
    opacity: 0.04;
  }
  45% {
    opacity: 0.13;
  }
  50% {
    opacity: 0.15;
  }
  55% {
    opacity: 0.13;
  }
  80% {
    opacity: 0.04;
  }
  100% {
    opacity: 0.03;
  }
}

.home .content {
  position: relative;
  z-index: 1;
}

.home .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 500px;
}

.home .content {
  padding: 130px 0;
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
}

.home .text {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  justify-content: flex-start;
}

.hero {
  width: 150px;
  height: auto;
  z-index: 1;
}

.hero-hover {
  display: none;
  position: absolute;
  width: 150px;
  height: auto;
  z-index: 1;
}

.circle:hover .hero {
  opacity: 0;
}

.circle:hover .hero-hover {
  display: block;
}

.home .gradient {
  position: absolute;
  width: 500px;
  height: 500px;
  filter: blur(50px);
  background-image: linear-gradient(#4ddc9e, #5b37eb, #f1307e);
  animation: rotate 4s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
  border-radius: 50%;
  z-index: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.home h4 {
  color: white;
  margin-top: 50px;
}

.home p {
  max-width: 650px;
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .home::before {
    min-height: 1200px;
  }
  .home .content {
    flex-direction: column;
    padding: 0 auto 100px;
    gap: 0;
    max-width: 85%;
  }
  .home p {
    margin: 0;
  }
  .home .circle {
    width: 250px;
    height: 250px;
    margin-right: 0;
    margin: auto;
  }
  .home .gradient {
    width: 250px;
    height: 250px;
    filter: blur(25px);
  }
  .home .text {
    margin: 0 auto 100px;
  }
  .hero {
    width: 75px;
  }
  .hero-hover {
    width: 75px;
  }
  .home h4 {
    margin-top: 50px;
  }
  .circle:hover .hero {
    opacity: 1;
  }
  .circle:hover .hero-hover {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .home p {
    font-size: 18px;
    line-height: 28px;
  }
  .home::before {
    min-height: 1200px;
  }
  .home .content {
    flex-direction: column;
    padding-top: 20px;
    margin: auto;
    text-align: left;
    max-width: 85%;
    gap: 0;
  }
  .home {
    padding: 0;
  }
  .home p {
    margin: 0;
  }
  .home .circle {
    width: 250px;
    height: 250px;
    margin-right: 0;
    margin: auto;
  }
  .home .gradient {
    width: 250px;
    height: 250px;
    filter: blur(25px);
  }
  .home .text {
    text-align: left;
    margin: 0 auto 100px;
  }
  .hero {
    width: 75px;
  }
  .hero-hover {
    width: 75px;
  }
  .home h4 {
    margin-top: 50px;
  }
  .circle:hover .hero {
    opacity: 1;
  }
  .circle:hover .hero-hover {
    display: none;
  }
  @keyframes anima {
    0% {
      opacity: 0.15;
    }
    20% {
      opacity: 0.18;
    }
    45% {
      opacity: 0.24;
    }
    50% {
      opacity: 0.28;
    }
    55% {
      opacity: 0.24;
    }
    80% {
      opacity: 0.18;
    }
    100% {
      opacity: 0.15;
    }
  }
}

/*-----animated text------*/

.home h2 {
  color: white;
  font-family: "proxima nova bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  border-right: solid 3px white;
  white-space: nowrap;
  overflow: hidden;
  font-size: 40px;
  max-height: 75px;
}

@keyframes animated-text {
  0% {
    width: 0;
  }
  10% {
    width: 0;
  }
  25% {
    width: 160px;
  }
  40% {
    width: 160px;
  }
  60% {
    width: 400px;
  }
  100% {
    width: 400px;
  }
}

@keyframes animated-cursor {
  from {
    border-right-color: white;
  }
  to {
    border-right-color: transparent;
  }
}

.home h2 {
  animation: animated-text 6s steps(15, end) 1 normal both,
    animated-cursor 600ms steps(15, end) infinite;
}

@media screen and (max-width: 768px) {
  .home h2 {
    font-size: 28px;
    text-align: left;
  }
  @keyframes animated-text {
    0% {
      width: 0;
    }
    10% {
      width: 0;
    }
    25% {
      width: 120px;
    }
    40% {
      width: 120px;
    }
    60% {
      width: 310px;
    }
    100% {
      width: 310px;
    }
  }
}

/*--------name effect------*/

.home span.name {
  font: 60px "Permanent Marker", cursive;
  font-display: swap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: anim 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes anim {
  0% {
    text-shadow: -0px -0px 0px var(--dark-blue);
  }
  10% {
    text-shadow: 0px -0px 0px;
  }
  20% {
    text-shadow: -0px 0px 0px var(--dark-blue);
  }
  30% {
    text-shadow: 0px -0px 0px;
  }
  40% {
    text-shadow: -0px 0px 0px var(--dark-blue);
  }
  50% {
    text-shadow: 0px 0px 0px;
  }
  80% {
    text-shadow: -0px 0px 0px var(--dark-blue);
  }
  70% {
    text-shadow: 0px 0px 0px;
  }
  00% {
    text-shadow: -0px -0px 0px var(--dark-blue);
  }
  90% {
    text-shadow: 0px -0px 0px;
  }
  100% {
    text-shadow: -0px 0px 0px var(--dark-blue);
  }
}

@media screen and (max-width: 768px) {
  .home span.name {
    text-align: left;
    font-size: 30px;
    margin: 10px 0;
    min-width: 300px;
    line-height: 30px;
  }
}

/*-------------------------------Contact-----------------------------*/
.section-header {
  font-family: "Permanent Marker";
  text-align: center;
  margin: auto;
  padding-top: 40px;
  margin-top: 50px;
  font-size: 128px;
  font-weight: 400;
  line-height: 153px;
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 650px;
}

.contact p {
  text-align: center;
  margin: 20px auto 100px;
  max-width: 700px;
  color: rgba(255, 255, 255, 1);
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  max-width: 840px;
  margin-bottom: 100px;
}

.form-horizontal {
  max-width: 400px;
  font-weight: 400;
}

.form-control {
  max-width: 400px;
  letter-spacing: 1px;
}

input.form-control,
textarea.form-control {
  color: white;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.8);
}

input.form-control:focus,
textarea.form-control:focus {
  border-color: rgba(255, 255, 255, 1);
  background-color: transparent;
  color: rgba(255, 255, 255, 1);
}

.btn.btn-primary.send-button {
  border: 0;
}

.send-button {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  margin-top: 15px;
  height: 45px;
  width: 400px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  border: 0;
  box-shadow: 2px 2px 5px rgba(254, 254, 254, 0.2);
}

.alt-send-button {
  width: 400px;
  height: 45px;
  transition: all 0.2s ease-in-out;
}

.contact .alt-send-button {
  margin-left: -15px;
}

.send-button:hover {
  filter: brightness(1.2);
}

.send-text {
  display: block;
  margin-top: 20px;
  font: 700 12px "Lato", sans-serif;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(-10px, -43px, 0px);
}

.direct-contact-container {
  max-width: 400px;
  display: flex;
  align-items: center;
}

.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}

.list-item {
  line-height: 4;
}

.list-item i {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-text {
  font: 300 18px;
  letter-spacing: 1.9px;
  color: white;
}

.contact-text.social {
  color: white;
  font-family: "proxima nova bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

.list-item a {
  color: white;
}

.list-item a:hover {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-text.social:hover {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.place,
.contact-text.social {
  margin-left: 62px;
}

@media screen and (max-width: 1280px) {
  .section-header {
    margin-top: 20px;
    padding: 50px 0 0 0;
    font-size: 100px;
    max-width: 480px;
  }
  .contact p {
    margin: 0 auto 40px;
    width: 70%;
  }
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  .direct-contact-container,
  .form-horizontal {
    margin: 0 auto;
  }
  .direct-contact-container {
    margin-top: 60px;
    max-width: 350px;
  }
  .contact-list {
    margin-left: 0;
  }
  .place,
  .contact-text.social {
    margin-left: 35px;
  }
}

@media screen and (max-width: 768px) {
  .contact p {
    font-size: 18px;
    line-height: 28px;
  }
  .section-header {
    margin-top: 25px;
    padding: 20px 0 0 0;
    font-size: 60px;
    line-height: 100px;
    max-width: 350px;
  }
  .direct-contact-container,
  .form-wrapper {
    float: none;
    margin: 0 auto;
  }
  .form-control {
    max-height: 220px;
    font-size: 16px !important;
  }
  .form-horizontal {
    max-width: 300px;
    margin: auto;
  }
  .send-button,
  .alt-send-button {
    max-width: 300px;
  }
  .form-control,
  textarea {
    margin: 0 auto;
  }
  .name,
  textarea {
    max-width: 280px;
  }
  .direct-contact-container {
    margin-top: 60px;
    max-width: 400px;
  }
  .contact-list {
    margin-left: 0;
    padding: 0;
  }
  .place,
  .contact-text.social {
    margin-left: 35px;
  }
}

@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}

/*--------------Merci-----------*/

.merci {
  color: white;
  text-align: center;
  padding-top: 300px;
  padding-bottom: 300px;
}

@media screen and (max-width: 768px) {
  .merci {
    padding: 150px 20px;
  }
}

/*-----------------------------Réalisations----------------------*/

.realisations {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px;
  padding: 0 100px;
}

.realisation {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 100px 0;
  max-width: 1400px;
}

.realisations h1 {
  font-family: "Permanent Marker";
  text-align: center;
  margin: auto;
  margin-top: 80px;
  padding: 40px 0;
  font-size: 128px;
  font-weight: 400;
  line-height: 153px;
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.realisation .image {
  display: flex;
  justify-content: center;
  margin: auto 50px;
  align-items: flex-start;
  border: 20px solid whitesmoke;
  border-radius: 20px;
  box-shadow: 2px 6px 14px rgba(254, 254, 254, 0.3);
}

.realisations .image-left {
  transform: perspective(1200px) rotateY(20deg);
  transition: transform 0.5s ease;
}

.realisations .image-right {
  transform: perspective(1200px) rotateY(-20deg);
  transition: transform 0.5s ease;
}

.realisation .image-left:hover {
  transform: rotateY(-20deg);
  filter: brightness(1.04);
}

.realisation .image-right:hover {
  transform: rotateY(20deg);
  filter: brightness(1.04);
}

.realisation img {
  width: 100%;
  height: auto;
}

.realisations .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  text-align: center;
  color: white;
  padding: 35px;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 24px;
  box-shadow: 0px 1px 10px 5px rgba(255, 255, 255, 0.2);
}

.realisations p {
  color: rgba(255, 255, 255, 1);
}

.realisations .content:hover {
  background-color: var(--dark-blue);
}

.realisations ul {
  text-align: start;
}

.realisations .send-button {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  margin-top: 15px;
  height: 45px;
  width: 150px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  color: white;
  font-family: "proxima nova bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  border: 0;
  border-radius: 15px;
  box-shadow: 1px 2px 5px rgba(254, 254, 254, 0.2);
}

.realisations .send-button:hover {
  filter: brightness(1.2);
}

.realisations .alt-send-button {
  width: 150px;
  height: 45px;
  transition: all 0.2s ease-in-out;
}

.realisations .alt-send-button i {
  margin-top: 25px;
}

.realisations .send-text {
  display: block;
  margin-top: 15px;
  font: 700 12px "Lato", sans-serif;
  letter-spacing: 2px;
  margin-right: 15px;
}

.realisations .alt-send-button:hover {
  transform: translate3d(-10px, -43px, 0px);
}

.realisations h4 {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 20px auto;
  font-weight: 800;
}

.nowrap {
  white-space: nowrap;
}

@media (max-width: 400px) {
  h4.nowrap {
    font-size: 22px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .realisations h1 {
    max-width: 700px;
    font-size: 90px;
    margin-top: 20px;
    padding: 0;
    line-height: 90px;
  }
  .realisations {
    margin: 25px 0 80px 0;
    padding: 0 50px;
  }
  .realisation {
    flex-direction: column;
    margin: 100px 0 0 0;
    width: 100%;
  }
  .realisation .image {
    width: 600px;
    height: auto;
    margin: auto;
    border: 15px solid whitesmoke;
    box-shadow: 1px 4px 12px rgba(254, 254, 254, 0.3);
  }
  .realisations .image-left {
    transform: perspective(600px) rotateY(0deg);
    transition: transform 0.5s ease;
  }
  .realisations .image-right {
    transform: perspective(600px) rotateY(0deg);
    transition: transform 0.5s ease;
  }
  .realisation .image-left:hover {
    transform: rotateY(0deg);
  }
  .realisation .image-right:hover {
    transform: rotateY(0deg);
  }
  .realisation img {
    width: 100%;
    height: 100%;
  }
  .realisation.mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .realisations .content {
    max-width: 600px;
    padding: 30px;
    margin: 50px auto;
    box-shadow: 0px 2px 8px 4px rgba(255, 255, 255, 0.2);
  }
}

@media screen and (max-width: 768px) {
  .realisations p {
    font-size: 18px;
    line-height: 28px;
  }
  .realisations h1 {
    max-width: 370px;
    font-size: 45px;
    margin-top: 20px;
    padding: 0;
    line-height: 55px;
  }
  .realisations {
    margin: 0 auto 60px;
    padding: 0;
  }
  .realisation {
    flex-direction: column;
    margin: 75px auto 0;
    width: 100%;
  }
  .realisation .image {
    max-width: 340px;
    height: auto;
    margin: auto;
    border: 10px solid whitesmoke;
    box-shadow: 1px 4px 10px rgba(254, 254, 254, 0.3);
  }
  .realisations .image-left {
    transform: perspective(300px) rotateY(0deg);
    transition: transform 0.5s ease;
  }
  .realisations .image-right {
    transform: perspective(300px) rotateY(0deg);
    transition: transform 0.5s ease;
  }
  .realisation .image-left:hover {
    transform: rotateY(0deg);
  }
  .realisation .image-right:hover {
    transform: rotateY(0deg);
  }
  .realisation img {
    width: 100%;
    height: 100%;
  }
  .realisation.mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .realisations .content {
    max-width: 340px;
    padding: 20px;
    margin: 50px auto;
    box-shadow: 0px 1px 6px 3px rgba(255, 255, 255, 0.2);
  }
  .realisations h4.nowrap {
    white-space: wrap;
  }
  .realisations h4 {
    margin: 10px;
  }
  .realisation h4.attitude-nordique {
    max-width: 180px;
  }
}

/*----------------------À Propos-------------------------*/
.apropos {
  display: flex;
  flex-direction: column;
  color: white;
}

.apropos .header .content {
  width: 70%;
  padding: 0 20px;
}

.apropos .header .image.content {
  width: 350px;
}

.apropos .header,
.apropos .skills,
.apropos .interest .content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}

.apropos .header,
.apropos .content,
.apropos .skills {
  max-width: 1400px;
  margin: 70px auto;
}

.apropos p {
  padding: 0 20px 10px 20px;
  text-align: left;
}

.apropos .skills p {
  text-align: center;
}

.apropos .header {
  text-align: left;
  justify-content: space-between;
}

.apropos .header p,
.apropos .header h2 {
  padding: 10px 0 0 0;
}

.apropos .header .content {
  max-width: 800px;
}

.apropos .parcours {
  background-color: var(--dark-blue);
  box-shadow: inset 0 2px 20px -10px black, inset 0 -2px 20px -10px black;
}

.parcours .content {
  max-width: 900px;
}

.apropos .interest {
  background-color: var(--dark-blue);
  box-shadow: inset 0 2px 20px -10px black, inset 0 0px 0px -0px black;
}

.apropos h1 {
  font-family: "Permanent Marker";
  font-size: 128px;
  font-weight: 400;
  line-height: 153px;
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.parcours h2,
.interest h2,
.skills h2 {
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 20px auto;
  font-weight: 800;
  text-align: center;
}

.parcours h2 {
  max-width: 400px;
  text-align: center;
}

.skills h2.design {
  max-width: 180px;
}

.skills h2.dev {
  max-width: 220px;
}

.skills p,
.interest p {
  color: white;
}

.parcours p {
  color: rgba(255, 255, 255, 1);
}

.skills .skill {
  color: white;
  background-image: linear-gradient(
    to right,
    rgba(77, 220, 158, 0.3),
    rgba(91, 55, 235, 0.3),
    rgba(241, 48, 126, 0.3)
  );
  padding: 10px;
  border-radius: 15px;
  margin: 5px;
}

.skills .block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.interest h2.who {
  max-width: 280px;
  text-align: center;
}

.interest h2.interests {
  max-width: 240px;
}

.interest .hr {
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--blue), var(--pink));
  max-width: 1400px;
  margin: auto;
  opacity: 1;
  border-top: 0;
}

.apropos img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  padding: 5px;
}

.apropos img.yinyang {
  border-radius: 0;
}

.apropos .gradient {
  margin: auto;
  max-width: 200px;
  background-image: linear-gradient(#4ddc9e, #5b37eb, #f1307e);
  animation: rotate 7s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
  border-radius: 50%;
}

.apropos .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.apropos .image-container {
  width: 400px;
  margin: auto;
  border-radius: 50%;
  box-shadow: 2px 6px 14px rgba(254, 254, 254, 0.3);
  background-image: linear-gradient(
    to right,
    var(--green),
    var(--blue),
    var(--pink)
  );
  animation: anim-image 6s;
}

@keyframes anim-image {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.apropos .img-container {
  animation: anim-img 6s;
  margin: auto;
  text-align: center;
}

@keyframes anim-img {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.interest .image1 img {
  max-width: 400px;
  height: auto;
  border: 10px solid whitesmoke;
  border-radius: 20px;
  box-shadow: 2px 6px 14px rgba(254, 254, 254, 0.3);
  padding: 0;
}

.interest .image2 img {
  max-width: 300px;
  height: auto;
  border: 10px solid whitesmoke;
  border-radius: 20px;
  box-shadow: 2px 6px 14px rgba(254, 254, 254, 0.3);
  padding: 0;
}

.interest .content {
  padding: 100px 0;
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .apropos h1 {
    font-size: 100px;
    max-width: 560px;
    margin: auto;
  }
  .apropos .header {
    display: flex;
    flex-direction: column;
  }
  .apropos .header,
  .apropos .skills {
    margin: 40px auto;
  }
  .apropos .content {
    margin: 0 0 20px 0;
    max-width: 85%;
    margin: auto;
  }
  .parcours h2 {
    max-width: 365px;
  }
  .skills h2.design {
    max-width: 170px;
  }
  .skills h2.dev {
    max-width: 210px;
  }
  .skills .block {
    flex-wrap: wrap;
    justify-content: center;
  }
  .interest h2.who {
    max-width: 280px;
  }
  .interest h2.interests {
    max-width: 230px;
  }
  .interest .hr {
    height: 2px;
    width: 600px;
  }
  .apropos .gradient {
    max-width: 180px;
  }
  .apropos .image1 {
    margin-top: 40px;
    margin: auto;
  }
  .apropos .image2 {
    margin-bottom: 40px;
    margin: auto;
  }
  .apropos .image-container {
    max-width: 300px;
  }
  .interest .image1 img {
    max-width: 300px;
    border: 8px solid whitesmoke;
    box-shadow: 2px 6px 12px rgba(254, 254, 254, 0.3);
  }
  .interest .image2 img {
    max-width: 250px;
    border: 8px solid whitesmoke;
    box-shadow: 2px 6px 12px rgba(254, 254, 254, 0.3);
  }
  .interest .content {
    padding: 40px 40px;
  }
  div.container-fluid.apropos {
    padding: 0;
  }
  .skills .content {
    margin: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .apropos p {
    font-size: 18px;
    line-height: 28px;
  }
  .apropos h1 {
    max-width: 270px;
    font-size: 45px;
    margin: 0 0 20px 0;
    line-height: 70px;
  }
  .apropos .header {
    display: flex;
    flex-direction: column;
  }
  .apropos .content {
    margin: 0 auto 20px;
  }
  .apropos .header,
  .apropos .skills {
    margin: 35px auto;
  }
  .apropos .content {
    padding: 0;
    width: 80%;
  }
  .apropos .parcours {
    padding: 20px 0;
    margin: 0;
  }
  .apropos p {
    padding-left: 15px;
    padding-right: 15px;
  }

  .parcours h2 {
    max-width: 310px;
    text-align: left;
    margin-right: 0;
    margin-left: 15px;
  }
  .skills h2.design {
    max-width: 140px;
  }
  .skills h2.dev {
    max-width: 180px;
  }
  .skills .block {
    flex-wrap: wrap;
    justify-content: center;
  }
  .interest h2.who {
    max-width: 230px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-left: 15px;
  }
  .interest h2.interests {
    max-width: 188px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-left: 15px;
  }
  .interest .hr {
    height: 2px;
    width: 80%;
  }
  .apropos .gradient {
    max-width: 200px;
  }
  .apropos .image-container {
    max-width: 200px;
  }
  .interest .image1 img {
    max-width: 250px;
    margin-top: 40px;
    border: 5px solid whitesmoke;
    box-shadow: 2px 5px 10px rgba(254, 254, 254, 0.3);
  }
  .interest .image2 img {
    margin-bottom: 40px;
    max-width: 200px;
    border: 5px solid whitesmoke;
    box-shadow: 2px 5px 10px rgba(254, 254, 254, 0.3);
  }
  .interest .content {
    padding: 50px 0;
  }
  .apropos .header img {
    border: 0;
  }
  .apropos .header .image.content {
    width: 80%;
  }
  div.container-fluid.apropos {
    padding: 0;
  }
  .skills .content {
    margin: 20px 0;
  }
}

@media screen and (max-width: 410px) {
  .parcours h2 {
    max-width: 235px;
    text-align: left;
    margin-right: 0;
    margin-left: 15px;
  }
  .skills h2.design {
    max-width: 110px;
  }
  .skills h2.dev {
    max-width: 140px;
  }
  .interest h2.who {
    max-width: 170px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-left: 15px;
  }
  .interest h2.interests {
    max-width: 140px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-left: 15px;
  }
}
