@charset "UTF-8";
/**
 * @author Prenom Nom courriel
 * @todo Lier les modules avec des instructions @import
 * @todo Compléter selon l'énoncé de l'exercice
 */
/*
 * ------------------
 * TABLE DES MATIERES
 * ------------------
 * Librairies
 ** Normalize
 * UTILITAIRES
 ** Variables
 ** Mixins
 * BASE
 ** Typographie
 ** Hyperliens
 ** Boutons
 * MODULES
 ** gds - Styles généraux du Guide de styles
 ** palette - Palette de couleurs
 ** listeInteractivite - Éléments interactifs
 */
.page__conteneur {
  margin: 0 auto;
  width: 95%;
}
@media (min-width: 821px) {
  .page__conteneur {
    max-width: 1500px;
    width: 80%;
  }
}

main {
  margin: 60px 0 150px 0;
}
@media (min-width: 700px) {
  main {
    margin: 50px 0 150px 0;
  }
}

/****** Librairies ******/
/** Normalize **/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 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 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/**** UTILITAIRES ****/
/** Variables **/
/**
* @author Prenom Nom courriel
* @todo Importer la fonte Futura
* @todo Personnaliser les variables selon les spécifications du guide visuel
*       Certaines variables devront être définies par une fonction de coloration
* @todo Compléter selon l'énoncé de l'exercice
* @todo Utiliser le sélecteur & pour les sélecteurs des différentes couleurs
*/
/** Polices de caractères **/
@font-face {
  font-family: Futura, sans-serif;
  src: url("../fonts/Futura.ttc") format("truetype");
}
/** Palette de couleurs **/
/* Couleurs de base */
/** Points de rupture **/
/** Mixins **/
/**
* @author Ève Février - efevrier@cegep-ste-foy.qc.ca
* @author Yves Hélie - yves.helie@cegep-ste-foy.qc.ca
*/
/**
 * ----------------------------
 * TABLE DES MATIERES - MIXINS
 * ----------------------------
 * Utilitaires de base
 ** Box sizing
 ** Clearfix
 * Accessibilité
 * Typographie
 */
