:root {
  --blanc: #ffffff;
  --orange: #f4971a;
  --gris: #fcf7f7;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.woff2") format('woff2'), url("/fonts/Poppins-Regular.woff") format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Medium.woff2") format('woff2'), url("/fonts/Poppins-Medium.woff") format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-SemiBold.woff2") format('woff2'), url("/fonts/Poppins-SemiBold.woff") format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.woff2") format('woff2'), url("/fonts/Poppins-Bold.woff") format('woff');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Black.woff2") format('woff2'), url("/fonts/Poppins-Black.woff") format('woff');
  font-weight: 900;
  font-display: swap;
}
.cookies-action-wrapper {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  /* margin-top: 1rem; */
  gap: 1rem;
  flex-shrink: 0;
}
.cookies_popup p {
  text-align: left;
}
.cookies_popup li {
  font-size: 1rem;
}
.cookies-container {
  flex-direction: column;
  color: var(--black);
}
.cookies-modal {
  position: relative;
  z-index: 999999999999;
  background-color: #fff;
  padding: 32px;
  width: 100%;
  height: auto;
  max-width: 700px;
  box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.cookies-modal > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookies-modal > div h1 {
  margin: 0;
  font-size: 1.3rem;
}
#cookies-modal-close-button {
  background-color: transparent;
  border: none;
  width: auto;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookies-modal-configuration-list {
  margin-top: 30px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  color: black;
  height: 80%;
}
.cookies-modal-list-item {
  width: 100%;
  position: relative;
  column-gap: 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.cookies-modal-list-item:last-of-type {
  border-bottom: 0;
}
.cookies-toggle-heading {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--black);
}
.cookies-modal-list-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookies-toggle-checkbox {
  display: none;
}
.cookies-toggle-label {
  flex-shrink: 0;
  width: 60px;
  height: 34px;
  background-color: #ccc;
  border-radius: 34px;
  display: block;
  cursor: pointer;
  position: relative;
  transition: background-color 0.4s;
  margin: 0 auto;
}
.cookies-toggle-checkbox:disabled ~ .cookies-toggle-label {
  cursor: not-allowed;
}
.cookies-toggle-checkbox:checked ~ .cookies-toggle-label {
  background-color: var(--orange);
}
.cookies-toggle-label::before {
  border-radius: 50%;
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: transform 0.4s;
}
.cookies-toggle-checkbox:checked ~ .cookies-toggle-label::before {
  transform: translateX(26px);
}
.cookies-toggle-text {
  display: block;
  color: black;
}
.cookies-modal > button {
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: var(--orange);
  border-radius: 24px;
  border: none;
  color: #fff;
}
.cookies-banner-close {
  transition: transform 500ms ease-in-out;
  transform: translateY(100%);
}
.cookies-configuration-modal {
  transition: opacity 500ms ease-in-out;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 9999999999;
}
.cookies-modal-animate-open {
  transition: opacity 500ms ease-in-out;
  opacity: 1;
}
.cookies-modal-animate-close {
  transition: opacity 500ms ease-in-out;
  opacity: 0;
}
#cookies-consent-banner {
  display: none;
  padding: 1rem 2rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  background-color: black;
  box-sizing: border-box;
  z-index: 999999999;
}
.cookies-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cookies-action-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .cookies-container {
    align-items: center;
    flex-direction: row;
  }
}
@media (min-width: 640px) {
  .cookies_popup .cookies-modal {
    width: 70%;
  }
}
@media (min-width: 420px) {
  .cookies_popup .cookies-modal {
    width: 100%;
  }
}
@media (max-width: 470px) {
  .cookies_popup li {
    font-size: 90%;
  }
}
.cookies_popup button {
  border-radius: 20px;
}
#cookies-configuration-button {
  box-sizing: border-box;
  cursor: pointer;
  color: black;
  background-color: #fff;
  border: 2px solid black;
  padding: 12px 32px;
  min-width: 165px;
}
#cookies-decline-button {
  box-sizing: border-box;
  cursor: pointer;
  color: #ca0b0f;
  background-color: #fff;
  border: 2px solid #ca0b0f;
  padding: 12px 32px;
  min-width: 165px;
}
#cookies-accept-button {
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
  /* Text-color */
  background-color: var(--orange);
  padding: 12px 32px;
  min-width: 165px;
  border: 1px solid white;
}
input[name="name"] {
  display: none;
}
input[type="file"] {
  display: none;
}
.form-error {
  color: red;
  font-weight: bold;
  margin-bottom: 12px;
}
.input-error {
  border: 3px solid red !important;
}
.fields-error {
  color: red;
  font-weight: bold;
}
.message-success {
  display: block;
  padding: 10px 12px;
  background-color: #ddfad9;
  border: 1px solid #288d1b;
  color: #288d1b;
}
.anim-opacity {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.4s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-opacity.actif {
  opacity: 1;
  transform: translateY(0);
}
.anim-translate {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.3s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-translate.actif {
  opacity: 1;
  transform: translateX(0);
}
.anim-only-opacity {
  opacity: 0;
  transition: all 0.4s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-only-opacity.actif {
  opacity: 1;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body,
html {
  position: relative;
  width: 100%;
  font-size: 16px;
  overflow-x: hidden !important;
}
html.disable-scroll {
  overflow-y: hidden;
}
body {
  font-family: "Poppins";
}
h1 {
  font-size: 1.8em;
  text-transform: uppercase;
  font-weight: 900;
}
h1 .break {
  font-weight: 400;
}
h2 {
  text-transform: uppercase;
}
p,
h1,
h2,
h3,
h4,
a,
b,
span,
.button {
  color: black;
}
a {
  text-decoration: unset;
  display: inline-block;
  max-width: fit-content;
}
a,
button,
.btn {
  transition: all 400ms;
  cursor: pointer;
}
.btn {
  background-color: var(--orange);
  color: #000;
  padding: 15px 44px;
  display: block;
  width: max-content;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 5px;
  text-transform: uppercase;
}
.btn img {
  transition: 0.3s ease-in;
}
.btn:hover {
  color: var(--blanc);
}
.btn:hover img {
  transform: rotate(190deg);
}
.btn-2 {
  background-color: #1d1d1b;
  color: var(--orange);
  padding: 8px 16px;
  display: block;
  width: max-content;
  font-size: 16px;
  font-weight: 700;
}
.btn-2:hover {
  color: var(--blanc);
}
.btn-3 {
  background-color: var(--orange);
  color: #000;
  padding: 16px 20px;
  display: block;
  width: max-content;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.btn-3 img {
  transition: 0.3s ease-in;
}
.btn-3:hover {
  color: var(--blanc);
}
.btn-3:hover img {
  transform: rotate(190deg);
}
.btn-4 {
  background-color: var(--blanc);
  color: #000;
  padding: 12px 20px;
  display: block;
  width: max-content;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.btn-4 img {
  transition: 0.3s ease-in;
}
.btn-4:hover {
  color: var(--blanc);
}
.btn-4:hover img {
  transform: rotate(190deg);
}
.btn-container .btn {
  margin: auto;
}
img {
  width: 100%;
  height: auto;
  max-width: max-content;
  display: block;
}
main {
  position: relative;
}
.container-90 {
  width: 90%;
  margin: 0 auto;
}
.container-full {
  width: 100%;
}
.container-mobile {
  width: 90%;
}
.margin-mobile {
  margin-top: 26px;
}
.flex-row {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-switch {
  display: flex;
  flex-direction: column;
}
.wrap {
  flex-wrap: wrap;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
}
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
}
header ul li {
  transition: background-color 0.3s linear, color 0.2s linear;
}
.header-mobile {
  width: 100%;
  position: fixed;
  padding: 0;
  background-color: var(--gris);
}
.header-mobile .container-90 {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
  padding-right: 5%;
}
.header-mobile .container-90 .logo {
  max-width: 200px;
  background-color: var(--orange);
  padding: 10px 10px 0;
}
.header-screen {
  display: none;
}
#burger .line {
  width: 33px;
  height: 3px;
  background-color: var(--orange);
  margin: 8px 0;
  transform-origin: 3% 0%;
  border-radius: 13px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#burger.actif .line:nth-child(1) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}
#burger.actif .line:nth-child(2) {
  opacity: 0;
}
#burger.actif .line:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
.menu-mobile {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: fixed;
  top: -100%;
  padding-top: 170px;
  background-color: var(--orange);
  z-index: 2;
  padding-left: 22px;
  transition: top 0.5s ease;
  row-gap: 20px;
}
.menu-mobile li {
  font-size: 1.1em;
}
.menu-mobile.actif {
  top: 0;
}
.banner {
  position: relative;
}
.banner .background {
  height: 420px;
  max-width: unset;
  object-fit: cover;
}
.banner-content {
  position: absolute;
}
hr {
  background-color: var(--orange);
  color: var(--orange);
  height: 0;
  flex: 1;
  height: 1px;
}
.hr-container {
  display: flex;
  align-items: center;
}
.hr-container span {
  font-size: 1.2em;
  font-weight: 600;
}
.elm-absolute {
  position: absolute;
}
ul {
  list-style: none;
  display: list-item;
}
.bold {
  font-weight: bold;
}
.break {
  display: block;
}
.relatif {
  position: relative;
}
.absolute {
  position: absolute;
}
input,
textarea {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
}
input[type="text"],
textarea {
  width: 100%;
  padding: 9px 9px;
}
.checkbox-container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.checkbox-container label {
  display: flex;
  column-gap: 5px;
}
form .row {
  display: flex;
  flex-direction: column;
}
.input-container {
  width: 100%;
  margin-bottom: 20px;
}
input:not([type="submit"]),
textarea {
  width: 100%;
  padding: 9px 9px;
}
input::placeholder,
textarea::placeholder {
  font-weight: 600;
}
input[type="submit"] {
  border: 0;
}
select {
  background-color: var(--blanc);
  padding: 4px 6px;
  min-width: 205px;
  cursor: pointer;
}
.uploaded-files {
  margin-top: 10px;
}
footer {
  background-image: url("/images/terra-excavation.jpg");
  background-repeat: no-repeat;
}
footer a,
footer p,
footer h3 {
  color: var(--blanc);
}
footer h3 {
  text-transform: uppercase;
  text-align: center;
}
footer .logo {
  max-width: 200px;
}
footer .container-90 .row-1 {
  padding-top: 20px;
}
footer .container-90 .row-1 .facebook {
  width: 30px;
  height: 30px;
  fill: white;
  transition: fill 0.3s ease;
}
footer .container-90 .row-1 .facebook:hover {
  fill: var(--orange);
}
footer .container-90 .row-1 .col-1 {
  row-gap: 20px;
  column-gap: 20px;
}
footer .container-90 .row-1 .col-1 .addresse {
  margin-top: 20px;
}
footer .container-90 .row-1 .col-2 {
  margin-top: 20px;
  row-gap: 20px;
  column-gap: 20px;
}
footer .container-90 .row-2 {
  margin-top: 40px;
}
footer .container-90 .row-2 hr {
  width: 3px;
  height: 20px;
  color: var(--orange);
  background-color: var(--orange);
  border: 1px solid var(--orange);
  display: none;
  flex: unset;
}
footer .container-90 .row-2 ul {
  margin-top: 20px;
}
footer .container-90 .row-3 {
  margin-top: 30px;
  border-top: 1px solid white;
  padding-top: 10px;
}
footer .container-90 .row-3 a,
footer .container-90 .row-3 p {
  font-size: 0.9em;
}
footer .container-90 .row-3 .row-3-1 {
  row-gap: 20px;
}
footer .container-90 .row-3 .row-3-2 {
  margin-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.7em;
  }
  form .row {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
  h2 {
    font-size: 2em;
  }
  .flex-switch {
    flex-direction: row;
    justify-content: space-between;
  }
  hr {
    width: 100%;
  }
  .header-mobile {
    display: none;
  }
  .header-screen {
    display: flex;
    flex-direction: column;
  }
  .header-screen .container-full {
    height: 100%;
  }
  .header-screen .col-1 {
    width: 30%;
    display: flex;
    background-color: var(--orange);
    padding-top: 30px;
  }
  .header-screen .col-1 .logo {
    display: block;
    margin: auto auto 0;
  }
  .header-screen .col-2 {
    width: 70%;
    background-color: var(--gris);
  }
  .header-screen .col-2 a:not(.btn):not(.btn-2):hover {
    color: var(--orange);
  }
  .header-screen .col-2 .container-full {
    width: 95%;
    margin: auto;
  }
  .header-screen .col-2 hr {
    width: 0;
  }
  .header-screen .col-2 .row-1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 30px;
  }
  .header-screen .col-2 .row-1 .facebook {
    width: 30px;
    height: 30px;
    transition: fill 0.3s ease;
  }
  .header-screen .col-2 .row-1 .facebook:hover {
    fill: var(--orange);
  }
  .header-screen .col-2 .row-2 {
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .header-screen .col-2 .row-2 ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 10px;
  }
  .header-screen .col-2 .row-2 ul li hr {
    opacity: 0;
    transition: 0.3s ease-in;
    border: 0;
    border-top: 1px solid var(--orange);
  }
  .header-screen .col-2 .row-2 ul li:hover a {
    color: var(--orange);
  }
  .header-screen .col-2 .row-2 ul li:hover hr {
    width: 100%;
    opacity: 1;
  }
  .header-screen .col-2 .row-2 ul .btn {
    padding: 10px 36px;
  }
  .header-screen .col-2 .row-2 ul .hide {
    display: none;
  }
  .checkbox-container {
    row-gap: 18px;
    column-gap: 18px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .banner .background {
    height: auto;
    object-fit: unset;
  }
  footer .container-90 .row-1 {
    padding-top: 90px;
  }
  footer .container-90 .row-1 .col-1 {
    align-items: center;
  }
  footer .container-90 .row-1 .col-1 .addresse {
    margin-top: 0;
  }
  footer .container-90 .row-1 .col-2 {
    margin-top: 0;
    align-items: center;
  }
  footer .container-90 .row-2 {
    margin-top: 80px;
  }
  footer .container-90 .row-2 hr {
    width: 2px;
    display: block;
  }
  footer .container-90 .row-2 ul {
    margin-top: 40px;
    align-items: center;
  }
  footer .container-90 .row-3 {
    margin-top: 130px;
    padding-top: 20px;
    padding-bottom: 60px;
  }
  footer .container-90 .row-3 .row-3-2 {
    padding-bottom: 0;
  }
  footer .container-90 .row-3 a,
  footer .container-90 .row-3 p {
    font-size: 1em;
  }
}
/* Laptop */
@media only screen and (min-width: 1536px) and (orientation: landscape) {
  h1 {
    font-size: 2.4em;
    line-height: 47px;
  }
  h1 .break {
    font-size: 0.9em;
  }
  h2 {
    font-size: 2.4em;
  }
  .header-screen .col-1 .logo {
    margin: auto 90px 0 auto;
  }
  .header-screen .col-2 .row-1 a:not(.btn-2) {
    font-size: 0.9em;
  }
  .header-screen .col-2 .row-2 a {
    font-size: 1em;
  }
  .header-screen .col-2 .row-2 ul {
    justify-content: space-between;
    column-gap: 20px;
  }
  .header-screen .col-2 .row-2 ul .btn {
    padding: 15px 44px;
  }
  .header-screen .col-2 .container-full {
    width: 80%;
    margin-left: 74px;
  }
  footer h3 {
    font-size: 1.3em;
  }
  footer .logo {
    max-width: 310px;
  }
  footer a:hover {
    color: var(--orange);
  }
  footer .container-90 {
    width: 82%;
  }
  footer .container-90 .row-2 {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  footer .container-90 .row-2 ul {
    margin-top: 50px;
  }
  footer .container-90 .row-2 hr {
    width: 3px;
  }
  footer .container-90 .row-3 {
    padding-bottom: 100px;
  }
  input[type="submit"] {
    font-size: 1.4em;
    padding: 4px 43px;
  }
}
@media only print {
  h1,
  h2,
  h3,
  h4,
  p,
  a,
  li {
    color: #000 !important;
  }
  nav {
    display: none;
  }
}
