@charset "UTF-8";
/* ----------------------------------------------------------------
	Import
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
    Fonts
-----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* ----------------------------------------------------------------
	Variables
-----------------------------------------------------------------*/
:root {
  --container-min: 992px;
  --container-max: 1260px;
  --container: clamp(var(--container-min), 92vw, var(--container-max));
  --unit: 1rem;
}

/* -------------------- Mapping font -------------------- */
/* ----------------------------------------------------------------
	Mixins
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
   Réglages globaux
-----------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  font-family: "inter-variable", sans-serif;
  color: #0F2781;
  line-height: 145%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #0F2781;
  color: #F5F1E5;
  text-shadow: none;
}

[class$=__container] {
  width: 100svw;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0px 25px;
}

[id] {
  scroll-margin-top: 150px;
}

picture {
  display: block;
  width: 100%;
}
picture img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  border: none;
}

a {
  cursor: pointer;
  display: inline-block;
  text-decoration: transparent;
  color: #0F2781;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotateInfinite {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* -------------------- Global fonts -------------------- */
.title, .title--medium {
  font-family: "monotalic", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: clamp(2em, 8vw, 52px);
  font-weight: 800;
  line-height: 120%;
}
.title span, .title--medium span {
  position: relative;
  display: block;
  font-size: clamp(2em, 8vw, 64px);
  padding-top: 5px;
  letter-spacing: -6%;
}
@media only screen and (min-width: 992px) {
  .title span:before, .title--medium span:before {
    content: "";
    position: absolute;
    top: -100px;
    right: -10%;
    width: 100px;
    height: 100px;
    background-image: url("../images/coeur-outline.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .title span:before, .title--medium span:before {
    right: 10%;
  }
}
.title--medium {
  font-size: clamp(2em, 6vw, 36px);
  line-height: 110%;
  margin-bottom: 25px;
}

.mono {
  font-family: "monotalic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -6%;
}

.smaller {
  display: block;
  font-size: 14px;
  padding-bottom: 15px;
  margin-top: -15px;
}

ul li {
  position: relative;
  list-style: none;
  padding-left: 35px;
  margin-bottom: 15px;
  font-weight: 800;
}
ul li:before {
  content: "";
  position: absolute;
  height: 100%;
  aspect-ratio: 1/1;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  background-image: url("../images/coeur-mauve.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}

/* Document
 * ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
 * ========================================================================== */
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Correct the inheritance of border color in Firefox.
 * 3. Show the overflow in Edge 18- and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  color: inherit; /* 2 */
  height: 0; /* 1 */
  overflow: visible; /* 3 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
table {
  border-color: inherit; /* 1 */
  text-indent: 0; /* 2 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.primary-btn {
  position: relative;
  transition: 0.2s ease-in-out;
  font-family: "monotalic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 800;
  display: inline-block;
  background: #F5F1E5;
  padding: 15px 60px 15px 20px;
  border-radius: 50px;
  border: 1px solid transparent;
}
.primary-btn:before {
  content: "";
  position: absolute;
  height: 80%;
  aspect-ratio: 1/1;
  background-color: #D7A6FF;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  border-radius: 100%;
}
.primary-btn:after {
  content: "";
  position: absolute;
  height: 50%;
  aspect-ratio: 1/1;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  background-image: url("../images/coeur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}

.lr {
  position: relative;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: -50px;
}
.lr:first-child {
  margin-top: initial;
  border-top-left-radius: initial;
  border-top-right-radius: initial;
}
.lr__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
  padding: 100px 0px 150px;
}
@media only screen and (min-width: 992px) {
  .lr__wrapper {
    flex-direction: row;
    padding: 125px 0px 150px;
  }
}
.lr__hero {
  background-color: #F3F228;
}
.lr__hero .lr__wrapper {
  height: 100%;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .lr__hero .lr__wrapper {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .lr__hero .lr__wrapper {
    padding-bottom: 150px;
  }
}
.lr__hero .lr__wrapper .content {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) {
  .lr__hero .lr__wrapper .content {
    padding-top: 150px;
  }
}
.lr__hero .lr__wrapper .margaux-img {
  position: relative;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .lr__hero .lr__wrapper .margaux-img {
    width: 50%;
    right: -25px;
  }
}
@media only screen and (min-width: 1200px) {
  .lr__hero .lr__wrapper .margaux-img:before {
    content: "";
    position: absolute;
    bottom: 25px;
    left: -150px;
    width: 75px;
    height: 75px;
    background-image: url("../images/fleur.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
  }
}
.lr__hero .lr__wrapper .margaux-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.lr__hero--footer {
  background-color: #D7A6FF;
}
.lr__hero--footer .footer-img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
@media only screen and (min-width: 992px) {
  .lr__hero--footer .footer-img {
    width: 50%;
  }
}
.lr__hero--footer .footer-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.lr__white {
  background-color: #F5F1E5;
}
@media only screen and (min-width: 992px) {
  .lr__white h2:before {
    content: "";
    position: absolute;
    top: -25px;
    right: -125px;
    width: 125px;
    height: 125px;
    background-image: url("../images/nuage.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .lr__white h2:before {
    right: 0px;
  }
}
.lr__mauve {
  background-color: #D7A6FF;
}
@media only screen and (min-width: 992px) {
  .lr__mauve h2:before {
    content: "";
    position: absolute;
    top: -25px;
    right: -125px;
    width: 125px;
    height: 125px;
    background-image: url("../images/etoile.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .lr__mauve h2:before {
    right: 0px;
  }
}
.lr__primary {
  background-color: #0F2781;
  color: #D7A6FF;
}
.lr__primary ul li:before {
  background-image: url("../images/coeur-yellow.svg");
}
.lr__bluepale {
  background-color: #3F5ACB;
  color: #F5F1E5;
}
.lr__bluepale ul li:before {
  background-image: url("../images/coeur-bleu-claire.svg");
}
@media only screen and (min-width: 992px) {
  .lr__bluepale h2:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -125px;
    width: 125px;
    height: 125px;
    background-image: url("../images/soleil.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
  }
}
.lr__yellow {
  background-color: #F3F228;
}
.lr .content {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .lr .content {
    width: 50%;
  }
}
.lr .content .title {
  padding-bottom: 15px;
}
.lr .content p {
  padding: 15px 0px;
}
@media only screen and (min-width: 992px) {
  .lr .content p {
    max-width: 500px;
  }
}
.lr .content a {
  text-decoration: underline;
  font-weight: 800;
}
.lr .content ul {
  padding: 15px 0px 0px;
}
@media only screen and (min-width: 992px) {
  .lr .content .mono {
    max-width: 460px;
  }
}
.lr .content--squarre {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: fit-content;
  padding: 40px 50px;
  border-radius: 100px;
}
@media only screen and (min-width: 992px) {
  .lr .content--squarre {
    max-width: 375px;
  }
}
.lr .content--squarre__primary {
  background-color: #0F2781;
  color: #F3F228;
}
.lr .content--squarre__mauve {
  background-color: #D7A6FF;
}
.lr .content--squarre__jaune {
  background-color: #F3F228;
  color: #0F2781;
}
.lr .content--squarre__green {
  position: relative;
  background-color: #9DFFD8;
  color: #0F2781;
}
@media only screen and (min-width: 992px) {
  .lr .content--squarre__green:before {
    content: "";
    position: absolute;
    top: -100px;
    left: 25px;
    width: 100px;
    height: 100px;
    background-image: url("../images/nuage.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
  }
}
.lr .content--squarre .icone {
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  margin-bottom: 25px;
}
.lr .img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  z-index: 1;
  max-width: 500px;
}
@media only screen and (min-width: 992px) {
  .lr .img {
    width: 50%;
    aspect-ratio: 14/16;
    max-width: initial;
  }
}
.lr .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.soulignement {
  max-width: 450px;
}

.loader {
  z-index: 100;
  color: #fff;
  width: 100%;
  height: 100dvh;
  position: fixed;
  inset: 0% 0% auto;
}

.loader__bg {
  background-color: #0F2781;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.loader__container {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.loader__bg-bar {
  z-index: 1;
  transform-origin: 0%;
  transform-style: preserve-3d;
  background-color: #D7A6FF;
  width: 100%;
  height: 0.5em;
  position: absolute;
  inset: auto 0% 0%;
  transform: scale3d(0, 1, 1);
}

.loader__logo-wrap {
  justify-content: center;
  align-items: center;
  width: 12em;
  height: 3em;
  display: flex;
  position: relative;
}

.loader__logo-item {
  width: 100%;
  position: absolute;
}

.loader__logo-item.is--base {
  opacity: 0.2;
}

.loader__logo-item.is--top {
  -webkit-clip-path: inset(0% 100% 0% 0%);
  clip-path: inset(0% 100% 0% 0%);
}

.loader__logo-img {
  width: 100%;
  display: block;
}

[data-load-reset] {
  opacity: 0;
}

/****
Basic include to use

&.animate {}
@include when-visible{}

@include anim(fadeup, $anim-duration, $anim-delay);
@include anim(fadeup, $anim-duration, ($anim-delay * 2));
@include foreach-anim(fadeup, $anim-duration, 0.05s, 8, .2s);

****/
footer {
  width: 100svw;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0px 25px;
}
footer .copy-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 25px 0px;
  gap: 5px;
}
@media only screen and (min-width: 768px) {
  footer .copy-info {
    flex-direction: row;
  }
}
footer .copy-info p, footer .copy-info a {
  font-size: 14px;
  font-weight: 600;
}
footer .copy-info a {
  text-decoration: underline;
  font-weight: 800;
}

.header {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100svw;
  z-index: 100;
  transition: 0.2s ease-in-out;
}
.header__container {
  transition: 0.2s ease-in-out;
}
.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.active-scroll {
  top: 0px;
  padding: 25px 0px 15px;
  background-color: #F5F1E5;
  transition: 0.2s ease-in-out;
}
@media only screen and (min-width: 480px) {
  .header.active-scroll {
    background-color: transparent;
  }
}
.header.active-scroll .header__container {
  width: 100svw;
  max-width: 96svw;
  margin: 0 auto;
  padding: 0px 25px;
  transition: 0.2s ease-in-out;
}
.header a {
  display: block;
}
.header .logo {
  display: block;
  width: 100px;
}
@media only screen and (min-width: 768px) {
  .header .logo {
    width: 115px;
  }
}

.legal {
  width: 100svw;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0px 25px;
}
.legal h1,
.legal h2,
.legal h3 {
  padding-top: 50px;
}
.legal p {
  max-width: 800px;
}

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