#experiences {
  position: relative;
  z-index: 1;
  background-color: var(--blue-background);
  padding: 200px 0;
}

.title-experiences {
  background-color: var(--blue-background);
  color: var(--white-color);
}

.section-experiences {
  display: flex;
  flex-direction: column;
  padding: 0 20%;
  gap: 100px;
  background-color: var(--blue-background);
}

.experience {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.title-experience {
  color: aquamarine;
}

.title-experience-droite {
  text-align: right;
}

.experience img {
  height: 300px;
  border-radius: 30px;
  box-shadow: 0 0 0.6em black;
  transition: all 0.5s ease;
  z-index: 2;
}

.experience img:hover {
  box-shadow: 0 0 1.5em black;
  transition: all 0.5s ease;
}

.logo-github {
  border-radius: 50px;
  transition: all 0.1s ease-in-out;
}

.link_experiences:link {
  display: inline-block;
  color: var(--link-color-backBlue);
}

.link_experiences::after {
  content: "";
  width: 0px;
  height: 1px;
  margin-top: -4px;
  display: block;
  background: var(--link-color-backBlue);
  transition: 0.5s;
}

.link_experiences:hover::after {
  width: 100%;
}

.link_experiences:visited {
  color: var(--link-color-backBlue);
}

.transition_proj_comp {
  display: block;
  background-color: rgb(23, 17, 54);
  height: 8vw;
  width: 100%;
  margin: -4vw 0px -4vw 0px;
  -webkit-transform: rotate(-4deg) scale(1.2, 1);
  -ms-transform: rotate(-4deg) scale(1.2, 1);
  transform: rotate(-4deg) scale(1.2, 1);
  z-index: 0;
}

.transition_myself_proj3 {
  height: 5em;
  background-color: rgb(23, 17, 54);
  border-bottom-left-radius: 200%;
}

.transition_myself_proj4 {
  height: 5em;
  background-color: rgb(23, 17, 54);
  border-bottom-right-radius: 200%;
}

.img_experience_responsive {
  display: none;
}

@media screen and (max-width: 1500px) {
  .section-experiences {
    padding: 0 5%;
  }
}

@media screen and (max-width: 950px) {
  #projects {
    width: 100vw;
  }

  .section-experiences {
    padding: 0 10%;
    gap: 30px;
  }

  .experience {
    box-shadow: 0 0 1em black;
    border-radius: 30px;
  }

  .title-experiences {
    font-size: 2.5em;
  }

  .experience:before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    border-radius: 30px;
  }

  .experience img {
    display: none;
  }

  .title-experience {
    text-align: left;
    margin-bottom: 10px;
  }
}
