@charset "UTF-8";
/**
 * FEUILLE DE STYLE DE BASE
 **/
/**
 * VARIABLES SASS
 */
/**
 * MIXINS
 **/
/**
 * RESET DES STYLES
 **/
/* Box sizing universel */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Suppression des marges par défaut */
* {
  margin: 0;
  padding: 0;
}

/* 1rem = 10px */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

/* Body */
body {
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Images et médias */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Formulaires */
input,
button,
textarea,
select {
  font: inherit;
}

/* Boutons */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Listes */
ul,
ol {
  list-style: none;
}

/* Liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * FEUILLE DE STYLE DE BASE
 **/
/**
 * STYLES DE BASE
 **/
body {
  width: 90%;
  margin-inline: auto;
  font-family: "plus-jakarta-sans", sans-serif;
  color: #6F1BD3;
  font-size: 1.6rem;
}
@media screen and (1440px <= width) {
  body {
    width: 94%;
    font-size: 2rem;
  }
}

main {
  margin-block: 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (768px <= width) {
  main {
    margin-block: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem 4rem;
  }
}
@media screen and (1200px <= width) {
  main {
    margin-inline: auto;
    width: 84%;
  }
}
@media screen and (1440px <= width) {
  main {
    grid-template-columns: 50% 1fr;
    gap: 7rem;
    max-width: 125rem;
  }
}
@media screen and (1920px <= width) {
  main {
    margin-block: 12rem;
  }
}

/**
 * TYPOGRAPHIE
 **/
@font-face {
  font-family: "plus-jakarta-sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/plus_jakarta_sans__variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/**
 * FEUILLE DE STYLE DE BASE
 **/
/**
 * STYLES DE BASE
 **/
/**
 * TITRES
 **/
h1,
.h1,
h2,
.h2 {
  font-family: "plus-jakarta-sans", sans-serif;
}

h1,
.h1 {
  font-weight: 800;
}

h2,
.h2 {
  font-size: 2rem;
  line-height: 120%;
}
@media screen and (1440px <= width) {
  h2,
  .h2 {
    font-size: 2.8rem;
  }
}

/**
 * FEUILLE DE STYLE DE BASE
 **/
header {
  position: relative;
  padding-top: 0px;
}
header::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 5vw;
  background: #6F1BD3;
  z-index: -1;
  margin-inline: -5.56%;
  translate: 0 -5vw;
}
@media screen and (768px <= width) {
  header::before {
    inset: 0;
  }
}
@media screen and (1440px <= width) {
  header::before {
    margin-inline: -3.19%;
  }
}
header .logo {
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 5vw;
}
@media screen and (1440px <= width) {
  header .logo {
    margin-top: 3vw;
  }
}
header .logo::before, header .logo::after {
  content: "";
  flex-grow: 1;
  background: #AC89FF;
  border-radius: 1.5rem 1.5rem 0 0;
}
@media screen and (1200px <= width) {
  header .logo::before, header .logo::after {
    border-radius: 2rem 2rem 0 0;
  }
}
header .logo .image-wrapper {
  position: relative;
  background-color: #AC89FF;
  width: 10rem;
  padding: 1rem;
}
@media screen and (768px <= width) {
  header .logo .image-wrapper {
    width: 12rem;
  }
}
@media screen and (1200px <= width) {
  header .logo .image-wrapper {
    width: 16rem;
  }
}
@media screen and (1440px <= width) {
  header .logo .image-wrapper {
    width: 25rem;
    height: 10.5rem;
  }
}
header .logo .image-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #6F1BD3;
  border-radius: 0 0 1.5rem 1.5rem;
}
@media screen and (1200px <= width) {
  header .logo .image-wrapper::before {
    border-radius: 0 0 2rem 2rem;
  }
}
header .logo img {
  position: relative;
  z-index: 10;
}
@media screen and (1440px <= width) {
  header .logo img {
    width: 18rem;
    margin-inline: auto;
    top: 50%;
    translate: 0 -50%;
  }
}
header .content {
  position: relative;
}
@media screen and (560px <= width) {
  header .content {
    margin-bottom: 4rem;
    margin-inline: auto;
    max-width: 46.8rem;
  }
}
@media screen and (768px <= width) {
  header .content {
    max-width: 62.8rem;
  }
}
@media screen and (1200px <= width) {
  header .content {
    max-width: 70rem;
  }
}
@media screen and (1440px <= width) {
  header .content {
    width: 80%;
    max-width: 114rem;
  }
}
header .content-wrapper {
  background: #AC89FF;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 4rem 8%;
}
@media screen and (1200px <= width) {
  header .content-wrapper {
    border-radius: 0 0 2rem 2rem;
  }
}
@media screen and (1440px <= width) {
  header .content-wrapper {
    padding-block: 7rem 13rem;
  }
}
header .title {
  line-height: 100%;
  font-size: 6rem;
}
@media screen and (560px <= width) {
  header .title {
    font-size: 7rem;
  }
}
@media screen and (768px <= width) {
  header .title {
    font-size: 9rem;
  }
}
@media screen and (1200px <= width) {
  header .title {
    font-size: 12rem;
  }
}
@media screen and (1440px <= width) {
  header .title {
    font-size: 18rem;
    line-height: 95%;
  }
}
header .title .part {
  display: block;
  color: #E6E6E6;
}
header .title .part:last-of-type {
  color: inherit;
  position: relative;
  isolation: isolate;
  display: inline-block;
}
header .title .part:last-of-type::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999rem;
  background: #E6E6E6;
  z-index: -1;
  width: 112%;
  height: 0.8em;
  rotate: -4.5deg;
  translate: -50% -50%;
}
@media screen and (1440px <= width) {
  header .title .part:last-of-type::before {
    translate: -50% calc(-50% + 1.2rem);
  }
}
header .description {
  font-size: 1.2rem;
  color: #E6E6E6;
  width: 75%;
  margin: 4rem 0 2rem auto;
  position: relative;
  max-width: 20rem;
  line-height: 120%;
}
@media screen and (560px <= width) {
  header .description {
    position: absolute;
    top: 50%;
    right: 0;
    margin-block: 0;
    translate: 0 -50%;
  }
}
@media screen and (768px <= width) {
  header .description {
    width: 48%;
    font-size: 1.4rem;
    max-width: 28rem;
  }
}
@media screen and (1440px <= width) {
  header .description {
    font-size: 2.2rem;
    width: 40%;
    max-width: none;
    padding-right: 1rem;
  }
}
header .description::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/curve01.svg");
  background-size: 4rem;
  width: 4rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  bottom: 0;
  translate: 25% 50%;
}
@media screen and (1440px <= width) {
  header .description::after {
    width: 7rem;
    height: 4.8rem;
    background-size: 7rem;
    translate: -35% 65%;
  }
}