/********** Utilitaires de base **********/
/** Box sizing **/
/* Clearfix */
/********* Accessibilité *********/
.visuallyhidden,
.screen-reader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus,
.screen-reader-only.focusable:active,
.screen-reader-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/******** Typographie *********/
/** Menu mobile **/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
@media (min-width: 650px) {
  .hamburger {
    display: none;
  }
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/****** BASE ******/
/** Typographie **/
/**
* @author Prenom Nom courriel
* @todo Préciser l’interlignage sur le body pour l’écran large
* @todo Utiliser le mixin fontSize pour définir les tailles de polices
* @todo Utiliser une variable pour la media query de la règle body
*/
/**** Typographie responsive ****/
@font-face {
  font-family: "Poppins Regular";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins Medium";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins SemiBold";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins Bold";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}
html {
  font-size: 62.5%;
}

p {
  margin: 0;
}

body {
  font-family: "Poppins Regular", sans-serif;
  font-size: 1.6rem;
  color: #152E77;
  line-height: 1.375; /* facteur multiplicateur de la taille de la police 1.375x16=22 */
}
@media (min-width: 330px) {
  body {
    font-size: 1.8rem;
  }
}

h1 {
  font-family: "Poppins Bold", sans-serif;
  font-size: 33px;
  font-size: 3.3rem;
  font-weight: 700;
  color: #2944AC;
  background: linear-gradient(51deg, rgb(39, 69, 184) 0%, rgb(3, 23, 54) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Safari */
  background-clip: text;
  margin: 0;
}
@media (min-width: 600px) {
  h1 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
@media (min-width: 1115px) {
  h1 {
    font-size: 50px;
    font-size: 5rem;
  }
}

h2 {
  color: #2944AC;
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "Poppins SemiBold", sans-serif;
  margin: 0;
}
@media (min-width: 1115px) {
  h2 {
    font-size: 40px;
    font-size: 4rem;
  }
}

h3, .h3 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 2.2rem;
  margin: 0;
}
@media (min-width: 1115px) {
  h3, .h3 {
    font-size: 3rem;
  }
}

h4, .h4, .titre__footer {
  font-size: 20px;
  font-size: 2rem;
  font-family: "Poppins Bold", sans-serif;
}

.role {
  font-size: 1.4rem;
}

small {
  color: black;
}

/** Hyperliens **/
/**
* @author Prenom Nom courriel
* @todo Compléter selon l'énoncé de l'exercice
*/
.hyperlien--visited {
  color: #112661;
}
.hyperlien--hover {
  color: #060c20;
  text-decoration: underline;
}
.hyperlien--active {
  color: #152E77;
  text-decoration: underline;
}

a {
  color: #2944AC;
}
a:hover {
  color: #0C173A;
}

.lien {
  padding: 0;
  text-decoration: none;
  color: #152E77;
  font-family: "Poppins Medium", sans-serif;
  transition: all 0.2s ease-in;
}
.lien:hover {
  color: #2944AC;
  text-decoration: underline;
  transition: all 0.3s ease-out;
}
.lien:focus {
  outline: 2px solid #0B1CB3;
}

.item__lien {
  padding: 5px 15px;
  border-radius: 3rem;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.item__lien:hover, .item__lien:focus, .item__lien:active {
  background-color: #EFF3FD;
  transition: all 0.1s ease-in;
}
.item__lien:focus {
  outline: 2px solid #0B1CB3;
}

.entete .logo {
  padding: 10px 10px;
  border-radius: 3rem;
  box-sizing: border-box;
}
@media (min-width: 760px) {
  .entete .logo {
    padding: 10px 30px;
  }
}
.entete .logo:hover, .entete .logo:focus, .entete .logo:active {
  background-color: #EFF3FD;
}
.entete .logo:focus {
  outline: 2px solid #0B1CB3;
}

/** Boutons **/
/**
* @author Prenom Nom courriel
* @todo Compléter selon l'énoncé de l'exercice
*/
.btn__principal {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  height: fit-content;
  color: white;
  background-color: #2944AC;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease-in;
  border: none;
  box-sizing: border-box;
}
.btn__principal i {
  display: flex;
  align-items: center;
}
.btn__principal span {
  width: max-content;
}
.btn__principal:hover, .btn__principal:focus, .btn__principal:active {
  scale: 1.02;
  color: white;
  text-decoration: none;
  background-color: #0C173A;
  transition: all 0.2s ease-out;
}

.btn__secondaire {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 40px;
  border-radius: 3rem;
  border: 3px solid #2944AC;
  text-decoration: none;
  transition: all 0.2s ease-in;
}
.btn__secondaire:hover, .btn__secondaire:focus, .btn__secondaire:active {
  background-color: #D9DFF7;
  transition: all 0.2s ease-out;
}

.boutonFooter {
  width: fit-content;
  background-color: #FFFFFF;
  color: #152E77;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.boutonFooter:hover, .boutonFooter:focus, .boutonFooter:active {
  background-color: #d7e1f8;
  transition: all 0.2s ease-out;
}

.transmettre {
  display: flex;
  margin: auto;
  color: white;
  background-color: #152E77;
  padding: 10px 30px;
  border-radius: 30px;
}

/****** MODULES ******/
.aller-au-contenu-principal {
  top: -50%;
  position: absolute;
  padding: 1rem;
  background-color: #2944AC;
  color: #EFF3FD;
  opacity: 0;
  z-index: 30;
}

.aller-au-contenu-principal:focus {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

header .entete {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
  background-color: white;
  transition: height 0.3s ease-out;
}
header .entete .entete__contenu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 650px) {
  header .entete .entete__contenu {
    justify-content: center;
  }
}
@media (min-width: 1250px) {
  header .entete .entete__contenu {
    justify-content: flex-start;
  }
}
header .entete.is-active {
  position: fixed;
  width: 100%;
  justify-content: flex-start;
  flex-direction: column;
  top: 0;
  left: 0;
  height: 100vh;
  box-sizing: border-box;
  transition: height 0.5s ease-in;
  z-index: 20;
  touch-action: none;
}
header .entete.is-active .entete__contenu {
  width: 95%;
}
@media (min-width: 320px) {
  header .entete {
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 650px) {
  header .entete {
    gap: 20px;
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }
}
@media (min-width: 1250px) {
  header .entete {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
}
header .logos {
  gap: 2rem;
  display: flex;
}
header .logos img {
  height: 30px;
  width: auto;
}
@media (min-width: 650px) {
  header .logos img {
    height: 50px;
  }
}
header .nav__item {
  width: max-content;
  display: flex;
  color: #18275B;
}
header .nav__list {
  display: none;
  align-items: center;
  gap: 1rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: height 0.3s ease-out;
}
@media (min-width: 650px) {
  header .nav__list {
    display: flex;
  }
}
header .nav__list--mobile {
  display: flex;
  scale: 1.5;
}
@media (min-width: 650px) {
  header .nav__list--mobile {
    display: none;
  }
}
header .nav__list--mobile.is-active {
  display: grid;
  width: 100%;
  height: 100%;
  max-height: 30rem;
  place-content: space-around;
  padding: 0;
  box-sizing: border-box;
  place-items: center;
  margin: auto 0;
  transition: height 0.5s ease-in;
}
@media (min-width: 650px) {
  header .nav__list--mobile.is-active {
    display: none;
  }
}
header .hidden {
  display: none;
}

footer {
  margin: 15px auto;
  color: white;
}
footer .logoFooter {
  width: 100%;
  max-width: 200px;
}

.contenu {
  display: grid;
  gap: 30px;
  padding: 40px;
  background-color: #152E77;
  border-radius: 20px;
  box-sizing: border-box;
  grid-template-areas: "coordonnes" "logo" "btn" "credit";
}
@media (min-width: 850px) {
  .contenu {
    grid-template-areas: "coordonnes coordonnes coordonnes logo logo logo" "credit credit credit btn btn btn";
  }
}
@media (min-width: 1100px) {
  .contenu {
    grid-template-areas: "coordonnes coordonnes coordonnes logo logo logo" "credit credit credit credit btn btn";
  }
}
.contenu h4 {
  margin: 0;
}
.contenu .liste-logo {
  grid-area: logo;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: center;
  list-style: none;
}
@media (min-width: 700px) {
  .contenu .liste-logo {
    justify-content: flex-end;
  }
}
@media (min-width: 1100px) {
  .contenu .liste-logo {
    flex-direction: row;
  }
}
.contenu a {
  padding: 10px;
  display: flex;
  border-radius: 2rem;
}
.contenu a:hover {
  background-color: #2944AC;
}
.contenu .coordonnees__telephone {
  display: flex;
  gap: 8px;
  padding: 10px;
}
.contenu .btn__principal {
  grid-area: btn;
  width: fit-content;
  height: fit-content;
  align-self: center;
  justify-self: center;
  background-color: #EFF3FD;
  color: #2944AC;
}
.contenu .btn__principal:hover {
  background-color: #C9D1F2;
}
@media (min-width: 850px) {
  .contenu .btn__principal {
    order: 1;
    justify-self: flex-end;
  }
}

.coordonnees__conteneur {
  margin: 0 auto;
  width: fit-content;
  grid-area: coordonnes;
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.coordonnees__conteneur a {
  text-decoration: none;
  color: white;
}
.coordonnees__conteneur h4 {
  width: fit-content;
}
@media (min-width: 850px) {
  .coordonnees__conteneur {
    margin: unset;
  }
}

.coordonnees {
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1300px) {
  .coordonnees {
    flex-direction: row;
  }
}
.coordonnees .adresse a {
  max-width: 30rem;
  display: flex;
  gap: 8px;
}
.coordonnees .adresse a i {
  padding: 5px 0;
}

.joindre {
  display: flex;
  flex-direction: column;
}
.joindre a {
  height: min-content;
  display: flex;
  align-items: center;
  gap: 8px;
}

.credits {
  grid-area: credit;
  display: flex;
  gap: 5px;
  flex-direction: column-reverse;
  align-items: center;
}
.credits p {
  width: 100%;
}
@media (min-width: 760px) {
  .credits {
    align-items: flex-start;
  }
}

.banniere {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 100px;
  column-gap: 40px;
}
@media (min-width: 760px) {
  .banniere {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 200px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.banniere .texte {
  width: 100%;
  max-width: 60rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.banniere .texte p {
  font-size: 2.2rem;
}
.banniere img {
  width: 100%;
  max-width: 500px;
}

.page__accueil {
  display: flex;
  flex-direction: column;
}
.page__accueil .liste__annonces {
  display: grid;
  margin: 0 0 50px 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}
.page__accueil .liste__annonces .annonce {
  margin: 0 auto;
  width: fit-content;
  align-items: center;
  display: flex;
  gap: 20px;
  padding: 20px 30px;
  border-radius: 3rem;
  background-color: #0C173A;
  color: white;
}
.page__accueil .liste__annonces .annonce i {
  font-size: 30px;
}
.page__accueil .liste__annonces .annonce p {
  width: fit-content;
  max-width: 70rem;
}
.page__accueil .liste__annonces .annonce .annonce__lien {
  color: white;
  font-family: "Poppins Medium", sans-serif;
}
.page__accueil .liste__annonces .annonce .annonce__lien:hover, .page__accueil .liste__annonces .annonce .annonce__lien:active, .page__accueil .liste__annonces .annonce .annonce__lien:focus {
  color: #EFF3FD;
}
.page__accueil .liste__annonces .annonce svg {
  display: flex;
  width: 40px;
  aspect-ratio: 1/1;
}
.page__accueil section {
  margin: 50px 0;
}
.page__accueil .section-banniere__conteneur {
  margin: 200px 0 50px 0;
}
@media (min-width: 1000px) {
  .page__accueil .section-banniere__conteneur {
    margin: 0;
  }
}
.page__accueil .section-banniere__conteneur .section__banniere {
  display: flex;
  width: 100%;
  background-color: #EFF3FD;
  border-radius: 3rem;
  position: relative;
}
@media (min-width: 1000px) {
  .page__accueil .section-banniere__conteneur .section__banniere {
    width: 70%;
  }
}
.page__accueil .section-banniere__conteneur .section__banniere img {
  width: 80%;
  position: absolute;
  top: 20%;
  right: 50%;
  transform: translate(50%, -150%);
}
@media (min-width: 560px) {
  .page__accueil .section-banniere__conteneur .section__banniere img {
    transform: translate(50%, -120%);
    width: 60%;
    align-self: center;
  }
}
@media (min-width: 1000px) {
  .page__accueil .section-banniere__conteneur .section__banniere img {
    transform: translate(0%, 0%);
    width: 45%;
    top: unset;
    right: -40%;
  }
}
@media (min-width: 1300px) {
  .page__accueil .section-banniere__conteneur .section__banniere img {
    width: 40%;
    right: -35%;
  }
}
.page__accueil .section-banniere__conteneur .section__banniere .texte {
  padding: 50px;
}
@media (min-width: 1200px) {
  .page__accueil .section-banniere__conteneur .section__banniere .texte {
    padding: 100px;
  }
}
.page__accueil .section__service {
  display: grid;
  place-items: center;
  gap: 30px;
}
.page__accueil .services {
  width: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 100px;
}
@media (min-width: 500px) {
  .page__accueil .services {
    flex-direction: row;
    gap: 20px;
  }
}
.page__accueil .services .service {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
@media (min-width: 500px) {
  .page__accueil .services .service {
    max-width: 45%;
  }
}
@media (min-width: 1000px) {
  .page__accueil .services .service {
    max-width: 400px;
  }
}
@media (min-width: 1200px) {
  .page__accueil .services .service {
    max-width: 500px;
  }
}
.page__accueil .services .service .service__presentation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  padding: 4rem;
  border-radius: 3rem;
  background-color: #EFF3FD;
  box-sizing: border-box;
  gap: 20px;
}
@media (min-width: 700px) {
  .page__accueil .services .service .service__presentation {
    min-height: 30rem;
    max-width: 400px;
  }
}
.page__accueil .services .service .service__presentation h3 {
  width: fit-content;
  text-align: center;
}
.page__accueil .services .service .liste__descriptions {
  font-family: "Poppins SemiBold", sans-serif;
  display: grid;
  list-style: none;
  gap: 10px;
}
.page__accueil .services .service .liste__descriptions li::before {
  width: 13px;
  aspect-ratio: 1/1;
  content: "";
  display: inline-block;
  background-image: url(../images/diamond.svg);
  background-repeat: no-repeat;
  margin-right: 5px;
}
.page__accueil .services .service img {
  object-fit: contain;
  width: 80%;
  max-width: 200px;
  aspect-ratio: 1/1;
}
@media (min-width: 1000px) {
  .page__accueil .services .service img {
    max-width: 300px;
  }
}
.page__accueil .section__realisation {
  padding: 50px 15px;
  display: grid;
  place-items: center;
  gap: 30px;
  background-color: #EFF3FD;
  border-radius: 3rem;
}
@media (min-width: 760px) {
  .page__accueil .section__realisation {
    padding: 50px 50px;
  }
}
.page__accueil .section__realisation .realisations {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media (min-width: 760px) {
  .page__accueil .section__realisation .realisations {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page__accueil .section__realisation .realisations .realisation {
  padding: 0;
}
.page__accueil .section__realisation .realisations .realisation a {
  border: 4px solid #cfd8f5;
}
.page__accueil .section__action {
  padding: 150px 50px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 760px) {
  .page__accueil .section__action {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.page__accueil .section__action img {
  width: 50%;
  max-width: 250px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
}
@media (min-width: 760px) {
  .page__accueil .section__action img {
    width: 100%;
  }
}
.page__accueil .section__action h1 {
  width: fit-content;
}
.page__accueil .section__action .action__texte p {
  font-size: 22px;
  font-size: 2.2rem;
  max-width: 70rem;
  min-width: fit-content;
}

.formulaire__div {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 40px;
}
@media (min-width: 800px) {
  .formulaire__div {
    grid-template-columns: auto 1fr;
  }
}

.h1Form {
  margin-bottom: 3rem;
}

.ctn-coordonnees {
  width: 100%;
  height: min-content;
  display: flex;
  flex-direction: column;
  background-color: #EFF3FD;
  padding: 40px;
  border-radius: 3rem;
  gap: 20px;
  box-sizing: border-box;
}
@media (min-width: 760px) {
  .ctn-coordonnees {
    top: 20px;
    display: flex;
    max-width: 40rem;
    flex-direction: column;
    background-color: #EFF3FD;
    position: sticky;
  }
}
.ctn-coordonnees .conteneur__coordonnee {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ctn-coordonnees .adresse-coordonnee {
  align-items: flex-start;
  max-width: 30rem;
}

.ctn-formulaire {
  margin-left: auto;
  width: 100%;
  max-width: 90rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 760px) {
  .ctn-formulaire {
    min-width: 400px;
  }
}

.ctn-texte {
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-radius: 3rem;
  padding: 10px;
  box-sizing: border-box;
  background-color: #EFF3FD;
}
@media (min-width: 380px) {
  .ctn-texte {
    padding: 40px;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
form input[type=text], form input[type=email], form input[type=tel], form textarea {
  height: 40px;
  border-radius: 10px;
  border: 2px solid #152E77;
  box-sizing: border-box;
}
form .conteneur__radio {
  display: flex;
  align-items: center;
  gap: 10px;
}
form input[type=radio] {
  width: 20px;
  aspect-ratio: 1/1;
  scale: 1.3;
}
form input[type=radio]:checked {
  accent-color: #2944AC;
}
form .formulaire__description {
  width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 800px;
  padding: 10px;
}

.introForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h2Form, .pForm, .h3Formulaire {
  margin: 0;
}

.h3Formulaire {
  text-align: left;
  width: 100%;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 601px) {
  .info {
    align-items: center;
  }
}

.votreProjet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 601px) {
  .votreProjet {
    align-items: normal;
  }
}

.nom, .courriel, .titre, .telephone {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.erreur {
  margin: 0;
  color: #b42939;
}

.radio, .champTexte {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-long {
  width: 100%;
  max-width: 50rem;
  height: 20px;
  padding: 10px;
}

.input-moyen {
  width: 100%;
  max-width: 40rem;
  height: 20px;
  padding: 10px;
}

.input-court {
  width: 100%;
  max-width: 30rem;
  height: 20px;
  padding: 10px;
}

.input__titre {
  width: 100%;
  max-width: 500px;
}

.infoForm {
  width: 100%;
  background-color: #EFF3FD;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 30px;
}
@media (min-width: 601px) {
  .infoForm {
    padding: 50px;
  }
}

.unLabel {
  font-family: "Poppins Medium", sans-serif;
}

.input-texte__exemple {
  font-size: 16px;
  font-size: 1.6rem;
}

.h4form {
  margin: 0;
  text-align: center;
}

.page__confirmation {
  display: grid;
  margin: 0 auto;
  width: 100%;
  max-width: 90rem;
  min-height: 50vh;
}

.confirmation__envoi {
  margin: auto;
  width: 100%;
  place-items: center;
  display: grid;
  padding: 40px 20px;
  border-radius: 3rem;
  background-color: #EFF3FD;
  box-sizing: border-box;
  gap: 30px;
}
.confirmation__envoi .confirmation__envoi__titre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 760px) {
  .confirmation__envoi .confirmation__envoi__titre {
    flex-direction: row;
  }
}
.confirmation__envoi .confirmation__envoi__titre .confirmation__envoi__img {
  max-width: 5rem;
}
@media (min-width: 760px) {
  .confirmation__envoi .confirmation__envoi__titre .confirmation__envoi__img {
    max-width: 10rem;
  }
}
.confirmation__envoi p, .confirmation__envoi h1 {
  text-align: center;
}
@media (min-width: 760px) {
  .confirmation__envoi {
    padding: 60px 100px;
  }
}
.confirmation__envoi .confirmation__envoi__delai {
  font-family: "Poppins SemiBold", sans-serif;
}
.confirmation__envoi .texte {
  display: grid;
  place-items: center;
  gap: 20px;
}

.ctnValidation {
  width: 100%;
  display: grid;
}
.ctnValidation .corriger {
  color: #00803c;
}

.erreur {
  display: flex;
  gap: 5px;
  align-items: center;
}

.aPropos__banniere {
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 3rem;
  box-sizing: border-box;
  gap: 40px;
}
@media (min-width: 900px) {
  .aPropos__banniere {
    flex-direction: row;
  }
}
.aPropos__banniere .banniere__img {
  min-width: 35%;
  width: 80%;
}
@media (min-width: 760px) {
  .aPropos__banniere .banniere__img {
    justify-self: flex-end;
    max-width: 400px;
  }
}
.aPropos__banniere__texte {
  max-width: 506px;
}
.aPropos__banniere__h1 {
  text-align: left;
}

.aPropos {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 100px;
}
.aPropos__titre {
  font-size: 21px;
  color: #4B525E;
}
.aPropos__mandat {
  color: #152E77;
  background-color: white;
  width: fit-content;
  padding: 5px 30px;
  border-radius: 3rem;
}
.aPropos__concepteurs {
  display: grid;
  margin: 100px 0;
  gap: 30px;
}
.aPropos__lesConcepteurs {
  display: grid;
  gap: 40px;
}
@media (min-width: 760px) {
  .aPropos__lesConcepteurs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.aPropos__leConcepteur {
  padding: 20px;
  background-color: #EFF3FD;
  justify-content: flex-start;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 900px) {
  .aPropos__leConcepteur {
    padding: 40px;
  }
}
.aPropos__leConcepteur-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aPropos__leConcepteur-limage {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.aPropos__leConcepteur .leConcepteur-lien {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 900px) {
  .aPropos__leConcepteur .leConcepteur-lien {
    margin-top: auto;
    justify-content: flex-start;
    flex-direction: row;
  }
}
.aPropos__leConcepteur .leConcepteur-lien .btn__principal, .aPropos__leConcepteur .leConcepteur-lien .btn__secondaire {
  width: 100%;
  justify-content: center;
  padding: 13px 40px;
  height: unset;
  box-sizing: border-box;
}
@media (min-width: 560px) {
  .aPropos__leConcepteur .leConcepteur-lien .btn__principal, .aPropos__leConcepteur .leConcepteur-lien .btn__secondaire {
    padding: 13px 10px;
  }
}
@media (min-width: 821px) {
  .aPropos__leConcepteur .leConcepteur-lien .btn__principal, .aPropos__leConcepteur .leConcepteur-lien .btn__secondaire {
    max-width: 200px;
  }
}
.aPropos__initiateur {
  display: grid;
  gap: 20px;
}
.aPropos__initiateur .aPropos__leConcepteur {
  align-items: center;
}
@media (min-width: 1200px) {
  .aPropos__initiateur .aPropos__leConcepteur {
    flex-direction: row;
    align-items: center;
  }
}
.aPropos__initiateur .aPropos__leConcepteur .aPropos__leConcepteur-info div {
  display: grid;
  place-items: center;
}
@media (min-width: 760px) {
  .aPropos__initiateur .aPropos__leConcepteur .aPropos__leConcepteur-info div {
    place-items: flex-start;
  }
}
.aPropos__collaborateur {
  display: grid;
  gap: 30px;
}

.barre {
  margin: auto;
  width: 200px;
  height: 5px;
  border-radius: 5px;
  background-color: #152E77;
}

.collaborateur__titre {
  margin-top: 5rem;
}

.approche {
  padding: 100px 15px;
  border-radius: 3rem;
}
@media (min-width: 500px) {
  .approche {
    padding: 100px 100px;
  }
}
.approche__presentation {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 750px) {
  .approche__presentation {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
.approche__presentation .banniere {
  display: flex;
}
.approche:nth-child(odd) {
  background-color: #EFF3FD;
}
.approche:nth-child(even) {
  background-color: transparent;
}
.approche__sommaire {
  border-radius: 3rem;
  padding: 3rem;
  height: fit-content;
  background-color: #EFF3FD;
}
@media (min-width: 900px) {
  .approche__sommaire {
    padding: 4rem;
    margin: 0;
  }
}
.approche__sommaire a {
  text-decoration: underline;
}
@media (min-width: 760px) {
  .approche__sommaire a {
    display: flex;
    width: max-content;
  }
}
.approche__sommaire ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: decimal-leading-zero;
}
.approche__contenu {
  display: flex;
  flex-direction: column;
  min-height: 350px;
}
@media (min-width: 900px) {
  .approche__contenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.approche__contenu .texte {
  width: 100%;
  order: 2;
}
.approche__contenu .texte ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 760px) {
  .approche__contenu .texte {
    order: unset;
  }
}
@media (min-width: 1200px) {
  .approche__contenu .texte {
    order: unset;
    max-width: 60%;
  }
}
.approche__sous-titre {
  font-family: "Poppins Medium";
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  color: #4B525E;
}
@media (min-width: 760px) {
  .approche__sous-titre {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.approche__img {
  order: 1;
  max-width: 134px;
  height: auto;
}
@media (min-width: 660px) {
  .approche__img {
    order: unset;
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .approche__img {
    order: unset;
    max-width: 350px;
  }
}

.approche__activites .approche__contenu {
  flex-direction: column;
}
.approche__activites .approche__contenu .activites__texte {
  width: 100%;
}
.approche__activites .approche__activites__img {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 900px) {
  .approche__activites .approche__activites__img {
    flex-direction: row;
  }
}
.approche__activites .approche__activites__img .activites__conteneur {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Poppins Medium", sans-serif;
}
.approche__activites .approche__activites__img .activites__img {
  width: 100%;
  border-radius: 3rem;
}

.cout {
  margin: 40px auto;
  display: flex;
  border-radius: 3rem;
  align-items: center;
  flex-direction: column;
  width: 95%;
  padding: 20px 40px;
  background-color: #EFF3FD;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .cout {
    width: 60%;
  }
}
.cout p {
  text-align: center;
}

.page__index-realisation {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page__index-realisation .realisations {
  display: grid;
  flex-direction: column;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  row-gap: 80px;
}
@media (min-width: 700px) {
  .page__index-realisation .realisations {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 0;
  }
}

.realisation {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  justify-content: flex-end;
  transition: all 0.2s ease-in;
}
.realisation h2 {
  font-size: 2.5rem;
}
@media (min-width: 800px) {
  .realisation h2 {
    font-size: 4rem;
  }
}
.realisation .texte {
  display: flex;
  justify-content: space-between;
}
.realisation .texte span {
  border-radius: 3rem;
  padding: 10px 20px;
  background-color: #EFF3FD;
  box-sizing: border-box;
}
@media (min-width: 700px) and (max-width: 800px) {
  .realisation .texte {
    flex-direction: column;
    gap: 10px;
  }
  .realisation .texte span {
    width: fit-content;
  }
}
.realisation a {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  border-radius: 3rem;
  border: solid 7px #EFF3FD;
  transition: all 0.2s ease-in;
  overflow: hidden;
  box-sizing: border-box;
}
.realisation a:hover {
  position: relative;
  scale: 1.02;
  transition: all 0.3s ease-out;
  border-color: #D9DFF7;
}
.realisation a:hover img {
  transition: all 0.3s ease-out;
  filter: blur(3px);
}
.realisation a:hover:after {
  width: max-content;
  padding: 13px 30px;
  border-radius: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "Voir la fiche du projet";
  z-index: 100;
  background-color: #2944AC;
  color: white;
  font-size: 1.8rem;
  box-sizing: border-box;
}
@media (min-width: 500px) and (max-width: 899px) {
  .realisation a:hover:after {
    font-size: 1.6rem;
  }
}
@media (min-width: 900px) {
  .realisation a:hover:after {
    font-size: 1.8rem;
  }
}
@media (min-width: 700px) {
  .realisation:nth-child(odd) {
    padding-bottom: 300px;
  }
  .realisation:last-child {
    padding-bottom: 0;
  }
}
.realisation .realisation__picture {
  display: flex;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 1440px;
  max-height: 400px;
  height: auto;
}
.realisation .realisation__picture img {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 100%;
  object-fit: cover;
  max-height: 500px;
}

.page__fiche-realisation {
  display: grid;
  gap: 50px;
}
.page__fiche-realisation .section {
  margin: 50px 0;
}
.page__fiche-realisation .section__realisation {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1100px) {
  .page__fiche-realisation .section__realisation {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.page__fiche-realisation .section__realisation .realisation__contenu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1100px) {
  .page__fiche-realisation .section__realisation .realisation__contenu {
    max-width: 62rem;
  }
}
.page__fiche-realisation .section__realisation h1 {
  font-size: 3.5rem;
}
.page__fiche-realisation .section__realisation .btn__principal {
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  text-align: center;
}
.page__fiche-realisation .section__realisation .medias {
  display: flex;
  width: 100%;
  border-radius: 3rem;
  border: 2px solid #152E77;
  overflow: hidden;
}
@media (min-width: 1100px) {
  .page__fiche-realisation .section__realisation .medias {
    order: 5;
    max-width: 80rem;
  }
}
.page__fiche-realisation .section__realisation .realisation__image {
  width: 100%;
}
.page__fiche-realisation .section__realisation .realisation__video {
  margin: 0 auto;
  height: fit-content;
  max-height: 500px;
  max-width: fit-content;
}
.page__fiche-realisation .section__realisation .realisation__information {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 20px;
}
.page__fiche-realisation .section__realisation .realisation__information span {
  height: fit-content;
  border-radius: 3rem;
  padding: 10px 20px;
  background-color: #EFF3FD;
  box-sizing: border-box;
}
.page__fiche-realisation .section__realisation .realisation__information .btn__principal {
  margin-left: auto;
}
@media (min-width: 500px) {
  .page__fiche-realisation .section__realisation .realisation__information .btn__principal {
    max-width: fit-content;
    margin-left: 0;
  }
}
.page__fiche-realisation .section__concepteur .concepteurs {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
  gap: 40px;
}
@media (min-width: 760px) {
  .page__fiche-realisation .section__concepteur .concepteurs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page__fiche-realisation .section__concepteur .concepteurs .concepteur {
  padding: 40px;
  display: flex;
  background-color: #EFF3FD;
  border-radius: 3rem;
}

.section__erreur {
  margin: auto;
  width: 100%;
  place-items: center;
  display: grid;
  padding: 40px 0;
  border-radius: 3rem;
  background-color: #EFF3FD;
  box-sizing: border-box;
  gap: 30px;
}
@media (min-width: 760px) {
  .section__erreur {
    max-width: fit-content;
    padding: 40px 100px;
  }
}
.section__erreur .texte {
  display: grid;
  place-items: center;
}

.page__404 {
  margin: 0;
  display: flex;
  height: 100vh;
}
.page__404 .section__erreur {
  margin: auto;
}

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