body {
  overflow-x: hidden;
}

.horizontal-scroll-container {
  position: relative;
  height: 100vh;
  width: 100%;
}

.a-propos-parallax {
  height: 100vh;
  width: 100%;
  color: black;
  z-index: 1;
  background-image: url("apropos-background-zigzag.jpg");

  display: flex;
  align-items: center;
  flex-direction: row;
}

.a-propos-parallax .a-propos-texte {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  width: 100%;
  z-index: 4;
}

.apropos-hello {
  height: 150px;
  margin-left: 20%;
  margin-bottom: 20px;
}

.apropos-pres {
  padding-left: 30%; /* margin-left: 30%;*/
}
.apropos-pres img {
  height: 100px;
}

.a-propos-parallax .apropos-qualities {
  font-weight:300;
  font-size:23px;
  line-height: 2.5rem;
  letter-spacing:4px;
  color:#373d45;
  margin-top: 25px;
}

.a-propos-parallax .a-propos-parallax-circles {
  position: absolute;
  height: fit-content;
  top: 20%;
  right: 45%;
}
.a-propos-parallax .a-propos-parallax-circles div {
  position: relative;
}
.a-propos-parallax .a-propos-parallax-circles img {
  position: absolute;
}
.fre-body {
  z-index: 3;
  left: 100px;
  width: 230px;
  top: 60px;
}
.blue-circle {
  z-index: 2;
  width: 350px;
  top: 230px;
  left: 30px;
}
.white-circle {
  z-index: 1;
  width: 500px;
  top: 110px;
}

@media screen and (max-width: 1500px) {
  .apropos-hello {
    margin-left: 10%;
  }
  
  .apropos-pres {
    padding-left: 15%;/* margin-left: 15%;*/
  }
}
@media screen and (max-width: 1000px) {
  .a-propos-parallax {
    flex-direction: column;
    height: auto;
    padding: 50px 0;
  }
  .a-propos-parallax .a-propos-parallax-circles {
    position: relative;
    min-height: 430px;
  }
  .apropos-hello {
    width: 50%;
    max-width: 410px;
    height: auto;
    margin-bottom: clamp(10px, 3vw, 20px);
  }
  .apropos-pres {
    width: 100%;
  }
  .apropos-pres img {
    width: 60%;
    max-width: 640px;
    height: auto;
  }
  .a-propos-parallax .a-propos-parallax-circles {
    top: 9%;
    right: unset;
    width: 100%;
    --ratio: .85;
  }
  .a-propos-parallax .a-propos-parallax-circles img {
    margin: 0 auto;
    right: 0;
  }
  .fre-body {
    z-index: 3;
    left: min(100px, calc(25vw * var(--ratio)));
    width: min(200px, calc(50vw * var(--ratio)));
    top: min(30px, calc(7.5vw * var(--ratio)));
  }
  .blue-circle {
    z-index: 2;
    width: min(280px, calc(70vw * var(--ratio)));
    top: min(180px, calc(45vw * var(--ratio)));
    left: min(20px, calc(5vw * var(--ratio)));
  }
  .white-circle {
    z-index: 1;
    width: min(400px, calc(100vw * var(--ratio)));
    top: min(80px, calc(20vw * var(--ratio)));
    left: 0;
  }
}
@media screen and (max-width: 650px) {
  .a-propos-parallax .apropos-qualities {
    font-size:18px;
    line-height: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(12px, 3vw, 24px);
  }
}

.blue-a-propos {
  width: 100%;
  height: 100vh;
  background-color: blue;
  position: relative;
  z-index: 1;
  left: 100vw;
}