/**
 * FEUILLE DE STYLE DE BASE
 **/
footer {
  background: #6F1BD3;
  width: 111.12%;
  margin-inline: -5.56%;
  padding-block: 3rem;
  position: relative;
}
@media screen and (1440px <= width) {
  footer {
    margin-inline: -3.19%;
    width: 106.38%;
    padding-block: 7rem;
  }
}
footer::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  translate: 0 -100%;
  z-index: -1;
  background-color: #6F1BD3;
  top: 0;
  left: 0;
}
footer .logo {
  margin-inline: auto;
  width: 16rem;
}
@media screen and (1440px <= width) {
  footer .logo {
    width: 36rem;
  }
}
footer .logo img {
  width: 100%;
}

/**
 * FEUILLE DE STYLE DE BASE
 **/
.accompagnement {
  background: #FF7031;
  border-radius: 1.5rem;
  color: #ffffff;
  padding: 3rem 8%;
}
@media screen and (768px <= width) {
  .accompagnement {
    margin-block: 0;
  }
}
@media screen and (1440px <= width) {
  .accompagnement {
    border-radius: 2rem;
    padding-block: 6rem;
  }
}
.accompagnement .title {
  font-weight: 400;
  margin-bottom: 3rem;
}
@media screen and (1440px <= width) {
  .accompagnement .title {
    margin-bottom: 4.5rem;
  }
}
.accompagnement .title strong {
  font-weight: 500;
}
.accompagnement li {
  text-transform: uppercase;
  border-bottom: solid 0.1rem #ffffff;
  padding-block: 0.4rem;
}
@media screen and (768px <= width) {
  .accompagnement li {
    padding-block: 1rem;
  }
}
@media screen and (1200px <= width) {
  .accompagnement li {
    padding-block: 1.4rem;
  }
}
.accompagnement li:last-of-type {
  border-bottom: none;
}

/**
 * FEUILLE DE STYLE DE BASE
 **/
