@charset "UTF-8";
/*fonts*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;600&family=Roboto+Condensed:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
@font-face {
  font-family: "helvetica_black";
  src: url("../fonts/helvetica_black_italic.woff2") format("woff2"), url("../fonts/helvetica_black_italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 120px 0 0 0;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Condensed", sans-serif;
  color: rgb(77, 114, 152);
  text-align: center;
  font-weight: 100;
}

h1 {
  letter-spacing: 3px;
  margin-top: 1em;
}

button {
  cursor: pointer;
  font-family: "Roboto Condensed", sans-serif;
}

a {
  font-family: "Roboto Condensed", sans-serif;
  cursor: pointer;
}

main {
  width: 100%;
}

.toggle-line {
  display: flex;
}

.toggler-wrapper {
  display: block;
  width: 45px;
  height: 25px;
  margin: 5px 0;
  cursor: pointer;
  position: relative;
}
.toggler-wrapper input[type=checkbox] {
  display: none;
}
.toggler-wrapper input[type=checkbox]:checked + .toggler-slider {
  background-color: #44cc66;
}
.toggler-wrapper .toggler-slider {
  background-color: #ccc;
  position: absolute;
  border-radius: 100px;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  transition: all 300ms ease;
}
.toggler-wrapper .toggler-knob {
  position: absolute;
  transition: all 300ms ease;
}
.toggler-wrapper.style-1 .toggler-knob {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
}
.toggler-wrapper.style-1 input[type=checkbox]:checked + .toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  padding: 5px 0;
}

@keyframes turnright {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moveupanddown {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(5px, -5px);
  }
  10% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, O);
  }
}
#main {
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  overflow-x: hidden;
  display: block;
}
#main header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  box-shadow: 0 0 5px #bbb;
}
#main header > a img {
  width: 150px;
}
#main header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
#main header nav a {
  color: rgb(77, 114, 152);
  font-size: 1.25rem;
  letter-spacing: -1px;
  text-decoration: none;
  margin: 0 1.5rem;
  font-family: "helvetica_black", sans-serif;
  transform: perspective(300px) rotateX(0) rotateY(30deg);
  transition: all 0.5s;
}
#main header nav a:hover {
  transform: perspective(300px) rotateX(0) rotateY(-20deg);
  color: rgb(223, 175, 233);
  text-shadow: 1px 1px 1px rgb(10, 10, 10);
}
#main header #menu {
  display: none;
}
#main h2 {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  color: #4d7298;
}
#main .page {
  padding: 100px 0;
  max-width: 990px;
  margin: auto;
}
#main .page h1 {
  font-size: 2rem;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: bold;
}
#main .page h2 {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  text-align: left;
  font-size: 1.75rem !important;
  margin: 3rem 0 1rem 0;
}
#main .page p {
  margin: 0.5rem;
}
#main .page ul {
  margin-left: 4rem;
  list-style-type: none; /* Supprime les puces par défaut */
  padding-left: 0;
}
#main .page ul li::before {
  content: "⇨"; /* Insère le caractère flèche comme puce */
  padding-right: 10px; /* Espace entre la puce et le texte */
  color: rgb(223, 175, 233);
  margin: 1rem 0 2rem -25px;
}

#enTete {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#enTete img {
  width: 100%;
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}
#enTete figcaption {
  position: absolute;
  background: rgba(10, 10, 10, 0.8);
  padding: 2rem;
}
#enTete figcaption h1 {
  color: rgb(223, 175, 233);
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 4rem;
  margin-top: 0;
}
#enTete figcaption p {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 3rem;
  color: rgb(245, 245, 245);
}

#client {
  max-width: 1200px;
  width: 100%;
  margin: 3rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 2rem 0;
}
#client h2 {
  color: rgb(77, 114, 152);
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  width: 100%;
}
#client figure {
  max-width: 45%;
  height: 100%;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  box-shadow: 0 0 3rem #ddd inset, 0 0 3px #888;
  border-radius: 5px;
  border: 2px solid rgb(245, 245, 245);
}
#client figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
#client figure figcaption {
  position: absolute;
  max-width: 100%;
  height: 100%;
  display: block;
}
#client figure figcaption blockquote {
  width: 100%;
}
#client figure figcaption blockquote span {
  position: absolute;
  top: 0;
  font-size: 320px;
  color: rgb(223, 175, 233);
  font-weight: 900;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  z-index: 0;
  opacity: 80%;
}
#client figure figcaption blockquote p {
  width: 50%;
  margin-top: 3.5rem;
  position: relative;
  padding: 1rem;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  z-index: 10;
  color: rgb(245, 245, 245);
  text-shadow: 1px 1px 1px rgb(10, 10, 10);
  letter-spacing: 1px;
  background: rgba(10, 10, 10, 0.3);
}
#client figure figcaption blockquote cite {
  text-align: right;
  color: rgb(245, 245, 245);
  width: 60%;
  margin: 0 0 0 auto;
  display: block;
  background: rgba(10, 10, 10, 0.7);
  padding: 0.3rem 1rem;
  margin-top: 0.5rem;
  box-sizing: border-box;
}
#client figure.invert img {
  transform: scaleX(-1);
}
#client figure.invert figcaption blockquote span {
  right: 1rem;
}
#client figure.invert figcaption blockquote p {
  margin-left: auto;
  width: 50%;
}
#client figure.invert figcaption blockquote cite {
  text-align: left;
  margin-left: 0;
}
#client div {
  max-width: 53%;
  margin-left: 2%;
}
#client div h3 {
  color: rgb(223, 175, 233);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  background: rgb(10, 10, 10);
}
#client div p {
  text-align: justify;
  font-size: 0.9rem;
  margin: 0.25rem 0 0.75rem 0;
}

#advantages {
  max-width: 1000px;
  margin: 3rem auto;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
}
#advantages h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
#advantages > div {
  padding: 1rem 0 0 0;
  box-shadow: 0 0 3rem #ddd inset, 0 0 3px #888;
  border-radius: 5px;
  border: 2px solid rgb(245, 245, 245);
  width: calc(25% - 1rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
#advantages > div svg,
#advantages > div img {
  width: 40%;
  margin-top: 2.5rem;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
#advantages > div h3 {
  font-weight: bold;
  font-family: "helvetica_black", sans-serif;
  color: rgb(245, 245, 245);
  position: absolute;
  top: 0rem;
  left: 0.75rem;
  letter-spacing: -5px;
  opacity: 80%;
  transform: perspective(300px) rotateX(-7deg) rotateY(30deg);
  text-shadow: 0px 0px rgb(10, 10, 10), -1px -1px rgb(10, 10, 10), -2px -2px rgb(10, 10, 10), -3px -3px rgb(10, 10, 10), -4px -4px rgb(10, 10, 10), -5px -5px rgb(10, 10, 10), -6px -6px rgb(10, 10, 10), -7px -7px rgb(10, 10, 10), -8px -8px rgb(10, 10, 10), -9px -9px rgb(10, 10, 10), -10px -10px rgb(10, 10, 10), -11px -11px rgb(10, 10, 10), -12px -12px rgb(10, 10, 10), -13px -13px rgb(10, 10, 10), -14px -14px rgb(10, 10, 10), -15px -15px rgb(10, 10, 10), -16px -16px rgb(10, 10, 10), -17px -17px rgb(10, 10, 10), -18px -18px rgb(10, 10, 10), -19px -19px rgb(10, 10, 10), -20px -20px rgb(10, 10, 10), -21px -21px rgb(10, 10, 10), -22px -22px rgb(10, 10, 10), -23px -23px rgb(10, 10, 10), -24px -24px rgb(10, 10, 10), -25px -25px rgb(10, 10, 10), -26px -26px rgb(10, 10, 10), -27px -27px rgb(10, 10, 10), -28px -28px rgb(10, 10, 10), -29px -29px rgb(10, 10, 10), -30px -30px rgb(10, 10, 10), -31px -31px rgb(10, 10, 10), -32px -32px rgb(10, 10, 10), -33px -33px rgb(10, 10, 10), -34px -34px rgb(10, 10, 10), -35px -35px rgb(10, 10, 10), 1px 2px 1px rgb(10, 10, 10);
  font-size: 4rem;
  width: 100%;
  text-align: center;
}
#advantages ul {
  list-style: none;
  text-align: center;
  font-size: 1rem;
  width: 100%;
}
#advantages ul li {
  line-height: 3rem;
  background: rgba(0, 0, 0, 0.05);
  border-top: 1px solid white;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

#easy {
  fill: rgb(78, 86, 86);
}
#easy .st0 {
  fill: rgb(223, 175, 233);
}

#infogerance {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 2rem auto 2rem auto;
  min-height: 550px;
  position: relative;
  padding: 3rem 0;
}
#infogerance h2 {
  width: 100%;
  text-align: center;
  margin: 3rem 0 5rem;
}
#infogerance > article {
  position: absolute;
}
#infogerance > article p {
  font-size: 16px;
  color: rgb(77, 114, 152);
}
#infogerance > article > * {
  margin: 0;
}
#infogerance > article h4 {
  font-weight: 500;
  text-align: initial;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.6rem;
}
#infogerance > article:nth-of-type(1) {
  left: 19%;
  top: 26%;
  text-align: right;
  padding-right: 10px;
  border-right: 1px solid rgb(77, 114, 152);
}
#infogerance > article:nth-of-type(1) > h4 {
  text-align: right !important;
}
#infogerance > article:nth-of-type(2) {
  left: 10%;
  top: 56%;
  width: 21%;
  text-align: right;
  padding-right: 10px;
  border-right: 1px solid rgb(77, 114, 152);
}
#infogerance > article:nth-of-type(2) > h4 {
  text-align: right !important;
}
#infogerance > article:nth-of-type(3) {
  left: 67%;
  top: 25%;
  width: 40%;
  text-align: left;
  padding-left: 10px;
  border-left: 1px solid rgb(77, 114, 152);
}
#infogerance > article:nth-of-type(4) {
  left: 69%;
  top: 55%;
  width: 40%;
  text-align: left;
  padding-left: 10px;
  border-left: 1px solid rgb(77, 114, 152);
}
#infogerance > article:nth-of-type(5) {
  left: 39%;
  bottom: -5%;
  width: 22%;
  text-align: center;
  padding-left: 10px;
  border-top: 1px solid rgb(77, 114, 152);
}
#infogerance > article:nth-of-type(5) > h4 {
  text-align: center !important;
}
#infogerance figure {
  margin: 0 auto;
  width: 300px;
  padding: 0;
  position: relative;
  top: -50px;
}
#infogerance figure img {
  width: 100% !important;
  animation: turnright 120s linear infinite;
  filter: drop-shadow(0 0 3px #888);
  position: relative;
  z-index: 100;
}
#infogerance figure figcaption {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50px;
  left: 50px;
  background: #eeeeee;
  z-index: 50;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#infogerance figure figcaption h3 {
  align-items: center;
  background: white;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 0 10px #ccc;
  color: rgb(77, 114, 152);
  display: flex;
  justify-content: center;
  font-weight: 100;
  height: 100%;
  padding: 10%;
  position: absolute;
  text-align: center;
  width: 100%;
}
#infogerance figure figcaption svg {
  width: 60%;
}
#infogerance figure figcaption svg#logo-symbole .piece1 {
  animation: moveupanddown 4s infinite;
}
#infogerance figure figcaption svg#logo-symbole .piece2 {
  animation: moveupanddown 4s 0.1s infinite;
}
#infogerance figure figcaption svg#logo-symbole .piece3 {
  animation: moveupanddown 4s 0.2s infinite;
}

#plus-value {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 1rem;
}
#plus-value div {
  margin-top: 2rem;
  padding: 1rem;
  box-shadow: 0 0 2rem #ddd inset, 0 0 3px #888;
  border-radius: 5px;
  border: 2px solid rgb(245, 245, 245);
  position: relative;
}
#plus-value div > * {
  margin: 0.5rem 0;
}
#plus-value div ol {
  list-style-type: none;
  counter-reset: monCompteur;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 3rem 0 2rem 0;
}
#plus-value div ol li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  line-height: 1.3rem;
  counter-increment: monCompteur;
  text-align: left;
  max-width: 20%;
  margin-top: 3rem;
  border-left: 3px solid rgb(77, 114, 152);
  padding-left: 10px;
  color: rgb(78, 86, 86);
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.3rem;
  position: relative;
}
#plus-value div ol li::before {
  font-family: "helvetica_black", sans-serif;
  font-size: 8rem;
  position: absolute;
  font-weight: bold;
  content: counter(monCompteur) " ";
  color: rgba(77, 114, 152, 0.05);
  margin: -1.5rem 0 0 -10rem;
  z-index: -1;
}
#plus-value div ul {
  list-style-type: none;
  counter-reset: monCompteur;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
}
#plus-value div ul li {
  max-width: 20%;
}
#plus-value div ul li img {
  width: 100%;
}

#features {
  max-width: 1200px;
  margin: 5rem auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
#features h2 {
  width: 100%;
  margin-bottom: 2rem;
}
#features details {
  width: 350px;
  border: 1px solid white;
  border-radius: 4px;
  padding: 0.5em 0.5em 0;
  margin: 1rem;
  box-shadow: 0 0 1rem #ddd inset, 0 0 3px #888;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
#features details[open] {
  padding: 0.5em;
  height: auto;
}
#features details[open] summary {
  background: rgba(77, 114, 152, 0.1);
  margin-bottom: 0.5em;
}
#features details p {
  margin: 1rem 0;
}
#features summary {
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.5rem;
  cursor: pointer;
}
#features summary:hover {
  background: rgba(77, 114, 152, 0.1);
}

#offres {
  max-width: 1200px;
  margin: 5rem auto;
}
#offres h2 {
  margin-bottom: 2rem;
}
#offres table {
  width: 100%;
  max-width: 700px;
  margin: auto;
  border-collapse: collapse;
}
#offres table thead tr {
  background: rgba(10, 10, 10, 0.8);
  color: rgb(245, 245, 245);
}
#offres table thead tr th {
  border: 1px solid rgba(245, 245, 245, 0.6);
  padding: 1rem;
}
#offres table thead tr th:nth-child(n+2) {
  text-align: center;
  width: 120px;
}
#offres table tbody tr:nth-of-type(even) {
  background: rgba(77, 114, 152, 0.1);
}
#offres table tbody tr td {
  border: 1px solid rgba(10, 10, 10, 0.4);
  padding: 1rem;
}
#offres table tbody tr td:nth-child(n+2) {
  text-align: center;
}
#offres table tbody tr td span {
  background: green;
  width: 25px;
  height: 25px;
  line-height: 25px;
  display: block;
  margin: auto;
  color: white;
  border-radius: 20px;
}

#contact {
  max-width: 1200px;
  margin: auto;
}
#contact form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto 50px auto;
  width: 100%;
}
#contact form h2 {
  width: 100%;
  font-weight: 100;
  text-align: center;
  color: rgb(77, 114, 152);
}
#contact form label {
  width: 20%;
  text-align: right;
  box-sizing: border-box;
  color: white;
  background: rgb(77, 114, 152);
  font-size: 20px;
  margin: 5px 5px 5px 10%;
  padding: 5px 10px;
  border: 1px solid rgb(77, 114, 152);
}
#contact form label:last-of-type {
  align-self: flex-start;
}
#contact form label.input-file-trigger {
  width: 30% !important;
  cursor: pointer;
  text-align: center;
  background: orange;
  border: 1px solid orange;
  transition: all 0.5s;
}
#contact form label.input-file-trigger:hover, #contact form label.input-file-trigger:focus {
  background: darkorange;
  border: 1px solid white;
}
#contact form input {
  margin: 5px 0;
}
#contact form input:not([type=file]) {
  width: 40%;
  margin-right: 10%;
  box-sizing: border-box;
  padding: 5px 10px;
  border: 1px solid rgb(77, 114, 152);
  font-size: 20px;
  transition: all 0.5s;
}
#contact form input:not([type=file]):focus {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
}
#contact form textarea {
  width: 40%;
  min-height: 300px;
  margin: 5px 10% 5px 0;
  box-sizing: border-box;
  padding: 5px 10px;
  border: 1px solid rgb(77, 114, 152);
  font-size: 20px;
}
#contact form textarea:focus {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  border: 1px solid white;
}
#contact form button {
  background: rgb(77, 114, 152);
  margin-left: calc(10% + 5px);
  padding: 5px 10px;
  color: white;
  font-size: 20px;
  border: none;
  width: 40%;
  font-weight: 100;
  transition: all 0.5s;
  border: 1px solid rgb(78, 86, 86);
}
#contact form button:hover {
  border: 1px solid white;
  cursor: pointer;
  background: rgb(78, 86, 86);
  border-radius: 2em;
  border-left: 5px solid white;
  border-right: 5px solid white;
}

#successMessage {
  text-align: center;
  margin: 3rem 0;
  font-size: 1.3rem;
  color: deeppink;
}

#bottom {
  margin-top: 3rem;
  width: 100%;
  height: auto;
  align-self: flex-end;
  width: 100%;
  background: rgb(10, 10, 10);
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
#bottom nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
}
#bottom nav h4 {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  color: rgb(223, 175, 233);
  font-size: 2rem;
  margin-bottom: 1rem;
}
#bottom nav a {
  color: rgb(245, 245, 245);
  text-decoration: none;
  line-height: 2.5rem;
}
#bottom address {
  color: #ccc;
}
#bottom address img {
  max-width: 150px;
  display: block;
}

@media screen and (orientation: portrait) and (max-width: 1000px) {
  #main header {
    overflow: initial;
    padding: 1rem 2rem;
  }
  #main header > a img {
    width: 120px;
  }
  #main header nav {
    position: absolute;
    flex-direction: column;
    background: rgb(245, 245, 245);
    box-shadow: 0 0 5px #555;
    border-radius: 4px;
    top: -50vh;
    transition: top 0.3s ease;
    width: 60%;
    left: 20%;
  }
  #main header nav a {
    margin: 1rem 0;
  }
  #main header #menu {
    display: flex;
    transform: rotate(90deg);
    font-size: 4rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: -0.75rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  #main header #menu.active {
    transform: translateY(5px) rotate(270deg);
    top: 0;
  }
  #main header #menu.active span {
    transform: rotate(90deg) translateY(-20px);
  }
  #main header #menu span {
    transform-origin: center;
    transition: transform 0.3s ease, color 0.3s ease;
    transform: rotate(270deg);
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    align-self: center;
    padding-top: 1rem;
  }
  #advantages h2 {
    font-size: 2.5rem;
  }
  #advantages > div {
    width: calc(50% - 1rem);
    margin-bottom: 2rem;
  }
  #client figure {
    max-width: 95%;
    margin: 1rem auto;
  }
  #client figure figcaption blockquote p {
    width: 60% !important;
    font-size: 1.2rem;
  }
  .block {
    width: 100%;
    background: rgba(77, 114, 152, 0.1);
  }
  .block::before, .block::after {
    display: none;
  }
  .block h2 {
    font-size: 2rem;
  }
  .block figure {
    max-width: 95%;
    margin: 0 auto 2rem auto;
  }
  .block figure figcaption blockquote p {
    font-size: 1.26rem;
    line-height: 1.3rem;
    width: 60%;
  }
  #plus-value h2 {
    font-size: 2.5rem;
  }
  #plus-value div ol {
    flex-wrap: wrap;
  }
  #plus-value div ol li {
    margin: 3rem auto;
    max-width: 44%;
  }
  #plus-value div ol li::before {
    font-size: 6rem;
  }
  #infogerance {
    background: rgba(77, 114, 152, 0.1);
    padding-top: 0;
  }
  #infogerance::before, #infogerance::after {
    display: none;
  }
  #infogerance h2 {
    font-size: 2.5rem;
  }
  #infogerance > article h4 {
    font-size: 1.1rem;
  }
  #infogerance > article p {
    font-size: 14px;
  }
  #infogerance > article:nth-of-type(1) {
    left: 10%;
    top: 22%;
  }
  #infogerance > article:nth-of-type(2) {
    left: 0;
    width: 30%;
  }
  #infogerance > article:nth-of-type(3) {
    width: 32%;
  }
  #infogerance > article:nth-of-type(4) {
    width: 30%;
  }
  #infogerance > article:nth-of-type(5) {
    border-top: none;
    left: 50%;
    bottom: 5%;
    width: 40%;
    text-align: left;
    padding-left: 10px;
    border-left: 1px solid rgb(77, 114, 152);
  }
  #infogerance > article:nth-of-type(5) h4 {
    text-align: left;
  }
  #infogerance figure {
    width: 150px !important;
  }
  #infogerance figure figcaption {
    width: 100px;
    height: 100px;
    top: 25px;
    left: 25px;
  }
  #offres {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  #offres h2 {
    font-size: 2.5rem;
  }
  #offres table {
    max-width: 95%;
  }
  #offres table thead tr th:nth-child(n+2) {
    width: 20%;
  }
  #offres table tbody tr td:nth-child(n+2) {
    padding: 1rem 0;
  }
  #contact {
    max-width: 100%;
    margin: auto;
  }
  #contact form {
    width: 95%;
  }
  #contact form label {
    width: 90%;
    text-align: center;
    margin: auto;
  }
  #contact form label:last-of-type {
    align-self: flex-start;
  }
  #contact form input:not([type=file]) {
    width: 90%;
    margin-right: 0;
    font-size: 20px;
  }
  #contact form textarea {
    width: 90%;
    margin: auto;
  }
  #contact form button {
    background: rgb(77, 114, 152);
    margin: auto;
    width: 90%;
    margin-top: 1rem;
    border: none;
  }
  .full-width {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 3rem 0;
  }
  .full-width::before, .full-width::after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(77, 114, 152, 0.05);
    height: 100%;
  }
  footer#bottom {
    flex-direction: column;
  }
  footer#bottom nav {
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
  }
  footer#bottom nav a {
    line-height: 2.2rem;
    font-size: 1.2rem;
  }
  footer#bottom address {
    color: #ccc;
    text-align: center;
    line-height: 2.2rem;
    font-size: 1.2rem;
    width: 100%;
    align-items: center;
  }
  footer#bottom address img {
    max-width: 150px;
    margin: 0 auto 1rem auto;
    display: block;
  }
}/*# sourceMappingURL=home.css.map */