.objectif {
  border-radius: 1.5rem;
  color: #6F1BD3;
  padding: 3rem 8% 10vw;
  background: #E6E6E6;
  position: relative;
}
@media screen and (768px <= width) {
  .objectif {
    margin-block: 0;
    padding-bottom: 8rem;
  }
}
@media screen and (1440px <= width) {
  .objectif {
    border-radius: 2rem;
    padding-top: 6rem;
    padding-left: 12%;
  }
}
.objectif::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/curve02.svg");
  background-size: 8rem;
  width: 8rem;
  aspect-ratio: 0.96;
  left: 50%;
  top: 0;
  translate: -50% calc(-4rem - 25%);
  background-repeat: no-repeat;
}
@media screen and (768px <= width) {
  .objectif::before {
    left: 0;
    top: 50%;
    translate: calc(-4rem - 25%) -50%;
  }
}
@media screen and (1440px <= width) {
  .objectif::before {
    width: 13rem;
    background-size: 13rem;
    translate: calc(-7rem - 25%) -50%;
  }
}
.objectif .title {
  margin-bottom: 3rem;
}
@media screen and (1440px <= width) {
  .objectif .title {
    margin-bottom: 4.5rem;
  }
}
.objectif .title span {
  color: #E6E6E6;
  position: relative;
  z-index: 20;
  isolation: isolate;
}
.objectif .title span::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: #FF7031;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 80%;
  border-radius: 999rem;
  rotate: -1.6deg;
  translate: -50% -38%;
}
.objectif ul {
  list-style: disc;
  padding-left: 8%;
}
.objectif li {
  padding-block: 0.5rem;
}
.objectif li:first-of-type {
  padding-top: 0;
}
.objectif li:last-of-type {
  padding-bottom: 0;
}

/**
 * FEUILLE DE STYLE DE BASE
 **/
.appel-decouverte {
  order: 4;
}
@media screen and (768px <= width) {
  .appel-decouverte {
    margin-block: 0;
    order: 3;
  }
}
.appel-decouverte .title {
  margin-bottom: 3rem;
}
.appel-decouverte .title strong {
  font-weight: 500;
}
.appel-decouverte p {
  margin-bottom: 2rem;
  line-height: 124%;
}
@media screen and (1440px <= width) {
  .appel-decouverte p {
    margin-bottom: 6rem;
  }
}
.appel-decouverte .button {
  width: 75%;
  text-align: center;
  max-width: 32rem;
}
@media screen and (1440px <= width) {
  .appel-decouverte .button {
    width: auto;
    max-width: 35rem;
  }
}

.portrait {
  rotate: 10deg;
  order: 3;
  margin-block: -4rem 2rem;
}
@media screen and (768px <= width) {
  .portrait {
    order: 4;
    margin-block: 0;
    translate: 0 -6rem;
  }
}
@media screen and (1440px <= width) {
  .portrait {
    translate: 0 -7rem;
  }
}

/**
 * FEUILLE DE STYLE DE BASE
 **/
.contact-form {
  order: 5;
  grid-column: span 2;
  position: relative;
  padding: 3rem 5%;
  background: #E6E6E6;
  margin-inline: -5.56%;
  width: 111.12%;
}
@media screen and (768px <= width) {
  .contact-form {
    padding: 4rem 8%;
    margin-inline: 0;
    width: 100%;
    border-radius: 1.5rem;
  }
}
@media screen and (1440px <= width) {
  .contact-form {
    border-radius: 2rem;
    padding: 8rem 8% 6rem;
  }
}
.contact-form .title {
  margin-bottom: 3rem;
}
@media screen and (768px <= width) {
  .contact-form .title {
    text-align: center;
    margin-bottom: 6rem;
  }
}
@media screen and (1440px <= width) {
  .contact-form .title {
    margin-bottom: 8rem;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (1440px <= width) {
  .form {
    gap: 1.6rem;
    width: 80%;
    margin-inline: auto;
    max-width: 114rem;
  }
}

label {
  display: none;
}

fieldset {
  border: none;
}

input,
textarea,
select {
  outline: none;
  border: solid 0.1rem #6F1BD3;
  width: 100%;
  border-radius: 999rem;
  background: #E6E6E6;
  padding: 1rem 2rem;
  color: #6F1BD3;
}
@media screen and (1440px <= width) {
  input,
  textarea,
  select {
    padding: 2.1rem 3.2rem;
  }
}

input::placeholder,
textarea::placeholder {
  color: #AC89FF;
  text-transform: uppercase;
}

select {
  color: #6F1BD3;
  text-transform: uppercase;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../img/circle-arrow-down.svg");
  background-size: 2rem;
  background-repeat: no-repeat;
  background-position: right 1.4rem top 50%;
}
@media screen and (1440px <= width) {
  select {
    background-size: 3.8rem;
    background-position: right 2.2rem top 50%;
  }
}
select:invalid {
  color: #AC89FF;
}

option {
  color: #6F1BD3;
}

textarea {
  min-height: 28rem;
  border-radius: 2.3rem;
}
@media screen and (1440px <= width) {
  textarea {
    border-radius: 5rem;
  }
}

button,
.button {
  display: inline-block;
  font-size: 1.6rem;
  color: #ffffff;
  background: #AC89FF;
  border-radius: 999rem;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
}
@media screen and (1440px <= width) {
  button,
  .button {
    padding: 1rem 3rem;
  }
}

button {
  width: fit-content;
  margin-inline: auto;
  margin-block: 1rem;
}
@media screen and (768px <= width) {
  button {
    margin-block: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */
